@charset "UTF-8";

/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
    font-size: 16px;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
}

.pc {
    display: none !important;
}

a {
    color: #000;
    text-decoration: none;
}

a:visited {
    color: #000;
}

a:active {
    color: #000;
}

/* main
==================================*/
main {
    margin-top: 50px;
}

.preload * {
    -webkit-transition: none !important;
    transition: none !important;
}

/* header
==================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #000;
    width: 100%;
    height: 50px;
    padding: 0 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

header .header_inner {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

header .logo {
    width: 121px;
}

header #menuBtn {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 10px;
    z-index: 1;
}

header #menuBtn::before,
header #menuBtn::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 45px;
    height: 1px;
    background-color: #fff;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

header #menuBtn::before {
    top: 0;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

header #menuBtn::after {
    bottom: 0;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

header #menuBtn.open::before,
header #menuBtn.open::after {
    width: 46px;
}

header #menuBtn.open::before {
    -webkit-transform: rotate(11deg);
    transform: rotate(11deg);
}

header #menuBtn.open::after {
    -webkit-transform: rotate(-11deg);
    transform: rotate(-11deg);
}

header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding-top: 110px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: url(../images/common/menu_bg.jpg) repeat 0/100% auto;
    display: none;
}

header nav ul {
    width: min(75vw, 370px);
    margin: auto;
}

header nav ul li:not(:last-of-type) {
    margin-bottom: 12px;
}

header nav ul li a {
    display: grid;
    place-content: center;
    width: 100%;
    height: 56px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 500;
    border-width: 2px;
    border-style: solid;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

header nav ul li a::before {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
}

header nav ul li .lab::before,
header nav ul li .gym::before {
    width: 15px;
    height: 15px;
    background: url(../images/common/outlink.svg) no-repeat 0/contain;
    right: 25px;
}

header nav ul li .lab {
    background-color: #828af8;
    border-color: #828af8;
    color: #fff;
}

header nav ul li .gym {
    background-color: #414141;
    border-color: #414141;
    color: #fff;
}

header nav ul li .fac {
    background-color: #fff;
    border-color: #fff;
}

header nav ul li .fac::before {
    width: 26px;
    height: 6px;
    background: url(../images/common/arrow.svg) no-repeat 0/contain;
    right: 18px;
}

header nav .menu_logo {
    margin: 64px auto 0;
    width: min(43.73vw, 250px);
}

/* footer
==================================*/
footer {
    background: url(../images/common/sp/foot_bg.jpg) no-repeat 0/cover;
    padding: 70px 0 30px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer a {
    color: #fff;
    font-weight: 500;
}

footer a:visited,
footer a:hover {
    color: #fff;
}

footer .logo {
    width: 153px;
}

footer nav {
    margin-top: 35px;
}

footer .main_link {
    max-width: 250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 35px;
}

footer .main_link li a {
    font-size: 15px;
    border-bottom: 1px solid #fff;
}

footer .main_link li a.outlink::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
    background: url(../images/common/outlink.svg) no-repeat 0/contain;
    margin-left: 2px;
}

footer .main_link li:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

footer .main_link li:nth-of-type(2) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
}

footer .main_link li:nth-of-type(3) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
}

footer .main_link li:nth-of-type(4) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

footer .sub_link {
    margin-top: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .sub_link li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 1px;
    height: 10px;
    background-color: #fff;
    margin: 0 10px;
}

footer .sub_link li a {
    font-size: 14px;
}

