/* ---------------------------
全体共通
------------------------------ */
body {
    font-family: MatissePro-L, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif !important;
}

html {
    font-family: MatissePro-L;
}

img {
    vertical-align: bottom;
}

p {
    font-size: 16px;
    line-height: 36px;
}

.section-title h2 {
    font-weight: normal;
    font-size: 42px;
    line-height: 72px;
}

.fade-layer,
body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

body.fade-layer-off:before {
    content: none;
}

/*　メニュー追随時のスペース確保 */
.menu-space {
    background-color: #fff;
}

/* 基本トップページのみのボタン */
.aoki-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    background-color: #000622;
    color: #fff;
    text-decoration: none;
    line-height: 80px;
    cursor: pointer;
}

.aoki-btn a span:first-child {
    font-size: 19px;
    display: inline-block;
}

.aoki-btn a span:last-child {
    display: inline-block;
    height: 80px;
    font-size: 14px;
    transform: rotate(90deg);
}

.move-top-btn {
    display: inline-block;
    position: fixed;
    z-index: 9;
    width: 65px;
    height: 65px;
    right: 30px;
    bottom: 50px;
    background-color: rgba(255, 255, 255, 0.5);
}

.move-top-btn a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.move-top-btn a::after {
    content: '';
    width: 21px;
    height: 21px;
    border-top: solid 1px #000622;
    /* 好みで色を変えてください */
    border-right: solid 1px #000622;
    /* 好みで色を変えてください */
    position: absolute;
    top: calc(50% + 10px);
    left: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
    margin: auto;
}

/* スマホ */
.sp {
    display: none;
}
.nonsp {
    display: inline;
}
.spmintop {
	font-size: 28px;
}
.spmin {
	display: none;
}
.spmin510 {
	display: none;
}

/* PC */
.pc {
    display: block;
}

@media (max-width: 1024px) {
    .menu-space {
        display: none;
    }
}

@media (max-width: 440px) {
    .section-title h2 {
        font-size: 28px;
    }

    .sp {
        display: inline;
    }

    .nonsp {
        display: none;
    }

	.spmintop {
		font-size: 24px;
	}

    .pc {
        display: none;
    }

    .aoki-btn a{
        width: 310px;
    }

}

@media (max-width: 510px) {
    .spmin510 {
        display: inline;
    }
}

@media (max-width: 380px) {
    .sp-contact {
     font-size: 18px !important;
    }
}

@media (max-width: 350px) {
    .spmin {
        display: inline;
    }
}

/* ---------------------------
グローバルメニュー
------------------------------ */
.global-menu {
    display: flex;
    align-items: center;
    height: 150px;	/*150px;*/
    background-color: #000622;
    transition-timing-function: ease-out;
    -moz-transition: 0.8s ease;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    -ms-transition: 0.8s ease;
}

.global-menu.follow {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;	/*100px;*/
    z-index: 200;
}

.global-menu-inner{
    width: 100%;
}

.global-menu-inner div:first-child{
    display: flex;
    width: 95%;
    max-width: 1024px;
    height: 70px;
    margin: 0 auto;
    padding-top: 10px;	/*20px;*/
    padding-right: 50px;
    justify-content: space-between;
    align-content: center;
}

.global-menu-inner > div:last-child{
    display: none;
}

.global-menu-inner > div:first-child a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
}

.global-menu-inner > div:first-child a:first-child {
    width: 50px;
    margin-left: -40px;
    /* margin-right: 40px; */
}

.global-menu-inner > div:first-child a:first-child img {
    width: 100%;}

.global-menu-inner > div:first-child a:after {
    display: block;
    content: '';
    border-bottom: solid 3px #fff;
    transform: scaleX(0);
    transition: transform .5s ease-in-out;
}

.global-menu-inner > div:first-child a.active:after {
    display: block;
    content: '';
    border-bottom: solid 3px #fff;
    transform: scaleX(1);
    transition: transform .5s ease-in-out;
}

.global-menu-inner > div:first-child a:hover::after {
    transform: scaleX(1);
}

.global-menu-trigger,
.global-menu-trigger span {
    display: none;
    transition: all .4s;
    box-sizing: border-box;
}

.global-menu-trigger {
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    width: 65px;
    height: 65px;
}

.global-menu-trigger span {
    position: absolute;
    left: 16px;
    width: 50%;
    height: 1px;
    background-color: #000622;
}

.global-menu-trigger span:nth-of-type(1) {
    top: 15px;
}

.global-menu-trigger span:nth-of-type(2) {
    top: 25px;
}

.global-menu-trigger span:nth-of-type(3) {
    top: 35px;
}

.global-menu-trigger span:nth-of-type(4) {
    top: 40px;
    height: auto;
    background-color: transparent;
    color: #000622;
    text-align: center;
    font-size: 14px;
    line-height: 15px;
}

.global-menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(15px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
}

.global-menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.global-menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-15px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
}

@media (max-width: 1124px) {
    .global-menu-inner a:first-child img {
        margin-left: 0px;
    }
}

@media (max-width: 1024px) {
    .global-menu {
        position: fixed;
        z-index: 400;
        top: 0;
        width: 100%;
        height: 0;
        transition: 1s all ease-in-out 0s;
        justify-content: flex-end;
        align-items: flex-start;
        background-color: transparent;
    }

    .global-menu-inner {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
        padding-right: 0;
        transition: 1s all ease-in-out 0s;
        background-color: #18172d;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .global-menu-inner > div:first-child{
        width: 60%;
        height: auto;
        padding-right: 0;
        flex-wrap: wrap;
        flex-direction: column;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }

    .global-menu.active {
        height: 100%;
    }

    .global-menu.active .global-menu-inner {
        opacity: .85;
    }

    .global-menu-inner > div:first-child a {
        height: 100%;
        height: auto;
        display: block;
        font-size: 18px;
        line-height: 8.8vw;
        margin-top: 0;
        white-space: nowrap;
    }

    .global-menu-inner > div:first-child a:first-child {
        display: none;
    }

    .global-menu-inner > div:last-child{
        margin-top: 100px;
        display: flex;
        justify-content:center;
    }

    .global-menu-inner > div:last-child h1{
        width:17.067vw;
    }

    .global-menu-inner > div:last-child h1 a{
        text-align: center;
    }

    .global-menu-inner > div:last-child h1 a span{
        font-family:helvetica;
        display: block;
        font-size:12px;
        margin-top: 10px;
        text-align: center;
        color: #fff;
        text-decoration: none;
    }

    .global-menu-inner > div:last-child img{
        width: 100%;
    }

    .global-menu-trigger {
        z-index: 500;
        position: fixed;
        top: 30px;
        right: 30px;
    }

    .global-menu-trigger,
    .global-menu-trigger span {
        display: inline-block;
    }
}

