@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Noto Serif JP", serif;
    --font-ns: "Noto Sans JP", sans-serif;
    --font-en: "Marcellus", serif;
    --font-ci: "Cormorant Infant", serif;
    --font-co: "Cormorant", serif;
    --font-sm: "Shippori Mincho", serif;
    --font-ly: "Lavishly Yours", cursive;
    --color-gray: #F2F2F2;
    --color-black: #606060;
    --header-height: 90px;
    --inner-padding-width: min(6%, calc((1591px - 1400px) / 2));
    --inner-outer-width: calc(50vw - min(1591px, 100vw) * 0.44);
    --blue: #43B9ED;
}
@media (max-width: 1280px) {
    :root {
        --header-height: 80px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --inner-padding-width: 4%;
        --inner-outer-width: calc(50vw - min(1591px, 100vw) * 0.46);
    }
}

.font-jp {
    font-family: var(--font-jp);
}

.font-en {
    font-family: var(--font-en);
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.7rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: #F8F5F2;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 768px) {
    html body {
        font-size: 1.5rem;
    }
}
html body main {
    padding-top: var(--header-height);
    overflow: hidden;
}

.lavishly-yours-regular {
    font-family: "Lavishly Yours", cursive;
    font-weight: 400;
    font-style: normal;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.vH {
    visibility: hidden;
}

.inner {
    width: min(100%, 1591px);
    margin: 0 auto;
    padding: 0 var(--inner-padding-width);
}

.grecaptcha-badge {
    visibility: hidden;
}

.pagination__archive .pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 1.8rem;
    font-family: var(--font-en);
}
.pagination__archive .pagination-list .current {
    width: 70px;
    aspect-ratio: 1;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .pagination__archive .pagination-list .current {
        width: 50px;
    }
}
.pagination__archive .pagination-list .previous a {
    display: block;
    width: 6px;
    aspect-ratio: 6/12;
    background: url(../img/common/arrow_previous.svg) center/contain no-repeat;
}
.pagination__archive .pagination-list .next a {
    display: block;
    width: 6px;
    aspect-ratio: 6/12;
    background: url(../img/common/arrow_next.svg) center/contain no-repeat;
}
.pagination__archive .pagination-list .first a {
    display: block;
    width: 12px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_first.svg) center/contain no-repeat;
}
.pagination__archive .pagination-list .last a {
    display: block;
    width: 12px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_last.svg) center/contain no-repeat;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }
}

.sp {
    display: none;
}
@media (max-width: 768px) {
    .sp {
        display: block;
    }
}

@media (max-width: 1280px) {
    .pc1280 {
        display: none !important;
    }
}

.sp1280 {
    display: none;
}
@media (max-width: 1280px) {
    .sp1280 {
        display: block;
    }
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    display: none;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 28px;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
.menu-trigger span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - 15px);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - 8px);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + 8px);
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span {
    background-color: var(--color-black);
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@media (max-width: 1000px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 768px) {
    .menu-trigger {
        top: 23px;
        right: 10px;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: 30px;
        left: calc(50% - 15px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 30px;
        left: calc(50% - 15px);
    }
    100% {
        width: 30px;
        left: calc(50% - 15px);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}
header.scrolled {
    background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1700px) {
    header {
        padding: 0 20px;
    }
}

.header__logo__uppepr {
    font-size: 1.2rem;
    font-weight: 500;
    color: #363636;
}
@media (max-width: 1700px) {
    .header__logo__uppepr {
        font-size: 1rem;
    }
}

.header__logo__bottom {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    color: #363636;
}
@media (max-width: 1700px) {
    .header__logo__bottom {
        gap: 10px;
    }
}

.header__logo__img {
    max-width: 156px;
}
@media (max-width: 1700px) {
    .header__logo__img {
        max-width: 100px;
    }
}

.header__logo__produce {
    font-size: 1.4rem;
    font-family: var(--font-en);
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
}
@media (max-width: 1700px) {
    .header__logo__produce {
        font-size: 1.2rem;
    }
}

.header__right {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}
@media (max-width: 1700px) {
    .header__right {
        gap: 15px;
    }
}
@media (max-width: 1000px) {
    .header__right {
        display: none;
    }
}

.header__menu {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 400;
    gap: 40px;
    height: 100%;
}
.header__menu > li {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__menu > li a {
    position: relative;
}
.header__menu > li a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--color-black);
    transition: 0.4s;
    transform: scale(0, 1);
}
.header__menu > li a:hover {
    opacity: unset;
}
.header__menu > li a:hover::before {
    transform: scale(1, 1);
}
@media (max-width: 1700px) {
    .header__menu {
        gap: 15px;
        font-size: 1.3rem;
    }
}

.header__menu__has__sub__menu {
    position: relative;
}
.header__menu__has__sub__menu:hover .header__menu__sub__menu {
    display: flex;
}

.header__menu__sub__menu {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    background: #fff;
    white-space: nowrap;
    flex-direction: column;
    align-items: center;
}
.header__menu__sub__menu > a {
    padding: 5px 10px;
}

.header__link {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}
@media (max-width: 1700px) {
    .header__link {
        gap: 10px;
    }
}
@media (max-width: 1280px) {
    .header__link {
        display: none;
    }
}

.header__link__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 160px;
    height: 36px;
    font-size: 1.4rem;
    font-weight: 500;
    gap: 8px;
}
@media (max-width: 1700px) {
    .header__link__btn {
        font-size: 1.2rem;
        width: 130px;
        height: 32px;
    }
}
@media (max-width: 768px) {
    .header__link__btn {
        font-size: 1rem;
        width: 100%;
    }
}
.header__link__btn.line {
    background: #06C755;
}
.header__link__btn.line .free {
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 15px;
    border-radius: 11px;
    border: 1px solid #fff;
}
.header__link__btn.reservation {
    background: #BF7C7C;
}
.header__link__btn.contact {
    background: #966E6E;
}

.fixed__menu {
    display: none;
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 32px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    background: #FDFAF4;
}
@media (max-width: 1280px) {
    .fixed__menu {
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
}
@media (max-width: 768px) {
    .fixed__menu {
        width: 100%;
    }
    .fixed__menu > * {
        width: 33.3333333333%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #F8F5F2;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding: 80px 45px 0;
    }
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.4s;
    }
}

.nav__menu {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.nav__menu li {
    padding: 10px 0;
    text-align: center;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #F3EDE9;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }
}

.footer__link {
    display: inline-block;
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/link.svg) center/contain no-repeat;
}

.footer__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    color: #363636;
    font-size: 1.2rem;
}
@media (max-width: 1280px) {
    .footer__logo {
        font-size: 1rem;
    }
}

.footer__logo__img {
    max-width: 156px;
}
@media (max-width: 1280px) {
    .footer__logo__img {
        max-width: 130px;
    }
}

.footer__logo__produce {
    font-size: 1.4rem;
}
@media (max-width: 1280px) {
    .footer__logo__produce {
        font-size: 1.2rem;
    }
}

.footer__instagram {
    display: block;
    width: 17px;
}
@media (max-width: 768px) {
    .footer__instagram {
        margin: 0 auto;
    }
}

.footer__center {
    font-size: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
}
@media (max-width: 1280px) {
    .footer__center {
        font-size: 1.4rem;
        gap: 10px;
    }
}
.footer__center ul {
    font-size: 1.6rem;
    border-left: 1px solid #606060;
    padding-left: 15px;
    margin-bottom: 10px;
}
@media (max-width: 1280px) {
    .footer__center ul {
        font-size: 1.3rem;
        padding-left: 10px;
    }
}
.footer__center a {
    display: flex;
    -ms-flex-align: baseline;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}
.footer__center a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--color-black);
    transform: scale(0, 1);
    transition: 0.4s;
}
.footer__center a:hover {
    opacity: unset;
}
.footer__center a:hover::before {
    transform: scale(1, 1);
}

.footer__right__a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 70px;
    background: #fff;
    border-radius: 35px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    font-size: 1.8rem;
    font-weight: 400;
    transition: transform 0.2s;
}
.footer__right__a:hover {
    opacity: unset;
    transform: scale(1.05);
}
@media (max-width: 1280px) {
    .footer__right__a {
        width: 140px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.5rem;
    }
}

.nav__instagram {
    display: block;
    width: 20px;
    margin: 0 auto;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.campaign__header .inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
@media (max-width: 1280px) {
    .campaign__header .inner {
        gap: 40px;
        flex-wrap: wrap;
    }
}
.campaign__header .ttl__box {
    position: relative;
    --ttl-offset: 80px;
    left: calc(-1 * var(--ttl-offset));
}
@media (max-width: 1280px) {
    .campaign__header .ttl__box {
        --ttl-offset: 50px;
    }
}
@media (max-width: 768px) {
    .campaign__header .ttl__box {
        --ttl-offset: 10px;
    }
}
.campaign__header .ttl__box .bg {
    font-family: var(--font-en);
    font-weight: 400;
    color: #fff;
    font-size: 13rem;
    line-height: 1;
}
@media (max-width: 1280px) {
    .campaign__header .ttl__box .bg {
        font-size: 10rem;
    }
}
@media (max-width: 768px) {
    .campaign__header .ttl__box .bg {
        font-size: 6rem;
    }
}
.campaign__header .ttl__box .ttl {
    font-size: 3.4rem;
    font-weight: 500;
    position: absolute;
    left: var(--ttl-offset);
    bottom: 0;
    white-space: nowrap;
}
@media (max-width: 1280px) {
    .campaign__header .ttl__box .ttl {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .campaign__header .ttl__box .ttl {
        font-size: 2rem;
    }
}
.campaign__header .ttl__box::before {
    width: 50vw;
    aspect-ratio: 970/849;
    content: "";
    position: absolute;
    z-index: -1;
    top: -400px;
    left: -18vw;
    background: url(../img/common/lower_header_bg.webp) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .campaign__header .ttl__box::before {
        top: -300px;
    }
}
@media (max-width: 768px) {
    .campaign__header .ttl__box::before {
        top: -200px;
    }
}
.campaign__header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .campaign__header .breadcrumb {
        width: 100%;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .campaign__header .breadcrumb {
        font-size: 1.4rem;
        flex-wrap: wrap;
        gap: 15px;
    }
}
.campaign__header .breadcrumb li:not(:last-child) {
    position: relative;
    padding-right: 100px;
}
@media (max-width: 1280px) {
    .campaign__header .breadcrumb li:not(:last-child) {
        padding-right: 80px;
    }
}
@media (max-width: 768px) {
    .campaign__header .breadcrumb li:not(:last-child) {
        padding-right: 50px;
    }
}
.campaign__header .breadcrumb li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 72px;
    height: 1px;
    background: #000;
}
@media (max-width: 1280px) {
    .campaign__header .breadcrumb li:not(:last-child)::before {
        width: 60px;
    }
}
@media (max-width: 768px) {
    .campaign__header .breadcrumb li:not(:last-child)::before {
        width: 35px;
    }
}

.pagination__single {
    padding: 0 75px;
    font-family: var(--font-en);
    font-weight: 400;
}
@media (max-width: 1280px) {
    .pagination__single {
        padding: 0 40px;
    }
}
@media (max-width: 768px) {
    .pagination__single {
        padding: 0;
    }
}
.pagination__single .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pagination__single .next, .pagination__single .previous {
    padding-bottom: 15px;
    width: 130px;
    position: relative;
}
.pagination__single .next::before, .pagination__single .previous::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 80%;
    height: 1px;
    background: #707070;
    transition: width 0.2s;
}
.pagination__single .next:hover, .pagination__single .previous:hover {
    opacity: unset;
}
.pagination__single .next:hover::before, .pagination__single .previous:hover::before {
    width: 100%;
}
@media (max-width: 1280px) {
    .pagination__single .next, .pagination__single .previous {
        width: 80px;
        padding-bottom: 10px;
    }
}
.pagination__single .next {
    text-align: right;
}
.pagination__single .next::before {
    right: 0;
}
.pagination__single .btn__return {
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in;
}
.pagination__single .btn__return:hover {
    opacity: unset;
    color: #fff;
    background: #000;
}
@media (max-width: 1280px) {
    .pagination__single .btn__return {
        width: 240px;
        height: 60px;
        border-radius: 30px;
    }
}
@media (max-width: 768px) {
    .pagination__single .btn__return.pc {
        display: none;
    }
}
.pagination__single .btn__return.sp {
    display: none;
}
@media (max-width: 768px) {
    .pagination__single .btn__return.sp {
        display: flex;
        margin: 50px auto 0;
    }
}

.ceremony__detail {
    padding: 20px;
    background: #fff;
    font-family: var(--font-ns);
    font-weight: 400;
}
@media (max-width: 768px) {
    .ceremony__detail {
        padding: 15px;
    }
}

.ceremony__detail__address, .ceremony__detail__access {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ceremony__detail__logo__address {
    display: block;
    width: 11px;
    aspect-ratio: 11/15;
    background: url(../img/ceremony/address.svg) center/contain no-repeat;
    flex-shrink: 0;
}

.ceremony__detail__logo__access {
    display: block;
    width: 12px;
    aspect-ratio: 12/15;
    background: url(../img/ceremony/access.svg) center/contain no-repeat;
    flex-shrink: 0;
}

.ceremony__detail__table th, .ceremony__detail__table td {
    padding: 3px 0;
}
.ceremony__detail__table th {
    color: #907070;
    font-weight: 600;
    padding-right: 20px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .ceremony__detail__table th {
        padding-right: 10px;
    }
}

.location__breadcrumb .breadcrumb {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.6rem;
}
@media (max-width: 768px) {
    .location__breadcrumb .breadcrumb {
        font-size: 1.4rem;
    }
}
.location__breadcrumb .breadcrumb li:not(:last-child) {
    position: relative;
    padding-right: 12px;
}
.location__breadcrumb .breadcrumb li:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 1px;
    background: #333333;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.location__breadcrumb .breadcrumb .this {
    color: #9F937B;
}

/* ------------------------------------- /
/  パーツテンプレート
/* ------------------------------------- */
.template__consult {
    text-align: center;
}

.template__consult__wrapper {
    position: relative;
}
.template__consult__wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100px;
    right: 100px;
    background: #FDFCFB;
    z-index: -1;
}
@media (max-width: 1280px) {
    .template__consult__wrapper::before {
        left: 0;
        right: 0;
    }
}

.template__consult__h2__en {
    font-size: 8rem;
    font-family: var(--font-en);
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .template__consult__h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .template__consult__h2__en {
        font-size: 4.2rem;
    }
}

.template__consult__h2 {
    font-size: 2.4rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .template__consult__h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .template__consult__h2 {
        font-size: 1.6rem;
    }
}

