@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------*/
/*共通*/
section#pagetitle .titlebg {
    background: url("../image/gallery/pagetitle.webp") 0 center / cover no-repeat;
}
:root {
    --contentswidth: 1200px;
}
/*-----------------------------------------------------------*/
/*絞り込み*/ :root {
    --nature: #05b085;
    --experience: #f28900;
    --history: #ad6f29;
    --eat: #eb6d80;
    --stay: #9370d0;
    --spa: #b8a305;
    --facility: #056ea3;
    --cycle: #ff7dcf;
}
#gallery-option .inner {
    max-width: var(--contentswidth);
    padding: 0 10px;
    margin: 70px auto 0;
}
#gallery-option .inner .features {
    background-color: #ebeae1;
    border-radius: 15px;
    padding: 30px 50px;
    display: flex;
    justify-content: center;
    gap: 0 50px;
    align-items: stretch;
}
#gallery-option .inner .features h3.hd {
    font-size: 1.250em; /*20*/
    font-weight: 700;
    color: #00595c;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 12px;
}
#gallery-option .inner .features h3.hd.category::before {
    content: '';
    background: url("../image/common/features01.svg") 0 center / contain no-repeat;
    width: 33px;
    height: auto;
    aspect-ratio: 1 / 1;
}
#gallery-option .inner .features h3.hd.city::before {
    content: '';
    background: url("../image/common/features02.svg") 0 center / contain no-repeat;
    width: 23px;
    height: auto;
    aspect-ratio: 23 / 34;
}
#gallery-option .inner .features h3.hd.download::before {
    content: '';
    background: url("../image/common/features05.svg") 0 center / contain no-repeat;
    width: 34px;
    height: auto;
    aspect-ratio: 35 / 30;
}
#gallery-option .areas {
    width: 32.8%; /*400*/
    display: flex;
    flex-direction: column;
}
#gallery-option .inner .features .wrap {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px 25px;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}
#gallery-option .inner .features .wrap::before {
    content: '';
    background: url("../image/common/features03.webp") 0 center / contain no-repeat;
    width: 22px;
    height: auto;
    aspect-ratio: 22 / 16;
    position: absolute;
    top: 2px;
    bottom: 0;
    margin: auto;
    right: 45px;
    pointer-events: none;
}
#gallery-option .inner .features .wrap select {
    border: 1px solid #333;
    border-radius: 5px;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 1.063em; /*17*/
    padding: 0 20px;
}
/*-----------------------------------------------------------*/
/*一覧*/
#galleries {
    padding: 0 0 195px;
}
#galleries .listInner {
    max-width: var(--contentswidth);
    padding: 0 10px;
    margin: 65px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}
#galleries.tax {
    margin: 65px auto 120px;
}
#galleries .listInner::before {
    content: none;
}
/* .loadBtn が存在するときだけ表示 */
#galleries:has(.loadBtn a#loadMoreGallery) .listInner::before {
    content: '';
    display: block;
    width: 100%;
    height: auto;
    /*aspect-ratio: 1200 / 265;*/
    aspect-ratio: 1200 / 200;
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
#galleries .listInner > p.nophoto {
    width: 100%;
    text-align: center;
}
#galleries .listInner a.gallery-item {
    position: relative;
    display: block;
    width: calc((100% - (12px * 3)) / 4);
    height: 435px;
    overflow: hidden;
}
#galleries .listInner a.gallery-item .inn {
    position: relative;
    width: 100%;
    height: 100%;
}
#galleries .listInner a.gallery-item .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#galleries .listInner a.gallery-item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}
#galleries .listInner a.gallery-item:hover .image img {
    transform: scale(1.1);
    filter: blur(5px);
}
#galleries .listInner a.gallery-item dl, #galleries .listInner a.gallery-item .subtxt {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    color: #fff;
	text-shadow: 3px 3px 2px gray;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
