@charset "UTF-8";
body {
    position: relative;
    min-width: 320px;
}
:root {
    font-family: "Cormorant Garamond", serif;
    font-size: 62.5%;
}
.w-state--s {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: auto;
}
.fontstyle {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.s-ttl {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    letter-spacing: 0.3rem;
}
.s-ttl::after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #3074ac;
    margin: 15px auto;
    /* position: absolute; */
}
.s-ttl-jp {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
    letter-spacing: 0.1rem;
}
@media screen and (min-width: 414px) {
    .s-ttl {
        font-size: 3.2rem;
    }
}
li {
    cursor: pointer;
}
a {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    cursor: pointer;
}
a:hover {
    opacity: 0.7;
}

/* opening ------------------------------------*/
#pageLoadCover {
    width: 100%;
    height: 100%;
    display: block;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 99999;
    transition: opacity 600ms cubic-bezier(0.37, 0, 0.63, 1) 200ms;
}

.completed #pageLoadCover {
    opacity: 0;
    pointer-events: none;
}

.fadein {
    opacity: 0;
    transition: opacity 2s ease;
}
.pc_br {
    display: none;
}
@media screen and (min-width: 900px) {
    .pc_br {
        display: block;
    }
}

/* ヘッダー */
.gh {
    position: fixed;
    z-index: 99999;
    width: 100%;
    /* height: 100%; */
}

.gh .gh_wrap {
    width: calc(100% - 40px);
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gh_wrap .gh_rogo .gh_rogo-wrap {
    width: 105px;
}

.gh_wrap .gh_rogo .gh_rogo-wrap img {
    width: 100%;
}

.gh_wrap .gh_rogo .gh_rogo-wrap a:nth-of-type(2) {
    display: none;
}

.gh_wrap .gh_menu {
    display: flex;
    align-items: center;
}

.gh_wrap .gh_menu .gh_contact .gh_contact-wrap {
    display: flex;
    align-items: center;
    width: 120px;
    margin-right: 20px;
}

.gh_wrap .gh_menu .gh_contact .gh_contact-wrap .gh_contact-img {
    flex-basis: 30px;
}

.gh_wrap .gh_menu .gh_contact .gh_contact-wrap .gh_contact-img img {
    width: 100%;
}
.gh_wrap .gh_menu .gh_contact .gh_contact-wrap .gh_contact-img:nth-of-type(2) {
    display: none;
}
.gh_wrap .gh_menu .gh_contact .gh_contact-wrap p {
    font-size: 1.6rem;
    color: #fff;
    margin-left: 10px;
}
.gh_wrap .gh_menu .menu-button {
    position: relative;
    width: 40px;
    height: 25px;
    z-index: 99999;
    cursor: pointer;
}

.gh_wrap .gh_menu .menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    background-color: #fff;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.gh_wrap .gh_menu .menu-button span:nth-of-type(2) {
    top: 10px;
}

.gh_wrap .gh_menu .menu-button span:nth-of-type(3) {
    top: 20px;
}

/* ナビゲーション */