@media (max-width: 440px) {
    .global-menu-inner a {
        margin-top: 53.667vw; 
    }
}


/* ---------------------------
フッター
------------------------------ */

.footer {
    position: relative;
    width: 100%;
    padding-top: 80px;
    background-color: #000622;
}

.footer img {
    width: 100%;
}

.footer-inner {
    max-width: 1024px;
    max-height: 320px;	/*456px;*/
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	border-top: 1px solid hsla(0,0%,100%,.2);
	border-bottom: 1px solid hsla(0,0%,100%,.2);
}

.footer-logo {
    width: 118px;
    margin-top: 40px;	/*25px;*/
	margin-left: 50px;
    /*margin-left: -59px;*/
}

.footer-logo h1 a{
    text-decoration: none;
}

.footer-logo h1 a span{
    font-family:helvetica;
    display: block;
    font-size: 16px;
    font-weight:100;
    margin-top: 18px;
    text-align: center;
    color: #fff;
}

/* 200901 dai追加 開始*/
.footer-sns{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    margin: 10px auto 0;
}

.footer-sns img{
    width: 25px;
}

.footer-banner{
    text-align:center;
    margin-top: -150px;
    padding-bottom: 150px;
}

.footer-banner img{
    width: auto;
}

.footer-message{
	margin-left:80px;
	margin-top:50px;
}

.footer-message h4 {
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    line-height: 48px;
}

.footer-menu {
    display: flex;
    align-content: space-evenly; /*space-between;*/
    justify-content: space-between;
    flex-wrap: wrap;
    width: 300px;	/*392px;*/
    max-height: 456px;
    margin-right: 10px;	/*-40px;*/
    list-style: none;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	margin-top:40px;
}

.footer-menu li {
    max-height: 456px;
    height: 100%;
    width: 32px;
}

