@charset "UTF-8";

/*********************************************************

					　　　　初期設定

*********************************************************/

html {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: min(2vw,24px);
  line-height: 1.8;
  letter-spacing: .1rem;
  box-sizing: border-box;
  scroll-behavior: auto;
}

body {
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

main {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    height: auto;
}


/*********************************************************

					ここからheader

**********************************************************/

.menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1em auto;
}


.menu img {
    width: 40%;
    height: auto;
}

h1 {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-200%);
	color: #fff;
}

nav {
    width: 52%;
}

.navi {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    font-size: min(1.5vw,21px);
}
.navi li {
    opacity: 1;
    transition: all 0.3s ease;
    transform: scale(1);
}
.navi li:hover {
    opacity: .3;
    transform: scale(1.1);
}

/*-------------------- FV --------------------*/

.mask_slide {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 88vh;
  overflow: hidden;
  z-index: 10;

  /* SVGマスクを適用 */
  -webkit-mask: url("../img/mask.svg#wave-mask");
  mask: url("../img/mask.svg#wave-mask");
  
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}

.splide {
    width: 100%;
    height: 100%;
}

.splide__track {
    height: 100%;
}

.splide__list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.splide__slide {
    flex: 0 0 100%;
    height: auto;
    transition: opacity 2s ease-in-out !important;
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.sub_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 8vw;
    min-width: 75px;
}

.sub_text img {
    width: 100%;
}

/*-------------------- 想い --------------------*/

#sec02 {
    padding: 5vw 0 15vw;
    margin-top: 5vw;
}

.sec {
    position: relative;
}

h2 {
    position: relative;
    text-align: center;
    font-size: min(3vw,42px);
    font-weight: 600;
    text-align: center;
    padding-bottom: 1.5em;
    z-index: 10;
}

.logo {
    margin: 0 auto 3vw;
    width: 35.5%;
}

.logo img {
    width: 100%;
}

.thoughts {
    position: relative;
    text-align: center;
    line-height: 2.5;
    font-size: min(2.3vw,28px);
    z-index: 5;
}

/* 背景装飾 */
.paralllax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dots {
    position: absolute;
    z-index: 1;
}

.dots img {
    width: 100%;
    height: auto;
}

.d_00 {
     mix-blend-mode: multiply;
}

.dots_01 {
    top: 0;
    left: 0;
    transform: translateX(-30%);
    max-width: 614px;
    width: 32vw;
    height: auto;
    z-index: 1;
}
.dots_02 {
    top: 50%;
    left: 0;
    transform: translateX(-30%);
    width: 13vw;
    height: auto;
    max-width: 239px;
    z-index: 2;
}
.dots_03 {
    top: 35%;
    left: 0;
    transform: translateX(-30%);
    width: 22vw;
    height: auto;
    max-width: 404px;
}
.dots_04 {
    top: -6%;
    left: 0;
    transform: translateX(-30%);
    width: 34vw;
    height: auto;
    max-width: 639px;
    z-index: 2;
}

.dots_05 {
    top: 20%;
    right: 0;
    transform: translateX(20%);
    max-width: 319px;
    width: 17vw;
    height: auto;
    z-index: 4;
}
.dots_06 {
    top: -3%;
    right: 0;
    transform: translateX(15%);
    max-width: 482px;
    width: 26vw;
    height: auto;
    z-index: 2;
}
.dots_07 {
    top: 0%;
    right: 0;
    transform: translateX(25%);
    max-width: 602px;
    width: 32vw;
    height: auto;
    z-index: 2;

}
.dots_08 {
    top: 55%;
    right: 0;
    transform: translateX(20%);
    max-width: 667px;
    width: 35vw;
    height: auto;
    z-index: 1;
}

/*-------------------- インスタ --------------------*/

#sec03 {
    position: relative;
    padding: 5vw 0;
    background: #E4EEF4;
    z-index: 5;
}

