@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap');


/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}

@media screen and (max-width: 767px) {
    html {
        font-size: 1.303vw;
    }
}

@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }
}

@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }
}

@media screen and (min-width: 1401px) {
    html {
        font-size: 0.714vw;
    }
}

@media screen and (min-width: 1501px) {
    html {
        font-size: 0.666vw;
    }
}



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
    --main-color: #ec8314;
    --bg-color: #151515;
}

body {
    background: url(../img/texture-1.jpg) center top;
    background-size: 80rem auto;
    color: #353535;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}

a {
    color: #353535;
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #151515;
    height: 11rem;
    position: relative;
}

header::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 1px;
    display: block;
    z-index: 999999;
}

header h1 {
    width: 18rem;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    z-index: 99;
}

@media screen and (max-width: 767px) {
    header {
        display: block;
        height: 9rem;
        padding: 0;
    }

    header h1 {
        width: 10rem;
    }

    header::before {
        width: 0;
        height: 0;
        background: none;
        left: auto;
        top: auto;
        z-index: -1;
    }
}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.gnav-menu > li {
    font-weight: bold;
    white-space: nowrap;
}

ul.gnav-menu > li:nth-child(2) {
    padding-right: 22rem;
}

ul.gnav-menu > li:not(:first-child) {
    margin-left: 4rem;
}

ul.gnav-menu > li > a {
    display: inline-block;
    position: relative;
    color: #fff;
}

ul.gnav-menu > li > a::after {
    position: absolute;
    background: #fff;
    bottom: -4px;
    content: '';
    height: 2px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
    width: 100%;
}

ul.gnav-menu > li > a:hover::after {
    transform: scale(1, 1);
}

ul.gnav-menu > li > a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}



/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
    background: #000;
    padding-top: 2px;
    padding-bottom: 50px;
}

footer nav {
    border-top: solid 1px var(--main-color);
    border-bottom: solid 1px var(--main-color);
    padding: 3rem 0 3.2rem 0;
}

footer nav ul {
    display: flex;
    justify-content: center;
}

footer nav ul li {
    padding: 0 2rem;
}

footer nav ul li a {
    color: #fff;
}

footer small {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    padding: 3rem 0 3.2rem 0;
}

@media screen and (max-width: 767px) {
    footer nav ul {
        display: block;
    }

    footer nav ul li {
        padding: 0;
        text-align: center
    }

    footer nav ul li:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
    background: url(../img/mv.jpg) no-repeat center / cover;
    position: relative;
}

.page-ttl > div {
    background: rgba(0, 0, 0, 0.5);
}

.page-ttl h2 {
    color: #fff;
    font-size: 4.0rem;
    line-height: 1;
    text-align: center;
    padding: 18rem 0 11rem 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 900;
}

@media screen and (max-width: 767px) {
    .page-ttl h2 {
        padding: 10rem 0;
    }
}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
    line-height: 1;
    margin-bottom: 4rem;
}

.heading-1 span {
    display: block
}

@media screen and (max-width: 767px) {}

/* more */
.more {
    line-height: 1;
    display: block;
    color: #fff;
    width: 24rem;
    padding: 1.5rem 0 1.7rem 0;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.more i {
    margin-left: 1.5rem;
}

@media screen and (max-width: 767px) {}

/* ttl */
.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
}

.ttl:after {
    border-bottom: solid 4px var(--main-color);
    bottom: -4px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

@media screen and (max-width: 767px) {
    .ttl:after {
        width: 40%;
    }
}

/* detail */
dl.detail {
    display: flex;
    flex-wrap: wrap;
    border: solid 0.5rem #ebd9b8;
}

dl.detail dt {
    padding: 1.5rem;
    width: 30%;
    white-space: nowrap;
    background: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid 0.5rem #ebd9b8;
}

dl.detail dd {
    padding: 1.5rem;
    width: 70%;
    background: #fff;
    border-bottom: solid 0.5rem #ebd9b8;
    display: flex;
    align-items: center;
}

dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
    border-bottom: none;
}

dl.bk dt,
dl.bk dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