.footer-menu li a {
    display: inline-block;
    width: 72px;
    padding: 8px 0;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.footer-lang-btn {
    position: absolute;
    bottom: 17px;
    right: 20px;
    width: 106px;
    display: flex;
    justify-content: space-between;
}

.footer-lang-btn a {
    display: inline-block;
    width: 50px;
    height: 21px;
    background-color: rgba(255, 255, 255, 0.3);
    text-align: center;
    vertical-align: bottom;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    line-height: 21px;
    font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

.footer-lang-btn a.active {
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
}

.fa-facebook, .fa-instagram, .fa-twitter, .fa-youtube {font-size:24px !important ; margin-right: 0px !important; margin-bottom:0px; COLOR:BLACK; display:inline;}
.fa-facebook, .fa-instagram, .fa-twitter, .fa-youtube {position:relative;}
.fa-facebook:hover, .fa-instagram:hover, .fa-twitter:hover, .fa-youtube:hover {color:#08b61c !important; font-size:24px }
.fa-facebook:before {
    font-size: 24px !important;
    colot: #fff;
}
a{
text-decoration: none;
}

@media (max-width: 1100px) {
    .footer-logo {
        margin-left: 50px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding-top: 80px;
    }

    .footer-menu {
        width: 100%;
    }

    .footer-inner {
        max-height: none;
        justify-content: space-around;
        flex-direction: column-reverse;
    }

    .footer-logo {
        width: 100%;
        padding: 60px 0 130px;
        margin: 0 auto;
    }

    .footer-logo h1 {
        width: 165px;	/*120px;*/
        margin: 0 auto;
    }

    .footer-message {
        display: none;
    }

    .footer-menu {
        width: 74%;
        margin: 0 auto;
        max-height: 235px;
    }

    .footer-menu li {
        max-height: 235px;
    }

    /* 200901 dai追加 開始*/

    .footer-banner{
        width: 85%;
        max-width: 500px;
        margin: 0 auto;
        text-align:center;
        margin-top: -40px;
        padding-bottom: 170px;
    }

    .footer-banner img{
        width: 100%;
    }

/* 200901 dai追加 終了*/
}

@media (max-width: 440px) {}

/* ---------------------------
-トップページ
メインスライド
------------------------------ */
.sm-slider {
    background-color: black;
}

.main-slide {
    width: 100%;
    height: 100vh;
}

.main-slide img {
    margin-top: -5px;
    width: 100%;
}


.main-slide-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1024px;
    height: 100%;
    margin: 0 auto;
}

.main-slide-logo {
    width: 77px;
    margin-left: -38px;
    align-self: center;
}

.main-slide-message {
    text-shadow: 0px 0px 5px #000;
}

.main-slide-message h4 {
    color: #fff;
    font-weight: normal;
    font-size: 24px;
    line-height: 40px;
    /* ロゴとの高さ合わせ */
    padding-top: 7.778vw;
    padding-right: 25px;
    letter-spacing: 1.5px;
}

.main-slide-lang-btn {
    position: absolute;
    bottom: 17px;
    right: 20px;
    width: 106px;
    display: flex;
    justify-content: space-between;
}

.main-slide-lang-btn a {
    display: inline-block;
    width: 50px;
    height: 21px;
    background-color: rgba(255, 255, 255, 0.3);
    text-align: center;
    vertical-align: bottom;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    line-height: 21px;
    font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

.main-slide-lang-btn a.active {
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
}

.sp-top-slide-message {
    display: none;
}

@media (max-width: 1100px) {

    .main-slide-inner {
        justify-content: space-around;
    }

    .main-slide-logo {
        margin-left: 0;
    }

    .main-slide-message {
        height: 100vh;
    }
}

@media (max-width: 1024px) {

    .main-slide {
        margin: 0;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-slide-inner {
        justify-content: center;
        /*width: 62px;*/
		opacity: 0.8;
    }

    .main-slide-logo {
        width: 62px;
        margin-left: 0;
    }

/*
    .main-slide-message {
        display: none !important;
    }
*/
	.main-slide-logo {
		width: 120px !important;
		margin-right:80px !important;
	}
/*
	.main-slide-message h4 {
		color: #fff !important;
		font-weight: normal;
		font-size: 18px;
		line-height: 24px;
		padding-top: 7.778vw;
		padding-right: 0px !important;
		letter-spacing: 1.5px;
		opacity: 1.0 !important;
		font-weight: bold;
	}
*/
    .sp-top-slide-message {
        display: block;
        position: relative;
        background-color: #fff;
    }

    .sp-top-slide-message h4 {
        display: block;
        width: 312px;
        margin: 0 auto;
        padding-top: 45px;
        padding-bottom: 45px;
        font-size: 22px;
        line-height: 37px;
        font-weight: normal;
    }
}

@media (max-width: 800px) {


/*
    .main-slide-message {
        display: none !important;
    }
*/
	.main-slide-logo {
		display:none;
	}
	.main-slide-message h4 {
		color: #fff !important;
		font-weight: normal;
		font-size: 18px;
		line-height: 24px;
		/* ロゴとの高さ合わせ */
		padding-top: 7.778vw;
		padding-right: 0px !important;
		letter-spacing: 1.5px;
		opacity: 1.0 !important;
		/*font-weight: bold;*/
	}

}
@media (max-width: 440px) {
    .sp-top-slide-message h4 {
        width: 85%;
    }
}



/* ---------------------------
お知らせ
------------------------------ */

.top-news {
    position: relative;
    background-color: #e5e6e8;
    max-width: 2048px;
}

.top-news .section-title {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 55px;
    text-align: center;
}

.top-news-banner {
    padding-top: 20px;
    text-align: center;
    ;
}

.top-news-list {
    width: 1024px;
    margin: 40px auto 0;
    font-size: 16px;
    line-height: 36px;
    padding-bottom: 80px;
    overflow: hidden;
    height: auto;
    /* アニメーション */
    transition: all 1s ease-out;
}

.top-news-list dl {
    margin: 0 10px;
    padding: 8px 15px;
    line-height: 28px;
    /* border-bottom: 1px solid #b7b8ba; */
}

.top-news-list dl:last-child {
    border-bottom: none;
    padding-bottom: 65px;
}

.top-news-list dl dt {
    width: 180px;
    float: left;
}

.top-news-list dl dd {
    margin-left: 310px;	/*180px;*/
}

.top-news-list dl dd a {
    color: #000;
}

.top-news-list dl dd::after {
    content: "";
    display: block;
    clear: both;
}


.top-news-list-more {
    height: 46px;
}

.top-news-list-more a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 290px;
    background-color: #000622;
    color: #fff;
    text-decoration: none;
    line-height: 46px;
    cursor: pointer;
}

.top-news-list-more a:hover {
    opacity: .4;
}

.aoki-btn a:hover {
    opacity: .4;
}

#file-field-window:hover{
    opacity: .6;
}

.top-news-list-more a span:first-child {
    display: inline-block;
    height: 46px;
    font-size: 14px;
    padding-right: 10px;
}

.top-news-list-more a span:last-child {
    font-size: 18px;
    display: inline-block;
}

.top-news-list-more {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 1.5s ease-out 1s;
}


@media (max-width: 1024px) {
    .top-news{
        padding-top: 45px;
    }
    .section-title {
        padding-top: 80px;
    }

    .section-title h2 {
        line-height: 42px;
    }

    .top-news-list {
        width: 85%;
        font-size: 16px;
        line-height: 46px;
        margin-top: 45px;
    }

    .top-news-list dl dt {
        float: none;
    }

    .top-news-list dl dd {
        margin-left: 0;
        line-height: 26px;
    }

    .top-news-list dl:last-child {
        padding-bottom: 120px;
    }

    .top-news-banner {
        width: 85%;
        margin: 0 auto;
    }

    .top-news-banner img {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .top-news-list {
        width: 100%;
    }

    .top-news-list{
        padding-bottom: 20px;
    }

    .top-news-list-more{
        position: relative;
    }

    .top-news-list-more a{
        width: 100%;
        pointer-events:unset;	/*none;*/
    }
	
    .top-news-list dl:last-child{
        padding-bottom: 20px;
    }
}

/*
.top-shun-list-more {
    height: 46px;
}

.top-shun-list-more a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 290px;
    background-color: #000622;
    color: #fff;
    text-decoration: none;
    line-height: 46px;
    cursor: pointer;
}

.top-shun-list-more a:hover {
    opacity: .8;
}

.top-shun-list-more a span:first-child {
    display: inline-block;
    height: 46px;
    font-size: 14px;
    padding-right: 10px;
}

.top-shun-list-more a span:last-child {
    font-size: 18px;
    display: inline-block;
}

.top-shun-list-more {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 1.5s ease-out 1s;
}

@media (max-width: 440px) {
    .top-shun-list-more{
        position: relative;
    }

    .top-shun-list-more a{
        width: 100%;
        pointer-events:unset;
    }
}
*/
/* ---------------------------

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

.top-history {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
}

.text-on-image {
    position: relative;
}

.top-history-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: flex-end;
}

.text-on-image img {
    position: absolute;
    width: 100%;
}

.top-history-right {
    position: relative;
    width: 515px;
    right: 0;
    color: #fff;
    z-index: 100;
}

.top-history-right h3 {
    font-weight: normal;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.top-history-right p {
    font-size: 16px;
    line-height: 36px;
    padding-top: 35px;
    text-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.top-history-right .right-text {
    text-align: right;
}

.top-history-left {
    position: absolute;
    bottom: 0;
    left: 0;
}

.top-history-sp {
    display: none;
}

.top-history-sp-img {
    display: none;
}

@media (max-width: 1440px) {
    .top-history {
        background-size: cover;
    }
}

@media (max-width: 1024px) {
    .top-history {
        background-image: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .top-history-pc {
        display: none;
    }

    .top-history-sp {
        display: inline-block;
    }

    .top-history-sp-img {
        display: inline-block;
        width: 100%;
        position: relative;
    }

    .top-history-sp-img img {
        width: 100%;
        position: relative;
    }

    .top-history-wrapper {
        display: block;
        padding: 0 0 100px;
        background-color: #fff;
    }

    .top-history-left {
        position: relative;
        margin-top: 50px;
    }

    .top-history-left.aoki-btn {
        width: 100%;
    }

    .top-history-left.aoki-btn a {
        margin: 0 auto;
    }

    .top-history-right {
        width: 700px;
        margin: 80px auto 0;
        color: #000;
        background-color: #fff;
    }

    .top-history-right p {
        text-shadow: none;
    }

    .top-history-right h3 {
        font-size: 42px;
        line-height: 48px;
        margin-top: 0;
        text-shadow: none;
    }
}

@media (max-width: 440px) {

    .top-history-right {
        padding: 50px 0;
        width: 85%;
        max-width: 420px;
        margin: 0 auto;
        background-color: transparent;
    }
}



/* ---------------------------
旬のコラム
------------------------------ */

.top-shun {
    background-color: #fff;
    height: 40.972vw
}

.top-shun-slide {
    height: 100%;
}

.top-shun-slide .swiper-button-disabled {
    opacity: 0.35 !important;
}

.top-shun-slide .swiper-wrapper .swiper-slide-active {
    overflow: hidden;
}

.top-shun-slide .swiper-wrapper .swiper-slide {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.top-shun-slide-img {
    width: 48%;
    max-height: 590px;
    position: relative;
}

.top-shun-slide-img img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.top-shun-slide .aoki-btn a span:last-child {
    font-size: 19px;
}

.top-shun-slide-text {
    position: absolute;
    width: 1024px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.top-shun-slide-text h3 {
    font-size: 24px;
    line-height: 41px;
    font-weight: normal;
    padding-bottom: 5px;
}

.top-shun-slide-text h4 {
    font-size: 38px;
    line-height: 41px;
    font-weight: normal;
    padding-bottom: 30px;
}

.top-shun-slide-text h4,
.top-shun-slide-text h3,
.top-shun-slide-text p {
    width: 32.639vw;
}

.top-shun-slide-img img{
    width: 100%;
}


.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/top-gallery-next.png);
    right: 50px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url(../images/top-gallery-prev.png);
    left: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 1 !important;
    width: 12px;
    height: 27px;
    background-size: 12px 27px;
}

/* デスクトップ用 */
@media (min-width: 1670px) {
    .top-shun-slide-img {
        width: 41%;
    }
}

@media (max-width: 1024px) {
    .top-shun{
        height: auto;
		margin-bottom: -40px;
    }
    .top-contact{
		margin-top: -50px;
	}
	
    .top-shun-slide .swiper-wrapper .swiper-slide {
        flex-direction: column-reverse;
    }

    .top-shun-slide-text {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
    }

    .top-shun-slide-text h3,
    .top-shun-slide-text h4{
        display: none;
    }

    .top-shun-slide-text p {
        font-size: 16px;
        line-height: 30px;
    }

    .top-shun-slide-text h4, .top-shun-slide-text h3, .top-shun-slide-text p{
           width: 40vw;
    }

    .top-shun-slide-img {
        position: relative;
        width: 47vw;
        padding-top: 30px;
        padding-left: 0;
    }

    .top-shun-slide-img div {
        position: absolute;
        z-index: 10;
        width: 100%;
        padding-top: 25px;
        padding-bottom: 15px;
        text-align: center;
        /* background-color: rgba(255, 255, 255, .7); */
        /* text-shadow:0px 0px 7px #ffffff; */
    }

    .top-shun-slide-img div h3{
        font-size: 23px;
        font-weight: normal;
    }

    .top-shun-slide-img div h4{
        font-size: 35px;
        font-weight: normal;
    }

    .top-shun-slide-img div h3.white{
        color: #fff;
    }

    .top-shun-slide-img div h4.white{
        color: #fff;
    }

    .top-shun-slide-img img{
        left: unset;
        top: unset;
        transform: unset;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 440px) {
	.day {
		display:none;
	}
    .top-shun-slide-img{
        width: 100%;
        padding: 0;
    }

    .swiper-button-next, .swiper-button-prev{
        top: 34.5%;
    }

    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        background-image: url(../images/top-gallery-next-w.png);
        right: 15px;
    }

    .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
        background-image: url(../images/top-gallery-prev-w.png);
        left: 15px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 8px;
        height: 19px;
        background-size: 8px 19px;
    }

    section.top-shun > div > .swiper-wrapper > .swiper-slide > div:first-child{
        width: 100%;
    }

    .top-shun-slide-text p{
        width: 85%;
        margin: 0 auto;
    }

}

/* ---------------------------
ご予約・お問い合わせ
------------------------------ */

.top-contact {
    background-color: #f0ede5;
    padding-top: 80px;
    padding-bottom: 80px;
}

.top-contact .section-title {
    text-align: center;
    padding-bottom: 10px;
}

.top-contact-content {
    text-align: center;
}

.top-contact-content h5 {
    font-weight: normal;
    font-size: 36px;
    line-height: 42px;
    margin-top: 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.top-contact-content h5 a{
    color: #000;
    text-decoration: none;
}

.top-contact-tel{
    font-size: 24px;
    display: block;
    font-size:24px;
}

.top-contact-content p a {
    color: #000;
}

.top-contact-content .aoki-btn a {
    margin: 50px auto;
}

.top-contact-note {
    width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.top-contact-note dl {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    justify-content: left;
    margin-bottom: 0px;
}

.top-contact-note dl:last-child {
    padding-bottom: 0;
}

.top-contact-note dl dd{
    line-height: 22px!important;
}

.top-contact-cancel p,
.top-contact-cancel h5 {
    text-align: center;
    font-weight: normal;
}

.top-contact-cancel h5 {
    font-size: 16px;
    padding-top: 35px;
    padding-bottom: 30px;
}

.bg-brown-text {
    font-size: 16px;
    line-height: 24px;
}


@media (max-width: 1024px) {
    .top-contact {
        padding-bottom: 50px;
    }

    .top-contact-cancel h5 {
        padding-top: 40px;
    }

    .top-contact-content p {
        width: 80%;
        margin: 0 auto;
        padding-top: 20px;
        font-size: 18px;
    }

    .top-contact-content h5 {
        flex-wrap: wrap;
        font-size: 40px;
    }

    .top-contact-content h5 span {
        width: 100%;
    }

    .top-contact-content h5 span:last-child {
        font-size: 14px;
    }

    .top-contact-note {
        width: 70%;
        margin: 0 auto;
        padding: 0 30px;
    }

    .top-contact-note dl {
        width: 100%;
        padding-left: 0;
    }

    .top-contact-cancel p,
    .top-contact-cancel h5 {
        width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 440px) {
    .top-contact-note {
        width: 280px;
        margin: 0 auto;
        padding: 0;
    }

    .top-contact-content p {
        width: 85%;
    }

    .top-contact-cancel h5 {
        padding-bottom: 20px;
    }

    .top-contact-cancel p {
        line-height: 32px;
    }
}


/* ---------------------------
店舗案内
------------------------------ */
.top-map {
    padding-top: 80px;
    background-color: #fff;
}

.top-map .section-title {
    width: 1024px;
    text-align: center;
    margin: 0 auto;
}

.top-map-text-content {
    width: 1024px;
    text-align: center;
    padding-top: 35px;
    padding-bottom: 65px;
    margin: 0 auto;
}

/* .top-map-text-content h5 {
    font-weight: normal;
    font-size: 18px;
    line-height: 42px;
    margin-top: 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.top-map-text-content h5 span:last-child {
    font-size: 14px;
} */

.top-map-tel p{
    font-size: 14px;
    line-height: 28px;
}

.top-map-text-content h3{
    font-size: 24px;
    line-height: 40px;
    margin-top: 0px;	/*26px;*/
    font-weight: normal;
}

.top-map-schedule{
    width: 370px;
    margin: 0px auto;
    padding-top: 24px;
    padding-bottom: 25px;
}

/*営業時間をtableに変更 2020-02-20 kaki*/

.top-map-schedule table{
	border:none;
	}
	
.top-map-schedule table td{
	text-align:left;
	padding:5px 10px;
	white-space: nowrap;
	}

.top-map-schedule table td.daynight{
	}
	
.top-map-schedule table td.day,
.top-map-schedule table td.time span{
	font-size:80%;
	}

.top-map-schedule table tr:first-child td{
	/*padding-bottom:1.2em;*/
	}

.top-map-schedule > div{
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/*
.top-map-schedule > div:first-child{
    margin-bottom: 5px;
}

.top-map-schedule > div > p:first-child{
    width: 30px;
}

.top-map-schedule > div > p:last-child{
    width:255px;
}

.top-map-schedule > div > p{
    line-height: 24px;
    padding: 3px 0;
}

.top-map-schedule > div > p.small{
    line-height: 17px;
    font-size: 14px;
}
*/

.top-map-holidays h3{
    margin-top: 0;
    padding-bottom: 20px;
}

.top-map-holidays p a{
    color: #000;
    display: block;
    padding-top: 45px;
}

.top-map-holidays p a img{
	width: 80px;
	height: auto;
}


#map {
    width: 100%;
    height: 600px;
}

.top-map-link {
    position: relative;
    z-index: 101;
}

.top-map-link a {
    margin: 0 auto -40px auto;
    z-index: 300;
}

.google-map {
    position: relative;
    height: 600px;
    z-index: 1;
}

.google-map iframe {
    position: relative;
    -webkit-filter: grayscale(5%);
    filter: grayscale(5%);
}

.google-map-text {
    background-color: rgba(44, 49, 73, 0.8);
    color: #fff;
    position: absolute;
    padding: 30px 40px;
    text-align: center;
    top: 0;
    left: 0;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    top: 80%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin: auto;
}

.google-map-text::before {
    content: '';
    position: absolute;
    left: calc(50% - 25px);
    top: -25px;
    display: block;
    width: 0;
    height: 0;
    border-right: 25px solid transparent;
    border-bottom: 25px solid rgba(44, 49, 73, 0.8);
    border-left: 25px solid transparent;
}

.google-map-text p {
    width: 505px;
    font-size: 14px;
    line-height: 30px;
}

@media (max-width: 1024px) {

    #map {
        height: 480px;
    }

    .top-map{
        padding-top: 50px;
    }

    .top-map .section-title {
        width: 80%;
    }

    .top-map-text-content {
        width: 90%;
    }

    .top-map-text-content {
        padding-bottom: 30px;
    }

    .top-map-text-content p,
    .top-map-text-content h5,
    .top-map-text-content h5 span:last-child {
        font-size: 16px;
    }

    .top-map-text-content h5 {
        margin-top: 0;
    }

    .google-map {
        height: auto;
    }

    .google-map-text {
        position: relative;
        padding: 30px 50px;
        top: 0;
        transform: translateY(0%) translateX(-50%);
        -webkit-transform: translateY(0%) translateX(-50%);
        color: #000;
        background-color: #fff;
    }

    .google-map-text::before {
        display: none;
    }

    .google-map-text p {
        margin:0 auto;
    }

}

@media (max-width: 440px) {
    .top-map {
        padding-top: 40px;
    }

    .top-map-schedule{
        width: 100%;
    }

    .google-map-text {
        padding: 30px 0;
        width: 85%;
        margin: 0 auto;
        transform: unset;
        -webkit-transform: unset;
        top: unset;
        left: unset;
    }

    .google-map-text p {
        width: 100%;
        margin:0 auto;
    }
    
}

@media (max-width: 400px) {
.top-map-schedule table td{
	padding:0px 0px;
	}
}

/* IPhoneSE用 */
@media (max-width: 330px){
    .google-map-text p {
        width: 100%;
        margin:0 auto;
    }

    .google-map-text p br{
        display: none;
    }
}

/* ---------------------------
サブページ共通
------------------------------ */


.sub-slide-logo {
    position: absolute;
    top: 75px;
    right: 80px;
}

.subpage-section {
    background-color: #fff;
}

.subpage-inner {
    width: 1024px;
    margin: 0 auto;
}

.subpage-title {
    padding-top: 50px;	/*90px;*/
    padding-bottom: 30px;
}

.subpage-title h2 {
    font-weight: normal;
    font-size: 40px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 40px;
}

.subpage-title h3 {
    font-size: 36px;
    font-weight: normal;
    line-height: 40px;
    text-align: center;
}

.sup-link-btn {
    display: block;
    width: 280px;
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    padding: 32px 0;
    background-color: #000622;
    text-align: center;
}

.sup-link-btn::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 15px;
    border-top: 5px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
}

.sup-link-btn:hover {
    background-color: #44495d;
}

.sup-content-2col {
    width: 100%;
    padding: 0 50px;	/*25px;*/
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	opacity: 0.9;
}

.sup-content-item {
    width: 300px;	/*450px;*/
	height: 230px;	/*250px;*/
}

.sup-content-item img{
    width:100%;
}

.sup-content-item h3 {
    font-size: 16px;
    line-height: 30px;
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 28px;
}

.sup-content-item p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 70px;
}

.sup-content-item p span{
    display: block;
    padding-top: 10px;
}

@media (max-width: 1024px) {

    .sub-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-slide-logo {
        position: relative;
        top: 0;
        right: 0;
    }

    .subpage-inner {
        width: 100%;
    }

    .sup-content-2col {
        padding: 0 25px; /*0;*/
    }

    .sup-content-item {
        width: 100%;
		height:unset;
    }

    .sup-content-item img {
        width: 100%;
    }

    .sup-content-item h3 {
        width: 80%;
        margin: 45px auto 0;
    }

    .sup-content-item p {
        width: 80%;
        margin: 0 auto 45px;
    }
}

@media (max-width: 440px) {
    .sub-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-slide-logo {
        position: relative;
        top: 0;
        right: 0;
    }
}

/*------------------------
announcement
------------------------*/

#announcement{
	width:80%;
    max-width: 1024px;
    border: 1px red solid;
    margin: 50px auto;
    padding:35px 50px 15px 50px;
    text-align:center;
}

#announcement h2{
	font-size:160%;
	line-height:150%;
	margin-bottom:0.5em;
	}
	
