@charset "UTF-8";

/*全体共通*/
:root,
html {
    font-size: 10px;
    scroll-behavior: smooth; /* スムーススクロール */
}

* {
    box-sizing: border-box;
}

body {
    --max-width: 900px;
    --c-base: #141414;
    --c-main: #009d42;
    --c-accent: #f78922;
    --ff-main: "Noto Sans JP", sans-serif;
    --ff-en: "Prompt", serif;
    --ff-tel: "Oswald", sans-serif;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--ff-main);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    color: #141414;
    letter-spacing: 0.05em;
    background: #faf3e5;
}

/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none) {
    body {
        font-family: "Noto Sans JP", sans-serif;
    }
}

a {
    display: inline-block;
    color: inherit;
    font-weight: inherit;
}

a:hover {
    cursor: pointer;
}

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

img,
svg {
    display: inline-block;
    max-width: 100%;
    vertical-align: bottom;
}

select {
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.--ff-en {
    font-family: var(--ff-en);
}

.--ff-tel {
    font-family: var(--ff-tel);
}

.--ff-g {
    font-family: var(--ff-g);
}

.--c-red {
    color: #e61927 !important;
}

.--c-white {
    color: #fff !important;
}

.--c-yellow {
    color: #f3df4e !important;
}

.--c-blue {
    color: #1877f2 !important;
}

.--c-green {
    color: #009d42 !important;
}

.--center {
    text-align: center !important;
}

.--ta-l {
    text-align: left !important;
}

.--ta-r {
    text-align: right !important;
}

.--ta-justify {
    text-justify: inter-ideograph;
    text-align: justify;
    text-align-last: left;
}

.--bold {
    font-weight: bold !important;
}

.--thin {
    font-weight: 100 !important;
}

.--nowrap {
    white-space: nowrap;
}

.--kerning {
    font-feature-settings: "palt";
}

.--overflow-ellipsis {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.--under {
    border-bottom: 1px solid #888;
}

.--img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.--img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.--clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.--d-ib {
    display: inline-block !important;
}

.--d-n {
    display: none !important;
}

.--d-f {
    display: flex !important;
}

.--justify-center {
    display: flex;
    justify-content: center;
}

a.--h-opacity,
.--h-opacity a {
    transition: opacity .3s;
}

a.--h-opacity:hover,
.--h-opacity a:hover {
    opacity: .6;
}

/* PC */
@media (min-width: 900px) {
    .--tab {
        display: none !important;
    }

    .--sp {
        display: none !important;
    }

    .--tab-sp {
        display: none !important;
    }
}

/* TAB */
@media screen and (max-width: 899px) and (min-width: 481px) {
    .--pc {
        display: none !important;
    }

    .--sp {
        display: none !important;
    }

    .--pc-sp {
        display: none !important;
    }
}

/* SP */
@media screen and (max-width: 480px) {
    .--pc {
        display: none !important;
    }

    .--tab {
        display: none !important;
    }

    .--pc-tab {
        display: none !important;
    }
}

/* アニメーション */
@keyframes inview_img_before {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    51% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

@keyframes inview_img {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

._Inview {
    opacity: 0;
    transition: 1.5s ease .5s;
}

._Inview.in {
    opacity: 1;
}

._Inview.-slide {
    transform: translateX(-20px);
}

._Inview.-slide.in {
    transform: translateX(0);
}

._Inview.-up {
    transform: translateY(20px);
}

._Inview.-up.in {
    transform: translateY(0);
}

._Inview.-img {
    position: relative;
    opacity: 1;
}

._Inview.-img img {
    opacity: 0;
}

._Inview.-img.in img {
    animation: inview_img 1s ease .5s forwards;
}

._Inview.-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--c-main);
    transform: scaleX(0);
    z-index: 2;
}

._Inview.-img.in::before {
    animation: inview_img_before 1s ease .5s forwards;
}

/* SP */
@media screen and (max-width: 480px) {
    ._Inview {
        transition-delay: 0s;
    }

    ._Inview.-img.in img,
    ._Inview.-img.in::before {
        animation-delay: 0s;
    }
}

/* 共通 */
.cntInner,
._Inner {
    width: 100%;
    margin: 0 auto;
}

._Title {
    padding-top: 55px;
}

._Title .en {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-family: var(--ff-en);
    line-height: 1.4;
    text-transform: uppercase;
    display: block;
    padding-left: 4px;
    padding-top: 8px;
    box-sizing: border-box;
}

._Title .ja {
    font-size: 3.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: url("../img/cmn/ttl.png")no-repeat top right;
    padding: 55px 85px 0 0;
}

/* TAB */
@media screen and (max-width: 899px) {
    ._Title {
        padding-top: 50px;
    }

    ._Title .en {
        font-size: 1.6rem;
    }

    ._Title .ja {
        font-size: 3.0rem;
        background: url("../img/cmn/ttl.png")no-repeat top right;
        background-size: 50px;
        padding: 35px 45px 0 0;
    }
}

/* SP */
@media screen and (max-width: 480px) {
    ._Title {
        padding-top: 50px;
    }

    ._Title .en {
        font-size: 1.4rem;
        padding-left: 2px;
        padding-top: 3px;
    }

    ._Title .ja {
        font-size: 2.6rem;
        background: url("../img/cmn/ttl.png")no-repeat top right;
        background-size: 35px;
        padding: 22px 28px 0 0;
    }
}



._Box .cntInner {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
}

._Box .cntDiv {}

._Box .cntTitle {}

._Box .cntTitle .en {}

._Box .cntTitle .ja {}

._Box .cntText {
    font-weight: 600;
    letter-spacing: .075em;
    line-height: 1.8;
}

.cntBtn {
    width: 100%;
    max-width: 300px;
    margin: auto;
}

.cntBtn.--ta-r {
    margin: 0 0 0 auto;
}

.cntBtn a {
    position: relative;
    font-size: 1.8rem;
    letter-spacing: .05em;
    display: block;
    width: 100%;
    text-align: center;
    margin: auto;
    background: url("../img/cmn/arw_wht.png")no-repeat 90%, var(--c-main);
    transition: 0.7s;
    padding: 20px 10px;
    border-radius: 100px;
    color: #fff;
}

.cntBtn a:hover {
    background: url("../img/cmn/arw_wht.png")no-repeat 96%, var(--c-accent);
}

.cntBtn02 {
    max-width: 180px;
}

.cntBtn02 a {
    font-size: 1.6rem;
    background: url("../img/cmn/arw_grn.png")no-repeat 90%, #fff;
    color: #222;
}

.cntBtn02 a:hover {
    background: url("../img/cmn/arw_wht.png")no-repeat 96%, var(--c-main);
    color: #fff;
}


._Box .cntImg {}

._Box .cntImg .inner {}

._Box .cntImg img {
    width: 100%;
}

._Box.-inver .cntDiv {}

._Box.-inver .cntImg .inner {}

._Box .cntList {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}


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

/* TAB */
@media screen and (max-width: 899px) {
    ._Box .cntText {
        letter-spacing: .075em;
        line-height: 1.6;
    }
}

/* SP */
@media screen and (max-width: 480px) {
    ._Box .cntInner {
        width: 90%;
    }

    .cntBtn {
        max-width: 90%;
    }

    .cntBtn.--ta-r {
        margin: auto;
    }

    .cntBtn a {
        font-size: 1.5rem;
        padding: 15px 10px;
    }

    .cntBtn02 {
        max-width: 90%;
        margin: auto;
    }

    .cntBtn02 a {
        font-size: 1.5rem;
    }

    ._Box .cntText {
        letter-spacing: .05em;
        line-height: 1.6;
    }
}

/* ローディング */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 999;
}


/* ヘッダー */
#header {
    /*position: absolute;
    width: calc(100% - 100px);
    top: 0;
    left: 0;
    z-index: 101;*/
}