.gh .gh_nav {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 20px 0 0 20px;
    z-index: 99998;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.gh_nav-head .gh_nav-logo-img {
    width: 105px;
    margin-bottom: 50px;
    margin-top: 2px;
}
.gh_nav-head .gh_nav-logo-img img {
    width: 100%;
}
.gh_nav-inner {
    margin-left: 30px;
}
.gh_nav-inner .gh_nav-list li {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: bold;
}
.gh_nav-inner .gh_nav-list li:last-of-type {
    margin-bottom: 0;
}
.gh_nav-inner .gh_nav-list li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 1px;
    background-color: #000;
    margin: 0 5px 5px 0;
}
.gh_nav-contact {
    margin: 50px 0;
    margin-left: 30px;
    width: 170px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.gh_nav-contact:hover {
    opacity: 0.5;
    filter: brightness(2);
    -webkit-filter: brightness(2);
}
.gh_nav-contact .gh_nav-contact-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    border: 1px solid #000;
}
.gh_nav-contact .gh_nav-contact-img {
    width: 25px;
}
.gh_nav-contact .gh_nav-contact-img img {
    width: 100%;
}
.gh_nav-contact .contact-btn-txt {
    font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
    .gh .gh_nav {
        width: 500px;
    }
    .gh_nav-inner {
        margin: 0;
    }
    .gh_nav-contact {
        margin-left: 0;
    }
}
/* ナビゲーション開いた時 */
.open-menu .gh_nav {
    opacity: 1;
    visibility: visible;
}
.open-menu .gh_wrap .gh_menu .menu-button span {
    background-color: #3074ac;
    top: 15px;
}
.open-menu .gh_wrap .gh_menu .menu-button span:nth-of-type(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.open-menu .gh_wrap .gh_menu .menu-button span:nth-of-type(2) {
    display: none;
}
.open-menu .gh_wrap .gh_menu .menu-button span:nth-of-type(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

/* スクロールトップ */
.scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: none;
    cursor: pointer;
}
.scroll-top .scroll-top-arrow {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #3074ac;
}
.scroll-top .scroll-top-arrow::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 30%;
    left: 45%;
    transform: rotate(-45deg) translate(-50%);
}
@media screen and (min-width: 768px) {
    .scroll-top {
        right: 80px;
        bottom: 80px;
    }
}

/* キービジュアル */
.kv {
    width: 100%;
    height: 60vh;
    min-height: 420px;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}
