@charset "utf-8";
a {
  text-decoration: none;
}
.sec {
  font-family: var(--font-family-Font-1, "Hiragino Kaku Gothic Pro");
}

/* pc */
@media(min-width:741px){
  .sec {
    width: 1200px;
    margin: 0 auto;
  }
  .br-sp {
    display: none;
  }
  .br-pc {
    display: block;
  }
  .h2-ttl {
    text-align: center;
    font-size: 35px;
    color: #2f2f2f;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .h2-ttl-sub {
    font-size: 24px;
    font-family: "Hiragino Kaku Gothic Pro" !important;
  }
}
/* sp */
@media(max-width:740px){
  #contents {
    padding: 0;
  }
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .h2-ttl {
    text-align: center;
    font-size: 28px;
    color: #2f2f2f;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .h2-ttl-sub {
    font-size: 20px;
    font-family: "Hiragino Kaku Gothic Pro" !important;
  }
}

/* kv--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  .kv-inner {
    margin-bottom: 40px;
  }
}
/* sp */
@media(max-width:740px){
  .kv-inner {
    margin-bottom: 20px;
  }
  .kv__ttl-img{
    width: 100%;
  }
}
/* kvここまで--------------------------------------------------------------------- */

/* anker--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  .ank__list {
    display: flex;
    justify-content: center;
    margin-left: -25px;
  }
  .ank__list :not(:last-child) {
    margin-right: 8px;
  }
  .ank__list-item {
    list-style: none;
    border: 1px solid #339170;
    border-radius: 8px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.29);
    text-align: center;
    font-weight: 600;
  }
  .ank__list-item-link {
    width: 313px;
    padding: 20px 30px 20px 10px;
    display: block;
    color: #339170 !important;
    position: relative;
  }
  .ank__list-item-link-genin::after {
    position: absolute;
    top: 23px;
    right: 55px;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(/kosodate/futoukou/_assets/img/arrow_circle_right-green.svg);
    background-repeat: no-repeat;
    background-size: 16px;
  }
  .ank__list-item-link-shourai::after {
    position: absolute;
    top: 23px;
    right: 62px;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(/kosodate/futoukou/_assets/img/arrow_circle_right-green.svg);
    background-repeat: no-repeat;
    background-size: 16px;
  }
  .ank__list-item-link-taiou::after {
    position: absolute;
    top: 23px;
    right: 77px;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(/kosodate/futoukou/_assets/img/arrow_circle_right-green.svg);
    background-repeat: no-repeat;
    background-size: 16px;
  }
}
/* sp */
@media(max-width:740px){
  .ank-inner {
    padding: 0 15px;
  }
  .ank__list {
    display: flex;
    justify-content: center;
  }
  .ank__list :not(:last-child) {
    margin-right: 8px;
  }
  .ank__list-item {
    list-style: none;
    border: 1px solid #339170;
    border-radius: 4px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.29);
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
  }
  .ank__list-item-link {
    display: block;
    width: 109px;
    padding: 8px 4px 32px 4px;
    color: #339170 !important;
    font-size: 14px;
    position: relative;
  }
  .ank__list-item-link::after {
    position: absolute;
    right: 41%;
    top: 46px;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(/kosodate/futoukou/_assets/img/arrow_circle_right-green.svg);
    background-repeat: no-repeat;
    background-size: 16px;
  }
}
/* ankerここまで--------------------------------------------------------------------- */

