@charset "UTF-8";

@font-face {
    font-family: 'honoka';
    src: url('../font/honoka.woff2') format('woff2');
}

/* ====================================
  リセットCSS
======================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
figure,
span,
img,
a,
table,
tr,
th,
td {
    border: 0;
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

header,
footer,
main,
nav,
section,
article,
aside,
figure,
figcaption {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
    list-style-type: none;
}

/* ====================================
  初期設定
======================================= */
html {
    font-size: 62.5%;
    /* 10px */
}

body {
    background: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5625;
    font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    /* font-feature-settings: "palt"; */
    color: #333333;
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

@media (min-width: 992px) {
    body {
        font-size: 1.6rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    box-sizing: content-box;
    border-style: none;
    vertical-align: middle;
}

a {
    text-decoration: none;
    vertical-align: baseline;
    background: transparent;
    color: inherit;
}

@media (min-width: 1025px) {
    a {
        transition: 0.2s ease-in-out;
    }

    a:hover {
        filter: brightness(115%);
    }
}

section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.wrap {
    max-width: 1340px;
    margin: auto;
    padding: 0 30px;
}

/*==========================
ヘッダー
===========================*/
.header {
    width: 100%;
    transition: .4s;
    z-index: 100;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*ヘッダー高さ*/
    height: 60px;
}

.header-logo {
    width: 220px;
    margin-left: 10px;
}

@media screen and (min-width: 992px) {
    .header-logo {
        margin-left: 0;
    }

    .header-wrap {
        /*ヘッダー高さ*/
        height: 100px;
        max-width: 1420px;
        margin: auto;
        padding: 0 30px;
    }
}

@media screen and (min-width: 1280px) {
    .header-logo {
        min-width: 310px;
    }
}

@media screen and (min-width: 1360px) {
    .header-logo {
        position: absolute;
        /* left: 30px; */
    }
}

/*
グローバルナビ
===========================*/
.gnav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background: #fff;
    transition: transform .25s;
    padding: 2em 0;
    text-align: center;
    z-index: 101;
}

.gnav.active {
    z-index: 101;
    transform: translateX(0);
}

.gnav-list {
    margin: 1em 0;
}

.gnav-list li a {
    display: block;
    text-align: center;
    padding: 1.5em;
    color: #4d4d4d;
    font-size: 1.8rem;
    font-weight: 700;
}

.header-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-widget a {
    margin: 15px;
}

@media screen and (min-width: 992px) {
    .gnav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: static;
        width: calc(100% - 150px);
        height: auto;
        margin-left: auto;
        transform: translateX(0);
        background: none;
        padding: 0;
    }

    .gnav-list {
        display: flex;
        justify-content: space-between;
        margin: 0 0.5em 0 1em;
    }

    .gnav-list li a {
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 0 1.2vw;
    }

    header a:hover {
        opacity: 0.5;
    }

    .header-widget {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .header-widget a {
        margin: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .gnav {
        width: calc(100% - 300px);
    }

    .gnav-list li a {
        font-size: 1.8rem;
        padding: 0 1em;
    }
}

/*
ハンバーガーメニュー
===========================*/
.hamburger-wrap {
    z-index: 102;
    position: fixed;
    top: 2%;
    right: 20px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 40px;
    height: 23px;
    border: 0;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    position: relative;
}

.hamburger:focus {
    outline: none;
}

.hamburger span {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 3px;
    background-color: #0071bc;
    /* border-radius: 4px; */
    transition: all .3s;
    /* filter: drop-shadow(2px 1px 2px #aaa); */
}

.hamburger span:nth-of-type(1) {
    top: 0;
}

.hamburger span:nth-of-type(2) {
    top: 10px;
}

.hamburger span:nth-of-type(3) {
    bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
    opacity: 0;
    animation: active-bar02 .5s forwards;
}

@keyframes active-bar02 {
    100% {
        height: 0;
    }
}

.hamburger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}

@media screen and (min-width: 992px) {
    .hamburger {
        display: none;
    }
}

/*==========================
フッター
===========================*/
footer {
    background-color: #fff;
    font-size: 1.5rem;
    color: #808080;
    text-align: center;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .wrap {
        padding: 0 20px;
    }

    header .wrap {
        height: 50px;
    }

    header .wrap img {
        width: 120px;
    }

    footer {
        font-size: 1.3rem;
    }
}

/* ====================================
共通
======================================= */
.sky {
    background-image: url(../img/sky.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pink {
    background: url(../img/pink.png);
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
    box-shadow: 0 10px 0px rgb(0 0 0 / 5%);
}

.h2-style {
    color: #808080;
    font-family: 'honoka';
    letter-spacing: -0.025em;
    font-size: 5rem;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 75px;
}

.h2-style::after {
    content: "";
    width: 407px;
    height: 24px;
    background-image: url(../img/border.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    /* top: 0; */
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.sky .h2-style {
    color: #fff;
}

.sky .h2-style::after {
    background-image: url(../img/border_w.svg);
}

@media screen and (max-width: 991px) {
    .h2-style {
        font-size: 2.8rem;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .h2-style::after {
        width: 240px;
        height: 14px;
    }
}

/*
ボタン
===========================*/
.btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0;
}

.main-btn {
    width: fit-content;
    min-width: 400px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    font-size: 2.8rem;
    background-color: #0071bc;
    color: #fff;
    border-radius: 50px;
}

.btn:hover {
    color: #fff;
    border: 1px solid #0F2350;
    background-color: #0F2350;
}

@media screen and (max-width: 991px) {
    .btn-wrap {
        margin: 40px auto 0;
    }

    .main-btn {
        min-width: 300px;
        height: 50px;
        font-size: 1.8rem;
    }
}

/*==========================
お問い合わせ
===========================*/
.form-area {
    background-color: #fff;
    margin-top: 70px;
    padding: 60px 0 20px;
    font-size: 16px;
    /* overflow: hidden; */
    max-width: 1100px;
    margin: 0 auto 200px;
}

@media screen and (max-width: 767px) {
    .form-area {
        margin-top: 30px;
        padding: 10px 0;
    }
}

.form-area h2 {
    width: 600px;
    height: 40px;
    background-color: #928075;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #fff;
    letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
    .form-area h2 {
        width: 230px;
        height: 25px;
        font-size: 16px;
    }
}

form#mail_form .name-input input[type=text] {
    width: 250px;
}

form#mail_form .mid input {
    max-width: 450px;
}

form#mail_form input[name=postal] {
    width: 150px;
    margin-bottom: 10px
}

form#mail_form dl dd span {
    min-width: 2.5em;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #808080;
}

form#mail_form dl dd .col {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form#mail_form dl dd .col div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form#mail_form dl dd .col.howto li {
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form#mail_form dl dd .radio {
    padding-top: 5px;
}