footer .group_link {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

footer .group_link li.lab {
    width: 154px;
}

footer .group_link li.gym {
    width: 149px;
}

footer .group_link2 {
    display: block;
}

footer .group_link2 li.lab {
    width: 50%;
    margin: 0 auto;
}

footer .group_link2 li.gym {
    width: 80%;
    margin: 0 auto;
    margin-top: 5%;
}



footer .copy {
    font-size: 10px;
    line-height: 1;
    color: #fff;
    margin-top: 85px;
}

.page_top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.page_top.active {
    opacity: 1;
    pointer-events: auto;
}

.page_top a {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    padding-top: 35px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: relative;
}

.page_top a::before {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #0096ff;
    left: 0;
    right: 0;
    top: 25px;
    -webkit-animation: pageTop 1.5s linear infinite;
    animation: pageTop 1.5s linear infinite;
}

@-webkit-keyframes pageTop {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    10% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    90% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pageTop {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    10% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    90% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* loader
==================================*/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.move {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.delay1 {
    -moz-transition-delay: 300ms;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
}

.delay2 {
    -moz-transition-delay: 600ms;
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
}

.delay3 {
    -moz-transition-delay: 900ms;
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
}

.delay4 {
    -moz-transition-delay: 1200ms;
    -webkit-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
}

.delay5 {
    -moz-transition-delay: 1500ms;
    -webkit-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
}

.delay6 {
    -moz-transition-delay: 1800ms;
    -webkit-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
}

.delay7 {
    -moz-transition-delay: 2100ms;
    -webkit-transition-delay: 2100ms;
    -o-transition-delay: 2100ms;
    -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
    overflow: auto;
}

html.no_move {
    overflow: hidden;
}

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

img[src$=".png"],
img[src$=".jpg"] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 699px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.row .col {
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.row .col.col_4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.ttl-up {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    overflow: hidden;
    position: relative;
    display: block;
}

.ttl-up span {
    display: block;
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    -webkit-transition: -webkit-clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
    transition: -webkit-clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
    transition: clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
    transition: clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s, -webkit-clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
    padding-right: 8px;
}

.ttl-up::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transform: translateX(-151%) skewX(-45deg);
    transform: translateX(-151%) skewX(-45deg);
    -webkit-transition: -webkit-transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ttl-up.wh::after {
    background-color: #fff;
}

.ttl-up.bg span {
    background-color: #fff;
}

.ttl-up.bg::after {
    width: 200%;
}

.ttl-up.bg.move span {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-clip-path: polygon(0% 0%, 103% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 103% 0%, 100% 100%, 0% 100%);
}

.ttl-up.bg.move::after {
    -webkit-transform: translateX(60%) skewX(-45deg);
    transform: translateX(60%) skewX(-45deg);
}

.ttl-up.move span {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.ttl-up.move::after {
    -webkit-transform: translateX(151%) skewX(-45deg);
    transform: translateX(151%) skewX(-45deg);
}

.link_btn {
    display: block;
    font-weight: 500;
    margin: auto;
    position: relative;
    isolation: isolate;
}

.link_btn span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.link_btn span::before {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    background: url(../images/common/arrow.svg) no-repeat 0/contain;
    top: 0;
    bottom: 0;
}

.link_btn.wh {
    color: #fff;
    border-color: #fff;
}

.link_btn.wh::after {
    border-color: #fff;
}

.link_btn.wh span::before {
    background-image: url(../images/common/arrow_wh.svg);
}

@media (min-width: 700px) {
    .link_btn {
        width: 250px;
        height: 50px;
        border-radius: 25px;
        overflow: hidden;
    }

    .link_btn::before {
        content: "";
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        background-color: #0096ff;
        z-index: -1;
    }

    .link_btn::after {
        content: "";
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 25px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        border: 2px solid #000;
    }

    .link_btn span {
        padding: 0 35px;
    }

    .link_btn span::before {
        width: 33px;
        height: 7px;
        right: 25px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
}

@media (min-width: 700px) and (hover: hover) {
    .link_btn:hover {
        color: #fff;
    }

    .link_btn:hover::before {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .link_btn:hover::after {
        border-color: transparent;
    }

    .link_btn:hover span::before {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
        background-image: url(../images/common/arrow_wh.svg);
    }
}

@media (max-width: 699px) {
    .link_btn {
        font-size: 15px;
        width: clamp(282px, 75.2vw, 320px);
        height: 56px;
        border-radius: 28px;
        border: 2px solid #000;
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .link_btn span {
        padding: 0 30px;
    }

    .link_btn span::before {
        width: 26px;
        height: 6px;
        right: 25px;
    }
}

.pagettl {
    display: grid;
    place-content: center;
    place-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.pagettl span {
    color: #fff;
}

.pagettl .en {
    font-style: italic;
}

@media (min-width: 700px) {
    .pagettl {
        height: 320px;
        background-image: url(../images/common/ttl_bg.jpg);
    }
}

@media (min-width: 700px) and (max-width: 1000px) {
    .pagettl {
        height: 240px;
    }
}

@media (min-width: 700px) {
    .pagettl .en {
        font-size: 60px;
        letter-spacing: 0.03em;
    }

    .pagettl .jp {
        margin-top: 10px;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 699px) {
    .pagettl {
        height: 125px;
        background-image: url(../images/common/sp/ttl_bg.jpg);
    }

    .pagettl .en {
        font-size: 35px;
    }

    .pagettl .jp {
        margin-top: 9px;
    }
}

.en {
    font-family: "Poppins";
    font-weight: 700;
}

.anchor {
    position: absolute;
}

@media (min-width: 700px) {
    .anchor {
        top: -80px;
    }
}

@media (max-width: 699px) {
    .anchor {
        top: -50px;
    }
}

.pan_wrap {
    margin: 125px 0 16px 35px;
}

.pan_wrap ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.pan_wrap ul li {
    font-size: 12px;
}

.pan_wrap ul li:not(:last-of-type) {
    white-space: nowrap;
}

.pan_wrap ul li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin: 0 10px;
}

@media (min-width: 700px) {
    .pan_wrap ul li a {
        position: relative;
        background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) no-repeat right bottom/0 1px;
        background: -webkit-linear-gradient(#000, #000) no-repeat right bottom/0 1px;
        background: linear-gradient(#000, #000) no-repeat right bottom/0 1px;
        -webkit-transition: background-size 0.3s;
        transition: background-size 0.3s;
    }
}

@media (min-width: 700px) and (hover: hover) {
    .pan_wrap ul li a:hover {
        background-size: 100% 1px;
        background-position-x: left;
    }
}

@media (max-width: 699px) {
    .pan_wrap {
        margin: 55px 15px 12px;
    }

    .pan_wrap ul li {
        font-size: 11px;
    }

    .pan_wrap ul li::after {
        margin: 0 5px;
    }
}

/*==================================
	リスト系
==================================*/
.news_ul {
    margin: 0 0 19px;
}

.news_ul .news_li {
    border-bottom: 1px solid #e8e8e8;
    padding: 22px 14px;
}

.news_ul .news_li>a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.news_ul .news_li>a .date {
    font-size: 16px;
    color: #919191;
    margin-right: 24px;
}

.news_ul .news_li>a .img_wrap {
    margin-right: 17px;
}

@media (min-width: 700px) {
    .news_ul .news_li>a .title {
        background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) 0 100%/0 1px no-repeat;
        background: -webkit-linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
        background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
        -webkit-transition: background 0.4s ease;
        transition: background 0.4s ease;
    }

    .news_ul .news_li>a:hover .title {
        background-size: 100% 1px;
    }
}

@media (max-width: 699px) {
    .news_ul .news_li {
        padding: 14px 0;
    }

    .news_ul .news_li>a {
        display: block;
        position: relative;
        padding-left: 80px;
    }

    .news_ul .news_li>a .img_wrap {
        margin-right: 0;
        position: absolute;
        top: 0;
        left: -5px;
        bottom: 0;
        margin: auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .news_ul .news_li>a .img_wrap img {
        max-width: 57px;
    }

    .news_ul .news_li>a .date,
    .news_ul .news_li>a .title {
        display: block;
    }

    .news_ul .news_li>a .date {
        font-size: 14px;
        margin: 0 0 7px;
    }

    .news_ul .news_li>a .title {
        font-size: 16px;
        line-height: 1.3;
    }
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 45px 0 50px;
}

@media (max-width: 699px) {
    .page_navigation .wp-pagenavi {
        margin: 30px 0 40px;
    }
}

.page_navigation .wp-pagenavi>.page,
.page_navigation .wp-pagenavi .current {
    font-size: 16px;
    font-weight: 500;
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 5px;
}

.page_navigation .wp-pagenavi>.page:not(.current),
.page_navigation .wp-pagenavi .current:not(.current) {
    background-color: #f3f3f3;
}

@media (min-width: 700px) {

    .page_navigation .wp-pagenavi>.page:not(.current):hover,
    .page_navigation .wp-pagenavi .current:not(.current):hover {
        color: #fff;
        background-color: #000;
    }
}

.page_navigation .wp-pagenavi>.page.current,
.page_navigation .wp-pagenavi .current.current {
    background-color: #000;
    color: #fff;
}

.page_navigation .wp-pagenavi .nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink {
    position: relative;
    font-weight: 500;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page_navigation .wp-pagenavi .nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 9px;
    height: 14px;
    background-image: url(../images/common/pager_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page_navigation .wp-pagenavi .nextpostslink.previouspostslink,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink {
    padding-left: 33px;
    margin-right: 30px;
}

.page_navigation .wp-pagenavi .nextpostslink.previouspostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink::before {
    left: 0;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

@media (min-width: 700px) {

    .page_navigation .wp-pagenavi .nextpostslink.previouspostslink:hover::before,
    .page_navigation .wp-pagenavi .previouspostslink.previouspostslink:hover::before {
        left: -5px;
    }
}

.page_navigation .wp-pagenavi .nextpostslink.nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink {
    padding-right: 33px;
    margin-left: 30px;
}

.page_navigation .wp-pagenavi .nextpostslink.nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink::before {
    right: 0;
}

@media (min-width: 700px) {

    .page_navigation .wp-pagenavi .nextpostslink.nextpostslink:hover::before,
    .page_navigation .wp-pagenavi .previouspostslink.nextpostslink:hover::before {
        right: -5px;
    }
}

.page_navigation .wp-pagenavi .list_back {
    margin-left: 58px;
    margin-right: 58px;
}

.page_navigation .wp-pagenavi .list_back>a {
    font-weight: 500;
}

.page_navigation .wp-pagenavi .list_back>a>.list_icon {
    display: inline-block;
    padding-left: 24px;
    position: relative;
}

.page_navigation .wp-pagenavi .list_back>a>.list_icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background-image: url(../img/news/list_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.page_navigation>ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 45px 0 50px;
}

.page_navigation>ul .link_page,
.page_navigation>ul .current_page {
    font-size: 16px;
    font-weight: 500;
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 5px;
}

.page_navigation>ul .link_page:not(.current_page),
.page_navigation>ul .current_page:not(.current_page) {
    background-color: #f3f3f3;
}

@media (min-width: 700px) {

    .page_navigation>ul .link_page:not(.current_page):hover,
    .page_navigation>ul .current_page:not(.current_page):hover {
        color: #fff;
        background-color: #000;
    }
}

.page_navigation>ul .link_page.current_page,
.page_navigation>ul .current_page.current_page {
    background-color: #000;
    color: #fff;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top main {
    margin-top: 0;
}

#Top main .mv_sec {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: url(../images/top/sp/mv_bg.jpg) no-repeat center/cover;
    position: relative;
}

#Top main .mv_sec .movie_wrap {
    position: relative;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    z-index: 1;
}

#Top main .mv_sec .movie_wrap::before,
#Top main .mv_sec .movie_wrap::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#Top main .mv_sec .movie_wrap::before {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#Top main .mv_sec .movie_wrap::after {
    background: url(../images/top/main_filter.png) no-repeat 0/cover;
    z-index: 2;
}

#Top main .mv_sec .movie_wrap video {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#Top main .mv_sec .catch_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    place-items: center;
    z-index: 2;
}

#Top main .mv_sec .catch_wrap p {
    position: relative;
    overflow: hidden;
}

#Top main .mv_sec .catch_wrap p::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transform: translateX(-151%) skewX(-45deg);
    transform: translateX(-151%) skewX(-45deg);
    -webkit-transition: -webkit-transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.96s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#Top main .mv_sec .catch_wrap p img {
    display: block;
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    -webkit-transition: -webkit-clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#Top main .mv_sec .catch_wrap .c1 {
    width: 45.33vw;
}

#Top main .mv_sec .catch_wrap .c2 {
    width: 67.2vw;
    margin: 3.33vw 0 5.87vw;
}

#Top main .mv_sec .catch_wrap .c3 {
    width: 56vw;
}

#Top main .mv_sec.loaded .catch_wrap p::after {
    -webkit-transform: translateX(151%) skewX(-45deg);
    transform: translateX(151%) skewX(-45deg);
}

#Top main .mv_sec.loaded .catch_wrap p img {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#Top main .mv_sec.loaded .catch_wrap p.c1::after {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

#Top main .mv_sec.loaded .catch_wrap p.c1 img {
    -webkit-transition-delay: 0.612s;
    transition-delay: 0.612s;
}

#Top main .mv_sec.loaded .catch_wrap p.c2::after {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

#Top main .mv_sec.loaded .catch_wrap p.c2 img {
    -webkit-transition-delay: 0.808s;
    transition-delay: 0.808s;
}

#Top main .mv_sec.loaded .catch_wrap p.c3::after {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

#Top main .mv_sec.loaded .catch_wrap p.c3 img {
    -webkit-transition-delay: 1.008s;
    transition-delay: 1.008s;
}

#Top main .movie_sec {
    padding: 55px 0 65px;
    background: url(../images/top/sp/movie_bg.jpg) no-repeat 0/cover;
}

#Top main .movie_sec h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#Top main .movie_sec h2 span {
    color: #fff;
}