#announcement p{
	line-height:180%;
	margin-top:0.5em;
}

@media (max-width: 440px) {
    #announcement{
        width:85%;
        padding:35px 20px 15px 20px;
    }
    #announcement h2{
        font-size:120%;
    }
}


/* ---------------------------
ニュースページ news.html
------------------------------ */

.news-main {
    width: 1000px;
    margin: 140px auto; /*170px auto;*/
}

.news-main h2 {
    text-align: center;
    font-size: 30px;	/*40px;*/
    font-weight: normal;
    margin-bottom: 45px;
}

.newslist,
.newslist>dt,
.newslist>dd {
    box-sizing: border-box;
}

.newslist-wrapper {
    width: 100%;
    margin: 0 auto;
}

.newslist {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #b7b8ba;
    border-top: none;

}

.newslist>dt,
.newslist>dd {
    text-align: left;
    padding: 1em;
    margin: 0px;
}

.newslist>dt {
    display: flex;
    align-items: start;	/*center;*/
    width: 30%;
}

.newslist>dd {
    width: 70%;
}

.newslist>dt a,
.newslist>dd a {
    color: #000622;
}

.pagination {
    width: 415px;
    margin: 110px auto 0;
    display: flex;
    justify-content: space-between;
}

.page-new-btn,
.page-old-btn {
    width: 200px;
    height: 55px;
    text-align: center;
}