.template__consult__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
@media (max-width: 1280px) {
    .template__consult__container {
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
}

.template__consult__container__box {
    width: 420px;
    max-width: 100%;
    padding-top: 100px;
    padding-bottom: 90px;
    border: 1px solid #606060;
    border-radius: 250px 250px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .template__consult__container__box {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

.template__consult__container__box__h3 {
    font-size: 3rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .template__consult__container__box__h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .template__consult__container__box__h3 {
        font-size: 2rem;
    }
}

.template__consult__container__box__tel {
    font-size: 3rem;
}
@media (max-width: 1280px) {
    .template__consult__container__box__tel {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .template__consult__container__box__tel {
        font-size: 2rem;
    }
}

.template__consult__container__img {
    width: 63%;
}
@media (max-width: 1280px) {
    .template__consult__container__img {
        width: 100%;
    }
}

.template__contact {
    font-weight: 400;
}

.template__contact__contact__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.template__contact__contact__header__ttl__h2 {
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .template__contact__contact__header__ttl__h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .template__contact__contact__header__ttl__h2 {
        font-size: 1.8rem;
    }
}

.template__contact__contact__header__ttl__h2__en {
    font-size: 8rem;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .template__contact__contact__header__ttl__h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .template__contact__contact__header__ttl__h2__en {
        font-size: 4.5rem;
    }
}

.template__contact__contact__header__txt {
    font-size: 2.2rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .template__contact__contact__header__txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .template__contact__contact__header__txt br {
        display: none;
    }
}

.template__contact__container {
    display: flex;
    margin-top: 140px;
}
@media (max-width: 1280px) {
    .template__contact__container {
        margin-top: 90px;
    }
}
@media (max-width: 768px) {
    .template__contact__container {
        flex-direction: column-reverse;
        margin-top: 50px;
    }
}

.template__contact__container__img {
    width: 50%;
    position: relative;
    padding-right: 50px;
}
@media (max-width: 768px) {
    .template__contact__container__img {
        width: 100%;
    }
}

.template__contact__container__img__img {
    position: absolute;
    width: calc(50vw - 50px);
    right: 50px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
}

.template__contact__container__txt {
    width: 50%;
    padding: 0 50px;
    text-align: center;
}
@media (max-width: 1280px) {
    .template__contact__container__txt {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .template__contact__container__txt {
        width: 100%;
    }
}

.template__contact__container__txt__btn {
    height: 100px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
    gap: 20px;
    transition: transform 0.2s;
}
.template__contact__container__txt__btn:hover {
    opacity: unset;
    transform: scale(1.05);
}
@media (max-width: 1280px) {
    .template__contact__container__txt__btn {
        height: 80px;
        border-radius: 40px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .template__contact__container__txt__btn {
        height: 60px;
        border-radius: 30px;
        font-size: 1.6rem;
    }
}
.template__contact__container__txt__btn.line::before {
    content: "";
    display: block;
    width: 43px;
    aspect-ratio: 1;
    background: url(../img/common/line.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .template__contact__container__txt__btn.line::before {
        width: 36px;
    }
}
@media (max-width: 768px) {
    .template__contact__container__txt__btn.line::before {
        width: 30px;
    }
}

.template__contact__container__txt__tel {
    font-size: 3.5rem;
}
@media (max-width: 1280px) {
    .template__contact__container__txt__tel {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .template__contact__container__txt__tel {
        font-size: 2.2rem;
    }
}

.template__contact__container__txt__tel__a {
    font-size: 5.2rem;
}
@media (max-width: 1280px) {
    .template__contact__container__txt__tel__a {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .template__contact__container__txt__tel__a {
        font-size: 3rem;
    }
}

.template__lookup__wrapper {
    background: url(../img/top/lookup_dress_bg.webp) center/cover no-repeat;
    padding: 35px;
}
@media (max-width: 1280px) {
    .template__lookup__wrapper {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .template__lookup__wrapper {
        padding: 15px;
    }
}

.template__lookup__wrapper__bg__gray {
    -webkit-backdrop-filter: blur(9.1343002319px);
            backdrop-filter: blur(9.1343002319px);
    --webkit-backdrop-filter: blur(9.134300231933594px);
    background-color: rgba(0, 0, 0, 0.21);
    min-height: 340px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 70px;
}
@media (max-width: 1280px) {
    .template__lookup__wrapper__bg__gray {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .template__lookup__wrapper__bg__gray {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 30px;
        padding: 20px;
        min-height: unset;
    }
}

.template__lookup__wrapper__bg__gray__txt {
    font-size: 1.6rem;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .template__lookup__wrapper__bg__gray__txt {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .template__lookup__wrapper__bg__gray__txt {
        font-size: 1.4rem;
    }
}

.template__lookup__wrapper__bg__gray__txt__h2 {
    font-size: 4.5rem;
    letter-spacing: 0.06em;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .template__lookup__wrapper__bg__gray__txt__h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .template__lookup__wrapper__bg__gray__txt__h2 {
        font-size: 2.8rem;
    }
}

.template__lookup__wrapper__bg__gray__btn {
    padding-right: 72px;
    position: relative;
}
@media (max-width: 1280px) {
    .template__lookup__wrapper__bg__gray__btn {
        padding-right: 50px;
    }
}
.template__lookup__wrapper__bg__gray__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 42px;
    aspect-ratio: 1;
    background: url(../img/common/link_wh.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .template__lookup__wrapper__bg__gray__btn::before {
        width: 35px;
    }
}

.template__lookup__wrapper__bg__gray__btn__img {
    max-width: 168px;
}
@media (max-width: 1280px) {
    .template__lookup__wrapper__bg__gray__btn__img {
        max-width: 140px;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.top__mv {
    position: relative;
    padding-bottom: 200px;
}
.top__mv::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 77%;
    top: 200px;
    bottom: -400px;
    right: 0;
    background: #F3EDE9;
}
@media (max-width: 1280px) {
    .top__mv::before {
        top: 100px;
        bottom: -300px;
    }
}
@media (max-width: 768px) {
    .top__mv::before {
        bottom: -200px;
    }
}
@media (max-width: 1280px) {
    .top__mv {
        padding-bottom: 100px;
    }
}
@media (max-width: 768px) {
    .top__mv {
        padding-bottom: 60px;
    }
}

.top__mv__slider {
    width: 80%;
}
@media (max-width: 768px) {
    .top__mv__slider {
        width: 100%;
    }
}

.top__mv__img {
    aspect-ratio: 1540/810;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 768px) {
    .top__mv__img {
        height: 50vh;
        -o-object-fit: cover;
           object-fit: cover;
    }
}

.top__mv__right {
    position: absolute;
    right: 100px;
    bottom: 100px;
    z-index: 2;
}
@media (max-width: 1280px) {
    .top__mv__right {
        right: 40px;
        bottom: 50px;
    }
}
@media (max-width: 768px) {
    .top__mv__right {
        position: unset;
        margin-top: 20px;
        padding: 0 20px;
    }
}

.top__mv__num {
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-en);
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 14px;
}
@media (max-width: 1280px) {
    .top__mv__num {
        font-size: 1.8rem;
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .top__mv__num {
        font-size: 1.6rem;
        gap: 10px;
    }
}
.top__mv__num .border {
    width: 72px;
    height: 1px;
    background: #000000;
}
@media (max-width: 1280px) {
    .top__mv__num .border {
        width: 55px;
    }
}
@media (max-width: 768px) {
    .top__mv__num .border {
        width: 44px;
    }
}

.top__mv__right .swiper {
    width: 520px;
    height: 400px;
}
@media (max-width: 1280px) {
    .top__mv__right .swiper {
        width: 440px;
        height: 300px;
    }
}
@media (max-width: 1000px) {
    .top__mv__right .swiper {
        width: 380px;
        height: 260px;
    }
}
@media (max-width: 768px) {
    .top__mv__right .swiper {
        margin: 0 auto;
        max-width: 100%;
    }
}

.top__mv__right__box {
    width: 520px;
    height: 400px;
    padding: 50px;
    background: #fff;
    font-size: 2.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 1280px) {
    .top__mv__right__box {
        width: 440px;
        height: 300px;
        padding: 30px;
        font-size: 2rem;
        gap: 30px;
    }
}
@media (max-width: 1000px) {
    .top__mv__right__box {
        width: 380px;
        height: 260px;
        padding: 15px;
        font-size: 1.8rem;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .top__mv__right__box {
        margin: 0 auto;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 1.6rem;
    }
}
.top__mv__right__box:hover {
    opacity: unset;
}
.top__mv__right__box img {
    max-width: 364px;
    margin: 0 auto;
    max-height: 100px;
}
@media (max-width: 1280px) {
    .top__mv__right__box img {
        max-width: 300px;
    }
}
@media (max-width: 1000px) {
    .top__mv__right__box img {
        max-width: 250px;
    }
}

.campaign__container .thumbnail img {
    aspect-ratio: 560/340;
    -o-object-fit: cover;
       object-fit: cover;
}

.top__campaign__btn {
    font-family: var(--font-en);
    font-size: 2rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #707070;
    width: 394px;
    text-align: right;
}
@media (max-width: 1280px) {
    .top__campaign__btn {
        font-size: 1.8rem;
        width: 180px;
    }
}
@media (max-width: 768px) {
    .top__campaign__btn {
        margin: 0 auto;
        font-size: 1.6rem;
        text-align: center;
        padding-bottom: 10px;
    }
}

.top__campaign__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.top__campaign__header__left {
    display: flex;
    align-items: baseline;
    gap: 30px;
}
@media (max-width: 1280px) {
    .top__campaign__header__left {
        gap: 20px;
    }
}

.top__campaign__header__left__h2__en {
    font-size: 8rem;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .top__campaign__header__left__h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .top__campaign__header__left__h2__en {
        font-size: 4rem;
    }
}

.top__campaign__header__left__h2 {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .top__campaign__header__left__h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__campaign__header__left__h2 {
        font-size: 1.6rem;
    }
}

.top__campaign__num {
    font-family: var(--font-en);
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 14px;
}
@media (max-width: 768px) {
    .top__campaign__num {
        font-size: 1.6rem;
    }
}

.top__campaign__num__border {
    width: 168px;
    height: 1px;
    background: #000000;
}

.top__news__container {
    background: url(../img/top/top_news_bg.svg) left 23% center/contain no-repeat;
}

.top__news__container__inner {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .top__news__container__inner {
        flex-direction: column;
        row-gap: 30px;
    }
}

.top__news__container__inner__btn {
    display: block;
    font-size: 2rem;
    font-family: var(--font-en);
    line-height: 1.5;
    width: 240px;
    border-bottom: 1px solid #707070;
    padding-bottom: 20px;
}
.top__news__container__inner__btn.sp {
    display: none;
}
@media (max-width: 1280px) {
    .top__news__container__inner__btn {
        font-size: 1.8rem;
        width: 140px;
        padding-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .top__news__container__inner__btn {
        margin: 0 auto;
        text-align: center;
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    .top__news__container__inner__btn.sp {
        display: block;
    }
}

.top__news__left__h2__en {
    font-size: 8rem;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__news__left__h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .top__news__left__h2__en {
        font-size: 4.5rem;
    }
}

.top__news__left__h2 {
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .top__news__left__h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__news__left__h2 {
        font-size: 1.8rem;
    }
}

.top__news__list {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
@media (max-width: 1280px) {
    .top__news__list {
        width: 75%;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .top__news__list {
        width: 100%;
        row-gap: 30px;
    }
}

.top__news__list__news {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
@media (max-width: 1280px) {
    .top__news__list__news {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .top__news__list__news {
        gap: 15px;
    }
}

.top__news__list__news__thumbnail {
    width: 210px;
}
@media (max-width: 1280px) {
    .top__news__list__news__thumbnail {
        width: 180px;
    }
}
@media (max-width: 768px) {
    .top__news__list__news__thumbnail {
        width: 120px;
    }
}

.top__news__list__news__detail {
    flex: 1 1;
}

.top__news__list__news__detail__date {
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    font-family: var(--font-ci);
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .top__news__list__news__detail__date {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__news__list__news__detail__date {
        font-size: 1.6rem;
    }
}

.top__news__list__news__detail__ttl {
    font-family: var(--font-ns);
    font-weight: 400;
}

.top__about {
    position: relative;
}
.top__about::before {
    content: "";
    position: absolute;
    left: -5%;
    top: -20%;
    z-index: -1;
    width: 50%;
    aspect-ratio: 970/849;
    background: url(../img/top/top_about_bg.webp) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__about::before {
        top: -5%;
    }
}
@media (max-width: 768px) {
    .top__about::before {
        top: 0;
    }
}

.top__about__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 768px) {
    .top__about__inner {
        flex-direction: column;
        justify-content: unset;
        row-gap: 30px;
    }
}

.top__about__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--font-en);
    transition: all 0.2s ease-in;
}
.top__about__btn:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
.top__about__btn.sp {
    display: none;
}
@media (max-width: 768px) {
    .top__about__btn.sp {
        display: flex;
        margin: 0 auto;
    }
}
@media (max-width: 1280px) {
    .top__about__btn {
        width: 220px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .top__about__btn {
        width: 200px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}

.top__about__inner__left__h2__en {
    font-size: 14.8rem;
    font-family: var(--font-en);
    color: #fff;
    line-height: 1;
    position: relative;
    left: -50px;
}
@media (max-width: 1280px) {
    .top__about__inner__left__h2__en {
        font-size: 10rem;
    }
}
@media (max-width: 768px) {
    .top__about__inner__left__h2__en {
        font-size: 6rem;
        left: 0;
    }
}

.top__about__inner__left__h2 {
    margin-top: -80px;
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.9;
    position: relative;
}
@media (max-width: 1280px) {
    .top__about__inner__left__h2 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .top__about__inner__left__h2 {
        font-size: 2rem;
    }
}

.top__about__inner__left__produce {
    font-size: 2rem;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .top__about__inner__left__produce {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__about__inner__left__produce {
        font-size: 1.6rem;
    }
}

.top__about__inner__txt {
    margin-top: 80px;
    width: 50%;
    line-height: 2.4;
}
@media (max-width: 1280px) {
    .top__about__inner__txt {
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .top__about__inner__txt {
        width: 100%;
        margin-top: unset;
    }
}

.top__brand {
    text-align: center;
}

.top__brand__h2__en {
    font-family: var(--font-en);
    font-size: 6rem;
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__brand__h2__en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .top__brand__h2__en {
        font-size: 3.6rem;
    }
}

.top__brand__h2 {
    font-size: 2rem;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .top__brand__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__brand__h2 {
        font-size: 1.6rem;
    }
}

.top__brand__container {
    display: flex;
}
@media (max-width: 768px) {
    .top__brand__container {
        flex-wrap: wrap;
    }
}
.top__brand__container > div {
    width: 25%;
}
@media (max-width: 768px) {
    .top__brand__container > div {
        width: 50%;
    }
}
.top__brand__container > div:nth-of-type(2n) {
    margin-top: 70px;
}
@media (max-width: 1280px) {
    .top__brand__container > div:nth-of-type(2n) {
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .top__brand__container > div:nth-of-type(2n) {
        margin-top: unset;
    }
}
.top__brand__container > div:nth-of-type(2n + 1) {
    margin-bottom: 70px;
}
@media (max-width: 1280px) {
    .top__brand__container > div:nth-of-type(2n + 1) {
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .top__brand__container > div:nth-of-type(2n + 1) {
        margin-bottom: unset;
    }
}

.top__brand__container__a {
    display: block;
    transition: transform 0.2s ease-in;
}
.top__brand__container__a:hover {
    opacity: unset;
    transform: translateY(-10px);
}
.top__brand__container__a img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.top__reason__inner {
    position: relative;
}
.top__reason__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    bottom: 80px;
    background: #FDFCFB;
    z-index: -1;
}
@media (max-width: 1280px) {
    .top__reason__inner::before {
        bottom: 40px;
    }
}
@media (max-width: 768px) {
    .top__reason__inner::before {
        width: 100%;
        left: 0;
    }
}
.top__reason__inner::after {
    content: "REASON";
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14.8rem;
    font-family: var(--font-en);
    color: #F7ECE5;
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__reason__inner::after {
        font-size: 10rem;
    }
}
@media (max-width: 768px) {
    .top__reason__inner::after {
        font-size: 6rem;
    }
}

.top__reason__h2 {
    text-align: center;
    font-size: 4rem;
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__reason__h2 {
        font-size: 3.2rem;
    }
}
.top__reason__h2 .sm {
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .top__reason__h2 .sm {
        font-size: 2rem;
    }
}
.top__reason__h2 .bg {
    font-size: 7rem;
}
@media (max-width: 1280px) {
    .top__reason__h2 .bg {
        font-size: 5rem;
    }
}

.top__reason__container {
    display: flex;
    gap: 70px;
}
@media (max-width: 1280px) {
    .top__reason__container {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .top__reason__container {
        flex-direction: column;
        align-items: center;
        row-gap: 50px;
    }
}

.top__reason__container__box {
    width: calc((100% - 140px) / 3);
}
.top__reason__container__box:nth-child(2) {
    margin-top: 80px;
}
@media (max-width: 1280px) {
    .top__reason__container__box:nth-child(2) {
        margin-top: 50px;
    }
}
@media (max-width: 768px) {
    .top__reason__container__box:nth-child(2) {
        margin-top: unset;
    }
}
@media (max-width: 1280px) {
    .top__reason__container__box {
        width: calc((100% - 50px) / 3);
    }
}
@media (max-width: 768px) {
    .top__reason__container__box {
        width: 100%;
    }
}

.top__reason__container__box__img__wrapper {
    position: relative;
}
@media (max-width: 768px) {
    .top__reason__container__box__img__wrapper {
        margin: 0 auto;
        max-width: 200px;
    }
}

.top__reason__container__box__img__wrapper__num {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-en);
    font-size: 10rem;
    color: #BF7C7C;
}
@media (max-width: 1280px) {
    .top__reason__container__box__img__wrapper__num {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .top__reason__container__box__img__wrapper__num {
        font-size: 4rem;
    }
}

.top__reason__container__box__h3 {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .top__reason__container__box__h3 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__reason__container__box__h3 {
        font-size: 1.6rem;
    }
}

.top__movie {
    background: url(../img/top/movie_bg.svg) left top 40px/contain no-repeat;
}
.top__movie .h2__en {
    font-family: var(--font-en);
    font-size: 8rem;
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__movie .h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .top__movie .h2__en {
        font-size: 4rem;
    }
}
.top__movie h2 {
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .top__movie h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__movie h2 {
        font-size: 1.8rem;
    }
}

.movie__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media (max-width: 1280px) {
    .movie__container {
        gap: 20px;
    }
}
.movie__container > * {
    width: calc((100% - 40px) / 2);
    transition: transform 0.2s;
}
@media (max-width: 1280px) {
    .movie__container > * {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 768px) {
    .movie__container > * {
        width: 100%;
    }
}

.top__report {
    background: url(../img/top/top_report_bg.webp) left bottom/contain no-repeat;
}
.top__report .h2__en {
    font-size: 8rem;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__report .h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .top__report .h2__en {
        font-size: 4rem;
    }
}
.top__report h2 {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .top__report h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__report h2 {
        font-size: 1.8rem;
    }
}

.top__report__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 768px) {
    .top__report__header {
        flex-direction: column;
        align-items: flex-start;
    }
}
.top__report__header .txt {
    font-size: 2.2rem;
    text-align: right;
}
@media (max-width: 1280px) {
    .top__report__header .txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__report__header .txt {
        text-align: left;
    }
}

.top__report__list {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
@media (max-width: 1280px) {
    .top__report__list {
        gap: 30px;
        row-gap: 40px;
    }
}

.top__report__a {
    width: calc((100% - 140px) / 3);
}
@media (max-width: 1280px) {
    .top__report__a {
        width: calc((100% - 60px) / 3);
    }
}
@media (max-width: 768px) {
    .top__report__a {
        width: 100%;
    }
}
.top__report__a .ttl {
    font-family: var(--font-ns);
    font-weight: 400;
}

.top__report__btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    font-family: var(--font-en);
    transition: all 0.2s ease-in;
}
.top__report__btn:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
@media (max-width: 1280px) {
    .top__report__btn {
        width: 220px;
        height: 60px;
        border-radius: 30px;
    }
}
@media (max-width: 768px) {
    .top__report__btn {
        width: 180px;
        height: 50px;
        border-radius: 25px;
    }
}

.top__report__thumbnail {
    position: relative;
}
.top__report__thumbnail .date {
    position: absolute;
    top: 10px;
    left: 0;
    background: #fff;
    height: 30px;
    border-radius: 0 15px 15px 0;
    padding: 0 15px;
    font-family: var(--font-ci);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    display: flex;
    align-items: center;
}
@media (max-width: 1280px) {
    .top__report__thumbnail .date {
        padding: 0 10px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__report__thumbnail .date {
        font-size: 1.6rem;
    }
}
.top__report__thumbnail img {
    aspect-ratio: 420/280;
    -o-object-fit: cover;
       object-fit: cover;
}

.top__flow_faq__wh__bg {
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: stretch;
    gap: 60px;
}
@media (max-width: 1280px) {
    .top__flow_faq__wh__bg {
        padding: 20px;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .top__flow_faq__wh__bg {
        justify-content: space-between;
        gap: 15px;
    }
}

.top__flow_faq__img {
    width: calc(100% - 60px - 240px);
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 1280px) {
    .top__flow_faq__img {
        width: calc(100% - 30px - 200px);
    }
}
@media (max-width: 768px) {
    .top__flow_faq__img {
        width: calc(100% - 15px - 150px);
    }
}

.top__flow_faq__txt {
    margin-top: 10px;
    width: 240px;
    text-align: center;
}
@media (max-width: 1280px) {
    .top__flow_faq__txt {
        width: 200px;
    }
}
@media (max-width: 768px) {
    .top__flow_faq__txt {
        width: 150px;
    }
}
.top__flow_faq__txt .h2__en {
    font-size: 6rem;
    font-family: var(--font-en);
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__flow_faq__txt .h2__en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .top__flow_faq__txt .h2__en {
        font-size: 3.6rem;
    }
}
.top__flow_faq__txt h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .top__flow_faq__txt h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__flow_faq__txt h2 {
        font-size: 1.6rem;
    }
}
.top__flow_faq__txt ul li {
    border-bottom: 1px solid #707070;
}
.top__flow_faq__txt ul a {
    display: block;
    height: 100%;
    width: 100%;
    padding: 25px;
    transition: 0.2s;
}
@media (max-width: 1280px) {
    .top__flow_faq__txt ul a {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .top__flow_faq__txt ul a {
        padding: 10px 5px;
    }
}
.top__flow_faq__txt ul a:hover {
    opacity: unset;
    color: #fff;
    background: #707070;
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.page-template-page-news__inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
@media (max-width: 768px) {
    .page-template-page-news__inner {
        gap: 30px;
    }
}

.page-template-page-news__inner__a {
    display: flex;
    gap: 50px;
}
.page-template-page-news__inner__a:hover {
    opacity: unset;
}
.page-template-page-news__inner__a:hover .page-template-page-news__inner__a__txt::before {
    width: 100%;
}
@media (max-width: 1280px) {
    .page-template-page-news__inner__a {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-news__inner__a {
        align-items: flex-start;
        gap: 20px;
    }
}

.page-template-page-news__inner__a__thumbnail {
    width: 260px;
}
@media (max-width: 1280px) {
    .page-template-page-news__inner__a__thumbnail {
        width: 200px;
    }
}
@media (max-width: 768px) {
    .page-template-page-news__inner__a__thumbnail {
        width: 140px;
    }
}

.page-template-page-news__inner__a__txt {
    flex: 1 1;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-top: 25px;
    position: relative;
}
.page-template-page-news__inner__a__txt::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 1px;
    width: 20%;
    background: #707070;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .page-template-page-news__inner__a__txt {
        gap: 40px;
        padding-top: 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-news__inner__a__txt {
        flex-direction: column;
        gap: 20px;
    }
}

.page-template-page-news__inner__a__txt__left {
    max-width: 780px;
}

.page-template-page-news__inner__a__txt__left__ttl {
    font-family: var(--font-ns);
    font-weight: 400;
}

.page-template-page-news__inner__a__txt__left__date {
    font-family: var(--font-ci);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
}
@media (max-width: 1280px) {
    .page-template-page-news__inner__a__txt__left__date {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-news__inner__a__txt__left__date {
        font-size: 1.6rem;
    }
}

.page-template-page-news__inner__a__txt__right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-width: 230px;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 20px;
}
@media (max-width: 1280px) {
    .page-template-page-news__inner__a__txt__right {
        min-width: 160px;
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-news__inner__a__txt__right {
        margin-left: auto;
        font-size: 1.6rem;
    }
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
}
.single-post .breadcrumb li:first-child {
    position: relative;
    padding-right: 55px;
}
.single-post .breadcrumb li:first-child::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 35px;
    height: 1px;
    background: #000;
}

.single-post__date {
    font-family: var(--font-ci);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
}
@media (max-width: 1280px) {
    .single-post__date {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single-post__date {
        font-size: 1.6rem;
    }
}

.single-post__post__h1 {
    font-size: 4rem;
    padding-bottom: 30px;
    border-bottom: 1px solid #707070;
}
@media (max-width: 1280px) {
    .single-post__post__h1 {
        font-size: 3rem;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .single-post__post__h1 {
        font-size: 2.4rem;
        padding-bottom: 15px;
    }
}

.single-post__thumbnail {
    padding: 80px 75px 20px;
}
@media (max-width: 1280px) {
    .single-post__thumbnail {
        padding: 40px 30px 20px;
    }
}
@media (max-width: 768px) {
    .single-post__thumbnail {
        padding: 30px 0 20px;
    }
}

.single-post__post__content {
    padding: 0 75px;
}
@media (max-width: 1280px) {
    .single-post__post__content {
        padding: 0 30px;
    }
}
@media (max-width: 768px) {
    .single-post__post__content {
        padding: 0;
    }
}
.single-post__post__content p {
    line-height: 2.4;
    margin-top: 30px;
    font-family: var(--font-ns);
}
@media (max-width: 1280px) {
    .single-post__post__content p {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .single-post__post__content p {
        margin-top: 15px;
    }
}
.single-post__post__content h2 {
    margin-top: 60px;
    font-weight: 600;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 1280px) {
    .single-post__post__content h2 {
        margin-top: 40px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .single-post__post__content h2 {
        font-size: 1.8rem;
        margin-top: 30px;
        gap: 8px;
    }
}
.single-post__post__content h2::before {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #EFDFD5;
}
@media (max-width: 768px) {
    .single-post__post__content h2::before {
        width: 12px;
    }
}
.single-post__post__content h3, .single-post__post__content h4 {
    margin-top: 50px;
    font-weight: 600;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (max-width: 1280px) {
    .single-post__post__content h3, .single-post__post__content h4 {
        margin-top: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single-post__post__content h3, .single-post__post__content h4 {
        margin-top: 10px;
        font-size: 1.6rem;
        gap: 10px;
    }
}
.single-post__post__content h3::before, .single-post__post__content h4::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #606060;
}
@media (max-width: 768px) {
    .single-post__post__content h3::before, .single-post__post__content h4::before {
        width: 25px;
    }
}

/* ------------------------------------- /
/  キャンペーン一覧
/* ------------------------------------- */
.post-type-archive-campaign__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
@media (max-width: 1280px) {
    .post-type-archive-campaign__inner {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .post-type-archive-campaign__inner {
        gap: 30px;
    }
}

.post-type-archive-campaign__inner__post {
    width: calc((100% - 70px) / 2);
}
@media (max-width: 1280px) {
    .post-type-archive-campaign__inner__post {
        width: calc((100% - 40px) / 2);
    }
}
@media (max-width: 768px) {
    .post-type-archive-campaign__inner__post {
        width: 100%;
    }
}

.post-type-archive-campaign__thumbnail__img {
    aspect-ratio: 665/404;
    -o-object-fit: cover;
       object-fit: cover;
}

.post-type-archive-campaign__inner__post__date {
    font-family: var(--font-ci);
    font-weight: 500;
    font-style: italic;
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .post-type-archive-campaign__inner__post__date {
        font-size: 1.8rem;
    }
}

.post-type-archive-campaign__inner__post__ttl {
    font-family: var(--font-ns);
    font-weight: 400;
}

/* ------------------------------------- /
/  キャンペーン単体
/* ------------------------------------- */
.single-campaign .breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
}
.single-campaign .breadcrumb li:first-child {
    position: relative;
    padding-right: 55px;
}
.single-campaign .breadcrumb li:first-child::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 35px;
    height: 1px;
    background: #000;
}

.single-campaign__post .thumbnail {
    padding: 0 75px;
}
@media (max-width: 1280px) {
    .single-campaign__post .thumbnail {
        padding: 0 40px;
    }
}
@media (max-width: 768px) {
    .single-campaign__post .thumbnail {
        padding: 0;
    }
}

.single-campaign__date {
    font-family: var(--font-ci);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
}
@media (max-width: 1280px) {
    .single-campaign__date {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single-campaign__date {
        font-size: 1.6rem;
    }
}

.single-campaign__h1 {
    font-size: 4rem;
    padding: 20px 0 30px;
    border-bottom: 1px solid #707070;
}
@media (max-width: 1280px) {
    .single-campaign__h1 {
        font-size: 3rem;
        padding: 15px 0 20px;
    }
}
@media (max-width: 768px) {
    .single-campaign__h1 {
        font-size: 2rem;
        padding: 10px 15px;
    }
}

.single-campaign__post--detail {
    padding: 0 75px;
}
@media (max-width: 1280px) {
    .single-campaign__post--detail {
        padding: 0 40px;
    }
}
@media (max-width: 768px) {
    .single-campaign__post--detail {
        padding: 0;
    }
}
.single-campaign__post--detail h2 {
    margin-top: 100px;
    background: #F3EDE9;
    font-size: 2rem;
    font-weight: 400;
    padding: 15px 30px;
}
@media (max-width: 1280px) {
    .single-campaign__post--detail h2 {
        margin-top: 60px;
        font-size: 1.8rem;
        padding: 10px 25px;
    }
}
@media (max-width: 768px) {
    .single-campaign__post--detail h2 {
        margin-top: 30px;
        font-size: 1.6rem;
        padding: 10px 15px;
    }
}
.single-campaign__post--detail p {
    margin-top: 40px;
    line-height: 2.4;
}
@media (max-width: 1280px) {
    .single-campaign__post--detail p {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .single-campaign__post--detail p {
        margin-top: 20px;
    }
}
.single-campaign__post--detail .link__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    height: 70px;
    padding: 0 85px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .single-campaign__post--detail .link__btn {
        font-size: 1.6rem;
        height: 60px;
        border-radius: 30px;
        padding: 0 30px;
        margin-bottom: 40px;
    }
}

/* ------------------------------------- /
/  ABOUT
/* ------------------------------------- */
.page-template-page-about .h2__en {
    font-family: var(--font-en);
    font-size: 8rem;
    line-height: 1;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .page-template-page-about .h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .h2__en {
        font-size: 4rem;
    }
}
.page-template-page-about h2 {
    font-size: 2.4rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .page-template-page-about h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-about h2 {
        font-size: 1.6rem;
    }
}

.sec__1__txt {
    line-height: 2.4;
}

.sec__2__container {
    display: flex;
}
.sec__2__container:nth-child(2n) {
    flex-direction: row-reverse;
}
.sec__2__container:nth-child(2n) .sec__2__container__txt {
    padding-right: 0;
    padding-left: 6%;
}
@media (max-width: 1280px) {
    .sec__2__container:nth-child(2n) .sec__2__container__txt {
        padding-left: 3%;
    }
}
@media (max-width: 768px) {
    .sec__2__container:nth-child(2n) .sec__2__container__txt {
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .sec__2__container:nth-child(n) {
        flex-direction: column;
        gap: 30px;
    }
}

.sec__2__container__img {
    width: 50%;
}
@media (max-width: 768px) {
    .sec__2__container__img {
        width: 100%;
    }
}

.sec__2__container__txt {
    width: 50%;
    padding-right: 6%;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .sec__2__container__txt {
        padding-right: 3%;
    }
}
@media (max-width: 768px) {
    .sec__2__container__txt {
        padding-right: 0;
        width: 100%;
    }
}

.sec__2__container__txt__h3 {
    font-size: 2.4rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .sec__2__container__txt__h3 {
        font-size: 2rem;
    }
}

.sec__2__container__txt__num {
    font-family: var(--font-ci);
    font-size: 2.4rem;
    font-weight: 500;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 1280px) {
    .sec__2__container__txt__num {
        font-size: 2rem;
    }
}
.sec__2__container__txt__num::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #606060;
}

.flow__box {
    max-width: 1200px;
    margin: 0 auto;
    background: #FDFCFB;
    padding: 0 20px;
}

.flow__box__h2__en {
    text-align: center;
}

.flow__box__h2 {
    text-align: center;
}

.flow__box__table {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    font-weight: 400;
}

.flow__box__table__txt {
    padding-left: 40px;
    padding-bottom: 40px;
}

.flow__box__table__heading {
    padding-left: 20px;
    font-size: 2.4rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .flow__box__table__heading {
        font-size: 2.4rem;
    }
}

.flow__box__table__th {
    font-family: var(--font-ci);
    font-size: 3rem;
    font-weight: 500;
    font-style: italic;
    color: #907070;
}
@media (max-width: 1280px) {
    .flow__box__table__th {
        font-size: 2.4rem;
    }
}

.flow__box__table__line {
    position: relative;
}
.flow__box__table__line::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #907070;
    top: 0;
    left: 50%;
}

.staff__container {
    display: flex;
    align-items: flex-start;
    gap: 5%;
}
@media (max-width: 768px) {
    .staff__container {
        flex-direction: column;
        gap: 30px;
    }
}

.staff__container__profile {
    width: 30%;
    position: relative;
}
@media (max-width: 768px) {
    .staff__container__profile {
        width: 100%;
    }
}
.staff__container__profile:nth-child(2n) {
    margin-top: 60px;
}
@media (max-width: 1280px) {
    .staff__container__profile:nth-child(2n) {
        margin-top: 40px;
    }
}

.staff__container__profile__txt {
    position: absolute;
    background: #F9F5F2;
    right: -1px;
    bottom: -40px;
    padding: 15px;
}
@media (max-width: 768px) {
    .staff__container__profile__txt {
        bottom: -1px;
    }
}

.staff__container__profile__txt__job {
    color: #BF7C7C;
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .staff__container__profile__txt__job {
        font-size: 1.2rem;
    }
}

.staff__container__profile__txt__name {
    font-size: 2.4rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .staff__container__profile__txt__name {
        font-size: 2rem;
    }
}

.staff__container__profile__txt__name__en {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .staff__container__profile__txt__name__en {
        font-size: 1.2rem;
    }
}

/* ------------------------------------- /
/  レポート一覧
/* ------------------------------------- */
.report__form__search__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 768px) {
    .report__form__search__wrapper {
        gap: 15px;
    }
}

.report__form__search__select__wrapper {
    position: relative;
    flex: 1 1;
    max-width: 350px;
    height: 70px;
    border-radius: 35px;
}
@media (max-width: 1280px) {
    .report__form__search__select__wrapper {
        height: 60px;
        border-radius: 30px;
    }
}
@media (max-width: 768px) {
    .report__form__search__select__wrapper {
        width: 100%;
        height: 50px;
        border-radius: 25px;
    }
}
.report__form__search__select__wrapper::before {
    content: "";
    position: absolute;
    width: 9px;
    aspect-ratio: 1;
    border-bottom: 1px solid #606060;
    border-left: 1px solid #606060;
    top: 50%;
    right: 40px;
    transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 1280px) {
    .report__form__search__select__wrapper::before {
        right: 30px;
    }
}
@media (max-width: 768px) {
    .report__form__search__select__wrapper::before {
        right: 25px;
        width: 7px;
    }
}

.report__form__search__select {
    width: 100%;
    height: 100%;
    border: none;
    font-family: inherit;
    border-radius: inherit;
    font-weight: 600;
    font-size: 2rem;
    padding: 20px 40px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
@media (max-width: 1280px) {
    .report__form__search__select {
        padding: 15px 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .report__form__search__select {
        padding: 10px 25px;
        font-size: 1.6rem;
    }
}

.report__form__search__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 70px;
    border-radius: 35px;
    background: #E8DAD0;
    border: 1px solid #E8DAD0;
    font-family: inherit;
    font-weight: 600;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s ease-in;
}
.report__form__search__submit:hover {
    background: #fff;
}
@media (max-width: 1280px) {
    .report__form__search__submit {
        width: 200px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .report__form__search__submit {
        width: 90px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}

.report__contents .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
@media (max-width: 1280px) {
    .report__contents .inner {
        gap: 30px;
    }
}

.report__post {
    width: calc((100% - 140px) / 3);
}
@media (max-width: 1280px) {
    .report__post {
        width: calc((100% - 30px) / 2);
    }
}
@media (max-width: 768px) {
    .report__post {
        width: 100%;
    }
}

.report__thumbnail {
    position: relative;
}
.report__thumbnail img {
    aspect-ratio: 420/280;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.report__thumbnail .date {
    position: absolute;
    top: 15px;
    left: 0;
    background: #fff;
    font-family: var(--font-ci);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    height: 30px;
    width: 110px;
    border-radius: 0 40px 40px 0;
    text-align: center;
}

.report__category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.report__category span {
    height: 40px;
    border-radius: 20px;
    border: 1px solid #606060;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
}
@media (max-width: 1280px) {
    .report__category span {
        height: 34px;
        border-radius: 17px;
        padding: 2px 15px;
        font-size: 1.5rem;
    }
}

.report__ttl {
    font-family: var(--font-ns);
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .report__ttl {
        font-size: 1.6rem;
    }
}

/* ------------------------------------- /
/  レポート単体
/* ------------------------------------- */
.single-report .breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
}
.single-report .breadcrumb li:first-child {
    position: relative;
    padding-right: 55px;
}
.single-report .breadcrumb li:first-child::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 35px;
    height: 1px;
    background: #000;
}

.single-report__post__bg {
    background: #fff;
    padding: 80px 110px 150px;
}
@media (max-width: 1280px) {
    .single-report__post__bg {
        padding: 50px 60px 100px;
    }
}
@media (max-width: 768px) {
    .single-report__post__bg {
        padding: 40px 20px 50px;
    }
}

.single-report__post__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}
@media (max-width: 768px) {
    .single-report__post__header {
        gap: 15px;
    }
}

.single-report__date {
    font-family: var(--font-ci);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    background: #F3EDE9;
    height: 40px;
    border-radius: 20px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .single-report__date {
        font-size: 1.8rem;
        padding: 0 15px;
        height: 30px;
        border-radius: 15px;
    }
}
@media (max-width: 768px) {
    .single-report__date {
        font-size: 1.6rem;
    }
}

.single-report__post__category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-report__post__category__span {
    height: 40px;
    border-radius: 20px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #606060;
}
@media (max-width: 1280px) {
    .single-report__post__category__span {
        font-size: 1.6rem;
        padding: 0 15px;
        height: 30px;
        border-radius: 15px;
    }
}
@media (max-width: 768px) {
    .single-report__post__category__span {
        font-size: 1.4rem;
        padding: 0 15px;
    }
}

.single-report__h1 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid #707070;
}
@media (max-width: 1280px) {
    .single-report__h1 {
        font-size: 3rem;
        padding-bottom: 25px;
    }
}
@media (max-width: 768px) {
    .single-report__h1 {
        font-size: 2rem;
        padding-bottom: 20px;
    }
}

.single-report__post__content p {
    line-height: 2.4;
    font-family: var(--font-ns);
    font-weight: 400;
}

/* ------------------------------------- /
/  式場一覧
/* ------------------------------------- */
.ceremony__form__search__wrapper {
    display: flex;
    gap: 20px;
}
@media (max-width: 768px) {
    .ceremony__form__search__wrapper {
        flex-direction: column;
    }
}

.ceremony__form__search__select__wrapper {
    position: relative;
    width: 350px;
}
@media (max-width: 1280px) {
    .ceremony__form__search__select__wrapper {
        width: 230px;
    }
}
@media (max-width: 768px) {
    .ceremony__form__search__select__wrapper {
        width: 100%;
    }
}
.ceremony__form__search__select__wrapper.wide {
    flex: 1 1;
}
.ceremony__form__search__select__wrapper::before {
    content: "";
    position: absolute;
    width: 9px;
    aspect-ratio: 1;
    border-bottom: 1px solid #606060;
    border-left: 1px solid #606060;
    top: 50%;
    right: 40px;
    transform: translateY(-50%) rotate(-45deg);
}

.ceremony__form__search__select {
    width: 100%;
    height: 70px;
    border-radius: 35px;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 2rem;
    padding: 20px 40px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
@media (max-width: 1280px) {
    .ceremony__form__search__select {
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
        padding: 15px 30px;
    }
}
@media (max-width: 768px) {
    .ceremony__form__search__select {
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
        padding: 10px 25px;
    }
}

.ceremony__form__search__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 70px;
    border-radius: 35px;
    background: #E8DAD0;
    border: 1px solid #E8DAD0;
    font-family: inherit;
    font-weight: 600;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s ease-in;
}
.ceremony__form__search__submit:hover {
    background: #fff;
}
@media (max-width: 1280px) {
    .ceremony__form__search__submit {
        width: 140px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .ceremony__form__search__submit {
        margin: 0 auto;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}

.ceremony__post {
    border-bottom: 1px solid #606060;
}
.ceremony__post:last-child {
    border-bottom: none;
}

.ceremony__post__wrapper {
    display: flex;
    gap: 50px;
}
@media (max-width: 1280px) {
    .ceremony__post__wrapper {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .ceremony__post__wrapper {
        flex-direction: column;
    }
}

.ceremony__thumbnail {
    width: 50%;
}
@media (max-width: 768px) {
    .ceremony__thumbnail {
        width: 100%;
    }
}

.ceremony__thumbnail__img__container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 1280px) {
    .ceremony__thumbnail__img__container {
        gap: 10px;
        margin-top: 10px;
    }
}
.ceremony__thumbnail__img__container img {
    width: calc((100% - 40px) / 3);
}
@media (max-width: 1280px) {
    .ceremony__thumbnail__img__container img {
        width: calc((100% - 20px) / 3);
    }
}

.ceremony__post__wrapper__right {
    width: calc(50% - 50px);
}
@media (max-width: 1280px) {
    .ceremony__post__wrapper__right {
        width: calc(50% - 30px);
    }
}
@media (max-width: 768px) {
    .ceremony__post__wrapper__right {
        width: 100%;
    }
}

.ceremony__post__wrapper__right__category {
    display: flex;
    gap: 10px;
}
.ceremony__post__wrapper__right__category span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border-radius: 15px;
    background: #F3EDE9;
    padding: 0 15px;
    font-weight: 600;
}

.ceremony__post__wrapper__right__ttl {
    font-size: 2rem;
    font-weight: 600;
    color: #907070;
    padding-bottom: 20px;
    border-bottom: 1px solid #606060;
}
@media (max-width: 1280px) {
    .ceremony__post__wrapper__right__ttl {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
}

.ceremony__post__wrapper__right__txt {
    font-family: var(--font-ns);
    font-weight: 400;
    line-height: 2.4;
}
@media (max-width: 1280px) {
    .ceremony__post__wrapper__right__txt {
        line-height: 2;
    }
}

.ceremony__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 400;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    transition: all 0.2s ease-in;
}
.ceremony__btn:hover {
    opacity: unset;
    color: #fff;
    background: #000;
}
@media (max-width: 1280px) {
    .ceremony__btn {
        font-size: 1.7rem;
        width: 220px;
        height: 60px;
        border-radius: 30px;
    }
}
@media (max-width: 768px) {
    .ceremony__btn {
        font-size: 1.6rem;
        width: 150px;
        height: 50px;
        border-radius: 25px;
    }
}

/* ------------------------------------- /
/  式場単体
/* ------------------------------------- */
.single-ceremony .breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
}
.single-ceremony .breadcrumb li:first-child {
    position: relative;
    padding-right: 55px;
}
.single-ceremony .breadcrumb li:first-child::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 35px;
    height: 1px;
    background: #000;
}
.single-ceremony .swiper-pagination-bullet {
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #606060;
}
.single-ceremony .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: none;
    background: #fff;
}
.single-ceremony .ceremony__detail {
    background: unset;
}
.single-ceremony .pagination__single {
    padding: 0 100px;
}
@media (max-width: 1280px) {
    .single-ceremony .pagination__single {
        padding: 0 50px;
    }
}
@media (max-width: 768px) {
    .single-ceremony .pagination__single {
        padding: 0;
    }
}

.single-ceremony__swiper__outer {
    padding: 0 100px;
    position: relative;
}

.single-ceremony__swiper-button-prev,
.single-ceremony__swiper-button-next {
    width: 57px;
    height: 57px;
    border-radius: 28.5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: absolute;
    top: calc((100% - 60px) / 2);
    transform: translateY(-50%);
}
.single-ceremony__swiper-button-prev::after,
.single-ceremony__swiper-button-next::after {
    display: none;
}

.single-ceremony__swiper-button-prev {
    left: 0;
    background: url(../img/ceremony/swiper_prev.svg) center no-repeat, #fff;
}

.swiper-button-next {
    right: 0;
    background: url(../img/ceremony/swiper_next.svg) center no-repeat, #fff;
}

.single-ceremony__swiper-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
}

.single-ceremony__tag__container {
    display: flex;
    gap: 10px;
}

.single-ceremony__tag__container__span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 400;
    height: 40px;
    border-radius: 20px;
    background: #F3EDE9;
    padding: 5px 25px;
}
@media (max-width: 1280px) {
    .single-ceremony__tag__container__span {
        font-size: 1.8rem;
        height: 36px;
        border-radius: 18px;
        padding: 3px 20px;
    }
}
@media (max-width: 768px) {
    .single-ceremony__tag__container__span {
        font-size: 1.6rem;
        height: 32px;
        border-radius: 16px;
        padding: 1px 15px;
    }
}

.single-ceremony__content__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.single-ceremony__h1 {
    font-size: 4rem;
    padding-bottom: 30px;
    border-bottom: 1px solid #707070;
}
@media (max-width: 1280px) {
    .single-ceremony__h1 {
        font-size: 3rem;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .single-ceremony__h1 {
        font-size: 2.2rem;
        padding-bottom: 15px;
    }
}

.single-ceremony__information__header {
    font-size: 2rem;
    font-weight: 400;
    background: #F3EDE9;
    min-height: 60px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}
@media (max-width: 1280px) {
    .single-ceremony__information__header {
        font-size: 1.8rem;
        min-height: 50px;
        padding: 10px 25px;
    }
}
@media (max-width: 768px) {
    .single-ceremony__information__header {
        font-size: 1.6rem;
        min-height: 40px;
        padding: 5px 20px;
    }
}

/* ------------------------------------- /
/  FAQ よくある質問
/* ------------------------------------- */
.faq__sec .accordion.active .faq__q {
    border-bottom: unset;
}
.faq__sec .accordion.active .faq__q::before {
    transform: translateY(-50%) rotate(180deg);
}
.faq__sec .accordion__box {
    border-top: 1px solid #C6C6C6;
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 20px 0 0;
}
@media (max-width: 1280px) {
    .faq__sec .accordion__box {
        gap: 15px;
        padding: 15px 0 0;
    }
}
@media (max-width: 768px) {
    .faq__sec .accordion__box {
        gap: 10px;
        padding: 10px 0 0;
    }
}
.faq__sec .accordion__box .txt {
    font-family: var(--font-ns);
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.8;
}
@media (max-width: 1280px) {
    .faq__sec .accordion__box .txt {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .faq__sec .accordion__box .txt {
        font-size: 1.5rem;
    }
}
.faq__sec .faq__or {
    font-family: var(--font-ci);
    font-size: 2.4rem;
    font-weight: 500;
    font-style: italic;
    line-height: 2.2;
}
@media (max-width: 1280px) {
    .faq__sec .faq__or {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .faq__sec .faq__or {
        font-size: 1.8rem;
    }
}
.faq__sec .faq__q {
    display: flex;
    align-items: baseline;
    gap: 20px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    font-family: var(--font-ns);
    border-bottom: 1px solid var(--color-black);
    padding: 15px 0;
    position: relative;
    cursor: pointer;
}
.faq__sec .faq__q:hover {
    background: var(--color-black);
    color: #fff;
}
.faq__sec .faq__q:hover::before {
    background: #fff;
}
@media (max-width: 1280px) {
    .faq__sec .faq__q {
        gap: 15px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .faq__sec .faq__q {
        gap: 10px;
        font-size: 1.6rem;
    }
}
.faq__sec .faq__q::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 12px;
    aspect-ratio: 12/6;
    background: var(--color-black);
    -webkit-mask: url(../img/common/arrow_down.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_down.svg) center/contain no-repeat;
    transition: transform 0.2s;
}
@media (max-width: 768px) {
    .faq__sec .faq__q::before {
        width: 10px;
    }
}

.faq__link__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 3%;
}
@media (max-width: 768px) {
    .faq__link__container {
        gap: 15px 2%;
    }
}

.faq__link__container__a {
    width: 22.75%;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    transition: all 0.2s ease-in;
}
.faq__link__container__a:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
.faq__link__container__a:hover::before {
    background: #fff;
}
@media (max-width: 1280px) {
    .faq__link__container__a {
        width: 48.5%;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .faq__link__container__a {
        width: 49%;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}
@media (max-width: 500px) {
    .faq__link__container__a {
        width: 100%;
    }
}
.faq__link__container__a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 12px;
    aspect-ratio: 12/6;
    background: #000;
    -webkit-mask: url(../img/common/arrow_down.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_down.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 768px) {
    .faq__link__container__a::before {
        right: 20px;
        width: 10px;
    }
}

.faq__sec__h2 {
    font-size: 2rem;
    line-height: 2;
    font-weight: 400;
    background: #EFDED5;
    min-height: 60px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}
@media (max-width: 1280px) {
    .faq__sec__h2 {
        font-size: 1.8rem;
        padding: 10px 20px;
    }
}
@media (max-width: 768px) {
    .faq__sec__h2 {
        font-size: 1.6rem;
        padding: 10px;
    }
}

.faq__sec__accordion__wrapper {
    padding: 30px;
}
@media (max-width: 1280px) {
    .faq__sec__accordion__wrapper {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .faq__sec__accordion__wrapper {
        padding: 15px 0;
    }
}

.faq__sec__link {
    color: var(--blue);
    text-decoration: underline;
}

.faq__sec__h3 {
    color: #907070;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2;
    border-bottom: 2px solid #907070;
    padding: 15px 0;
}
@media (max-width: 1280px) {
    .faq__sec__h3 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .faq__sec__h3 {
        font-size: 1.6rem;
        padding: 10px 0;
    }
}

/* ------------------------------------- /
/  お問い合わせ 来店予約
/* ------------------------------------- */
.contact__form__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.form__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    gap: 30px;
}
@media (max-width: 768px) {
    .form__row {
        flex-direction: column;
        row-gap: 15px;
        align-items: flex-start;
    }
}
.form__row.multi {
    align-items: flex-start;
}

.required {
    color: #FDFCFB;
    background: #907070;
    font-weight: 400;
    width: 70px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-ns);
}
@media (max-width: 768px) {
    .required {
        width: 60px;
        height: 26px;
        border-radius: 13px;
    }
}
@media (max-width: 768px) {
    .required.vH {
        display: none;
    }
}

.form__row__dt {
    display: flex;
    align-items: baseline;
    gap: 20px;
    min-width: 230px;
}
@media (max-width: 768px) {
    .form__row__dt {
        gap: 15px;
    }
}

.form__row__dd {
    flex: 1 1;
    max-width: 900px;
}
@media (max-width: 768px) {
    .form__row__dd {
        width: 100%;
    }
}
.form__row__dd input[type=text],
.form__row__dd input[type=tel],
.form__row__dd input[type=email],
.form__row__dd input[type=date],
.form__row__dd select,
.form__row__dd textarea {
    width: 100%;
    border: none;
    font-size: inherit;
    font-family: inherit;
    padding: 20px 30px;
    line-height: 1.8;
}
@media (max-width: 1280px) {
    .form__row__dd input[type=text],
    .form__row__dd input[type=tel],
    .form__row__dd input[type=email],
    .form__row__dd input[type=date],
    .form__row__dd select,
    .form__row__dd textarea {
        padding: 15px 25px;
    }
}

.error {
    color: red;
}

.error.false {
    display: none;
}

.zipcode__wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.zipcode__wrapper input {
    max-width: 285px;
}

.radio__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
}
@media (max-width: 1280px) {
    .radio__wrapper {
        gap: 15px 30px;
    }
}
@media (max-width: 768px) {
    .radio__wrapper {
        gap: 10px 20px;
    }
}
.radio__wrapper.same .radio__element {
    width: 250px;
}
@media (max-width: 1280px) {
    .radio__wrapper.same .radio__element {
        width: 240px;
    }
}
@media (max-width: 768px) {
    .radio__wrapper.same .radio__element {
        width: 210px;
    }
}

.radio__element {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .radio__element {
        gap: 15px;
    }
}

input[type=radio],
input[type=checkbox] {
    width: 26px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #907070;
    position: relative;
}
@media (max-width: 768px) {
    input[type=radio],
    input[type=checkbox] {
        width: 22px;
    }
}
input[type=radio]:checked::before,
input[type=checkbox]:checked::before {
    position: absolute;
    content: "";
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #907070;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
    input[type=radio]:checked::before,
    input[type=checkbox]:checked::before {
        width: 14px;
    }
}

.radio_label.disabled {
    pointer-events: none;
}

.policy__wrapper {
    max-width: 930px;
    margin: 0 auto;
    background: #fff;
    padding: 25px 15px;
}
@media (max-width: 768px) {
    .policy__wrapper {
        padding: 15px 10px;
    }
}

.policy {
    max-height: 260px;
    overflow-y: scroll;
    padding: 0 10px;
    scrollbar-color: #907070 #fff;
}

.policy__ttl {
    font-size: 2rem;
    text-align: center;
}
@media (max-width: 768px) {
    .policy__ttl {
        font-size: 1.8rem;
    }
}

.agreement {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
}

.submit__btn {
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    border: none;
}
@media (max-width: 1280px) {
    .submit__btn {
        width: 220px;
        height: 60px;
        border-radius: 30px;
    }
}
@media (max-width: 768px) {
    .submit__btn {
        width: 200px;
        height: 50px;
        border-radius: 25px;
    }
}

.submit__wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* ------------------------------------- /
/  みえフォトトップ
/* ------------------------------------- */
.miephoto__h2__en {
    font-family: var(--font-en);
    font-size: 6rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .miephoto__h2__en {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .miephoto__h2__en {
        font-size: 3rem;
    }
}

.miephoto__h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    font-family: var(--font-sm);
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .miephoto__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .miephoto__h2 {
        font-size: 1.6rem;
    }
}

.miephoto__vertical__line {
    width: 1px;
    height: 60px;
    margin: 0 auto;
    background: #333333;
}
@media (max-width: 768px) {
    .miephoto__vertical__line {
        height: 40px;
    }
}

.page-template-page-miephoto {
    color: #333333;
    background: #fff;
}

.miephoto__mv {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
@media (max-width: 768px) {
    .miephoto__mv {
        flex-direction: column;
        row-gap: 30px;
        padding: 0 var(--inner-padding-width);
    }
}
.miephoto__mv::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 0;
    right: 7%;
    bottom: 0;
    background: #FDFAF4;
    z-index: -1;
}
.miephoto__mv .left {
    padding-left: var(--inner-outer-width);
    font-size: 2.3rem;
    line-height: 2.8;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .miephoto__mv .left {
        font-size: 1.7rem;
    }
}
.miephoto__mv .left .logo {
    max-width: 350px;
}
@media (max-width: 1280px) {
    .miephoto__mv .left .logo {
        max-width: 240px;
    }
}
.miephoto__mv .swiper {
    width: 57%;
    margin-right: 0;
}
@media (max-width: 1280px) {
    .miephoto__mv .swiper {
        width: 50%;
    }
}
@media (max-width: 768px) {
    .miephoto__mv .swiper {
        width: 100%;
    }
}
.miephoto__mv .swiper .swiper-wrapper {
    height: unset;
}
.miephoto__mv .swiper__below {
    display: flex;
    gap: 10px;
}
.miephoto__mv .swiper__below .swiper-pagination {
    position: unset;
    width: unset;
    font-family: var(--font-en);
    font-size: 2rem;
}
.miephoto__mv .swiper__below .swiper-button-prev, .miephoto__mv .swiper__below .swiper-button-next {
    position: unset;
    display: unset;
    height: unset;
    margin-top: unset;
    width: 11px;
    aspect-ratio: 11/17;
    cursor: pointer;
}
.miephoto__mv .swiper__below .swiper-button-prev::after, .miephoto__mv .swiper__below .swiper-button-next::after {
    content: "";
}
.miephoto__mv .swiper__below .swiper-button-prev {
    background: url(../img/mie-photo/prev.svg) center/contain no-repeat;
}
.miephoto__mv .swiper__below .swiper-button-next {
    background: url(../img/mie-photo/next.svg) center/contain no-repeat;
}

.concept {
    position: relative;
}
.concept::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 7%;
    bottom: 0;
    background: #FDFAF4;
    z-index: -1;
}

.concept__inner {
    display: flex;
}
@media (max-width: 768px) {
    .concept__inner {
        flex-direction: column-reverse;
        gap: 30px;
    }
}

.concept__inner__img {
    width: 50%;
}
@media (max-width: 768px) {
    .concept__inner__img {
        width: 100%;
    }
}

.concept__inner__txt {
    width: 50%;
    padding-left: 6%;
    line-height: 2.4;
    font-weight: 400;
}
@media (max-width: 768px) {
    .concept__inner__txt {
        width: 100%;
    }
}

.concept__inner__txt__h2 {
    font-family: var(--font-en);
    font-size: 8rem;
    color: #CBC0AE;
    line-height: 1;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .concept__inner__txt__h2 {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .concept__inner__txt__h2 {
        font-size: 4rem;
    }
}

.plans__container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.plans__container:nth-child(2n+1) {
    flex-direction: row-reverse;
}
@media (max-width: 1280px) {
    .plans__container:nth-child(2n+1) {
        flex-direction: column-reverse;
    }
}
@media (max-width: 1280px) {
    .plans__container {
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 30px;
    }
}

.plans__container__txt {
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 1280px) {
    .plans__container__txt {
        width: -moz-fit-content;
        width: fit-content;
    }
}

.plans__container__txt__h3 {
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .plans__container__txt__h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .plans__container__txt__h3 {
        font-size: 2rem;
    }
}

.plans__container__txt__price {
    color: #9F917B;
    font-size: 3.4rem;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .plans__container__txt__price {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .plans__container__txt__price {
        font-size: 2rem;
    }
}
.plans__container__txt__price .sm {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .plans__container__txt__price .sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .plans__container__txt__price .sm {
        font-size: 1.6rem;
    }
}

.plans__container__txt__frame {
    position: relative;
    padding: 50px 32px 32px;
    background: #FEFAF4;
    width: -moz-fit-content;
    width: fit-content;
}
.plans__container__txt__frame::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    border: 1px solid #9F937B;
}
.plans__container__txt__frame .ttl {
    position: absolute;
    background: #9F927C;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-50% + 8px));
    width: -moz-max-content;
    width: max-content;
    padding: 0 20px;
    height: 40px;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .plans__container__txt__frame .ttl {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .plans__container__txt__frame .ttl {
        font-size: 1.6rem;
    }
}
.plans__container__txt__frame ul {
    width: -moz-fit-content;
    width: fit-content;
}
.plans__container__txt__frame ul li {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 20px;
    position: relative;
}
.plans__container__txt__frame ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #9F937B;
}

.plans__container__img {
    width: 50%;
}
@media (max-width: 1280px) {
    .plans__container__img {
        width: 100%;
    }
}

.plans__notice {
    position: relative;
    background: #FEFAF4;
    padding: 60px 20px;
    text-align: center;
    font-weight: 400;
}
.plans__notice::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border: 1px solid #9F937B;
}

.plans__txt__under__notice {
    text-align: center;
    font-weight: 400;
    line-height: 2.4;
}
@media (max-width: 768px) {
    .plans__txt__under__notice {
        text-align: left;
    }
}

.plans__btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    height: 60px;
    border: 1px solid #333333;
    font-family: var(--font-co);
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .plans__btn {
        width: 240px;
        height: 50px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .plans__btn {
        width: 200px;
        height: 40px;
        font-size: 1.6rem;
    }
}
.plans__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 22/6;
    -webkit-mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
            mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
    background: #333333;
}
@media (max-width: 768px) {
    .plans__btn::before {
        width: 18px;
        right: 15px;
    }
}
.plans__btn:hover {
    opacity: unset;
    background: #333333;
    color: #fff;
}
.plans__btn:hover::before {
    background: #fff;
}

.miephoto__location {
    position: relative;
}
.miephoto__location::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7%;
    right: 0;
    background: #F5F5F5;
    z-index: -1;
}
@media (max-width: 768px) {
    .miephoto__location::before {
        left: 0;
    }
}

.miephoto__location__txt {
    text-align: center;
    font-weight: 400;
    line-height: 2.4;
}
@media (max-width: 768px) {
    .miephoto__location__txt {
        text-align: left;
    }
}

.miephoto__location__container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 2%;
}
@media (max-width: 1280px) {
    .miephoto__location__container {
        gap: 40px 2%;
    }
}
@media (max-width: 768px) {
    .miephoto__location__container {
        gap: 20px 2%;
    }
}

.miephoto__location__btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 280px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    border: 1px solid #333333;
    font-family: var(--font-co);
    font-size: 1.8rem;
    font-weight: 700;
    background: #fff;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .miephoto__location__btn {
        width: 240px;
        height: 50px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .miephoto__location__btn {
        width: 200px;
        height: 40px;
        font-size: 1.6rem;
    }
}
.miephoto__location__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 22/6;
    -webkit-mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
            mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
    background: #333333;
    transition: inherit;
}
@media (max-width: 768px) {
    .miephoto__location__btn::before {
        width: 18px;
        right: 15px;
    }
}
.miephoto__location__btn:hover {
    opacity: unset;
    background: #333333;
    color: #fff;
}
.miephoto__location__btn:hover::before {
    background: #fff;
}

.miephoto__location__container__a {
    width: 18.4%;
    background: #fff;
}
@media (max-width: 1280px) {
    .miephoto__location__container__a {
        width: 32%;
    }
}
@media (max-width: 768px) {
    .miephoto__location__container__a {
        width: 49%;
    }
}

.miephoto__location__container__a .thumbnail {
    aspect-ratio: 250/170;
}

.miephoto__location__container__a__ttl {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .miephoto__location__container__a__ttl {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .miephoto__location__container__a__ttl {
        font-size: 1.6rem;
    }
}

.miephoto__location__container__a__area {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 20px;
    min-width: 52px;
    background: #9F937B;
    color: #FDFCFB;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 2px 10px;
}
@media (max-width: 768px) {
    .miephoto__location__container__a__area {
        font-size: 1.5rem;
    }
}

.miephoto__location__img {
    margin-top: 240px;
    position: relative;
}
.miephoto__location__img::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 60%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FDFAF4;
}
.miephoto__location__img img {
    width: 80%;
    aspect-ratio: 1520/410;
}

.reason__top {
    background: #FDFAF4;
}

.reason__top__txt {
    text-align: center;
    font-weight: 400;
    line-height: 2.4;
}
@media (max-width: 768px) {
    .reason__top__txt {
        text-align: left;
    }
}

.miephoto__reason__container {
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
}
.miephoto__reason__container:nth-child(2n) {
    flex-direction: row-reverse;
}
.miephoto__reason__container:nth-child(2n) .miephoto__reason__container__txt {
    padding-left: 3%;
    padding-right: var(--inner-outer-width);
}
@media (max-width: 1280px) {
    .miephoto__reason__container:nth-child(n) {
        flex-direction: column;
        row-gap: 30px;
    }
    .miephoto__reason__container:nth-child(n) .miephoto__reason__container__txt {
        width: 100%;
        padding: 40px var(--inner-outer-width);
    }
}

.miephoto__reason__container__txt {
    width: 50%;
    padding-left: var(--inner-outer-width);
    padding-right: 3%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}
.miephoto__reason__container__txt .contents {
    display: flex;
    align-items: baseline;
    line-height: 1.9;
}
.miephoto__reason__container__txt .contents .num {
    font-family: var(--font-en);
    font-size: clamp(6rem, 2rem + 3.13vw, 8rem);
    font-weight: 400;
    line-height: 1;
    color: #E5DED5;
    margin-right: -20px;
}
@media (max-width: 1280px) {
    .miephoto__reason__container__txt .contents .num {
        font-size: 6rem;
        margin-right: -10px;
    }
}
@media (max-width: 768px) {
    .miephoto__reason__container__txt .contents .num {
        font-size: 4rem;
    }
}
.miephoto__reason__container__txt .contents h3 {
    font-size: clamp(2.2rem, -0.2rem + 1.87vw, 3.4rem);
    font-family: var(--font-sm);
    letter-spacing: 0.06em;
    line-height: 1.8;
}
@media (max-width: 1280px) {
    .miephoto__reason__container__txt .contents h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .miephoto__reason__container__txt .contents h3 {
        font-size: 2rem;
    }
}

.miephoto__reason__container__img {
    width: 50%;
    aspect-ratio: 960/550;
}
@media (max-width: 1280px) {
    .miephoto__reason__container__img {
        width: 100%;
    }
}

.miephoto__qaa {
    position: relative;
}
.miephoto__qaa::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: calc(var(--inner-outer-width) / 2);
    right: calc(var(--inner-outer-width) / 2);
    background: #F5F5F5;
}
.miephoto__qaa .accordion {
    background: #fff;
    padding: 30px 50px 0;
}
@media (max-width: 1280px) {
    .miephoto__qaa .accordion {
        padding: 20px 30px 0;
    }
}
@media (max-width: 768px) {
    .miephoto__qaa .accordion {
        padding: 15px 15px 0;
    }
}
.miephoto__qaa .accordion .faq__or {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .miephoto__qaa .accordion .faq__or {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .miephoto__qaa .accordion .faq__or {
        font-size: 2rem;
    }
}
.miephoto__qaa .accordion .accordion__box, .miephoto__qaa .accordion .faq__q {
    display: flex;
    align-items: baseline;
    gap: 30px;
}
@media (max-width: 1280px) {
    .miephoto__qaa .accordion .accordion__box, .miephoto__qaa .accordion .faq__q {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .miephoto__qaa .accordion .accordion__box, .miephoto__qaa .accordion .faq__q {
        gap: 15px;
    }
}
.miephoto__qaa .accordion .accordion__box {
    border-top: 1px solid #707070;
    padding: 30px 0;
}
@media (max-width: 1280px) {
    .miephoto__qaa .accordion .accordion__box {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .miephoto__qaa .accordion .accordion__box {
        padding: 15px 0;
    }
}
.miephoto__qaa .accordion .accordion__box .txt {
    line-height: 1.9;
    font-weight: 700;
}
.miephoto__qaa .accordion .accordion__box .txt .link {
    color: #43B9ED;
    text-decoration: underline;
}
.miephoto__qaa .accordion .faq__q {
    cursor: pointer;
    padding-bottom: 30px;
}
@media (max-width: 1280px) {
    .miephoto__qaa .accordion .faq__q {
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .miephoto__qaa .accordion .faq__q {
        padding-bottom: 15px;
    }
}
.miephoto__qaa .qaa__btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    font-family: var(--font-co);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 60px;
    border: 1px solid #333333;
    background: #fff;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .miephoto__qaa .qaa__btn {
        width: 240px;
        height: 50px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .miephoto__qaa .qaa__btn {
        width: 200px;
        height: 40px;
        font-size: 1.6rem;
    }
}
.miephoto__qaa .qaa__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 22/6;
    -webkit-mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
            mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
    background: #333333;
    transition: inherit;
}
@media (max-width: 768px) {
    .miephoto__qaa .qaa__btn::before {
        width: 18px;
        right: 15px;
    }
}
.miephoto__qaa .qaa__btn:hover {
    opacity: unset;
    background: #333333;
    color: #fff;
}
.miephoto__qaa .qaa__btn:hover::before {
    background: #fff;
}

:root {
    --flow-img-width: 267px;
}
@media (max-width: 1280px) {
    :root {
        --flow-img-width: 230px;
    }
}
@media (max-width: 768px) {
    :root {
        --flow-img-width: 150px;
    }
}
@media (max-width: 500px) {
    :root {
        --flow-img-width: 100%;
    }
}

.miephoto__flow__container {
    display: flex;
    gap: 50px;
}
@media (max-width: 1280px) {
    .miephoto__flow__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .miephoto__flow__container {
        gap: 15px;
    }
}
@media (max-width: 500px) {
    .miephoto__flow__container {
        flex-direction: column;
        row-gap: 20px;
    }
}
.miephoto__flow__container .img {
    width: var(--flow-img-width);
    aspect-ratio: 265/239;
}
.miephoto__flow__container .h3 {
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .miephoto__flow__container .h3 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .miephoto__flow__container .h3 {
        font-size: 1.6rem;
    }
}
.miephoto__flow__container .right {
    flex: 1 1;
}
.miephoto__flow__container .txt {
    font-weight: 400;
    line-height: 1.9;
}
.miephoto__flow__container .btn__container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 1280px) {
    .miephoto__flow__container .btn__container {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .miephoto__flow__container .btn__container {
        gap: 10px;
    }
}
.miephoto__flow__container .flow__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 256px;
    height: 60px;
    border: 1px solid #333333;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .miephoto__flow__container .flow__btn {
        width: 220px;
        height: 50px;
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .miephoto__flow__container .flow__btn {
        width: 180px;
        height: 40px;
        font-size: 1.4rem;
    }
}
.miephoto__flow__container .flow__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 22px;
    aspect-ratio: 22/6;
    -webkit-mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
            mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
    transition: inherit;
    background: #333333;
}
@media (max-width: 768px) {
    .miephoto__flow__container .flow__btn::before {
        width: 18px;
        right: 16px;
    }
}
.miephoto__flow__container .flow__btn:hover {
    opacity: unset;
    background: #333333;
    color: #fff;
}
.miephoto__flow__container .flow__btn:hover::before {
    background: #fff;
}

.flow__triangle {
    width: 16px;
    aspect-ratio: 16/14;
    background: #333333;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    position: relative;
    left: calc(var(--flow-img-width) / 2);
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .flow__triangle {
        width: 13px;
    }
}

.miephoto__report {
    position: relative;
}
.miephoto__report::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 45%;
    bottom: 45%;
    left: 0;
    right: 0;
    background: #FEFAF4;
}

.miephoto__report__txt {
    text-align: center;
    font-weight: 400;
}
@media (max-width: 768px) {
    .miephoto__report__txt {
        text-align: left;
    }
}

.miephoto__report__report__list {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
@media (max-width: 1280px) {
    .miephoto__report__report__list {
        gap: 3%;
    }
}
@media (max-width: 768px) {
    .miephoto__report__report__list {
        row-gap: 30px;
    }
}

.miephoto__report__report__list__a {
    width: 30%;
}
@media (max-width: 1280px) {
    .miephoto__report__report__list__a {
        width: 31.3333333333%;
    }
}
@media (max-width: 768px) {
    .miephoto__report__report__list__a {
        width: 100%;
    }
}

.miephoto__report__report__list__thumbnail {
    position: relative;
    aspect-ratio: 420/280;
}

.miephoto__report__report__list__thumbnail__date {
    position: absolute;
    background: #fff;
    left: 0;
    top: 15px;
    font-family: var(--font-ci);
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    text-align: center;
    width: 110px;
    height: 30px;
    border-radius: 0 15px 15px 0;
}
@media (max-width: 1280px) {
    .miephoto__report__report__list__thumbnail__date {
        font-size: 1.8rem;
        width: 100px;
    }
}
@media (max-width: 768px) {
    .miephoto__report__report__list__thumbnail__date {
        font-size: 1.6rem;
        height: 24px;
        border-radius: 0 12px 12px 0;
        width: 90px;
    }
}

.miephoto__report__report__list__ttl {
    font-family: var(--font-ns);
    font-weight: 400;
    line-height: 1.7;
}

.miephoto__report__report__btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 60px;
    border: 1px solid #333333;
    position: relative;
    font-family: var(--font-co);
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .miephoto__report__report__btn {
        width: 240px;
        height: 50px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .miephoto__report__report__btn {
        width: 200px;
        height: 40px;
        font-size: 1.6rem;
    }
}
.miephoto__report__report__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 22/6;
    -webkit-mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
            mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
    background: #333333;
    transition: inherit;
}
@media (max-width: 768px) {
    .miephoto__report__report__btn::before {
        width: 18px;
        right: 15px;
    }
}
.miephoto__report__report__btn:hover {
    opacity: unset;
    background: #333333;
    color: #fff;
}
.miephoto__report__report__btn:hover::before {
    background: #fff;
}

.all__plan {
    background: #FDFAF4;
}

.all__plan__container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
@media (max-width: 1280px) {
    .all__plan__container {
        gap: 30px;
    }
}

.all__plan__container__box {
    width: calc((100% - 60px) / 2);
    padding: 45px 55px;
    background: #fff;
}
@media (max-width: 1280px) {
    .all__plan__container__box {
        width: calc((100% - 30px) / 2);
        padding: 25px 30px;
    }
}
@media (max-width: 768px) {
    .all__plan__container__box {
        width: 100%;
    }
}

.all__plan__container__box__h3 {
    font-size: 3.4rem;
    font-weight: 500;
    font-family: var(--font-sm);
    text-align: center;
}
@media (max-width: 1280px) {
    .all__plan__container__box__h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .all__plan__container__box__h3 {
        font-size: 2rem;
    }
}

.all__plan__container__box__price {
    color: #9F917B;
    font-size: 3.4rem;
    text-align: center;
}
@media (max-width: 1280px) {
    .all__plan__container__box__price {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .all__plan__container__box__price {
        font-size: 2rem;
    }
}

.all__plan__container__box__tax {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .all__plan__container__box__tax {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .all__plan__container__box__tax {
        font-size: 1.6rem;
    }
}

.all__plan__container__box__include__box {
    border: 1px solid #9F937B;
    padding: 50px 25px 20px;
    position: relative;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .all__plan__container__box__include__box {
        padding: 40px 20px 15px;
    }
}
@media (max-width: 768px) {
    .all__plan__container__box__include__box {
        padding: 25px 15px 15px;
    }
}

.all__plan__container__box__include__header {
    position: absolute;
    background: #9F927C;
    color: #fff;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    padding: 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 40px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 1280px) {
    .all__plan__container__box__include__header {
        font-size: 1.8rem;
        padding: 0 30px;
        width: 220px;
        height: 36px;
    }
}
@media (max-width: 768px) {
    .all__plan__container__box__include__header {
        font-size: 1.6rem;
        padding: 0 20px;
        width: 190px;
        height: 30px;
    }
}

.all__plan__container__box__include__list {
    list-style-type: disc;
    list-style-position: inside;
    text-indent: -20px;
    margin-left: 20px;
}

.all__plan__container__box__btn {
    margin: 0 auto;
    width: 280px;
    height: 60px;
    border: 1px solid #333333;
    font-family: var(--font-co);
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .all__plan__container__box__btn {
        width: 220px;
        height: 50px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .all__plan__container__box__btn {
        width: 180px;
        height: 40px;
        font-size: 1.6rem;
    }
}
.all__plan__container__box__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 22/6;
    -webkit-mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
            mask: url(../img/mie-photo/arrow.svg) center/contain no-repeat;
    background: #333333;
    transition: inherit;
}
@media (max-width: 768px) {
    .all__plan__container__box__btn::before {
        width: 18px;
        right: 15px;
    }
}
.all__plan__container__box__btn:hover {
    opacity: unset;
    background: #333333;
    color: #fff;
}
.all__plan__container__box__btn:hover::before {
    background: #fff;
}

.miephoto__breadcrumb {
    background: #FDFAF4;
    font-size: 1.6rem;
    font-weight: 400;
}
@media (max-width: 768px) {
    .miephoto__breadcrumb {
        font-size: 1.4rem;
    }
}
.miephoto__breadcrumb .breadcrumb {
    display: flex;
    gap: 10px;
}
.miephoto__breadcrumb .breadcrumb li:not(:first-child) {
    position: relative;
    padding-left: 15px;
}
.miephoto__breadcrumb .breadcrumb li:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #333333;
}
.miephoto__breadcrumb .breadcrumb .current {
    color: #9F937B;
}

/* ------------------------------------- /
/  みえフォトロケーション一覧
/* ------------------------------------- */
.page-template-page-location {
    color: #333333;
    background: #fff;
}

.page-template-page-location__location__header__wrapper {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    margin-left: var(--inner-outer-width);
}
@media (max-width: 768px) {
    .page-template-page-location__location__header__wrapper {
        margin-left: 0;
    }
}

.page-template-page-location__location__header__wrapper__ttl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 5%;
    color: #fff;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-template-page-location__location__header__wrapper__ttl .h1__en {
    font-family: var(--font-en);
    font-size: 7rem;
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .page-template-page-location__location__header__wrapper__ttl .h1__en {
        font-size: 5.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-location__location__header__wrapper__ttl .h1__en {
        font-size: 4rem;
    }
}
.page-template-page-location__location__header__wrapper__ttl h1 {
    font-size: 2.5rem;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .page-template-page-location__location__header__wrapper__ttl h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-location__location__header__wrapper__ttl h1 {
        font-size: 1.6rem;
    }
}

.location__place {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: -130px;
}
@media (max-width: 1280px) {
    .location__place {
        margin-bottom: -80px;
    }
}
@media (max-width: 768px) {
    .location__place {
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 0;
    }
}

.location__place__img {
    width: 50%;
}
@media (max-width: 768px) {
    .location__place__img {
        width: 100%;
    }
}

.location__place__txt {
    width: 50%;
    margin-left: var(--inner-outer-width);
    padding-right: 5%;
    font-weight: 400;
}
@media (max-width: 768px) {
    .location__place__txt {
        width: 100%;
        margin: 0;
        padding: 0 var(--inner-outer-width);
    }
}

.location__place__txt__h2 {
    font-family: var(--font-sm);
    font-size: 3.4rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .location__place__txt__h2 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .location__place__txt__h2 {
        font-size: 2rem;
    }
}

.all__location__ttl {
    padding-top: 370px;
    background: #FEFAF4;
    text-align: center;
}
@media (max-width: 1280px) {
    .all__location__ttl {
        padding-top: 200px;
    }
}
@media (max-width: 768px) {
    .all__location__ttl {
        padding-top: 80px;
    }
}

.all__location__ttl__h2__en {
    font-size: 6rem;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .all__location__ttl__h2__en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .all__location__ttl__h2__en {
        font-size: 3.6rem;
    }
}

.all__location__ttl__h2 {
    font-size: 2rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .all__location__ttl__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .all__location__ttl__h2 {
        font-size: 1.6rem;
    }
}

.page-template-page-location__contents__row:nth-child(2n+1) {
    background: #FEFAF4;
}

.page-template-page-location__contents__inner {
    display: flex;
    gap: 10%;
}
@media (max-width: 1280px) {
    .page-template-page-location__contents__inner {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-location__contents__inner {
        flex-direction: column;
        row-gap: 50px;
    }
}

.page-template-page-location__contents__inner__post {
    width: 45%;
}
@media (max-width: 1280px) {
    .page-template-page-location__contents__inner__post {
        width: calc((100% - 40px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-page-location__contents__inner__post {
        width: 100%;
    }
}

.page-template-page-location__contents__inner__post__area {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 27px;
    min-width: 70px;
    background: #9F937B;
    color: #fff;
    font-weight: 400;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0 10px;
}

.page-template-page-location__contents__inner__post__ttl {
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-location__contents__inner__post__ttl {
        font-size: 2rem;
    }
}

.page-template-page-location__contents__inner__post__special__plan {
    color: #9F937B;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    min-width: 150px;
    border-radius: 15px;
    border: 1px solid #9F937B;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .page-template-page-location__contents__inner__post__special__plan {
        font-size: 1.4rem;
        height: 26px;
        border-radius: 13px;
        min-width: 130px;
    }
}

.page-template-page-location__contents__inner__post__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    height: 60px;
    margin: 0 auto;
    border: 1px solid #333333;
    font-family: var(--font-co);
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
    transition: 0.4s;
}
@media (max-width: 1280px) {
    .page-template-page-location__contents__inner__post__btn {
        max-width: 240px;
    }
}
@media (max-width: 768px) {
    .page-template-page-location__contents__inner__post__btn {
        font-size: 1.6rem;
        max-width: 200px;
        height: 50px;
    }
}
.page-template-page-location__contents__inner__post__btn::before {
    content: "";
    position: absolute;
    width: 22px;
    aspect-ratio: 22/6;
    background: #333333;
    -webkit-mask: url(../img/location/arrow.svg) center/contain no-repeat;
            mask: url(../img/location/arrow.svg) center/contain no-repeat;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: inherit;
}
.page-template-page-location__contents__inner__post__btn:hover {
    opacity: unset;
    background: #333333;
    color: #fff;
}
.page-template-page-location__contents__inner__post__btn:hover::before {
    background: #fff;
}

/* ------------------------------------- /
/  みえフォトロケーション単体
/* ------------------------------------- */
.single-mie_photo_location {
    background: #fff;
}

.single__location__header {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}
.single__location__header::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: var(--inner-outer-width);
    background: #FDFAF4;
}
@media (max-width: 768px) {
    .single__location__header::before {
        right: 0;
    }
}

.single__location__header__img__wrapper {
    margin-left: var(--inner-outer-width);
    position: relative;
}
.single__location__header__img__wrapper::after {
    content: "";
    position: absolute;
    background: rgba(165, 163, 159, 0.76);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    mix-blend-mode: multiply;
    z-index: 1;
}

.single__location__header__img__wrapper__img {
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 1280px) {
    .single__location__header__img__wrapper__img {
        height: 300px;
    }
}
@media (max-width: 768px) {
    .single__location__header__img__wrapper__img {
        height: 150px;
    }
}

.single__location__header__img__wrapper__txt {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fff;
    z-index: 2;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single__location__header__img__wrapper__txt__h1 {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 1280px) {
    .single__location__header__img__wrapper__txt__h1 {
        font-size: 5.6rem;
    }
}
@media (max-width: 768px) {
    .single__location__header__img__wrapper__txt__h1 {
        font-size: 4rem;
    }
}

.single__location__header__img__wrapper__txt__name__en {
    font-size: 2.5rem;
    font-family: var(--font-en);
    font-weight: 400;
}
@media (max-width: 1280px) {
    .single__location__header__img__wrapper__txt__name__en {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .single__location__header__img__wrapper__txt__name__en {
        font-size: 1.8rem;
    }
}

.single__location__detail {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    position: relative;
}
@media (max-width: 768px) {
    .single__location__detail {
        flex-direction: column;
        row-gap: 30px;
    }
}
.single__location__detail::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: var(--inner-outer-width);
    background: #FDFAF4;
    z-index: -1;
}
@media (max-width: 768px) {
    .single__location__detail::before {
        right: 0;
    }
}
.single__location__detail img {
    width: 50%;
}
@media (max-width: 768px) {
    .single__location__detail img {
        width: 100%;
    }
}

.single__location__detail__txt {
    padding-right: 3%;
    width: 50%;
    padding-left: var(--inner-outer-width);
    font-weight: 400;
    line-height: 1.9;
}
@media (max-width: 768px) {
    .single__location__detail__txt {
        padding: 0 var(--inner-outer-width);
        width: 100%;
    }
}

.single__location__detail__txt__ttl {
    min-height: 70px;
    background: #CBC0AE;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 40px;
}
@media (max-width: 1280px) {
    .single__location__detail__txt__ttl {
        padding: 0 30px;
        min-height: 60px;
    }
}

.single__location__detail__txt__ttl__h2 {
    font-family: var(--font-sm);
    font-weight: 500;
    font-size: 3.4rem;
}
@media (max-width: 1280px) {
    .single__location__detail__txt__ttl__h2 {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .single__location__detail__txt__ttl__h2 {
        font-size: 2.4rem;
    }
}

.single__location__detail__txt__ttl__name__en {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-en);
    margin-left: 20px;
}
@media (max-width: 1280px) {
    .single__location__detail__txt__ttl__name__en {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single__location__detail__txt__ttl__name__en {
        font-size: 1.6rem;
    }
}

.single__location__swiper {
    position: relative;
}
.single__location__swiper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 80%;
    left: 0;
    right: var(--inner-outer-width);
    background: #FDFAF4;
    z-index: -1;
}
@media (max-width: 768px) {
    .single__location__swiper::before {
        right: 0;
    }
}

.single__location__swiper__swiper {
    position: relative;
    width: min(100%, 1000px);
    margin: 0 auto;
    overflow: visible;
}
@media (max-width: 1280px) {
    .single__location__swiper__swiper {
        width: 80%;
    }
}

.single__location__swiper__swiper__swiper-wrapper .swiper-slide {
    height: 650px;
}
@media (max-width: 1280px) {
    .single__location__swiper__swiper__swiper-wrapper .swiper-slide {
        height: 500px;
    }
}
@media (max-width: 768px) {
    .single__location__swiper__swiper__swiper-wrapper .swiper-slide {
        height: 350px;
    }
}
.single__location__swiper__swiper__swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.single__location__swiper__swiper__swiper-pagination {
    position: unset;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
@media (max-width: 768px) {
    .single__location__swiper__swiper__swiper-pagination {
        padding: 20px 0;
    }
}
.single__location__swiper__swiper__swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    aspect-ratio: 1;
    border: 1px solid #9F937B;
    margin: unset !important;
    height: unset;
    border-radius: unset;
    background: unset;
    opacity: unset;
}
.single__location__swiper__swiper__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    background: #9F937B;
}

.single__location__swiper__swiper__swiper-button-next,
.single__location__swiper__swiper__swiper-button-prev {
    position: absolute;
    top: calc((100% - 92px) / 2);
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 21/45;
    z-index: 10;
    cursor: pointer;
    margin-top: unset;
    height: unset;
}
.single__location__swiper__swiper__swiper-button-next::after,
.single__location__swiper__swiper__swiper-button-prev::after {
    content: "";
}
@media (max-width: 768px) {
    .single__location__swiper__swiper__swiper-button-next,
    .single__location__swiper__swiper__swiper-button-prev {
        top: calc((100% - 72px) / 2);
        width: 15px;
    }
}

.single__location__swiper__swiper__swiper-button-prev {
    background: url(../img/location/prev.svg) center/contain no-repeat;
    left: -60px;
}
@media (max-width: 768px) {
    .single__location__swiper__swiper__swiper-button-prev {
        left: -30px;
    }
}

.single__location__swiper__swiper__swiper-button-next {
    background: url(../img/location/next.svg) center/contain no-repeat;
    right: -60px;
}
@media (max-width: 768px) {
    .single__location__swiper__swiper__swiper-button-next {
        right: -30px;
    }
}

.single__location__recommend__wrapper {
    position: relative;
}
.single__location__recommend__wrapper::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 40%;
    left: 0;
    right: 0;
    background: #F5F5F5;
}

.single__location__recommend__h2__en {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 6rem;
    line-height: 1;
    text-align: center;
}
@media (max-width: 1280px) {
    .single__location__recommend__h2__en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .single__location__recommend__h2__en {
        font-size: 3.6rem;
    }
}

.single__location__recommend__h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
}
@media (max-width: 1280px) {
    .single__location__recommend__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single__location__recommend__h2 {
        font-size: 1.6rem;
    }
}

.single__location__recommend__container {
    display: flex;
    max-width: 1180px;
    margin: 0 auto;
    gap: 60px;
}
@media (max-width: 1280px) {
    .single__location__recommend__container {
        gap: 30px;
    }
}

.single__location__recommend__container__a {
    width: calc((100% - 120px) / 3);
}
@media (max-width: 1280px) {
    .single__location__recommend__container__a {
        width: calc((100% - 60px) / 3);
    }
}

.single__location__recommend__container__a__area {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    background: #9F937B;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .single__location__recommend__container__a__area {
        font-size: 1.4rem;
    }
}

.single__location__recommend__container__a__ttl {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .single__location__recommend__container__a__ttl {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single__location__recommend__container__a__ttl {
        font-size: 1.6rem;
    }
}

.single__location__recommend__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 280px;
    border: 1px solid #333333;
    margin: 0 auto;
    position: relative;
    font-family: var(--font-co);
    font-weight: 700;
    font-size: 1.8rem;
    transition: 0.4s;
}
@media (max-width: 768px) {
    .single__location__recommend__btn {
        font-size: 1.6rem;
    }
}
.single__location__recommend__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 22px;
    aspect-ratio: 22/6;
    background: #333333;
    -webkit-mask: url(../img/location/back.svg) center/contain no-repeat;
            mask: url(../img/location/back.svg) center/contain no-repeat;
    transition: inherit;
}
.single__location__recommend__btn:hover {
    opacity: unset;
    color: #fff;
    background: #333333;
}
.single__location__recommend__btn:hover::before {
    background: #fff;
}

/* ------------------------------------- /
/  みえ和婚トップ
/* ------------------------------------- */
.page-template-page-miewakon {
    background: #fff;
}

.wakon__ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}
@media (max-width: 1280px) {
    .wakon__ttl {
        min-width: 80px;
    }
}
.wakon__ttl h2 {
    writing-mode: vertical-rl;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
}
@media (max-width: 1280px) {
    .wakon__ttl h2 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .wakon__ttl h2 {
        font-size: 3rem;
    }
}
.wakon__ttl .bottom {
    position: relative;
    width: 100%;
}
.wakon__ttl .line {
    width: 100%;
    margin-top: -20%;
    aspect-ratio: 1;
    position: relative;
}
.wakon__ttl .line::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: #333333;
    height: 1px;
    width: 141.4213562373%;
    transform-origin: top right;
    transform: rotate(-45deg);
}
.wakon__ttl .h2__en {
    position: absolute;
    bottom: 0;
    left: 40px;
    color: #333333;
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .wakon__ttl .h2__en {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .wakon__ttl .h2__en {
        font-size: 1.6rem;
        left: 30px;
    }
}

.miewakon__mv {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.miewakon__mv__img {
    width: 83%;
}
@media (max-width: 768px) {
    .miewakon__mv__img {
        width: 100%;
    }
}

.miewakon__mv__box {
    position: absolute;
    right: 3%;
    bottom: 3%;
    background: #fff;
    padding: 50px;
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .miewakon__mv__box {
        bottom: -50px;
        font-size: 1.9rem;
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .miewakon__mv__box {
        position: unset;
        font-size: 1.6rem;
    }
}

.miewakon__mv__box__h1 {
    max-width: 352px;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .miewakon__mv__box__h1 {
        max-width: 240px;
    }
}
@media (max-width: 768px) {
    .miewakon__mv__box__h1 {
        max-width: 180px;
    }
}

.proposal {
    position: relative;
}
.proposal::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -5%;
    left: -5%;
    width: 50%;
    aspect-ratio: 970/849;
    background: url(../img/mie-wakon/proposal_bg.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .proposal::before {
        top: 0;
    }
}

.proposal__h2 {
    font-size: 3.4rem;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .proposal__h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .proposal__h2 {
        font-size: 2rem;
    }
}

.proposal__txt {
    max-width: 1060px;
    margin-left: auto;
    line-height: 2.4;
}

.miewakon__plan {
    max-width: 1920px;
    margin: 0 auto;
}

.miewakon__plan__header {
    display: flex;
    justify-content: space-between;
    gap: 10%;
}
@media (max-width: 1280px) {
    .miewakon__plan__header {
        gap: 4%;
    }
}
@media (max-width: 768px) {
    .miewakon__plan__header {
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }
}
.miewakon__plan__header .wakon__ttl {
    min-width: calc(min(var(--inner-outer-width), 260px) + 100px);
    padding-left: min(var(--inner-outer-width), 260px);
}
@media (max-width: 768px) {
    .miewakon__plan__header .wakon__ttl {
        padding-left: unset;
        min-width: 80px;
    }
}
.miewakon__plan__header .wakon__ttl .line::before {
    background: #988A3B;
}
.miewakon__plan__header .wakon__ttl .h2__en {
    color: #988A3B;
}

.offset__wrapper {
    max-width: 1060px;
    margin-left: auto;
}

.miewakon__plan__detail {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 768px) {
    .miewakon__plan__detail {
        flex-direction: column;
    }
}

.miewakon__plan__detail__price {
    font-size: 4rem;
}
@media (max-width: 1280px) {
    .miewakon__plan__detail__price {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .miewakon__plan__detail__price {
        font-size: 2.4rem;
    }
}
.miewakon__plan__detail__price .sm {
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .miewakon__plan__detail__price .sm {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .miewakon__plan__detail__price .sm {
        font-size: 1.8rem;
    }
}

.miewakon__plan__detail__txt {
    font-weight: 400;
    line-height: 2.4;
    max-width: 700px;
    flex: 1 1;
}

.miewakon__plan__box {
    background: #F7F7F7;
    padding: 40px;
}
@media (max-width: 1280px) {
    .miewakon__plan__box {
        padding: 25px;
    }
}
@media (max-width: 768px) {
    .miewakon__plan__box {
        padding: 15px;
    }
}

.miewakon__plan__box__line {
    height: 1px;
    width: 100%;
    background: #707070;
}

.miewakon__location {
    position: relative;
}
.miewakon__location::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -10%;
    right: -5%;
    width: 50%;
    aspect-ratio: 970/849;
    background: url(../img/mie-wakon/location_bg.webp) center/contain no-repeat;
}

.miewakon__location__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10%;
}
@media (max-width: 1280px) {
    .miewakon__location__header {
        gap: 4%;
    }
}
@media (max-width: 768px) {
    .miewakon__location__header {
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
}

.miewakon__location__header__detail {
    flex: 1 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    line-height: 2.4;
}
@media (max-width: 1280px) {
    .miewakon__location__header__detail {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .miewakon__location__header__detail {
        width: 100%;
        align-items: center;
    }
}

.miewakon__location__header__detail__location__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 400;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in;
}
@media (max-width: 1280px) {
    .miewakon__location__header__detail__location__btn {
        width: 220px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .miewakon__location__header__detail__location__btn {
        width: 180px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}
.miewakon__location__header__detail__location__btn:hover {
    opacity: unset;
    color: #fff;
    background: #000;
}

.miewakon__location__swiper {
    font-weight: 400;
    text-align: center;
    font-family: var(--font-ns);
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .miewakon__location__swiper {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .miewakon__location__swiper {
        font-size: 1.5rem;
    }
}
.miewakon__location__swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.miewakon__information {
    max-width: 1920px;
    margin: 0 auto;
    container-name: information-container;
    container-type: inline-size;
}

.miewakon__information__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .miewakon__information__header {
        flex-direction: column;
        row-gap: 30px;
        align-items: center;
    }
}
.miewakon__information__header .left {
    width: 700px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
@container information-container (max-width: 1920px) {
    .miewakon__information__header .left {
        width: 50cqi;
    }
}
@container information-container (max-width: 768px) {
    .miewakon__information__header .left {
        width: 100%;
        padding: 0 var(--inner-outer-width);
    }
}
@media (max-width: 1280px) {
    .miewakon__information__header .left {
        flex-direction: column;
        row-gap: 30px;
    }
}
@media (max-width: 768px) {
    .miewakon__information__header .left {
        align-items: center;
    }
}
.miewakon__information__header .wakon__ttl {
    padding-left: min(var(--inner-outer-width), 260px);
    margin-right: 60px;
}
@media (max-width: 768px) {
    .miewakon__information__header .wakon__ttl {
        padding-left: unset;
        margin-right: unset;
    }
}
.miewakon__information__header .information__header__detail {
    width: 840px;
}
@container information-container (max-width: 1920px) {
    .miewakon__information__header .information__header__detail {
        width: 44cqi;
    }
}
@media (max-width: 768px) {
    .miewakon__information__header .information__header__detail {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .miewakon__information__header__txt br {
        display: none;
    }
}

.miewakon__information__container {
    display: flex;
    align-items: center;
}
.miewakon__information__container:nth-child(2n) {
    flex-direction: row-reverse;
}
.miewakon__information__container:nth-child(2n) .txt {
    padding: 0 5% 0 0;
}
@media (max-width: 768px) {
    .miewakon__information__container:nth-child(n) {
        flex-direction: column;
        row-gap: 30px;
    }
    .miewakon__information__container:nth-child(n) .txt {
        padding: 0;
    }
}
.miewakon__information__container .txt {
    width: 50%;
    padding: 0 0 0 5%;
}
@media (max-width: 768px) {
    .miewakon__information__container .txt {
        width: 100%;
    }
}
.miewakon__information__container .txt h3 {
    font-size: 2.4rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .miewakon__information__container .txt h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .miewakon__information__container .txt h3 {
        font-size: 1.8rem;
    }
}
.miewakon__information__container .txt p {
    line-height: 2.4;
}
@media (max-width: 1280px) {
    .miewakon__information__container .txt p {
        line-height: 2;
    }
}

.miewakon__information__container__img {
    width: 50%;
}
@media (max-width: 768px) {
    .miewakon__information__container__img {
        width: 100%;
    }
}

.miewakon__information__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    font-size: 1.8rem;
    font-family: var(--font-en);
    font-weight: 400;
    transition: all 0.2s ease-in;
}
@media (max-width: 1280px) {
    .miewakon__information__btn {
        width: 220px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .miewakon__information__btn {
        width: 180px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
        margin: 0 auto;
    }
}
.miewakon__information__btn:hover {
    opacity: unset;
    color: #fff;
    background: #000;
}

:root {
    --flow-image-size: 252px;
}
@media (max-width: 1280px) {
    :root {
        --flow-image-size: 200px;
    }
}
@media (max-width: 768px) {
    :root {
        --flow-image-size: 160px;
    }
}
@media (max-width: 500px) {
    :root {
        --flow-image-size: 120px;
    }
}

.wakon__flow {
    background: #F7F7F7;
    position: relative;
    z-index: 0;
}
.wakon__flow::before {
    content: "";
    position: absolute;
    background: #fff;
    top: 0;
    height: 150px;
    left: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 1280px) {
    .wakon__flow::before {
        height: 120px;
    }
}
@media (max-width: 768px) {
    .wakon__flow::before {
        height: 80px;
    }
}

.wakon__flow__inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
@media (max-width: 1280px) {
    .wakon__flow__inner {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .wakon__flow__inner {
        flex-direction: column;
        align-items: center;
    }
}

.wakon__flow__contents {
    max-width: 1080px;
    margin-top: 300px;
}
@media (max-width: 1280px) {
    .wakon__flow__contents {
        margin-top: 200px;
    }
}
@media (max-width: 768px) {
    .wakon__flow__contents {
        margin-top: 40px;
    }
}

.wakon__flow__container {
    display: flex;
    gap: 80px;
}
@media (max-width: 1280px) {
    .wakon__flow__container {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .wakon__flow__container {
        gap: 25px;
    }
}
@media (max-width: 500px) {
    .wakon__flow__container {
        gap: 15px;
    }
}

.wakon__flow__container__img {
    width: var(--flow-image-size);
}

.wakon__flow__container__txt {
    flex: 1 1;
}
.wakon__flow__container__txt p {
    line-height: 2.4;
}
@media (max-width: 768px) {
    .wakon__flow__container__txt p {
        line-height: 2;
    }
}

.wakon__flow__h3 {
    font-size: 2.4rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .wakon__flow__h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .wakon__flow__h3 {
        font-size: 1.8rem;
    }
}

.wakon__flow__btn__container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 1280px) {
    .wakon__flow__btn__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .wakon__flow__btn__container {
        gap: 15px;
    }
}

.wakon__flow__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--font-ns);
    transition: all 0.2s ease-in;
}
@media (max-width: 1280px) {
    .wakon__flow__btn {
        width: 220px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .wakon__flow__btn {
        width: 180px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}
.wakon__flow__btn:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}

.wakon__flow__arrow {
    margin: 30px auto 60px calc(var(--flow-image-size) / 2);
    width: 19px;
    aspect-ratio: 19/20;
    background: url(../img/mie-wakon/flow_arrow.svg) center/contain no-repeat;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .wakon__flow__arrow {
        margin: 15px auto 30px calc(var(--flow-image-size) / 2);
        width: 15px;
    }
}

.kimono__wrapper {
    background: url(../img/mie-wakon/kimono_bg.webp) center/cover no-repeat;
    padding: 30px;
}
@media (max-width: 1280px) {
    .kimono__wrapper {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .kimono__wrapper {
        padding: 10px;
    }
}

.kimono__inner {
    padding: 70px;
    background: transparent;
    /* Note: currently only Safari supports backdrop-filter */
    -webkit-backdrop-filter: blur(9.1343002319px);
            backdrop-filter: blur(9.1343002319px);
    --webkit-backdrop-filter: blur(9.134300231933594px);
    background-color: rgba(0, 0, 0, 0.21);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1280px) {
    .kimono__inner {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .kimono__inner {
        padding: 15px;
        flex-direction: column;
    }
}

.kimono__inner__ttl {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 20px;
}
@media (max-width: 768px) {
    .kimono__inner__ttl {
        gap: 10px;
    }
}

.kimono__inner__ttl__h2__en {
    font-size: 8rem;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .kimono__inner__ttl__h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .kimono__inner__ttl__h2__en {
        font-size: 4rem;
    }
}

.kimono__inner__ttl__h2 {
    font-size: 2.4rem;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .kimono__inner__ttl__h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .kimono__inner__ttl__h2 {
        font-size: 1.8rem;
    }
}

.kimono__inner__left {
    flex: 1 1;
}

.kimono__inner__txt {
    font-size: 1.6rem;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .kimono__inner__txt {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .kimono__inner__txt {
        font-size: 1.4rem;
    }
}

.kimono__inner__right {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1280px) {
    .kimono__inner__right {
        gap: 20px;
    }
}

.kimono__inner__logo {
    max-width: 168px;
}
@media (max-width: 1280px) {
    .kimono__inner__logo {
        max-width: 130px;
    }
}
@media (max-width: 768px) {
    .kimono__inner__logo {
        max-width: 90px;
    }
}

.voice__h2__en {
    text-align: center;
    font-size: 6rem;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .voice__h2__en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .voice__h2__en {
        font-size: 3rem;
    }
}

.voice__h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .voice__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .voice__h2 {
        font-size: 1.6rem;
    }
}

.voice__container {
    display: flex;
    gap: 6%;
}
@media (max-width: 1280px) {
    .voice__container {
        gap: 3%;
    }
}
@media (max-width: 768px) {
    .voice__container {
        flex-direction: column;
        gap: 30px;
    }
}

.voice__container__box {
    width: 29.3333333333%;
}
@media (max-width: 1280px) {
    .voice__container__box {
        width: 31.3333333333%;
    }
}
@media (max-width: 768px) {
    .voice__container__box {
        width: 100%;
    }
}
.voice__container__box .img {
    width: 100%;
    background: #59524F;
    aspect-ratio: 404/311;
}
.voice__container__box p {
    font-weight: 400;
}

.miewakon__qaa {
    position: relative;
    z-index: 0;
}
.miewakon__qaa::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 1%;
    right: -5%;
    width: 50%;
    aspect-ratio: 970/849;
    background: url(../img/mie-wakon/qaa_bg.webp) center/contain no-repeat;
}
.miewakon__qaa .accordion {
    background: #FDFCFB;
    padding: 30px 50px 40px;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .miewakon__qaa .accordion {
        padding: 20px 40px 30px;
    }
}
@media (max-width: 1280px) {
    .miewakon__qaa .accordion {
        padding: 20px;
    }
}
.miewakon__qaa .accordion .faq__or {
    font-size: 3rem;
    font-family: var(--font-en);
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .miewakon__qaa .accordion .faq__or {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .miewakon__qaa .accordion .faq__or {
        font-size: 2rem;
    }
}
.miewakon__qaa .accordion .faq__q,
.miewakon__qaa .accordion .accordion__box {
    display: flex;
    align-items: baseline;
    gap: 30px;
}
@media (max-width: 1280px) {
    .miewakon__qaa .accordion .faq__q,
    .miewakon__qaa .accordion .accordion__box {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .miewakon__qaa .accordion .faq__q,
    .miewakon__qaa .accordion .accordion__box {
        gap: 15px;
    }
}
.miewakon__qaa .accordion .faq__q {
    cursor: pointer;
}
.miewakon__qaa .accordion .accordion__box {
    padding-top: 30px;
}
@media (max-width: 1280px) {
    .miewakon__qaa .accordion .accordion__box {
        padding-top: 20px;
    }
}

.miewakon__qaa__h2__en {
    text-align: center;
    font-size: 6rem;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .miewakon__qaa__h2__en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .miewakon__qaa__h2__en {
        font-size: 3rem;
    }
}

.miewakon__qaa__h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .miewakon__qaa__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .miewakon__qaa__h2 {
        font-size: 1.6rem;
    }
}

/* ------------------------------------- /
/  みえ和婚提携神社一覧
/* ------------------------------------- */
.page-template-page-alliance {
    background: #fff;
}
.page-template-page-alliance .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .page-template-page-alliance .breadcrumb {
        width: 100%;
        font-size: 1.6rem;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-alliance .breadcrumb {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }
}
.page-template-page-alliance .breadcrumb li:not(:last-child) {
    position: relative;
    padding-right: 100px;
}
@media (max-width: 1280px) {
    .page-template-page-alliance .breadcrumb li:not(:last-child) {
        padding-right: 70px;
    }
}
.page-template-page-alliance .breadcrumb li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 72px;
    height: 1px;
    background: #000;
}
@media (max-width: 1280px) {
    .page-template-page-alliance .breadcrumb li:not(:last-child)::before {
        width: 50px;
    }
}

.alliance__header {
    position: relative;
}
.alliance__header::before {
    content: "";
    position: absolute;
    width: 50%;
    aspect-ratio: 970/849;
    background: url(../img/alliance/alliance_bg.webp) center/contain no-repeat;
    z-index: -1;
    top: 0;
    left: -10%;
}
.alliance__header p {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-en);
    padding-left: 40px;
}
@media (max-width: 1280px) {
    .alliance__header p {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .alliance__header p {
        font-size: 1.6rem;
        padding-left: 30px;
    }
}

.alliance__header__bottom {
    position: relative;
}

.alliance__header__inner {
    display: flex;
    justify-content: space-between;
}

.alliance__header__h1 {
    writing-mode: vertical-lr;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
}
@media (max-width: 1280px) {
    .alliance__header__h1 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .alliance__header__h1 {
        font-size: 3rem;
    }
}

.alliance__header__line {
    margin-top: -20px;
    --box-width: 100px;
    width: var(--box-width);
    aspect-ratio: 1;
    position: relative;
}
@media (max-width: 1280px) {
    .alliance__header__line {
        --box-width: 80px;
    }
}
.alliance__header__line::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: #707070;
    height: 1px;
    width: calc(var(--box-width) * 1.4142135624);
    transform-origin: top right;
    transform: rotate(-45deg);
}

.alliance__btn__section__inner {
    display: flex;
    gap: 1.5%;
}
@media (max-width: 1280px) {
    .alliance__btn__section__inner {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .alliance__btn__section__inner {
        gap: 15px;
    }
}

.alliance__btn__section__inner__a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 2rem;
    font-weight: 400;
    width: 260px;
    height: 70px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.2s ease-in;
}
.alliance__btn__section__inner__a:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
@media (max-width: 1280px) {
    .alliance__btn__section__inner__a {
        font-size: 1.8rem;
        width: calc((100% - 20px) / 2);
        height: 60px;
    }
}
@media (max-width: 768px) {
    .alliance__btn__section__inner__a {
        font-size: 1.6rem;
        height: 50px;
        width: 100%;
    }
}
.alliance__btn__section__inner__a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 12px;
    aspect-ratio: 1;
    background: url(../img/alliance/arrow.svg) center/contain no-repeat;
}

.alliance__contents__area__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #707070;
}

.alliance__contents__area__header__h2 {
    font-size: 3.4rem;
}
@media (max-width: 1280px) {
    .alliance__contents__area__header__h2 {
        font-size: 2.6rem;
    }
}

.alliance__contents__area__header__count {
    font-size: 2.4rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .alliance__contents__area__header__count {
        font-size: 2rem;
    }
}

.alliance__post__container {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
@media (max-width: 1280px) {
    .alliance__post__container {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .alliance__post__container {
        gap: 30px;
    }
}

.alliance__post__container__post {
    width: calc((100% - 140px) / 3);
}
@media (max-width: 1280px) {
    .alliance__post__container__post {
        width: calc((100% - 80px) / 3);
    }
}
@media (max-width: 768px) {
    .alliance__post__container__post {
        width: 100%;
    }
}

.alliance__post__container__post__thumbnail img {
    aspect-ratio: 420/261;
    -o-object-fit: cover;
       object-fit: cover;
}

.alliance__post__container__post__terms {
    display: flex;
    gap: 10px;
}
.alliance__post__container__post__terms span {
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #707070;
    padding: 0 30px;
}
@media (max-width: 1280px) {
    .alliance__post__container__post__terms span {
        font-size: 1.6rem;
        height: 26px;
        border-radius: 13px;
        padding: 0 15px;
    }
}

.alliance__post__container__post__ttl {
    font-size: 2.4rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .alliance__post__container__post__ttl {
        font-size: 2rem;
    }
}

.alliance__post__container__post__detail {
    font-size: 1.5rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .alliance__post__container__post__detail {
        font-size: 1.4rem;
    }
}

/* ------------------------------------- /
/  みえ和婚提携神社単体
/* ------------------------------------- */
.single-miewakon_location {
    background: #fff;
}
.single-miewakon_location .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .single-miewakon_location .breadcrumb {
        width: 100%;
        font-size: 1.6rem;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .single-miewakon_location .breadcrumb {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }
}
.single-miewakon_location .breadcrumb li:not(:last-child) {
    position: relative;
    padding-right: 100px;
}
@media (max-width: 1280px) {
    .single-miewakon_location .breadcrumb li:not(:last-child) {
        padding-right: 70px;
    }
}
.single-miewakon_location .breadcrumb li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 72px;
    height: 1px;
    background: #000;
}
@media (max-width: 1280px) {
    .single-miewakon_location .breadcrumb li:not(:last-child)::before {
        width: 50px;
    }
}

.single-miewakon_location__post__container {
    display: flex;
}
@media (max-width: 768px) {
    .single-miewakon_location__post__container {
        flex-direction: column;
        row-gap: 40px;
    }
}

.single-miewakon_location__post__container__thumbnail {
    width: 50%;
}
@media (max-width: 768px) {
    .single-miewakon_location__post__container__thumbnail {
        width: 100%;
    }
}

.single-miewakon_location__post__container__right {
    width: 50%;
    padding-left: 100px;
}
@media (max-width: 1280px) {
    .single-miewakon_location__post__container__right {
        padding-left: 40px;
    }
}
@media (max-width: 768px) {
    .single-miewakon_location__post__container__right {
        width: 100%;
        padding-left: 0;
    }
}

.single-miewakon_location__post__container__right__terms {
    display: flex;
    gap: 10px;
}
.single-miewakon_location__post__container__right__terms span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #707070;
    padding: 0 30px;
}
@media (max-width: 768px) {
    .single-miewakon_location__post__container__right__terms span {
        height: 26px;
        border-radius: 13px;
        padding: 0 20px;
    }
}

.single-miewakon_location__post__container__right__h1 {
    font-size: 3.4rem;
}
@media (max-width: 1280px) {
    .single-miewakon_location__post__container__right__h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .single-miewakon_location__post__container__right__h1 {
        font-size: 2rem;
    }
}

.single-miewakon_location__post__container__right__post_content h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 40px;
}
@media (max-width: 1280px) {
    .single-miewakon_location__post__container__right__post_content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .single-miewakon_location__post__container__right__post_content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}
.single-miewakon_location__post__container__right__post_content p {
    line-height: 2.4;
}

.single-miewakon_location__under__container {
    max-width: 960px;
    margin: 0 auto;
}

.single-miewakon_location__under__container__table {
    width: 100%;
}
.single-miewakon_location__under__container__table th, .single-miewakon_location__under__container__table td {
    padding: 25px 0;
    border-bottom: 1px solid #606060;
}
@media (max-width: 1280px) {
    .single-miewakon_location__under__container__table th, .single-miewakon_location__under__container__table td {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .single-miewakon_location__under__container__table th, .single-miewakon_location__under__container__table td {
        padding: 15px 0;
    }
}
.single-miewakon_location__under__container__table th {
    width: 180px;
}
@media (max-width: 1280px) {
    .single-miewakon_location__under__container__table th {
        width: 160px;
    }
}
@media (max-width: 768px) {
    .single-miewakon_location__under__container__table th {
        width: 90px;
    }
}

.miewakon__google__map {
    width: 100%;
}
.miewakon__google__map iframe {
    width: 100%;
    min-height: 450px;
}

/* ------------------------------------- /
/  ブランドブルートップ
/* ------------------------------------- */
.page-template-page-blanc {
    background: #fff;
    color: #606060;
}
.page-template-page-blanc .template__lookup {
    position: relative;
    z-index: 0;
}
.page-template-page-blanc .template__lookup::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 30%;
    right: -5%;
    width: 50%;
    aspect-ratio: 970/849;
    background: url(../img/blanc/lookup_bg.webp) center/contain no-repeat;
}
.page-template-page-blanc .template__consult {
    position: relative;
    z-index: 0;
}
.page-template-page-blanc .template__consult__wrapper::before {
    background: #fff;
}

.page-template-page-blanc__mv {
    position: relative;
}

.page-template-page-blanc__mv__img {
    width: 83%;
}
@media (max-width: 768px) {
    .page-template-page-blanc__mv__img {
        width: 100%;
    }
}

.page-template-page-blanc__mv__box {
    position: absolute;
    bottom: 50px;
    right: 3%;
    background: #fff;
    text-align: center;
    font-size: 2.8rem;
    padding: 70px;
    line-height: 1.9;
}
@media (max-width: 1600px) {
    .page-template-page-blanc__mv__box {
        padding: 30px;
    }
}
@media (max-width: 1280px) {
    .page-template-page-blanc__mv__box {
        padding: 20px;
        bottom: 0;
        font-size: 2rem;
        line-height: 1.6;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__mv__box {
        position: unset;
        font-size: 1.8rem;
        margin-top: 50px;
    }
}

.page-template-page-blanc__mv__box__logo {
    max-width: 380px;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__mv__box__logo {
        max-width: 280px;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__mv__box__logo {
        max-width: 220px;
    }
}

.page-template-page-blanc__wedding {
    margin: 0 auto;
    margin-top: 200px;
    max-width: 1920px;
    display: flex;
    align-items: flex-end;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__wedding {
        margin-top: 120px;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__wedding {
        flex-direction: column-reverse;
        margin-top: 80px;
        row-gap: 40px;
    }
}

.page-template-page-blanc__wedding__h2 {
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--blue);
}
@media (max-width: 1280px) {
    .page-template-page-blanc__wedding__h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__wedding__h2 {
        font-size: 2rem;
    }
}

.page-template-page-blanc__wedding__h2__en {
    font-family: var(--font-ly);
    font-size: clamp(7rem, 4rem + 2.34vw, 8.5rem);
    line-height: 1;
    color: var(--blue);
}
@media (max-width: 1280px) {
    .page-template-page-blanc__wedding__h2__en {
        font-size: clamp(4.2rem, -0.002rem + 5.47vw, 7rem);
    }
}

.page-template-page-blanc__wedding__left {
    width: 50%;
    padding-left: var(--inner-outer-width);
}
@media (max-width: 768px) {
    .page-template-page-blanc__wedding__left {
        width: 100%;
        padding: 0 var(--inner-outer-width);
    }
}

.page-template-page-blanc__wedding__img {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-page-blanc__wedding__img {
        width: 100%;
    }
}

.page-template-page-blanc__wedding__logo {
    width: 80%;
    margin-left: auto;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__wedding__logo {
        width: 90%;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__wedding__logo {
        width: 100%;
    }
}

.page-template-page-blanc__plan {
    background: #F6FBFC;
    text-align: center;
    font-weight: 400;
    position: relative;
    z-index: 0;
}
.page-template-page-blanc__plan::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 13%;
    background: #fff;
    clip-path: polygon(0 0, 100% 0%, 0 100%);
}
.page-template-page-blanc__plan::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 13%;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.page-template-page-blanc__plan__h2__en {
    color: var(--blue);
    font-size: 9rem;
    font-family: var(--font-ly);
    line-height: 1;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__plan__h2__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__plan__h2__en {
        font-size: 5rem;
    }
}

.page-template-page-blanc__plan__h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__plan__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__plan__h2 {
        font-size: 1.6rem;
    }
}

.page-template-page-blanc__plan__h3 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__plan__h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__plan__h3 {
        font-size: 2rem;
    }
}

.page-template-page-blanc__plan__price {
    font-size: 3.4rem;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__plan__price {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__plan__price {
        font-size: 2rem;
    }
}

.page-template-page-blanc__plan__max {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 37px;
    min-width: 163px;
    border-radius: 19px;
    border: 1px solid #707070;
}

.line__1000 {
    max-width: 1000px;
    margin: 0 auto;
    height: 1px;
    background: #707070;
}

.page-template-page-blanc__plan__detail {
    line-height: 2.4;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__plan__detail {
        line-height: 2;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__plan__detail {
        text-align: left;
    }
    .page-template-page-blanc__plan__detail br {
        display: none;
    }
}

.page-template-page-blanc__plan__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 400;
    transition: all 0.2s ease-in;
}
.page-template-page-blanc__plan__btn:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__plan__btn {
        width: 220px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__plan__btn {
        width: 200px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}

.page-template-page-blanc__ceremony {
    position: relative;
}
.page-template-page-blanc__ceremony::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #707070;
    transform: skew(-8deg, -8deg);
}

.ceremony__top__line {
    position: relative;
}
.ceremony__top__line::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: #707070;
    transform: skew(8deg, 8deg);
}

.ceremony__top {
    text-align: center;
    line-height: 2.4;
}

.ceremony__top__h2__en {
    font-size: 9rem;
    font-family: var(--font-ly);
    font-weight: 400;
    color: var(--blue);
    line-height: 1;
}
@media (max-width: 1280px) {
    .ceremony__top__h2__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .ceremony__top__h2__en {
        font-size: 5rem;
    }
}

.ceremony__top__h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .ceremony__top__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .ceremony__top__h2 {
        font-size: 1.6rem;
    }
}

.ceremony__container {
    display: flex;
    gap: 55px;
}
@media (max-width: 1280px) {
    .ceremony__container {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .ceremony__container {
        margin-top: 30px;
        flex-direction: column;
        row-gap: 40px;
    }
}

.ceremony__container__box {
    width: calc((100% - 110px) / 3);
}
@media (max-width: 1280px) {
    .ceremony__container__box {
        width: calc((100% - 50px) / 3);
    }
}
@media (max-width: 768px) {
    .ceremony__container__box {
        width: 100%;
    }
}
.ceremony__container__box:nth-child(2) {
    margin-top: 70px;
}
@media (max-width: 1280px) {
    .ceremony__container__box:nth-child(2) {
        margin-top: 50px;
    }
}
@media (max-width: 768px) {
    .ceremony__container__box:nth-child(2) {
        margin-top: unset;
    }
}

.ceremony__container__box__img {
    position: relative;
}

.ceremony__container__box__img__num {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: var(--font-en);
    color: #DEEEF4;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .ceremony__container__box__img__num {
        top: 30px;
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .ceremony__container__box__img__num {
        top: 40px;
        font-size: 5rem;
    }
}

.ceremony__container__box__h3 {
    text-align: center;
    font-weight: 400;
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .ceremony__container__box__h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .ceremony__container__box__h3 {
        font-size: 1.8rem;
    }
}

.ceremony__container__box__txt {
    font-weight: 400;
    line-height: 2.1;
}

.page-template-page-blanc__flow {
    background: #F6FBFC;
    position: relative;
    padding-bottom: 300px;
}
@media (max-width: 1280px) {
    .page-template-page-blanc__flow {
        padding-bottom: 200px;
    }
}
@media (max-width: 768px) {
    .page-template-page-blanc__flow {
        padding-bottom: 100px;
    }
}
.page-template-page-blanc__flow::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #707070;
    transform: skew(8deg, 8deg);
}

.flow__top {
    text-align: center;
    font-weight: 400;
}

.flow__top__h2__en {
    font-size: 9rem;
    font-family: var(--font-ly);
    line-height: 1;
    color: var(--blue);
}
@media (max-width: 1280px) {
    .flow__top__h2__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .flow__top__h2__en {
        font-size: 5rem;
    }
}

.flow__top__h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .flow__top__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .flow__top__h2 {
        font-size: 1.6rem;
    }
}

.blanc__flow__container {
    display: flex;
}
.blanc__flow__container:nth-child(2n+1) {
    flex-direction: row-reverse;
}
.blanc__flow__container:nth-child(2n+1) .img {
    border-right: unset;
}
.blanc__flow__container:nth-child(2n+1) .img img {
    margin-right: auto;
    margin-left: 15%;
}
.blanc__flow__container:nth-child(2n+1) .detail {
    border-right: 1px solid #707070;
    padding-left: unset;
    padding-right: 7%;
}
.blanc__flow__container:nth-child(2n+1) .detail::before {
    left: unset;
    right: 0;
}
.blanc__flow__container:nth-child(2n+1) .detail h3 {
    text-align: right;
}
.blanc__flow__container:nth-child(2n+1) .detail .blanc__flow__container__btn__container {
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .blanc__flow__container:nth-child(n) {
        flex-direction: column;
    }
    .blanc__flow__container:nth-child(n) .img {
        width: 100%;
        border: none;
    }
    .blanc__flow__container:nth-child(n) .img img {
        margin: 0 auto;
    }
    .blanc__flow__container:nth-child(n) .detail {
        width: 100%;
        border: none;
        padding: 30px 0;
    }
    .blanc__flow__container:nth-child(n) .detail::before {
        display: none;
    }
    .blanc__flow__container:nth-child(n) .detail h3 {
        text-align: left;
    }
    .blanc__flow__container:nth-child(n) .detail .blanc__flow__container__btn__container {
        justify-content: flex-start;
    }
}
.blanc__flow__container .img {
    width: 50%;
    border-right: 1px solid #707070;
    padding-top: 50px;
}
.blanc__flow__container .img img {
    width: 200px;
    margin-left: auto;
    margin-right: 15%;
}
.blanc__flow__container .detail {
    width: 50%;
    padding-left: 7%;
    padding-top: 80px;
    position: relative;
}
.blanc__flow__container .detail::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 1px;
    background: #707070;
    top: 100px;
    left: 0;
}
@media (max-width: 1280px) {
    .blanc__flow__container .detail::before {
        top: 95px;
    }
}
.blanc__flow__container .detail h3 {
    font-size: 2.4rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .blanc__flow__container .detail h3 {
        font-size: 2rem;
    }
}
.blanc__flow__container .detail p {
    line-height: 2.1;
}

.blanc__flow__container__btn__container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
@media (max-width: 1280px) {
    .blanc__flow__container__btn__container {
        gap: 15px;
    }
}

.blanc__flow__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in;
}
@media (max-width: 1280px) {
    .blanc__flow__btn {
        font-size: 1.7rem;
        width: 220px;
        height: 60px;
        border-radius: 30px;
    }
}
.blanc__flow__btn:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}

.page-template-page-blanc__party {
    position: relative;
}
.page-template-page-blanc__party::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #707070;
    transform: skew(-8deg, -8deg);
}

.party__top {
    text-align: center;
}

.party__top__h2__en {
    font-size: 9rem;
    font-family: var(--font-ly);
    font-weight: 400;
    line-height: 1;
    color: var(--blue);
}
@media (max-width: 1280px) {
    .party__top__h2__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .party__top__h2__en {
        font-size: 5rem;
    }
}

.party__top__h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .party__top__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .party__top__h2 {
        font-size: 1.6rem;
    }
}

.party__container {
    display: flex;
    gap: 55px;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .party__container {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .party__container {
        flex-direction: column;
    }
}

.party__container__box {
    width: calc((100% - 110px) / 3);
}
@media (max-width: 1280px) {
    .party__container__box {
        width: calc((100% - 50px) / 3);
    }
}
@media (max-width: 768px) {
    .party__container__box {
        width: 100%;
    }
}

.party__container__box__h3__h3 {
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .party__container__box__h3__h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .party__container__box__h3__h3 {
        font-size: 1.8rem;
    }
}

/* ------------------------------------- /
/  挙式プラン
/* ------------------------------------- */
.page-template-page-plan {
    background: #fff;
}

.plan__plan__header {
    position: relative;
    z-index: 0;
}
.plan__plan__header::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -20%;
    left: -10%;
    width: 50%;
    aspect-ratio: 970/849;
    background: url(../img/plan/header_bg.webp) center/contain no-repeat;
}
.plan__plan__header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .plan__plan__header .breadcrumb {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .plan__plan__header .breadcrumb {
        font-size: 1.6rem;
        gap: 10px;
    }
}
.plan__plan__header .breadcrumb li:not(:first-child) {
    padding-left: 90px;
    position: relative;
}
@media (max-width: 768px) {
    .plan__plan__header .breadcrumb li:not(:first-child) {
        padding-left: 50px;
    }
}
.plan__plan__header .breadcrumb li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 70px;
    height: 1px;
    background: #000;
}
@media (max-width: 768px) {
    .plan__plan__header .breadcrumb li:not(:first-child)::before {
        width: 40px;
    }
}

.plan__plan__header__inner {
    display: flex;
    justify-content: space-between;
}

.plan__plan__header__h1__en {
    color: #DEEEF4;
    font-family: var(--font-ly);
    font-size: 20rem;
    line-height: 1;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .plan__plan__header__h1__en {
        font-size: 15rem;
    }
}
@media (max-width: 768px) {
    .plan__plan__header__h1__en {
        font-size: 10rem;
    }
}

.plan__plan__header__h1 {
    font-weight: 500;
    font-size: 3.4rem;
    letter-spacing: 0.06em;
    position: relative;
    bottom: 70px;
    left: 120px;
}
@media (max-width: 1280px) {
    .plan__plan__header__h1 {
        font-size: 2.5rem;
        bottom: 50px;
        left: 100px;
    }
}
@media (max-width: 768px) {
    .plan__plan__header__h1 {
        font-size: 2rem;
        bottom: 40px;
        left: 70px;
    }
}

.plan__sec__1 {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 400;
}
@media (max-width: 768px) {
    .plan__sec__1 {
        flex-direction: column;
        row-gap: 40px;
    }
}
.plan__sec__1:nth-child(4) {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .plan__sec__1:nth-child(4) {
        flex-direction: column;
    }
}
.plan__sec__1:nth-child(4) .plan__sec__1__txt {
    padding-right: var(--inner-outer-width);
    padding-left: unset;
}
@media (max-width: 768px) {
    .plan__sec__1:nth-child(4) .plan__sec__1__txt {
        padding-left: var(--inner-outer-width);
    }
}
.plan__sec__1:nth-child(4) .plan__sec__1__img {
    padding-left: unset;
    padding-right: 80px;
}
@media (max-width: 1280px) {
    .plan__sec__1:nth-child(4) .plan__sec__1__img {
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
    .plan__sec__1:nth-child(4) .plan__sec__1__img {
        padding-right: unset;
    }
}

.plan__sec__1__txt {
    width: 50%;
    padding-left: var(--inner-outer-width);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 768px) {
    .plan__sec__1__txt {
        width: 100%;
        padding-right: var(--inner-outer-width);
    }
}

.plan__sec__1__txt__h2__en {
    font-family: var(--font-ly);
    font-size: 10rem;
    line-height: 1;
    color: #DEEEF4;
}
@media (max-width: 1280px) {
    .plan__sec__1__txt__h2__en {
        font-size: 5rem;
    }
}
.plan__sec__1__txt__h2 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-top: -30px;
}
@media (max-width: 1280px) {
    .plan__sec__1__txt__h2 {
        font-size: 2.4rem;
        margin-top: -20px;
    }
}
@media (max-width: 768px) {
    .plan__sec__1__txt__h2 {
        font-size: 2rem;
        margin-top: -15px;
    }
}

.plan__sec__1__txt__price {
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .plan__sec__1__txt__price {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .plan__sec__1__txt__price {
        font-size: 2rem;
    }
}

.plan__sec__1__txt__max {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 163px;
    height: 37px;
    border-radius: 19px;
    border: 1px solid #707070;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .plan__sec__1__txt__max {
        font-size: 1.6rem;
        width: 140px;
        height: 32px;
        border-radius: 16px;
    }
}

.plan__sec__1__txt__detail {
    line-height: 2.35;
}
@media (max-width: 768px) {
    .plan__sec__1__txt__detail {
        text-align: left;
    }
}

.plan__sec__1__txt__line {
    height: 1px;
    width: 100%;
    background: #707070;
}

.plan__sec__1__img {
    width: 50%;
    padding-left: 80px;
}
@media (max-width: 1280px) {
    .plan__sec__1__img {
        padding-left: 40px;
    }
}
@media (max-width: 768px) {
    .plan__sec__1__img {
        width: 100%;
        padding-left: unset;
    }
}

.plan__line__1 {
    position: relative;
    z-index: -1;
}
.plan__line__1::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #707070;
    transform: skew(-8deg, -8deg);
}

.plan__line__2 {
    position: relative;
    z-index: -1;
}
.plan__line__2::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #707070;
    transform: skew(8deg, 8deg);
}

.after__party {
    background: #F6FBFC;
    text-align: center;
    font-weight: 400;
    line-height: 2.4;
    position: relative;
    z-index: 0;
}
@media (max-width: 1280px) {
    .after__party {
        line-height: 2;
    }
}
.after__party::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    background: #fff;
}
@media (max-width: 1280px) {
    .after__party::before {
        height: 100px;
    }
}
@media (max-width: 768px) {
    .after__party::before {
        height: 60px;
    }
}
.after__party::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    background: #fff;
}
@media (max-width: 1280px) {
    .after__party::after {
        height: 100px;
    }
}
@media (max-width: 768px) {
    .after__party::after {
        height: 60px;
    }
}

.after__party__h2__en {
    font-size: 11rem;
    font-family: var(--font-ly);
    line-height: 1;
    color: #DEEEF4;
}
@media (max-width: 1280px) {
    .after__party__h2__en {
        font-size: 9rem;
    }
}
@media (max-width: 768px) {
    .after__party__h2__en {
        font-size: 7rem;
    }
}

.after__party__h2 {
    font-size: 3rem;
    letter-spacing: 0.06em;
    margin-top: -40px;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .after__party__h2 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .after__party__h2 {
        font-size: 2rem;
    }
}

.after__party__price {
    font-weight: 500;
    font-size: 3.4rem;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .after__party__price {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .after__party__price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .after__party__detail {
        text-align: left;
    }
}

.plan__line__3 {
    position: relative;
    z-index: 1;
}
.plan__line__3::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #707070;
    transform: skew(8deg, 8deg);
}/*# sourceMappingURL=style.css.map */