#header .cntInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 30px 0;
    margin: 0 auto;
}

#headerLogo {
    width: 30%;
}

#header .cntBox {
    /* width: 60%;
    max-width: 768px; */
    width: 85%;
    max-width: 1200px;
}

#header .cntList {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

#header .cntList .item,
#header .cntList .init-bottom {
    display: block;
    text-align: center;
    letter-spacing: .05em;
    font-weight: 700;
    transition: 0.7s;
    color: #222222;
    position: relative;
}

#header .cntList .item::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #faf3e5;
    border-radius: 100%;
    top: -15px;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.5s;
}

#header .cntList .item .jp,
#header .cntList .init-bottom .jp {
    font-size: 1.8rem;
}

#header .cntList .item.current {}

#header .cntList .item:hover {
    opacity: 1;
}

#header .cntList .item:hover::after,
#header .cntList .item.current::after {
    background: var(--c-main);
}

/*#header .cntList ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    }
#header .cntList .menu__second-level li {padding:6px 0;}
#header .cntList .menu__second-level li a:hover {color: #93814f}
#header .cntList li.menu__single {position: relative;}
#header .cntList li.menu__single ul.menu__second-level {
    position: absolute;
    top: 10px;
    width: 220%;
    max-width: 180px;
    background:rgba(255,255,255,0.7);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: #333;
    padding:6px;
    box-sizing: border-box;
    text-align: center;
    left: 0;
    font-size: 1.4rem;
    }
#header .cntList li.menu__single:hover ul.menu__second-level {
    top: 22px;
    visibility: visible;
    opacity: 1;
    }*/