.page-new-btn a,
.page-old-btn a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    padding: 15.5px 0;
    background-color: #000622;
    text-align: center;
}

.page-new-btn a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 20px;
    border-top: 5px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 5px solid transparent;
    border-left: 10px solid transparent;
}

.page-new-btn a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    margin-left: 0px;	/*20px;*/
}

.page-old-btn a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    margin-right: 0px;	/*20px;*/
}

.page-old-btn a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 20px;
    border-top: 5px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
}

.page-new-btn a:hover,
.page-old-btn a:hover {
    background-color: #44495d;
	opacity: .8;
}

.page-new-btn.disabled,
.page-old-btn.disabled {
    opacity: 0;
    cursor: default;
}

@media (max-width: 1024px) {
    .news-main {
        width: 100%;
        margin: 120px auto;
    }

    .news-main h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
    }

    .newslist-wrapper {
        border-top: 1px solid #b7b8ba;
    }

    .newslist>dt,
    .newslist>dd {
        width: 100%;
        padding: 1rem 0;
        text-align: center;
    }

    .newsdd {
        text-align: left !important;
    }

    .newslist dt {
        border-bottom: #bbb dashed 1px;
    }

    .newslist-title {
        font-size: 16px;
        margin-left: 25px;	/*margin: 0 auto;*/
    }

    .newslist-desc {
        width: 85%;
        margin: 25px auto;
    }

    .newslist-desc p {
        line-height: 200%;
        font-size: 16px;
        text-align: left;
    }

	.newshide {
		display: none;
	}
}

