.flex {
  display: flex;
}

.sp {
  display: none;
}

.mb0 {
  margin-bottom: 0 !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: #241a08;
  background: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  background-color: transparent;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

button {
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: #241a08;
  background-color: white;
}

b,
strong {
  font-weight: 600;
}

.em {
  font-weight: 500;
  font-size: 1.8rem;
}

.small, small {
  font-size: 0.8em;
}

a {
  display: block;
}

p a {
  display: inline;
}

.center {
  text-align: center;
}

.section {
  padding: 4em 0;
}
.section.beige {
  background: #f6f4ef;
}
.section.pink {
  color: white;
  background: #fcb700;
  background: #ed9696;
}
.section.first {
  padding-top: 0;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

#header {
  font-size: 1.5rem;
  padding-top: 30px;
  border-top: solid 5px #241a08;
  background: url(../img/border.png) left top repeat-x;
  background-size: auto 10px;
}
#header .inner > .flex {
  justify-content: space-between;
  align-items: flex-end;
}
#header .logo_wrap p {
  font-size: 13px;
  margin-bottom: 0.5em;
}
#header .header-logo a {
  width: auto;
  height: 70px;
  display: block;
}
#header .header-logo img {
  width: auto;
  height: 100%;
}
#header p.header-logo {
  margin-bottom: 0;
}
#header .links {
  font-weight: 600;
  flex-direction: column;
  justify-content: space-between;
}
#header .sns {
  width: 100%;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
#header .sns a {
  width: 30px;
  display: block;
}
#header .block {
  align-items: flex-end;
}
#header .support {
  line-height: 50px;
  width: 10em;
  height: 50px;
  padding-left: 20px;
  transition: 0.2s;
  text-align: center;
  color: white;
  border-radius: 10px;
  background: url(../img/ico-support.svg) left 10px center no-repeat #ea4e4e;
  background-color: #ea4e4e;
  background-size: 15px auto;
}
#header .gnav {
  margin-top: 20px;
}
#header .nav {
  padding: 0 0 0.5em 0;
  justify-content: space-between;
}
#header .nav .nav-item {
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding: 15px 2vw;
  cursor: pointer;
  transition: all 0.2s ease-out;
  white-space: nowrap;
}
#header .nav .nav-item.has-menu {
  padding-right: 2vw;
}
#header .nav .nav-item.has-menu::after {
  position: absolute;
  top: 38%;
  right: 10px;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transform: rotate(135deg);
  border-top: solid 2px #fcb700;
  border-right: solid 2px #fcb700;
}
#header .nav .nav-item.has-menu.is-active {
  border-radius: 10px 10px 0 0;
  background: #f6f4ef;
}
#header .nav .nav-item.has-menu.is-active::after {
  top: 45%;
  transform: rotate(-45deg);
}
#header .has-menu.is-active + .menu {
  visibility: visible;
  opacity: 1;
}
#header .menu {
  position: absolute;
  z-index: 10;
  top: 190px;
  left: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  background-color: #f6f4ef;
}
#header .menu .inner {
  padding-top: 2em;
  padding-bottom: 2em;
}
#header .menu .flex {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em 2em;
}
#header .menu .flex a {
  font-weight: 500;
  transition: 0.2s;
}
#header .menu .flex a::before {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-right: 0.5em;
  content: "";
  border-radius: 50%;
  background: #fcb700;
}

.toggle_button {
  position: fixed;
  z-index: 999;
  top: 20px;
  right: 20px;
  display: none;
  width: 50px;
  height: 50px;
}
.toggle_button .toggle {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: #241a08;
  appearance: none;
}
.toggle_button .toggle .bar {
  position: absolute;
  left: 50%;
  display: inline-block;
  width: 44%;
  height: 2px;
  transition: 0.3s;
  transform: translateX(-50%);
  background: white;
}
.toggle_button .toggle .bar:first-child {
  top: 16px;
}
.toggle_button .toggle .bar:nth-child(2) {
  top: 24px;
}
.toggle_button .toggle .bar:last-child {
  top: 32px;
}
.toggle_button.is-open .toggle .bar {
  top: 50%;
}
.toggle_button.is-open .toggle .bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.toggle_button.is-open .toggle .bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.toggle_button.is-open .toggle .bar:nth-child(2) {
  display: none;
}

