html {
    font-size: 62.5%;
    scroll-padding: 180px;
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP','Yu Gothic','YuGothic','游ゴシック Medium','游ゴシック体',sans-serif;
    color: #231815;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 1.7;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('https://jenic.life/cocolo/gatarium/fonts/NotoSansJP-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('https://jenic.life/cocolo/gatarium/fonts/NotoSansJP-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('https://jenic.life/cocolo/gatarium/fonts/NotoSansJP-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('https://jenic.life/cocolo/gatarium/fonts/NotoSansJP-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

a {
    display: block;
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wrapper {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: content-box;
}
._w_sec_ttl {
    width: 100%;
    padding: 5px 35px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
._w_sec_ttl::before {
    transform: skewX(-20deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color:#339599;
}
._w_sec_ttl h2 {
    font-size: 3.6rem;
}
/* END common style　 */

/* header */
header {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 10;
}
._w_header {
    width: 100%;
    padding: 17px 40px;
    max-width: 1360px;
    margin: 0 auto;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
}
._w_header_right {
    max-width: 106px;
    width: 100%;
}
._w_cocolo {
    width: 100%;
}
._w_header_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 197px;
    height: auto;
}
/* 
============
ハンバーガーボタン
============
*/
.toggle {
    display: none;/*pc非表示*/
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 36px;
    height: 27px;
    cursor: pointer;
    z-index: 3;
}
.toggle span {
    display: block;
    position: absolute;
    width: 36px;
    border-bottom: solid 2px #339599;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
.toggle span:nth-child(1) {
    top: 0px;
}
.toggle span:nth-child(2) {
    top: 13px;
}
.toggle span:nth-child(3) {
    top: 27px;
}
/* activeクラスが付与されたとき */
.toggle.active span:nth-child(1) {
    top: 14px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
    top: 14px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu_pc {
    width: 100%;
    background: #339599;
}
.nav_list {
    max-width: 1100px;
    margin: 0 auto;
    height: 70px;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
li.item a {
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 50px;
    border-right: 1px solid #ffffff;
}
li.item:last-of-type a {
    padding-right: 0;
    border-right: none;
}
li.item:first-of-type a {
    padding-left: 0;
}
/* spのメニュー */
.menu_sp {
    /* display: none; */
    transition: ease .4s;
}
.menu_sp {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100vh - 65px);
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
    margin-top: 65px;
}
@keyframes menu-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width:1024px) {
    .menu_sp.active {
        display: block;
        transform: translateX(0);
        animation-name: menu-fade;
        animation-duration: .5s;
    }
}
.nav_list_sp {
    width: 100%;
    padding: 5rem 3rem;
}
.item_sp a {
    text-align: center;
    padding-bottom: 30px;
    color: #339599;
    font-weight: 700;
    border-bottom: 1px solid #e8e8e8;
    padding: 25px 0;
}

/* fv */
._w_fv {
    width: 100%;
    height: calc(100vh - 170px);
    position: relative;
}
._w_attention {
    position: absolute;
    left: 30px;
    bottom: 20px;
    z-index: 1;
    color: #FFF;
}
._w_fv img {
    width: 100%;
}
.swiper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* ページネーション */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px 3px !important;
}
.swiper-pagination-bullet {
  background-color: #fff !important;
  height: 10px !important;
  width: 10px !important;
}
/* 前へ次への矢印*/
.swiper-button-prev,.swiper-button-next {
    width: 21px;
    height: 40px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    width: 21px;
    height: 40px;
    margin: auto;
}
.swiper-button-prev::after {
    background-image: url("https://jenic.life/cocolo/gatarium/img/slider-arrow_left.svg");
    position: relative;
    left: 12px;
}
.swiper-button-next::after {
    background-image: url("https://jenic.life/cocolo/gatarium/img/slider-arrow_right.svg");
    position: relative;
    right: 12px;
}

/* sec1 */
.sec1 {
    margin: 80px 0 100px;
}
.sec1 ._w_text p {
    margin-bottom: 20px;
}
.sec1 ._w_text p:last-of-type {
    margin-bottom: 0;
}
.cl_green {
    color: #339599;
    font-weight: 700;
}
._w_sec_sub_ttl {
    margin: 50px 0 30px;
}
._w_sec_sub_ttl h3 {
    font-size: 2.8rem;
    font-weight: 700;
    padding-bottom: 15px;
    width: 100%;
    position: relative;
}
._w_sec_sub_ttl h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 3px solid #AEAEAE;
}
._w_sec_sub_ttl h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    border-bottom: 3px solid #339599;
}
._w_row_conts {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
._w_row_item {
    width: 33.3333333%;
    padding: 34px 25px 64px;
    border: 2px solid #339599;
    background-color: #ffffff;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}
._w_row_item::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: -3px;
    width: 15px;
    height: 8px;
    background-color: #ffffff;
    z-index: 1;
}
._w_row_item::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 15px;
    height: 8px;
    background-color: #ffffff;
    z-index: 1;
}
._w_icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 28px;
    background-color: #E3F2F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
._w_icon img {
    width: 63px;
    height: 63px;
}
._w_row_item h4 {
    color: #339599;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}
._w_row_item p.text_bold {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
._w_row_item ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 2;
    height: 100%;
    min-height: 0%;
}
._w_row_item ul li {
    padding-left: 16px;
    margin-bottom: 15px;
    position: relative;
}
._w_row_item ul li:last-of-type {
    margin-bottom: 0;
}
._w_row_item ul li::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background-color: #339599;
}

/* sec2 */
.bg_green {
    position: relative;
    z-index: 0;
    padding-bottom: 80px;
}
.bg_green::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: calc(100% - 35px);
    background: #F2F9F6;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    z-index: -1;
}
._w_conts_se2 {
    text-align: center;
}
._w_conts_se2 .text_s {
    margin-bottom: 15px;
}
._w_conts_se2 h3 {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    position: relative;
    margin-bottom: 30px;
    padding: 0 55px;
    display: inline-block;
}
._w_conts_se2 h3::before, ._w_conts_se2 h3::after {
    display: inline-block;
    color: #231815;
    font-size: 3rem;
    font-weight: 100;
    position: absolute;
}
._w_conts_se2 h3::before {
    content: '「';
    top: 0;
    left: 0;
}
._w_conts_se2 h3::after {
    content: '」';
    top: 13px;
    right: 0;
}
._w_conts_se2 .sub_text {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}
span.cl_green_m {
    color: #339599;
}
._w_conts_se2 ._w_text {
    max-width: 980px;
    margin: 0 auto 40px;
    text-align: left;
}
._w_gray_box {
    background: #F2F2F2;
    padding: 40px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
._w_gray_box ._w_img {
    width: 20%;
}
._w_gray_box ._w_text_box {
    width: 80%;
    text-align: left;
}
._w_gray_box ._w_text_box p {
    margin-bottom: 20px;
}
._w_gray_box ._w_text_box p:last-of-type {
    margin-bottom: 0;
}

/* sec3 */
.sec3 {
    margin: 100px 0;
}
.sec3 ._w_sec_ttl {
    margin-bottom: 40px;
}
._w_conts_3 {
    max-width: 1030px;
    margin: 0 auto 30px;
    padding: 33px 50px;
    background-color: #E2EDED;
}
._w_table {
    max-width: 710px;
    margin: 0 auto;
}
._w_table dl ._w_list {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #C9C9C9;
    padding: 12px 25px;
    font-size: 1.6rem;
}
._w_table ._w_list dt {
    width: 30%;
    font-weight: 500;
}
._w_table ._w_list dd {
    width: 70%;
}

/* sec4 */
.sec4 ._w_sec_ttl h2 {
    display: inline;
}
.sec4 ._w_sec_ttl h2 .sp_wrap {
    display: none;
}
.sec4 ._w_sec_ttl {
    margin-bottom: 50px;
}
span.side_text {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 28px;
}

._w_conts_4 {
    text-align: center;
}
._w_ct_ttl h3 {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding: 0 13px;
    position: relative;
}
._w_ct_ttl h3::before, ._w_ct_ttl h3::after {
    content: '';
    display: inline-block;
    width: 33px;
    height: 2px;
    background: #339599;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
._w_ct_ttl h3::before {
    left: -42px;
}
._w_ct_ttl h3::after {
    right: -42px;
}
._w_name {
    margin-bottom: 20px;
}
._w_name p {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}
._w_name p:last-of-type {
    margin-bottom: 0;
}
a.link_tel {
    color: #339599;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 5px;
}
span.text_blk_s {
    font-size: 2rem;
    font-weight: 500;
    color: #231815;
    margin-right: 8px;
}
._w_hours {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    gap: 22px;
}
._w_hours span  {
    display: block;
}
.hours span {
    text-align: left;
}
.hours .text_s  {
    font-size: 15px;
}

/* footer */
footer {
    width: 100%;
    background: #DADADA;
    padding: 15px;
    text-align: center;
}
footer p {
    color: #2D2D2D;
    font-size: 13px;
}

@media screen and (max-width:1024px) {
    html {
        scroll-padding: 75px;
    }
    body {
        font-size: 1.6rem;
    }
    .wrapper {
        padding: 0 20px;
        box-sizing: border-box;
    }
    ._w_sec_ttl {
        padding: 5px 24px;
        margin-bottom: 20px;
    }
    ._w_sec_ttl::before {
        transform: skewX(-14deg);

    }
    ._w_sec_ttl h2 {
        font-size: 2.2rem;
    }
    /* END common style　 */

    /* header */
    ._w_header {
        height: 65px;
        box-shadow: 0px 3px 8px 0px rgba(184, 184, 184, 0.25);
        padding: 15px 20px;
    }
    ._w_header_right {
        max-width: 50px;
    }
    ._w_header_center {
        max-width: 128px;
    }

    /* 
    ============
    ハンバーガーボタン
    ============
    */
   .toggle {
        display: block;
    }
    .menu_pc {
        display: none;
    }
    
    /* fv */
    ._w_fv {
        width: 100%;
        height: calc(83vh - 65px);
    }
    ._w_attention {
        left: 20px;
        bottom: 7%;
    }
    /* 前へ次への矢印*/
    .swiper-button-prev,.swiper-button-next {
        width: 16px;
        height: 35px;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
        width: 16px;
        height: 35px;
    }
    .swiper-button-prev::after {
        background-image: url("https://jenic.life/cocolo/gatarium/img/slider-arrow_left.svg");
        position: relative;
        left: 12px;
    }
    .swiper-button-next::after {
        background-image: url("https://jenic.life/cocolo/gatarium/img/slider-arrow_right.svg");
        position: relative;
        right: 12px;
    }

    /* sec1 */
    .sec1 {
        margin: 60px 0 60px;
    }
    ._w_sec_sub_ttl {
        margin-top: 40px;
    }
    ._w_sec_sub_ttl h3 {
        font-size: 2rem;
        padding-bottom: 13px;
    }
    ._w_sec_sub_ttl h3::after {
        width: 90px;
    }
    ._w_row_conts {
       flex-direction: column;
        gap: 0;
    }
    ._w_row_item {
        width: 100%;
        padding: 30px 20px;
    }
    ._w_row_item:nth-of-type(n+2) {
        margin-top: 30px;
    }
    ._w_icon {
        width: 90px;
        height: 90px;
        margin: 0 auto 15px;
    }
    ._w_icon img {
        width: 56px;
        height: 56px;
    }
    ._w_row_item h4 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    ._w_row_item p.text_bold {
        margin-bottom: 15px;
    }
    ._w_row_item ul li {
        margin-bottom: 12px;
    }

    /* sec2 */
    .bg_green {
        padding-bottom: 60px;
    }
    .bg_green::before {
        height: calc(100% - 27px);
        top: 27px;
    }
    ._w_conts_se2 .text_s {
        margin-bottom: 8px;
    }
    ._w_conts_se2 h3 {
        font-size: 3rem;
        margin-bottom: 20px;
        padding: 0 47px;
    }
    ._w_conts_se2 h3::before, ._w_conts_se2 h3::after {
        font-size: 2.8rem;
    }
    ._w_conts_se2 h3::after {
        top: 4px;
    }
    ._w_conts_se2 .sub_text {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    ._w_gray_box {
        padding: 25px 20px;
        flex-direction: column;
        gap: 0px;
    }
    ._w_gray_box ._w_img {
        margin-bottom: 30px;
    }
    ._w_gray_box ._w_text_box {
        width: 100%;
    }

    /* sec3 */
    .sec3 {
        margin: 60px 0;
    }
    .sec3 ._w_sec_ttl {
        margin-bottom: 30px;
    }
    ._w_conts_3 {
        padding: 18px 20px;
        margin-bottom: 20px;
    }
    ._w_table dl ._w_list {
        display: flex;
        flex-direction: column;
        padding: 12px 20px;
    }
    ._w_table ._w_list dt {
        width: 100%;
        margin-bottom: 8px;
    }
    ._w_table ._w_list dd {
        width: 100%;
    }

    /* sec4 */
    .sec4 ._w_sec_ttl h2 {
        display: block;
    }
    .sec4 ._w_sec_ttl h2 .sp_wrap {
        display: block;
    }
    .sec4 ._w_sec_ttl {
        margin-bottom: 30px;
    }
    span.side_text {
        font-size: 1.8rem;
        margin-left: 0px;
    }
    ._w_ct_ttl h3 {
        font-size: 2.4rem;
        padding: 0 8px;
    }
    ._w_ct_ttl h3::before, ._w_ct_ttl h3::after {
        width: 28px;
    }
    ._w_ct_ttl h3::before {
        left: -35px;
    }
    ._w_ct_ttl h3::after {
        right: -35px;
    }
    ._w_name p {
        font-size: 1.7rem;
    }
    a.link_tel {
        font-size: 3.8rem;
    }
    span.text_blk_s {
        font-size: 1.8rem;
        margin-right: 8px;
    }
    ._w_hours {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0px;
    }
    .hours span {
        text-align: center;
    }
    .hours .text_s {
        font-size: 14px;
    }

    /* footer */
    footer {
        padding: 13px;
    }
    footer p {
        font-size: 11px;
    }
}

@media screen and (max-width:640px) {
    ._w_gray_box ._w_img {
        width: 40%;
    }
}