@charset "UTF-8";
main {
  margin-bottom: 0 !important;
}

.ank__area {
  padding-top: 80px;
  margin-top: -80px;
}

.sp_only {
  display: none;
}

@media (max-width: 767px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
.shadow01 {
  text-shadow: 4px 4px 4px #f38d7b, -4px -4px 4px #f38d7b, -4px 4px 4px #f38d7b, 4px -4px 4px #f38d7b, 4px 0 4px #f38d7b, -4px 0 4px #f38d7b, 0 4px 4px #f38d7b, 0 -4px 4px #f38d7b;
}

.fc_oswald {
  font-family: "Oswald", sans-serif;
}

.fc_zen-kaku-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.flex__cont {
  display: flex;
  flex-wrap: wrap;
}

.ta__right {
  text-align: right;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

::-moz-placeholder {
  line-height: 1.4em;
  color: #333;
}

p,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6,
dt,
dd,
::placeholder {
  line-height: 1.4em;
  color: #333;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
}

@media (max-width: 480px) {
  body {
    padding-top: 0;
  }
}

.cont__inner {
  margin: auto;
  width: 96%;
  max-width: 850px;
}
@media (max-width: 480px) {
  .cont__inner {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

.bg01__wrap {
  background: url(../img/bg_01.jpg) top center;
  background-size: auto;
}

.bg02__wrap {
  background: url(../img/bg_02.jpg) top center;
  background-size: auto;
}

.bg03__wrap {
  background: url(../img/bg_03.jpg) top center;
  background-size: auto;
}

.bg04__wrap {
  background: #fff;
}

.bg05__wrap {
  background: url(../img/bg_04.jpg) top center;
  background-size: auto;
}

p.notes__text {
  position: relative;
  padding-left: 1.25em;
}
p.notes__text::before {
  content: "※";
  position: absolute;
  left: 0;
}

.contact__btn {
  display: block;
  width: 60%;
  margin: 64px auto 0;
  background: url(../img/icon_arrow.png) 96% center #000 no-repeat;
  background-size: auto;
  padding: 24px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1em;
  box-shadow: 0 0 8px #f38d7b;
}
@media (max-width: 480px) {
  .contact__btn {
    width: 80%;
    margin: 32px auto 0;
    background: url(../img/icon_arrow.png) 96% center #000 no-repeat;
    background-size: auto;
    padding: 16px;
    font-size: 16px;
  }
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 480px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

a.link_btn {
  display: block;
  width: 80%;
  max-width: 360px;
  margin: auto;
  position: relative;
  padding: 10px 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  border-bottom: 6px solid #124278;
  margin-bottom: 1.5rem;
}
a.link_btn::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  background: url(../img/arrow.png) center center no-repeat;
  background-size: cover;
}
a.link_btn:hover {
  border-top: 4px solid #fff;
  border-bottom: 2px solid #124278;
}
a.link_btn.line_btn {
  background: none;
}

.textShadow {
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  background: none;
}

.img_wrap {
  line-height: 0;
  margin: auto;
}
.img_wrap img {
  width: 100%;
  line-height: 0;
}

#mobileMenu {
  display: none;
}
#mobileMenu.active {
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
}
header .header__area .cont__inner {
  justify-content: space-between;
  padding: 20px 10px;
}
header .header__area .cont__inner .header__logo {
  max-width: 320px;
}
header .header__area .cont__inner .header__logo a {
  display: block;
  line-height: 0;
}
@media (max-width: 480px) {
  header .header__area .cont__inner .header__logo {
    width: 60%;
  }
}
header .header__area .cont__inner .hum__cont {
  display: flex;
  align-items: end;
}
header .header__area .cont__inner .hum__cont .hum__menu ul li {
  margin-left: 1em;
}
header .header__area .cont__inner .hum__cont .hum__menu ul li a {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 780px) {
  header .header__area .cont__inner .hum__cont {
    z-index: 5;
    position: absolute;
  }
  header .header__area .cont__inner .hum__cont.open-menu {
    display: block;
    flex-flow: column;
    justify-content: flex-start;
    padding: 5% 5% 5%;
    box-sizing: border-box;
    background-color: #efefef;
    overflow-y: auto;
    z-index: 990;
    animation: fadeIn 0.7s ease 0s 1 normal;
    opacity: 1;
  }
}
@media (max-width: 480px) {
  header .header__area .cont__inner .hum__cont {
    display: none;
  }
  header .header__area .cont__inner .hum__cont.open-menu {
    padding: 0 0 10%;
  }
}
header .header__area .cont__inner .menu_btn {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  z-index: 999;
}
@media (max-width: 780px) {
  header .bars {
    width: 100%;
    height: 100%;
    position: relative;
  }
  header .bars span {
    position: absolute;
    height: 2px;
    width: 50%;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.3s;
  }
  header .bars span:nth-child(1) {
    top: 32%;
  }
  header .bars span:nth-child(2) {
    top: 50%;
  }
  header .bars span:nth-child(3) {
    top: 68%;
  }
  header .bars p {
    font-size: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
  header .bars.open span:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg);
  }
  header .bars.open span:nth-child(2) {
    opacity: 0;
  }
  header .bars.open span:nth-child(3) {
    top: 50%;
    transform: rotate(45deg);
  }
}

.mobileMenu_bg {
  background: #333;
}
.mobileMenu_bg nav a {
  color: #fff;
}

@media (max-width: 480px) {
  .header__container .header__area__box02 {
    display: none;
  }
}
.header__container .header__area__box02 .cont__inner .header__menu__list ul {
  width: 100%;
  justify-content: space-between;
}
.header__container .header__area__box02 .cont__inner .header__menu__list ul li {
  width: 25%;
  padding: 10px 0;
}
.header__container .header__area__box02 .cont__inner .header__menu__list ul li:first-child a {
  border-left: 1px solid #ccc;
}
.header__container .header__area__box02 .cont__inner .header__menu__list ul li a {
  display: block;
  padding: 5px 0;
  text-align: center;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .header__container .header__area__box02 .cont__inner .header__menu__list ul li {
    width: 50%;
    padding: 10px 0;
  }
  .header__container .header__area__box02 .cont__inner .header__menu__list ul li:first-child a {
    border-left: 1px solid #ccc;
  }
  .header__container .header__area__box02 .cont__inner .header__menu__list ul li:nth-child(3) a {
    border-left: 1px solid #ccc;
  }
  .header__container .header__area__box02 .cont__inner .header__menu__list ul li a {
    display: block;
    padding: 5px 0;
    text-align: center;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
  }
}

footer {
  background: #000;
  padding: 32px 0;
}
footer h2 {
  display: block;
  width: 50%;
  max-width: 200px;
  margin: auto;
}
footer h1 {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-top: 16px;
}
@media (max-width: 480px) {
  footer h1 {
    font-size: 16px;
  }
}
footer p {
  text-align: center;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 480px) {
  footer p {
    font-size: 12px;
  }
}
footer p.copy {
  margin-top: 24px;
  font-size: 14px;
}
@media (max-width: 480px) {
  footer p.copy {
    font-size: 10px;
  }
}
footer a {
  text-align: center;
  text-decoration: underline;
  margin: auto;
  display: block;
  color: #fff;
  font-size: 16px;
  margin-top: 8px;
}
@media (max-width: 480px) {
  footer a {
    font-size: 12px;
  }
}

#page_top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 50px;
  z-index: 888;
}
@media (max-width: 480px) {
  #page_top {
    width: 40px;
  }
}
#page_top img {
  width: 100%;
}