@media (max-width: 811px) {
    .newsdd {
 		width: 50% !important;
		margin-left: 55px !important;
    }
}

@media (max-width: 690px) {
    .newsdt {
 		width: 100% !important;
    }
    .newsdd {
 		width: 100% !important;
		margin-left: 0px !important;
    }
}

@media (max-width: 440px) {
    .pagination {
        width: 85%;
        margin: 110px auto 0;
        display: flex;
        justify-content: space-between;
    }

    .page-new-btn,
    .page-old-btn {
        width: 48%;
        height: 35px;
        text-align: center;
    }

    .page-new-btn a,
    .page-old-btn a {
        padding: 15.5px 0;
        background-color: #000622;
        text-align: center;
    }
}


/* ---------------------------
 history.html
------------------------------ */

.history-award {
    width: 100%;
    margin: 0 0 0 -50px;
    padding: 0 50px 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #f0ede5;
    box-sizing: unset;
}

.history-award h3 {
    font-weight: normal;
    font-size: 30px;
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.history-award ul {
    width: 50%;
    list-style: none;
}

.history-award ul li {
    margin-bottom: 10px;
    text-align: center;
    white-space: nowrap;
}

.history-split {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 120px;
}

.history-split div:first-child {
    width: 45%;
}

.history-split div:first-child p {
    font-size: 16px;
    line-height: 32px;
    margin-top: 15px;
}

.history-split div:last-child {
    width: 52%;
}

.history-split div:last-child img {
    margin-left: 90px;
}

.history-link-btn {
    padding-bottom: 100px;
}

.history-link-btn a {
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .subpage-title h2 {
        font-size: 28px;
    }

    .subpage-title h3 {
        font-size: 26px;
    }

    .history-award {
        width: 85%;
        margin: 0 auto;
        flex-wrap: wrap;
        box-sizing: border-box;
        padding: 30px;
    }

    .history-award h3 {
        font-size: 24px;
        margin: 20px 0;
    }

    .history-award ul {
        width: 100%;
    }

    .history-award ul li {
        font-size: 14px;
        line-height: 24px;
        padding-bottom: 5px;
        text-align: left;
        white-space: unset;
    }

    .history-split {
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .history-split div:first-child {
        width: 85%;
        margin: 0 auto;
    }

    .history-split div:first-child p {
        line-height:36px;
        margin-top: 0;
    }

    .history-split div:last-child {
        width: 95%;
        margin: 30px auto 0;
    }

    .history-split div:last-child img {
        width: 100%;
        margin-left: 0;
    }

}

@media (max-width: 440px) {}

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

------------------------------ */
.ginza-2col {
    display: flex;
    margin-top: 60px;
}

.ginza-2col-left {
    width: 50%;
}

.ginza-2col-right {
    width: 50%;
    position: relative;
}

.ginza-2col div:last-child #map {
    height: 355px !important;
}

.ginza-map-btn {
    width: 200px;
    position: absolute !important;
    right: 0;
    top: 302px;
}

.ginza-map-btn a {
    display: block;
    width: 200px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    padding: 20px 0;
    background-color: #000622;
    text-align: center;
}

.ginza-map-btn a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 15px;
    border-top: 5px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
}

