@charset "utf-8";
/*	ヘッダーa
---------------------------------*/
:root{
	--header: 60px;
	scroll-padding: var(--header);
}
@media screen and (min-width: 768px){
    :root{
        --header: 90px;
    }
}
@media screen and (min-width: 1023px){
    :root{
        --header: 118px;
    }
}
.hd-h1{
    display: none;
}
.click_event{
    pointer-events: none;
}
.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.gjs-dashed .header{
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
}
.header.header-color .hd-phone01:before{
    color: #000;
}
.hd-inr{
    height: 60px;
    padding: 5px 10px;
    position: relative;
}
.hd-logo{
    width: 165px;
    position: relative;
}
.hd-logo a{
    display: block;
    position: relative;
}
.hd-right{
    display: none;
}
.hd-right01{
}
.hd-phone{
    margin-right: 20px;
}
.hd-phone01{
    font-family: "Crimson Pro", serif;
    font-size: 3rem;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1;
    padding-left: 30px;
    position: relative;
}
.hd-phone01:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_phone.png);
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.hd-sns{
    text-align: center;
    margin-right: 10px;
}
.hd-sns:last-of-type{
    margin-right: 0;
}
.hd-time{
    margin-right: 10px;
}
.hd-time:last-of-type{
    margin-right: 0;
}
.hd-time-p01{
    width: 70px;
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #859f0b;
    line-height: 1.5;
    margin-right: 30px;
}
.hd-time-p02{
    letter-spacing: 0.05em;
    text-align: left;
}
.hd-time-p03{
    font-family: "Noto Serif JP";
}