dl.wh dt,
dl.wh dd {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 767px) {
    dl.detail {
        display: block;
    }

    dl.detail dt {
        font-weight: bold;
        padding: 1.5rem;
        width: 100%;
        justify-content: flex-start;
    }

    dl.detail dd {
        padding: 1.5rem;
        width: 100%;
    }

    dl.bk dt {
        border-bottom: none;
    }

    dl.wh dt {
        border-bottom: none;
    }
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
nav.gnav-sp {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: -1;
    opacity: 0;
    background: url(../img/texture-1.jpg) center top;
    background-size: 80rem auto;
}

.open nav.gnav-sp {
    top: 0;
    opacity: 1;
    z-index: 99999;
}

.gnav-sp-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.gnav-sp-wrap > div {
    width: 100%;
}

.gnav-sp-menu {
    margin-bottom: 3rem;
}

.gnav-sp-menu li {
    font-size: 1.6rem;
    text-align: center;
    font-weight: bold;
}

.gnav-sp-menu li a {
    display: block;
    padding: 1.6rem;
    white-space: nowrap;
}

/* toggle */
.toggle-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    transition: all .5s;
    cursor: pointer;
    z-index: 100000;
    background: #151515;
}

.toggle-btn span {
    display: block;
    position: absolute;
    left: 2rem;
    width: 2rem;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
}

.toggle-btn span:nth-child(1) {
    top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
    top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
    top: 3.5rem;
}

.open .toggle-btn span {
    background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
    -webkit-transform: translateY(0.8rem) rotate(-45deg);
    transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
    -webkit-transform: translateY(-0.8rem) rotate(45deg);
    transform: translateY(-0.8rem) rotate(45deg);
}

/* mask */
#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
}



/*  ----------------------------------------------------------

local menu

----------------------------------------------------------  */
ul.lcmenu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    justify-content: space-between;
}

ul.lcmenu li {
    width: 49%;
    text-align: center;
    font-size: 1.6rem;
}

ul.lcmenu li a {
    display: block;
    padding: 1.8rem 0;
    background: #fff;
    white-space: nowrap;
    color: #000;
}

ul.lcmenu li.current a {
    color: #fff;
    border: none;
    background: var(--main-color);
}

@media screen and (max-width: 767px) {
    ul.lcmenu li a {
        padding: 1.2rem 0;
    }
}




/*  ----------------------------------------------------------

menu

----------------------------------------------------------  */
dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.var,
dl.menu-list dt.var + dd {
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
    /* メニュー下線カラー */
}

dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
    border-top: solid 1px rgba(0, 0, 0, 0.15);
    /* メニュー上線カラー */
}

dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd {
    background: rgba(0, 0, 0, 0.025);
    /* メニュー背景色 */
}

dl.menu-list dt.var + dd dl dt:nth-of-type(odd) {
    background: none !important;
}

dl.menu-list dt.var + dd dl dt:nth-of-type(odd) + dd {
    background: none !important;
}

dl.menu-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 2rem;
}


dl.menu-list dt {
    padding: 1.5rem;
    width: 70%;
    font-weight: bold;
}

dl.menu-list dt span {
    display: block;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: normal;
}