/* ポップアップ--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  #pcPopup {
    display: block;
  }
  #spPopup {
    display: none;
  }
  body.active {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }
  #inter {
    display: none;
    opacity: 0;
  }
  #inter.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100vw;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(0,0,0,0.55);
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode:forwards;
    opacity:0;
  }
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #inter.inter--app-is-none {
    display: none !important;
  }
  .inter-wrap {
    display: none;
  }
  .inter-wrap.active {
    position: relative;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 345px;
    display: block;
    background-color: #fff;
    border-radius: 6px;
  }
  .inter-close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
  }
  .inter-close-img {
    width: 42px;
    height: 42px;
  }
  .inter-link {
    position: relative;
    display: block;
    width: 100%;
    max-width: 345px;
    margin: 0 auto;
  }
  .inter-img {
    width: 100%;
    max-width: 345px;
  }
  .bnr-overlay-art.no-active {
    display: none;
  }
  .js-bnr-area.no-active {
    display: none;
  }
}
/* sp */
@media(max-width:740px){
  #pcPopup {
    display: none;
  }
  #spPopup {
    display: block;
  }
  body.active {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }
  #inter {
    display: none;
    opacity: 0;
  }
  #inter.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100vw;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(0,0,0,0.55);
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode:forwards;
    opacity:0;
  }
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #inter.inter--app-is-none {
    display: none !important;
  }
  .inter-wrap {
    display: none;
  }
  .inter-wrap.active {
    position: relative;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    display: block;
    background-color: #fff;
    border-radius: 6px;
  }
  .inter-close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 11vw;
  }
  .inter-close-img {
    width: 100%;
  }
  .inter-link {
    display: block;
    width: 100%;
  }
  .inter-img {
    width: 100%;
  }
  .bnr-overlay-art.no-active {
    display: none;
  }
  .js-bnr-area.no-active {
    display: none;
  }
}
/* ポップアップここまで--------------------------------------------------------------------- */