#Top main .movie_sec h2 .en {
    font-size: 40px;
    font-style: italic;
}

#Top main .movie_sec h2 .jp {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

#Top main .movie_sec .movie_wrap {
    aspect-ratio: 16/9;
    margin: 25px auto 0;
    max-width: 500px;
}

#Top main .movie_sec .movie_wrap iframe {
    width: 100%;
    height: 100%;
}

#Top main .group_area {
    padding-bottom: 45px;
    background: url(../images/top/sp/group_bg.jpg) no-repeat center top/100% auto;
}

#Top main .group_area .text_wrap h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#Top main .group_area .text_wrap dl {
    max-width: 480px;
    margin: 25px auto 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding-bottom: 15px;
}

#Top main .group_area .text_wrap dl dt {
    display: grid;
    place-content: center;
    width: 55px;
    height: 21px;
    font-size: 15px;
    font-weight: 500;
}

#Top main .group_area .text_wrap dl dd {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

#Top main .group_area .text_wrap p {
    padding-top: 15px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    max-width: 480px;
    margin: auto;
}

#Top main .group_area .text_wrap .btn_wrap {
    margin-top: 20px;
}

#Top main .group_area .text_wrap .btn_wrap a {
    font-size: 15px;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: clamp(282px, 75.2vw, 320px);
    height: 56px;
    border-radius: 28px;
    border-width: 2px;
    border-style: solid;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    margin: auto;
}