.footer {
  padding: 2em 0 2.5em;
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 5px #241a08;
  background: url(../img/border.png) left bottom repeat-x;
  background-size: auto 10px;
}
.footer .small {
  font-size: 80%;
  text-align: center;
}
.footer .last {
  margin-bottom: 3em;
}
.footer .heading02 {
  font-size: 2rem;
  margin-bottom: 1em;
}
.footer .heading04 {
  margin-bottom: 0em;
}
.footer .flex {
  max-width: 800px;
  margin: 1em auto 0;
  justify-content: center;
  gap: 2em;
}
.footer p + p {
  margin-top: 1em;
}
.footer .heading04 {
  font-size: 1.8rem;
}
.footer img {
  max-width: 150px;
  margin: 0 auto;
}
.footer .terms {
  display: flex;
  justify-content: space-between;
}

.breadcrumb {
  font-size: 1.3rem;
  padding-top: 1em;
  padding-bottom: 1em;
  background: #f6f4ef;
}
.breadcrumb li {
  position: relative;
  margin-right: 10px;
}
.breadcrumb li a,
.breadcrumb li span {
  display: inline-block;
  padding-right: 10px;
}
.breadcrumb li a {
  color: #fcb700;
}
.breadcrumb li::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  transform: rotate(45deg) translateY(-50%);
  color: rgba(36, 26, 8, 0.5);
  border-top: solid 1px;
  border-right: solid 1px;
}
.breadcrumb li:last-child::after {
  display: none;
}

.btn {
  font-weight: 600;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  transition: 0.2s;
  color: white !important;
  text-decoration: none !important;
}
.btn.pink {
  background-color: #ea4e4e;
}
.btn.blue {
  background-color: #02858c;
}
.btn.green {
  background-color: #75a23a;
}

.btn-s {
  line-height: 2.5em;
  max-width: 220px;
  height: 2.5em;
  border-radius: 1.25em;
}

.btn-m {
  line-height: 3.5em;
  max-width: 300px;
  height: 3.5em;
  border-radius: 1.75em;
}

.btn-l {
  max-width: 300px;
  height: 5em;
  border-radius: 1em;
}

.heading01,
.heading02 {
  font-weight: 700;
  text-align: center;
}

.heading01 {
  font-size: 3rem;
  position: relative;
  margin-bottom: 2em;
  padding-bottom: 10px;
}
.heading01::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 50px;
  height: 3px;
  content: "";
  transform: translateX(-50%);
  background: #fcb700;
}
.heading01 + .heading02 {
  margin-top: -1em;
  margin-bottom: 1em;
}

.heading02 {
  font-size: 2.2rem;
}

.heading03 {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-left: 2em;
  margin-top: 2em;
  margin-bottom: 1em;
}
.heading03::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.5em;
  height: 2px;
  content: "";
  transform: translateY(-50%);
  background: #fcb700;
}

.heading04 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1em;
}
.heading04 span {
  font-size: 90%;
  padding-left: 1em;
}

.heading01.blue,
.heading02.blue,
.heading03.blue,
.heading04.blue,
strong.blue, .em.blue {
  color: #02858c;
}
.heading01.pink,
.heading02.pink,
.heading03.pink,
.heading04.pink,
strong.pink, .em.pink {
  color: #ea4e4e;
}
.heading01.green,
.heading02.green,
.heading03.green,
.heading04.green,
strong.green, .em.green {
  color: #75a23a;
}

.text-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.text-wrap p + p {
  margin-top: 1em;
}

article .block,
footer .block {
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  flex-grow: 1;
  padding: 2em;
  border-radius: 1em;
  background: #f6f4ef;
  color: #241a08;
}
article .block p + p,
footer .block p + p {
  margin-top: 1em;
}