#galleries .listInner a.gallery-item dl {
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
#galleries .listInner a.gallery-item dl dt {
    width: 90%;
    font-size: 1.375em; /*22*/
    text-align: center;
}
#galleries .listInner a.gallery-item dl dd {
    font-size: 0.938em; /*15*/
    letter-spacing: 0.1em;
}
#galleries .listInner a.gallery-item .subtxt {
    max-width: 100px;
    bottom: 75px;
    border-bottom: 1px solid #fff;
}
#galleries .listInner a.gallery-item .subtxt p {
    font-size: 0.938em; /*15*/
    letter-spacing: 0.1em;
    padding-bottom: 7px;
}
#galleries .listInner a.gallery-item:hover dl, #galleries .listInner a.gallery-item:hover .subtxt {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0s linear 0s;
}
#galleries .listInner a.gallery-item:hover {
    opacity: 1.0;
}
#galleries .loadBtn {
    width: 100%;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    gap: 0 15px;
}
#galleries .loadBtn > a {
    width: 400px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #00595c;
    border-radius: 7px;
    box-sizing: border-box;
    color: #00595c;
    font-weight: 700;
    background-color: #fff;
    position: relative;
}
#galleries .loadBtn > a::before {
    content: '';
    background: url("../image/common/pager02.svg") 0 center / contain no-repeat;
    width: 35px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 18px;
    transform: rotate(90deg);
}
#galleries .loadBtn > a.tolist::before {
    right: auto;
    left: 18px;
    transform: rotate(180deg);
}
#galleries .loadBtn > a:hover {
    opacity: 1.0;
    background-color: #ff7c3b;
    color: #fff;
}
#galleries .loadBtn > a:hover::before {
    background: url("../image/common/pager03.svg") 0 center / contain no-repeat;
}
/*モーダル*/
#galleries .modalWindow {
    display: none;
}
.modaal-wrapper .modaal-container {
    max-width: 1000px;
    border-radius: 15px;
}
.modaal-wrapper .modaal-content-container {
    padding: 40px 50px;
}
.modaal-wrapper .modaal-close:after, .modaal-wrapper .modaal-close:before {
    background: #ccc;
}
.modaal-wrapper .modaal-close:focus:after, .modaal-wrapper .modaal-close:focus:before, .modaal-wrapper .modaal-close:hover:after, .modaal-wrapper .modaal-close:hover:before {
    background: #666;
}
.modaal-wrapper .modaal-close {
    position: absolute;
    right: -25px;
    top: -25px;
    background: #fff !important;
    border-radius: 50%;
    border: 1px solid #00595c !important;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modaal-wrapper .modaal-close:after, .modaal-wrapper .modaal-close:before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 35px;
    border-radius: 4px;
    background: #00595c;
}
.modaal-wrapper .image {
    width: 100%;
}
.modaal-wrapper .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 600;
    object-fit: cover;
}
.modaal-wrapper h3.title {
    margin: 35px auto 0;
    font-size: 1.500em; /*24*/
    font-weight: 700;
    color: #00595c;
    text-align: center;
    padding-bottom: 25px;
    position: relative;
}
.modaal-wrapper h3.title::before {
    content: '';
    width: 180px;
    height: 1px;
    background-color: #00595c;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.modaal-wrapper .city {
    margin: 25px auto 0;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}
.modaal-wrapper .categories {
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
}
.modaal-wrapper .categories a.cat {
    min-width: 170px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875em; /*14*/
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 100%;
    border-radius: 20px;
}
.modaal-wrapper .categories a.nature {
    background-color: var(--nature);
}
.modaal-wrapper .categories a.experience {
    background-color: var(--experience);
}
.modaal-wrapper .categories a.history {
    background-color: var(--history);
}
.modaal-wrapper .categories a.eat {
    background-color: var(--eat);
}
.modaal-wrapper .categories a.stay {
    background-color: var(--stay);
}
.modaal-wrapper .categories a.spa: {
    background-color: var(--spa);
}
.modaal-wrapper .categories a.facility {
    background-color: var(--facility);
}
.modaal-wrapper .categories a.cycle {
    background-color: var(--cycle);
}
.modaal-wrapper .downloadBtn {
    margin: 25px auto 0;
    width: 500px;
    height: 70px;
}
.modaal-wrapper .downloadBtn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.125em; /*18*/
    font-weight: 700;
    position: relative;
}
.modaal-wrapper .downloadBtn a.on {
    background-color: #06aed0;
    border-radius: 5px;
    color: #fff;
    padding-left: 30px;
}
.modaal-wrapper .downloadBtn a.on::before {
    content: '';
    background: url("../image/common/icondl04.svg") 0 center / contain no-repeat;
    width: 27px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 30px;
}
.modaal-wrapper .downloadBtn a.off {
    border: 1px solid #b4b4b4;
    box-sizing: border-box;
    background-color: #f5f3f2;
    border-radius: 35px;
    color: #333;
    justify-content: center;
    pointer-events: none;
}
/*-----------------------------------------------------------*/ :root {
    --pageBluebg: #0071b4;
    --pageYellowbg: #F4E621;
    --pageBlackbg: #000;
}
html.pageBlue #gallery-option .inner .features, html.pageYellow #gallery-option .inner .features, html.pageBlack #gallery-option .inner .features {
    background-color: unset;
}
html.pageBlue #gallery-option .inner .features .wrap, html.pageYellow #gallery-option .inner .features .wrap, html.pageBlack #gallery-option .inner .features .wrap {
    background-color: unset;
}
html.pageBlue #gallery-option .inner .features .wrap select option {
    background-color: var(--pageBluebg);
}
html.pageYellow #gallery-option .inner .features .wrap select option {
    background-color: var(--pageYellowbg);
}
html.pageBlack #gallery-option .inner .features .wrap select option {
    background-color: var(--pageBlackbg);
}
html.pageBlue #galleries:not(.tax) .listInner::before, html.pageYellow #galleries:not(.tax) .listInner::before, html.pageBlack #galleries:not(.tax) .listInner::before {
    background: unset;
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/