#Top main .group_area .text_wrap .btn_wrap a::after {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: 0;
    background-size: contain;
    right: 25px;
    top: 0;
    bottom: 0;
}

#Top main .group_area .lab_sec {
    height: 164vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

#Top main .group_area .lab_sec .text_wrap h2 .en {
    width: 55.6vw;
}

#Top main .group_area .lab_sec .text_wrap h2 .jp {
    width: 63.87vw;
    margin-top: 3.87vw;
}

#Top main .group_area .lab_sec .text_wrap dl dt {
    background-color: #828af8;
}

#Top main .group_area .lab_sec .text_wrap dl dd {
    color: #fff;
}

#Top main .group_area .lab_sec .text_wrap p {
    color: #fff;
    border-top: 1px solid #7a4cb1;
}

#Top main .group_area .lab_sec .text_wrap .btn_wrap a {
    color: #fff;
    border-color: #fff;
}

#Top main .group_area .lab_sec .text_wrap .btn_wrap a::after {
    background-image: url(../images/common/outlink.svg);
}

#Top main .group_area .gym_sec {
    margin-top: 86.33vw;
}

#Top main .group_area .gym_sec .text_wrap h2 .en {
    width: 64.13vw;
}

#Top main .group_area .gym_sec .text_wrap h2 .jp {
    width: 61.6vw;
    margin-top: 5.87vw;
}