.copy_text {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 2em;
  line-height: 1.3em;
}
@media (max-width: 480px) {
  .copy_text {
    font-size: 14px;
    margin-top: 2%;
    margin-bottom: 4%;
  }
}

main {
  margin-bottom: 80px;
}
@media (max-width: 480px) {
  main {
    margin-bottom: 8%;
  }
}

#wrapper {
  position: relative;
  overflow: hidden;
}

section.content {
  padding: 80px 0;
}
@media (max-width: 480px) {
  section.content {
    padding: 8% 0;
  }
}
a.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.mt1 {
  margin-top: 20px;
}

.fadeIn {
  opacity: 0;
}

.fadeIn.scrollin {
  animation: fadeIn 0.7s ease 0s 1 normal;
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
.movie_area {
  max-width: 800px;
  margin: 40px auto 0;
}
.movie_area .youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie_area .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.no-link {
  pointer-events: none;
}

.mb-01 {
  margin-bottom: 120px !important;
}
@media (max-width: 480px) {
  .mb-01 {
    margin-bottom: 12% !important;
  }
}

.mb-02 {
  margin-bottom: 40px !important;
}
@media (max-width: 480px) {
  .mb-02 {
    margin-bottom: 6% !important;
  }
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text__link {
  text-decoration: underline;
  cursor: pointer;
}

.fv__wrap {
  background: url(../img/pc_fv_bg.jpg) top center;
  background-size: auto;
  min-height: 500px;
}
.fv__wrap .flex__cont {
  justify-content: center;
}
.fv__wrap .main__ttl {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.fv__wrap h1 {
  font-size: 56px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 2px #333;
}
.fv__wrap h1 span {
  font-size: 24px;
  color: #fff;
  font-weight: normal;
}
@media (max-width: 480px) {
  .fv__wrap h1 {
    font-size: 36px;
    line-height: 1.2em;
  }
  .fv__wrap h1 span {
    font-size: 21px;
    line-height: 1.2em;
    display: block;
    margin-top: 16px;
  }
}

.cont__wrap {
  padding: 120px 0;
}
@media (max-width: 480px) {
  .cont__wrap {
    padding: 64px 0;
  }
}
.cont__wrap .cott__ttl {
  text-align: center;
}
.cont__wrap .cott__ttl img {
  height: 70px;
  width: auto;
  margin: auto;
}
@media (max-width: 480px) {
  .cont__wrap .cott__ttl img {
    height: auto;
    width: 100%;
  }
}

.cont01__wrap h2 {
  font-size: 48px;
  text-align: center;
  color: #f38d7b;
  font-weight: bold;
}
@media (max-width: 480px) {
  .cont01__wrap h2 {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.cont01__wrap p {
  margin-top: 32px;
  font-size: 16px;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 480px) {
  .cont01__wrap p {
    font-size: 14px;
    line-height: 1.2em;
    margin-top: 16px;
    margin-bottom: 40px;
  }
}
.cont01__wrap .main__img {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  line-height: 0;
  box-shadow: 0 0 8px #f38d7b;
}
@media (max-width: 480px) {
  .cont01__wrap .main__img {
    width: 90%;
    margin: auto;
  }
}

.cont02__wrap .nayami__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 64px;
  margin-bottom: 32px;
}
.cont02__wrap .nayami__list li {
  position: relative;
  border: 3px solid #f38d7b;
  background: #fff;
  box-sizing: border-box;
  padding: 24px 16px;
  border-radius: 16px;
  width: 30%;
  margin: 0 12px 24px;
}
.cont02__wrap .nayami__list li::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url(../img/icon_check.png) top center;
  background-size: cover;
  position: absolute;
  margin-left: -19px;
  left: 50%;
  top: -19px;
}
.cont02__wrap .nayami__list li p {
  text-align: center;
  font-size: 16px;
}
@media (max-width: 480px) {
  .cont02__wrap .nayami__list {
    margin-top: 32px;
    margin-bottom: 16px;
    justify-content: space-between;
  }
  .cont02__wrap .nayami__list li {
    width: 48%;
    margin: 0 0 24px 0;
    padding: 24px 4px 16px;
  }
  .cont02__wrap .nayami__list li::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon_check.png) top center;
    background-size: cover;
    position: absolute;
    margin-left: -15px;
    left: 50%;
    top: -15px;
  }
  .cont02__wrap .nayami__list li p {
    font-size: 14px;
    letter-spacing: -1px;
  }
}
.cont02__wrap .main_img {
  display: block;
  width: 70%;
  margin: auto;
}
.cont02__wrap h3 {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  margin-top: 32px;
}
.cont02__wrap h3 span {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .cont02__wrap h3 {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
    margin-top: 16px;
  }
  .cont02__wrap h3 span {
    font-size: 18px;
    font-weight: bold;
  }
}
.cont02__wrap h4 {
  font-size: 21px;
  text-align: center;
  margin-top: 16px;
}
.cont02__wrap h4 span {
  color: #c80a64;
}
@media (max-width: 480px) {
  .cont02__wrap h4 {
    font-size: 16px;
  }
}
.cont02__wrap .cont__detail {
  background: #fff2ee;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 32px 24px;
  margin-top: 40px;
}
.cont02__wrap .cont__detail .detail__box {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dotted #f38d7b;
}
.cont02__wrap .cont__detail .detail__box.bb__none {
  border-bottom: none;
}
.cont02__wrap .cont__detail .detail__box .icon__box {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 24px 16px;
}
.cont02__wrap .cont__detail .detail__box .text__box {
  width: 75%;
  padding: 24px 16px;
  box-sizing: border-box;
}
.cont02__wrap .cont__detail .detail__box .text__box h3 {
  font-size: 24px;
  color: #f38d7b;
  text-align: left;
  margin: 0;
}
.cont02__wrap .cont__detail .detail__box .text__box p {
  font-size: 18px;
  text-align: left;
  margin-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 480px) {
  .cont02__wrap .cont__detail {
    padding: 32px 24px;
    margin-top: 40px;
  }
  .cont02__wrap .cont__detail .detail__box {
    position: relative;
  }
  .cont02__wrap .cont__detail .detail__box.bb__none {
    border-bottom: none;
  }
  .cont02__wrap .cont__detail .detail__box .icon__box {
    width: 28%;
    align-items: start;
    padding: 16px;
  }
  .cont02__wrap .cont__detail .detail__box .icon__box img {
    max-height: 42px;
    width: auto;
  }
  .cont02__wrap .cont__detail .detail__box .text__box {
    width: 72%;
    padding: 16px;
    box-sizing: border-box;
  }
  .cont02__wrap .cont__detail .detail__box .text__box h3 {
    font-size: 16px;
    line-height: 1.2em;
  }
  .cont02__wrap .cont__detail .detail__box .text__box p {
    font-size: 12px;
    width: 75vw;
    position: relative;
    left: -26.5vw;
    margin-top: 8px;
  }
}

.cont03__wrap {
  margin-top: 120px;
}
@media (max-width: 480px) {
  .cont03__wrap {
    margin-top: 72px;
  }
}
.cont03__wrap h3 {
  font-size: 24px;
  color: #c80a64;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 480px) {
  .cont03__wrap h3 {
    font-size: 18px;
  }
}
.cont03__wrap h4 {
  font-size: 21px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .cont03__wrap h4 {
    font-size: 16px;
  }
}
.cont03__wrap .lineup__wrap {
  background: #fff2ee;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 32px 24px;
}
.cont03__wrap .lineup__wrap .lineup__box {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dotted #f38d7b;
}
.cont03__wrap .lineup__wrap .lineup__box.bb__none {
  border-bottom: none;
}
.cont03__wrap .lineup__wrap .lineup__box .icon__box {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 24px 16px;
}
.cont03__wrap .lineup__wrap .lineup__box .icon__box img {
  border-radius: 6px;
  overflow: hidden;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box {
  width: 65%;
  padding: 24px 16px;
  box-sizing: border-box;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box.w__full {
  width: 100%;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box h3 {
  font-size: 24px;
  text-align: left;
  color: #333;
  display: flex;
  align-items: end;
  line-height: 1em;
  margin: 0;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box h3.jc__right {
  justify-content: right;
  text-align: right;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box h3.jc__right span {
  margin-left: 0.5em;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box h3 span {
  margin-right: 0.5em;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box h3 span img {
  height: 42px;
  width: auto;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box p {
  font-size: 18px;
  text-align: left;
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box ul li {
  border-radius: 16px;
  overflow: hidden;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box ul li h4 {
  font-size: 18px;
  margin: 8px 0 0;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box ul li p {
  font-size: 14px;
  margin: 0;
  padding: 4px 8px 0;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box ul li p.topping__img {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.cont03__wrap .lineup__wrap .lineup__box .text__box ul li p.topping__img img {
  line-height: 0;
}
@media (max-width: 480px) {
  .cont03__wrap .lineup__wrap {
    padding: 24px 16px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .icon__box {
    width: 30%;
    padding: 8px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box {
    width: 70%;
    padding: 8px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box.w__full {
    width: 100%;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box h3 {
    font-size: 14px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box h3.jc__right {
    justify-content: right;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box h3.jc__right span {
    margin-left: 0.5em;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box h3 span {
    margin-right: 0.5em;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box h3 span img {
    height: 20px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box p {
    font-size: 12px;
    margin-top: 8px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box ul {
    gap: 8px;
    margin-top: 32px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box ul li {
    border-radius: 8px;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box ul li h4 {
    font-size: 14px;
    margin: 0;
  }
  .cont03__wrap .lineup__wrap .lineup__box .text__box ul li p {
    font-size: 12px;
    margin: 0;
    padding: 4px 8px 0;
  }
}

.cont04__wrap .cott__ttl img {
  height: 90px;
}
@media (max-width: 480px) {
  .cont04__wrap .cott__ttl img {
    height: auto;
  }
}
.cont04__wrap .reasons__wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cont04__wrap .reasons__wrap .reasons__box {
  width: 33.3333333333%;
  box-sizing: border-box;
  padding: 24px 24px;
  border-right: 1px dotted #f38d7b;
  display: grid;
  grid-template-rows: 60px 100px 70px 1fr;
}
.cont04__wrap .reasons__wrap .reasons__box.br__none {
  border-right: none;
}
.cont04__wrap .reasons__wrap .reasons__box .reasons__no {
  width: 20%;
  display: block;
  margin: auto;
}
.cont04__wrap .reasons__wrap .reasons__box .reasons__icon {
  width: 100%;
}
.cont04__wrap .reasons__wrap .reasons__box .reasons__icon img {
  width: auto;
  height: 80px;
  display: block;
  margin: auto;
}
.cont04__wrap .reasons__wrap .reasons__box h3 {
  font-size: 24px;
  color: #f38d7b;
  text-align: center;
  line-height: 1.2em;
  height: 2.4em;
}
.cont04__wrap .reasons__wrap .reasons__box h3 span {
  font-size: 18px;
}
.cont04__wrap .reasons__wrap .reasons__box p {
  font-size: 14px;
}
@media (max-width: 480px) {
  .cont04__wrap .reasons__wrap {
    display: block;
    margin-top: 32px;
  }
  .cont04__wrap .reasons__wrap .reasons__box {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 16px;
    border-right: none;
    border-bottom: 1px dotted #f38d7b;
    display: block;
    clear: both;
    position: relative;
    overflow: hidden;
  }
  .cont04__wrap .reasons__wrap .reasons__box.br__none {
    border-right: none;
  }
  .cont04__wrap .reasons__wrap .reasons__box .reasons__no {
    width: 20px;
    display: block;
    margin: auto;
    position: absolute;
    left: 30%;
    top: 20%;
  }
  .cont04__wrap .reasons__wrap .reasons__box .reasons__icon {
    width: 20%;
    float: left;
  }
  .cont04__wrap .reasons__wrap .reasons__box .reasons__icon img {
    width: 100%;
    height: auto;
  }
  .cont04__wrap .reasons__wrap .reasons__box h3 {
    font-size: 16px;
    color: #f38d7b;
    text-align: left;
    padding-left: 12%;
    float: right;
    width: 75%;
    box-sizing: border-box;
  }
  .cont04__wrap .reasons__wrap .reasons__box h3 span {
    font-size: 14px;
  }
  .cont04__wrap .reasons__wrap .reasons__box p {
    font-size: 12px;
    float: right;
    width: 70%;
    margin-top: 8px;
  }
}

.qa__wrap {
  /* FAQパーツ */
  /* アニメーション後のスタイル */
  /* ＋ボタンのアニメーション */
}
.qa__wrap .cott__ttl {
  margin-bottom: 40px;
}
.qa__wrap .pageSubTitle {
  font-size: 40px;
  line-height: 1.75;
  font-weight: 900;
  font-style: normal;
  position: relative;
}
.qa__wrap .pageSubTitle::after {
  content: "";
  display: block;
  width: 74.6px;
  height: 2px;
  margin: 0 auto;
  margin-top: 35.2px;
}
.qa__wrap .pageSubTitle > span {
  display: block;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 400;
  font-style: normal;
  margin-top: 5px;
}
.qa__wrap .pageSubTitle--center {
  text-align: center;
}
.qa__wrap .pageSubTitle2 {
  font-size: 24px;
  color: #f38d7b;
}
@media (max-width: 480px) {
  .qa__wrap .pageSubTitle2 {
    font-size: 16px;
  }
}
.qa__wrap .contentText {
  font-size: 18px;
}
@media (max-width: 480px) {
  .qa__wrap .contentText {
    font-size: 14px;
  }
}
.qa__wrap .qa {
  padding-top: 180px;
  padding-bottom: 278px;
}
.qa__wrap .qa__box {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.qa__wrap .qa__box > dl > dt {
  background-color: #fff2ee;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  position: relative;
}
@media (max-width: 480px) {
  .qa__wrap .qa__box > dl > dt {
    padding: 8px 48px 8px 16px;
  }
}
.qa__wrap .qa__box > dl > dt .crossBar {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.qa__wrap .qa__box > dl > dt .crossBar::before {
  content: "";
  display: inline-block;
  width: 1.6px;
  height: 100%;
  background-color: #f38d7b;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center center; /* 中心を基準にtransform */
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.qa__wrap .qa__box > dl > dt .crossBar::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.6px;
  background-color: #f38d7b;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.qa__wrap .qa__box > dl > dt > span {
  font-size: 28px;
  line-height: 1.75;
  font-weight: 500;
  font-style: normal;
  color: #f38d7b;
  margin-right: 23px;
}
@media (max-width: 480px) {
  .qa__wrap .qa__box > dl > dt > span {
    font-size: 21px;
    margin-right: 8px;
  }
}
.qa__wrap .qa__box > dl > dd {
  margin: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 0px 30px; /* paddingの上下を0にする */
  max-height: 0; /* max-heightを0にする、レスポンシブ対応 */
  overflow: hidden; /* overflow: hidden;を付けるのがポイント */
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.qa__wrap .qa__box > dl > dd > span {
  font-size: 28px;
  line-height: 1.7;
  font-weight: 500;
  font-style: normal;
  color: #f38d7b;
  margin-right: 23px;
}
.qa__wrap .qa__box > dl > dd.is-open { /* heightとpaddingをアニメーション */
  max-height: 200px;
  padding: 10px 30px;
}
.qa__wrap .qa__box > dl > dt.is-open .crossBar::before {
  transform: translateX(-50%) rotate(90deg); /* 90度回転 */
}

.contact__wrap h2 {
  margin-bottom: 32px;
}
.contact__wrap h3 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.contact__wrap h3 span {
  color: #f38d7b;
}
@media (max-width: 480px) {
  .contact__wrap h3 {
    font-size: 21px;
  }
}
.contact__wrap .form__box {
  background: #fff;
  box-sizing: border-box;
  padding: 24px 24px;
  border-radius: 16px;
}
.contact__wrap .form__box dl {
  display: flex;
  flex-wrap: wrap;
}
.contact__wrap .form__box dl dt {
  width: 30%;
  border-bottom: 1px dotted #333;
  box-sizing: border-box;
  padding: 16px 24px;
}
.contact__wrap .form__box dl dt.bb__none {
  border-bottom: none;
}
.contact__wrap .form__box dl dt p span {
  color: #f00;
  margin-left: 0.5em;
}
.contact__wrap .form__box dl dd {
  width: 70%;
  border-bottom: 1px dotted #333;
  box-sizing: border-box;
  padding: 16px 24px;
}
.contact__wrap .form__box dl dd.bb__none {
  border-bottom: none;
}
.contact__wrap .form__box dl dd input {
  width: 100%;
}
.contact__wrap .form__box dl dd select {
  width: 100%;
}
.contact__wrap .form__box dl dd textarea {
  width: 100%;
}
.contact__wrap .form__box .submit__btn input {
  display: block;
  width: 60%;
  margin: 24px auto 0;
  background: url(../img/icon_arrow.png) 96% center #000 no-repeat;
  background-size: auto;
  padding: 24px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1em;
}
@media (max-width: 480px) {
  .contact__wrap .form__box {
    background: #fff;
    box-sizing: border-box;
    padding: 24px 16px;
    border-radius: 16px;
  }
  .contact__wrap .form__box dl {
    display: flex;
    flex-wrap: wrap;
  }
  .contact__wrap .form__box dl dt {
    width: 100%;
    border-bottom: none;
    box-sizing: border-box;
    padding: 8px 16px 0;
  }
  .contact__wrap .form__box dl dt p span {
    color: #f00;
    margin-left: 0.5em;
  }
  .contact__wrap .form__box dl dd {
    width: 100%;
    border-bottom: 1px dotted #333;
    box-sizing: border-box;
    padding: 8px 16px;
  }
  .contact__wrap .form__box dl dd input {
    width: 100%;
  }
  .contact__wrap .form__box dl dd select {
    width: 100%;
  }
  .contact__wrap .form__box dl dd textarea {
    width: 100%;
  }
  .contact__wrap .form__box .submit__btn input {
    display: block;
    width: 60%;
    margin: 24px auto 0;
    background: url(../img/icon_arrow.png) 96% center #000 no-repeat;
    background-size: auto;
    padding: 24px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 1em;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .contact__wrap .form__box .submit__btn input {
    width: 80%;
    margin: 32px auto 0;
    background: url(../img/icon_arrow.png) 96% center #000 no-repeat;
    background-size: auto;
    padding: 16px;
    font-size: 16px;
  }
}
.contact__wrap .form__box input, .contact__wrap .form__box select, .contact__wrap .form__box textarea {
  border-radius: 0.25rem;
  border: 1px solid #707070;
  outline: none;
  padding: 8px 8px;
  box-sizing: border-box;
}

.menu-overlay {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.menu-overlay.active {
  transform: translateX(0);
}

.hamburger {
  transition: all 0.3s ease;
}

.hamburger.active .line1 {
  transform: rotate(-45deg) translate(-7px, 8px);
}

.hamburger.active .line2 {
  opacity: 0;
}

.hamburger.active .line3 {
  transform: rotate(45deg) translate(-6px, -8px);
}

.line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */