@charset "utf-8";
#main {
	font-family: "Noto Sans JP", sans-serif;
}
#main .container {
	margin: auto;
	max-width: 1000px;
	width: 92%;
}
#main .green {
	color: #5FCDB4;
}
#main .caption-area p.noindent {
	text-indent: 0;
	padding-left: 0;
}

/* key visual */
#keyvisual {
    overflow: hidden;
    position: relative;
}

/* voices */
.voice-head {
    background-color: #383839;
    padding: clamp(25px, 2.5vw, 30px) 15px clamp(25px, 3.3333333333333333333vw, 40px);
    text-align: center;
    position: relative;
}
.voice-head::before {
    content: "";
    position: absolute;
    background: url(../imgs/voice-head_bg.png) no-repeat center center/100% 100%;
    max-width: 934px;
    width: 90%;
    height: calc(100% - 20px);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.voice-head > * {
    position: relative;
    z-index: 1;
}
.voice-head .ttl-en {
    letter-spacing: 0.3em;
    font-size: clamp(2.2rem, 1.5625vw, 3rem);
    line-height: 1.2;
    margin-bottom: 5px;
}
.voice-head .ttl-jp {
    font-size: clamp(1.6rem, 1.9166666666666666667vw, 2.3rem);
    line-height: 1.7;
    color: #489b88;
    margin-bottom: 5px;
    font-weight: 600;
}
.voice-head .txt {
    font-size: clamp(1.2rem, 1.3333333333333333333vw, 1.6rem);
    line-height: 1.5;
}
.voice-body {
    background: url(../imgs/voice_bg.jpg) no-repeat center bottom / cover;
    padding: clamp(15px, 3.75vw, 45px);
}
.voice-bnr-list {
    box-shadow: clamp(5px, 0.83333333333333333333vw, 10px) clamp(5px, 0.83333333333333333333vw, 10px) clamp(5px, 0.83333333333333333333vw, 10px) rgba(0, 0, 0, 0.5);
}
.voice-bnr-list .slick-slide {
    position: relative;
}
.voice-bnr-list .slick-slide::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-out;
    opacity: 0;
}
.voice-bnr-list .slick-slide:hover::before {
    opacity: .7;
}
.voice-bnr-list .slick-slide img {
    width: 100%;
}
.voice-bnr-list .slick-arrow {
    background-color: transparent;
    box-shadow: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-shadow: none;
    text-indent: -999em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.voice-bnr-list .slick-prev {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 25px solid #383839;
    border-left: 0;
    left: -50px;
}
.voice-bnr-list .slick-next {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #383839;
    border-right: 0;
    right: -50px;
}
.voice-bnr-thum {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(5px, 2.5vw, 30px);
    max-width: 960px;
    margin: clamp(5px, 2.5vw, 30px) auto;
}
.voice-bnr-thum .item {
    position: relative;
    cursor: pointer;
}
.voice-bnr-thum .item::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-out;
}
.voice-bnr-thum .item:hover:before,
.voice-bnr-thum .item.is-active::before {
    opacity: 0;
}
.voice-btn {
    position: absolute;
    width: 24.6%;
    bottom: 2.2%;
    right: 0.7%;
    display: flex;
}
@media screen and (max-width: 767px){
    .voice-head .ttl-en {
        letter-spacing: 0.2em;
    }
    .voice-bnr-list .slick-prev {
        border-top: 12.5px solid transparent;
        border-bottom: 12.5px solid transparent;
        border-right: 12.5px solid #383839;
        left: -20px;
    }
    .voice-bnr-list .slick-next {
        border-top: 12.5px solid transparent;
        border-bottom: 12.5px solid transparent;
        border-left: 12.5px solid #383839;
        right: -20px;
    }
    .voice-btn {
        bottom: 1%;
        right: 1%;
        width: 30%;
    }
}

/* modal */
.mfp-container {
  margin-right: 0!important;
}
.mfp-container {
    padding: 0!important;
}
.popup-content {
    position: relative;
    background: #FFF;
    padding: 0;
    width:calc(100% - 30px);
    max-width: 1280px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
}
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8); 
    opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-close,
