@charset "utf-8";
/* ================================================================
	Base Style
================================================================ */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
    color: #333333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    letter-spacing: 2px;
    line-height: 1.8;
    text-align: justify;
}

main {
    overflow: hidden;
}

img {
    width: 100%;
    vertical-align: bottom;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333333;
}

p {
    font-size: 1rem;
}

button {
    padding-inline: 0;
    padding-block: 0;
}
button:hover {
    cursor: pointer;
}

/* ================================================================
	Responsive Grid Layout
	 - Mobile-first approach
	 - Adjust columns and spacing at breakpoints
================================================================ */
/* Base: single column for small screens */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-inline: 1rem;
}

.grid>* {
    min-width: 0;
    /* Prevent content overflow */
}

/* ≥576px: two columns for small devices */
@media (min-width: 576px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        padding-inline: 24px;
    }
}

/* ≥768px: six columns for tablets */
@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 24px;
        padding-inline: 32px;
    }
}

/* ≥768px: six columns for displays */
@media (min-width: 992px) {
    .grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 32px;
        padding-inline: 40px;
    }
}

/* ≥768px: six columns for displays */
@media (min-width: 1200px) {
    .grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 32px;
        padding-inline: 48px;
    }
}

/* ≥768px: six columns for displays */
@media (min-width: 1400px) {
    .grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 40px;
        padding-inline: 64px;
    }
}

/* loading */
/* #splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #54B720;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}
#splash-logo {
	position: absolute;
    font-weight: 600;
    font-size: 2em;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
} */
/*画面遷移アニメーション*/
/* .splashbg{
    display: none;
} */
/*bodyにappearクラスがついたら出現*/
/* body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #54B720;
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}
@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}
.wrapper {
    opacity: 0;
}
body.appear .wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
} */

/* header */
header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    padding: 20px 0;
    backdrop-filter:blur(10px);
    background: rgb(255 255 255 / 50%);
}
header .grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}
.header_logo {
    grid-column: 1 / 6;
    max-width: 250px;
    z-index: 10;
}
.header_logo img {
    vertical-align: middle;
}
.nav_item li {
    font-weight: 600;
}
.header_insta img{
    max-width: 30px;
}