form#mail_form dl dd .col.howto li:first-child {
    width: 150px;
}

form#mail_form dl dd .col.howto li:nth-child(2) {
    width: 120px;
}

form#mail_form dl dd .col.howto li:last-child {
    min-width: 340px;
}

form#mail_form .other {
    width: 245px;
    position: relative;
    top: -88px;
    right: 59px;
    margin-right: 0;
}

form#mail_form .other dt {
    display: none;
}

form#mail_form .other dd {
    width: 100%;
}

input::placeholder {
    color: #E6E6E6;
}

form#mail_form select {
    width: 200px;
    height: 40px;
    line-height: 30px;
    padding: 0 50px 0 10px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/select_arrow.svg), #fff;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: right 0 center;
    color: #4D4D4D;
    border-radius: 0;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

form#mail_form #form_submit span {
    position: relative;
}

form#mail_form #form_submit span::before {
    content: "";
    width: 12px;
    height: 18px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    margin: auto;
    background: url(../img/btn_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
}

@media screen and (max-width: 1000px) {

    form#mail_form,
    form#mail_form input[type=text],
    form#mail_form input[type=email],
    form#mail_form input[type=tel],
    form#mail_form textarea {
        font-size: 16px;
    }

    form#mail_form .name-input input[type=text] {
        width: 100%;
    }

    form#mail_form dl dd .col {
        display: block;
        justify-content: space-between;
        align-items: center;
    }

    form#mail_form dl dd .col div {
        margin-bottom: 10px;
    }

    form#mail_form dl dd .col.howto li:first-child,
    form#mail_form dl dd .col.howto li:nth-child(2) {
        width: 100%;
    }

    form#mail_form dl dd .col.howto li:last-child {
        width: 100%;
        min-width: inherit;
    }

    form#mail_form .howto-row span.error_blank {
        position: absolute;
        max-width: 19em;
    }

    form#mail_form .other {
        width: 189px;
        position: relative;
        top: -47px;
        right: 0;
        left: calc(70px + 10vw);
        margin-left: auto;
        margin-left: 0;
    }

    form#mail_form #form_submit span::before {
        content: "";
        width: 8px;
        height: 18px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 15px;
    }
}

