/*
Theme Name: Relier Inc. Original Theme
URI: https://relier-inc.co.jp/
Description: Relierが提供するオリジナルテーマ
Author: Relier Inc.
*/
@charset "utf-8";
/**フォント**/
/* Zen Old Mincho */
@font-face {
    font-family: 'Zen Old Mincho';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('font/ZenOldMincho-Regular.woff2') format('woff2');
}
/*=======================================================
リセット
=======================================================*/
*{
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	box-sizing: border-box;
	font-style: normal;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	line-break: strict;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
*,*:focus,a:focus{
	outline:none;
}
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
p,table,blockquote,address,pre,iframe,form,figure,dl {
	margin: 0;
}
h1,h2,h3,h4,h5,h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
dt {
    font-weight: bold;
}
dd {
    margin-left: 0;
}
address {
    font-style: inherit;
}
abbr[title] {
    text-decoration: underline dotted;
}
b,strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
svg,img,iframe {
    vertical-align: bottom;
    border: none;
}
button,input,select,textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
}
[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
}
[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}
button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default;
}
:-moz-focusring {
    outline: auto;
}
select:disabled {
    opacity: inherit;
}
textarea {
    overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
label[for] {
    cursor: pointer;
}
details {
    display: block;
}
summary {
    display: list-item;
}
[contenteditable]:focus {
    outline: auto;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
td,th {
    vertical-align: top;
    padding: 0;
}
th {
    text-align: left;
}
article,aside,figcaption,figure,picture,
footer,main,header,nav,section {
    display: block;
}
ul,ol {
    list-style: none;
}
p,li,dt,dd,th,td {
    line-break:strict;
}
img {
    max-width: 100%;
    height: auto;
}
picture {
    line-height: 0;
}
picture img {
    vertical-align: top;
}
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}
/* PC SP */
.pc {
    display: block!important;
}
.sp {
    display: none!important;
}
.s-sp {
    display: none!important;
}
@media screen and (max-width : 767px){
    .sp {
        display: block!important;
    }
    .pc {
        display: none!important;
    }
    .s-sp {
        display: none!important;
    }
}
@media screen and (max-width : 393px){
    .pc {
        display: none!important;
    }
    .s-sp {
        display: block!important;
    }
}
/*=======================================================
基本設定
=======================================================*/
:root {
    --beige: #B69955;
    --l-beige: #DCC48C;
    --red: #E4481A;
    --cream: #FCF6E7;
    --black: #000;
    --translucent: rgba(255,255,255,.9);
    --bgimg: url(images/common/bg.png.webp);
}
html {
    height: 100%;
}
body {
    font-size: var(--fs-md);
    color: #333;
    font-family: "Zen Old Mincho",serif;
    font-weight: 400;
    font-style: normal;
    background: #fff;
    position: relative;
    display: flex!important;
    flex-flow: column;
    min-height: 100vh;
    line-height: 1;
    letter-spacing: 0;
    margin: auto;
}
main {
    flex: 1;
    background: var(--bgimg) center;
}
a,
a:hover {
    transition: .5s;
}
a[href^="tel:"] {
    pointer-events: none;
	border-bottom: 1px solid currentColor;
}
p {	
    line-height: 1.5;
}
.display-none {
	display: none;
}
@media screen and (max-width : 767px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
    a,
    a:hover {
        transition: 0;
        opacity: 1;
    }
    /*スマホで非表示*/
    .invisible {
        display: none;
    }
}
/*--------------------------------------------------
レイアウト関係
--------------------------------------------------*/
.inner {
    padding-left: 20px; 
    padding-right: 20px;
}
.section__inner {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    position: relative;
}
.reverse {
    flex-direction: row-reverse;
}
.bg-cream {
    background: var(--cream);
}
.flex {
	display: flex; 
	align-items: center; 
	justify-content: center;
}
@media screen and (max-width : 767px) {
	.section__inner {
		padding-left: 0;
		padding-right: 0;
	}
}
/*--------------------------------------------------
CTA
--------------------------------------------------*/
.cta {
    background: url(images/common/footer-facility-bg.webp) center / cover no-repeat;
    color: #fff;
}
.wedding-page .cta {
    background: url(images/wedding/footer-cta.jpg) center / cover no-repeat;
}
.shichigosan-page .cta {
    background: url(images/shichigosan/footer-cta.jpg) center / cover no-repeat;
}
.party-page .cta {
    background: url(images/party/footer-cta.jpg) center / cover no-repeat;
}
.page-hatsumiyamairi .cta {
    background: url(images/hatsumiyamairi/footer-bg.jpg) center / cover no-repeat;
}
.cta__inner {
    margin: 0 auto;
    padding: 117px 20px 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta__title {
    margin: auto auto 29px;
    font-size: 32px;
    letter-spacing: 0.2em;
	filter: drop-shadow(0 2px 2px black);
}
.cta__tel {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 4px;
	filter: drop-shadow(0 2px 2px black);
}
.cta__tel span {
    font-size: 26px;
}
.cta__text {
    margin-bottom: 2rem;
	filter: drop-shadow(0 2px 2px black);
}
.cta__btn-list {
    margin-top: 21px; 
    display: flex; 
    justify-content: center; 
    gap: 30px;
    flex-wrap: wrap;
}
/*施設紹介*/
.cta__facility .cta__inner {
    padding: 70px 20px 50px;
    z-index: 2;
    position: relative;
	filter: drop-shadow(0 2px 2px black);
}
.cta__facility .cta__title {
    margin-bottom: 83px;
	
	filter: drop-shadow(0 4px 4px black);
}
.cta__facility .cta__subtitle {
    border-bottom: 1px solid var(--red);
    max-width: 358px; 
	width: 100%;
    margin: auto;
}
.cta__facility {
    background: url(images/common/footer-facility-bg.webp) center / cover no-repeat;
    color: #fff;
}
@media screen and (max-width : 767px) {
	.cta,
	.cta__facility {
    	background: url(images/common/footer-facility-bg_sp.webp) center / cover no-repeat;
	}
    .wedding-page .cta {
        background: url(images/wedding/footer-cta_sp.jpg) center / cover no-repeat;
    }
    .shichigosan-page .cta {
        background: url(images/shichigosan/footer-cta_sp.jpg) center / cover no-repeat;
    }
    .party-page .cta {
        background: url(images/party/footer-cta_sp.jpg) center / cover no-repeat;
    }
    .hatsumiyamairi-page .cta {
        background: url(images/hatsumiyamairi/footer-cta_sp.jpg) center / cover no-repeat;
    }
	.cta__inner {
		padding: 82px 20px 55px;
	}
	.cta__title {
		font-size: 26px;
		letter-spacing: 0.22em;
		margin-bottom: 77px;
	}
	.cta__tel {
		margin-bottom: 5px;
		font-size: 32px;
	}
	.cta__tel span {
		font-size: 24px;
	}
	.cta__btn-list {
    	margin-top: 31px;
    	gap: 24px;
	}
	.cta__facility::before {
    content: "";
    position: absolute;
    top: 13px;
    right: 13px;
    bottom: 13px;
    left: 13px;
    border: 1px solid #fff;
    pointer-events: none;
    z-index: 2;
}
}
/*--------------------------------------------------
hoverしたら明るくなる画像
--------------------------------------------------*/
.hover__item {
    position: relative;
}
.hover__item::after {
    content: "";
    position: absolute;
    inset: 0; 
    background: rgba(0,0,0,0.5);
    transition: opacity 0.5s ease;
    z-index: 1;
}
.hover__item:hover::after {
    opacity: 0;
}
@media screen and (max-width : 767px) {	
	.hover__item::after {
        content: none;
	}
}
/*--------------------------------------------------
フォント関係
--------------------------------------------------*/
.text-xs { font-size: 12px!important; }
.text-sm { font-size: 14px; }
.text-md { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px!important; }
.text-3xl { font-size: 28px; }
.text-4xl { font-size: 36px; }
.fw-thin { font-weight: 100; }
.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }
.ft-shippori { font-family: "Shippori Mincho B1", serif; }
.fc-beige { color: var(--beige)!important; }
.fc-red { color: var(--red)!important; }
.v-text-rl { writing-mode: vertical-rl; text-orientation: upright; }
.v-text-lr { writing-mode: vertical-lr; text-orientation: upright; }
.text-center { text-align: center; }
.underline { border-bottom: 1px solid currentcolor!important; }
@media screen and (max-width : 767px) {
    .text-xs { font-size: 12px!important; }
    .text-sm { font-size: 14px; }
    .text-md { font-size: 16px; }
    .text-lg { font-size: 18px; }
    .text-xl { font-size: 19px; }
    .text-2xl { font-size: 21px!important; }
    .text-3xl { font-size: 23px; }
    .text-4xl { font-size: 31px; }
}
/*--------------------------------------------------
ヘッダー
--------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .85);
    transition: transform 0.3s ease;
    transform: translateY(-100%);
    z-index: 1001;
}
.header--fixed {
    transform: translateY(0);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 38px 20px 34px;
}
.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header__toggle {
    display: none;
}
.header .nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 33px;
}
.header .nav__item a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}
/***ボタン***/
.header .cta__btn-icon a::before {
    left: 15px;	
}
/*短め*/
.header .cta__short a {
    width: 164px;
}
/*最後から二番目ボタン*/
.header .cta__btn:nth-last-child(2) {
    margin-right: -14px;
}
/*衣裳予約*/
.header .nav__item.cta__btn--dress a {
    padding-left: 30px;
}
/* ========================= 
ハンバーガーメニュー 
========================= */
.js-toggle-nav {
    width: 55px;
    height: 19px;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}
.js-toggle-nav span {
    display: block;
    height: 1px;
    width: 100%;
    background: #000;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}
.js-toggle-nav span:first-of-type {
    top: 0;
}
.js-toggle-nav span:nth-of-type(2) {
    top: 9px;
}
.js-toggle-nav span:last-of-type {
    bottom: 0;
    width: 31px;
    right: 0;
}
.js-toggle-nav.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.js-toggle-nav.active span:nth-child(2) {
    opacity: 0;
}
.js-toggle-nav.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 100%;
}
/* fv のハンバーガーは常に表示 */
.fv__toggle {
    width: 120px;
    padding-top: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    flex-shrink: 0;
}
.fv__toggle-btn {
    display: block;
    position: relative;
    z-index: 1000;
}
.fv__toggle-logo {
    margin-top: calc(126 / 1600 * 100vw);
    background: url(images/common/side-logo.svg) center / cover no-repeat;
    height: 304px;
    width: 44px;
    font-size: 0; 
    line-height: 0;
    color: transparent;
    text-shadow: none;
    overflow: hidden;
}
/* 中身 */
.nav--drawer {
    display: none;
    transition: right 0.3s ease;
    z-index: 1000;
}
.nav--drawer.nav--open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: block;
    z-index: 1000;
}
.nav--drawer .nav__list {
    display: grid;
    place-items: center;
    padding-top: 120px;
    gap: 35px;
}
.nav--drawer .nav__list li {
    font-size: 18px;
	font-weight: 500;
}
.nav--drawer .nav__item a {
    position: relative;
}
	.nav--drawer .cta__btn-list {
		display: flex!important;
	}