/* Responsive */
@media (min-width: 768px) {
    .header_logo {
        grid-column: 1 / 5;
    }
    .hamburger {
        grid-column: 6 / 7;
    }
}
@media (min-width: 992px) {
    header .grid {
        align-items: baseline;
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .header_logo {
        grid-column: 1 / 6;
    }
    .nav_item_box {
        grid-column: 6 / 13;
    }
    .nav_item {
        display: grid;
        grid-template-columns: auto auto auto auto;
        column-gap: 20px;
        justify-self: end;
        font-size: 0.8em;
    }
    .hamburger {
        display: none;
    }
}
@media (min-width: 1200px) {
    .header_logo {
        grid-column: 1 / 6;
    }
    .nav_item_box {
        grid-column: 7 / 13;
    }
}
@media (min-width: 1400px) {
    .header_logo {
        grid-column: 1 / 5;
    }
    .nav_item_box {
        grid-column: 8 / 13;
    }
}
/* underline */
@media (min-width: 992px) {
    .underline {
        position: relative;
        display: inline-block;
        margin-top: 2px;
    }
    .underline::after {
        background-color: #54B720;
        bottom: 2px;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .6s;
        width: 100%;
    }
    .underline:hover::after {
        transform: scale(1, 1);
    }
}
/* hamburger */
@media (max-width: 992px) {
    body.active {
        overflow: hidden;
    }
    header .grid {
        align-items: center;
    }
    .nav_item_box {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        display: none;
        background: #fff;
        transition: transform .6s;
    }
    .nav_item_box.active {
        display: block;
    }
    .nav_item {
        position: absolute;
        width: 80%;
        margin: 10% 10% 0;
        display: grid;
        grid-template-columns: 1fr;
        justify-self: start;
        font-size: 1rem;
    }
    .nav_item a:first-child {
        border-top: solid 1px #D9D9D9;
    }
    .nav_item a {
        padding: 15px 25px;
        border-bottom: solid 1px #D9D9D9;
    }
    .nav_item a:last-child {
        border-bottom: none;
    }
    .hamburger {
        position: relative;
        background-color: transparent;
        border-color: transparent;
        z-index: 10;
        height: 4vw;
        width: 5vw;
        justify-self: center;
        grid-column: 8 / 9;
    }
    .hamburger span {
        height: 2px;
        width: 100%;
        background-color: #333;
        position: absolute;
        transition: ease .4s;
        display: block;
    }
    .hamburger span:nth-child(1) {
        top: 0vw;
    }
    .hamburger span:nth-child(2) {
        margin: 36% 0;
        top: 0vw;
    }
    .hamburger span:nth-child(3) {
        top: 3.5vw;
    }
    .hamburger.active span:nth-child(1) {
        top: 2vw;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        top: 2vw;
        transform: rotate(-45deg);
    }
}
@media (max-width: 768px) {
    .hamburger {
        position: relative;
        background-color: transparent;
        border-color: transparent;
        z-index: 10;
        height: 5vw;
        width: 6vw;
    }
    .hamburger span:nth-child(1) {
        top: 0vw;
    }
    .hamburger span:nth-child(2) {
        margin: 40% 0;
        top: 0vw;
    }
    .hamburger span:nth-child(3) {
        top: 4.5vw;
    }
    .hamburger.active span:nth-child(1) {
        top: 2vw;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        top: 2vw;
        transform: rotate(-45deg);
    }
    .nav_item {
        margin: 15% 10% 0;
    }
    .header_insta_left {
        justify-self: center;
    }
}
@media (max-width: 576px) {
    .hamburger {
        height: 6vw;
        width: 8vw;
    }
    .hamburger span:nth-child(1) {
        top: 0vw;
    }
    .hamburger span:nth-child(2) {
        margin: 33% 0;
        top: 0vw;
    }
    .hamburger span:nth-child(3) {
        top: 5vw;
    }
    .hamburger.active span:nth-child(1) {
        top: 2vw;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(3) {
        top: 2vw;
        transform: rotate(-45deg);
    }
    .nav_item {
        margin: 20% 10% 0;
    }
}

/* mv */
.mv {
    margin-top: 75px;
    height: 60vh;
}
.mv_ttl {
    position: absolute;
    z-index: 1;
    top: 50vh;
    left: 5vh;
}
.mv_ttl h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}
/* .mv_ttl h1 .char {
    display: inline-block;
    opacity: 0;
} */
.slideshow {
    grid-column: span 12;
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    border-radius: 10px;
    background-color: #333;
}
.slideshow_img {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position:center bottom;
    animation: slideAnime 28s infinite;
}
@keyframes slideAnime {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 0.85;
    }
    25% {
        opacity: 0.85;
    }
    30%, 100% {
        opacity: 0;
    }
}
.slideshow_img:nth-of-type(1) {
    background-image: url('../img/mv_img02.jpg');
    animation-delay: 0s;
}
.slideshow_img:nth-of-type(2) {
    background-image: url('../img/mv_img03.jpg');
    animation-delay: 7s;
}
.slideshow_img:nth-of-type(3) {
    background-image: url('../img/mv_img04.jpg');
    animation-delay: 14s;
}
.slideshow_img:nth-of-type(4) {
    background-image: url('../img/mv_img01.jpg');
    animation-delay: 21s;
}

/* Responsive */
@media (min-width: 576px) {
    .mv {
        margin-top: 85px;
    }
    .mv_ttl {
        top: 53vh;
        left: 8vh;
    }
}
@media (min-width: 768px) {
    .mv {
        margin-top: 80px;
    }
    .mv_ttl h1 br {
        display: none;
    }
}
@media (min-width: 992px) {
    .mv {
        margin-top: 75px;
    }
    .mv_ttl {
        top: 50vh;
        left: 10vh;
    }
    .mv_ttl h1 {
        font-size: 3.75rem;
    }
}
@media (min-width: 1200px) {
    .mv_ttl {
        top: 50vh;
        left: 12vh;
    }
    .slideshow_img {
        background-position:center;
    }
}
@media (min-width: 1400px) {
    .mv_ttl {
        top: 50vh;
        left: 13vh;
    }
}