.ginza-dl {
    margin-bottom: 35px;
}

.ginza-dl dl {
    display: flex;
    width: 450px;
    flex-wrap: wrap;
}

.ginza-dl dt {
    font-size: 16px;
    line-height: 32px;
    width: 120px;
}

.ginza-dl dd {
    margin-left: auto;
    width: 320px;
    font-size: 15px;
    line-height: 32px;
}

.ginza-ul li {
    list-style: none;
    font-size: 12px;
    line-height: 22px;
}

.ginza-ul li::before {
    content: "■";
}

.ginza-contact-btn {
    padding-top: 40px;
    padding-bottom: 100px;
}

.ginza-contact-btn a {
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ginza-2col {
        flex-wrap: wrap;
    }

    .ginza-2col-left {
        width: 80%;
        margin: 0 auto 50px;

    }

    .ginza-2col-right {
        width: 80%;
        margin: 0 auto;
    }

    .ginza-dl dl {
        width: 100%;
    }

    .ginza-dl dd {
        width: 60%;
    }
}

@media (max-width: 440px) {}

/* ---------------------------
お召し上がりについて oshinagaki.html
------------------------------ */

.omakase-slide {
    /* background-image: url('../images/omakase-slide-1.jpg');
    background-size: cover;
    background-position: center center; */
}

.omakase-title{
    padding-bottom: 0!important;
}

.omakase-center-text {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 45px;
}

.omakase-menu {
    width: 580px;
    margin: 50px auto 25px;
    border-top: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
    padding-top: 20px;
    padding-bottom: 20px;
}

.omakase-menu > div{
    display: flex;
    justify-content: space-between;
    width: 460px;
    margin: 0 auto;
}

.omakase-menu > div > p:first-child{
    width: 220px;
}

.omakase-menu > div > p:last-child{
    width:220px;	/*125px*/
}

.omakase-menu > div > p{
    line-height: 24px;
    padding: 3px 0;
}

.omakase-menu > div > p.small{
    line-height: 17px;
    font-size: 14px;
}

.omakase-menu > div.menu-bottom-space{
    padding-bottom: 11px;
}

.omakase-menu > div.menu-border{
    width: 100%;
    border-top: solid 1px #cccccc;
    height: 20px;
    margin-top: 20px;
}

.omakase-notes-text {
    width: 590px;
    margin:  0 auto;
    text-align: center;
    padding-right: 5px;
    padding-bottom: 60px;
}