#Top main .group_area .gym_sec .text_wrap picture {
    margin: 17.33vw -15px 0;
    display: block;
    max-width: 400px;
}

@media (min-width: 400px) {
    #Top main .group_area .gym_sec .text_wrap picture {
        margin: 35px auto 0;
    }
}

#Top main .group_area .gym_sec .text_wrap dl {
    margin-top: 4vw;
}

#Top main .group_area .gym_sec .text_wrap dl dt {
    background-color: #000;
    color: #fff;
}

#Top main .group_area .gym_sec .text_wrap p {
    border-top: 1px solid #e3e3e4;
}

#Top main .group_area .gym_sec .text_wrap .btn_wrap a {
    border-color: #000;
}

#Top main .group_area .gym_sec .text_wrap .btn_wrap a::after {
    background-image: url(../images/common/outlink_bk.svg);
}

#Top main .faci_sec {
    padding: 57px 0 80px;
    background: url(../images/top/sp/facility_bg.jpg) no-repeat center bottom/cover;
    position: relative;
}

#Top main .faci_sec h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#Top main .faci_sec h2 .en span {
    font-size: 40px;
    font-style: italic;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px 10px 13px;
    letter-spacing: 0.01em;
}

#Top main .faci_sec h2 .en span small {
    font-family: YakuHanJP_Noto, "Noto Sans JP";
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    margin-left: 20px;
}