dl.menu-list dd {
    padding: 1.5rem;
    width: 30%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

dl.menu-list dt.thumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

dl.menu-list dt.thumb i:first-of-type {
    width: 16rem;
    display: block;
}

dl.menu-list dt.thumb i:last-of-type {
    width: calc(100% - 18rem);
}

@media screen and (max-width: 767px) {
    dl.menu-list {
        display: block;
    }

    dl.menu-list dt {
        width: 100%;
        border-bottom: none;
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

    dl.menu-list dd {
        width: 100%;
        border-top: none;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    dl.menu-list dt:first-child + dd {
        border-top: none;
    }

    dl.menu-list dt.thumb {
        display: block;
    }

    dl.menu-list dt.thumb i:first-of-type {
        width: 80%;
        margin: 0 auto 1.5rem auto;
    }

    dl.menu-list dt.thumb i:last-of-type {
        width: 100%;
    }
}



/*  ----------------------------------------------------------

gallery

----------------------------------------------------------  */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    width: 90%;
    margin: 8rem auto;
}

.gallery-list li {
    list-style: none;
    margin: 0 1rem 2rem 1rem;
}

.gallery-list img {
    border-radius: 50%;
    height: 14vw;
    width: 14vw;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1.2rem 0 0 0;
    text-align: center;
    width: 14vw;
}

.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

@media screen and (max-width: 767px) {
    .gallery-list {
        margin: 4rem auto;
        width: 95%;
    }

    .gallery-list li {
        margin: 0 .5rem 1.5rem .5rem;
    }

    .gallery-list img {
        width: 20vw;
        height: 20vw;
    }

    .gallery-list span {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1rem auto 0 auto;
        width: 20vw;
    }
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
    margin: 8rem auto 10rem auto;
    width: 80%;
    max-width: 1200px;
}

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

.container .wrap.reverse {
    flex-direction: row-reverse;
}

.container .wrap > figure {
    width: 35%;
}

.container .wrap > div {
    width: 60%;
}

@media screen and (max-width: 767px) {
    .container {
        margin: 6rem 3rem 8rem 3rem;
        width: auto;
    }

    .container .wrap {
        display: block;
    }

    .container .wrap > figure {
        width: 100%;
        margin-bottom: 2rem;
    }

    .container .wrap > div {
        width: 100%;
    }
}



/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    z-index: 99;
}

.fixed-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    color: #fff;
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 767px) {
    .fixed-btn {
        top: auto;
        right: 0;
        bottom: 0;
        transform: none;
        -webkit-transform: none;
        width: 100%;
    }

    .fixed-btn a {
        width: 100%;
        padding: 1.8rem 0;
    }
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

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



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
    z-index: 999;
}

#page-top a {
    background: var(--main-color);
    color: #fff;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    #page-top {
        bottom: 2rem;
        right: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 1.5rem;
        right: 1rem;
    }

    #page-top a {
        width: 4rem;
        height: 4rem;
    }
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a.line {
    text-decoration: underline;
}

a:hover.line {
    text-decoration: none;
}

a:hover {
    opacity: 0.5;
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* txt */
.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-vertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .txt-center.not {
        text-align: left;
    }

    .txt-right.not {
        text-align: left;
    }

    .txt-vertical.not {
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        white-space: normal;
    }
}

/* serif */
.serif {
    font-family: "游明朝", "YuMincho", 'Noto Serif JP', serif;
}

.hv-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    z-index: 99;
}

ul.list-group li {
    margin-left: 2.5rem;
    list-style: disc;
}

.bg-grd {
    background: linear-gradient(#000 80%, transparent 80%);
}

/* map */
.gmap {
    border: solid 0.5rem #ebd9b8;
}

.gmap iframe {
    width: 100%;
    height: 40rem;
}

/* line-height */
.line-h-1 {
    line-height: 2.2;
}

.line-h-2 {
    line-height: 2.4;
}

/* margin */
.mb-10 {
    margin-bottom: 1rem !important;
}

.mb-15 {
    margin-bottom: 1.5rem !important;
}

.mb-20 {
    margin-bottom: 2.0rem !important;
}

.mb-25 {
    margin-bottom: 2.5rem !important;
}

.mb-30 {
    margin-bottom: 3.0rem !important;
}

.mb-35 {
    margin-bottom: 3.5rem !important;
}

.mb-40 {
    margin-bottom: 4.0rem !important;
}

.mb-45 {
    margin-bottom: 4.5rem !important;
}

.mb-50 {
    margin-bottom: 5.0rem !important;
}

.mb-55 {
    margin-bottom: 5.5rem !important;
}

.mb-60 {
    margin-bottom: 6.0rem !important;
}

.mb-65 {
    margin-bottom: 6.5rem !important;
}

.mb-70 {
    margin-bottom: 7.0rem !important;
}

.mb-75 {
    margin-bottom: 7.5rem !important;
}

.mb-80 {
    margin-bottom: 8.0rem !important;
}

.mb-85 {
    margin-bottom: 8.5rem !important;
}

.mb-90 {
    margin-bottom: 9.0rem !important;
}

.mb-95 {
    margin-bottom: 9.5rem !important;
}

.mb-100 {
    margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay-3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay-5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}