.omakase-notes-text p{
    font-size: 14px;
    line-height: 26px;
}

.omakase-link-btn{
    padding-bottom: 145px;
}

.omakase-link-btn a{
    margin: 0 auto;
}

.omakase-link-btn a:hover{
    opacity: .8;
}

.newslistlg:hover{
	background-color: #f9f9f9;
}


.omakase-image{
    width: 100%;
}

.omakase-image img{
    width: 100%;
}

.omakase-footer-space{
    width: 100%;
    height: 120px;
    background-color: #fff;
}

@media (max-width: 1024px) {


}

@media (max-width: 440px) {
    .omakase-center-text {
        width: 80%;
        margin: 40px auto 0px;
        text-align: left;
        font-size: 20px;
    }

    .omakase-menu {
        width: 90%;
    }
    
    .omakase-menu > div{
        width: 88%;
    }
    .login-menu {
        width: 95% !important;
    }

    .omakase-menu > div > p{
        padding: 1px 0;
    }

    .omakase-menu > div > p:first-child{
        width: 190px;
    }

    .omakase-menu > div > p:last-child {
        width: 135px;
    }

    .omakase-notes-text {
        width: 90%;
        padding-right: 0;
        padding-bottom: 50px;
    }
}

/* ---------------------------
takeout.html
------------------------------ */

.takeout-center-text {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0px;
}

.takeout-center-text span {
    font-size: 12px;
    line-height: 22px;
}

.takeout-top-content {
    width: 564px;
    margin: 0 auto 50px;
}

.takeout-top-content img {
    width: 100%;
}

.takeout-top-content-2col {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    margin-bottom: 25px;
}

.takeout-top-content-2col h3 {
    font-size: 16px;
    line-height: 30px;
}

.takeout-top-content-2col p {
    font-size: 14px;
    line-height: 30px;
}

.takeout-top-content>div:last-child p {
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .takeout-center-text {
        width: 80%;
        margin: 50px auto;
        text-align: left;
        font-size: 20px;
    }

    .takeout-top-content {
        width: 100%;
    }

    .takeout-top-content img {
        width: 100%;
    }

}

@media (max-width: 440px) {}

/* ---------------------------
平日ランチ lunch.html
------------------------------ */

.lunch-sub-title {
    text-align: center;
}

.lunch-sub-title h4 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: normal;
}

.lunch-sub-title p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 45px;
}

#lunch > div.subpage-inner > div.omakase-notes-text{
    padding-bottom: 70px;
}

@media (max-width: 1024px) {}

@media (max-width: 440px) {}


/* ---------------------------
離れ hanare.html
------------------------------ */
.hanare-body {
    background-color: #000;
}

.hanare-body::before {
    content: none !important;

}

.hanare {
    height: 100vh;
    position: relative;
}

.hanare-content {
    position: absolute;
    width: 350px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin: auto;  
}

.hanare-logo{
    margin-bottom: 55px;
}

.hanare-text{
    padding: 15px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.hanare-tel p{
	padding:5px 0;
	text-align: center;
}

.hanare-text p,
.hanare-tel a {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    padding : 8px 0;
}


.hanare-logo {
    text-align: center;
}

.hanare-sp-logo {
    width: 100%;
}

@media (max-width: 1024px) {}

@media (max-width: 440px) {

    .hanare-content {
        position: absolute;
        width: 280px;
        top:50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        margin: auto;  
        /*padding-bottom: 100px;*/
    }

    .hanare-logo{
        width: 80px;
        margin: 0 auto 25px;
    }

    .hanare-logo img{
        width: 100%;
    }

    .hanare-text{
        padding: 25px 0;
    }

    .hanare-text p {
        font-size: 12px;
        line-height: 21px;
    }

}

/* ---------------------------
メンテナンス maintenance.html
------------------------------ */

.maintenance {
    position: relative;
    margin-top: 170px;
    z-index: 10000000;
}

.maintenance div:first-child {
    text-align: center;
}

.maintenance div:last-child {
    text-align: center;
    margin-top: 90px;
}

.maintenance div:last-child h1 {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: normal;
    ;
}

.maintenance div:last-child p {
    font-size: 14px;
    line-height: 28px;
}

.switch3__label {
	width: 37px;
	position: relative;
	display: inline-block;
	padding-top: 3px;
}
.switch3__content {
	display: block;
  cursor: pointer;
  position: relative;
  border-radius: 7px;
  height: 16px;
  background-color: rgba(34,31,31,.26);
  -webkit-transition: all .1s .4s;
	   -moz-transition: all .1s .4s;
	    -ms-transition: all .1s .4s;
	     -o-transition: all .1s .4s;
	        transition: all .1s .4s;
	overflow: hidden;
}
 
.switch3__content:after {
	content: "";
	display: block;
	position: absolute;
	
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	
	border-radius: 7px;
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
	    -ms-transition: all .5s;
	     -o-transition: all .5s;
	        transition: all .5s;
}
.switch3__input {
	display: none;
}
.switch3__circle {
	display: block;
	top: 0px;
	left: 0px;
	position: absolute;
	width: 22px;
	height: 22px;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	background-color: #F1F1F1;
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
	    -ms-transition: all .5s;
	     -o-transition: all .5s;
	        transition: all .5s;
	-webkit-box-shadow: 0 2px 2px #ccc;
	        box-shadow: 0 2px 2px #ccc;
}
.switch3__input:checked ~ .switch3__circle {
	left: 18px;
	background-color: #12dd6b; /*#009688;*/
}
.switch3__input:checked ~ .switch3__content {
 
	border-color: transparent;
	-webkit-transition: all 0s;
	   -moz-transition: all 0s;
	    -ms-transition: all 0s;
	     -o-transition: all 0s;
	        transition: all 0s;
}
 
.switch3__input:checked ~ .switch3__content:after {
	background-color: rgba(115, 225, 153, 0.5); /*rgba(0,150,136,.5);*/
	width: 100%;
}