/*==========================
サンクスページ
===========================*/
.thanks-page {
    background-color: #fff;
    position: relative;
    color: #333;
}

#thanks {
    text-align: center;
    padding: 200px 20px 0;
}

#thanks h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

#thanks a {
    display: block;
    width: 290px;
    margin: 30px auto;
    border: 1px solid;
    padding: 15px;
    background-color: #0071bc;
    border-radius: 50px;
    color: #fff;
}

@media (min-width: 768px) {
    #thanks {
        font-size: 1.6rem;
    }

    #thanks h1 {
        font-size: 3.6rem;
    }
}

/*==========================
mv
===========================*/
.mv {
    margin-top: 40px;
}

@media screen and (min-width: 1280px) {
    .mv {
        margin-top: 0px;
    }
}

/*==========================
強み
===========================*/
.component02 {
    display: flex;
    align-items: center;
}

.component02 .img-box {
    margin-left: calc((100% - 100vw) / 2);
    margin-right: calc((100% - 100vw) / 2);
    width: 58vw;
    height: 700px;
}

.component02 .img-box img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    height: 100%;
    width: 100%;
}

.component02 .txt-box {
    background-color: #fff;
    margin-left: auto;
    width: 700px;
    min-height: 500px;
    padding: 41px;
    font-size: 1.8rem;
    line-height: calc(38/18);
    text-align: left;
    z-index: 1;
    position: relative;
    font-feature-settings: "palt";
    letter-spacing: 0.025em;
}

.component02 .btn-wrap {
    justify-content: flex-start;
    margin-top: 35px;
}

@media screen and (max-width: 1160px) {
    .component02 .img-box img {
        object-position: 35% center;
    }

    .component02 .txt-box {
        width: 45vw;
        padding: 25px 30px;
    }
}

@media screen and (max-width: 991px) {
    .component02 {
        display: block;
        margin-bottom: 30px;
    }

    .component02 .img-box {
        margin: auto;
        width: 100%;
        height: auto;
    }

    .component02 .txt-box {
        padding: 20px;
        margin: -30px auto 0;
        width: 90%;
        min-height: auto;
        font-size: 1.6rem;
    }
}

/*==========================
特徴
===========================*/
.feature .col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    text-align: left;
}

.feature .col3 li {
    margin-bottom: 20px;
}

.feature .col3 h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0071bc;
    margin: 20px auto;
}

@media screen and (max-width: 991px) {
    .feature .col3 {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        text-align: center;
    }

    .feature .col3 li {
        margin-bottom: 0;
    }

    .feature .col3 img {
        max-width: 350px;
        width: 100%;
    }

    .feature .col3 h3 {
        font-size: 2rem;
        margin: 15px auto 10px;
    }
}

/*==========================
支援
===========================*/
.policy .row2 li {
    position: relative;
}

.policy .row2 li .box {
    position: relative;
    top: -100px;
    width: 90%;
    max-width: 1080px;
    margin: auto;
    padding: 30px 20px 20px;
}

