@charset "utf-8";
/*	ヘッダーa
---------------------------------*/
.hd-h1{
    display: none;
}
.click_event{
    pointer-events: none;
}
.header{
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
.hd-inr{
    height: 60px;
    padding: 5px 10px;
    position: relative;
}
.hd-logo{
    width: 50px;
    position: relative;
}
.hd-logo a{
    display: block;
    position: relative;
}
.hd-right{
    display: none;
}
.hd-right01{
    margin-bottom: 20px;
}
.hd-phone{
    margin-right: 20px;
}
.hd-phone01{
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 2.4rem;
    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-reserve01{
    display: none;
    background-color: #E80000;
    width: 160px;
    font-family: "Noto Serif JP";
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 40px;
    text-align: center;
    margin-right: 20px;
}
.hd-sns{
    text-align: center;
    margin-bottom: 20px;
}
.hd-time{
    margin-bottom: 10px;
}
.hd-time:last-of-type{
    margin-bottom: 0;
}
.hd-time-p01{
    width: 80px;
    border: solid 1px #fff;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    margin-right: 10px;
}
.hd-time-p02{
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #fff;
}
@media screen and (min-width: 768px){
    .hd-inr{
        height: 90px;
        padding: 15px 20px;
    }
    .hd-logo{
        width: 60px;
    }
    .hd-phone01{
        font-size: 3rem;
    }
    .hd-reserve01{
        display: block;
    }
}
@media screen and (min-width: 1024px){
    .hd-inr{
        height: auto;
        padding: 40px 0;
    }
    .hd-logo{
        width: auto;
        padding-left: 40px;
    }
    .hd-right{
        display: block;
        margin-right: 130px;
    }
    .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: 260px;
        background-color: #315529;
    }
    .hd-btn a{
        display: block;
        text-align: center;
    }
    .hd-btn p{
        display: inline;
        font-weight: 700;
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        color: #fff;
        line-height: 80px;
        padding-left: 40px;
        position: relative;
    }
    .hd-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: 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: #315529;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
}
.gjs-dashed .hd-hum{
    background-color: #fff;
    max-width: 100%;
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
.hd-hum{
    max-width: 60px;
    width: 100%;
    position: absolute;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
}
.hd-hum.open{
    background-color: #fff;
    max-width: 500px;
    height: 100vh;
    padding-bottom: 30px;
    overflow: scroll;
    left: auto;
    right: 0;
    transform: translateX(0);
    z-index: 10;
}
.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: transparent;
    max-width: 60px;
    width: 100%;
    padding: 18px 10px 12px;
    margin-left: auto;
    z-index: 100;
}
.navbar.open{
    max-width: 100%;
}
.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: 30px;
    height: 30px;
    margin: auto;
    margin-right: 5px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

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

.navbar-toggler-icon:nth-of-type(1) {
    top: 0px;
}

.navbar-toggler-icon:nth-of-type(2) {
    top: 6px;
}

.navbar-toggler-icon:nth-of-type(3) {
    display: none;
    bottom: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background-color: #000;
}
.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:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
    display: block;
    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: #000;
    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 #333;
    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;
    margin-bottom: 10px;
}
.hd-menu-box .hd-phone01{
    display: inline;
    color: #000;
}
.hd-menu-box .hd-phone01:before{
    background-image: url(/system_panel/uploads/images/icon_phone02.png);
}
.hd-menu-box .hd-right02{
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.hd-menu-box .hd-time-p01{
    border: solid 1px #333;
    color: #333;
}
.hd-menu-box .hd-time-p02{
    font-size: 1.3rem;
    color: #333;
}
.hd-btn-sp{
    background-color: #E80000;
    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: 30px;
    position: relative;
}
.hd-btn-sp p:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_mail.png);
    width: 20px;
    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: 90px;
        padding: 30px 15px;
    }
    .navbar-dark .navbar-toggler{
        width: 40px;
        height: 30px;
        margin-right: 10px;
    }
    .navbar-dark .navbar-toggler-icon{
        width: 100%;
        height: 3px;
    }
    .navbar-collapse.show{
        height: calc(100vh - 90px);
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1){
        top: 13px;
    }
    .navbar-toggler-icon:nth-of-type(2) {
        top: 10px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3){
        top: 13px;
    }
    .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: 80px;
        padding-left: 40px;
    }
    .hd-btn-sp p:before{
        width: 25px;
    }
}
@media screen and (min-width: 1024px){
    .bg-hum{
        display: none;
    }
    .hd-hum{
        right: 30px;
    }
    .hd-hum.open{
        max-width: 100%;
        width: 100%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .gjs-dashed .hd-hum-left{
        display: block;
    }
    .flex-cnt.hd-hum-inr{
        display: flex;
    }
    .navbar{
        padding: 40px 5px 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{
        height: 50px;
    }
    .navbar-dark .navbar-toggler-icon{
    }
    .navbar-toggler-icon:nth-of-type(1) {
        top: 0px;
    }
    .navbar-toggler-icon:nth-of-type(2) {
        top: calc(50% - 10px);
        transform: translateY(-50%);
    }
    .navbar-toggler-icon:nth-of-type(3) {
        bottom: 20px;
    }
    .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: 12px;
    }
    .hd-hum.open .hum-menu-p{
        top: 70px;
    }
}
@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_ft01.jpg);
}
.ft-contact-p.ttl-cmn03{
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}
.ft-phone{
    text-align: center;
    margin-bottom: 20px;
}
.ft-phone .hd-phone01{
    display: inline;
    font-size: 3rem;
}
.ft-time-list.flex-cnt{
    display: block;
}
.ft-time-list{
    max-width: 350px;
    width: 100%;
    margin: 0 auto 30px;
}
.ft-time-list .hd-time-p02{
    font-size: 1.3rem;
}
.ft-tel-btn.hd-btn-sp p{
    line-height: 80px;
}
@media screen and (min-width: 768px){
    .ft-contact-p{
        margin-bottom: 40px;
    }
    .ft-phone .hd-phone01{
        font-size: 3.6rem;
        padding-left: 40px;
    }
    .ft-phone .hd-phone01:before{
        width: 25px;
    }
    .ft-time-list.flex-cnt{
        display: flex;
    }
    .ft-time-list{
        max-width: none;
        margin: 0 0 40px;
    }
    .ft-time-list .hd-time{
        margin: 0 20px 0 0;
    }
    .ft-time-list .hd-time:last-of-type{
        margin: 0;
    }
    .ft-time-list .hd-time-p02{
        font-size: 1.4rem;
    }
    .ft-tel-btn.hd-btn-sp p{
        line-height: 100px;
    }
}
@media screen and (min-width: 1024px){
}
@media screen and (min-width: 1080px){
}