.kv_cotent-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}
/* KV スライダー */
.kv_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.kv_slider-track {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    width: max-content;
    animation: kv-slide 60s linear infinite;
    will-change: transform;
}
.kv_slider:hover .kv_slider-track {
    animation-play-state: paused;
}
.kv_slide {
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}
.kv_slide img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
}
@keyframes kv-slide {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
.kv_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.kv_container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.kv_logo {
}
.kv_logo .kv_logo-img {
    width: 100px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.kv_logo .kv_logo-img img {
    width: 100%;
}
.kv_copy .kv_copy-img {
    width: 50px;
    position: absolute;
    top: 15%;
    right: 5%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}
.kv_copy .kv_copy-img img {
    width: 100%;
}

@media screen and (min-width: 900px) {
    .kv_slider-track {
        gap: 24px;
        animation-duration: 70s;
    }
}
@media (prefers-reduced-motion: reduce) {
    .kv_slider-track {
        animation: none;
    }
}
/* スクロールダウン */
.scrolldown {
    position: absolute;
    left: 50px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scrolldown p {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: lighter;
    font-size: 1.6rem;
    color: white;
}
.arrow {
    width: 1px;
    height: 50px;
    margin: 25px auto 0;
    background-color: gray;
    position: relative;
    overflow: hidden;
}
.arrow::before {
    content: "";
    width: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    -webkit-animation: arrow 2.5s ease 0s infinite normal;
    animation: arrow 1.7s ease 0s infinite normal;
}
@-webkit-keyframes arrow {
    0% {
        height: 0;
    }
    45% {
        height: 100%;
    }
    55% {
        height: 100%;
        top: 0;
    }
    100% {
        height: 0;
        top: 100%;
    }
}
@keyframes arrow {
    0% {
        height: 0;
    }
    45% {
        height: 100%;
    }
    55% {
        height: 100%;
        top: 0;
    }
    100% {
        height: 0;
        top: 100%;
    }
}

/* キャッチコピー */
.catchcopy {
    padding: 100px 0 100px;
}
.catchcopy_wrap {
    text-align: center;
}
.catchcopy_wrap .catchcopy_img {
    width: 15px;
    margin: auto;
    margin-bottom: 30px;
}
.catchcopy_wrap .catchcopy_img img {
    width: 100%;
}
.catchcopy_wrap .catchcopy_txt-wrap .catchcopy_txt {
    font-size: 1.3rem;
    line-height: 2;
    font-weight: 600;
    letter-spacing: 1px;
}

@media screen and (min-width: 414px) {
    .catchcopy_wrap .catchcopy_txt-wrap .catchcopy_txt {
        font-size: 1.6rem;
        line-height: 2;
        font-weight: 600;
    }
}
@media screen and (min-width: 900px) {
    .catchcopy {
        /* padding: 150px 0; */
    }
}

/* shop_banner */

.shop {
    padding: 150px 0 0 0;
    text-align: center;
}

.sp_shop_wrap {
    display: none;
}

/* @media screen and (max-width:900px) {
	.shop {
		text-align: center;
		padding: 100px 0 0 0;
	}
	.shop_wrap {
		width: ;
	}
	.sp_shop_wrap {
		display: none;
	} 
	
	
}  */

@media screen and (max-width: 900px) {
    .shop {
        padding: 100px 0 0 0;
    }
    .shop_wrap {
        display: none;
    }
    .sp_shop_wrap img {
        width: calc(100% - 40px);
    }
    .sp_shop_wrap {
        text-align: center;
        display: block;
    }
}

@media screen and (max-width: 414px) {
    .shop {
        padding: 100px 0 0 0;
    }
    .shop_wrap {
        display: none;
    }
    .sp_shop_wrap img {
        width: calc(100% - 40px);
    }
    .sp_shop_wrap {
        text-align: center;
        display: block;
    }
}

/* news */
.news {
    padding: 100px 0;
}
.news_body-item {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.news_body-item dt {
    margin-bottom: 10px;
}
@media screen and (min-width: 900px) {
    .news {
        padding: 150px 0;
    }
    .news_body-item {
        display: flex;
        justify-content: center;
    }
    .news_body-item dt {
        margin-bottom: 0px;
        margin-right: 20px;
    }
}

/* ギャラリー */
.gallery {
    background-color: #f0f0f0;
    padding: 100px 0;
}
.gallery_head {
}
.gallery_head .gallery_head-ttl {
}
.gallery_body .gallery_body-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery_body-item {
    flex-basis: 46%;
    margin-bottom: 8%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    cursor: pointer;
}
.gallery_body-item:last-of-type {
    margin-bottom: 0;
}
.gallery_body-item:nth-last-of-type(2) {
    margin-bottom: 0;
}
.gallery_body-item .gallery_img {
}
.gallery_body-item .gallery_img img {
    width: 100%;
}
@media screen and (min-width: 900px) {
    .gallery {
        padding: 150px 0;
    }
    .gallery_body-item {
        flex-basis: 30%;
        margin-bottom: 5%;
    }
    .gallery_body-item:nth-last-of-type(3) {
        margin-bottom: 0;
    }
    .gallery_body-wrap::after {
        content: "";
        display: inline-block;
        width: 30%;
    }
}

/* モダール */
.modal_gallery {
}
.modal_gallery-wrap {
}

.modal_gallery-item {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    display: flex;
}
.modal_gallery-bk {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: -9999;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.modal_gallery-item .modal_item-wrap {
    width: 100%;
    max-width: 900px;
    margin: auto;
    height: 100%;
    max-height: 650px;
    padding: 50px 0 140px;
    background-color: rgba(255, 255, 255, 1);
    position: relative;
}

.modal_item-head {
    /* display: flex;
	justify-content: space-between;
	width: 100%; */
}
.modal_item-head .modal_item-ttl {
    font-size: 1.2rem;
}
.modal_item-head .modal_close-btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: rgb(48, 116, 172);
    cursor: pointer;
}
.modal_item-head .modal_close-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    z-index: 99999;
}
.modal_item-head .modal_close-btn span:nth-of-type(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.modal_item-head .modal_close-btn span:nth-of-type(2) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.modal_item-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    width: calc(100% - 60px);
    max-width: 900px;
    margin: auto;
    overflow-y: scroll;
}
.modal_item-body .modal-item_container {
}
.modal_item-body .modal-img-wrap .modal_item-img:first-of-type {
    margin-bottom: 50px;
}
.modal_item-body .modal_item-img {
    display: flex;
    align-items: flex-start;
}

.zubaba .modal_item-body .modal_item-img {
    display: block;
}

.modal_item-body .modal_item-img.modal_item-img-row {
    align-items: center;
}
.modal_item-body .modal_item-img.modal_item-img-column {
    width: 150px;
    margin: auto;
}
.modal_item-body .modal_item-img img {
    width: 100%;
}
.modal_item-body .modal_item-txt {
    width: 100%;
}
.modal_item-txt .modal_item-txt-wrap {
    margin-top: 30px;
    text-align: center;
}
.yamakasa .modal_item-txt .modal_item-txt-wrap {
    text-align: left;
}
.modal_item-txt .modal_item-txt-wrap h1 {
    text-align: center;
    font-size: 2rem;
    margin: 50px 0;
}
.modal_item-txt .modal_item-txt-wrap p {
    line-height: 1.7;
}
.modal_item-txt .modal_item-txt-wrap > p {
    font-size: 1.3rem;
}
.modal_item-txt .modal_item-txt-wrap > p a {
    text-decoration: underline;
}
.modal_item-txt .modal_item-txt-wrap .modal-link {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    margin-top: 5px;
}
.modal_item-txt .modal_item-txt-wrap .modal-link .site-link a {
    border-bottom: 1px solid #000;
}
.modal_item-txt .modal_item-txt-wrap .modal-link .sns-link {
    margin-top: 20px;
}
.modal_item-txt .modal_item-txt-wrap .modal-link img {
    width: 30px;
    border-bottom: none;
}
.modal_item-txt .modal_item-txt-wrap .modal-link .modal-sns {
    margin-left: 10px;
}
.modal_shop-ttl {
    font-size: 2rem;
    text-align: center;
    margin-top: 4.5rem;
}
.modal_shop-reel {
    font-size: 1.6rem;
    text-align: left;
    margin: 3rem 0;
}

video {
    width: 100%;
}

.modal_noren_item {
    max-width: 400px;
    margin: 30px auto;
}

.modal_noren_item img {
    width: 100%;
}

/* キャプションがある場合 */

.modal_gallery-item .modal_item-wrap .sp_scrolldown {
    display: none;
}
@media screen and (max-width: 768px) {
    .modal_gallery-item .modal_item-wrap .sp_scrolldown {
        display: block;
    }
}
@media screen and (max-width: 414px) {
    .modal_gallery-item .modal_item-wrap .sp_scrolldown {
        display: block;
    }
}
.modal_gallery-item .modal_item-wrap .scrolldown {
    bottom: 0px;
    left: initial;
    right: 10px;
    color: #000;
}
.modal_gallery-item .modal_item-wrap .scrolldown p {
    color: #000;
}
.modal_gallery-item .modal_item-wrap .scrolldown .arrow {
    background-color: #fff;
}
.modal_gallery-item .modal_item-wrap .scrolldown .arrow::before {
    background-color: #000;
}
.modal_item-body.gallery-caption {
    overflow: scroll;
    display: block;
}
.modal-item_container {
    height: 100%;
    display: flex;
    justify-content: center;
    overflow: scroll;
}

.modal-item_container-column {
    flex-direction: column;
    justify-content: flex-start;
}
.modal-item_container-column .modal_item-img {
    display: block;
    margin-bottom: 50px;
}
.modal-item_container-column .modal_item-img:only-of-type {
    margin-bottom: auto;
}
.modal_item-body.gallery-caption .modal_item-img {
    overflow-y: visible;
    /* margin-bottom: 50px; */
}
.modal_item-body.gallery-caption .modal_item-txt {
    position: relative;
}

.modal_item-body.gallery-caption .modal_item-txt .modal_item-txt-wrap h1 {
    /* margin-bottom: 50px; */
}
.modal_caption-img {
    width: 170px;
    margin: auto;
}
.modal_caption-img img {
    width: 100%;
}
.modal_caption-txt-head {
    text-align: center;
}
.modal_caption-txt-head h2 {
    font-size: 1.999rem;
    margin-bottom: 30px;
}
.modal_caption-txt-head .caption-txt-head-wrap p:first-of-type {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    line-height: 1;
}
.modal_caption-txt-head .caption-txt-head-wrap p:nth-of-type(2) {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1;
}
.modal_caption-txt-body p {
    font-size: 1.414rem;
}

.modal_history {
    margin-top: 30px;
}
.modal_history .modal_history-item {
    border-top: 1px solid #b3b3b3;
    padding: 15px 0;
    font-size: 1.3rem;
    line-height: 1.5;
}
.modal_history .modal_history-item:last-of-type {
    border-bottom: 1px solid #b3b3b3;
}
.modal_history .history-item-dt {
}
.modal_history .history-item-dd {
    margin-top: 5px;
}
.modal_history .history-item-dd span {
    display: block;
}
.modal_career {
    margin-top: 30px;
    font-size: 1.3rem;
}
.modal_career h2 {
    margin-bottom: 10px;
}
/* .modal_career p {
	position: relative;
	padding-left: 12px;
}
.modal_career p::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	background-color: rgb(48, 116, 172);
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: .5em;
} */
.modal_career p:first-of-type {
    margin-bottom: 5px;
}
@media screen and (min-width: 414px) {
    .modal_item-head .modal_close-btn {
        /* bottom: 80px; */
    }
}
@media screen and (min-width: 768px) {
    .modal_gallery-item .modal_item-wrap {
        /* padding: 0 100px 0 30px; */
        max-height: 700px;
        padding-bottom: 40px;
    }
    .modal_item-body {
        /* flex-direction: row; */
        justify-content: space-between;
        width: calc(100% - 300px);
    }
    .modal_item-head .modal_close-btn {
        top: 50px;
        right: 50px;
        left: initial;
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
    }
    .modal-item_container {
        justify-content: center;
    }
    .modal-item_container.modal-item_container-column {
        flex-direction: column;
        justify-content: flex-start;
    }
    .modal-img-wrap {
        display: flex;
    }
    .modal_item-body .modal-img-wrap .modal_item-img:first-of-type {
        margin: 0px;
        width: initial;
        margin-right: 60px;
    }
    .modal_gallery-item .modal_item-body .modal-img-wrap .modal_item-img:nth-of-type(2) {
        margin: 0px;
    }
    .modal_gallery-item .modal_item-body .modal_item-img {
        margin: auto;
        flex-basis: initial;
        max-width: 400px;
    }
    .modal_gallery-item .modal_item-body .modal-item_container-column .modal_item-img {
        display: block;
        margin-bottom: 50px;
    }
    .modal_gallery-item .modal_item-body .modal-item_container-column .modal_item-img:only-of-type {
        margin-bottom: auto;
    }
    .modal_gallery-item.gallery-gif .modal_item-body .modal_item-img {
        margin: auto 0;
    }
    .modal_gallery-item .modal_item-body .modal_item-img.modal_item-img-row {
        align-items: center;
        max-width: 100%;
    }
    .modal_item-txt .modal_item-txt-wrap h1 {
        margin-top: 30px;
    }
    .modal_item-txt .modal_item-txt-wrap > p {
        font-size: 1.6rem;
    }
    .modal_item-txt .modal_item-txt-wrap .modal-link {
        font-size: 1.6rem;
    }
    .modal_shop-reel {
        text-align: center;
    }
}
@media screen and (min-width: 900px) {
    .modal_item-txt .modal_item-txt-wrap h1 {
        font-size: 2.4rem;
    }
    .modal_caption-wrap {
        display: flex;
        justify-content: space-between;
    }
    .modal_caption-txt-head {
        text-align: left;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 20px;
    }
    .modal_caption-img {
        /* width: 200px; */
        margin: 0;
        align-self: center;
    }
    .modal_caption-txt-head h2 {
        margin-bottom: 0px;
        font-size: 2.2rem;
    }
    .modal_caption-txt-head .caption-txt-head-wrap {
        margin-left: 30px;
    }
    .modal_caption-txt-head .caption-txt-head-wrap p:first-of-type {
        margin: 0;
        margin-bottom: 10px;
    }
    .modal_caption-txt-head .caption-txt-head-wrap p:nth-of-type(2) {
        margin-bottom: 0;
    }
    .modal_history .modal_history-item {
        display: flex;
        padding: 15px;
    }
    .modal_history .history-item-dt {
        flex-basis: 15%;
    }
    .modal_history .history-item-dd {
        margin-top: 0;
        flex-basis: 85%;
    }
}
@media screen and (min-width: 1300px) {
    .modal_gallery-item .modal_item-wrap .scrolldown {
        /* display: none; */
    }
}

/* 注文の流れ */
.order {
    padding: 100px 0;
}
.order_head .order_head-ttl {
}
.order_body .order_body-wrap {
    width: 200px;
    margin: auto;
}
.order_body-item {
    text-align: center;
    margin-bottom: 80px;
}
.order_body-item:last-of-type {
    margin-bottom: 0;
}
.order_head {
    text-align: center;
}
.order_body-item .body-item-ttl {
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.order_body-item .body-item-inner {
    border: 1px solid #000;
    padding: 30px 0;
    position: relative;
}
.order_body-item:nth-of-type(1) .body-item-inner::after,
.order_body-item:nth-of-type(2) .body-item-inner::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 30px;
    background-image: url(../images/global/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -55px;
    margin: auto;
}
.order_body-item .body-item-inner .body-item-img {
    width: 50px;
    height: 25px;
    margin: auto;
    margin-bottom: 20px;
}
.order_body-item:nth-of-type(1) .body-item-inner .body-item-img {
    width: 40px;
}
.order_body-item:nth-of-type(2) .body-item-inner .body-item-img {
    width: 40px;
}
.order_body-item .body-item-inner .body-item-img img {
    width: 100%;
}
.order_body-item .body-item-inner p {
    font-size: 16px;
}
@media screen and (min-width: 768px) {
    .order_body .order_body-wrap {
        display: flex;
        justify-content: space-between;
        width: 768px;
        margin: auto;
    }
    .order_body-item {
        flex-basis: 200px;
        margin-bottom: 0;
    }
    .order_body-item:nth-of-type(1) .body-item-inner::after,
    .order_body-item:nth-of-type(2) .body-item-inner::after {
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
        position: absolute;
        top: 0;
        bottom: 0;
        right: -55px;
        margin: auto;
        left: initial;
    }
}
@media screen and (min-width: 900px) {
    .order {
        padding: 150px 0;
    }
}
/* お問い合わせ */
.contact {
    background-image: url(../images/global/contact-bk.jpg);
    background-size: cover;
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: lighten;
}
.contact_head {
}
.contact_head .contact_head-ttl {
}
.contact_body {
    text-align: center;
}
.contact_body .contact_body-txt {
    margin-bottom: 50px;
    font-size: 1.6rem;
    line-height: 1.7;
}
.contact_btn {
    width: 100%;
    max-width: 400px;
    margin: auto;
    background: linear-gradient(-15.5deg, #1b5c96 0%, #1b5c96 50%, #3074ac 50%, #3074ac 100%);
    padding: 25px 0;
    transition: opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
}
.contact_btn:hover {
    opacity: 0.8;
}
.contact_btn .contact_btn-txt {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.contact_btn .contact_btn-img {
    width: 40px;
    margin: auto;
}
.contact_btn .contact_btn-img img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .contact_body .contact_body-txt {
        line-height: 0;
    }
    .sp_br {
        display: none;
    }
}

/* フッター */
.gf {
    padding: 40px 0;
    border-top: 1px solid #b3b3b3;
}

.gf_head .gf_logo .gf_logo-img {
    width: 120px;
    margin-bottom: 40px;
}
.gf_head .gf_logo .gf_logo-img img {
    width: 100%;
}
.gf_body .gf_nav-inner .gf_nav-list {
    font-size: 1.8rem;
}
.gf_body .gf_nav-inner .gf_nav-list li {
    margin-bottom: 15px;
}
.gf_body .gf_nav-inner .gf_nav-list li:last-of-type {
    margin-bottom: 0;
}
.gf_body .gf_nav-inner .gf_nav-list li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 1px;
    background-color: #000;
    margin: 0 5px 5px 0;
}
.gf_contact-btn {
    margin: 30px 0;
    width: 170px;
    transition: 0.4s;
}
.gf_contact-btn:hover {
    opacity: 0.5;
    -webkit-filter: brightness(2);
    filter: brightness(2);
}
.gf_contact-btn .gf_contact-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    border: 1px solid #000;
}
.gf_contact-btn .contact-btn-img {
    width: 25px;
}
.gf_contact-btn .contact-btn-img img {
    width: 100%;
}
.gf_contact-btn .contact-btn-txt {
    font-size: 1.6rem;
}

.gf_outline-txt .outline-logo .outline-logo-img {
    width: 110px;
    margin-bottom: 5px;
}
.gf_outline-txt .outline-logo .outline-logo-img img {
    width: 100%;
}

.gf_outline-txt p {
    font-size: 1.2rem;
    line-height: 1.5;
    cursor: pointer;
}
.gf_outline-txt p:hover {
    opacity: 0.5;
}
.gf .gf_wrap .gf_copy {
    text-align: center;
    margin-top: 40px;
}
@media screen and (min-width: 900px) {
    .gf_wrap {
        padding: 0 100px;
    }
    .gf_body .gf_body-wrap {
        display: flex;
        justify-content: space-between;
    }
    .gf_contact-btn {
        margin: 0;
        margin-bottom: 35px;
    }
}

/* services */
.services {
    padding: 100px 0;
    background-color: #fff;
}
.services_body {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #333;
}
.services_cat {
    margin-bottom: 60px;
}
.services_cat:last-child {
    margin-bottom: 0;
}
.services_cat-ttl {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    border-left: 3px solid #3074ac;
    padding-left: 14px;
    margin-bottom: 28px;
    line-height: 1.4;
}
.services_cat-lead {
    margin-bottom: 18px;
    line-height: 1.9;
}
.services_cat-en {
    display: inline-block;
    font-family: "Cormorant Garamond", serif !important;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    color: #3074ac;
    margin-top: 6px;
}
.services_cat-desc {
    margin-bottom: 18px;
}
.services_list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.services_list-item {
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: default;
}
.services_list-item:first-child {
    border-top: 1px solid #e0e0e0;
}
.services_item-ttl {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3074ac;
    letter-spacing: 0.1rem;
    margin-bottom: 6px;
}
.services_item-ttl::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 1px;
    background-color: #3074ac;
    vertical-align: middle;
    margin-right: 10px;
    transform: translateY(-2px);
}
.services_item-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    padding-left: 18px;
    color: #555;
}
.services_note {
    text-align: center;
    color: #3074ac;
}
.services_list--simple {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.services_list--simple li {
    padding: 12px 0 12px 20px;
    border-bottom: 1px dashed #d6d6d6;
    cursor: default;
    position: relative;
    font-size: 1.4rem;
}
.services_list--simple li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3074ac;
    transform: translateY(-50%);
}
.services_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
    list-style: none;
    padding: 0;
}
.services_tags li {
    font-size: 1.2rem;
    padding: 6px 14px;
    border: 1px solid #3074ac;
    color: #3074ac;
    letter-spacing: 0.08rem;
    cursor: default;
    background-color: #fff;
}