#Top main .faci_sec h2 .jp {
    display: inline-block;
    font-size: 15px;
    margin-top: 10px;
    letter-spacing: 0.1em;
}

#Top main .faci_sec h2 .jp span {
    padding: 10px 12px;
}

#Top main .faci_sec figure {
    max-width: 500px;
    margin: 0 -15px;
}

#Top main .faci_sec ul {
    margin: 18px auto 0;
    max-width: 400px;
    border-top: 1px solid #fff;
}

#Top main .faci_sec ul li {
    border-bottom: 1px solid #fff;
}

#Top main .faci_sec ul li a {
    display: block;
    color: #fff;
    font-weight: 500;
    line-height: 55px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

#Top main .faci_sec ul li a::before {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    width: 26px;
    height: 6px;
    background: url(../images/common/arrow_wh.svg) no-repeat 0/contain;
    right: 10px;
    top: 0;
    bottom: 0;
}

@media (min-width: 500px) {
    #Top main .faci_sec figure {
        margin: 0 auto;
    }
}

#Top main .bottom_area {
    background: url(../images/top/sp/bottom_bg.jpg) no-repeat center top/cover;
}

#Top main .sns_sec {
    position: relative;
}

#Top main .sns_sec h2 {
    position: absolute;
    left: 0;
    top: -23px;
    background-color: #fff;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 32px;
    font-style: italic;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 250px;
    height: 55px;
}

#Top main .sns_sec h2 strong {
    font-size: 40px;
    margin-left: 10px;
}

#Top main .sns_sec .sns_wrap {
    padding: 52px 20px 45px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.2);
}

#Top main .sns_sec .sns_wrap h3 {
    font-size: 30px;
    font-family: "Poppins";
    font-weight: 600;
    font-style: italic;
    color: #fff;
    text-align: center;
}

#Top main .sns_sec .sns_wrap .content_wrap {
    overflow: hidden;
    max-width: 450px;
    margin: 12px auto 0;
}

#Top main .sns_sec .sns_wrap .btn_wrap {
    margin-top: 15px;
}

#Top main .sns_sec .sns_wrap .tw_wrap .content_wrap {
    max-height: 260px;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

@media (min-width: 500px) {
    #Top main .sns_sec .sns_wrap .tw_wrap .content_wrap {
        max-height: 400px;
    }
}

#Top main .sns_sec .sns_wrap .insta_wrap {
    margin-top: 45px;
}

#Top main .sns_sec .sns_wrap .insta_wrap .content_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

#Top main .sns_sec .sns_wrap .insta_wrap .content_wrap li a {
    display: block;
    height: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

#Top main .sns_sec .sns_wrap .insta_wrap .content_wrap li a img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}

#Top main .sns_sec .sns_wrap .insta_wrap .content_wrap li:nth-of-type(n + 7) {
    display: none;
}

#Top main .bn_wrap {
    margin: 55px auto 0;
    max-width: 450px;
}