/* h2 */
.contents_ttl {
    grid-column: span 1;
}
.contents_ttl02 {
    grid-column: span 1;
}
h2 {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
}
/* Underline */
.contents_ttl h2,
.contents_ttl02 h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.2em;
}
.contents_ttl h2::after,
.contents_ttl02 h2::after {
    background-color: #54B720;
    content: "";
    height: 3px;
    left: 0;
    bottom: 0;
    position: absolute;
    width: 0;
}
.contents_ttl h2.is-animated::after,
.contents_ttl02 h2.is-animated::after {
    animation: drawLine 0.6s ease forwards;
}  
@keyframes drawLine {
    from { width: 0; }
    to   { width: 50px; }
}

/* Responsive */
@media (min-width: 576px) {
    .contents_ttl {
        grid-column: span 6;
    }
    .contents_ttl02 {
        grid-column: span 2;
    }
}
@media (min-width: 768px) {
    .contents_ttl {
        grid-column: span 6;
    }
    .contents_ttl02 {
        grid-column: span 6;
    }
}
@media (min-width: 992px) {
    .contents_ttl {
        grid-column: 2 / 5;
    }
    .contents_ttl02 {
        grid-column: 2 / 12;
    }
    h2 {
        font-size: 1.875rem;
        margin-bottom: 20px;
    }
}
@media (min-width: 1400px) {
    .contents_ttl {
        grid-column: 3 / 5;
    }
}

/* news */
.news {
    padding-top: 60px;
}
.news_item_box {
    grid-column: span 1;
}
.news_item {
    padding: 20px 0;
    border-top: solid 1px #D9D9D9;
    font-size: 1rem;
}
.news_item:last-child {
    border-bottom: solid 1px #D9D9D9;
}
.ttl {
    font-weight: 600;
    color: #54B720;
    margin-bottom: 5px;
}
/* Responsive */
@media (min-width: 576px) {
    .news_item_box {
        grid-column: span 6;
    }
    .news_item {
        display: grid;
        grid-template-columns: 1fr 5fr;
        column-gap: 20px;
    }
}
@media (min-width: 992px) {
    .news {
        padding-top: 90px;
    }
    .news_item_box {
        grid-column: span 7;
    }
}
@media (min-width: 1400px) {
    .news_item_box {
        grid-column: span 6;
    }
}

