/*
Theme Name: yuimaru
Theme URL: https://www.yuimaru.com/
Author: yuimaru
*/
@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    /*list-style-type: none;*/
    box-sizing: border-box;
    font-weight: normal;
}

html {
    width: 100%;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-style: normal;
    font-size: 1.6rem;
    color: #484848;
    letter-spacing: 1px;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@font-face {
    font-family: 'futura-medium-bt';
    font-style: normal;
    src: url("assets/fonts/futura-medium-bt.ttf") format("truetype");
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    color: #484848;
}

.breadcrumbs {
    margin-bottom: 50px;
    font-size: 1.2rem;
}

#top-head {
    display: flex;
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: #9B3B32;
}

#top-head .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

#top-head nav .nav__reserve {
    display: none;
}

#top-head nav .contactInfo {
    display: none;
}

#top-head .inner .header__logo a img {
    display: block;
    max-width: 160px;
    height: auto;
}

#nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    z-index: 100;
}

#nav_toggle div {
    position: relative;
}

#nav_toggle span {
    display: block;
    height: 2px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#nav_toggle span:nth-child(1) {
    top: 0px;
}

#nav_toggle span:nth-child(2) {
    top: 10px;
}

#nav_toggle span:nth-child(3) {
    top: 20px;
}

.open #nav_toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#top-head nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: .95;
    z-index: 999;
}

#top-head nav ul {
    list-style-type: none;
    display: block;
    width: 100%;
    padding: 25px;
}

#top-head nav ul li {
    padding: 25px 0;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
}

#top-head nav ul li:nth-of-type(6) {
    border: none;
}

#top-head nav ul li a {
    display: block;
}

#top-head nav ul .reserveBtn {
    display: block;
    margin-top: 25px;
    background-color: #C9A24D;
    text-align: center;
}

#top-head nav ul .reserveBtn a {
    color: #fff;
}

main {
    padding-top: 60px;
}

