@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Cormorant SC", serif;
    --color-black: #5D5D5D;
    --color-gold: #C6B27A;
    --color-blue: #587FAC;
}

html {
    font-size: 62.5%;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    line-height: 1.375;
    -webkit-font-smoothing: antialiased;
}
@media (max-width: 1200px) {
    html {
        scroll-padding-top: 70px;
    }
}

body {
    min-height: 100%;
    font-size: 1.8rem;
    font-family: var(--font-jp);
    color: var(--color-black);
    background-color: #ffffff;
}
@media (max-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}

main {
    margin-top: 100px;
}
@media (max-width: 1200px) {
    main {
        margin-top: 70px;
    }
}

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

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

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

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

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

.color-black {
    color: var(--color-black);
}

.color-blue {
    color: var(--color-blue);
}

.cormorant-infant-regular {
    font-family: "Cormorant Infant", serif;
    font-weight: 400;
}

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

.taR {
    text-align: right;
}

.fwM {
    font-weight: 500;
}

.fw400 {
    font-weight: 400;
}

.fwB {
    font-weight: bold;
}

.inner {
    width: min(100%, 1568px);
    margin: 0 auto;
    padding: 0 min(6%, 84px);
}

@media screen and (max-width: 600px) {
    .inner {
        padding: 0 4%;
    }
}
/* ------------------------------------- /
/   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: 50%;
    transform: translateY(-50%);
    z-index: 100001;
}
.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: 1200px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 600px) {
    .menu-trigger {
        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: 100px;
    font-family: "Noto Serif JP", serif;
    background: #fff;
    padding: 15px 0;
}
/* .skiptranslate + header {
    top: 35px;
} */
@media (max-width: 1200px) {
    header {
        height: 70px;
    }
}
header .outer {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .outer .header__left .header__logo {
    color: #153963;
    display: flex;
    align-items: center;
    font-size: 3rem;
    font-weight: 500;
    gap: 13px;
}
header .outer .header__left .header__logo img {
    width: 70px;
}
header .outer .header__right {
    display: flex;
    align-items: center;
}
header .outer .header__right .header__menu {
    display: flex;
    gap: 50px;
    font-size: 1.9rem;
    font-weight: 500;
}
header .outer .header__right .header__tel {
    margin-left: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
}
header .outer .header__right .header__tel .num {
    color: var(--color-gold);
    font-size: 3.6rem;
    font-family: "Cormorant Infant", serif;
    line-height: 1.14;
}
header .outer .header__right .contact__btn {
    margin-left: 26px;
    color: #fff;
    background: var(--color-gold);
    height: 70px;
    width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 500;
}
@media (max-width: 1650px) {
    header .outer .header__right .header__menu {
        gap: 20px;
    }
    header .outer .header__right .header__tel {
        margin-left: 20px;
    }
    header .outer .header__right .contact__btn {
        margin-left: 15px;
        width: 220px;
    }
}
@media (max-width: 1400px) {
    header .outer {
        padding: 0 30px;
    }
    header .outer .header__left .header__logo {
        font-size: 2.2rem;
    }
    header .outer .header__left .header__logo img {
        width: 50px;
    }
    header .outer .header__right .header__tel {
        font-size: 1.6rem;
    }
    header .outer .header__right .header__tel .num {
        font-size: 3rem;
    }
    header .outer .header__right .contact__btn {
        font-size: 1.6rem;
        width: 180px;
    }
}
@media (max-width: 1200px) {
    header .outer .header__right {
        background: #fff;
        width: min(100%, 400px);
        height: 100vh;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    header .outer .header__right .header__menu {
        flex-direction: column;
    }
    header .outer .header__right .header__tel,
    header .outer .header__right .contact__btn {
        margin-left: unset;
    }
    header .outer .header__right.active {
        transform: translateX(0);
        z-index: 100;
        transition-delay: 0s;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #1F3146;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: 500;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
footer .inner .left {
    width: 330px;
}
footer .inner .left .footer__company {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 3rem;
    width: -moz-fit-content;
    width: fit-content;
}
footer .inner .left .footer__company .logo {
    width: 70px;
}
footer .inner .left .tel {
    font-family: "Cormorant Infant", serif;
    line-height: 1.14;
    font-size: 2.8rem;
}
footer .inner .left .tel a {
    font-size: 3.6rem;
}
footer .inner .right {
    width: calc(100% - 330px - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
footer .inner .right .footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 50px;
    row-gap: 20px;
}
@media (max-width: 768px) {
    footer {
        font-size: 1.6rem;
    }
    footer .inner {
        flex-direction: column;
    }
    footer .inner .left {
        width: 100%;
    }
    footer .inner .right {
        width: 100%;
        gap: 30px;
        align-items: flex-start;
    }
    footer .inner .right .footer__menu {
        justify-content: flex-start;
        gap: 20px;
    }
}
@media (max-width: 500px) {
    footer .inner .left .footer__company {
        font-size: 2.6rem;
    }
    footer .inner .left .footer__company .logo {
        width: 50px;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.breadcrumb__section {
    color: #1F3146;
    font-family: var(--font-jp);
    font-size: 1.7rem;
}
.breadcrumb__section .inner .breadcrumb {
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb__section .inner .breadcrumb li {
    position: relative;
    display: flex;
    align-items: baseline;
}
.breadcrumb__section .inner .breadcrumb li:not(:first-child)::before {
    padding: 0 5px;
    content: " / ";
    display: block;
}

.ttl__box {
    color: #1F3146;
}
.ttl__box .ttl {
    font-family: var(--font-en);
    font-size: 7rem;
}
.ttl__box .sub__ttl {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 2.4rem;
}
@media (max-width: 768px) {
    .ttl__box .ttl {
        font-size: 5rem;
    }
    .ttl__box .sub__ttl {
        font-size: 2rem;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page .fv {
    position: relative;
}
.page-template-front-page .fv .txt {
    position: absolute;
    bottom: 2%;
    right: 5%;
    color: #fff;
    font-family: var(--font-en);
    font-size: 2.8rem;
}
.page-template-front-page .about {
    position: relative;
    overflow: hidden;
}
.page-template-front-page .about .bg {
    position: absolute;
    top: 8%;
    left: 50%;
    width: 67%;
    aspect-ratio: 1321/763;
    z-index: -1;
    background: url(../img/top/map.svg) 0 0/contain no-repeat;
}
.page-template-front-page .about .inner h2 {
    font-size: 3rem;
    color: var(--color-gold);
    font-family: var(--font-en);
}
.page-template-front-page .about .inner p {
    line-height: 2.2;
}
.page-template-front-page .about .inner .blue {
    color: var(--color-blue);
    font-family: "Noto Serif JP", serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.875;
}
@media (max-width: 1200px) {
    .page-template-front-page .about .bg {
        top: 33%;
        left: 55%;
        width: 55%;
    }
    .page-template-front-page .about .inner h2 {
        font-size: 2.4rem;
    }
    .page-template-front-page .about .inner p {
        line-height: 1.8;
    }
    .page-template-front-page .about .inner .blue {
        font-size: 3.2rem;
        line-height: 1.6;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .about .bg {
        position: static;
        margin: 0 auto 30px;
        width: 90%;
    }
    .page-template-front-page .about .inner h2 {
        font-size: 2rem;
    }
    .page-template-front-page .about .inner p {
        line-height: 1.6;
    }
    .page-template-front-page .about .inner .blue {
        font-size: 2.6rem;
    }
}
@media (max-width: 500px) {
    .page-template-front-page .about .inner .blue {
        font-size: 1.8rem;
    }
}
.page-template-front-page .news .inner {
    display: flex;
    gap: 270px;
}
.page-template-front-page .news .inner .left {
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-gold);
}
.page-template-front-page .news .inner .left .ttl h2 {
    line-height: 1;
    font-family: "Cormorant Infant", serif;
    font-size: 8rem;
}
.page-template-front-page .news .inner .left .ttl p {
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    font-weight: 500;
}
.page-template-front-page .news .inner .left a {
    font-family: "Cormorant Infant", serif;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
.page-template-front-page .news .inner .left a::before {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-gold);
}
.page-template-front-page .news .inner .news__list {
    width: calc(100% - 490px);
}
.page-template-front-page .news .inner .news__list li {
    padding-bottom: 40px;
    border-bottom: 1px solid #5D5D5D;
}
.page-template-front-page .news .inner .news__list li:not(:first-child) {
    padding-top: 40px;
}
.page-template-front-page .news .inner .news__list li a {
    display: flex;
    gap: 30px;
}
.page-template-front-page .news .inner .news__list li a .day {
    color: var(--color-gold);
    font-family: var(--font-en);
    font-size: 2rem;
}
.page-template-front-page .news .inner .news__list li a .ttl {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 1; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
}
@media (max-width: 1200px) {
    .page-template-front-page .news .inner {
        gap: 80px;
    }
    .page-template-front-page .news .inner .left {
        width: 160px;
    }
    .page-template-front-page .news .inner .left .ttl h2 {
        font-size: 5rem;
    }
    .page-template-front-page .news .inner .left .ttl p {
        font-size: 1.8rem;
    }
    .page-template-front-page .news .inner .news__list {
        width: calc(100% - 240px);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner {
        flex-direction: column;
        row-gap: 30px;
    }
    .page-template-front-page .news .inner .left {
        width: 100%;
        flex-direction: row;
    }
    .page-template-front-page .news .inner .news__list {
        width: 100%;
    }
    .page-template-front-page .news .inner .news__list li {
        padding-bottom: 20px;
    }
    .page-template-front-page .news .inner .news__list li:not(:first-child) {
        padding-top: 20px;
    }
}
.page-template-front-page .service .inner {
    color: var(--color-gold);
    text-align: center;
}
.page-template-front-page .service .inner h2 {
    line-height: 1;
    font-family: "Cormorant Infant", serif;
    font-size: 8rem;
}
.page-template-front-page .service .inner .sub__ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    font-weight: 500;
}
.page-template-front-page .service .service__container {
    display: flex;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 2.6rem;
    font-weight: 500;
}
.page-template-front-page .service .service__container > a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    height: 720px;
    width: 33.3333333333%;
}
.page-template-front-page .service .service__container > a:nth-child(1) {
    background: url(../img/top/service_1.jpg) 0 0/cover no-repeat;
}
.page-template-front-page .service .service__container > a:nth-child(2) {
    background: url(../img/top/service_2.jpg) 0 0/cover no-repeat;
}
.page-template-front-page .service .service__container > a:nth-child(3) {
    background: url(../img/top/service_3.jpg) 0 0/cover no-repeat;
}
.page-template-front-page .service .service__container > a .sm {
    font-size: 2.1rem;
}
.page-template-front-page .service .service__container > a .bg {
    font-family: "Cormorant Infant", serif;
    font-size: 8rem;
    font-weight: 400;
    line-height: 1;
}
.page-template-front-page .service .service__container > a .line {
    height: 1px;
    background: #fff;
}
.page-template-front-page .service .service__container > a .vm {
    font-size: 2rem;
    font-family: var(--font-en);
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
.page-template-front-page .service .service__container > a .vm::before {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
}
@media (max-width: 1780px) {
    .page-template-front-page .service .service__container > a {
        padding: 30px;
    }
    .page-template-front-page .service .service__container > a .sm {
        font-size: 1.8rem;
    }
    .page-template-front-page .service .service__container > a .bg {
        font-size: 6rem;
    }
    .page-template-front-page .service .service__container > a .vm {
        font-size: 1.8rem;
    }
}
@media (max-width: 1200px) {
    .page-template-front-page .service .inner h2 {
        font-size: 6rem;
    }
    .page-template-front-page .service .inner .sub__ttl {
        font-size: 2rem;
    }
    .page-template-front-page .service .service__container {
        font-size: 2rem;
        flex-direction: column;
    }
    .page-template-front-page .service .service__container > a {
        width: 100%;
        height: 500px;
    }
    .page-template-front-page .service .service__container > a .bg {
        font-size: 4rem;
    }
}
@media (max-width: 500px) {
    .page-template-front-page .service .service__container > a {
        height: 350px;
        padding: 30px 20px;
    }
}
.page-template-front-page .contact {
    background: url(../img/top/contact.jpg) 0 0/cover no-repeat;
    color: #fff;
}
.page-template-front-page .contact .inner .ttl {
    text-align: center;
}
.page-template-front-page .contact .inner .ttl h2 {
    font-family: var(--font-en);
    font-size: 8rem;
}
.page-template-front-page .contact .inner .ttl .sub__ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    font-weight: 500;
}
.page-template-front-page .contact .inner .contact__container {
    display: flex;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 500;
}
.page-template-front-page .contact .inner .contact__container > * {
    width: 33.3333333333%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-template-front-page .contact .inner .contact__container > * .num {
    font-family: "Cormorant Infant", serif;
    font-weight: 400;
    font-size: 5.1rem;
}
.page-template-front-page .contact .inner .contact__container > *.btn {
    background: var(--color-gold);
    position: relative;
    padding: 0 35px;
    width: 420px;
    height: 100px;
}
.page-template-front-page .contact .inner .contact__container > *.btn::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 1px;
    top: 50%;
    right: 0;
    background: #fff;
}
@media (max-width: 1400px) {
    .page-template-front-page .contact .inner .ttl h2 {
        font-size: 6rem;
    }
    .page-template-front-page .contact .inner .ttl .sub__ttl {
        font-size: 2rem;
    }
    .page-template-front-page .contact .inner .contact__container {
        font-size: 1.8rem;
        align-items: center;
        gap: 30px;
    }
    .page-template-front-page .contact .inner .contact__container > * .num {
        font-size: 3.6rem;
    }
}
@media (max-width: 1200px) {
    .page-template-front-page .contact .inner .contact__container {
        flex-direction: column;
    }
    .page-template-front-page .contact .inner .contact__container > * {
        width: 100%;
    }
    .page-template-front-page .contact .inner .contact__container > *.btn {
        width: 350px;
        height: 80px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .contact .inner .ttl h2 {
        font-size: 4rem;
    }
    .page-template-front-page .contact .inner .ttl .sub__ttl {
        font-size: 1.8rem;
    }
    .page-template-front-page .contact .inner .contact__container {
        font-size: 1.6rem;
        align-items: center;
        gap: 20px;
    }
    .page-template-front-page .contact .inner .contact__container > * .num {
        font-size: 2.4rem;
    }
}
@media (max-width: 500px) {
    .page-template-front-page .contact .inner .contact__container {
        font-size: 1.6rem;
    }
    .page-template-front-page .contact .inner .contact__container > *.btn {
        width: 320px;
    }
}

/* ------------------------------------- /
/  会社概要ページ
/* ------------------------------------- */
.page-template-page-company .table {
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    color: #1F3146;
    font-weight: 500;
}
.page-template-page-company .table .inner table {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}
.page-template-page-company .table .inner table tr th, .page-template-page-company .table .inner table tr td {
    padding: 25px;
}
.page-template-page-company .table .inner table tr th {
    border-bottom: 2px solid #1F3146;
    padding-left: 0;
    font-weight: inherit;
    text-wrap: nowrap;
}
.page-template-page-company .table .inner table tr td {
    border-bottom: 1px solid #9DA3AB;
}
@media (max-width: 768px) {
    .page-template-page-company .table {
        font-size: 1.8rem;
    }
}
@media (max-width: 500px) {
    .page-template-page-company .table .inner table tr {
        display: flex;
        flex-direction: column;
    }
    .page-template-page-company .table .inner table tr th {
        border-bottom: unset;
        padding-bottom: 0;
    }
    .page-template-page-company .table .inner table tr td {
        padding-left: unset;
    }
}

/* ------------------------------------- /
/  飲食店・レンタカー・ハイヤーページ
/* ------------------------------------- */
.page-template-page-restaurant h2,
.page-template-page-hire h2,
.page-template-page-rental h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 4rem;
    font-weight: 500;
    color: var(--color-blue);
}
.page-template-page-restaurant p,
.page-template-page-hire p,
.page-template-page-rental p {
    line-height: 2.2;
}
.page-template-page-restaurant .btn,
.page-template-page-hire .btn,
.page-template-page-rental .btn {
    font-family: "Noto Serif JP", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1F3146;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    width: 420px;
    height: 100px;
    position: relative;
}
.page-template-page-restaurant .btn::before,
.page-template-page-hire .btn::before,
.page-template-page-rental .btn::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 1px;
    background: #fff;
    top: 50%;
    right: 0;
}
@media (max-width: 768px) {
    .page-template-page-restaurant h2,
    .page-template-page-hire h2,
    .page-template-page-rental h2 {
        font-size: 2.6rem;
    }
    .page-template-page-restaurant p,
    .page-template-page-hire p,
    .page-template-page-rental p {
        line-height: 1.8;
    }
    .page-template-page-restaurant .btn,
    .page-template-page-hire .btn,
    .page-template-page-rental .btn {
        font-size: 1.6;
        width: 280px;
        height: 80px;
    }
}
.page-template-page-restaurant .about .inner,
.page-template-page-hire .about .inner,
.page-template-page-rental .about .inner {
    text-align: center;
}
.page-template-page-restaurant .about .inner h2,
.page-template-page-hire .about .inner h2,
.page-template-page-rental .about .inner h2 {
    color: var(--color-gold);
}
.page-template-page-restaurant .about .inner .container,
.page-template-page-hire .about .inner .container,
.page-template-page-rental .about .inner .container {
    display: flex;
    gap: 4%;
    align-items: flex-start;
}
.page-template-page-restaurant .about .inner .container img:nth-of-type(1),
.page-template-page-hire .about .inner .container img:nth-of-type(1),
.page-template-page-rental .about .inner .container img:nth-of-type(1) {
    width: 34%;
    margin-top: 5%;
}
.page-template-page-restaurant .about .inner .container img:nth-of-type(2),
.page-template-page-hire .about .inner .container img:nth-of-type(2),
.page-template-page-rental .about .inner .container img:nth-of-type(2) {
    width: 28%;
    margin-top: 22%;
}
.page-template-page-restaurant .about .inner .container img:nth-of-type(3),
.page-template-page-hire .about .inner .container img:nth-of-type(3),
.page-template-page-rental .about .inner .container img:nth-of-type(3) {
    width: 30%;
}
.page-template-page-restaurant .hinabe,
.page-template-page-hire .hinabe,
.page-template-page-rental .hinabe {
    background: #F8FAFC;
}
.page-template-page-restaurant .hinabe .inner,
.page-template-page-hire .hinabe .inner,
.page-template-page-rental .hinabe .inner {
    display: flex;
    justify-content: space-between;
}
.page-template-page-restaurant .hinabe .inner .img,
.page-template-page-hire .hinabe .inner .img,
.page-template-page-rental .hinabe .inner .img {
    width: 50%;
    padding-right: 12%;
}
.page-template-page-restaurant .hinabe .inner .txt,
.page-template-page-hire .hinabe .inner .txt,
.page-template-page-rental .hinabe .inner .txt {
    width: 50%;
}
.page-template-page-restaurant .hinabe .inner .txt table,
.page-template-page-hire .hinabe .inner .txt table,
.page-template-page-rental .hinabe .inner .txt table {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 2.4rem;
}
.page-template-page-restaurant .hinabe .inner .txt table tr th, .page-template-page-restaurant .hinabe .inner .txt table tr td,
.page-template-page-hire .hinabe .inner .txt table tr th,
.page-template-page-hire .hinabe .inner .txt table tr td,
.page-template-page-rental .hinabe .inner .txt table tr th,
.page-template-page-rental .hinabe .inner .txt table tr td {
    padding: 30px 0;
}
.page-template-page-restaurant .hinabe .inner .txt table tr th,
.page-template-page-hire .hinabe .inner .txt table tr th,
.page-template-page-rental .hinabe .inner .txt table tr th {
    color: #1F3146;
    padding-right: 70px;
}
.page-template-page-restaurant .hinabe .inner .txt table tr td,
.page-template-page-hire .hinabe .inner .txt table tr td,
.page-template-page-rental .hinabe .inner .txt table tr td {
    line-height: 1.8;
}
.page-template-page-restaurant .hinabe .inner .txt table tr:first-child th, .page-template-page-restaurant .hinabe .inner .txt table tr:first-child td,
.page-template-page-hire .hinabe .inner .txt table tr:first-child th,
.page-template-page-hire .hinabe .inner .txt table tr:first-child td,
.page-template-page-rental .hinabe .inner .txt table tr:first-child th,
.page-template-page-rental .hinabe .inner .txt table tr:first-child td {
    border-bottom: 1px solid #1F3146;
}
@media (max-width: 768px) {
    .page-template-page-restaurant .hinabe .inner,
    .page-template-page-hire .hinabe .inner,
    .page-template-page-rental .hinabe .inner {
        flex-direction: column;
        row-gap: 30px;
    }
    .page-template-page-restaurant .hinabe .inner .img,
    .page-template-page-hire .hinabe .inner .img,
    .page-template-page-rental .hinabe .inner .img {
        width: 100%;
        padding-right: unset;
    }
    .page-template-page-restaurant .hinabe .inner .txt,
    .page-template-page-hire .hinabe .inner .txt,
    .page-template-page-rental .hinabe .inner .txt {
        width: 100%;
    }
    .page-template-page-restaurant .hinabe .inner .txt table,
    .page-template-page-hire .hinabe .inner .txt table,
    .page-template-page-rental .hinabe .inner .txt table {
        font-size: 1.6rem;
    }
    .page-template-page-restaurant .hinabe .inner .txt table tr th, .page-template-page-restaurant .hinabe .inner .txt table tr td,
    .page-template-page-hire .hinabe .inner .txt table tr th,
    .page-template-page-hire .hinabe .inner .txt table tr td,
    .page-template-page-rental .hinabe .inner .txt table tr th,
    .page-template-page-rental .hinabe .inner .txt table tr td {
        padding: 15px 0;
    }
    .page-template-page-restaurant .hinabe .inner .txt table tr th,
    .page-template-page-hire .hinabe .inner .txt table tr th,
    .page-template-page-rental .hinabe .inner .txt table tr th {
        padding-right: 6px;
    }
}
.page-template-page-restaurant .recommend .inner,
.page-template-page-hire .recommend .inner,
.page-template-page-rental .recommend .inner {
    display: flex;
    justify-content: space-between;
}
.page-template-page-restaurant .recommend .inner .txt,
.page-template-page-hire .recommend .inner .txt,
.page-template-page-rental .recommend .inner .txt {
    width: 50%;
}
.page-template-page-restaurant .recommend .inner .txt .box,
.page-template-page-hire .recommend .inner .txt .box,
.page-template-page-rental .recommend .inner .txt .box {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 2.4rem;
    color: #1F3146;
    border: 1px solid #1F3146;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    max-width: 560px;
}
.page-template-page-restaurant .recommend .inner .img,
.page-template-page-hire .recommend .inner .img,
.page-template-page-rental .recommend .inner .img {
    width: 50%;
    padding-left: 12%;
}
@media (max-width: 768px) {
    .page-template-page-restaurant .recommend .inner,
    .page-template-page-hire .recommend .inner,
    .page-template-page-rental .recommend .inner {
        flex-direction: column;
        row-gap: 30px;
    }
    .page-template-page-restaurant .recommend .inner .txt,
    .page-template-page-hire .recommend .inner .txt,
    .page-template-page-rental .recommend .inner .txt {
        width: 100%;
    }
    .page-template-page-restaurant .recommend .inner .txt .box,
    .page-template-page-hire .recommend .inner .txt .box,
    .page-template-page-rental .recommend .inner .txt .box {
        font-size: 1.8rem;
    }
    .page-template-page-restaurant .recommend .inner .img,
    .page-template-page-hire .recommend .inner .img,
    .page-template-page-rental .recommend .inner .img {
        width: 100%;
        padding-left: unset;
    }
}
.page-template-page-restaurant .menu .inner .head,
.page-template-page-hire .menu .inner .head,
.page-template-page-rental .menu .inner .head {
    margin: 0 auto;
    width: min(760px, 100%);
    text-align: center;
    color: var(--color-gold);
}
.page-template-page-restaurant .menu .inner .head .category__name,
.page-template-page-hire .menu .inner .head .category__name,
.page-template-page-rental .menu .inner .head .category__name {
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6;
}
.page-template-page-restaurant .menu .inner .head .category__name__en,
.page-template-page-hire .menu .inner .head .category__name__en,
.page-template-page-rental .menu .inner .head .category__name__en {
    font-family: var(--font-en);
    font-size: 5rem;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
}
.page-template-page-restaurant .menu .inner .head .category__name__en span,
.page-template-page-hire .menu .inner .head .category__name__en span,
.page-template-page-rental .menu .inner .head .category__name__en span {
    display: inline-block;
    background: #fff;
    padding: 0 32px;
}
.page-template-page-restaurant .menu .inner .head .category__name__en::after,
.page-template-page-hire .menu .inner .head .category__name__en::after,
.page-template-page-rental .menu .inner .head .category__name__en::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 50%;
    left: 0;
    background: var(--color-gold);
    z-index: -1;
}
.page-template-page-restaurant .menu .inner table,
.page-template-page-hire .menu .inner table,
.page-template-page-rental .menu .inner table {
    margin: 0 auto;
    width: min(760px, 100%);
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 2.4rem;
}
.page-template-page-restaurant .menu .inner table tr th, .page-template-page-restaurant .menu .inner table tr td,
.page-template-page-hire .menu .inner table tr th,
.page-template-page-hire .menu .inner table tr td,
.page-template-page-rental .menu .inner table tr th,
.page-template-page-rental .menu .inner table tr td {
    padding: 20px 0;
}
.page-template-page-restaurant .menu .inner table tr td,
.page-template-page-hire .menu .inner table tr td,
.page-template-page-rental .menu .inner table tr td {
    text-align: right;
    white-space: nowrap;
}
.page-template-page-restaurant .menu .inner table tr td .sm,
.page-template-page-hire .menu .inner table tr td .sm,
.page-template-page-rental .menu .inner table tr td .sm {
    font-size: 1.8rem;
    display: inline-block;
}
.page-template-page-restaurant .menu .inner .btn,
.page-template-page-hire .menu .inner .btn,
.page-template-page-rental .menu .inner .btn {
    margin: 0 auto;
}
@media (max-width: 768px) {
    .page-template-page-restaurant .menu .inner .head .category__name,
    .page-template-page-hire .menu .inner .head .category__name,
    .page-template-page-rental .menu .inner .head .category__name {
        font-size: 1.8rem;
    }
    .page-template-page-restaurant .menu .inner .head .category__name__en,
    .page-template-page-hire .menu .inner .head .category__name__en,
    .page-template-page-rental .menu .inner .head .category__name__en {
        font-size: 2.8rem;
    }
    .page-template-page-restaurant .menu .inner .head .category__name__en span,
    .page-template-page-hire .menu .inner .head .category__name__en span,
    .page-template-page-rental .menu .inner .head .category__name__en span {
        padding: 0 16px;
    }
    .page-template-page-restaurant .menu .inner table,
    .page-template-page-hire .menu .inner table,
    .page-template-page-rental .menu .inner table {
        font-size: 1.8rem;
    }
    .page-template-page-restaurant .menu .inner table tr th, .page-template-page-restaurant .menu .inner table tr td,
    .page-template-page-hire .menu .inner table tr th,
    .page-template-page-hire .menu .inner table tr td,
    .page-template-page-rental .menu .inner table tr th,
    .page-template-page-rental .menu .inner table tr td {
        padding: 10px 0;
    }
    .page-template-page-restaurant .menu .inner table tr td .sm,
    .page-template-page-hire .menu .inner table tr td .sm,
    .page-template-page-rental .menu .inner table tr td .sm {
        font-size: 1.4rem;
        display: block;
    }
}
.page-template-page-restaurant .hire__btn .inner .btn,
.page-template-page-hire .hire__btn .inner .btn,
.page-template-page-rental .hire__btn .inner .btn {
    margin: 0 auto;
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.page-template-page-contact .ttl__box {
    color: var(--color-gold);
}
.page-template-page-contact .txt {
    line-height: 2.2;
}
@media (max-width: 768px) {
    .page-template-page-contact .txt {
        line-height: 1.8;
    }
}
.page-template-page-contact .form .inner {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 500;
}
.page-template-page-contact .form .inner .head {
    margin: 60px 0 15px;
}
.page-template-page-contact .form .inner .required {
    display: inline-block;
    padding: 0 14px;
    color: #fff;
    font-weight: 600;
    background: var(--color-gold);
    margin-right: 15px;
}
.page-template-page-contact .form .inner input[type=email],
.page-template-page-contact .form .inner input[type=tel],
.page-template-page-contact .form .inner input[type=text],
.page-template-page-contact .form .inner input[type=date],
.page-template-page-contact .form .inner textarea {
    padding: 15px;
    width: 100%;
    border: none;
    background: #EBEFF5;
    font-size: 2rem;
}
.page-template-page-contact .form .inner .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px 0 0;
}
.page-template-page-contact .form .inner input[type=radio] {
    width: 26px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #EBEFF5;
    position: relative;
}
.page-template-page-contact .form .inner input[type=radio]:checked::before {
    content: "";
    position: absolute;
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page-template-page-contact .form .inner input[type=checkbox] {
    width: 30px;
    height: 30px;
    background: #EBEFF5;
    position: relative;
}
.page-template-page-contact .form .inner input[type=checkbox]:checked::before {
    content: "";
    display: block;
    position: relative;
    left: 9px;
    top: 3px;
    width: 11px;
    height: 18px;
    border: solid var(--color-black);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.page-template-page-contact .form .inner input[type=checkbox]:focus-visible {
    outline: 2px solid #1d9bf0;
    outline-offset: 2px;
}
.page-template-page-contact .form .inner input[type=submit] {
    display: block;
    border: none;
    width: 420px;
    height: 100px;
    margin: 0 auto;
    background: #1F3146;
    color: #fff;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    position: relative;
}
.page-template-page-contact .form .inner .font-jp {
    font-size: 1.8rem;
}
.page-template-page-contact .form .inner .accept {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.page-template-page-contact .form .inner .cormorant-infant-regular {
    font-size: 2.8rem;
}
.page-template-page-contact .form .inner .cormorant-infant-regular a {
    font-size: 3.6rem;
}
.page-template-page-contact .form .inner .submit__wrapper {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}
.page-template-page-contact .form .inner .submit__wrapper::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 1px;
    background: #fff;
    top: 50%;
    right: 0;
}
.page-template-page-contact .form .inner .submit__wrapper .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(calc(100% + 48px), -50%);
}
@media (max-width: 768px) {
    .page-template-page-contact .form .inner {
        font-size: 1.6rem;
    }
    .page-template-page-contact .form .inner .head {
        margin: 30px 0 10px;
    }
    .page-template-page-contact .form .inner .required {
        padding: 0 5px;
        margin-right: 5px;
    }
    .page-template-page-contact .form .inner input[type=email],
    .page-template-page-contact .form .inner input[type=tel],
    .page-template-page-contact .form .inner input[type=text],
    .page-template-page-contact .form .inner input[type=date],
    .page-template-page-contact .form .inner textarea {
        padding: 5px;
        font-size: 1.6rem;
    }
    .page-template-page-contact .form .inner input[type=submit] {
        display: block;
        border: none;
        width: 280px;
        height: 80px;
        font-size: 1.6rem;
    }
    .page-template-page-contact .form .inner .font-jp {
        font-size: 1.6rem;
    }
    .page-template-page-contact .form .inner .accept {
        gap: 10px;
    }
    .page-template-page-contact .form .inner .cormorant-infant-regular {
        font-size: 1.8rem;
    }
    .page-template-page-contact .form .inner .cormorant-infant-regular a {
        font-size: 2.2rem;
    }
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.page-template-home .contents {
    max-width: 1000px;
    margin: 0 auto;
}
.page-template-home .contents .inner .news .row {
    padding: 40px 0;
    border-bottom: 1px solid #5D5D5D;
    position: relative;
}
.page-template-home .contents .inner .news .row::after {
    content: "";
    position: absolute;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-gold);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.page-template-home .contents .inner .news .row a {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-right: 20px;
}
.page-template-home .contents .inner .news .row a .day {
    color: var(--color-gold);
    font-family: var(--font-en);
    font-size: 2rem;
}
.page-template-home .contents .inner .news .row a .ttl {
    font-size: 1.8rem;
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 1; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
}
@media (max-width: 768px) {
    .page-template-home .contents .inner .news .row {
        padding: 20px 0;
    }
    .page-template-home .contents .inner .news .row::after {
        display: none;
    }
    .page-template-home .contents .inner .news .row a {
        flex-direction: column;
        gap: 15px;
    }
    .page-template-home .contents .inner .news .row a .day {
        font-size: 1.6rem;
    }
    .page-template-home .contents .inner .news .row a .ttl {
        font-size: 1.6rem;
    }
}
.page-template-home .pagination .inner .pagination-list {
    font-family: var(--font-en);
    color: var(--color-gold);
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
}
.page-template-home .pagination .inner .pagination-list li .disabled {
    display: none;
}
.page-template-home .pagination .inner .pagination-list li.current span {
    position: relative;
}
.page-template-home .pagination .inner .pagination-list li.current span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
}
@media (max-width: 768px) {
    .page-template-home .pagination .inner .pagination-list {
        gap: 15px;
    }
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .post .inner .post--header {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--color-gold);
    border-bottom: 1px solid #C9C9C9;
}
.single-post .post .inner .post--header h1 {
    font-size: 4rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.12em;
}
.single-post .post .inner .post--header .date {
    font-family: var(--font-en);
    font-size: 2rem;
}
.single-post .post .inner .post--detail {
    max-width: 1000px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    line-height: 2.22;
}
.single-post .post .inner .post--detail h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.67;
    padding-bottom: 25px;
    margin-bottom: 40px;
    color: var(--color-blue);
    border-bottom: 1px solid #C9C9C9;
}
.single-post .post .inner .post--detail figure {
    margin-bottom: 100px;
}
.single-post .post .inner .post--detail p {
    margin-bottom: 80px;
}
.single-post .post .inner .post--detail h3 {
    font-family: "Noto Serif JP", serif;
    color: var(--color-blue);
    font-size: 2rem;
    letter-spacing: 0.12em;
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 500;
}
.single-post .post .inner .post--detail h4 {
    font-family: "Noto Serif JP", serif;
    color: #1F3146;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    line-height: 2.22;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.single-post .post .inner .post--detail h4::before {
    content: "";
    position: absolute;
    width: 12px;
    aspect-ratio: 1;
    background: #1F3146;
    top: 14px;
    left: 9px;
}
.single-post .post .inner .post--detail table thead {
    color: #fff;
    background: var(--color-blue);
}
.single-post .post .inner .post--detail table thead tr th {
    text-align: center;
    border: 1px solid #fff;
}
.single-post .post .inner .post--detail table tbody tr:nth-child(2n) {
    background: #EBEFF5;
}
.single-post .post .inner .post--detail table tbody tr td {
    text-align: center;
    border: 1px solid #fff;
}
.single-post .post .inner .post--detail ul {
    list-style: square inside;
    margin-bottom: 80px;
}
.single-post .post .inner .post--detail ul li {
    margin-bottom: 20px;
}
.single-post .post .inner .post--detail ul li::marker {
    color: var(--color-gold);
}
.single-post .post .inner .pagination {
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--font-en);
    color: var(--color-gold);
    font-size: 2rem;
    font-weight: 700;
}
.single-post .post .inner .pagination .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-post .post .inner .pagination .btn__return {
    padding-left: 30px;
    position: relative;
}
.single-post .post .inner .pagination .btn__return::before {
    content: "";
    position: absolute;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-gold);
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    .single-post .post .inner .post--header h1 {
        font-size: 2.4rem;
    }
    .single-post .post .inner .post--detail {
        line-height: 1.8;
    }
    .single-post .post .inner .post--detail h2 {
        font-size: 1.8rem;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .single-post .post .inner .post--detail figure {
        margin-bottom: 50px;
    }
    .single-post .post .inner .post--detail p {
        margin-bottom: 30px;
    }
    .single-post .post .inner .post--detail h3 {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-bottom: 10px;
    }
    .single-post .post .inner .post--detail h4 {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    .single-post .post .inner .post--detail h4::before {
        width: 8px;
        left: 2px;
    }
    .single-post .post .inner .post--detail ul {
        margin-bottom: 30px;
    }
    .single-post .post .inner .post--detail ul li {
        margin-bottom: 10px;
    }
}/*# sourceMappingURL=style.css.map */