/*	フッター
---------------------------------*/
.ft-logo{
    text-align: center;
    margin-bottom: 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{
    }
    .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 15px;
        margin-bottom: 15px;
        position: relative;
    }
    .ft-nav .li:before{
        content: "";
        background-color: #333;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
    }
    .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{
        padding: 0 20px;
        }
}
/*ページトップへ戻るボタン*/
.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: #000;
    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{
    position: relative;
}
.main-img{
    height: 120vw;
}
.main-img.ojf:before{
    content: none;
}
.main-catch{
    max-width: 754px;
    width: 90%;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (min-width:768px){
    .main-img-otr{
    }
    .main-img{
        height: 90vw;
    }
    .main-catch{
        width: 80%;
    }
}
@media screen and (min-width:1024px){
    .main-img{
        height: 1080px;
    }
    .main-catch{
    }
}
@media screen and (min-width:1080px){
    .main-img{
    }
    .main-catch{
    }
}

/*	トップページ
---------------------------------*/
.por{
    position: relative;
}
.top-overflow{
    overflow: hidden;
}
.bg-beige{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_beige01.jpg);
}
.bg-white{
    background-color: #fff;
}
.top-ttl{
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.top-ttl.left{
    text-align: left;
}
.top-ttl.white .ttl-cmn01,
.top-ttl.white .ttl-cmn02{
    color: #fff;
}
.top-ttl .ttl-cmn01,
.top-ttl .ttl-cmn02{
    line-height: 1;
    position: relative;
    z-index: 1;
}
.top-ttl .ttl-cmn02{
    margin-bottom: 10px;
}
.top-ttl.mb0{
    margin-bottom: 0;
}
.top-news{
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
}
.top-news-inr.flex-btw{
    display: block;
}
.top-news-inr{
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
}
.top-news-left{
    margin-bottom: 30px;
}
.top-news-left .top-ttl{
    margin-bottom: 0;
}
.top-news-right{
    margin-bottom: 30px;
}
.top-news-right .webgene-item a{
    display: block;
    padding-bottom: 10px;
}
.top-news-right .webgene-item:last-of-type a{
    padding-bottom: 0;
}
.top-news-right .webgene-item .blogdate{
    font-weight: 700;
}
.top-news-right .webgene-item .cate-box{
    text-align: center;
    margin-left: 20px;
    margin-top: 3px;
}
.top-news-right .webgene-item .blogcate{
    background-color: #DA580A;
    color: #fff;
    width: 100px;
    font-size: 1.4rem;
    line-height: 24px;
}
.top-news-right .webgene-item .blogttl{
    width: 100%;
    letter-spacing: 0.05em;
}
.top-band{
    height: 250px;
}
.top-band:before{
    content: "";
    display: block;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_scroll01.jpg);
    width: 100%;
    height: 250px;
    position: relative;
    top: 0;
    left: 0;
    z-index: -5;
}
.top-catch{
    padding-top: 300px;
    position: relative;
}
.top-catch-left{
    max-width: 800px;
    width: calc(100% + 30px);
    padding-bottom: 50px;
    position: relative;
    left: -15px;
}
.top-catch-left-img01{
    width: 71.75%;
}
.top-catch-left-img02{
    width: 43.125%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.top-catch-right{
    width: 180px;
    position: absolute;
    top: -100px;
    right: 30px;
}
.top-catch-right .ttl-cmn01{
    display: inline;
    font-weight: 400;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.top-catch-right .ttl-cmn01 > span{
    display: inline-block;
    padding: 10px 0;
    margin-left: 10px;
}
.top-kodawari-list.flex-cnt{
    display: block;
}
.top-kodawari-list{
    margin-bottom: 40px;
}
.top-kodawari-item{
    max-width: 300px;
    width: 100%;
    margin: 0 auto 40px;
}
.top-kodawari-item:last-of-type{
    margin-bottom: 0;
}
.top-kodawari-item-img{
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.top-kodawari-item-img:before{
    content: "";
    background-image: linear-gradient(180deg, rgba(250, 204, 34, 1), rgba(248, 54, 0, 1));
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -2;
}
.top-kodawari-item-img:after{
    content: "";
    background-color: #fff;
    border-radius: 50%;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}
.top-kodawari-item-img img{
    border-radius: 50%;
}
.top-kodawari-item-txt{
    text-align: center;
    padding-top: 20px;
    position: relative;
}
.top-kodawari-item-txt .ttl-cmn06{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.top-kodawari-item-txt .ttl-cmn07{
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.bg-top-reason{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_reason01.jpg);
}
.top-reason-list.flex-btw{
    display: block;
}
.top-reason-list{
    margin-bottom: 30px;
}
.top-reason-item{
    max-width: 580px;
    width: 100%;
    border: solid 1px #fff;
    padding: 30px 10px;
    margin: 0 auto 30px;
}
.top-reason-item:last-of-type{
    margin-bottom: 0;
}
.top-reason-item-inr{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
.top-reason-item-left{
    width: 99px;
    height: 99px;
    position: relative;
    z-index: 1;
}
.top-reason-item-left:before{
    content: "";
    background-color: #E80000;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
}
.top-reason-item-left:after{
    content: "";
    border: solid 1px #707070;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: calc(50% + 10px);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -2;
}
.top-reason-item-left-inr{
    text-align: center;
}
.top-reason-item-left-p01{
    letter-spacing: 0.05em;
    color: #fff;
}
.top-reason-item-left-inr .ttl-cmn06{
    font-size: 3rem;
    color: #fff;
}
.top-reason-item-right{
    flex: 1;
    padding-left: 20px;
}
.top-reason-item-right .ttl-cmn07{
    font-size: 1.8rem;
    color: #fff;
}
.top-kodawari-arrow{
    width: 180px;
    margin: 0 auto 30px;
}
.top-reason-p01.ttl-cmn07{
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}
.top-reason-p01.ttl-cmn07 span{
    border-bottom: solid 1px #E7FFFF;
}
.top-reason-p01.ttl-cmn07 strong{
    font-weight: 400;
}
.top-menu-slider{
    margin-bottom: 50px;
}
.top-menu-slider-item{
    margin: 0 10px;
    text-align: center;
}
.top-menu-slider-item-img{
    margin-bottom: 20px;
}
.top-menu-slider-item .ttl-cmn02{
    font-weight: 500;
    color: #333;
}
.top-yakiniku.flex-btw{
    display: block;
}
.top-yakiniku-img{
    max-width: 600px;
    width: calc(100% + 30px);
    margin: 0 auto 30px;
    position: relative;
    left: -15px;
}
.top-yakiniku-img.ojf:before{
    padding-top: 75%;
}
.top-yakiniku-txt.flex-nml{
    display: block;
}
.top-yakiniku-txt{
    max-width: 600px;
    width: 100%;
    padding-top: 30px;
    margin: 0 auto;
}
.top-yakiniku-txt-left{
    text-align: center;
    margin-bottom: 30px;
}
.top-yakiniku-txt-left-p01{
    text-align: center;
    position: relative;
}
.top-yakiniku-txt-left-p01:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_square01.png);
    width: 85px;
    height: 70.55px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}
.top-yakiniku-txt-left-p01 .ttl-cmn04{
    display: inline-block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.top-yakiniku-txt-right .ttl-cmn07{
    color: #E80000;
    margin-bottom: 20px;
}
.top-yakiniku-txt-right-p{
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}
.top-menu-list.flex-nml{
    display: block;
}
.top-menu-item{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_yakiniku01.jpg);
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}
.top-menu-item:nth-of-type(2){
    background-image: url(/system_panel/uploads/images/bg_top_yakiniku02.jpg);
}
.top-menu-item:nth-of-type(3){
    background-image: url(/system_panel/uploads/images/bg_top_yakiniku03.jpg);
}
.top-menu-item a{
    display: block;
    padding: 170px 15px 20px;
}
.top-menu-item-txt{
    position: relative;
}
.top-menu-item-txt:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_arrow01.png);
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.top-menu-item-txt .ttl-cmn04{
    color: #fff;
}
.top-menu-item-txt .ttl-cmn05{
    color: #fff;
}
.top-noodles .top-yakiniku-txt-right .ttl-cmn07 br{
    display: none;
}
.top-shop-list.flex-btw{
    display: block;
}
.top-shop-item{
    max-width: 380px;
    width: 100%;
    margin: 0 auto 30px;
    box-shadow: 0px 0px 15px rgba(119, 119, 119, 0.25);
}
.top-shop-item:last-of-type{
    margin-bottom: 0;
}
.shop-item-img{
    text-align: center;
}
.top-shop-item-img.ojf:before{
    padding-top: 52.6%;
}
.top-shop-item-txt{
    background-color: #fff;
    padding: 20px;
    position: relative;
}
.top-shop-item-txt:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_arrow03.png);
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 20px;
}
@media screen and (min-width:600px){
    .top-yakiniku-img{
        width: 100%;
        left: 0;
    }
}
@media screen and (min-width:768px){
    .top-ttl{
        margin-bottom: 40px;
    }
    .top-news-left .top-ttl .ttl-cmn01{
        font-size: 3rem;
    }
    .top-news-right .webgene-item a{
        padding-bottom: 20px;
    }
    .top-news-right .webgene-item .blogttl{
        flex: 1;
        width: auto;
        padding: 0 15px 0 30px;
    }
    .top-band{
        height: 600px;
    }
    .top-band:before{
        height: 100vh;
        position: fixed;
    }
    .top-catch{
        padding-top: 350px;
    }
    .top-catch-right .ttl-cmn01 > span{
        padding: 15px 0;
        margin-left: 20px;
    }
    .top-catch-right{
        width: 270px;
        top: -170px;
    }
    .top-catch-left{
        width: 100%;
        padding-bottom: 70px;
        margin: 0 auto;
        left: 0;
    }
    .top-kodawari-list{
        margin-bottom: 50px;
    }
    .top-kodawari-item{
        max-width: 350px;
    }
    .top-kodawari-item-txt{
        padding-top: 30px;
    }
    .top-reason-list{
        margin-bottom: 50px;
    }
    .top-reason-item{
        padding: 40px 15px;
    }
    .top-reason-item-left{
        width: 141px;
        height: 141px;
    }
    .top-reason-item-left:before{
        width: 100px;
        height: 100px;
    }
    .top-reason-item-left:after{
        width: 100px;
        height: 100px;
    }
    .top-reason-item-left-inr .ttl-cmn06{
        font-size: 4.6rem;
    }
    .top-reason-item-right{
        padding-left: 30px;
    }
    .top-reason-item-right .ttl-cmn07{
        font-size: 2.4rem;
    }
    .top-reason-item-right .ttl-cmn07 span br{
        display: none;
    }
    .top-kodawari-arrow{
        width: auto;
        text-align: center;
        margin: 0 0 30px;
    }
    .top-reason-p01.ttl-cmn07{
        margin-bottom: 40px;
    }
    .top-reason-p01.ttl-cmn07 strong br{
        display: none;
    }
    .top-menu-slider{
        margin-bottom: 70px;
    }
    .top-menu-slider-item-img{
        margin-bottom: 30px;
    }
    .top-yakiniku-txt.flex-nml{
        display: flex;
    }
    .top-yakiniku-txt-left{
        margin-bottom: 0;
    }
    .top-yakiniku-txt-left-p01:before{
        width: 100px;
        height: 83px;
    }
    .top-yakiniku-txt-right{
        flex: 1;
        padding-left: 30px;
    }
    .top-yakiniku-txt-right .ttl-cmn07{
        margin-bottom: 30px;
    }
    .top-yakiniku-txt-right-p{
        margin-bottom: 40px;
    }
    .top-yakiniku-txt-right .btn-cmn01{
        margin-left: 0;
    }
    .top-menu-item{
        max-width: 400px;
    }
    .top-menu-item a{
        padding: 270px 30px 30px;
    }
    .top-menu-item-txt:before{
        width: 25px;
    }
    .top-shop-item-txt:before{
        width: 25px;
        right: 30px;
    }
}
@media screen and (min-width:1024px){
    .top-news{
    }
    .top-news-inr.flex-btw{
        display: flex;
    }
    .top-news-left{
        width: 290px;
        display: block;
        padding-right: 70px;
        margin-bottom: 0;
    }
    .top-news-left .top-ttl{
        text-align: left;
        margin-bottom: 20px;
    }
    .top-news-right{
        border-left: solid 1px #333;
        flex: 1;
        padding: 30px 0 30px 60px;
        margin-bottom: 0;
    }
    .top-catch{
        padding-top: 0;
    }
    .top-catch-left{
        width: 66.7%;
        margin: 0;
    }
    .top-kodawari-list.flex-cnt{
        display: flex;
    }
    .top-kodawari-item{
        width: calc((100% - 40px) / 3);
        margin: 0 20px 0 0;
    }
    .top-kodawari-item:last-of-type{
        margin: 0;
    }
    .top-reason-list.flex-btw{
        display: flex;
    }
    .top-reason-item{
        width: calc((100% - 40px) / 2);
        margin: 0;
    }
    .top-reason-item-right .ttl-cmn07 span br{
        display: block;
    }
    .top-yakiniku.flex-btw{
        display: flex;
    }
    .top-yakiniku-img{
        width: 50%;
        margin: 0;
    }
    .top-yakiniku-txt{
        width: 44.17%;
        padding-top: 70px;
        margin: 0;
    }
    .top-menu-list.flex-nml{
        display: flex;
    }
    .top-menu-item{
        width: calc(100% / 3);
    }
    .top-menu-item a{
        padding: 22vw 20px 30px;
    }
    .top-noodles .top-yakiniku-txt-right .ttl-cmn07 br{
        display: block;
    }
    .top-shop-list.flex-btw{
        display: flex;
    }
    .top-shop-item{
        width: calc((100% - 60px) / 3);
        margin: 0;
    }
}
@media screen and (min-width:1080px){
    .top-kodawari-item{
        width: calc((100% - 70px) / 3);
        margin: 0 35px 0 0;
    }
    .top-reason-item-right .ttl-cmn07 span br{
        display: none;
    }
}
@media screen and (min-width:1230px){
    .top-menu-slider-item{
        margin: 0 20px;
    }
    .top-menu-item a{
        padding: 270px 30px 30px;
    }
    .top-noodles .top-yakiniku-txt-right .ttl-cmn07 br{
        display: none;
    }
}