@media screen and (min-width: 900px) {
    .services {
        padding: 150px 0;
    }
    .services_body {
        font-size: 1.5rem;
    }
    .services_cat {
        margin-bottom: 90px;
    }
    .services_cat-ttl {
        font-size: 2rem;
        padding-left: 18px;
        margin-bottom: 38px;
    }
    .services_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 40px;
        row-gap: 0;
    }
    .services_list-item {
        padding: 22px 4px;
        border-top: none;
    }
    .services_list-item:nth-child(-n + 3) {
        border-top: 1px solid #e0e0e0;
    }
    .services_list-item:nth-last-child(-n + 3) {
        border-bottom: 1px solid #e0e0e0;
    }
    .services_item-ttl {
        font-size: 1.6rem;
    }
    .services_item-desc {
        font-size: 1.4rem;
    }
    .services_list--simple li {
        font-size: 1.5rem;
        padding: 14px 0 14px 22px;
    }
    .services_tags {
        gap: 10px;
        margin: 24px 0;
    }
    .services_tags li {
        font-size: 1.3rem;
        padding: 7px 18px;
    }
}

/* gallery下：Instagram SNSボタン */
.gallery_sns {
    margin-top: 60px;
    text-align: center;
}
.sns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    padding: 18px 40px;
    background-color: transparent;
    border: 1px solid #3074ac;
    color: #3074ac;
    text-decoration: none;
    letter-spacing: 0.15rem;
    transition: color 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
