@charset "utf-8";
/* CSS Document */

* {
    line-height: 1;
}

html {
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}

img {
    border: 0;
    vertical-align: top;
    object-fit: cover;
}


/*clearfix*/
.clearfix:after {
    content: " ";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
}

* html .clearfix {
    display: inline-block;
}

/* no ie mac \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.clearfix {
    overflow: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    word-wrap: break-word;
}

/*body*/

body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
}


li {
    list-style-type: none;
}

a {
    text-decoration: none;
    transition: .5s;
}

a:hover {
    opacity: 0.75;
    transition: .5s;
}

/* basefont */
:root {
    --base-font: "Noto Sans JP", sans-serif;
    --title-font: "Josefin Sans", sans-serif;
    --subtitle-font: "Bebas Neue", sans-serif;

    --base-font-size: 16px;

    --base-weight0: 300;
    --base-weight: 400;
    --base-weight2: 500;
    --base-weight3: 600;

    --color-base: #000;
    --color-main: #ffe200;
    --color-sub: #f38f00;
    --color-sub2: #009be3;
    --color-sub3: #ffff00;
    --color-back01: #faf7f3;
    --color-back02: #e8f1fa;
    --color-back03: rgba(243, 143, 0, 0.2);
    --color-back04: #fdeed8;
    --color-back05: #cbcbcb;
}


.contents-box {
    font-family: var(--base-font);
    font-weight: var(--base-weight);
    font-size: var(--base-font-size);
    color: var(--color-base);
    clear: both;
    margin-right: auto;
    margin-left: auto;
    line-height: 1;
}

.contents-box p {
    font-family: var(--base-font);
    font-weight: var(--base-weight);
    font-size: var(--base-font-size);
    color: var(--color-base);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.contents-box p br.sp-view {
    display: none;
}

.contents-box a {
    color: var(--color-base);
    font-weight: var(--base-weight);
}

.contents-box p a {
    color: var(--color-base);
    font-weight: var(--base-weight);
}


/* animation_box */

.animation_box {
    transition: 1s ease;
    opacity: 0;
    transition-delay: .5s;
    transform: translate(0px, 0px);
}

.animation_box-left {
    transform: translateX(-100px);
}

.animation_box-right {
    transform: translateX(100px);
}

.animation_box-top {
    transform: translateY(100px);
}

.animation_box-bottom {
    transform: translateY(-100px);
}

.animation_box2 {
    transition-delay: 1s;
}

.animation_box3 {
    transition-delay: 1.5s;
}

.animation_box4 {
    transition-delay: 2s;
}

.animation_box.effect {
    opacity: 1;
    transform: translate(0px, 0px);
}



/*header*/

.header-wrap {
    z-index: 9999999;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    position: relative;
}

.header > div {
    position: relative;
}

.header-left img {
    height: 120px;
    width: auto;
    transition: .5s;
}

.hidden .header-left img {
    height: 220px;
}

.header h6 img {
    height: 60px;
    width: auto;
}


/*メニュー部分*/
nav {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    overflow: auto;
    background-color: #FFF;
}

nav .box-menu {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

nav .box-menu > h2 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    text-align: center;
}

nav .box-menu > h2 img {
    height: 60px;
    width: auto;
}

/*開閉ボタン*/
#nav_toggle {
    display: inline-block;
    vertical-align: top;
    float: right;
    width: 70px;
    height: 70px;
    position: relative;
    top: 10px;
    right: 15px;
    z-index: 10000000000;
    background-color: #abd05f;
    padding: 24px 15px;
    margin-right: 0px;
    margin-top: 0px;
    border-radius: 8px;
    cursor: pointer;
}

#nav_toggle div {
    position: relative;
}

#nav_toggle span {
    display: block;
    height: 1px;
    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時*/
.open #nav_toggle span:nth-child(1) {
    top: 12px;
    -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: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}


/*main-img*/

.main-img {
    width: 100%;
    position: relative;
}

.main-img .box-img {
    width: 100%;
}

.main-img .box-img img {
    width: 100%;
    height: auto;
    max-height: 600px;
}

.main-img .box-title {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 4%;
}

.main-img .box-title img {
    height: 140px;
    width: auto;
}


/* contents */

.contents-wrap {
    width: 100%;
    padding: 110px 0px 200px;
    background-color: #42210B;
    background-image: url("../images/common/back-contents.png");
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
    position: relative;
}