#sec03::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: translateY(-99%);
    width: 100%;
    height: 7vw;
    background: url(../img/top.webp) no-repeat center / cover;
    z-index: 5;
}
#sec03::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    transform: translateY(99%);
    width: 100%;
    height: 7vw;
    background: url(../img/bottom.webp) no-repeat center / cover;
    z-index: 5;
}

.inner_box {
    width: 85%;
    margin: 0 auto;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}

h3 {
    text-align: center;
    font-size: min(3vw,42px);
    font-weight: 600;
}

.inst {
    position: relative;
    width: 15%;
    height: auto;
    max-width: 85px;
}
.inst img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}
.inst img:hover {
    opacity: .3;
    transform: scale(1.1);
}
.inst::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translate(-50%,-115%);
    width: 135%;
    aspect-ratio: 50 / 11;
    background: url(../img/follow.webp) no-repeat center / contain;
    z-index: 10;
}

/*-------------------- 施設 --------------------*/

#sec04 {
    padding: 15vw 0;
}

.facility {
    position: relative;
    text-align: center;
    z-index: 5;
}

.facility p {
    font-size: min(2.5vw,31px);
}

.area {
    position: relative;
    padding: 3em 0;
    font-weight: 600;
    margin-bottom: 2em;
}
.area::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25em;
    height: auto;
    aspect-ratio: 10 / 2.5;
    background: url(../img/back_sub.webp) no-repeat center / contain;
    z-index: -1;
}

.area p {
    font-size: min(2.3vw, 28px);
}

.facility_img01 {
    position: relative;
    margin-bottom: 2em;
    text-align: center;
    z-index: 5;
}
.facility_img01 img {
    width: 100%;
    height: auto;
}

.facility_img02 {
    position: relative;
    display: flex;
    text-align: center;
    gap: 2em;
    z-index: 5;
}

.facility_01 {
    width: 52%;
}
.facility_02 {
    width: 48%;
}
.facility_01 img,
.facility_02 img {
    width: 100%;
}

.detail {
    font-size: min(2.6vw,32px);
    font-weight: 600;
}

/* 背景装飾 */

.dots_09 {
    bottom: 10%;
    left: 0;
    transform: translateX(-18%);
    max-width: 612px;
    width: 32vw;
    height: auto;
    z-index: 1;
}
.dots_10 {
    bottom: 38%;
    left: 0;
    transform: translateX(-20%);
    max-width: 419px;
    width: 22vw;
    height: auto;
    z-index: 1;
}
.dots_11 {
    bottom: 50%;
    right: 0;
    transform: translateX(20%);
    max-width: 643px;
    width: 33.5vw;
    height: auto;
    z-index: 1;
}
.dots_12 {
    bottom: 0%;
    right: 0;
    transform: translateX(32%);
    max-width: 406px;
    width: 22vw;
    height: auto;
    z-index: 1;
}
.dots_13 {
    bottom: 10%;
    right: 0;
    transform: translateX(40%);
    max-width: 431px;
    width: 23vw;
    height: auto;
    z-index: 1;
}


/*-------------------- 挨拶 --------------------*/

#sec05 {
    position: relative;
    background: #E4EEF4;
    padding: 5vw 0;
    z-index: 5;
}

#sec05::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: translateY(-99%);
    width: 100%;
    height: 7vw;
    background: url(../img/top.webp) no-repeat center / cover;
    z-index: 5;
}
#sec05::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    transform: translateY(99%);
    width: 100%;
    height: 7vw;
    background: url(../img/bottom.webp) no-repeat center / cover;
    z-index: 5;
}

.greeeting {
    position: relative;
}
.greet {
    display: inline-block;
}

.main_text {
    padding-bottom: 2em;
}

.representative {
    display: flex;
    justify-content: end;
    align-items: baseline;
}

.class {
    margin-right: 2em;
}

.name {
    font-size: min(3vw,34px);
}

.greet_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 17vw;
    max-width: 326px;
}
.greet_img img {
    width: 100%;
    height: auto;
}