/* clinic */
.clinic {
    padding: 60px 0;
}
.clinic_item_l {
    grid-column: span 1;
}
.clinic_item_r {
    grid-column: span 1;
}
.clinic_item_l, .clinic_item_r {
    border: solid 1px #D9D9D9;
    position: relative;
}
.clinic_floor {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #54B720;
    padding: 10px 15px;
    position: absolute;
    z-index: 1;
}
.clinic_item_box {
    margin: 18px;
    display: grid;
    gap: 15px;
}
.clinic_item_box_sg {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 7;
}
.clinic_logo {
    align-self: center;
}
.clinic_logo h3 a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #54B720;
}
.clinic_logo a {
    transition: ease .6s;
}
.clinic_logo a:hover {
    opacity: 0.7;
}
.clinic_category {
    border-bottom: solid 1px #D9D9D9;
    padding: 0 0 15px;
}
.clinic_category p{
    font-weight: 600;
    font-size: 1.25rem;
}
.clinic_tel_box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}
.clinic_tel_box a {
    font-size: 1rem;
    font-weight: 600;
}
.clinic_tel_box .tel, .clinic_tel_box .fax {
    display: grid;
    grid-template-columns: 25px auto;
    column-gap: 10px;
    align-items: center;
}
.clinic_table table {
    width: 100%;
    position: relative;
    border-collapse: collapse;
    background: #fff;
    text-align: center;
    white-space: nowrap;
    border-right: solid 1px #54B720;
    border-left: solid 1px #54B720;
}
.clinic_table th {
    padding: 5px;
    background: #54B720;
    font-weight: 600;
    color: #fff;
    font-size: 0.75rem;
    vertical-align: middle;
}
.clinic_table th:first-child {
    border-right: solid 1px #fff;
}
.clinic_table td {
    padding: 5px;
    vertical-align: middle;
    font-size: 0.8rem;
    background: #fff;
    border-bottom: solid 1px #54B720;
}
.clinic_table td:first-child {
    border-right: solid 1px #54B720;
}
.clinic_table_info {
    margin-top: 10px;
}
.clinic_table_info p {
    font-size: 0.75rem;
}
.clinic_btn, .clinic_btn_fa {
    display: grid;
    grid-template-columns: auto 25px;
    column-gap: 10px;
    background: #54B720;
    align-items: center;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 5px;
    align-self: end;
    transition: ease .6s;
}
.clinic_btn_fa {
    margin-top: 20px;
    max-width: 200px;
}
.clinic_btn p ,.clinic_btn_fa p {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.clinic_btn:hover, .clinic_btn_fa:hover {
    opacity: 0.7;
    transform: scale(1.05);
}
.clinic_item_fa {
    margin-top: 40px;
}
.clinic_ttl_fa {
    font-weight: 600;
    font-size: 1rem;
    margin: 15px 0 5px;
}

/* Responsive */
@media (min-width: 576px) {
    .clinic_item_l, .clinic_item_r {
        grid-column: span 2;
    }
    .clinic_item_box {
        margin: 25px;
    }
    .clinic_logo {
        max-width: 400px;
    }
    .clinic_category br{
        display: none;
    }
    .clinic_tel_box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .jsc .tel,
    .jsc .fax {
        justify-self: center;
    }
    .clinic_item_fa {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        grid-column: span 2;
        gap: 1rem;
    }
    .clinic_img_fa img{
        height: 200px;
        object-fit: cover;
    }
    .clinic_ttl_fa {
        margin: 0px 0px 5px;
    }
    .clinic_btn_fa {
        margin: 15px 0 0;
    }
}
@media (min-width: 768px) {
    .clinic_item_l, .clinic_item_r {
        grid-column: span 10;
    }
    .clinic_item_fa {
        grid-column: span 6;
    }
}
@media (min-width: 992px) {
    .clinic {
        padding: 90px 0;
    }
    .clinic_item_l, .clinic_item_r {
        grid-column: 2 / 7;
    }
    .clinic_item_r {
        grid-column: 7 / 12;
    }
    .clinic_logo h3 a {
        font-size: 1.875rem;
    }
    .clinic_item_box {
        gap: 20px;
    }
    .clinic_floor {
        font-size: 1.25rem;
        padding: 15px 20px;
    }
    .clinic_category {
        padding: 0 0 20px;
    }
    .clinic_category p{
        font-size: 1.25rem;
    }
    .clinic_category br{
        display: block;
    }
    .clinic_tel_box {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .jsc .tel,
    .jsc .fax {
        justify-self: start;
    }
    .clinic_tel_box a {
        font-size: 1.25rem;
    }
    .clinic_table_info p {
        font-size: 0.8rem;
    }
    .clinic_logo {
        height: 60px;
    }
    .clinic_txt {
        height: 630px;
    }
    .txth2 {
        height: 600px;
    }
    .clinic_tel_box {
        height: 90px;
    }
    .clinic_table {
        height: 200px;
    }
    .clinic_item_fa {
        margin-top: 60px;
        grid-column: 2 / 12;
        gap: 32px;
    }
    .clinic_img_fa img{
        height: 250px;
        object-fit: cover;
    }
    .clinic_ttl_fa {
        font-size: 1.25rem;
        margin: 0px 0px 10px;
    }
    .clinic_btn_fa {
        margin: 20px 0 0;
        max-width: 250px;
    }
}
@media (min-width: 1100px) {
    .clinic_txt {
        height: 550px;
    }
    .txth2 {
        height: 530px;
    }
}
@media (min-width: 1200px) {
    .clinic_logo {
        height: 60px;
    }
    .clinic_txt {
        height: 520px;
    }
    .txth2 {
        height: 500px;
    }
    .clinic_tel_box {
        grid-template-columns: auto auto;
        gap: 15px;
        height: 50px;
    }
    .clinic_tel_box .tel, .clinic_tel_box .fax {
        grid-template-columns: 20px auto;
        column-gap: 5px;
    }
    .jsc .tel,
    .jsc .fax {
        justify-self: center;
    }
    .clinic_table {
        height: 200px;
    }
    .clinic_table th {
        font-size: 0.8rem;
    }
    .clinic_table td {
        font-size: 1rem;
    }
    .clinic_item_fa {
        grid-column: 3 / 11;
    }
}
@media (min-width: 1300px) {
    .clinic_logo {
        height: 80px;
    }
    .clinic_txt {
        height: 480px;
    }
    .txth2 {
        height: 430px;
    }
    .clinic_table {
        height: 190px;
    }
}
@media (min-width: 1400px) {
    .clinic_logo {
        height: 80px;
    }
    .clinic_txt {
        height: 440px;
    }
    .txth2 {
        height: 430px;
    }
    .clinic_table {
        height: 200px;
    }
    .clinic_item_fa {
        grid-column: 4 / 10;
        gap: 40px;
    }
}
@media (min-width: 1500px) {
    .clinic_category br{
        display: none;
    }
    .clinic_txt {
        height: 400px;
    }
    .txth2 {
        height: 350px;
    }
}
@media (min-width: 1600px) {
    .clinic_txt {
        height: 370px;
    }
    .txth2 {
        height: 330px;
    }
    .clinic_tel_box {
        height: 50px;
    }
}

/* floor_map */
.floor_map {
    padding: 60px 0;
    background: #f4faf0;
}
.floor_map_img {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 10px 20px 0px rgba(179, 204, 185, 0.5);
    align-self: start;
}
.floor_map_img li img {
    object-fit: cover;
    transition: transform .6s;
}
.floor_map_img li:hover img {
    transform: scale(1.1);
}
.floor_map_img .modal_icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
}
/* .floor_map_box {
    padding-bottom: 40px;
    border-bottom: 1px solid #54B720;
} */
.floor_map_item h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.floor_map_item h3 span {
    border: 1px solid #333;
    border-radius: 100px;
    padding: 5px 15px;
}
.floor_map_item, .floor_pic_item {
    margin-bottom: 30px;
}
.floor_map_item:last-child, .floor_pic_item:last-child {
    margin-bottom: 0;
}
.floor_pic_box {
    margin-top: 40px;
}
.floor_pic_item h3{
    font-weight: 600;
    font-size: 1.25rem;
    margin: 15px 0 5px;
}

/* Responsive */
@media (min-width: 576px) {
    .floor_map_txt {
        grid-column: span 2;
    }
    .floor_map_box {
        grid-column: span 2;
    }
    .floor_pic_box {
        grid-column: span 2;
    }
    .floor_map_item {
        display: grid;
        grid-template-columns: 1fr 10fr;
        column-gap: 15px;
    }
    .floor_map_item h3 {
        margin-bottom: 0;
    }
    .floor_pic_item {
        grid-column: span 1;
    }
}
@media (min-width: 768px) {
    .floor_map_txt {
        grid-column: span 6;
    }
    .floor_map_box, .floor_pic_box {
        grid-column: span 6;
    }
    .floor_map_itembox {
        grid-column: span 6;
    }
    .floor_map_item h3 {
        margin:2px 0 0;
    }
    .floor_pic_item:nth-last-child(-n + 2) {
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    .floor_map {
        padding: 90px 0;
    }
    .floor_map_txt {
        grid-column: 2 / 12;
    }
    .floor_map_box, .floor_pic_box {
        grid-column: 2 / 12;
    }
    /* .floor_map_box {
        padding-bottom: 60px;
    } */
    .floor_pic_box {
        margin-top: 60px;
    }
    .floor_map_item_box {
        display: grid;
        grid-template-columns: repeat(11, minmax(0, 1fr));
        column-gap: 32px;
    }
    .floor_pic_item_box {
        display: grid;
        grid-template-columns: repeat(10, minmax(0, 1fr));
        column-gap: 32px;
    }
    .floor_map_img {
        grid-column: span 6;
        margin-bottom: 0;
    }
    .floor_map_itembox {
        grid-column: 7 / 12;
    }
    .floor_map_item h3 {
        margin:3px 0 0;
    }
    .floor_map_item h3 span {
        padding: 5px 20px;
    }
    .floor_map_f {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    .floor_pic_item {
        grid-column: span 5;
    }
}

/* modaal */
.hide-area{
	display: none;
}
.modaal-close:after, 
.modaal-close:before{
	background:#fff;	
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#333;
}

/* access */
.access {
    padding: 60px 0;
}
.transport_item_box:first-child {
    margin-top: 0;
}
.transport_item_box {
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #D9D9D9;
}
.transport_item h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 20px;
}
.transport_item h3 span {
    border: 1px solid #333;
    border-radius: 100px;
    padding: 5px 15px;
}
.transport_item dt{
    font-weight: 600;
}
.transport_item dd {
    margin-bottom: 15px;
}
.transport_item dd:last-child {
    margin-bottom: 0;
}
.transport_item_car {
    background: #f4faf0;
    padding: 30px;
    margin-top: 40px;
}
.transport_item_car h4 {
    font-weight: 600;
    margin-bottom: 10px;
}
.transport_item_car_info {
    font-size: 0.8rem;
    margin-top: 5px;
}
.access_map_img {
    position: relative;
    overflow: hidden;
    box-shadow: 5px 10px 20px 0px rgba(217, 217, 217, 0.5);
    align-self: start;
    margin-top: 30px;
}
.access_map_img li img {
    object-fit: cover;
    transition: transform .6s;
}
.access_map_img li:hover img {
    transform: scale(1.1);
}
.access_map_img .modal_icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
}
.route_box {
    margin-top: 40px;
}
.route_item {
    margin-bottom: 30px; 
}
.route_item:last-child {
    margin-bottom: 0;
}
.route_item h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 15px 0 5px;
    text-indent: -2.2em;
    padding-left: 2.2em;
}
.route_item h3 span {
    background: #54B720;
    border-radius: 50%;
    padding: 6px 5px;
    margin-right: 10px;
    letter-spacing: 1px;
    color: #fff;
}
@media (min-width: 576px) {
    .transport_box {
        grid-column: span 2;
    }
    .route_box {
        grid-column: span 2;
    }
}
@media (min-width: 768px) {
    .transport_box {
        grid-column: span 6;
    }
    .transport_item:last-child {    
        margin-bottom: 0;
    }
    .transport_item h3 span {
        padding: 5px 20px;
    }
    .route_box {
        grid-column: span 6;
    }
}
@media (min-width: 992px) {
    .access {
        padding: 90px 0;
    }
    .transport_box {
        grid-column: 2 / 12;
    }
    .transport_item_box {
        display: grid;
        grid-template-columns: repeat(11, minmax(0, 1fr));
        column-gap: 32px;
        padding-bottom: 60px;
        margin-top: 60px;
    }
    .transport_item {
        grid-column: span 6;
    }
    .access_map_img {
        grid-column: 7 / 12;
        margin-top: 0;
    }
    .transport_item_car_info {
        font-size: 0.75rem;
    }
    .route_box {
        grid-column: 2 / 12;
        margin-top: 60px;
    }
    .route_item_box {
        display: grid;
        grid-template-columns: repeat(10, minmax(0, 1fr));
        column-gap: 32px;
    }
    .route_item {
        grid-column: span 5;
    }
    .route_item:nth-last-child(-n + 2) {
        margin-bottom: 0;
    }
}