.sns-btn:hover {
    color: #fff;
    opacity: 1;
}
.sns-btn-inner {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.sns-btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.sns-btn:hover .sns-btn-icon {
    transform: rotate(8deg) scale(1.08);
}
.sns-btn-txt {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
    text-align: left;
}
.sns-btn-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
}
.sns-btn-handle {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    letter-spacing: 0.12rem;
    opacity: 0.8;
    margin-top: 2px;
}
.sns-btn-fill {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #3074ac;
    transform: translateY(101%);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}
.sns-btn:hover .sns-btn-fill {
    transform: translateY(0);
}
@media screen and (min-width: 900px) {
    .gallery_sns {
        margin-top: 90px;
    }
    .sns-btn {
        min-width: 340px;
        padding: 22px 50px;
    }
    .sns-btn-icon {
        width: 26px;
        height: 26px;
    }
    .sns-btn-label {
        font-size: 1.4rem;
    }
    .sns-btn-handle {
        font-size: 1.15rem;
    }
}

/* services下：ホットペッパーボタン */
.services_cta {
    margin-top: 70px;
    text-align: center;
}
.hpb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-width: 300px;
    padding: 22px 32px;
    background-color: #1f1f1f;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid #1f1f1f;
    transition:
        color 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        border-color 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.hpb-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #e94e1b;
    transition: width 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 0;
}
.hpb-btn:hover {
    opacity: 1;
    border-color: #e94e1b;
}
.hpb-btn:hover::before {
    width: 100%;
}
.hpb-btn-inner,
.hpb-btn-arrow {
    position: relative;
    z-index: 1;
}
.hpb-btn-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.3;
}
.hpb-btn-sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    letter-spacing: 0.3rem;
    opacity: 0.7;
}
.hpb-btn-main {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Noto Serif JP", serif;
    font-size: 1.4rem;
    letter-spacing: 0.15rem;
    margin-top: 4px;
}
.hpb-btn-arrow {
    width: 32px;
    height: 8px;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.hpb-btn-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}
.hpb-btn:hover .hpb-btn-arrow {
    transform: translateX(10px);
}
@media screen and (min-width: 900px) {
    .services_cta {
        margin-top: 90px;
    }
    .hpb-btn {
        min-width: 380px;
        padding: 26px 40px;
        gap: 40px;
    }
    .hpb-btn-sub {
        font-size: 1.2rem;
    }
    .hpb-btn-main {
        font-size: 1.55rem;
    }
    .hpb-btn-arrow {
        width: 40px;
    }
}