/*-------------------- 概要 --------------------*/

#sec06 {
    padding: 5vw 0;
    margin: 10vw 0;
}

.row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.row::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: url(../img/border.webp) no-repeat;
}

dl {
    position: relative;
    text-align: justify;
    z-index: 5;
}

dt {
    width: 30%;
    padding: 1em 0;
    font-weight: 400;
}

dd {
    width: 70%;
    padding: 1em 0;
}

.map {
    padding: 0 0 1em;
}

iframe {
    width: 90%;
}

/* 背景装飾 */
.dots_14 {
    top: 10%;
    left: 0;
    transform: translateX(-35%);
    max-width: 320px;
    width: 17vw;
    height: auto;
    z-index: 1;
}
.dots_15 {
    top: -4%;
    left: 0;
    transform: translateX(-42%);
    max-width: 420px;
    width: 22vw;
    height: auto;
    z-index: 1;
}
.dots_16 {
    top: -10%;
    right: 0;
    transform: translateX(40%);
    max-width: 400px;
    width: 21vw;
    height: auto;
    z-index: 1;
}
.dots_17 {
    top: 5%;
    right: 0;
    transform: translateX(45%);
    max-width: 616px;
    width: 32.5vw;
    height: auto;
    z-index: 1;
}


/*-------------------- フッター --------------------*/

#footer {
    position: relative;
    padding: 3vw 0 5vw;
    background: #E4EEF4;
}
#footer::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: translate(0,-98%);
    width: 110%;
    height: 4vw;
    max-height: 55px;
    background: url(../img/wave_1920.webp) no-repeat center / cover;
    animation: wabe 10s ease infinite;
}
@keyframes wabe {
  0% { transform: translate(0,-98%); }
  50% { transform: translate(-50px,-98%); }
  100% { transform: translate(0,-98%); }
}

.footer_flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4vw;
}

.logo_3 {
    width: 52%;
}
.logo_3 p {
    color: #0A5AA3;
}

.logo_3_img {
    width: 77%;
}
.turtle {
    margin: 0 auto 1em;
    display: block;
    width: 62%;
    transform: scale(1);
    transition: all .3s ease;
    opacity: 1;
}
.turtle:hover {
    transform: scale(1.1);
    opacity: .5;
}

.company {
    width: 100%;
    padding-bottom: 1em;
}

.inquiry {
    width: 39%;
}

.inquiry_text {
    color: #0A5AA3;
    font-weight: 600;
}

.tel {
    color: #0A5AA3;
    font-weight: 700;
    line-height: 1;
    font-size: min(5vw,76px);
    padding-bottom: .1em;
}

.mail {
    display: inline-flex;
    padding: 1em 1.5em;
    border: solid min(.8vw,3px) #0A5AA3;
    border-radius: min(3vw,30px);
    margin-top: 2em;
    align-items: end;
    gap: 1em;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}
.mail:hover {
    opacity: .3;
    transform: scale(1.1);
}

.mail img {
    display: block;
    aspect-ratio: 10 / 6.5;
    width: auto;
    height: 3vw;
    max-height: 35.5px;
}
.mail p {
    color: #0A5AA3;
    font-weight: 600;
    font-size: min(4vw,46px);
    line-height: 1;
}

.copylight {
    text-align: right;
    font-size: min(1.5vw,15px);
}

