@charset "UTF-8";
/* 基本フォントサイズ設定 */
html {
  font-size: 100%; /* ブラウザのデフォルトのフォントサイズ。大抵は16px */
}

/* //基本フォントサイズ設定 */
/* 全体設定 */
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  color: #474747;
  -webkit-font-smoothing: antialiased; /* macで文字が太くなる現象を解消 */
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  transition: all .3s;
}
a:hover {
  opacity: .7;
}

.container {
  padding: 0 35px;
}
.child-container {
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
.ul-circle-num li {
  position: relative;
  padding-left: 20px;
}
.ul-circle-num li::before {
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.ul-circle-num li.ul-circle-num-item--1::before {
  content: '①';
}
.ul-circle-num li.ul-circle-num-item--2::before {
  content: '②';
}
.ul-circle-num li.ul-circle-num-item--3::before {
  content: '③';
}
@media screen and (min-width: 576px) {
  .child-container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .child-container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .child-container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 81.25vw;
    margin: 0 auto;
    padding: 0 35px;
  }
  .container-pc {
    width: 81.25vw;
    margin: 0 auto;
    padding: 0 35px;
  }
  .child-container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .child-container {
    max-width: 1320px;
  }
}
@media screen and (min-width: 1920px) {
  .child-container {
    max-width: 1530px;
  }
}

/* //全体設定 */
/* フォントファミリー */
.notoserif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.notosans {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.hahmlet {
  font-family: "Hahmlet", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.mplus1 {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.mplus1p {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
}
.mplusrounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
}
.zenmarugo {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
}

/* //フォントファミリー */
/* フォントウェイト */
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* //フォントウェイト *//*# sourceMappingURL=style-common.css.map */

/* color */
.txt-rose {
  color: #CF7878;
}
/* //color */

/* bg-color */
.bg-light-pink {
  background-color: #FFF1F1;
}
/* //bg-color */

/* 単体クラス */
.d-none {
  display: none;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.align-items-center {
  align-items: center;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
@media screen and (min-width: 576px) {
  .d-sm-block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .d-xxl-block {
    display: block;
  }
  .d-xxl-none {
    display: none;
  }
}
@media screen and (min-width: 1920px) {
  .d-xxxl-block {
    display: block;
  }
}
/* //単体クラス */

/* ボタン */
.btn-pattern1 {
  display: block;
  background-color: #B3467A;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 32.5px 40px;
  position: relative;
  transition: all .3s;
}
.btn-pattern1:hover {
  opacity: 1;
}
.btn-pattern1:hover::before {
  transform: translate(10px, -50%);
}
.btn-pattern1::before {
  content: '';
  width: 16px;
  height: 31px;
  background: url(../img/common/icon-arrow-right-white.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  transition: all .3s;
}
.btn-pattern1.no-arrow::before {
  content: none;
}
.btn-pattern2 {
  background-color: #E88787;
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  padding: 24px 20px;
  width: 100%;
  display: block;
}
/* //ボタン */

/* アニメーション */
.fade-in-from-bottom-elm {
  opacity: 0;
  transform: translateY(20px);
}
.fade-in-from-bottom-elm.scrolled {
  animation: fade-in-from-bottom 2s linear forwards;
}
@keyframes fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* //アニメーション */

/* セクションタイトル */
.ttl-wrapper {
  text-align: center;
  padding: 0 13px;
}
.ttl-wrapper picture {
  width: min(93.38422391857506vw, 960px);
}
.sec-ttl-sub {
  font-size: 20px;
  font-weight: 500;
  color: #B3467A;
}
/* //セクションタイトル */

/* タイトル */
.ttl-pattern1-wrapper {
  margin-bottom: 40px;
  max-width: 892px;
  margin: 0 auto 40px;
}
.ttl-pattern1 {
  font-size: 26px;
  color: #B3467A;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  position: relative;
  text-align: center;
}
.ttl-pattern1 span {
  padding: 0 24px;
  background-color: #FFFFFF;
}
.ttl-pattern1::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #474747;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.ttl-pattern1--en {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  color: #8CC88E;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .ttl-pattern1-wrapper {
    margin: 0 auto 80px;
  }
  .ttl-pattern1 {
    font-size: 32px;
    margin: 0 auto 14px;
  }
  .ttl-pattern1--en {
    font-size: 20px;
  }
}
/* //タイトル */

/* 子ページfv */
.child-fv {
  position: relative;
  /* padding-top: 30px; */
  margin-top: 30px;
}
.child-fv::before {
  content: '';
  width: 90%;
  height: 24.0625vw;
  position: absolute;
  top: 140px;
  right: 0;
  border-radius: 50px 0 0 50px;
}
.child-fv .child-container {
  padding-top: 60px;
}
.child-fv-ttl-wrapper {
  text-align: center;
  width: fit-content;
  padding-bottom: 32px;
}
.child-fv-ttl {
  color: #FF8484;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 10px;
}
.child-fv-ttl--en {
  font-size: 20px;
  color: #FF8484;
  text-align: left;
}
.child-fv-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
  padding-top: 27.989821882951656vw;
  text-align: center;
}
.breadcrumb-wrapper {
  position: absolute;
  top: 0;
}
.breadcrumb-list {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
  row-gap: 8px;
}
.breadcrumb-list-item {
  padding: 0 15px;
  position: relative;
}
.breadcrumb-list-item:not(:last-of-type)::before {
  content: '-';
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
}
.breadcrumb-list-item__link {
  font-size: 18px;
}
@media screen and (min-width: 576px) {
  .child-fv-txt {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .child-fv-txt {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .child-fv-ttl {
    font-size: 64px;
  }
  .child-fv-ttl--en {
    text-align: center;
  }
  .breadcrumb-wrapper {
    top: 110px;
    right: 0;
  }
  .child-fv::before {
    top: 180px;
  }
}
/* //子ページfv */

/* 子ページ共通余白 */
.sec-mt {
  margin-top: 100px;
}
.last-sec-pb {
  padding-bottom: 60px;
}
.child-first-section-pt {
  padding-top: 30vw;
}
@media screen and (min-width: 992px) {
  .sec-mt {
    margin-top: 150px;
  }
  .last-sec-pb {
    padding-bottom: 120px;
  }
}
/* //子ページ共通余白 */

/* パーツ */
.has-box {
  background-color: #FFFEFA;
  box-shadow: 0 4px 4px rgba(00, 00, 00, .25);
}
/* //パーツ */

/* contact */
.sec-contact {
  padding-top: min(3.816793893129771vw, 92px);
  padding-bottom: 22.646310432569976vw;
}
.sec-contact-inner {
  padding: 0 10px;
}
.contact-wrapper {
  background-color: #FEADD3;
  border-radius: 50px;
  padding: 56px 15px 85px;
  color: #FFFFFF;
  text-align: center;
}
.contact-ttl-wrapper {
  padding-bottom: 67px;
  position: relative;
  margin-bottom: 86px;
}
.contact-ttl-wrapper::before {
  content: '';
  width: 209px;
  height: 41px;
  background: url(../img/home/contact-deco.png) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.contact-ttl {
  font-size: min(8.142493638676845vw, 48px);
  margin-bottom: 5.597964376590331vw;
  font-weight: 700;
}
.contact-ttl-sub {
  font-size: 20px;
  margin-bottom: 16px;
}
.contact-message {
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-time {
  font-size: min(3.5623409669211195vw, 16px);
}
.contact-method-txt {
  font-size: min(5.089058524173027vw, 24px);
  margin-bottom: 37px;
  font-weight: 700;
}
.contact-method {
  font-size: 20px;
  font-weight: 700;
}
.contact-method--tel {
  margin-bottom: 22px;
}
.contact-method--fax {
  margin-bottom: 67px;
}
.contact-method-mail-message {
  margin-top: 26px;
  font-size: 16px;
}
.contact-btn-wrapper {
  width: 343px;
  max-width: 100%;
  margin: 42px auto 0;
}
.contact-btn-wrapper .btn-pattern1:hover {
  opacity: .7;
}
@media screen and (min-width: 992px) {
  .sec-contact {
      padding-bottom: 0;
      position: relative;
      z-index: 2;
  }
  .contact-wrapper {
      padding: 39px 15px 35px;
  }
  .contact-pc-flex {
      display: flex;
  }
  .contact-ttl-wrapper,
  .contact-method-wrapper {
      width: 50%;
  }
  .contact-ttl-wrapper {
      border-right: 1px solid #FFFFFF;
      padding-bottom: 57px;
      height: fit-content;
      margin-bottom: 0;
  }
  .contact-ttl {
      margin-bottom: 3px;
  }
  .contact-ttl-sub {
      margin-bottom: 21px;
  }
  .contact-method-flex {
      display: flex;
      gap: 44px;
      justify-content: center;
  }
  .contact-method-txt {
      margin-bottom: 10px;
  }
  .contact-method--tel {
      margin-bottom: 10px;
  }
  .contact-method--fax {
      margin-bottom: 0;
  }
  .contact-method {
      font-size: 16px;
  }
  .contact-btn-wrapper {
      margin: 25px auto 0;
  }
  .contact-method-mail-message {
      margin-top: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-wrapper {
      width: 80%;
      margin: 0 auto;
  }
}
@media screen and (min-width: 1400px) {
  .contact-wrapper {
      width: 66.61%;
  }
}
/* //contact */


.pagetop-btn{position: fixed;bottom: 10px;right: 20px;display: block;width: 50px;z-index: 5;}