/* transport_bus_tabs */
.transport_bus_tabs {
	margin: auto;
	flex-wrap: wrap;
	display: flex;
}
.tab_class {
	font-size: 0.8rem;
	display: block;
	text-align: center;
	order: -1;
    width: 50%;
    padding: 10px 0;
    background: #D9D9D9;
    font-weight: 600;
    color: #333;
    transition: ease .6s;
}
.tab_class:hover {
    cursor: pointer;
}
input[name="tab_name"] {
	display: none;
}
input:checked + .tab_class {
	background: #54B720;
    color: #fff;
}
.content_class {
	display: none;
	width: 100%;
    padding: 30px;
    background: #fff;
    border: solid 1px #D9D9D9;
}
.content_class h4{
	margin: 15px 0 10px;
    font-weight: 600;
}
.content_class h4:first-child {
    margin-top: 0;
}
.content_class ul {
    padding-bottom: 15px;
    border-bottom: dotted 2px #54B720;
}
.caption {
	margin-top: 15px;
}
input:checked + .tab_class + .content_class {
	display: block;
}
.caption_exlink {
    transition: ease .6s;
}
.caption_exlink:hover {
    opacity: 0.5;
}
.caption_exlink::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../img/caption_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 2px;
    vertical-align: middle;
}

/* area */
.area iframe {
    width: 100%;
    height: 500px;
    margin-bottom: -9px;
}