article .beige .block {
  background: white;
}

@media screen and (min-width: 821px) {
  body {
    margin: 0;
  }
  #header .support:hover {
    background-color: rgb(228.5909090909, 32.4090909091, 32.4090909091);
  }
  #header .nav .nav-item:hover {
    border-radius: 10px;
    background: #f6f4ef;
  }
}

@media screen and (min-width: 769px) {
  body {
    margin: 0;
  }
  #header .menu .flex a {
    border-bottom: solid 1px transparent;
  }
  #header .menu .flex a:hover {
    border-bottom-color: #fcb700;
  }
  #header .menu .flex + .flex {
    margin-top: 1em;
  }
}

@media screen and (max-width: 820px) {
  body {
    margin: 0;
  }
  .tab {
    display: none;
  }
  .section {
    padding: 5vw 0;
  }
  #header .header-logo a {
    height: 65px;
  }
  #header .nav .nav-item.has-menu {
    padding-right: 30px;
  }
  .heading01 {
    margin-bottom: 1em;
  }
  .heading01 + .heading02 {
    margin-top: 0;
  }
  article .block,
  footer .block {
    padding: 1em;
  }
}

@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
  #header {
    margin-bottom: 20px;
    border-top-width: 3px;
    background-size: auto 8px;
  }
  #header .inner > .flex {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
  #header .logo_wrap p {
    font-size: 12px;
    text-align: center;
  }
  #header .logo_wrap p,
  #header .logo_wrap .header-logo {
    margin-bottom: 1em;
  }
  #header .logo_wrap {
    width: 100%;
  }
  #header .header-logo a {
    width: 100%;
    height: auto;
  }
  #header .header-logo img {
    width: 100%;
    height: auto;
  }
  #header .links {
    flex-direction: row;
    width: calc(100% - 70px);
    align-items: flex-end;
    justify-content: flex-start;
  }
  #header .contact {
    display: none;
  }
  #header .sns {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  #header .support {
    font-size: 13px;
    line-height: 30px;
    height: 30px;
    padding-left: 15px;
    border-radius: 8px;
    background-size: 10px;
  }
  #header .gnav {
    position: fixed;
    z-index: 888;
    top: 0;
    left: 0;
    display: none;
    overflow: scroll;
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    padding: 60px 20px 0;
    background: #f6f4ef;
  }
  #header .nav {
    flex-direction: column;
  }
  #header .nav > li {
    border-bottom: solid 1px #ddd;
  }
  #header .nav .nav-item {
    padding: 0.8em 1em;
  }
  #header .nav .nav-item.has-menu {
    padding-right: 0;
  }
  #header .nav .nav-item.has-menu::after {
    display: none;
  }
  #header .menu {
    position: static;
    visibility: visible;
    margin-bottom: 0.8em;
    padding-left: 1em;
    opacity: 1;
  }
  #header .menu .inner {
    padding: 0;
  }
  #header .menu .flex {
    flex-direction: column;
    gap: 0;
  }
  #header .menu .flex a {
    font-size: 14px;
    padding: 0.3em 0;
  }
  .toggle_button {
    display: block;
  }
  .footer {
    border-bottom-width: 3px;
    background-size: auto 8px;
  }
  .footer .terms {
    flex-direction: column;
    justify-content: center;
  }
  .breadcrumb {
    font-size: 1.2rem;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .heading01 {
    font-size: 2rem;
  }
  .heading02 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 420px) {
  body {
    margin: 0;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
    font-size: 1.4rem;
  }
  .section {
    padding: 2em 0;
  }
  #header {
    margin-bottom: 0;
  }
  .breadcrumb .flex {
    flex-wrap: wrap;
  }
  .heading01 {
    font-size: 1.8rem;
  }
  .heading03 {
    font-size: 1.6rem;
    padding-left: 1.5em;
  }
  .heading03::before {
    width: 1em;
  }
  .heading04 {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=common.css.map */