#sideNav {
    position: fixed;
    width: 250px;
    top: 150px;
    right: 0;
    margin: auto;
    z-index: 10;
}

#sideNav div {
    margin: 5px 0 5px auto;
    ;
    width: 90px;
    transition: 0.7s;
}


#sideNav div.nav01:hover,
#sideNav div.nav03:hover {
    width: 120px;
}

#sideNav .aside__item:hover {
    width: 300px;
}

#sideNav a,
#sideNav form {
    display: block;
    width: 100%;
    height: 110px;
    text-align: center;
    padding-top: 25px;
    box-sizing: border-box;
    border-radius: 15px 0 0 15px;
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
}

#sideNav .nav01 a {
    background: var(--c-main);
}

#sideNav .nav02 form {
    background: #e61927 url(../img/cmn/icon_serch.png) no-repeat center bottom 1.3em;
    padding-top: 20px;
}

.aside__item #search-wrap form#searchform button {
    display: none;
}

.aside__item {
    position: relative;
    transition: all 0.4s;
}

#sideNav .aside__item:hover {
    transform: translateX(-10px);
}

.nav02.aside__item form input {
    display: none;
}

#sideNav .aside__item:hover form {
    background: #e61927 url(../img/cmn/icon_serch.png) no-repeat left 2em bottom 1.3em;
}

#sideNav .aside__item:hover form input {
    display: block;
    position: absolute;
    top: 50%;
    left: 30%;
    padding: 5px 0;
    border: none;
}


#sideNav .nav02 button {
    color: #fff;
}

#sideNav .nav03 a {
    background: var(--c-accent);
}

#sideNav .nav04 a {
    background-color: #f3df4e;
}

#sideNav p {
    display: block;
    padding-bottom: 6px;
}

@media screen and (max-width: 1400px) {
    #headerLogo {
        width: 20%;
    }

    #header .cntBox {
        width: 80%;
    }

    #header .cntList .item .jp,
    #header .cntList .init-bottom .jp {
        font-size: 1.6rem;
        /* letter-spacing: 0 */
    }
}

@media screen and (max-width: 1220px) {
    #headerLogo {
        width: 18%;
        padding: 0
    }

    #header .cntBox {
        width: 75%;
    }

    #header .cntList .item .jp,
    #header .cntList .init-bottom .jp {
        font-size: 1.4rem;
        letter-spacing: 0
    }
}


/* TAB */
@media screen and (max-width: 899px) {
    #header {
        width: 100%;
    }

    #header .cntInner {
        padding: 10px 0;
    }

    #headerLogo {
        width: 180px;
    }

    #sideNav {
        width: 90px;
        top: 50px;
    }

    #sideNav div {
        margin: 5px 0 5px auto;
        width: 70px;
        transition: 0.7s;
    }

    #sideNav div:hover {
        width: 90px;
    }

    #sideNav a {
        height: 90px;
        padding-top: 23px;
        font-size: 1.2rem;
    }

    #sideNav div img {
        width: 20px;
    }

    #header .cntBox {
        width: auto;
        background: none;
        border: none;
        padding: 0;
    }

    #headerBtn {
        position: absolute;
        top: 8px;
        right: 0;
        width: 50px;
        height: 35px;
        cursor: pointer;
        z-index: 999;
    }

    #headerBtn span {
        position: absolute;
        left: 10px;
        display: inline-block;
        width: calc(100% - 20px);
        height: 3px;
        transition: all .5s;
        background: var(--c-main);
        border-radius: 100px;
    }

    #headerBtn span:nth-of-type(1) {
        top: 10px;
    }

    #headerBtn span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-1px);
    }

    #headerBtn span:nth-of-type(3) {
        bottom: 8px;
    }

    #headerBtn.active span {
        background: #fff;
    }

    #headerBtn.active span:nth-of-type(1) {
        transform: translateY(6px) rotate(45deg);
    }

    #headerBtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    #headerBtn.active span:nth-of-type(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* SP */