/* concept */
.concept {
    background: url(../img/concept_bg_pc.jpg) no-repeat center;
    background-size: cover;
    padding: 60px 0;
}
.concept_ttl, .concept_txt, .concept_txt_li {
    grid-column: span 1;
}
.concept_ttl h2 span {
    color: #54B720;
}
.concept_txt_li {
    margin: 10px 0;
}
.concept_txt_li li{
    margin-bottom: 10px;
}
.concept_txt_li li span {
    font-weight: 600;
}
.concept_txt_li li:last-child {
    margin-bottom: 0;
}
/* Responsive */
@media (min-width: 576px) {
    .concept_ttl, .concept_txt, .concept_txt_li {
        grid-column: span 2;
    }
}
@media (min-width: 768px) {
    .concept_ttl, .concept_txt, .concept_txt_li {
        grid-column: span 5;
    }
}
@media (min-width: 992px) {
    .concept {
        padding: 90px 0;
    }
    .concept_ttl, .concept_txt, .concept_txt_li {
        grid-column: span 10;
    }
}
@media (min-width: 1200px) {
    .concept_ttl, .concept_txt, .concept_txt_li {
        grid-column: span 10;
    }
}
@media (min-width: 1400px) {
    .concept_ttl, .concept_txt, .concept_txt_li {
        grid-column: span 9;
    }
}