.nav--drawer .cta__btn--map a {
	border: 1px solid #000;
}
@media (hover: hover) and (pointer: fine) {
    .header .nav__item:not(.cta__btn) a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 1px;
        background: currentColor;
        transition: width 0.3s ease;
    }
    .header .nav__item:not(.cta__btn) a:hover::after {
        width: 100%;
    }
}
@media(max-width: 1432px) {
	.header .nav__list {
		gap: 20px;
	}
	.header .cta__btn a {
		width: 200px;
	}
	.header__logo {
		width: 200px;
	}
	.header__inner {
		padding-inline: 20px;
	}
}
@media(max-width: 1259px) {/*1465*/
    .header__logo {
        width: 187px;
    }
    .header__toggle {
        display: block;
        z-index: 1000;
        width: 29px;
        height: 15px;
        position: relative;
        cursor: pointer;
    }
    .header__toggle span {
        display: block;
        height: 1px;
        width: 100%;
        background: #000;
        transition: all 0.3s ease;
        transform-origin: center;
        position: absolute;
    }
    .header__toggle span:first-of-type {
        top: 0;
    }
    .header__toggle span:nth-of-type(2) {
        top: 7px;
    }
    .header__toggle span:last-of-type {
        bottom: 0;
        width: 16px;
        right: 0;
    }
    .header__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px)!important;
    }
    .header__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .header__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px)!important;
        bottom: 3px;
    }
    .header .nav {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 999;
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .header .nav.nav--open {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .nav__list {
        display: block;
    }
    .header__inner {
        padding: 13px;
    }
}
@media screen and (max-width : 1160px) {
    .fv__toggle {
        width: 85px;
        padding-top: 30px;
    }
    .fv__toggle-logo {
        margin-top: 30px; 
        height: 213px;
        width: 30px;
    }
}
@media screen and (max-width: 767px) {
	.fv {
		margin-bottom: 36px;
	}
    .fv__toggle {
        display: none;
    }
	.nav--drawer .cta__btn-list {
		display: none!important;
	}
}
/*--------------------------------------------------
フッター
--------------------------------------------------*/
.footer {
    background: var(--bgimg) center;
}
.footer__inner {
    margin: 0 auto;
    padding-top: 74px; 
    padding-bottom: 92px;
    padding-left: clamp(20px, calc((100% - 1600px) / 2 + 200px), 200px);
    padding-right: clamp(20px, calc((100% - 1600px) / 2 + 203px), 203px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
/* ナビ */
.footer__nav ul {
    display: grid;
    gap: clamp(16px, 3vw, 31px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__nav .nav__item {
    letter-spacing: 0.666em;
}
.footer__nav .nav__item.external_link {
    display: flex; 
    flex-direction: row-reverse;
}
.footer__nav .nav__item.external_link::before {
    margin-right: 0;
}
.footer__nav a {
    position: relative;
    display: inline-block;
}
/* メタ情報 */
.footer__meta {
    text-align: right;
}
.footer__brand {
    display: inline-block;
    margin-bottom: 8px;
	max-width: 377px;
}
.footer__address {
    font-style: normal;
    margin: 16px 0 10px;
}
.footer__links {
    margin: 20px 0 0;
    font-size: 14px;
}
.footer__links li a {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    text-decoration: none;
}
.footer__copyright {
    display: block;
    margin-top: 18px;
}
.sns--insta {
    margin: 30px 0 0;
}
.sns--insta img {
    width: 31px;
    height: 31px;
}
@media (hover: hover) and (pointer: fine) {
    .footer__nav a::after {
        content: "";
        position: absolute;
        top: 0;
        right: -4px;
        width: 1px;
        height: 0;
        background: currentColor;
        transition: height 0.3s ease;
    }
    .footer__nav a:hover::after {
        height: 100%;
    }
    .footer__links li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 1px;
        background: currentColor;
        transition: width 0.3s ease;
    }
    .footer__links li a:hover::after {
        width: 100%;
    }
}
@media screen and (max-width : 1000px) {
    .footer__inner {
        display: block;
    }
    .footer__nav ul {
        margin: auto auto 60px;
    }
    .footer__meta {
        text-align: center;
    }
}
/* スマホ */
@media (max-width: 767px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
	.footer__nav ul {
		gap: clamp(22px, 3vw, 31px);
	}
    .footer__links {
        justify-content: center;
    }
    .footer .cta__btn-list {
        flex-direction: column;
    }
	.footer__links li a::after {
		content: none;
	}
	.footer__address,
	.footer__tel {
		font-size: 12px;
	}
	.footer__brand img {
		max-width: 285px;
	}
	.footer__links {
		font-size: 11px;
	}
	.footer__links li a {
		margin-bottom: 20px;
	}
	.footer__copyright {
		margin-top: 44px;
	}
	.footer .external_link::before {
		width: 12px; 
		height: 12px;
		margin-left: 2px;
	}
	/*SP/フッター固定CTA*/
    .fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        pointer-events: none;
        transition: all 0.6s ease-out;
    }
    .fixed-cta.is-show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
	.fixed-cta .cta__btn-list {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
	}
	.fixed-cta .cta__btn {
		width: 50%;
	}
	.fixed-cta .cta__btn a {
		width: 100%;
		font-size: 13px;
		padding: 10px;
	}
	.fixed-cta .cta__btn a::before {
		position: relative;
		display: inline-block; 
		margin-right: 10px;
		left: initial;
	}
	.fixed-cta .cta__btn--map a,
	.fixed-cta .cta__btn--mail a {
		border: 1px solid var(--red);
	}
	.fixed-cta .cta__btn--calendar a {
		border: 1px solid var(--beige);
	}
}
/*--------------------------------------------------
FV
--------------------------------------------------*/
/***スライダー***/
.fv {
    margin-bottom: clamp(51px, 6.69vw, 107px);
    display: flex;
    justify-content: space-between;
    position: relative;
}
.fv__slider-wrapper {
    min-width: 0;
	overflow: hidden;
}
/*タイトル*/
.fv .main__title {
    font-size: clamp(35px, 4.5vw, 72px);
    position: absolute; 
    top: clamp(137px, 17.88vw, 286px);
    left: clamp(74px, 9.63vw, 154px);
    margin: auto 0;
    color: #fff;
}
.fv .main__title span {
    font-size: clamp(29px, 3.75vw, 60px); 
}
/*七五三・お宮参り・宴会*/
.page-shichigosan .fv .main__title,
.page-party .fv .main__title,
.page-hatsumiyamairi .fv .main__title {
    font-size: clamp(40px, 5.25vw, 84px);
}
.page-shichigosan .fv .main__title span,
.page-party .fv .main__title span,
.page-hatsumiyamairi .fv .main__title span{
    font-size: clamp(16px, 2.06vw, 33px);
    display: block;
    margin-bottom: 10px;
}
/* slick 初期化前に適用される初期状態を安定化 */
.slick-slider {
    visibility: hidden;
}
.slick-initialized {
    visibility: visible;
}
/*dots*/
.fv .slick-dotted.slick-slider {
    margin-bottom: 0;
}
.fv .slick-dots li {
    width: 54px; 
    height: 3px;
}
.fv .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #D9D9D9;
}
.fv .slick-dots li button:hover:before,
.fv .slick-dots li button:focus:before {
    opacity: 1;
    background: var(--beige);
}
.fv .slick-dots li button:before {
    font-size: 0;
    line-height: 1;
    width: 100%;
    height: 100%;
    background: #D9D9D9;
}
.fv .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--beige);
}
/*scroll*/
.fv__scroll {
    position: absolute; 
    bottom: -60px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    height: 170px;
}
.fv__scroll span {	
    text-orientation: sideways;
    color: #fff;
    font-size: 14px;
}
.fv__scroll-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
}
.fv__scroll-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 107px;
    background: #fff;
    animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
	will-change: transform;
}
@keyframes liner {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
.simple__slider-wrapper {
	position: relative;
}
.dots-box .slick-dots + .slick-dots {
	display: none!important;
}
@media screen and (max-width : 767px) {
	.fv__scroll {
		display: none;
	}
	.fv .main__title {
		font-size: clamp(48px, calc(48px + 48 * ((100vw - 375px) / 392)), 96px);
		top: clamp(56px, calc(56px + 56 * ((100vw - 375px) / 392)), 112px);
		left: clamp(56px, calc(56px + 56 * ((100vw - 375px) / 392)), 112px);
		writing-mode: vertical-rl;
    	text-orientation: upright;
		letter-spacing: 0.01em;
	}
	.fv .main__title span {
		font-size: clamp(40px, calc(40px + 40 * ((100vw - 375px) / 392)), 80px);
	}
/*七五三・お宮参り・宴会*/
	.page-shichigosan .fv .main__title,
	.page-hatsumiyamairi .fv .main__title {
		font-size: clamp(60px, calc(60px + 60 * ((100vw - 375px) / 392)), 120px);
	}	
	.page-party .fv .main__title {
		font-size: clamp(50px, calc(50px + 50 * ((100vw - 375px) / 392)), 100px);
	}
	.page-shichigosan .fv .main__title span,
	.page-party .fv .main__title span,
	.page-hatsumiyamairi .fv .main__title span{
		font-size: clamp(24px, calc(24px + 24 * ((100vw - 375px) / 392)), 48px);
		display: block;
		margin-left: 2.5vw;
	}
	.page-shichigosan .fv .main__title {
		letter-spacing: 0.16em;
		top: clamp(71px, calc(71px + 71 * ((100vw - 375px) / 392)), 142px);
	}
	.page-shichigosan .fv .main__title span {
		letter-spacing: 0;
		margin-top: clamp(-24px, calc(-12px + (-12 * ((100vw - 375px) / 392))), -12px);
	}
}
@media screen and (max-width : 320px) {
	.fv .main__title,
	.fv .main__title span {
		font-size: 14vw; 
		left: 10vw; 
		top: 10vw; 
	}
	.page-shichigosan .fv .main__title span,
	.page-party .fv .main__title span,
	.page-hatsumiyamairi .fv .main__title span{
		font-size: 10vw
	}
}
/*=======================================================
イントロ
=======================================================*/
.intro .section__inner {
    margin-bottom: clamp(53px, 6.88vw, 110px);
}
.intro__body {
    display: flex;
    align-items: center;
    gap: clamp(65px, 8.44vw, 135px);
}
.intro__title {
    color: var(--beige);
    font-size: clamp(28px, 2.25vw, 36px);
	font-size: 36px;
    letter-spacing: 0.28em;
    line-height: 1.7;
}
.intro__text p {
    font-size: 18px;
    line-height: 2;
}
.intro__text p + p {
    margin-top: clamp(9px, 1.19vw, 19px);
}
@media screen and (max-width : 767px) {
	.intro__body {
		flex-direction: column;
		gap: 20px;
	}
	.intro__text p {
		font-size: 16px;
		padding-left: 15px; 
		padding-right: 15px;
	}
	.intro__title-wrapper {
		display: flex; 
		align-items: center; 
		justify-content: center;
		width: 100%;
	}
	.intro__title {
		font-size: 26px;
		font-weight: 500;
		margin: auto;
	}
}
/*--------------------------------------------------
見出し
--------------------------------------------------*/
.section__title {
    font-size: 36px; 
    text-align: center;
    margin-bottom: 58px;
    line-height: 1.4;
    position: relative;
}
.section__title > span:first-of-type {
    font-size: 16px; 
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
.section__title > span:first-of-type::after {
    content: "";
    height: 1px;
    width: 100%;
    background: #E4481A;
    display: block;
    margin: 10px auto auto;
}
.section__title > span:nth-of-type(2) {
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 10px;
}
.section__title > span:nth-of-type(2) img {
    width: 36px; 
    height: 36px;
}
.section__title > img {
	width: 36px; 
	height: 36px;
}
/*アイコン付き縦見出し*/
.v__title {
    font-size: 36px;
    position: relative;
    letter-spacing: 0.225em;
    padding-right: 27px;
    padding-left: 85px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: relative;
}
.v__title::after {
    content: "";
    display: block; 
    position: absolute; 
    top: -46px;
    left: 55px;
    width: 1px;
    height: 277px;
    background: #000;
}
.v__title span {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    text-orientation: sideways;
    letter-spacing: 0;
    font-size: 14px;
}
.v__title::before {
    content: "";
    display: block; 
    width: 36px;
    height: 36px;
    background: url(images/common/mini-mark.svg) center / cover no-repeat;
    position: absolute; 
    top: -46px;
}
@media screen and (max-width : 767px) {
	.section__title {
		font-size: 26px;
		margin-bottom: 50px;
	}
    .section__title > span:nth-of-type(2) img,
    .section__title img {
        width: 26px; 
        height: 26px;
    }
	.section__title > span:first-of-type {
		font-size: 13px;
		margin-bottom: 7px;
	}
	.section__title > span:first-of-type::after {
        margin: 5px auto auto;
    }
}
/*--------------------------------------------------
画像フェードイン
--------------------------------------------------*/
.fadein__img-wrapper {
    position: relative;
}
.fadein {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
}
.fadein.is-visible {
    opacity: 1;
}
.fadein img {
    width: 100%;
}
@media screen and (max-width : 767px) {
	.fadein__img-wrapper {
		width: 100%!important;
	}
}
/* ----------------------------------------------
画像+テキスト群flexbox（結婚式・七五三・宴会・お宮参り）
---------------------------------------------- */
.media {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.media__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.media__img {
    width: 50%;
}
.media__body,
.media__img {
    flex: 1;
    min-width: 0;
}
/* 背景 */
.bg__deco {
    background: url(images/common/bg-2.png) center,#F8F1E0;
}
.bg__deco-multi {
    background: url(images/common/deco-1.svg) top 67px right 71px no-repeat, url(images/common/deco-2.svg) bottom 66px right 620px no-repeat;
}
@media screen and (max-width : 1068px) {
    .bg__deco-multi {
        background: url(images/common/deco-1.svg) top 29px right 0px no-repeat, 
        url(images/common/deco-2.svg) bottom 66px right 620px no-repeat;
    }
}
@media (max-width: 767px) {
    .media {
        flex-direction: column;
    }
	.media__img {
		width: 100%;
		margin-bottom: 10px;
	}
	.media__body {
		padding-top: 55px;
	}
    .bg__deco {
        background: url(images/common/bg-2_sp.png) center,#F8F1E0;
    }
	.bg__deco-multi {
		background: url(images/common/deco-1.svg) top 290px right 15px/ 100px no-repeat, url(images/common/deco-2.svg) bottom 26px left 15px / 57px no-repeat;
    }
}
/*--------------------------------------------------
バナー
--------------------------------------------------*/
.banner {
    position: relative;
}
.banner .section__inner {
    display: flex; 
    flex-direction: row-reverse;
    max-width: 798px;
    background: #fff; 
    border: 2px solid var(--beige);
	padding: 0;
}
.banner__title {
    color: var(--beige);
    font-size: 32px; 
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.banner__text {
    margin-bottom: 5px;
}
.banner__text span {
	margin-left: 5px; 
	margin-bottom: 5px;
	display: block;
}
.banner__body .more__button {
    margin-top: 15px;
    justify-content: flex-end;
    margin-right: 10px;
}
.banner__img img {
    object-fit: cover;
    height: 100%;
}
.banner a:hover .more__button::after {
    transform: translateX(8px);
}
/*お土産*/
.banner-souvenir {
	padding: 104px 20px 109px!important;
}
.banner-souvenir .section__inner {
	max-width: 798px!important;
}
.banner-souvenir .banner__body {
    width: 400px;
}
.movie + .banner-souvenir {
    padding-top: 0!important;
}
.banner-souvenir .banner__title {
	margin-bottom: 12px!important;
}
.banner-souvenir .banner__text {
	font-size: 16px!important; 
	line-height: 1.5!important;
	margin-bottom: 5px!important;
}
.banner-souvenir .banner__img picture {
	height: 100%;
}
.banner-souvenir .banner__img {
	width: auto!important;
}
.banner-souvenir .banner__img img {
    max-width: 400px;
	width: 100%;
	object-position: left;
}
.banner-souvenir .banner__body {
    padding: 30px 12px 13px 32px!important;
}
@media screen and (max-width : 767px) {
	.media {
		flex-direction: column-reverse;
	}
	.banner-souvenir {
		padding: 53px 0!important;
	}
	.banner .section__inner {
		flex-direction: column-reverse;
		padding-left: 0;
		padding-right: 0;
		border: none;
	}
	.banner-souvenir .banner__body {
		width: 100%;
		padding: 33px 33px 30px!important;
	}
	.banner__title {
		font-size: 26px;
		text-align: center;
	}
	.banner-souvenir .banner__img img {
		max-width: 100%;
	}
	.banner__text {
        margin-bottom: 25px;
    }
	.banner-souvenir .banner__text {
		text-align: center;
	}
	.banner-souvenir .banner__body .more__button {
		justify-content: center;
		margin-right: 0;
	}
}
/* ----------------------------------------------
お知らせ
---------------------------------------------- */
.parts__news__inner {
    padding: 77px 20px 80px;
    max-width: 1136px;
    margin: auto;
    display: flex;
    gap: 83px;
}
.parts__news__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 123px; 
    width: 100%;
}
.parts__news__title-wrapper {
    display: flex; 
    justify-content: center;
}
.news__list {
    max-width: 930px;
    width: 100%;
    border-top: 1px solid #ccc;
}
.news__list + .more__button {
	display: none;
}
.news__day {
    color: var(--beige);
    margin-right: 16px;
}
.news__cat {
    background: var(--beige);
    color: #fff;
    height: 27px; 
    width: 97px;
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.news__item a {
    padding: 20px 0 18px; 
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    gap: 16px;
}
.news__item a:hover {
    opacity: .5;
}
.news__meta {
    display: flex;
    align-items: center;
	flex-shrink: 0;
}
.news__title {
    line-height: 1.6;
}
@media screen and (max-width : 767px) {
	.parts__news__inner {
		flex-direction: column;
		padding: 47px 15px 50px;
		gap: 20px;
	}
	.parts__news__title {
		letter-spacing: 0.15em;
	}
	.parts__news__body {
		margin: auto;
	}
	.parts__news__body .more__button {
		display: none;
	}
	.news__item a {
		padding: 13px 0 10px;
		gap: 6px;
	}
	.news__list + .more__button {
		display: flex;
	}
	.news__cat {
        height: 22px!important;
        width: 75px!important;
        font-size: 12px!important;
    }
	.news__item a {
		display: block;
	}
}
/*----------------------------------------------
each-media-link
---------------------------------------------- */
.each-media-link .media {
    padding: 99px 0 103px;
}
.each-media-link .media__title-wrapper {
    display: flex; 
    justify-content: center;
    padding-top: 46px;
    position: relative;
}
.each-media-link .media__title {
    font-size: 36px;
    position: relative;
    letter-spacing: 0.225em;
    padding-right: 27px;
    padding-left: 85px;
    height: 231px;
}
.each-media-link .media__title::after {
    content: "";
    display: block; 
    position: absolute; 
    top: -46px;
    left: 55px;
    width: 1px;
    height: 277px;
    background: #000;
}
.each-media-link .media__title span {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    text-orientation: sideways;
    letter-spacing: 0;
    font-size: 14px;
}
.each-media-link .media__title::before {
    content: "";
    display: block; 
    width: 36px;
    height: 36px;
    background: url(images/common/mini-mark.svg) center / cover no-repeat;
    position: absolute; 
    top: -46px;
}
.each-media-link .media__text {
    line-height: 2.15;
    margin-top: 36px;
    padding: 0 20px;
    text-align: center;
}
.each-media-link {
    position: relative;
}
.each-media-link > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; 
    z-index: 2;
}
.each-media-link > a:hover + .section__inner .more__button::after {
    transform: translateX(8px);
}
@media screen and (max-width : 767px) {
	.each-media-link .media {
		padding: 0 0 52px;
	}
	.each-media-link .media__title-wrapper {
		min-height: 201px;
	}
	.each-media-link .media__title {
    	font-size: 26px;
        padding-right: 25px;
        padding-left: 30px;
        height: auto;
	}
	.each-media-link .media__title::before {
		width: 26px; 
		height: 26px;
		top: -35px;
	}
	.each-media-link .media__title::after {
		top: -35px;
		left: 8px;
		height: 191px;
	}
	.each-media-link .media__title span {
		font-size: 12px;
	}
	.each-media-link .media__text {
		padding: 0 15px;
		font-size: 16px;
	}
}

/*=======================================================
パーツ
=======================================================*/
/*----------------------------------------------
MOREボタン矢印付き
---------------------------------------------- */
.more__button {
    font-family: "Shippori Mincho B1", serif;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 55px auto 0;
}
.more__button::after {
    content: "";
    display: block;
    width: 66px;
    height: 5px;
    background: url(images/common/arrow.svg) center / cover no-repeat;
    margin-left: 15px;
    transition: transform 0.3s ease;
}
@media screen and (max-width : 767px) {
    .more__button {
        margin-top: 25px;
    }
}
/*----------------------------------------------
ボタン
---------------------------------------------- */
.buttons {
    display: flex;
    align-items: center; 
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}
.button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    cursor: pointer;
    position: relative;
}
.button-xs {
    width: 240px;
    height: 60px;
}
.button-s {
    width: 301px;
    height: 70px;
}
.button-m {
    width: 370px;
    height: 70px;
}
.button-l {
    width: 370px;
    height: 60px;
}
.button-xl {
    width: 370px;
    height: 80px;
}
/*四角ボタン*/
.button-d {	
    border: 1px solid var(--beige);
    background: #fff;
}
/*丸みボタン*/
.button-r {
    border-radius: 40px;
}
/*茶色ボタン*/
.button-bg-b {
    background: var(--beige);
    color: #fff;
    border: 1px solid var(--beige);
    transition: .3s;
}
/*グレーボタン*/
.button-bg-g {
    background: #B4B4B4;
    color: #fff;
    border: 1px solid #B4B4B4;
    transition: .3s;
}
@media screen and (max-width : 767px) {
	.button {
		margin-left: auto;
		margin-right: auto;
	}
	.buttons li {
		width: 100%;
		max-width: 370px;
	}
	.button-d {
		padding-right: 20px;
	}
    .button-xs {
        width: 100%;
        max-width: 240px;
    }
    .button-s {
        width: 100%;
        max-width: 301px;
    }
    .button-m {
        width: 100%;
        max-width: 370px;
    }
    .button-l {
        width: 100%;
        max-width: 370px;
    }
    .button-xl {
        width: 100%;
        max-width: 370px;
    }
}
/*----------------------------------------------
アイコン付き
---------------------------------------------- */
/*右矢印→付き*/
.has__arrow::after {	
    content: "";
    display: inline-block;
    width: 66px;
    height: 5px;
    background: url(images/common/arrow.svg) center / cover no-repeat;
    transition: transform 0.3s ease;
    position: absolute;
    right: 21px;
}
.has__arrow-s::after {	
    width: 34px;
    height: 4px;
    background: url(images/common/arrow-short.svg) center / cover no-repeat;
}
/*下矢印v付き*/
.has__arrow-below::before {	
    content: "";
    display: inline-block;
    width: 17px;
    height: 9px;
    background: url(images/common/icon-accordion.svg) center / cover no-repeat;
    margin-right: 15px;
    transition: transform 0.3s ease;
}
/*外部リンクアイコン付き*/
.external_link::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(images/common/icon-link.svg) center / cover no-repeat;
    margin-right: 7px;
}
/*インスタアイコン付き*/
.insta_link::before {
    content: "";
    display: inline-block;
    width: 29px;
    height: 29px;
    background: url(images/common/icon-insta.png) center / cover no-repeat;
    position: absolute;
    left: 38px;
}
/*マイナビウエディング*/
.mynavi-title {
    font-size: 12px;
    color: #B4B4B4;
    letter-spacing: -0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}
/*左に下矢印四角ボタン */
.simple__button {
    width: 100%; 
    max-width: 240px; 
    height: 60px; 
    border: 1px solid var(--beige);
    background: #fff;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.simple__button a {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100%; 
    width: 100%;
}
.simple__button::before {
    content: "";
    display: block; 
    background: url(images/common/icon-accordion.svg) center / cover no-repeat;
    position: absolute;
    left: 30px;
    transition: transform 0.2s;
    width: 17px;
    height: 9px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}
/*右矢印白→茶付き*/
.has__arrow-b::after {	
    content: "";
    display: inline-block;
    width: 34px;
    height: 4px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 21px;
    background-color: #fff;
    -webkit-mask: url(images/common/arrow-white-short) no-repeat center / contain;
    mask: url(images/common/arrow-white-short) no-repeat center / contain;
}
/*右矢印白→グレー付き*/
.has__arrow-g::after {	
    content: "";
    display: inline-block;
    width: 34px;
    height: 4px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 21px;
    background-color: #fff;
    -webkit-mask: url(images/common/arrow-white-short) no-repeat center / contain;
    mask: url(images/common/arrow-white-short) no-repeat center / contain;
}
@media screen and (max-width : 350px) {
	.button-d {
		padding-right: 0;
	}
	.has__arrow-s::after {
		content: none;
	}
}
/*----------------------------------------------
CTA用
---------------------------------------------- */
.cta__btn a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 16px;
    width: 256px;
    height: 44px;
    position: relative;
    font-size: 14px;
    justify-content: center;
}
.cta__btn-icon a::before,
.btn--mail::before {
    content: "";
    display: block;
    position: absolute;
    left: 15px;
}
/* メールアイコン */
.cta__btn--mail a {
    background: var(--red);
    color: #fff!important;
    font-weight: 700;
    border: 1px solid var(--red);
    padding-left: 31px;
}
.cta__btn--mail a::before {
    width: 16px;
    height: 12px;
    background-color: #fff;
    -webkit-mask: url(images/common/icon-mail.svg) no-repeat center / contain;
    mask: url(images/common/icon-mail.svg) no-repeat center / contain;
    transition: background-color 0.3s ease;
}
/*マップアイコン*/
.cta__btn--map a {
    background: #fff;
    color: #000;
    font-weight: 600;
    border: 1px solid #fff;
}
.cta__btn--map a::before {
    width: 14px;
    height: 18px;
    background-color: var(--red);
    -webkit-mask: url(images/common/icon-map.svg) no-repeat center / contain;
    mask: url(images/common/icon-map.svg) no-repeat center / contain;
    transition: background-color 0.3s ease;
}
/*カレンダーアイコン*/
.cta__btn--calendar a {
    background: var(--beige);
    color: #fff;
    font-weight: 600;
    border: 1px solid var(--beige);
}
.cta__btn--calendar a::before {
    width: 14px;
    height: 14px;
    background-color: #fff;
    -webkit-mask: url(images/common/icon-calendar.svg) no-repeat center / contain;
    mask: url(images/common/icon-calendar.svg) no-repeat center / contain;
    transition: background-color 0.3s ease;
}
/*衣装アイコン*/
.cta__btn--dress a {
    background: var(--beige);
    color: #fff!important;
    border: 1px solid var(--beige);
}
.cta__btn--dress a::before {
    width: 17px;
    height: 17px;
    transition: background-color 0.3s ease;
    background: url(images/common/icon-dress.svg) no-repeat center / contain;
}
/*----------------------------------------------
3つ並んでるボタンエリア
---------------------------------------------- */
.link__other {
    width: 100%;
    margin: auto;
    padding: 105px 20px 26px;
}
.link__other .buttons {
    flex-wrap: wrap;
    gap: 45px;
}
.link__other-item {
    width: 100%;
}
.link__other-item a {
    display: flex;
    justify-content: center; 
    align-items: center;
    border: 1px solid var(--beige);
    background: #fff;
    width: 100%;
    height: 100%;
    position: relative;
}
.link__other-item span {
    display: flex; 
    align-items: center;
}
.link__other-item span::after {
    content: "";
    display: inline-block;
    width: 66px;
    height: 5px;
    background: url(images/common/arrow.svg) center / cover no-repeat;
    margin-left: 15px;
    transition: transform 0.3s ease;
}
.link__icon-s span::after {
    width: 34px;
    height: 4px;	
    background: url(images/common/arrow-short.svg) center / cover no-repeat;
}
.link__other-item:hover span::after {
    transform: translateX(8px);
}
/*ちょっと短い*/
.link__button-s {
    max-width: 290px;
    height: 58px;
}
.link__button-s a {
    font-size: 16px;
}
/*ちょっと長い*/
.link__button-m {
    max-width: 320px;
    height: 58px;
}
.link__button-m a {
    font-size: 16px;
}
/*もうちょっと長い*/
.link__button-l {
    max-width: 370px;
    height: 80px;
}
.link__button-l a {
    font-size: 18px;
}
/*丸み*/
.link__button-r {
    border-radius: 40px;
}
/*insta-icon*/
.has__insta a::before {
    content: "";
    display: block; 
    position: absolute; 
    left: 38px;
    top: 50%;
    transform: translateY(-50%); /* 縦中央に配置 */
    width: 29px;
    height: 29px;
    background: url(images/common/icon-insta.png) center / cover no-repeat;
}
@media screen and (max-width : 767px) {
	.link__other {
		padding: 20px 15px;
	}
	.link__other .buttons {
		gap: 20px;
	}
}
@media (hover: hover) and (pointer: fine) {/*PCだけホバーアクション*/
    .more__button:hover::after {
        transform: translateX(8px);
    }
    .button-bg-b:hover {
        background: #fff;
        color: var(--beige);
        transition: .3s;
    }
    .has__arrow:hover::after {
        transform: translateX(8px);
    }
    .button-bg-g:hover {
        background: #fff;
        color: #B4B4B4;
        transition: .3s;
    }
    .has__arrow-below:hover::before {
        transform: translateY(4px);
    }
    .simple__button:hover::before {
        transition: .3s;
        transform: translateY(5px);
    }
    .has__arrow-b:hover::after {
        transform: translateX(8px);
        background-color: var(--beige);
    }
    .has__arrow-g:hover::after {
        transform: translateX(8px);
        background-color: #B4B4B4;
    }
    .cta__btn--mail a:hover {
        background: #fff;
        color: var(--red)!important;
    }
    .cta__btn--mail a:hover::before {
        background-color: var(--red);
    }
    .cta__btn--map a:hover {
        background: #000;
        color: #fff;
    }
    .cta__btn--map a:hover::before {
        background-color: #fff;
    }
    .cta__btn--calendar a:hover {
        background: #fff;
        color: var(--beige);
    }
    .cta__btn--calendar a:hover::before {
        background-color: var(--beige);
    }
    .cta__btn--dress a:hover {
        background: #fff;
        color: var(--beige)!important;
    }
    .cta__btn--dress a:hover::before {
        background: var(--beige);
        -webkit-mask: url(images/common/icon-dress.svg) no-repeat center / contain;
        mask: url(images/common/icon-dress.svg) no-repeat center / contain;
    }
}
/* YouTubeクリック再生対応 */
.yt-lazy {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}
.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}
.yt-play:hover {
    background: rgba(0, 0, 0, 0.8);
}