@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:767px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Parts
 * Modal
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
-------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}

:root {
    --common-min-width: 1200px;
    --common-min-height: 620px;

    /* メインで使用するサイズやカラー */
    --main-font-size: 16px;
    --main-font-family: 'Noto Serif JP', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;

	/* vw min 計算 => min(calc(数値 / var(--vw-min) * 100vw), 数値); */
	--vw-min: 1200;
}
@media screen and (max-width:767px){
	:root {
		--common-min-width: 100%;
		--common-min-height: auto;
		--main-font-size: 3.2vw;

		/* vw min 計算 => min(calc(数値 / var(--vw-min) * 100vw), 数値); */
		--vw-min: 750;

		/* 横幅1088px */
		--common-in-width: 100%;
	}
}


/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #000;
	font-family: var(--main-font-family);
	font-size: var(--main-font-size);
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
    background: #B7D4F9;
    color: #000;
}
::-moz-selection{
    background: #B7D4F9;
    color: #000;
}
@media screen and (max-width:767px){
    .sp{ display: block; }
    .pc{ display: none; }
    .ah:hover { opacity: 1; }
}

/**
 * scroll bar
 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #000;
    margin: 2px;
    box-shadow: none;
}

/**
 * font
 */
.font-garamond {
	font-family: 'Cormorant Garamond', serif;
}


/**
 * Wrap
 * 大枠のwrap指定
 */
/* fullWrap */
#fullWrap {
    width: 100%;
    height: 100vh;
	position: relative;
	z-index: 1;
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
 .modalBox{
    -webkit-overflow-scrolling: touch;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background: rgba(37,59,94,.85);
    background: linear-gradient(0deg, rgba(58,177,160,.85) 0%, rgba(37,59,94,.85) 100%);
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.oneModal{
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* oneModalIn */
.oneModalIn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
.oneModalIn__cont{
    padding: 50px 0;
}
@media screen and (max-width:767px){
    .oneModalIn{
        min-width: 100%;
    }
    .oneModalIn__cont{
        width: 100%;
    }
}

/**
 * closeBtn
 */
.closeBtn{
	width: min(calc(152 / var(--vw-min) * 100vw), 152px);
	height: min(calc(44 / var(--vw-min) * 100vw), 44px);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
@media screen and (max-width:767px){
	.closeBtn{
		width: calc(220 / var(--vw-min) * 100vw);
		height: calc(63 / var(--vw-min) * 100vw);
	}
}

.closeBtn a {
	background: url(../img/common/icon/icon_close.svg) no-repeat center / contain;
	display: block;
    width: 100%;
    height: 100%;
}

/**
 * iframe
 */
/* common */
.commonIframe{
    width: 100%;
    height: 100%;
    display: block;
}

/* youtube */
.youtubeIframeWrap {
    width: 70%;
    max-width: 159.993vh;
    position: relative;
}
@media screen and (max-width:767px){
    .youtubeIframeWrap {
        width: 100%;
        max-width: 100%;
        margin: 50px 0;
    }
}
.youtubeIframeWrap:before{
    content: "";
    display: block;
    padding-top: 56.25%;
    z-index: 0;
}
.youtubeIframe{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/**
 * imgModal
 */
.imgModal__imgWrap {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: min(2.5vw,30px) 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.imgModal__imgWrap img {
    height: 100%;
    object-fit: contain;
    pointer-events: auto
}

@media screen and (max-width: 767px) {
    .imgModal__imgWrap {
        padding:24px
    }

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

/**
 * galleryImgModal
 */
 .galleryImgModal__cont {
    position: relative;
}
.galleryImgModal__imgWrap {
    width: 800px;
    opacity: 0;
    position: relative;
    z-index: 1;
    transition: opacity .3s ease;
}
.galleryImgModal__imgWrap.is-active {
    opacity: 1;
}
@media screen and (max-width:767px){
    .galleryImgModal__imgWrap {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
}

/* img */
.galleryImgModal__imgWrap img {
    width: 100%;
}

/**
 * galleryLists__pagerWrap
 */
.galleryLists__pagerWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}
@media screen and (max-width:767px){
    .galleryLists__pagerWrap {
        width: 100%;
        height: 40px;
    }
}

/* pager */
.galleryLists__pager {
    width: 60px;
    height: 60px;
    pointer-events: auto;
}
@media screen and (max-width:767px){
    .galleryLists__pager {
        width: 40px;
        height: 40px;
        pointer-events: auto;
    }
}

/* prev, next */
.galleryLists__pager.is-prev {
    margin-left: -60px;
}
.galleryLists__pager.is-next {
    margin-right: -60px;
}
@media screen and (max-width:767px){
    .galleryLists__pager.is-prev {
        margin-left: 0;
    }
    .galleryLists__pager.is-next {
        margin-right: 0;
    }
}

/* a */
.galleryLists__pager > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* arrow */
.galleryLists__pager > a:before {
    content: "";
    background-color: rgb(var(--main-color-red));
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    width: 32px;
    height: 58px;
    transition: transform .3s ease;
}
@media screen and (max-width:767px){
    .galleryLists__pager > a:before {
        width: 18px;
        height: 38px;
    }
}

/* hover */
.galleryLists__pager.is-prev > a:hover:before {
    transform: translateX(-10px);
}
.galleryLists__pager.is-next > a:hover:before {
    transform: translateX(10px);
}
@media screen and (max-width:767px){
    .galleryLists__pager.is-prev > a:hover:before {
        transform: translateX(0);
    }
    .galleryLists__pager.is-next > a:hover:before {
        transform: translateX(0);
    }
}

.galleryLists__pager.is-prev > a:before {
    -webkit-mask-image: url(../img/common/arrow_prev.svg);
    mask-image: url(../img/common/arrow_prev.svg);
}
.galleryLists__pager.is-next > a:before {
    -webkit-mask-image: url(../img/common/arrow_next.svg);
    mask-image: url(../img/common/arrow_next.svg);
}

.galleryImgModalContents {
    opacity: 0;
    transition: opacity .3s ease;
}
.galleryImgModalContents.is-active {
    opacity: 1;
}