h2 {
    margin-bottom: 30px;
    color: #4e0c00;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

h2::before {
    display: block;
    margin-bottom: 10px;
    color: #C9A24D;
    font-family: 'futura-medium-bt';
    font-size: 1.3rem;
    text-align: center;
}

.readText {
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: justify;
}

.reserveBtn_main {
    background-color: #687786;
    display: block;
    width: 270px;
    margin: 0 auto;
    padding: 20px 0;
    border: solid 2px #fff;
    box-shadow: 0 0 6px rgb(167, 167, 167);
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 2px;
}


/*mainVisual　start*/
.mainVisual {
    position: relative;
    width: 100%;
    height: 230px;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainVisual .mainVisual__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mainVisual .mainVisual__title h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.mainVisual .mainVisual__title h1::before {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'futura-medium-bt';
    font-size: 1.3rem;
    text-align: center;
}

.mainVisual__title--none h1 {
    padding-bottom: 20px;
    color: #4e0c00;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.mainVisual__title--none h1::before {
    display: block;
    margin-bottom: 10px;
    color: #C9A24D;
    font-family: 'futura-medium-bt';
    font-size: 1.3rem;
    text-align: center;
}

.mainVisual__title--none .singleBlog__title,
.mainVisual__title--none .pageBlog__title {
    padding-bottom: 20px;
    color: #4e0c00;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.mainVisual__title--none .singleBlog__title::before,
.mainVisual__title--none .pageBlog__title::before {
    display: block;
    margin-bottom: 10px;
    color: #C9A24D;
    font-family: 'futura-medium-bt';
    font-size: 1.3rem;
    text-align: center;
    content: "Blog";
}

/*footer*/
.reserveNavi {
    position: relative;
    width: 100%;
    height: 320px;
    background-image: url('assets/images/common/footer_image_sp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reserveNavi .reserveNavi__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.reserveNavi .reserveNavi__title p {
    color: #fff;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 2px;
}

.footerColumn {
    background-color: #9B3B32;
    padding: 50px 30px 20px 30px;
    color: #fff;
}

.footerColumn__left {
    padding: 15px;
    border-bottom: 1px solid #fff;
}

.footerColumn__left figure {
    display: block;
    width: 50%;
    margin: 0 auto 25px auto;
}

.footerColumn__left .shopInfo {
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 1px;
    text-align: center;
}

.footerColumn__left a {
    color: #fff;
}

.footerColumn__left .sns {
    display: flex;
    align-items: center;
    width: 120px;
    margin: 30px auto;
}

.footerColumn__left .sns a {
    display: block;
    width: 35px;
    margin: 0 10px;
}

.footerColumn__right {
    margin: 30px 0 0 0;
    padding: 10px;
}

.footerColumn__right .sitemap {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: 0 auto;
}

.footerColumn__right .sitemap li {
    width: 50%;
    margin-bottom: 20px;
}

.footerColumn__right .sitemap li a {
    color: #fff;
}

.footerColumn__right .groupShop {
    display: block;
    margin-top: 20px;
}

.copyright {
    display: block;
    margin: 0;
    padding: 20px 0;
    background-color: #9B3B32;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}

.floatingMenu {
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
    list-style-type: none;
}

.floatingMenu .reserveClick {
    position: relative;
    width: 80%;
    height: 60px;
    padding: 20px 0;
    border-right: 1px solid #fff;
    background-color: #C9A24D;
    text-align: center;
}

.floatingMenu .reserveClick a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
}

.floatingMenu .reservePhone {
    position: relative;
    width: 20%;
    height: 60px;
    background-color: #C9A24D;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

.floatingMenu .reservePhone a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.page404__contents {
    padding: 40px 25px;
}

.page404__contents .page404__title {
    font-size: 3rem;
}

.page404__contents p {
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: justify;
}

.page404__contents .page404__btn {
    display: block;
    margin-top: 30px;
    padding: 20px 0;
    border-radius: 5px;
    background-color: #C9A24D;
    color: #fff;
    text-align: center;
}


/*pc*/
@media screen and (min-width: 768px) {
    .breadcrumbs {
        margin-bottom: 0;
        font-size: 1.3rem;
    }

    .contentsInner {
        max-width: 1080px;
        margin: 0 auto 70px auto;
    }

    /*header*/
    #top-head {
        height: 90px;
    }

    #top-head .inner {
        width: 100%;
    }

    #top-head .inner .header__logo a img {
        display: block;
        max-width: 400px;
        padding-left: 100px;
    }

    #top-head nav {
        display: flex;
        justify-content: flex-end;
        text-align: center;
        position: relative;
        top: 0;
        right: 0;
        width: 80%;
        height: 90px;
        background-color: transparent;
        opacity: 1;
    }

    #top-head nav .nav__inner {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 150px;
    }

    #top-head nav .nav__reserve {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
        height: 90px;
        background-color: #C9A24D;
        text-align: center;
    }

    #top-head nav .nav__reserve:hover {
        opacity: .6;
        transition: all .5s;
    }

    #top-head nav .nav__reserve a {
        display: block;
        width: 120px;
        height: 90px;
        position: absolute;
        top: 37px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
    }

    #top-head nav .contactInfo {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 15px;
    }

    #top-head nav .contactInfo p {
        margin-left: 15px;
        color: #fff;
        font-size: 1.2rem;
        font-feature-settings: "palt";
        letter-spacing: 2px;
    }

    #top-head nav ul {
        display: flex;
        justify-content: flex-end;
        list-style-type: none;
        padding: 0;
    }

    #top-head nav ul li {
        padding: 0;
        border: none;
    }

    #top-head nav ul li a {
        text-decoration: none;
        padding-left: 25px;
        color: #fff;
        font-size: 1.4rem;
    }

    #top-head nav ul .reserveBtn {
        display: none;
    }

    #top-head nav ul li a:hover {
        opacity: .5;
        transition: all .5s;
    }

    #nav_toggle {
        display: none;
    }

    /*header--end*/

    main {
        padding-top: 90px;
    }

    h2 {
        margin-bottom: 50px;
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    h2::before {
        font-size: 1.8rem;
    }

    .readText {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: center;
    }

    .reserveBtn_main:hover {
        background-color: #fff;
        border: solid 2px #687786;
        color: #687786;
        transition: all .5s;
    }

    /*mainVisual　start*/
    .mainVisual {
        height: 300px;
    }

    .mainVisual .mainVisual__title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mainVisual .mainVisual__title h1 {
        font-size: 2.7rem;
    }

    .mainVisual .mainVisual__title h1::before {
        font-size: 1.8rem;
    }

    .mainVisual__title--none h1 {
        font-size: 2.7rem;
    }

    .mainVisual__title--none h1::before {
        font-size: 1.8rem;
    }

    .mainVisual__title--none .singleBlog__title,
    .mainVisual__title--none .pageBlog__title {
        font-size: 2.7rem;
    }

    .mainVisual__title--none .singleBlog__title::before,
    .mainVisual__title--none .pageBlog__title::before {
        font-size: 1.8rem;
    }

    /*mainVisual　end*/


    /*footer*/
    .reserveNavi {
        height: 350px;
        background-image: url('assets/images/common/footer_image.jpg');
    }

    .reserveNavi .reserveNavi__title p {
        font-size: 2.5rem;
    }

    .footerColumn {
        padding: 45px 10px 20px 10px;
    }

    .footerColumn .footerColumn__inner {
        display: flex;
        justify-content: space-between;
        max-width: 1080px;
        margin: 0 auto;
    }

    .footerColumn__left {
        width: 48%;
        border-bottom: none;
    }

    .footerColumn__left figure {
        width: 50%;
        margin: 0 0 25px 0;
    }

    .footerColumn__left .flexContents {
        display: flex;
        align-items: flex-end;
    }

    .footerColumn__left .shopInfo {
        text-align: left;
        margin-right: 30px;
    }

    /* .footerColumn__left .sns {
        margin: 20px 0 0 0;
    }

    .footerColumn__left .sns a{
        margin: 0 20px 0 0;
    }

    .footerColumn__left .sns a:hover{
        opacity: .6;
        transition: all .5s;
    } */

    .footerColumn__right {
        width: 48%;
        margin: 0;
    }

    .footerColumn__right .sitemap {
        margin: 0;
    }

    .footerColumn__right .sitemap li {
        width: 30%;
    }

    .footerColumn__right .groupShop {
        width: 70%;
    }

    .footerColumn__right .groupShop:hover {
        box-shadow: 0 0 10px rgb(1, 9, 36);
        transition: all .5s;
    }

    .copyright {
        padding-top: 30px;
        font-size: 1.2rem;
    }

    .page404__contents {
        max-width: 1080px;
        margin: 0 auto;
        padding: 100px 0;
    }

    .page404__contents .page404__title {
        font-size: 4rem;
    }

    .page404__contents p {
        font-size: 1.6rem;
        text-align: center;
    }

    .page404__contents .page404__btn {
        width: 300px;
        margin: 30px auto 0 auto;
    }
}


/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url('assets/images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('assets/fonts/slick.eot');
    src: url('assets/fonts/slick.eot?#iefix') format('embedded-opentype'), url('assets/fonts/slick.woff') format('woff'), url('assets/fonts/slick.ttf') format('truetype'), url('assets/fonts/slick.svg#slick') format('svg');
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '←';
}

[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '→';
}

[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
/*.slick-dotted.slick-slider{
    margin-bottom: 30px;
}*/

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-size: 20px !important;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}