.header.header-color{
    background-color: rgba(255, 255, 255, .8);
    transition: 0.3s;
}
.header.header-color .hd-phone01{
    color: #000;
    transition: 0.3s;
}
.header.header-color .hd-phone01:before{
    background-image: url(/system_panel/uploads/images/icon_phone02.png);
    transition: 0.3s;
}
@media screen and (min-width: 768px){
    .hd-inr{
        height: 90px;
        padding: 15px 20px;
    }
    .hd-logo{
        width: 200px;
    }
    .hd-phone01{
        font-size: 3.6rem;
    }
    .hd-time-p01{
        font-size: 1.8rem;
    }
}
@media screen and (min-width: 1024px){
    .hd-inr{
        height: auto;
        padding: 22px 0;
    }
    .hd-logo{
        width: auto;
        padding-left: 40px;
    }
    .hd-right{
        display: block;
        margin-right: 120px;
        margin-left: auto;
    }
    .hd-phone{
    }
    .hd-nav{
        height: auto;
        margin-right: 30px;
    }
    .hd-nav .li{
        padding-left: 20px;
    }
    .hd-nav .li:first-of-type{
        padding-left: 0;
    }
    .hd-nav .li a{
        display: block;
        text-align: center;
        cursor: pointer;
    }
    .hd-nav .li a p{
        font-weight: 500;
        letter-spacing: 0.05em;
        line-height: 16px;
    }
    .hd-btn{
        width: 220px;
        background-color: #859f0b;
        border-radius: 30px;
        margin-left: 20px;
    }
    .hd-btn a{
        display: block;
        text-align: center;
    }
    .hd-btn p{
        display: inline;
        font-family: "Noto Serif JP";
        font-weight: 500;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        color: #fff;
        line-height: 60px;
        padding-left: 30px;
        position: relative;
    }
    .hd-btn p:before{
        content: '';
        background: no-repeat center center / contain;
        background-image: url(/system_panel/uploads/images/icon_reserve.png);
        width: 20px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}
@media screen and (min-width: 1800px){
    .header{
    }
    .hd-inr{
    }
}

/*ハンバーガーボタン*/
.navToggle {
	display: block;
	position: absolute;
	right: 0px;
	top: 0px;
	margin: auto;
	width: 50px;
	height: 50px;
	cursor: pointer;
    z-index: 9999;
}
.navToggle div {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	width: 25px;
	height: 16px;
}
.navToggle span {
	display: block;
	position: absolute;
	height:2px;
	width:100%;
	background: #ffffff;
	left:0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.navToggle span:nth-child(1) {
	top: 0;
}
.navToggle span:nth-child(2) {
	top: 7px;
}
.navToggle span:nth-child(3) {
	top: 14px;
}
/* ハンバーガーボタン 切り替えアニメーション */
.open .navToggle {
	position: fixed;
    z-index: 10002;
}
.open .navToggle span{
    background: #333333;
}
.open .navToggle span:nth-child(1) {
	top: 7px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open .navToggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open .navToggle span:nth-child(3) {
	top: 7px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

/*---------- ハンバーガーメニュー ----------*/
.bg-hum{
    background-color: #142a58;
    position: absolute;
    top: 0;
    right: 0px;
    width: 60px;
    height: 60px;
}
.gjs-dashed .hd-hum{
    background-color: #fff;
    max-width: 100%;
    top: 180px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
.hd-hum{
    max-width: 60px;
    width: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}
.hd-hum.open{
    background-color: #fff;
    max-width: 500px;
    height: 100vh;
    padding-bottom: 30px;
    overflow: scroll;
    top: 0;
    left: auto;
    right: 0;
    transform: translateX(0);
    z-index: 100;
}
.hd-hum01{
    padding-bottom: 30px;
}
.flex-cnt.hd-hum-inr{
    display: block;
}
.hd-hum-inr{
    max-width: 500px;
    padding-bottom: 30px;
    margin: 0 auto;
}
.hd-hum-left{
    display: none;
    text-align: center;
    position: relative;
}
.hd-nav{
    height: 100vh;
}
.gjs-dashed .navbar{
    max-width: 100%;
    width: 100%;
}
.navbar{
    background-color: #fff;
    border-radius: 50%;
    max-width: 40px;
    width: 100%;
    padding: 7.5px 5px;
    margin: 0 auto;
    z-index: 100;
}
.navbar.open{
    max-width: 100%;
    border-radius: 0;
    padding: 18px 10px 12px;
}
.gjs-dashed .navbar .navbar-right{
    display: block;
}
.navbar .navbar-right{
    display: none;
}
.navbar.open .navbar-right{
    display: block;
}
.navbar-dark .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 0px;
    width: 25px;
    height: 25px;
    margin: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.navbar-dark.open .navbar-toggler{
    margin: 0 20px 0 auto;
}

.navbar-dark .navbar-toggler-icon {
    background-image:none;
    background-color: #859f0b;
    width: 25px;
    height: 2px;
    display: block;
    position: absolute;
    transition: ease .5s;
}

.navbar-toggler-icon:nth-of-type(1) {
    top: calc(50% - 5px);
}

.navbar-toggler-icon:last-of-type {
    bottom: calc(50% - 5px);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background-color: #859f0b;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
    top:8px;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-of-type {
    top:8px;
    transform: rotate(-45deg);
}
button:focus{
    outline: none;
}
.navbar-collapse{
    padding-top: 30px;
}
.hum-menu-p{
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    color: #fff;
    position: absolute;
    top: 25px;
    right: 13px;
    z-index: 1;
}
.hd-hum.open .hum-menu-p{
    color: #fff;
    top: 35px;
}
.hd-hum .navbar-collapse{
    display: none;
}
.hd-hum.open .navbar-collapse{
    display: block;
}
.navbar-collapse.show{
    height: 100vh;
}
.nav-item{
    padding: 0 15px;
    text-align: center;
}
.nav-item:first-of-type{
}
.nav-item p{
    font-family: "Noto Serif JP";
    letter-spacing: 0.05em;
    line-height: 35px;
}
.hd-menu.nav-item{
    border-bottom: none;
}
.nav-item.hd-menu p{
    line-height: 1;
    padding: 10px 0 15px 0;
}
.hd-menu-box{
    max-width: 500px;
    width: 100%;
    border: solid 1px #859f0b;
    padding: 30px 15px;
    margin: 0 auto 30px;
    text-align: center;
}
.hd-menu-box-p01{
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: #000;
}
.hd-menu-box-p02{
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}
.hd-menu-box .hd-phone01{
    display: inline;
    color: #000;
}
.hd-menu-box .hd-right02{
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.hd-menu-box .hd-time{
    margin-right: 0;
    margin-bottom: 10px;
}
.hd-menu-box .hd-time:last-of-type{
    margin-bottom: 0;
}
.hd-menu-box .hd-time-p01{
}
.hd-menu-box .hd-time-p02{
    font-size: 1.2rem;
    color: #333;
}
/*202609追加*/
.hd-menu-box .hd-time {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.hd-menu-box .hd-time-p01 {
    flex-shrink: 0;
}

.hd-menu-box .hd-time-p02 {
    flex: 1;
    min-width: 0;
}

.hd-hum01__info{
    margin-bottom: 40px;
}
.hd-hum01__info .hd-phone01{
    color: #000;
}
.hd-hum01__info .hd-phone01:before{
    background-image: url(/system_panel/uploads/images/icon_phone02.png);
}
.hd-btn-sp{
    background-color: #859f0b;
    border-radius: 50px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.hd-btn-sp a{
    display: block;
    text-align: center;
}
.hd-btn-sp p{
    display: inline;
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 60px;
    padding-left: 50px;
    position: relative;
}
.hd-btn-sp p:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_reserve.png);
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (min-width: 768px){
    .bg-hum{
        width: 90px;
        height: 90px;
    }
    .hd-hum{
        max-width: 90px;
    }
    .hum-menu-p{
        font-size: 1.6rem;
        top: 40px;
        right: 22px;
    }
    .hd-hum.open .hum-menu-p{
        top: 55px;
    }
    .navbar{
        max-width: 60px;
        padding: 0 5px;
    }
    .navbar.open{
        padding: 30px 15px;
    }
    .navbar-dark .navbar-toggler{
        width: 60px;
        height: 60px;
        margin: 0 5px;
    }
    .navbar-dark.open .navbar-toggler{
        width: 40px;
        height: 40px;
    }
    .navbar-dark .navbar-toggler-icon{
        width: 100%;
        height: 3px;
    }
    .navbar-collapse.show{
        height: calc(100vh - 90px);
    }
    .navbar-toggler-icon:nth-of-type(1) {
        top: calc(50% - 7px);
    }
    
    .navbar-toggler-icon:last-of-type {
        bottom: calc(50% - 7px);
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1){
        top: 36px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-of-type{
        top: 36px;
    }
    .hd-menu-box{
        padding: 40px 15px;
    }
    .hd-menu-box-p01{
        font-size: 1.8rem;
    }
    .hd-menu-box .hd-time-p02{
        font-size: 1.4rem;
    }
    .hd-btn-sp{
        max-width: 500px;
    }
    .hd-btn-sp p{
        font-size: 1.8rem;
        line-height: 100px;
    }
}
@media screen and (min-width: 1024px){
    .bg-hum{
        width: 120px;
        height: 120px;
        right: 0;
    }
    .hd-hum{
        max-width: 120px;
        max-height: 120px;
        right: 0;
    }
    .hd-hum.open{
        max-width: 100%;
        max-height: none;
        width: 100%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .gjs-dashed .hd-hum-left{
        display: block;
    }
    .flex-cnt.hd-hum-inr{
        display: flex;
    }
    .navbar{
        max-width: 60px;
    }
    .navbar.open{
        padding: 40px 15px;
    }
    .navbar-collapse{
        padding-top: 120px;
    }
    .hum-menu-p{
        top: 60px;
    }
    .hd-hum.open .hd-hum-left{
        display: block;
        padding-top: 50px;
    }
    .navbar-right{
        width: calc(230px + 2.5vw);
        padding-left: 2.5vw;
    }
    .nav-item:first-of-type{
        border-top: none;
    }
    .nav-item{
        border-bottom: none;
    }
    .nav-item p{
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        color: #000;
        line-height: 45px;
    }

    .navbar-dark .navbar-toggler{
    }
    .navbar-dark.open .navbar-toggler{
        margin: 0 30px 0 auto;
    }
    .navbar-dark .navbar-toggler-icon{
    }
    .navbar-toggler-icon:nth-of-type(1) {
    }
    .navbar-toggler-icon:last-of-type {
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3){
        display: block;
    }
}
@media screen and (min-width: 1024px){
    .gjs-dashed .hd-hum{
        top: 200px;
    }
    .navbar{
    }
    .hum-menu-p{
        right: 50%;
        transform: translateX(50%);
    }
    .hd-hum.open .hum-menu-p{
        top: 70px;
        right: 38px;
        transform: translateX(0);
    }
}
@media screen and (min-width: 1800px){
    .hd-hum.open{
        max-width: 100vw;
        width: 100vw;
    }
    .hd-hum{
        width: 100vw;
    }
}

/*	フッター共通コンテンツ
---------------------------------*/
.ft-contact{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_ft.jpg);
}
.ft-contact-p{
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 20px;
}
.ft-contact-p strong{
    font-weight: 400;
}
.ft-contact-p-red-wrap{
    text-align: center;
    margin-bottom: 30px;
}
.ft-contact-p-red{
    display: inline-block;
    max-width: 450px;
    width: 100%;
    background-color: #d62300;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 30px;
}
.ft-contact-cmn.flex-cnt{
    display: block;
}
.ft-contact-cmn-item{
    max-width: 500px;
    width: 100%;
    background-color: #fff;
    border-radius: 64px;
    text-align: center;
    padding: 20px 15px;
    margin: 0 auto 20px;
}
.ft-contact-cmn-item:last-of-type{
    margin-bottom: 0;
}
.ft-contact-cmn-item-phone{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.ft-contact-cmn-item-phone-p{
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
}
.ft-contact-cmn-item .hd-phone01{
    font-weight: 400;
    color: #000;
}
.ft-contact-cmn-item .hd-phone01:before{
    background-image: url(/system_panel/uploads/images/icon_phone02.png);
}
.ft-contact-cmn-item.ft-contact-cmn-btn{
    background-color: #859f0b;
    padding: 0;
}
.ft-contact-cmn-item.ft-contact-cmn-btn a{
    display: block;
}
.ft-contact-cmn-item.ft-contact-cmn-btn p{
    display: inline;
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 100px;
    padding-left: 40px;
    position: relative;
}
.ft-contact-cmn-item.ft-contact-cmn-btn p:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_mail.png);
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (min-width: 768px){
    .ft-contact-p{
        margin-bottom: 30px;
    }
    .ft-contact-p strong br{
        display: none;
    }
    .ft-contact-p-red-wrap{
        margin-bottom: 40px;
    }
    .ft-contact-cmn-item-phone-p{
        font-size: 1.8rem;
    }
    .ft-contact-cmn-item.ft-contact-cmn-btn p{
        font-size: 1.8rem;
        line-height: 120px;
        padding-left: 50px;
    }
    .ft-contact-cmn-item.ft-contact-cmn-btn p:before{
        width: 30px;
    }
}
@media screen and (min-width: 1024px){
    .ft-contact-cmn.flex-cnt{
        display: flex;
    }
    .ft-contact-cmn-item{
        width: calc((100% - 20px) / 2);
        padding: 0;
        margin: 0 20px 0 0;
    }
    .ft-contact-cmn-item:last-of-type{
        margin-right: 0;
    }
}
@media screen and (min-width: 1080px){
}

/*	フッター
---------------------------------*/
.ft-logo{
    width: 120px;
    text-align: center;
    margin: 0 auto 20px;
}
.ft-sns{
    text-align: center;
    margin: 0 0 20px;
}
.ft-add{
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 50px;
}
.ft-nav{
    display: none;
}
@media screen and (min-width:768px){
    .ft-logo{
        width: auto;
        margin: 0 0 20px;
    }
    .ft-add{
    }
}
@media screen and (min-width:1024px){
    .ft-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
    }
    .ft-nav .li{
        padding: 0 10px;
        margin-bottom: 15px;
        position: relative;
    }
    .ft-nav .li:last-of-type:before{
        content: none;
    }
    .ft-nav .li:first-of-type{
        padding-left: 0;
    }
    .ft-nav .li:last-of-type{
        padding-right: 0;
    }
    .ft-nav .li p{
        letter-spacing: 0.05em;
        line-height: 16px;
    }
}
@media screen and (min-width:1080px){
    .ft-nav .li{
        }
}
/*ページトップへ戻るボタン*/
.btn-pagetop {
    width: 50px;
    cursor: pointer;
}
@media screen and (max-width:1023px){
    .btn-pagetop{
        display: none !important;
    }
}
.pagetop-sp{
    display: block;
}
.pagetop-sp a {
    display: block;
    height: 67.5px;
    background-color: #859f0b;
    border-bottom: solid 1px #fff;
    text-align: center;
    position: relative;
}
.pagetop-sp a div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 25px;
    height: 25px;
}
.pagetop-sp a div:before {
    content: '';
    border-top: solid 1px #fff;
    border-left: solid 1px #fff;
    width: 25px;
    height: 25px;
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    left: 0;
}
@media screen and (min-width:1024px) {
    .pagetop-sp {
        display: none;
    }
}

/*コピーライト（ｐタグ）*/
.copyright {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}
@media screen and (min-width:768px) {
    .copyright {
        font-size: 1.2rem;
    }
}

/*	メイン画像
---------------------------------*/
.main-img-otr{
    padding-bottom: 45px;
    position: relative;
}
.main-img{
    height: 150vw;
}
.main-img.ojf:before{
    content: none;
}
.main-catch{
    max-width: max-content;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.scrolldown{
    height: 90px;
    position:absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.scrolldown p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: 10px;
}
.scrolldown::before{
    content: "";
    background: #ccc;
    width: 1px;
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
}
.scrolldown::after{
    content: "";
    background: #859f0b;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 22.5px;
    animation: pathmove 2.5s ease-in-out infinite;
}
@keyframes pathmove{
    0%{
    }
    100%{
        transform: translateY(300%);
    }
}
@media screen and (min-width:768px){
    .main-img-otr{
        padding-bottom: 60px;
    }
    .main-img{
        height: 120vw;
    }
    .main-catch{
    }
    .scrolldown{
        height: 120px;
    }
    .scrolldown p{
    }
    .scrolldown::before{
        height: 120px;
    }
    .scrolldown::after{
        height: 30px;
    }
}
@media screen and (min-width:1024px){
    .main-img-otr{
    }
    .main-img{
        height: 1080px;
    }
    .main-catch{
    }
}
@media screen and (min-width:1080px){
    .main-img{
        height: 100vh;
    }
    .main-catch{
    }
}
@media screen and (min-width:1230px){
    .main-catch{
    }
}

/*	トップページ
---------------------------------*/
.por{
    position: relative;
}
.top-overflow{
    overflow: hidden;
}
.bg-green{
    background-color: #f5f8e8;
}
.bg-black{
    background-color: #000;
}
.bg-white{
    background-color: #fff;
}
.bg-white01{
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.bg-pattern{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_main02.jpg);
}
.bg-pattern01,
.bg-pattern02{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/top_bg01.png);
    width: 70%;
    height: 80%;
    position: absolute;
    bottom: -40px;
    z-index: -1;
}
.bg-pattern01{
    right: 0;
}
.bg-pattern02{
    left: 0;
}
.bg-blue{
    background-color: #142a58;
}
.top-ttl{
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.top-ttl.left{
    text-align: left;
}
.top-ttl .ttl-cmn01{
    position: relative;
}
.top-ttl.white .ttl-cmn01,
.top-ttl.white .ttl-cmn02{
    color: #fff;
}
.top-ttl .ttl-cmn01{
    position: relative;
    z-index: 1;
}
.top-ttl .ttl-cmn01.small{
    font-size: 3.2rem;
}
.top-ttl.mb0{
    margin-bottom: 0;
}
.top-ttl02{
    margin-bottom: 20px;
}
.top-ttl03{
    text-align: center;
    margin-bottom: 30px;
}
.top-concept__bg{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_concept01.jpg);
    width: 100%;
    height: 75%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.top-concept__catch__txt{
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.top-ttl__sub.ttl-cmn05{
    padding-left: 35px;
    position: relative;
}
.top-ttl__sub.ttl-cmn05:before{
    content: "";
    width: 25px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.top-concept__catch{
    padding: 60px 0 calc(34.7vw + 30px);
    position: relative;
}
.top-concept__catch__txt__inr{
    padding-left: 20px;
}
.top-concept__catch__txt__inr__p{
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}
.top-concept__catch__txt__inr .btn-cmn01{
    margin-left: 0;
}
.top-concept__catch__img01{
    max-width: 1080px;
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.top-concept__catch__img02{
    max-width: 500px;
    width: 40%;
    position: absolute;
    bottom: 10px;
    left: 0;
}
.top-kodawari{
    padding: 60px 15px;
}
.top-kodawari__item{
    max-width: 1680px;
    width: 100%;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_kodawari01.jpg);
    padding: 60px 15px;
    margin: 0 auto 40px;
}
.top-kodawari__item__circle.flex-cnt{
    display: block;
}
.top-kodawari__item__circle{
    margin-bottom: 40px;
}
.top-kodawari__item__circle__content{
    width: 180px;
    height: 180px;
    background-color: rgba(234, 198, 28, .9);
    border-radius: 50%;
    margin: 0 auto 30px;
}
.top-kodawari__item__circle__content:last-of-type{
    margin-bottom: 0;
}
.top-kodawari__item__circle__content__a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;

    text-align: center;
}
.top-kodawari__item__circle__content__a{
    width: 100%;
    height: 100%;
}
.top-kodawari__item__circle__content__a .ttl-cmn02{
    color: #fff;
    letter-spacing: 0.1em;
}
.top-kodawari__item__circle__content__a__more{
    display: inline;
    border-bottom: solid 1px #fff;
    letter-spacing: 0.05em;
    color: #fff;
    padding-bottom: 3px;
}
.top-kodawari__item__diversity .ttl-cmn07{
    text-align: center;
    margin-bottom: 30px;
}
.top-kodawari__item__diversity__box__wrap.flex-cnt{
    display: block;
}
.top-kodawari__item__diversity__box{
    max-width: 250px;
    width: 100%;
    border: solid 1px #fff;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto 20px;
}
.top-kodawari__item__diversity__box:last-of-type{
    margin-bottom: 0;
}
.top-kodawari__item__diversity__box__p{
    line-height: 60px;
}
.top-menu__pickup{
    max-width: 800px;
    width: 100%;
    border: solid 2px #d5b030;
    padding: 10px;
    margin: 0 auto 40px;
}
.top-menu__pickup__inr{
    border: solid 1px #d5b030;
    text-align: center;
    padding: 40px 15px;
}
.top-menu__pickup__inr__ttl,
.top-menu__pickup__inr .ttl-cmn09{
    margin-bottom: 20px;
}
.top-menu__pickup__inr__p{
    letter-spacing: 0.05em;
}
.top-menu__list{
    margin-bottom: 40px;
}
.top-menu__list__item{
    display: block;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_menu01.jpg);
    width: 100%;
    text-align: center;
    padding: 20vw 15px 10vw;
    margin: 0 0 2px 0;
}
.top-menu__list__item:nth-of-type(2){
    background-image: url(/system_panel/uploads/images/bg_top_menu02.jpg);
}
.top-menu__list__item:nth-of-type(3){
    background-image: url(/system_panel/uploads/images/bg_top_menu03.jpg);
}
.top-menu__list__item:nth-of-type(4){
    background-image: url(/system_panel/uploads/images/bg_top_menu04.jpg);
}
.top-menu__list__item:nth-of-type(5){
    background-image: url(/system_panel/uploads/images/bg_top_menu05.jpg);
}
.top-menu__list__item:last-of-type{
    margin-bottom: 0;
}
.top-menu__list__item__img{
    margin-bottom: 5px;
}
.top-menu__list__item__ttl{
    margin-bottom: 30px;
}
.top-menu__list__item__p{
    letter-spacing: 0.1em;
    color: #fff;
}
.top-menu__list__item__btn{
    max-width: 200px;
    width: 100%;
    border: solid 1px #fff;
    border-radius: 20px;
    margin: 0 auto;
}
.top-menu__list__item__btn p{
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 40px;
}
.top-menu__bnr{
    text-align: center;
}
.top-menu__bnr__ttl{
    margin-bottom: 20px;
}
.top-menu__bnr .ttl-cmn07{
    display: inline-block;
    color: #859f0b;
    padding: 0 40px;
    position: relative;
}
.top-menu__bnr .ttl-cmn07:before{
    content: "＼";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.top-menu__bnr .ttl-cmn07:after{
    content: "／";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.top-slider__img{
    margin: 0 7.5px;
}
.top-slider__img:nth-of-type(2n){
    padding-top: 20px;
}
.top-scene__list__item{
    min-height: 48vw;
    padding-top: 50vw;
    margin-bottom: 50px;
    position: relative;
}
.top-scene__list__item:last-of-type{
    margin-bottom: 0;
}
.top-scene__list__item__txt{
    max-width: 550px;
    width: 90%;
    background-color: #fff;
    padding: 30px 15px;
    position: relative;
    z-index: 1;
}
.top-scene__list__item__txt__inr{
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}
.top-scene__list__item__txt__inr__p{
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}
.top-scene__list__item__txt__inr .btn-cmn01{
    margin-left: 0;
}
.top-scene__list__item__img{
    max-width: 720px;
    width: 80%;
    position: absolute;
    top: 0;
    right: 0;
}
.top-scene__list__item:nth-of-type(2n) .top-scene__list__item__img{
    left: 0;
    right: 0;
}
.top-scene__list__item:nth-of-type(2n) .top-scene__list__item__txt{
    margin-left: auto;
}
.top-scene__bg{
    background-color: #f5f8e8;
    width: 100%;
    height: 77%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.top-tour__list.flex-cnt{
    display: block;
}
.top-tour__list__item{
    display: block;
    max-width: 380px;
    width: 100%;
    border: solid 1px #859f0b;
    padding: 20px 15px;
    margin: 0 auto 30px;
}
.top-tour__list__item:last-of-type{
    margin-bottom: 0;
}
.top-tour__list__item__img{
    margin-bottom: 20px;
}
.top-tour__list__item__ttl.ttl-cmn08{
    color: #859f0b;
    margin-bottom: 10px;
    position: relative;
}
.top-tour__list__item__ttl.ttl-cmn08:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_arrow02.png);
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.top-tour__list__item__p{
    letter-spacing: 0.005em;
}
.top-blog__item__left{
    width: 100%;
    margin-bottom: 30px;
}
.top-blog__item__left__btn{
    width: 140px;
}
.top-blog .webgene-item{
    max-width: 380px;
    width: 100%;
    margin: 0 auto 30px;
}
.top-blog .webgene-item:last-of-type{
    margin-bottom: 0;
}
.top-blog .webgene-item .news-img{
    margin-bottom: 20px;
    position: relative;
}
.top-blog .webgene-item .news-img .cate{
    color: #fff;
    text-align: center;
    background-color: #463320;
    min-width: 100px;
    padding: 0 15px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.top-blog .webgene-item .news-img figure.ojf:before{
    padding-top: 77.2%;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/img_no.jpg);
}
.top-blog .webgene-item .blogdate{
    font-weight: 700;
    color: #999;
    margin-bottom: 5px;
}
.top-blog{
    width: 100%;
}
.top-recruit.flex-btw{
    display: block;
}
.top-recruit__txt{
    padding-top: 40px;
    margin-bottom: 30px;
}
.top-recruit__txt__p{
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 30px;
}
.top-recruit__bg{
    background-color: #859f0b;
    width: 100%;
    height: calc(100% - 60px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.top-shop.flex-cnt{
    display: block;
}
.top-shop__item{
    display: block;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/img_top_shop01.jpg);
    max-width: 580px;
    width: 100%;
    padding: 10px;
    margin: 0 auto 20px;
}
.top-shop__item:last-of-type{
    margin-bottom: 0;
}
.top-shop__item__inr{
    border: solid 2px #fff;
    padding: 25px 15px;
    text-align: center;
}
.top-shop__item__inr__p.ttl-cmn11{
    display: inline;
    color: #fff;
    line-height: 1;
    padding-left: 45px;
    position: relative;
}
.top-shop__item__inr__p.ttl-cmn11:before{
    content: "";
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_top_shop01.png);
    width: 30px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.top-shop__item:nth-of-type(2n){
    background-image: url(/system_panel/uploads/images/img_top_shop02.jpg);
}
.top-shop__item:nth-of-type(2n) .top-shop__item__inr__p.ttl-cmn11:before{
    background-image: url(/system_panel/uploads/images/icon_top_shop02.png);
}
@media screen and (min-width:768px){
    .top-ttl{
        margin-bottom: 40px;
    }
    .top-ttl .ttl-cmn01.small{
        font-size: 6rem;
    }
    .top-ttl03{
        margin-bottom: 40px;
    }
    .top-concept__bg{
        height: 60%;
    }
    .top-concept__catch__txt{
        margin-left: 0;
    }
    .top-ttl__sub.ttl-cmn05{
        padding-left: 40px;
    }
    .top-ttl__sub.ttl-cmn05:before{
        width: 30px;
    }
    .top-concept__catch__txt__inr{
        padding-left: 40px;
    }
    .top-concept__catch__txt__inr__p{
        margin-bottom: 40px;
    }
    .top-kodawari{
        padding: 100px 15px;
    }
    .top-kodawari__item{
        margin-bottom: 60px;
    }
    .top-kodawari__item__circle.flex-cnt{
        display: flex;
    }
    .top-kodawari__item__circle__content{
        width: 220px;
        height: 220px;
        margin: 0 20px 0 0;
    }
    .top-kodawari__item__circle__content:last-of-type{
        margin: 0;
    }
    .top-kodawari__item__diversity__box__wrap.flex-cnt{
        display: flex;
    }
    .top-kodawari__item__diversity__box{
        width: calc((100% - 40px) / 3);
        margin: 0 20px 0 0;
    }
    .top-kodawari__item__diversity__box:last-of-type{
        margin: 0;
    }
    .top-menu__pickup{
        margin-bottom: 50px;
    }
    .top-menu__list{
        margin-bottom: 60px;
    }
    .top-menu__list__item{
        max-width: 400px;
        width: calc((100% - 2px) / 2);
        padding: 80px 15px;
        margin: 0 2px 2px 0;
    }
    .top-menu__list__item:nth-of-type(2n){
        margin-right: 0;
    }
    .top-menu__list__item:last-of-type{
        margin: 0;
    }
    .top-slider__img:nth-of-type(2n){
        padding-top: 50px;
    }
    .top-scene__list__item{
        padding-top: 30vw;
        margin-bottom: 70px;
    }
    .top-scene__list__item__txt{
        padding: 70px 15px;
    }
    .top-scene__list__item__txt__inr__p{
        margin-bottom: 40px;
    }
    .top-scene__list__item__img{
        width: 60%;
    }
    .top-tour__list__item{
        padding: 20px;
    }
    .top-blog__item__left__btn{
        width: 200px;
    }
    .top-blog .webgene-blog{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
    .top-blog .webgene-item{
        width: calc((100% - 60px) / 3);
        margin: 0 30px 0 0;
    }
    .top-blog .webgene-item:last-of-type{
        margin: 0;
    }
    .top-blog .webgene-item .news-img .cate{
        min-width: 120px;
    }
    .top-recruit.flex-btw{
        display: flex;
    }
    .top-recruit__txt{
        max-width: 420px;
        width: 35%;
        padding-top: min(7.3vw, 140px);
        margin-bottom: 0;
    }
    .top-recruit__txt__p{
        margin-bottom: 40px;
    }
    .top-recruit__txt .btn-cmn01{
        margin-left: 0;
    }
    .top-recruit__img{
        width: 60%;
    }
    .top-recruit__bg{
        height: calc(100% - 140px);
    }
    .top-shop__item__inr{
        padding: 40px 15px;
    }
    .top-shop__item__inr__p.ttl-cmn11{
        padding-left: 60px;
    }
    .top-shop__item__inr__p.ttl-cmn11:before{
        width: 40px;
    }
}
@media screen and (min-width:1024px){
    .top-concept__catch{
        padding: 60px 0 calc(29.3vw + 70px);
        position: relative;
    }
    .top-concept__catch__img01{
        width: 56.25%;
    }
    .top-concept__catch__img02{
        left: 15px;
    }
    .top-kodawari__item__circle__content{
        margin: 0 25px 0 0;
    }
    .top-kodawari__item__diversity__box{
        width: calc((100% - 60px) / 3);
        margin: 0 30px 0 0;
    }
    .top-menu__list__item{
        width: calc((100% - 4px) / 3);
    }
    .top-menu__list__item:nth-of-type(2n){
        margin-right: 2px;
    }
    .top-menu__list__item:nth-of-type(3n){
        margin-right: 0px;
    }
    .top-scene__list__item{
        padding-top: 100px;
    }
    .top-scene__list__item__txt{
        width: 46%;
    }
    .top-tour__list.flex-cnt{
        display: flex;
    }
    .top-tour__list__item{
        width: calc((100% - 60px) / 3);
        margin: 0 30px 0 0;
    }
    .top-tour__list__item:last-of-type{
        margin-right: 0;
    }
    .top-tour__list__item__ttl.ttl-cmn08{
        font-size: min(2.1rem, 1.6vw);
    }
    .top-blog__item__left.flex-btw{
        display: block;
    }
    .top-blog__item__left{
        width: 200px;
    }
    .top-blog__item__left .ttl-cmn11{
        line-height: 1;
        margin-bottom: 30px;
    }
    .top-blog{
        max-width: 950px;
        width: calc(100% - 200px);
        padding-left: 50px;
    }
    .top-recruit__bg{
        height: calc(100% - 170px);
    }
    .top-shop.flex-cnt{
        display: flex;
    }
    .top-shop__item{
        width: calc((100% - 40px) / 2);
        margin: 0 20px 0 0;
    }
    .top-shop__item:last-of-type{
        margin-right: 0;
    }
}
@media screen and (min-width:1080px){
}
@media screen and (min-width:1230px){
    .top-concept__catch{
        padding: 60px 0 calc(19.8vw + 70px);
    }
    .top-concept__catch__img02{
        width: 26%;
        left: auto;
        right: calc(50% + 220px);
    }
    .top-scene__list__item{
        min-height: 590px;
    }
}

/*	下層ヘッダー
---------------------------------*/
.bg-subhd{
    height: 300px;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/img_sub01.jpg);
    position: relative;
}
.subhd-ttl{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.subttl{
    font-family: "Crimson Pro", serif;
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0px 0px 19px rgba(0, 0, 0, 0.5);
}
.subttl02{
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0px 0px 19px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width:768px){
    .bg-subhd{
        height: 400px;
    }
    .subhd-ttl{
    }
    .subttl{
        font-size: 7rem;
    }
    .subttl02{
        font-size: 2.1rem;
    }
}
@media screen and (min-width:1024px){
    .bg-subhd{
        height: 600px;
    }
    .subhd-ttl{
        top: 60%;
    }
}
@media screen and (min-width:1080px){
}

/*	コンセプト
---------------------------------*/
.bg-subhd.concept{
    background-image: url(/system_panel/uploads/images/img_sub_concept.jpg);
}
.concept__ttl{
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.concept__ttl .ttl-cmn12,
.concept__ttl .ttl-cmn03{
    position: relative;
    z-index: 1;
}
.concept__ttl .ttl-cmn12{
    padding-top: 8%;
}
.concept__ttl__en{
    font-family: "Crimson Pro", serif;
    font-size: clamp(7rem, 20vw, 20rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    color: rgb(243, 245, 233);
    line-height: 0.8;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.concept__catch__p{
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 2.5;
}
.concept__catch__p strong{
    font-weight: 400;
}
.top-band{
    height: 250px;
}
.top-band:before{
    content: "";
    display: block;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/img_concept_scroll.jpg);
    width: 100%;
    height: 250px;
    position: relative;
    top: 0;
    left: 0;
    z-index: -5;
}
.concept__logo{
    max-width: 1100px;
    width: 100%;
    border: solid 1px #859f0b;
    padding: 90px 15px 30px;
    margin: 0 auto;
    position: relative;
}
.concept__logo__ttl{
    display: inline-block;
    background-color: #fff;
    padding: 0 20px;
    margin: 0;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.concept__logo__ttl.top-ttl .ttl-cmn01{
    line-height: 1;
    margin-bottom: 10px;
}
.concept__logo__item.flex-cnt{
    display: block;
}
.concept__logo__item__img{
    width: 120px;
    margin: 0 auto 20px;
}
.kodawari__catch__p{
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 30px;
}
.kodawari__catch__p strong{
    font-weight: 400;
}
.kodawari__list__item{
    padding-top: 45vw;
    margin-bottom: 50px;
    position: relative;
}
.kodawari__list__item:last-of-type{
    margin-bottom: 0;
}
.kodawari__list__item__txt{
    max-width: 650px;
    width: 95%;
    background-color: #fff;
    padding: 30px 15px;
    position: relative;
    z-index: 1;
}
.kodawari__list__item__txt__inr{
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}
.kodawari__list__item__txt__ttl{
    margin-bottom: 20px;
}
.kodawari__list__item__txt__ttl .top-ttl__sub.ttl-cmn05{
    color: #859f0b;
}
.kodawari__list__item__txt__ttl .top-ttl__sub.ttl-cmn05:before{
    background-color: #859f0b;
}
.kodawari__list__item__img{
    max-width: 700px;
    width: 90%;
    position: absolute;
    top: 0;
    right: 0;
}
.kodawari__list__item__img.ojf:before{
    padding-top: 64.29%;
}
.kodawari__list__item:nth-of-type(2n) .kodawari__list__item__txt{
    margin-left: auto;
}
.kodawari__list__item:nth-of-type(2n) .kodawari__list__item__img{
    left: 0;
    right: auto;
}
@media screen and (min-width:768px){
    .concept__ttl{
        margin-bottom: 40px;
    }
    .concept__catch__p strong br{
        display: none;
    }
    .top-band{
        height: 600px;
    }
    .top-band:before{
        height: 100vh;
        position: fixed;
    }
    .concept__logo{
        padding: 90px 15px 40px;
    }
    .concept__logo__ttl{
        padding: 0 30px;
        top: -40px;
    }
    .concept__logo__item.flex-cnt{
        display: flex;
    }
    .concept__logo__item__img{
        width: auto;
        margin: 0;
    }
    .concept__logo__item__txt{
        padding-left: 30px;
    }
    .kodawari__catch__p{
        margin-bottom: 50px;
    }
    .kodawari__catch__p strong br{
        display: none;
    }
    .kodawari__list__item{
        padding-top: 350px;
        margin-bottom: 70px;
    }
    .kodawari__list__item__txt{
        padding: 50px 20px;
    }
}
@media screen and (min-width:1024px){
    .concept__ttl .ttl-cmn12{
        padding-top: 70px;
    }
    .kodawari__list__item{
        min-height: 450px;
        padding-top: 100px;
    }
    .kodawari__list__item__txt{
        width: 55%;
    }
}
@media screen and (min-width:1080px){
}

/*	メニュー
---------------------------------*/
.bg-subhd.menu{
    background-image: url(/system_panel/uploads/images/img_sub_menu.jpg);
}
.menu-btn__list.flex-nml{
    display: block;
}
.menu-btn__list{
    margin-bottom: 50px;
}
.menu-btn__list__item{
    max-width: 320px;
    width: 100%;
    background-color: #859f0b;
    border-radius: 34px;
    margin: 0 auto 20px;
}
.menu-btn__list__item:last-of-type{
    margin-bottom: 0;
}
.menu-btn__list__item a{
    display: block;
    text-align: center;
}
.menu-btn__list__item p{
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 60px;
}
.tax-p{
    letter-spacing: 0.05em;
    text-align: center;
}
.menu__time__list{
    text-align: center;
    margin-bottom: 30px;
}
.menu__time__list__p--red{
    width: 120px;
    background-color: #d62300;
    border-radius: 15px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    margin-right: 20px;
}
.menu__time__list .ttl-cmn08{
    color: #000;
}
.menu__green__box{
    max-width: 1000px;
    width: 100%;
    border: solid 1px #859f0b;
    text-align: center;
    padding: 20px 15px;
    margin: 0 auto 40px;
}
.menu__green__box__p{
    letter-spacing: 0.05em;
    color: #859f0b;
}
.recommend__wrap{
    position: relative;
}
.recommend__list.flex-cnt{
    display: block;
}
.recommend__list__item{
    max-width: 380px;
    width: 100%;
    margin: 0 auto 30px;
}
.recommend__list__item:last-of-type{
    margin-bottom: 0;
}
.recommend__list__item__txt{
    background-color: #fff;
    padding: 20px 15px;
}
.recommend__list__item__img.ojf:before{
    padding-top: 73.7%;
}
.recommend__list__item__txt--type01__price{
    text-align: right;
}
.morning__bg{
    width: 100%;
    height: 100%;
    background-color: #f5f8e8;
    position: absolute;
    bottom: -60px;
    left: 0;
    z-index: -1;
}
.recommend__ttl{
    text-align: center;
    margin-bottom: 30px;
}
.recommend__list__item__txt--type02{
    text-align: center;
}
.menu-table__list__item{
    margin-bottom: 40px;
}
.menu-table__list__item:last-of-type{
    margin-bottom: 0;
}
.cmn-table--type01__ttl{
    background-color: #859f0b;
    padding: 15px;
}
.cmn-table--type01__ttl .ttl-cmn07{
    font-weight: 400;
}
.cmn-table--type01__ttl .ttl-cmn05{
    color: #fff;
    padding-left: 10px;
}
.cmn-table--type01__tr{
    border-bottom: solid 1px #859f0b;
    padding: 10px 0;
}
.cmn-table--type01__tr:first-of-type{
    border-top: solid 1px #859f0b;
}
.cmn-table--type01__th{
    max-width: calc(100% - 100px);
    padding-right: 10px;
}
.cmn-table--type01__th__p02{
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}
.cmn-table--type01__td{
    margin-left: auto;
}
.cmn-table--type01__astarisk{
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    padding: 15px 15px 0 15px;
}
.menu-table__list__item__box{
    background-color: #f5f8e8;
    padding: 15px;
}
.menu-table__list__item__box__cont{
    margin-bottom: 20px;
}
.menu-table__list__item__box__cont:last-of-type{
    margin-bottom: 0;
}
.menu-table__list__item__box__p01{
    letter-spacing: 0.05em;
    padding-left: 20px;
    position: relative;
}
.menu-table__list__item__box__p01:before{
    content: "■";
    position: absolute;
    top: 0;
    left: 0;
}
.menu-table__list__item__box__p02{
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    padding-left: 20px;
}
.menu__red__box{
    border: solid 1px #d62300;
    padding: 30px 15px;
}
.menu__red__box .ttl-cmn07{
    font-weight: 400;
    text-align: center;
}
.menu__red__box .ttl-cmn07{
    color: #000;
    margin-bottom: 20px;
}
.menu__red__box__allergy{
    text-align: center;
    margin-bottom: 20px;
}
.menu__red__box__allergy p{
    display: inline-block;
    max-width: 900px;
    width: 100%;
    background-color: #d62300;
    border-radius: 15px;
    padding: 0 15px;
    color: #fff;
}
.menu__red__box__allergy p strong{
    font-weight: 400;
}
.menu__red__box__table{
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
}
.menu__red__box__table .cmn-table--type01__tr{
    border-bottom: solid 1px #999;
}
.menu__red__box__table .cmn-table--type01__tr:first-of-type{
    border-top: solid 1px #999;
}
.box__border{
    border-bottom: dashed 1px #b1b1b1;
}
@media screen and (min-width:768px){
    .menu-btn__list.flex-nml{
        display: flex;
    }
    .menu-btn__list{
        max-width: 660px;
        width: 100%;
        margin: 0 auto 70px;
        gap: 20px;
    }
    .menu-btn__list__item{
        width: calc((100% - 20px) / 2);
        margin: 0;
    }
    .menu-btn__list__item p{
        line-height: 70px;
    }
    .menu__time__list{
        margin-bottom: 40px;
    }
    .menu__time__list__p--red{
        width: 150px;
    }
    .menu__green__box{
        margin: 0 auto 50px;
    }
    .recommend__list.flex-cnt{
        display: flex;
    }
    .recommend__list__item{
        width: calc((100% - 60px) / 3);
        margin: 0 30px 0 0;
    }
    .recommend__list__item:last-of-type{
        margin: 0;
    }
    .morning__bg{
        bottom: -100px;
    }
    .cmn-table--type01__ttl{
        padding: 20px 30px;
    }
    .cmn-table--type01__tr{
        padding: 20px;
    }
    .cmn-table--type01__astarisk{
        padding: 20px 20px 0 20px;
    }
    .menu-table__list__item__box{
        padding: 20px 30px;
    }
    .menu__red__box__allergy p strong br{
        display: block;
    }
    .menu__red__box{
        padding: 50px 15px;
    }
    .menu__red__box__allergy{
        margin-bottom: 30px;
    }
}
@media screen and (min-width:1024px){
    .menu-btn__list{
        max-width: none;
        margin: 0 0 70px;
        gap: 20px;
    }
    .menu-btn__list__item{
        width: calc((100% - 40px) / 3);
        margin: 0;
    }
    .menu__red__box__allergy p strong br{
        display: none;
    }
}
@media screen and (min-width:1080px){
}

/*	ウエディング
---------------------------------*/
.bg-subhd.wedding{
    background-image: url(/system_panel/uploads/images/img_sub_wedding.jpg);
}
.wedding__catch{
    text-align: center;
}
.wedding__catch .ttl-cmn13{
    margin-bottom: 30px;
}
.wedding__catch .ttl-cmn13 strong{
    font-weight: 400;
}
.wedding__catch .ttl-cmn05{
    color: #859f0b;
}
.location__bg{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_location.jpg);
}
.location__box{
    max-width: 1100px;
    width: 100%;
    background-color: #fff;
    padding: 80px 15px 40px;
    margin: 0 auto;
    position: relative;
}
.location__box__inr.flex-btw{
    display: block;
}
.location__box__inr{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.location__box .top-ttl{
    margin-bottom: 0;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}
.location__box .ttl-cmn07{
    color: #859f0b;
    text-align: center;
    margin-bottom: 20px;
}
.location__box__inr.flex-btw{
    display: block;
}
.location__box__inr__left{
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.location__box__inr__right{
    position: relative;
    z-index: 1;
}
.wedding-video{
    text-align: center;
}
.wedding-video iframe{
    max-width: 640px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.plan__list__item{
    padding: 50px 0;
}
.plan__list__item:last-of-type{
    padding: 50px 0 60px;
}
.plan__list__item__cont.flex-btw{
    display: block;
}
.plan__list__item__cont{
    margin-bottom: 40px;
}
.plan__list__item__cont.mb0{
    margin-bottom: 0;
}
.plan__list__item__cont__left{
    margin-bottom: 30px;
}
.plan__list__item__cont__left__ttl{
    margin-bottom: 30px;
}
.plan__list__item__cont__left__ttl .top-ttl__sub.ttl-cmn05{
    color: #859f0b;
}
.plan__list__item__cont__left__ttl .top-ttl__sub.ttl-cmn05:before{
    background-color: #859f0b;
}
.plan__list__item__cont__left__txt .ttl-cmn08{
    color: #000;
    margin-bottom: 5px;
}
.plan__list__item__cont__left__txt__disc{
    letter-spacing: 0.05em;
}
.plan__list__item__cont__left__txt__price.ttl-cmn07{
    font-weight: 400;
    color: #000;
    text-align: right;
}
.plan__list__item__cont__right{
    text-align: center;
}
.plan__menu__list__item.flex-nml{
    display: block;
}
.plan__menu__list__item{
    border: solid 1px #859f0b;
    margin-bottom: 30px;
}
.plan__menu__list__item:last-of-type{
    margin-bottom: 0;
}
.plan__menu__list__item__left{
    width: 100%;
    background-color: #859f0b;
    padding: 15px;
}

.plan__menu__list__item__left .ttl-cmn07{
    font-weight: 400;
}
.plan__menu__list__item__right{
    width: 100%;
    padding: 15px;
}
.plan__menu__list__item__p{
    letter-spacing: 0.05em;
}
.plan__menu__list__item__p.ttl-cmn07{
    font-weight: 400;
    color: #000;
    padding-right: 30px;
}
.plan__list__item:nth-of-type(2n + 1){
    background-color: #f5f8e8;
}
.plan__list__item:nth-of-type(2n) .plan__list__item__cont.flex-btw{
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.service__box__inr__right .ttl-cmn08{
    color: #000;
    margin-bottom: 20px;
}
.service__icon{
    max-width: max-content;
    width: 30%;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
@media screen and (min-width:768px){
    .wedding__catch .ttl-cmn13{
        margin-bottom: 40px;
    }
    .wedding__catch .ttl-cmn13 strong br{
        display: none;
    }
    .location__box{
        padding: 100px 15px 60px;
    }
    .location__box__inr.flex-btw{
        display: flex;
    }
    .location__box .top-ttl{
        top: -55px;
    }
    .location__box .ttl-cmn07{
        margin-bottom: 50px;
    }
    .location__box__inr.flex-btw{
        display: flex;
    }
    .location__box__inr__left{
        width: 38%;
    }
    .location__box__inr__right{
        width: 57%;
    }
    .plan__list__item{
        padding: 70px 0;
    }
    .plan__list__item:last-of-type{
        padding: 70px 0 100px;
    }
    .plan__list__item__cont__left__txt__disc{
        margin-bottom: 40px;
    }
    .plan__menu__list__item.flex-nml{
        display: flex;
    }
    .plan__menu__list__item__left{
        width: 250px;
        padding: 40px 30px;
    }
    .plan__menu__list__item__left.flex-nml{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .plan__menu__list__item__p.ttl-cmn07{
        padding-right: 50px;
    }
    .plan__menu__list__item__right{
        flex: 1;
        padding: 20px 20px 20px 30px;
    }
    .service__icon{
        bottom: 50px;
        right: 50px;
    }
}
@media screen and (min-width:1024px){
    .plan__list__item__cont.flex-btw{
        display: flex;
    }
    .plan__list__item__cont__left{
        width: 43.3%;
        padding-top: 50px;
        margin-bottom: 0;
    }
    .plan__list__item__cont__right{
        width: 50%;
    }
    .plan__menu__list__item__right{
        flex: 1;
        padding: 20px 20px 20px 40px;
    }
    .plan__list__item__cont__left__txt__ttl.ttl-cmn08{
        font-size: min(2.1rem, 1.8vw);
    }
}
@media screen and (min-width:1080px){
}

/*	採用情報
---------------------------------*/
.bg-subhd.recruit{
    background-image: url(/system_panel/uploads/images/img_sub_recruit.jpg);
}
.vision_catch{
    text-align: center;
}
.vision_catch .ttl-cmn13{
    margin-bottom: 30px;
}
.vision_catch .ttl-cmn13 strong{
    font-weight: 400;
}
.vision_catch .ttl-cmn05{
    font-weight: 300;
    color: #859f0b;
    margin-bottom: 30px;
}
.vision_catch__p span{
    font-weight: 700;
}
.recruit__bg{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/img_recruit01.jpg);
    height: 200px;
}
.benefits__box{
    margin-bottom: 30px;
    position: relative;
}
.benefits__box:last-of-type{
    margin-bottom: 50px;
}
.benefits__box__list__item.flex-btw{
    display: block;
}
.benefits__box__list__item{
    margin-bottom: 30px;
}
.benefits__box__list__item:last-of-type{
    margin-bottom: 0;
}
.benefits__box__list__item__left{
    margin-bottom: 30px;
}
.benefits__box__list__item__left__ttl{
    margin-bottom: 20px;
}
.benefits__box__list__item__left__ttl.flex-nml{
    display: block;
}
.benefits__box__list__item__left__ttl__num{
    width: 70px;
    height: 70px;
    background-color: #859f0b;
    border-radius: 50%;
    margin-bottom: 10px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.benefits__box__list__item__left__ttl__num .ttl-cmn11{
    letter-spacing: 0;
    color: #fff;
    line-height: 1;
}
.benefits__box__list__item__left__ttl .ttl-cmn07{
    color: #859f0b;
}
.benefits__box__list__item__left__ttl .ttl-cmn07 br{
    display: none;
}
.benefits__box__list__item__left__txt{
    letter-spacing: 0.05em;
}
.benefits__box__list__item__right{
    text-align: center;
}
.benefits__box__list__item:nth-of-type(2n){
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.benefits__box__bg{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_concept01.jpg);
    width: 66.7%;
    height: 65%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
}
.benefits__box:nth-of-type(2n) .benefits__box__bg{
    right: auto;
    left: 0;
}
.recruit__box{
    border: solid 1px #859f0b;
    padding: 30px 15px 40px;
}
.recruit__box__inr{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.contact-p{
    text-align: center;
    margin-bottom: 30px;
}
.contact-p.contact-p__sp-left{
    text-align: left;
}
@media screen and (min-width:768px){
    .vision_catch .ttl-cmn13 strong br{
        display: none;
    }
    .recruit__bg{
        height: 450px;
    }
    .benefits__box{
        margin-bottom: 50px;
    }
    .benefits__box__list__item__left__ttl{
        margin-bottom: 30px;
    }
    .benefits__box__list__item__left__ttl.flex-nml{
        display: flex;
    }
    .benefits__box__list__item__left__ttl__num{
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }
    .benefits__box__list__item__left__ttl .ttl-cmn07{
        padding-left: 20px;
    }
    .recruit__box{
        padding: 50px 15px 70px;
    }
    .contact-p{
        margin-bottom: 40px;
    }
    .contact-p.contact-p__sp-left{
        text-align: center;
    }
}
@media screen and (min-width:1024px){
    .recruit__bg{
        height: 650px;
    }
    .benefits__box__list__item.flex-btw{
        display: flex;
    }
    .benefits__box__list__item__left{
        width: 50%;
        padding-top: 30px;
        margin-bottom: 0;
    }
    .benefits__box__list__item__right{
        width: 45.8%;
    }
    .benefits__box__list__item__left__ttl .ttl-cmn07 br{
        display: block;
    }
    .benefits__box__list__item:nth-of-type(2n) .benefits__box__list__item__right{
        margin-top: -40px;
    }
}
@media screen and (min-width:1080px){
    .benefits__box__list__item__left__ttl .ttl-cmn07 br{
        display: none;
    }
    .benefits__box__list__item:nth-of-type(2n) .benefits__box__list__item__right{
        margin-top: -80px;
    }
}

/*	ご利用シーン
---------------------------------*/
.bg-subhd.scene{
    background-image: url(/system_panel/uploads/images/img_sub_scene.jpg);
}
.scene__item{
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
}
.scene__item__bg{
    background-color: #f5f8e8;
    width: 66.7%;
    height: calc(100% - 100px);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.scene__item:last-of-type{
    margin-bottom: 0;
}
.scene__item .plan__list__item__cont{
    margin-bottom: 0;
}
.scene__item__inr__left__txt{
    letter-spacing: 0.05em;
}
.scene__item:nth-of-type(2n) .flex-btw.plan__list__item__cont{
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.scene__item:nth-of-type(2n) .scene__item__bg{
    right: auto;
    left: 0;
}
@media screen and (min-width:768px){
    .scene__item{
        padding-bottom: 70px;
        margin-bottom: 70px;
    }
}
@media screen and (min-width:1024px){
}
@media screen and (min-width:1080px){
}

/*	店舗情報
---------------------------------*/
.bg-subhd.shop{
    background-image: url(/system_panel/uploads/images/img_sub_shop.jpg);
}
.overview__item.flex-btw{
    display: block;
}
.overview__item__left{
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}
.overview__item__right{
    text-align: center;
    margin-bottom: 30px;
}
.seat__item{
    margin-bottom: 40px;
}
.seat__item:last-of-type{
    margin-bottom: 0;
}
.seat__item__txt.flex-nml{
    display: block;
}
.seat__item__txt{
    max-width: 1100px;
    width: 95%;
    margin: -20px auto 0;
    position: relative;
    z-index: 1;
}
.seat__item__txt__left{
    background-color: #859f0b;
    padding: 10px;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.seat__item__txt__left .ttl-cmn07{
    font-weight: 400;
}
.seat__item__txt__right{
    background-color: #fff;
    padding: 10px;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
}
.seat__item__txt__right p{
    letter-spacing: 0.05em;
}
.access-map{
    width: 100%;
    height: 250px;
}
.access-map iframe{
    width: 100%;
    height: 250px;
}
@media screen and (min-width:768px){
    .seat__item{
        margin-bottom: 70px;
    }
    .seat__item__txt.flex-nml{
        display: flex;
    }
    .seat__item__txt{
        margin: -40px auto 0;
    }
    .seat__item__txt__left{
        width: 200px;
        padding: 20px 15px;
    }
    .seat__item__txt__right{
        flex: 1;
        padding: 20px 20px 20px 30px;
    }
    .access-map{
        height: 400px;
    }
    .access-map iframe{
        height: 400px;
    }
}
@media screen and (min-width:1024px){
    .overview__item.flex-btw{
        display: flex;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .overview__item__left{
        width: 47.5%;
        margin: 0;
    }
    .overview__item__right{
        width: 47.5%;
        margin-bottom: 0;
    }
    .access-map{
        height: 500px;
    }
    .access-map iframe{
        height: 500px;
    }
}
@media screen and (min-width:1080px){
}
@media screen and (min-width:1920px){
}

/*	ご予約・お問い合わせ
---------------------------------*/
.bg-subhd.contact{
    background-image: url(/system_panel/uploads/images/img_sub_contact.jpg);
}
.contact__ttl{
    text-align: center;
    margin-bottom: 30px;
}
.contact__astarisk__red{
    text-align: center;
    margin: 0 auto 20px;
}
.contact__astarisk__red--type01{
    max-width: 450px;
}
.contact__astarisk__red--type02{
    max-width: 740px;
}
.contact__astarisk__red p{
    display: inline-block;
    width: 100%;
    background-color: #d62300;
    border-radius: 15px;
    font-weight: 700;
    color: #fff;
    padding: 0 15px;
}
.contact__phone{
    text-align: center;
    margin-bottom: 30px;
}
.contact__phone .hd-phone01{
    display: inline;
    font-size: 3.6rem;
    color: #000;
}
.contact__phone .hd-phone01:before{
    background-image: url(/system_panel/uploads/images/icon_phone02.png);
}
.contact__box{
    max-width: 430px;
    width: 100%;
    border: solid 1px #859f0b;
    padding: 30px 15px;
    margin: 0 auto;
}
.contact__box__inr{
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.contact__box__item{
    margin-bottom: 10px;
}
.contact__box__item:last-of-type{
    margin-bottom: 0;
}
.contact__box__item__p01{
    width: 70px;
    font-family: "Noto Serif JP";
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #859f0b;
}
.contact__box__item__p02{
    font-family: "Noto Serif JP";
    letter-spacing: 0.05em;
    padding-left: 20px;
}
.contact-p__red{
    text-align: center;
    margin-bottom: 30px;
}
.contact-p__red p{
    display: inline;
    border-bottom: solid 1px #d62300;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #d62300;
    padding-bottom: 3px;
}
@media screen and (min-width:768px){
    .contact__ttl{
        margin-bottom: 40px;
    }
    .contact__phone{
        margin-bottom: 40px;
    }
    .contact__phone .hd-phone01{
        font-size: 4.2rem;
    }
    .contact-p__red{
        margin-bottom: 50px;
    }
    .contact-p__red p strong br{
        display: none;
    }
}
@media screen and (min-width:1024px){
}
@media screen and (min-width:1080px){
}
@media screen and (min-width:1920px){
}

/*	ブログ
---------------------------------*/
.bg-subhd.blog{
    background-image: url(/system_panel/uploads/images/img_sub_blog.jpg);
}