@media screen and (max-width: 480px) {
    #sideNav {
        display: none;
    }

    #footerNav {
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        margin: auto;
        z-index: 10;
        display: inline-flex
;    }

    #footerNav div {
        margin: 0 auto;
        /* width: 33.3%; */
        width: 25%;
        transition: 0.7s;
    }

    #footerNav img {
        width: 25px
    }
    #footerNav div.nav01:hover,
    #footerNav div.nav03:hover {
        width: 100%;
    }

    #footerNav .aside__item:hover {
        width: 100%;
    }

    #footerNav a,
    #footerNav form {
        display: block;
        width: 100%;
        /* height: 80px; */
        height: 55px;
        text-align: center;
        /* padding-top: 10px; */
        padding-top: 15px;
        box-sizing: border-box;
        border-radius: 15px 15px 0 0;
        color: #fff;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    #footerNav .nav01 a {
        background: var(--c-base);
    }

    #footerNav .nav02 form {
        background: #e61927 url(../img/cmn/icon_serch.png) no-repeat center bottom 1em;
        background-size: 25px;
    }

    .aside__item #search-wrap form#searchform button {
        display: none;
    }

    .aside__item {
        position: relative;
        transition: all 0.4s;
    }

    /* #footerNav .aside__item:hover {
        transform: translateX(-10px);
    } */

    .nav02.aside__item form input {
        display: none;
    }

    #footerNav .aside__item:hover form {
        background: #e61927 url(../img/cmn/icon_serch.png) no-repeat left 1rem bottom 1em;
        background-size: 25px;
    }

    #footerNav .aside__item:hover form input {
        display: block;
        position: absolute;
        top: 27%;
        left: 20%;
        padding: 5px 0;
        border: none;
    }


    #footerNav .nav02 button {
        color: #fff;
        display: none;
    }

    #footerNav .nav03 a {
        background: var(--c-accent);
    }

    #footerNav .nav04 a {
        background-color: #f3df4e;
    }

    #footerNav p {
        display: block;
        padding-bottom: 4px;
    }
    #headerLogo {
        width: 130px;
        padding: 5px 0;
    }
}

/* スマホナビ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    padding-bottom: 70px;
    background: var(--c-main);
    z-index: 100;
    color: #fff;
}

#nav .cntInner {
    text-align: center;
    padding: 70px 20px 0;
}

#nav .cntList .item {
    margin-top: 24px;
    line-height: 1.2;
    letter-spacing: .075em;
}

#nav .cntList {
    font-weight: 600;
    display: block;
}

#nav .cntList .current {
    color: #f3df4e
}

#nav .cntList li.mail {
    text-transform: uppercase;
}



/* フッター */
#footer {
    background: var(--c-main);
    position: relative;
    padding: 0;
}

#footer .cntInner {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    padding: 40px 0 40px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

#footer #footerLogo {
    text-align: left;
    max-width: 370px;
    width: 30%;
    margin: 0;
}

#footer .cntList {
    width: 65%;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
}

#footer .cntList ul {
    width: 40%;
}

#footer .cntList ul:nth-child(3) {
    width: 20%;
}

#footer .cntList ul li {
    margin-bottom: 18px;
}

#footer .cntList li a {
    color: #fff;
}


#copyright {
    color: #fff;
    display: block;
    font-size: 1.2rem;
    margin: auto;
    text-align: center;
    padding: 10px 0 50px;
}

/* トップへ戻るボタン */
#top {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 12px;
    z-index: 100;
}

/* TAB */
@media screen and (max-width: 899px) {
    #footer {
        padding: 30px 0
    }

    #footer .cntInner {
        padding: 0 20px;
        display: block;
    }

    #footer #footerLogo {
        text-align: center;
        max-width: 170px;
        width: 100%;
        margin: 0 auto 20px;
    }

    #copyright {
        padding: 0;
    }

    #top {}
}

/* SP */
@media screen and (max-width: 480px) {
        #footer {
        padding: 30px 0 120px;
    }
}



/*------------------------------------------------------------
	over_effect
------------------------------------------------------------*/
.over_effect {
    width: 100%;
    overflow: hidden;
}

.over_effect a {
    text-decoration: none;
}

.over_effect img {
    transition: 0.7s;
}

.over_effect a:hover img {
    display: block;
    transform: scale(1.1, 1.1);
    transition-duration: 0.8s;
}