#Top header {
    background-color: transparent;
    height: 70px;
}

#Top header.scroll {
    background-color: #000;
    padding: 0 25px;
    height: 50px;
}

#Top footer {
    background: none;
}

/*==================================
  Facility
==================================*/
#Facility main#List .map_area .map_wrap {
    height: 400px;
}

#Facility main#List .map_area .container {
    margin-top: 10px;
}

#Facility main#List .map_area .container ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

#Facility main#List .map_area .container ul li {
    line-height: 1;
    height: clamp(18px, 4.8vw, 22px);
}

#Facility main#List .map_area .container ul li img {
    width: auto;
    height: 100%;
}

#Facility main#List .list_sec {
    margin-top: 45px;
}

#Facility main#List .list_sec .cate_wrap dl dt {
    font-weight: 500;
    text-align: center;
    line-height: 1;
}

#Facility main#List .list_sec .cate_wrap dl dd {
    margin-top: 15px;
    height: 50px;
    border: 1px solid #c6c6c6;
    border-radius: 25px;
    position: relative;
}

#Facility main#List .list_sec .cate_wrap dl dd::before {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    width: 7px;
    height: 15px;
    background: url(../images/common/arrow2.svg) no-repeat 0/contain;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    bottom: 0;
    right: 35px;
}

#Facility main#List .list_sec .cate_wrap dl dd select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 30px;
    padding-right: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

#Facility main#List .list_sec .cate_wrap p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.7;
}

#Facility main#List .list_sec .list {
    margin-top: 25px;
}

#Facility main#List .list_sec .list .area_wrap {
    position: relative;
}

#Facility main#List .list_sec .list .area_wrap+.area_wrap {
    margin-top: 26px;
}

#Facility main#List .list_sec .list .area_wrap h2 {
    text-align: center;
    color: #fff;
    background-color: #000;
    padding: 9px 10px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: 500;
    box-sizing: border-box;
}

#Facility main#List .list_sec .list .area_wrap h2 small {
    font-size: 10px;
    display: block;
    margin-top: 10px;
    line-height: 1.2;
}

#Facility main#List .list_sec .list .area_wrap .nolist {
    margin-top: 17px;
    text-align: center;
    font-weight: 500;
}

#Facility main#List .list_sec .list .area_wrap>ul {
    margin-top: 5px;
}

#Facility main#List .list_sec .list .area_wrap>ul>li {
    padding: 15px 0 20px;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .left_wrap .ttl .tag {
    height: clamp(18px, 4.8vw, 22px);
    line-height: 1;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .left_wrap .ttl .tag img {
    width: auto;
    height: 100%;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .left_wrap .ttl h3 {
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.2;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .left_wrap .ttl a {
    position: absolute;
    right: 0;
    bottom: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #0096ff;
    border-bottom: 1px solid #0096ff;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .left_wrap .ttl a::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 27px;
    height: 8px;
    background: url(../images/common/arrow_bl.svg) no-repeat 0/contain;
    margin-left: 3px;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .left_wrap p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.4;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .left_wrap p span {
    display: block;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap {
    margin-top: 10px;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap p {
    line-height: 1;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap p .tel {
    font-weight: 500;
    border-bottom: 1px solid #000;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 11px;
    -moz-column-gap: 11px;
    column-gap: 11px;
    margin-top: 20px;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap ul li {
    line-height: 1;
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap ul .tw {
    width: clamp(16px, 4vw, 20px);
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap ul .yt {
    width: clamp(20px, 5.5vw, 32px);
}

#Facility main#List .list_sec .list .area_wrap>ul>li .right_wrap ul .is {
    width: clamp(17px, 4.54vw, 23px);
}

#Facility main#Detail .content_sec {
    margin-top: 30px;
}

#Facility main#Detail .ttl_wrap .cate {
    height: clamp(18px, 4.8vw, 22px);
}

#Facility main#Detail .ttl_wrap .cate img {
    width: auto;
    height: 100%;
}

#Facility main#Detail .ttl_wrap h2 {
    font-size: 23px;
    line-height: 1.2;
    margin-top: 7px;
}

#Facility main#Detail .slide_wrap {
    margin-top: 13px;
}

#Facility main#Detail .slide_wrap .main_wrap {
    position: relative;
}

#Facility main#Detail .slide_wrap .main_wrap .main_slide .swiper-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#Facility main#Detail .slide_wrap .main_wrap .main_slide .swiper-slide {
    display: grid;
    place-content: center;
}

#Facility main#Detail .slide_wrap .main_wrap .swiper-button-prev,
#Facility main#Detail .slide_wrap .main_wrap .swiper-button-next {
    width: 30px;
    height: 45px;
    background-color: #000;
}

#Facility main#Detail .slide_wrap .main_wrap .swiper-button-prev::after,
#Facility main#Detail .slide_wrap .main_wrap .swiper-button-next::after {
    content: "";
    width: 6px;
    height: 15px;
    background: url(../images/common/arrow2_wh.svg) no-repeat 0/contain;
}