.mfp-close:hover,
.mfp-close:focus,
.mfp-close:active {
    top: 20px;
    right: 20px;
    text-indent: -999em;
}
button.mfp-close,
button.mfp-arrow {
    background: url(../../common/imgs/close.svg) no-repeat center / 31px 43px;    
}
@media screen and (max-width: 767px){
    .popup-content {
        max-height: 90svh;
    }
    .mfp-close, .mfp-close:hover, .mfp-close:focus, .mfp-close:active {
        top: 5px;
        right: 5px;
    }
    button.mfp-close, button.mfp-arrow {
        background: url(../../common/imgs/close.svg) no-repeat center / 20px 27px;
        width: 30px;
        height: 30px;
    }
}

/* main */
#main {
    /* background: url(../imgs/bg_content_top.png) no-repeat center top / contain,
    url(../imgs/bg_content_btm.jpg) no-repeat center bottom / contain; */
    background-color: #F2EFEE;
    position: relative;
}
#main:before {
    background: url(../imgs/bg_content_top.png) no-repeat center bottom / cover;
    content: "";
    display: block;
    height: 500px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
#main:after {
    background: url(../imgs/bg_content_btm.png) no-repeat center bottom / cover;
    content: "";
    display: block;
    height: 500px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
@media screen and (max-width: 767px){
    #main:before, #main:after {
        height: 250px;
    }
}

/* section location */
.sec-location {
    padding-top: clamp(60px, 9.58333333vw, 120px);
}
.sec-location .block {
    position: relative;
}
.sec-location .block .info {
    color: #383839;
    position: absolute;
    left: 0;
    top: 6%;
    text-align: center;
    width: 100%;
}
.sec-location .block .ttl img {
    width: clamp(268px, 44.6666667vw, 536px);
}
.sec-location .block .txt {
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 25px;
    text-align: center;
}
.sec-introduce .block a { display: block; }
/* section introduce */
.sec-introduce .ttl {
    padding: clamp(30px, 5vw, 60px);
    text-align: center;
}
.sec-introduce .ttl img {
    width: clamp(200px, 25vw, 300px);
}
.sec-introduce .block {
    padding-bottom: clamp(40px, 6.66666667vw, 80px);
    position: relative;
}
.sec-introduce .block:after {
    background-color: #383839;
    content: "";
    display: block;
    height: clamp(15px, 2.5vw, 30px);
    width: 1px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(12.5px, 2.08333333vw, 25px);
}
.map-list { position: relative;}
.map-list .open-map {
    position: absolute;
    height: 10%;
    bottom: 8.3%;
}
.map-list .open-map01 {
    width: 21%;
    right: 23%;
}
.map-list .open-map02 {
    width: 17.2%;
    right: 5%;
}
@media screen and (max-width: 767px){
    .map-list .open-map {
        position: absolute;
        height: 8%;
        bottom: 10.2%;
    }
    .map-list .open-map01 {
        width: 42.8%;
        right: 47%;
    }
    .map-list .open-map02 {
        width: 35%;
        right: 10%;
    }
}
/* modal */
.modal-close {
	border: none;
	background: none;
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 10px;
	padding: 0;
	width: 30px;
    height: 25px;
}
.modal-close span {
	color: #424245 !important;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1.2rem;
	height: auto !important;
	transform: translateY(120%);
	width: 100% !important;
	clip: unset;
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}
.modal-close::before,
.modal-close::after {
	background: #424245;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	height: 1px;
	transform: rotate(-45deg);
	width: 100%;
}
.modal-close::after { transform: rotate(45deg);}
.md-content {
	background: #fff;
	position: relative;
	max-height: 100vh;
	padding: 80px 0 50px;
	width: 670px;
	max-width: 92%;
	max-height: 80%;
}
.md-inner {
	width: 100%;
	overflow-y: auto;
	height: 100%;
}
.md-wrap {
	max-width: 705px;
	padding: 0 15px;
	margin: auto;
}
.md-hidden {
	background-color: rgba(0, 0, 0, 0.7);
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	height: 100%;
	opacity: 0;
	transition: all 0.5s ease;
	width: 100%;
    z-index: 10000;
}
.md-hidden > div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}
.md-hidden.active {
	visibility: visible;
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.md-content { padding: 70px 0 60px;}
}