.contents-wrap::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 250px;
    display: block;
    background: -moz-linear-gradient(50% 100% 90deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
    background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0, rgba(66, 33, 11, 1)), color-stop(1, rgba(66, 33, 11, 0)));
    background: -o-linear-gradient(90deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
    background: -ms-linear-gradient(90deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#42210B', endColorstr='#42210B' ,GradientType=0)";
    background: linear-gradient(0deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
    opacity: 0.7;
    mix-blend-mode: multiply;
    margin-bottom: -2px;
}

.contents-wrap img {
    width: 100%;
    height: auto;
}


/* lay */

.lay img {
    width: 100%;
    height: auto;
}

.lay p {
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.lay1000 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.lay1100 {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.lay1180 {
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.lay-85 {
    width: 85%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.lay-90 {
    width: 90%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}



/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.pagetop_btn a:hover {
    opacity: 0.75;
}

.pagetop_btn img {
    height: 65px;
    width: auto;
}

/*pagetop_btn2*/

.pagetop_btn2 {
    position: fixed;
    top: 300px;
    right: 0px;
    z-index: 100;
}

.pagetop_btn2 img {
    height: 220px;
    width: auto;
}

/* banner-side */

.banner-side {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 99;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    width: 120px;
}

.banner-side ul li:not(:last-child) {
    margin-bottom: 12px;
}

.banner-side ul li img {
    width: 120px;
    height: auto;
}

/*footer*/

footer {
    width: 100%;
    text-align: center;
    background-color: #FFF;
}

/*footer-map*/

.footer-map h2 {
    font-family: var(--title-font);
    font-weight: var(--base-weight3);
    color: #FFF;
    font-size: 50px;
    line-height: 0.9;
    background-color: #000;
    padding: 20px 0px 6px;
}

.footer-map p {
    background-color: #f1f1f1;
    padding: 12px 0px;
}

.footer-map iframe {
    width: 100%;
    height: 520px;
}

/*footer-guide*/

.footer-guide .box-inner {
    width: 100%;
    padding: 60px 0px;
}

.footer-guide img {
    width: auto;
    height: 280px;
}

/*footer*/

.footer-guide p {
    font-size: 11px;
    line-height: 1.2;
    color: #000;
    font-weight: var(--base-weight);
    padding-top: 60px;
}

/**
 * for SmartPhone
 */
@media screen and (min-width: 768px) {

    body {
        min-width: 1280px;
    }

    a[href^="tel:"] {
        pointer-events: none;
    }

    #header .sp-view {
        display: none;
    }


}

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

    /* basefont */
    :root {
        --base-font-size: 14px;
    }

    .contents-box p br.sp-view {
        display: inline-block;
    }


    /*header*/

    .header {}

    .header {
        padding: 10px;
        align-items: center;
    }

    .header-left img {
        height: 60px;
    }

    .hidden .header-left img {
        height: 60px;
    }



    /*開閉ボタン*/
    #nav_toggle {
        width: 55px;
        height: 55px;
        padding: 14px 10px 0px;
        margin-right: 0px;
        margin-top: 0px;
    }

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

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

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


    .nav-pc {
        display: none;
    }

    nav .box-menu {
        justify-content: center;
        padding-top: 50px;
    }

    nav .box-menu > h2 {
        top: 10px;
    }

    nav .box-menu > h2 img {
        height: 52px;
    }


    /*main-img*/

    .main-img .box-img img {
        min-height: 250px;
    }

    .main-img .box-title {
        padding: 0px 2%;
    }

    .main-img .box-title img {
        height: 75px;
    }


    /* contents */

    .contents-wrap {
        width: 100%;
        padding: 60px 0px 80px;
    }

    .contents-wrap::before {
        height: 100px;
    }

    /* lay */

    .lay1000,
    .lay1100,
    .lay1160,
    .lay-85 {
        width: 88%;
    }

    /*btn-top*/

    .pagetop_btn {
        bottom: 10px;
        right: 10px;
    }

    .pagetop_btn img {
        height: 50px;
    }

    /* banner-side */

    .banner-side {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .banner-side ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .banner-side ul li:not(:last-child) {
        margin-bottom: 0px;
    }

    .banner-side ul li {
        width: calc(100% / 3);
    }

    .banner-side ul li img {
        width: auto;
        height: 70px;
    }

    .banner-side a {
        display: block;
    }

    .banner-side ul li:nth-child(1) a {
        background-color: #34ac37;
    }

    .banner-side ul li:nth-child(2) a {
        background-color: #de007f;
    }

    .banner-side ul li:nth-child(3) a {
        background-color: #231815;
    }

    /*footer*/

    /*footer-map*/

    .footer-map h2 {
        font-size: 28px;
        padding: 15px 0px 6px;
    }

    .footer-map p {
        padding: 10px 0px;
    }

    .footer-map iframe {
        width: 100%;
        height: 250px;
    }

    /*footer-guide*/

    .footer-guide .box-inner {
        padding: 40px 0px 100px;
    }

    .footer-guide img {
        width: 90%;
        height: auto;
    }

    /*footer*/

    .footer-guide p {
        font-size: 10px;
        padding-top: 40px;
    }

}