#Facility main#Detail .slide_wrap .main_wrap .swiper-button-prev {
    left: -15px;
}

#Facility main#Detail .slide_wrap .main_wrap .swiper-button-prev::after {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

#Facility main#Detail .slide_wrap .main_wrap .swiper-button-next {
    right: -15px;
}

#Facility main#Detail .slide_wrap .thum_wrap {
    margin-top: 7px;
}

#Facility main#Detail .slide_wrap .thum_wrap .thum_slide .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2px -4px;
}

#Facility main#Detail .slide_wrap .thum_wrap .thum_slide .swiper-wrapper .swiper-slide {
    padding: 0 2px 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#Facility main#Detail .sns_wrap {
    margin-top: 50px;
}

#Facility main#Detail .sns_wrap h3 {
    font-size: 30px;
    font-family: "Poppins";
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

#Facility main#Detail .sns_wrap .content_wrap {
    overflow: hidden;
    margin-top: 13px;
}

#Facility main#Detail .sns_wrap .btn_wrap {
    margin-top: 20px;
}

#Facility main#Detail .sns_wrap .tw_wrap .content_wrap {
    height: 275px;
    border-radius: 0 0 12px 12px;
}

#Facility main#Detail .sns_wrap .insta_wrap {
    margin-top: 50px;
}

#Facility main#Detail .sns_wrap .insta_wrap .content_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

#Facility main#Detail .sns_wrap .insta_wrap .content_wrap li a {
    display: block;
    height: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

#Facility main#Detail .sns_wrap .insta_wrap .content_wrap li a img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}

#Facility main#Detail .table_wrap {
    margin-top: 50px;
}

#Facility main#Detail .table_wrap table {
    border-top: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    width: 100%;
}

#Facility main#Detail .table_wrap table tr th,
#Facility main#Detail .table_wrap table tr td {
    font-size: 14px;
    border-bottom: 1px solid #e1e1e1;
    font-weight: 500;
}

#Facility main#Detail .table_wrap table tr th {
    color: #fff;
    vertical-align: middle;
    background-color: #000;
    width: 80px;
}

#Facility main#Detail .table_wrap table tr td {
    width: calc(100% - 80px);
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.2;
}

#Facility main#Detail .map_wrap {
    margin-top: 17px;
    height: 275px;
}

#Facility main#Detail .map_wrap iframe {
    width: 100%;
    height: 100%;
}

#Facility main#Detail .btn_back {
    margin-top: 40px;
}

#Facility main#Detail .btn_back a::before {
    -webkit-transform-origin: right;
    transform-origin: right;
}

#Facility main#Detail .btn_back a span {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#Facility main#Detail .btn_back a span::before {
    left: 25px;
    right: auto;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

#Facility main#Detail .btn_back a span::after {
    left: 15px;
    right: auto;
}

@media (hover: hover) {
    #Facility main#Detail .btn_back a:hover::before {
        -webkit-transform-origin: left;
        transform-origin: left;
    }

    #Facility main#Detail .btn_back a:hover span::before {
        -webkit-transform: scale(-1, 1) translateX(3px);
        transform: scale(-1, 1) translateX(3px);
    }
}

    .sns_wrap a img {
        max-width: 100px;
        display: block;
        margin: auto;
    }