@media screen and (min-width: 1920px){

    #footer::before {
        background: url(../img/wave_1920.webp) no-repeat center / cover;
        width: 102%;
        height: 3vw;
        max-height: 67px;
    }
}

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

    html {
        font-size: min(4.37vw,17px);
    }

    .pc {
        display: none;
    }
  
    .sp {
        display: block;
    }

    h2 {
        font-size: min(6.25vw,25px);
    }

    /* へッター */
    .menu {
        display: block;
    }

    .menu img {
        width: 70%;
        padding-bottom: 1em;
    }

    nav {
        width: 100%;
    }

    .navi {
        font-size: min(3.3vw,15px);
    }

    .sub_text {
        min-width: 40px;
    }


    /* 想い */

    .sec {
        padding:max(10vw, 30px) 0 max(15vw, 70px);
    }

    h2 span {
        display: inline-block;
    }

    .thoughts {
        line-height: 2;
        font-size: min(4.68vw, 20px);
    }

    .dots_01 {
        top: -2%;
        width: 35vw;
    }
    .dots_02 {
        top: 25%;
        width: 15vw;
    }
    .dots_03 {
        top: 20%;
        width: 24vw;
    }
    .dots_04 {
        top: 20%;
        width: 36vw;
    }
    .dots_05 {
        top: 25%;
        width: 20vw;
    }
    .dots_06 {
        top: -5%;
        width: 28vw;
    }
    .dots_08 {
        top: 50%;
    }

    /* インスタ */

    #sec03::before,
    #sec03::after,
    #sec05::before,
    #sec05::after {
        min-height: 30px;
    }

    .inner_box {
        width: 90%;
    }

    .title {
        justify-content: center;
        gap: 2.5em;
        align-items: end;
    }

    h3 {
        font-size: min(6.25vw,25px);
    }

    h3 span {
        display: block;
    }

    .inst {
        width: 20%;
        padding-bottom: .5em;
    }

    .flex {
        gap: 3vw;
    }

    .kari {
         width: calc((100% - 6vw) / 3);
    }

    /* 施設 */

    #sec04,
    #sec06 {
        padding: max(15vw, 70px) 0;
    }

    .facility p {
        font-size: min(4.37vw, 21px);
    }

    .area p {
        font-size: min(4vw, 20px);
    }
    .area::before {
        width: 80vw;
        max-width: 400px;
    }

    .facility_img01 {
        margin-bottom: 1em;
    }
    .facility_img02 {
        gap: 1em;    
    }

    .detail {
        font-size: min(4.2vw, 22px);
    }

    /* 挨拶 */

    .greeeting {
        text-align: justify;
    }

    .sp_name {
        display: flex;
        justify-content: end;
        align-items: end;
        margin-top: 5vw;
    }

    .representative {
        display: block;
        margin-right: 2em;
    }

    .greet_img_sp {
        width: 50%;
        max-width: 170px;
    }

    .greet_img_sp img {
        width: 100%;
    }

    .name {
        font-size: min(5.6vw,22px);
    }

    /* 概要 */

    dt {
        padding-right: 1.5em;
        width: 30%;
        text-align: initial;
    }

    dd {
        width: 65%;
    }
    
    iframe {
        height: 37vw;
        width: 100%;
        padding-top: initial;
    }

    .row span {
        display: inline-block;
    }

    .tel_sp {
        text-align: initial;
    }

    .dots_15 {
        top: 0%;
    }
    /* フッター */

    #footer {
        padding: 5vw 0;
    }

    #footer::before {
        background: url(../img/wave_1920.webp) no-repeat center / cover;
        width: 130%;
        height: 5vw;
        min-height: 20px;
    }

    .footer_flex {
        display: block;
    }

    .logo_3 {
        width: 100%;
        margin: 0 auto 5vw;
    }

    .logo_3_img {
        margin: 0 auto;
    }

    .logo_3 p {
        text-align: center;
    }

    .logo_3 span {
        display: inline-block;
    }

    .turtle {
        width: 60%;
        max-width: 250px;
    }

    .company {
        display: block;
        margin: 0 auto;
        width: 90%;
    }

    .inquiry {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .tel {
        font-size: min(7.81vw, 38px);
    }

    .mail a {
        gap: 1.5em;
    }

    .mail img {
        height: 4vw;
        min-height: 30px;
    }

    .mail p {
        font-size: min(7.8vw,30px);
    }

    .copylight {
        font-size: min(3.15vw,13px);
        text-align: center;
    }
}