/* footer */
footer {
    background: #54B720;
    padding: 30px 0;
}
.footer_address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.footer_logo {
    max-width: 250px;
}
.footer_logo img {
    vertical-align: middle;
}
.footer_address p, .footer_address a, .footer_info a {
    font-size: 0.75rem;
    color: #fff;
}
.footer_exlink {
    margin-right: 10px;
}
.footer_exlink::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../img/clinic_btn_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 1px;
    vertical-align: middle;
  }
.footer_info {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    justify-self: start;
}
.copyr {
    font-size: 0.75rem;
    color: #fff;
    justify-self: center;
    margin-top: 15px;
}

/* pagetop-btn */
.pagetop-btn {
    position: fixed;
    width: 52px;
    height: 52px;
    border: solid 1px #54B720;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s, transform 0.3s, ease 0.3s;
}
.pagetop-btn::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #54B720;
    border-top: 2px solid #54B720;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%) rotate(45deg);
}
.pagetop-btn.visible {
    opacity: 1;
    transform: translateY(0);
}
.pagetop-btn.hidden {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

/* Responsive */
@media (min-width: 576px) {
    .footer_address {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }
    .footer_info {
        grid-column: span 2;
    }
    .copyr {
        margin-top: 0;
        justify-self: end;
        align-self: end;
    }
}
@media (min-width: 768px) {
    footer {
        padding: 40px 0;
    }
    .footer_address {
        grid-template-columns: 1fr;
        grid-column: span 5;
        justify-self: start;
    }
    .footer_address p, .footer_info a {
        font-size: 0.8rem;
    }
    .footer_address p br {
        display: none;
    }
    .footer_info {
        grid-column: span 6;
    }
    .copyr {
        font-size: 0.8rem;
        grid-column: span 6;
    }
}
@media (min-width: 992px) {
    .footer_address {
        grid-template-columns: 1fr;
        grid-column: 2 / 7;
    }
    .footer_address p br {
        display: block;
    }
    .footer_info {
        grid-template-columns: auto auto;
        grid-column: 2 / 6;
    }
    .copyr {
        grid-column: span 5;
    }
}
@media (min-width: 1200px) {
    .footer_address {
        grid-column: 2 / 7;
    }
    .footer_info {
        grid-column: 2 / 7;
        justify-self: start;
    }
    .copyr {
        grid-column: 9 / 12;
    }
}
@media (min-width: 1400px) {
    .footer_address {
        grid-template-columns: 2fr 4fr;
        grid-column: 2 / 10;
        gap: 20px;
    }
    .footer_address_clinic {
        grid-column: 2 / 3;
    }
}