/*	下層ヘッダー
---------------------------------*/
.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: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 0.05em;
    color: #fff;
}
.subttl02{
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: #fff;
}
@media screen and (min-width:768px){
    .bg-subhd{
        height: 400px;
    }
    .subhd-ttl{
    }
    .subttl{
        font-size: 4.6rem;
        top: 15px;
    }
    .subttl02{
        font-size: 2rem;
    }
}
@media screen and (min-width:1024px){
    .bg-subhd{
        height: 500px;
    }
    .subhd-ttl{
        top: 60%;
    }
}
@media screen and (min-width:1080px){
}

/*	コンセプト
---------------------------------*/
.concept-catch.top-catch{
    padding-top: 0;
}
.concept-catch .top-catch-right{
    margin-left: auto;
    margin-bottom: 30px;
    position: relative;
    top: 0;
    right: auto;
}
.concept-catch .top-catch-left{
    padding-bottom: 24vw;
}
.concept-catch .top-catch-left-img01{
    width: 88.2%;
}
.concept-catch .top-catch-left-img02{
    width: 48.2%;
}
.bg-concept{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_beige01.jpg);
    width: 100%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}
.kodawari-catch.bg-subhd{
    background-image: url(/system_panel/uploads/images/bg_kodawari01.jpg);
}
.kodawari-catch .top-ttl{
    margin-bottom: 0;
}
.kodawari-item{
    padding: 50px 0;
}
.kodawari-item-inr.flex-btw{
    display: block;
}
.kodawari-item-txt{
    margin-bottom: 30px;
}
.kodawari-item-txt .top-reason-item-left{
    margin-bottom: 20px;
}
.kodawari-item-txt .ttl-cmn07{
    margin-bottom: 20px;
}
.kodawari-item-txt-p{
    letter-spacing: 0.05em;
}
.kodawari-item-img{
    max-width: 600px;
    width: 100%;
    padding: 0 10px 10px 0;
    margin: 0 auto;
}
.kodawari-item-img-inr{
    position: relative;
    z-index: 1;
}
.kodawari-item-img-inr:before{
    content: "";
    width: 100%;
    height: 100%;
    border: solid 1px;
    border-image: linear-gradient(to bottom, #FACC22, #F83600) 1;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
}
.top-reason-item-left.color02:after{
    border: solid 1px;
    border-image: linear-gradient(135deg, #FACC22, #F83600) 1;
}
.kodawari-item:nth-of-type(2n){
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_beige01.jpg);
}
.kodawari-item:nth-of-type(2n) .kodawari-item-inr.flex-btw{
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.kodawari-item:nth-of-type(2n) .kodawari-item-img{
    padding: 0 0 10px 10px;
}
.kodawari-item:nth-of-type(2n) .kodawari-item-img-inr:before{
    left: -10px;
}
@media screen and (min-width:768px){
    .concept-catch .top-catch-left{
        max-width: 850px;
        padding-bottom: 220px;
    }
    .kodawari-item{
        padding: 70px 0;
    }
    .kodawari-item-txt .top-reason-item-left{
        margin-bottom: 30px;
    }
    .kodawari-item-txt .ttl-cmn07{
        margin-bottom: 40px;
    }
}
@media screen and (min-width:1024px){
    .concept-catch .top-catch-right{
        margin: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    .concept-catch .top-catch-left{
        width: 70.83%;
        padding-top: 70px;
    }
    .kodawari-item-inr.flex-btw{
        display: flex;
    }
    .kodawari-item-txt{
        width: 42%;
        margin-bottom: 0;
    }
    .kodawari-item-img{
        width: 50%;
        margin: 0;
    }
}
@media screen and (min-width:1080px){
}

/*	安くて美味しい理由
---------------------------------*/
.reason-catch{
    padding-top: 25vw;
    position: relative;
}
.bg-reason-catch{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_reason01.jpg);
    width: 100%;
    height: 48%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.reason-box-otr{
    border: solid 1px;
    border-image: linear-gradient(0deg, #FACC22, #F83600) 1;
    padding: 10px;
}
.reason-box{
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .16);
    text-align: center;
    padding: 30px 15px;
}
.reason-box .ttl-cmn01{
    margin-bottom: 20px;
}
.reason-box .ttl-cmn03{
    font-size: 1.4rem;
}
.reason-item.kodawari-item{
    background-image: none;
}
.reason-item.kodawari-item:nth-of-type(2n + 1){
    background-image: url(/system_panel/uploads/images/bg_top_beige01.jpg);
}
.top-reason-item-left.color03:before{
    border: solid 1px;
    border-image: linear-gradient(135deg, #FACC22, #F83600) 1;
    background-color: #fff;
}
.top-reason-item-left.color03:after{
    border: none;
    border-image: none;
    background-color: #E80000;
}
.top-reason-item-left.color03 .top-reason-item-left-p01,
.top-reason-item-left.color03 .top-reason-item-left-inr .ttl-cmn06{
    color: #E80000;
}
@media screen and (min-width:768px){
    .reason-catch{
        padding-top: 30vw;
    }
    .bg-reason-catch{
        height: 50%;
    }
    .reason-box{
        padding: 50px 15px;
    }
    .reason-box .ttl-cmn01{
        margin-bottom: 40px;
    }
    .reason-box .ttl-cmn01 span br{
        display: none;
    }
    .reason-box .ttl-cmn03{
        font-size: 1.8rem;
    }
}
@media screen and (min-width:1024px){
    .reason-catch{
        padding-top: 20vw;
    }
    .reason-box .ttl-cmn01 br{
        display: none;
    }
}
@media screen and (min-width:1080px){
    .reason-catch{
        padding-top: 290px;
    }
    .bg-reason-catch{
        max-height: 550px;
        height: 28.6vw;
    }
}

/*	メニュー
---------------------------------*/
.menu-btn-list.flex-cnt{
    display: block;
}
.menu-btn-list{
    margin-bottom: 20px;
}
.menu-btn-list:last-of-type{
    margin-bottom: 0;
}
.menu-btn.btn-cmn01{
    background-color: #E80000;
    margin: 0 auto 20px;
}
.menu-btn.btn-cmn01:last-of-type{
    margin-bottom: 0;
}
.top-ttl02{
    text-align: center;
    padding-top: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.top-ttl02 .ttl-cmn01:before{
    content: "";
    border: solid 1px;
    border-image: linear-gradient(135deg, #FACC22, #F83600) 1;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
}
.top-ttl02 .ttl-cmn01{
    font-weight: 700;
}
.top-ttl02 .ttl-cmn01,
.top-ttl02 .ttl-cmn05{
    position: relative;
    z-index: 1;
}
.rec-ttl{
    text-align: center;
    margin-bottom: 30px;
}
.rec-list.flex-btw{
    display: block;
}
.rec-item{
    max-width: 380px;
    width: 100%;
    margin: 0 auto 30px;
}
.rec-item:last-of-type{
    margin-bottom: 0;
}
.rec-item-img{
    margin-bottom: 15px;
}
.rec-item-img.ojf:before{
    padding-top: 76.3%;
}
.rec-item-p{
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
}
.tax-p{
    letter-spacing: 0.05em;
    text-align: right;
    margin-bottom: 20px;
}
.tax-p01{
    max-width: 560px;
    width: 100%;
    margin: 0 auto 10px;
}
.menu-item{
    max-width: 560px;
    width: 100%;
    margin: 0 auto 40px;
}
.menu-item:last-of-type{
    margin-bottom: 0;
}
.menu-item-ttl-otr{
    position: relative;
}
.menu-item-ttl.ttl-cmn04{
    margin-bottom: 20px;
    color: #E80000;
}
.menu-table-list.flex-btw{
    display: block;
}
.menu-table-list{
    position: relative;
}
.menu-table{
    max-width: 560px;
    width: 100%;
    margin: 0 auto 20px;
}
.menu-table:last-of-type{
    margin-bottom: 0;
}
.menu-table-tr{
    border-top: solid 1px #777;
    padding: 10px 0;
}
.menu-table-tr:last-of-type{
    border-bottom: solid 1px #777;
}
.menu-table-td{
    text-align: right;
    padding-left: 10px;
    margin-left: auto;
}
@media screen and (min-width:768px){
    .menu-btn.btn-cmn01{
        max-width: 380px;
    }
    .top-ttl02{
        padding-top: 40px;
        margin-bottom: 40px;
    }
    .top-ttl02 .ttl-cmn01{
        margin-bottom: 10px;
    }
    .top-ttl02 .ttl-cmn01:before{
        width: 100px;
        height: 100px;
    }
    .rec-ttl{
        margin-bottom: 50px;
    }
    .rec-item-p{
        font-size: 1.8rem;
    }
    .menu-item{
        margin-bottom: 80px;
    }
    .menu-item-ttl{
        margin-bottom: 30px;
    }
    .menu-table-tr{
        padding: 20px;
    }
}
@media screen and (min-width:1024px){
    .menu-btn-list.flex-cnt{
        display: flex;
    }
    .menu-btn-list{
        margin-bottom: 40px;
    }
    .menu-btn.btn-cmn01{
        width: calc((100% - 60px) / 3);
        margin: 0 30px 0 0;
    }
    .menu-btn.btn-cmn01:last-of-type{
        margin: 0;
    }
    .rec-list.flex-btw{
        display: flex;
    }
    .rec-item{
        width: calc((100% - 60px) / 3);
        margin: 0;
    }
    .menu-item{
        max-width: none;
    }
    .menu-table-list.flex-btw{
        display: flex;
    }
    .menu-table{
        width: calc((100% - 80px) / 2);
        margin: 0;
    }
    .tax-p01{
        margin: 0;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}
@media screen and (min-width:1080px){
}

/*	麺メニュー
---------------------------------*/
.noodles-box{
    border: solid 1px #E80000;
    padding: 20px 10px;
}
.noodles-box .ttl-cmn02{
    max-width: 1100px;
    width: 100%;
    font-weight: 400;
    color: #E80000;
    margin: 0 auto;
}
.top-reason-item-left.color04:before{
    background-color: #DA580A;
}
.top-reason-item-left.color04:after{
    border: solid 1px;
    border-image: linear-gradient(135deg, #FACC22, #F83600) 1;
}
@media screen and (min-width:768px){
    .noodles-box{
        text-align: center;
    }
}
@media screen and (min-width:1024px){
}
@media screen and (min-width:1230px){
    .noodles-box .ttl-cmn02 br{
        display: none;
    }
}

/*	採用情報
---------------------------------*/
.recruit-ttl.ttl-cmn01{
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.recruit-ttl.ttl-cmn01 strong{
    font-weight: 600;
}
.merit-list .top-kodawari-item{
    max-width: 290px;
}
.merit-list .top-kodawari-item-txt{
    margin-bottom: 30px;
}
.merit-item-txt-p{
    letter-spacing: 0.05em;
    text-align: center;
}
.company-table-tr.flex-nml{
    display: block;
}
.company-table-tr{
    border-top: solid 1px #777;
    padding: 10px 0;
    position: relative;
}
.company-table-tr:last-of-type{
    border-bottom: solid 1px #777;
}
.company-table-th{
    font-weight: 500;
    letter-spacing: 0.05em;
}
.company-table-td{
    letter-spacing: 0.05em;
}
.application-p.ttl-cmn07{
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 30px;
}
.application-box.flex-btw{
    display: block;
}
.application-box{
    border: solid 1px #777;
    padding: 30px 5px;
}
.application-box-left{
    margin-bottom: 30px;
}
.application-btn{
    background-color: #DA580A;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}
.application-btn a{
    display: block;
    text-align: center;
}
.application-btn p{
    display: inline;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 60px;
    padding-left: 30px;
    position: relative;
}
.application-btn p:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_mail.png);
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.application-box-right{
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.application-box-right-phone{
    text-align: center;
    margin-bottom: 20px;
}
.application-box-right-phone .hd-phone01{
    display: inline;
    font-size: 3rem;
    color: #000;
}
.application-box-right-phone .hd-phone01:before{
    background-image: url(/system_panel/uploads/images/icon_phone02.png);
}
.application-box-right .hd-time-p01{
    border: solid 1px #333;
    color: #333;
}
.application-box-right .hd-time-p02{
    color: #333;
}
@media screen and (min-width:768px){
    .recruit-ttl.ttl-cmn01{
        font-size: 3.6rem;
        margin-bottom: 40px;
    }
    .recruit-ttl.ttl-cmn01 strong br{
        display: none;
    }
    .company-table-tr.flex-nml{
        display: flex;
    }
    .company-table-tr{
        padding: 20px 0;
    }
    .company-table-th{
        width: 200px;
        padding-left: 20px;
    }
    .company-table-td{
        flex: 1;
        padding: 0 10px 0 40px;
    }
    .company-table-th{
        padding-left: 40px;
    }
    .company-table-td{
        padding: 0 10px 0 70px;
    }
    .application-p.ttl-cmn07{
        font-size: 2.4rem;
        margin-bottom: 50px;
    }
    .application-box{
        padding: 30px 15px;
    }
    .application-btn{
        max-width: 400px;
    }
    .application-btn p{
        line-height: 80px;
        padding-left: 40px;
    }
    .application-btn p:before{
        width: 25px;
    }
    .application-box-right-phone .hd-phone01{
        font-size: 3.6rem;
        padding-left: 40px;
    }
    .application-box-right-phone .hd-phone01:before{
        width: 25px;
    }
}
@media screen and (min-width:1024px){
    .recruit-ttl.ttl-cmn01 br{
        display: none;
    }
    .merit-list{
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
    .merit-list .top-kodawari-item{
        width: calc((100% - 20px) / 2);
        margin: 0 20px 40px 0;
    }
    .merit-list .top-kodawari-item:nth-of-type(2n){
        margin: 0 0 40px;
    }
    .merit-list .top-kodawari-item:last-of-type{
        margin: 0 0 40px;
    }
    .application-box.flex-btw{
        display: flex;
    }
    .application-box-left{
        margin-bottom: 0;
    }
    .application-box-left,
    .application-box-right{
        width: 50%;
    }
    .application-box-right{
        max-width: none;
        padding-left: 30px;
        margin: 0;
    }
    .application-box-right-phone{
        text-align: left;
    }
}
@media screen and (min-width:1230px){
    .merit-list{
        max-width: none;
    }
    .merit-list .top-kodawari-item{
        max-width: 290px;
        width: calc((100% - 39px) / 4);
        margin: 0 13px 0 0;
    }
    .merit-list .top-kodawari-item:nth-of-type(2n){
        margin: 0 13px 0 0;
    }
    .merit-list .top-kodawari-item:last-of-type{
        margin: 0;
    }
}

/*	店舗情報
---------------------------------*/
.shop-item.flex-btw{
    display: block;
}
.shop-item .company-table{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.shop-item-img{
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}
.order-p{
    margin-bottom: 30px;
}
.order-box{
    background-color: #fff;
    padding: 30px 15px;
}
.order-box:before:last-of-type{
    content: none;
}
.order-box .ttl-cmn04{
    text-align: center;
    color: #E80000;
    margin-bottom: 20px;
}
.order-box-item{
    border: solid 1px #777;
    padding: 30px 15px;
    margin-bottom: 40px;
    position: relative;
}
.order-box-item:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_arrow04.png);
    width: 36px;
    height: 18px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.order-box-item:last-of-type:before{
    content: none;
}
.order-box-item-inr.flex-nml{
    display: block;
}
.order-box-item-inr{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
.order-box-item-img{
    text-align: center;
    margin-bottom: 20px;
}
.order-box-item-img.ojf:before{
    padding-top: 64%;
}
.order-box-item-txt-ttl{
    margin-bottom: 20px;
}
.order-box-item-txt-ttl .ttl-cmn05{
    display: inline;
    border-bottom: solid 1px #E80000;
}
.order-box-item-txt-p{
    padding-left: 0.05em;
}
.access-map{
    width: 100%;
    height: 250px;
}
.access-map iframe{
    width: 100%;
    height: 250px;
}
@media screen and (min-width:768px){
    .shop-item .company-table-th{
        width: 150px;
    }
    .shop-item .company-table-td{
        padding-left: 20px;
    }
    .order-p{
        text-align: center;
        margin-bottom: 50px;
    }
    .order-box .ttl-cmn04{
        margin-bottom: 30px;
    }
    .order-box{
        padding: 50px 15px;
    }
    .order-box-item{
        margin-bottom: 60px;
    }
    .order-box-item:before{
        width: 40px;
        height: 20px;
        bottom: -40px;
    }
    .order-box-item-inr.flex-nml{
        display: flex;
    }
    .order-box-item-img{
        width: 250px;
        margin-bottom: 0;
    }
    .order-box-item-txt{
        flex: 1;
        padding-left: 30px;
    }
    .access-map{
        height: 400px;
    }
    .access-map iframe{
        height: 400px;
    }
}
@media screen and (min-width:1024px){
    .shop-item.flex-btw{
        display: flex;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .shop-item .company-table{
        width: 50%;
        margin: 0;
    }
    .shop-item .company-table-th{
        padding-left: 30px;
    }
    .shop-item-img{
        width: 42%;
        margin-bottom: 0;
    }
    .shop-item .company-table-td{
        padding-left: 0;
    }
    .order-box-item-txt{
        padding-left: 50px;
    }
    .access-map{
        height: 500px;
    }
    .access-map iframe{
        height: 500px;
    }
}
@media screen and (min-width:1080px){
    .shop-item .company-table-td{
        padding-left: 20px;
    }
}

/*	お問い合わせ
---------------------------------*/
.contact-ttl.ttl-cmn04{
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.contact-box.application-box{
    border: solid 1px rgba(119, 119, 119, .5);
}
.contact-box .application-box-right{
    max-width: 380px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.contact-box .application-box-right-phone{
    text-align: center;
}
.contact-txt{
    text-align: center;
    margin-bottom: 30px;
}
.contact-txt .ttl-cmn02{
    font-weight: 500;
    font-size: 1.4rem;
    color: #E80000;
}
@media screen and (min-width:768px){
    .contact-ttl.ttl-cmn04{
        margin-bottom: 50px;
    }
    .contact-txt{
        margin-bottom: 40px;
    }
    .contact-txt .ttl-cmn02{
        font-size: 1.8rem;
    }
}
@media screen and (min-width:1024px){
}
@media screen and (min-width:1080px){
}