.policy .row2 li .box h3 {
    display: inline-block;
    color: #ec6d65;
    font-size: 3.5rem;
    border-bottom: 2px solid;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.policy .btn-wrap {
    margin: 0 auto 60px;
}

.policy .main-btn {
    background-color: #fbb03b;
}

@media screen and (max-width: 991px) {
    .policy .row2 li {
        margin-bottom: 10px;
    }

    .policy .row2 li .box {
        position: relative;
        top: -40px;
        padding: 20px 15px 15px;
    }

    .policy .row2 li .box h3 {
        font-size: 2rem;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
}

/*==========================
療育体験
===========================*/
.experience p {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4d4d4d;
}

.experience .col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media screen and (max-width: 991px) {
    .experience p {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .experience .col2 {
        gap: 10px;
    }
}

/*==========================
求人募集
===========================*/
.recruit p {
    font-size: 2.5rem;
    margin-top: 60px;
    color: #4d4d4d;
}

.recruit .main-btn {
    color: #ec6d65;
    background-color: #fadce9;
}

@media screen and (max-width: 991px) {
    .recruit p {
        font-size: 1.8rem;
        margin-top: 40px;
    }
}

/*==========================
よくある質問
===========================*/
.faq dl {
    text-align: left;
    max-width: 1100px;
    margin: 0 auto 50px;
    color: #4d4d4d;
}

.faq dl:last-child {
    margin-bottom: 0;
}

.faq dt {
    position: relative;
    display: flex;
    align-items: center;
    height: 70px;
    background-color: #fff;
    padding-left: 75px;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.faq dt::before {
    content: "Q";
    position: absolute;
    left: 20px;
    margin: auto;
    font-size: 3.4rem;
    color: #0071bc;
    display: flex;
    align-items: center;
    text-align: center;
}

.faq dd {
    position: relative;
    padding-left: 75px;
}

.faq dd::before {
    content: "A";
    position: absolute;
    left: 20px;
    margin: auto;
    font-size: 3.4rem;
    color: #ec6d65;
    display: flex;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .faq dl {
        margin: 0 auto 40px;
    }

    .faq dt {
        height: 50px;
        padding-left: 50px;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .faq dt::before {
        left: 15px;
        font-size: 2.3rem;
    }

    .faq dd {
        padding-left: 50px;
    }

    .faq dd::before {
        left: 15px;
        font-size: 2.3rem;
    }
}

/*==========================
アクセス
===========================*/
.access-map {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1280/600;
    margin: 30px auto 0;
    text-align: left;
}

.access-map :not([class]) {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.inner {
    max-width: 1100px;
    margin: auto;
}

.access .data {
    display: flex;
    gap: 20px 70px;
    margin-top: 50px;
}

.access .data dl {
    display: flex;
}

.access .data dd {
    font-size: 2rem;
    font-weight: 700;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
    color: #4d4d4d;
    padding-left: 30px;
}

@media screen and (max-width: 1080px) {
    .access .data {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px 70px;
    }

    .access .data dd {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 500px) {
    .access .data {
        margin-top: 30px;
    }

    .access .data dl {
        flex-direction: column;
        gap: 10px;
    }

    .access .data dd {
        padding-left: 0;
    }
}

/*==========================
サメ
===========================*/
section .wrap {
    position: relative;
}

section .wrap::after,
section .wrap::before {
    background-image: url(../img/same.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
}

.mind .wrap::after {
    content: "";
    width: 246px;
    height: 298px;
    bottom: -200px;
    right: 0;
}

.feature .wrap::after {
    content: "";
    width: 213px;
    height: 258px;
    bottom: -200px;
    left: -30px;
    transform: rotate(180deg);
}

.experience .wrap::after {
    content: "";
    width: 256px;
    height: 310px;
    top: -200px;
    left: -30px;
    transform: rotate(180deg);
}

.recruit .wrap::after {
    content: "";
    width: 246px;
    height: 298px;
    top: -170px;
    right: 0;
}

.faq .wrap::after {
    content: "";
    width: 256px;
    height: 310px;
    top: -280px;
    left: -30px;
    transform: rotate(180deg);
}

.access .wrap::after {
    content: "";
    width: 246px;
    height: 298px;
    top: -220px;
    right: 0;
}

.contact .wrap::after {
    content: "";
    width: 213px;
    height: 258px;
    top: -110px;
    left: -30px;
    transform: rotate(180deg);
}

.contact .wrap::before {
    content: "";
    width: 305px;
    height: 227px;
    bottom: -330px;
    right: -30px;
    transform: rotate(-30deg);
}

@media screen and (max-width: 1200px) {
    .mind .wrap::after {
        width: 23vw;
        bottom: -250px;
        right: -10px;
    }

    .feature .wrap::after {
        width: 20vw;
        bottom: -170px;
        left: -20px;
    }

    .experience .wrap::after {
        width: 22vw;
        top: -200px;
        left: -30px;
    }

    .recruit .wrap::after {
        width: 21vw;
        top: -170px;
        right: 0;
    }

    .faq .wrap::after {
        width: 22vw;
        top: -210px;
        left: -30px;
    }

    .access .wrap::after {
        width: 21vw;
        top: -160px;
        right: 0;
    }

    .contact .wrap::after {
        width: 20vw;
        top: -120px;
        left: -20px;
    }

    .contact .wrap::before {
        width: 27vw;
        bottom: -280px;
        right: 10px;
    }
}