@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 Serif JP", serif;
    --base-font2: "Noto Sans JP", sans-serif;
    --title-font: "Cinzel", serif;
    --subtitle-font: "Roboto", sans-serif;

    --base-font-size: 16px;

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

    --color-base: #000;
}


.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 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;
}

/*footer*/

footer {
    width: 100%;
    text-align: center;
    background-image: url(../../common/images/common/footer-back.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #003215;
    opacity: 0.65;
    mix-blend-mode: multiply;
}

/*footer-guide*/

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

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

/*footer*/

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

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

    body {
        min-width: 1360px;
    }

    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;
    }


    /*footer*/

    /*footer-guide*/

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

    .footer-guide img {
        height: 110px;
    }

    /*footer*/

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


}