/* 追従ボタン--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  #inquiry__floating {
    position: fixed;
    bottom: -350px;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 1000;
    opacity: 1;
    background: #FAFAFC;
    box-shadow: 0px -3px 24px 0px rgba(0, 0, 0, 0.10);
    padding: 16px 24px 16px 24px;
    text-align: center;
  }
  #inquiry__floating.visible {
    bottom: 0px;
  }
  .inquiry__content__button {
    border: none;
    color: #FFF;
    font-size: 18px;
    border-radius: 7px;
    position: relative;
  }
  .inquiry__content__button a{
    display: block;
    width: 280px;
    padding: 20px 0px 20px 18px;
    color: #FFF;
    font-size: 18px;
  }
  .inquiry__line {
    background: #70BF53;
    margin-right: 20px;
  }
  .inquiry__line::before {
    content: "";
    position: absolute;
    background-image: url(/kosodate/futoukou/_assets/img/sms.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    width: 24px;
    height: 24px;
    top: 25px;
    left: 99px;
  }
  .inquiry__seminar {
    background: #F09CA7;
  }
  .inquiry__seminar::before {
    content: "";
    position: absolute;
    background-image: url(/kosodate/futoukou/_assets/img/article_person.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    width: 24px;
    height: 24px;
    top: 23px;
    left: 65px;
  }
}
/* sp */
@media(max-width:740px){
  #inquiry__floating {
    position: fixed;
    bottom: -350px;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 1000;
    opacity: 1;
    background: #FAFAFC;
    box-shadow: 0px -3px 24px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
  }
  #inquiry__floating.visible {
    bottom: 0px;
  }
  .inquiry__floating__button-box {
    padding: 8px 4px;
    display: flex;
    justify-content: center;
  }
  .inquiry__content__button {
    border: none;
    color: #FFF;
    font-size: 14px;
    border-radius: 7px;
    position: relative;
  }
  .inquiry__content__button a{
    display: block;
    width: 135px;
    padding: 8px 0px 8px 18px;
    color: #FFF;
    /* font-size: 18px; */
  }
  .inquiry__line {
    background: #70BF53;
    margin-right: 3px;
  }
  .inquiry__line::before {
    content: "";
    position: absolute;
    background-image: url(/kosodate/futoukou/_assets/img/sms.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    top: 14px;
    left: 46px;
  }
  .inquiry__seminar {
    background: #F09CA7;
  }
  .inquiry__seminar::before {
    content: "";
    position: absolute;
    background-image: url(/kosodate/futoukou/_assets/img/article_person.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    top: 12px;
    left: 22px;
  }
}
/* 追従ボタンここまで--------------------------------------------------------------------- */

/* lead--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  .lead {
    padding: 60px 0;
    background-image: url(/kosodate/futoukou/_assets/img/lead_back-decoration-pc.png);
    background-position: center;
    background-size: 998px;
    background-repeat: no-repeat;
  }
  .lead-inner {
    padding: 80px 60px;
    background-image: url(/kosodate/futoukou/_assets/img/lead_back-pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.50) 0%, rgba(246, 246, 246, 0.50) 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  }
  .lead .h2-ttl-sub {
    color: #E48897;
  }
  .lead .h2-ttl::after {
    content: "";
    display: block;
    margin: 20px auto 0 auto;
    border-radius: 5px;
    width: 40px;
    height: 4px;
    background: rgb(242,191,199);
    background: linear-gradient(90deg, rgba(242,191,199,1) 0%, rgba(228,136,151,1) 100%);
  }
  .lead__txt {
    text-align: center;
    margin: 0;
  }
  .lead__txt-pink {
    color: #E48897;
    font-weight: 600;
  }
  .pc-none {
    display: none;
  }
  .pc-block {
    display: block;
  }
}
/* sp */
@media(max-width:740px){
  .lead {
    padding-top: 80px;
    padding-bottom: 60px;
    background-image: url(/kosodate/futoukou/_assets/img/lead_back-decoration-sp.png);
    background-size: 200px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .lead-inner {
    padding: 60px 15px;
    background-image: url(/kosodate/futoukou/_assets/img/lead_back-sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.50) 0%, rgba(246, 246, 246, 0.50) 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  }
  .lead .h2-ttl-sub {
    color: #E48897;
  }
  .lead .h2-ttl::after {
    content: "";
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 5px;
    width: 40px;
    height: 4px;
    background: rgb(242,191,199);
    background: linear-gradient(90deg, rgba(242,191,199,1) 0%, rgba(228,136,151,1) 100%);
  }
  .lead__txt-pink {
    color: #E48897;
    font-weight: 600;
  }
  .lead__txt {
    text-align: left;
    margin: 0;
  }
  /* もっと見るボタン */
  .lead__btn-box {
    text-align: center;
  }
  .readmore{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #E48897;
    font-size: 18px;
    margin-left: -20px;
    position: relative;
  }
  .open::after {
    content: "";
    position: absolute;
    background-image: url(/kosodate/futoukou/_assets/img/add_circle-pink.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: 4px;
    right: -24px;
  }
  .close::after {
    content: "";
    position: absolute;
    background-image: url(/kosodate/futoukou/_assets/img/close_circle-pink.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: 4px;
    right: -24px;
  }
  .lead__hide-box {
    max-height: 0; /* 初期状態は非表示 */
    overflow: hidden; /* はみ出した内容を隠す */
    transition: max-height 1s ease; /* アニメーションの設定 */
  }
  .lead__hide-box.visible {
    max-height: 300px; /* 表示する際の最大高さ。内容に応じて調整 */
}
  .lead__btn-box {
    margin-top: 10px;
  }

}
/* leadここまで--------------------------------------------------------------------- */

/* seminar--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  .seminar {
    margin-bottom: 0px !important;
    padding-bottom: 80px;
    margin-top: 0px !important;
    background-image: url(/kosodate/futoukou/_assets/img/seminar_back-decoration-pc.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 245px;
  }
  .seminar__button {
    display: block !important;
    text-align: center;
    margin-top: 24px;
  }
}
/* sp */
@media(max-width:740px){
  .seminar {
    margin-bottom: 0px !important;
    padding-bottom: 60px;
    background-image: url(/kosodate/futoukou/_assets/img/seminar_back-decoration-sp.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 186px;
  }
  .seminar__button {
    display: block !important;
    text-align: center;
    margin-top: 24px;
  }
}
/* seminarここまで--------------------------------------------------------------------- */

/* recommendation--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  .recommendation-inner {
    padding: 80px 60px;
    background-color: #FFF2F4;
  }
  .recommendation .h2-ttl-sub {
    color: #E48897;
  }
  .recommendation .h2-ttl::after {
    content: "";
    display: block;
    margin: 20px auto 0 auto;
    border-radius: 5px;
    width: 40px;
    height: 4px;
    background: rgb(242,191,199);
    background: linear-gradient(90deg, rgba(242,191,199,1) 0%, rgba(228,136,151,1) 100%);
  }
  .recommendation-link {
    display: flex;
    justify-content: center;
  }
  .recommendation-link .recommendation-link-item:not(:last-child) {
    margin-right: 20px;
  }
}
/* sp */
@media(max-width:740px){
  .recommendation .h2-ttl-sub {
    color: #E48897;
  }
  .recommendation .h2-ttl::after {
    content: "";
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 5px;
    width: 40px;
    height: 4px;
    background: rgb(242,191,199);
    background: linear-gradient(90deg, rgba(242,191,199,1) 0%, rgba(228,136,151,1) 100%);
  }
  .recommendation-inner {
    padding: 60px 15px;
    background-color: #FFF2F4;
  }
  .recommendation-link {
    display: flex;
    flex-flow: column;
    text-align: center;
  }
  .recommendation-link .recommendation-link-item:not(:last-child) {
    margin-bottom: 18px;
  }
}
/* recommendationここまで--------------------------------------------------------------------- */

/* specialist--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  .specialist-inner {
    width: 960px;
    margin: 0 auto;
    padding: 60px 0;
  }
  .specialist .h2-ttl::after {
    content: "";
    display: block;
    margin: 20px auto 0 auto;
    border-radius: 5px;
    width: 40px;
    height: 4px;
    background: rgb(51,145,112);
    background: linear-gradient(90deg, rgba(51,145,112,1) 0%, rgba(121,193,87,1) 100%);
  }
  .specialist__profile {
    display: flex;
    margin-bottom: 30px;
  }
  .specialist__icon-img {
    margin-right: 20px;
  }
  .specialist__field {
    display: inline;
    padding: 5px 7px;
    background-color: #2E8063;
    color: #FFFFFF;
    font-size: 16px;
  }
  .specialist__name-box {
    width: 100%;
  }
  .specialist__name {
    color: #2E8063;
    font-weight: bold;
    font-size: 30px;
    margin: 0;
    padding: 8px 0 12px 0;
    border-bottom: 2px solid #2E8063;
  }
  .specialist__name-furigana {
    font-weight: 100;
    margin-left: 14px;
    font-size: 24px;
  }
  .specialist__explanation {
    color: #2E8063;
    margin: 0;
    padding: 6px 0 0 0;
  }
}
/* sp */
@media(max-width:740px){
  .specialist-inner {
    padding: 40px 15px;
    margin: 0;
  }
  .specialist .h2-ttl::after {
    content: "";
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 5px;
    width: 40px;
    height: 4px;
    background: rgb(51,145,112);
    background: linear-gradient(90deg, rgba(51,145,112,1) 0%, rgba(121,193,87,1) 100%);
  }
  .specialist__profile {
    display: flex;
    flex-flow: column;
    margin-bottom: 15px;
  }
  .specialist__icon {
    text-align: center;
  }
  .specialist__icon-img {
    margin-bottom: 20px;
  }
  .specialist__field {
    display: inline;
    padding: 4.5px 10px;
    background-color: #2E8063;
    color: #FFFFFF;
    font-size: 11px;
  }
  .specialist__name {
    color: #2E8063;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    padding: 2px 0 5px 0;
    border-bottom: 1px solid #2E8063;
  }
  .specialist__explanation {
    color: #2E8063;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 0 14px 0;
  }
  .specialist__name-furigana {
    font-weight: 100;
    margin-left: 10px;
    font-size: 14px;
  }
}
/* specialistここまで--------------------------------------------------------------------- */

/* バナー--------------------------------------------------------------------- */
/* pc */
@media(min-width:741px){
  .banner-futoukou {
    width: 960px;
    margin: 0 auto;
    padding: 0;
  }
  .banner-futoukou a:hover {
    opacity: 0.8;
  }
  .banner-futoukou img {
    max-width: 960px;
    width: 100%;
  }
}
/* sp */
@media(max-width:740px){
  .banner-futoukou {
    padding: 0px 15px;
    margin: 0;
    text-align: center;
  }
  .banner-futoukou a:hover {
    opacity: 0.8;
  }
  .banner-futoukou img {
    width: 100%;
  }
}
/* バナーここまで--------------------------------------------------------------------- */