@charset "UTF-8";


/*==============================================================================
1.共通事項
2.header
3.footer
4.下層
5.パンクズ
6.404ページ
7.js・アニメーション用
==============================================================================*/

/*============================================================================================================================================================
==============================================================================================================================================================

	1.共通事項

==============================================================================================================================================================
============================================================================================================================================================*/
:root {
	/* フォントサイズ */
	--fontsize-base: 1.4rem;
	/* 文字間 */
	--letter-spacing: 0.15em;
	/* 行間 */
	--lingh-height: 1.8;
	/* 最高幅 */
	--max-width: 1200px;
	/* 最低幅 */
	--min-width: 980px;
}

::selection {
  background: var(--color-sub); /* 選択された背景色 */
  color: var(--color-font);    /* 選択されたテキスト色 */
}

html {
    font-size: 10px;
}
body {
    min-width: var(--max-width);
	font-size: var(--fontsize-base);
	font-family: var(--font-base);
	color: var(--color-font);
	letter-spacing: var(--letter-spacing);
    line-height: var(--lingh-height);
}
#bodywrap {
    overflow: hidden;
}
.inner {
    margin: 0 auto;
    width: var(--min-width);
}

/*============ リンク ============*/
a{
	font-family: var(--font-base);
	color: var(--color-main);
	transition: 500ms;
}
a:hover{
	opacity: 0.6;
	color: var(--color-main);
}

/*============ フォント ============*/
[lang="en"] {
	font-family: var(--font-en);
}

/*============ disc_list ============*/
ul.disc_list li {
    position: relative;
    padding-left: 1em;
}
ul.disc_list li::before {
    content: "";
    width: 0.3em;
    height: 0.3em;
    position: absolute;
    left: 0;
    top: 0.8em;
    background-color: var(--font-black);
    border-radius: 100%;
}

/*============ ボタン ============*/
.button{
    width: 320px;
    max-width: 100%;
    padding: 20px 0;
    display: inline-block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: var(--weight-bold);
    color: #fff;
    background-color: var(--color-main);
    line-height: 1;
    border-radius: 8px;
    position: relative;
    transition: 500ms;
}
.button::after{
    content: "";
    width: 10px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    background-color: #fff;
    transform: translateY(-50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transition: 500ms;
}
.button:hover{
	opacity: 0.6;
    color: #fff;
}

/* ボタン 白 ver */
.button.white{
    background-color: #fff;
    color: var(--color-main);
}
.button.white::after {
    background-color: var(--color-main);
}

/* ボタン 黒 ver */
.button.black{
    background-color: var(--color-font);
}

/* ボタン window ver */
.button.window::after {
    right: 20px!important;
    width: 10px;
    height: 10px;
    background-color: transparent;
    background-image: url(../1_img/base/icon-window.svg);
    clip-path: unset;
}

/* ボタン window-white ver */
.button.window-white::after {
    background-image: url(../1_img/base/icon-window-white.svg);
}

/* ボタン 左向き */
.button.left-white::after {
    right: unset;
    left: 20px;
    clip-path: polygon(0% 50%, 100% 100%, 100% 0);
}

@media all and (max-width: 768px) {
    .button {
        padding: 15px 0 17px;
        line-height: 1.6;
    }
}

/*================================    inner内に入れても画面100%にする   ================================*/
.inner-out100vw{
    width: 100vw;
    transform: translateX( calc( (-100vw + var(--min-width)) / 2) );
}
@media all and (max-width: 980px) and (min-width: 769px){/* max-widthの値はvar(--min-width)と同じ */
    .inner-out100vw{
        width: 100%;
        transform: translateX( 0 );
    }
}
@media all and (max-width: 768px){
    .inner-out100vw{
        width: calc(100% + 40px);
        transform: translateX( -20px );
    }
}

/*================================    clearfix   ================================*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*================================    表示・非表示   ================================*/
.hidden{
    display: none;
}
@media all and (min-width: 769px) {
    .sp_only {
        display: none !important;
    }
}
@media all and (max-width: 768px) {
    .pc_only {
        display: none!important;
    }
}

/*================================    animate   ================================*/
.animate{
    opacity: 0;
    transform: translateY(20%);
    transition: all 0.9s ease;
}
.animate.started{
    opacity: 1;
    transform: translateY(0);
}

/*================================    スマホ   ================================*/
@media all and (max-width: 768px) {
    body {
        min-width: auto;
    }
    .inner {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	2.header

==============================================================================================================================================================
============================================================================================================================================================*/
@media (min-width: 769px) {
    header{
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        transition: 500ms;
        z-index: 9999;
    }
    header .header-inner {
        margin: 0 auto;
        padding: 0 0 0 20px;
        width: var(--min-width);
        max-width: 100%;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        border-radius: 0 0 30px 20px;
        background-color: var(--color-main);
    }
    header .logo-wrap{
        display: flex;
        align-items: center;
        gap: 0 20px;
    }
    header .logo-wrap p{
        width: 14em;
        font-size: 1.6rem;
        font-weight: var(--weight-black);
        color: #fff;
    }
    header .logo{
        margin: 20px 0;
        width: 80px;
        height: 98px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-image: url(../1_img/base/logo.svg);
        transition: 500ms;
    }
    header .logo a{
        width: 100%;
        height: 100%;
        display: block;
        font-size: 0;
        color: transparent;
    }
    /* 基本のメニュー */
    header .nav-wrap{
        display: flex;
        align-items: center;
    }
    header nav {
        height: 100%;
    }
    header nav ul.menu-base{
        height: 100%;
        display: flex;
        position: relative;
        gap: 0;
    }
    header nav ul.menu-base > li{
        height: 100%;
        transition: 500ms;
    }
    header nav ul.menu-base > li:last-child{
        border-radius: 0 0 20px 0;
    }
    header nav ul.menu-base > li a:hover{
        opacity: 0.6;
    }
    header nav ul.menu-base > li.home{
        display: none;
    }
    header nav ul.menu-base > li > a{
        padding: 0 15px;
        height: 100%;
        display: flex;
        align-items: center;
        color: #fff;
        opacity: 1;
        transition: 500ms;
    }
    header nav ul.menu-base > li > a span{
        display: block;
        text-align: center;
    }
    header nav ul.menu-base > li > a span[lang="en"]{
        font-size: 2rem;
        font-weight: var(--weight-bold);
    }
    header nav ul.menu-base > li > a span[lang="ja"]{
        font-size: 1rem;
        font-weight: var(--weight-bold);
    }
    /* サブメニュー */
    header nav ul.menu-sub{
        width: calc(100% - 20px);
        position: absolute;
        top: calc(100%);
        left: 0;
        background-color: var(--color-sub);
        border-radius: 0 0 10px 10px;
        opacity: 0;
        transition: 500ms;
        pointer-events: none;
    }
    header nav ul.menu-base li:hover ul.menu-sub{
        opacity: 1;
        pointer-events: all;
    }
    header nav ul.menu-sub li a {
        padding: 10px;
        display: block;
        color: var(--color-font);
        font-size: 1.2rem;
        line-height: 1.6;
    }
    header nav ul.menu-sub li + li{
        border-top: 1px solid var(--color-font);
    }
    /*======== トップのスクロール時と下層 だけの設定 =========*/
    .top header.on .logo,
    .underlayer header .logo{
        width: 50px;
        height: 61px;
    }
}

@media (max-width: 900px) and (min-width: 768px) {
    header .logo-wrap p{
        width: 14em;
        font-size: 1.4rem;
    }
}

/*==============================================================================

	header スマホ

==============================================================================*/
@media all and (max-width: 768px) {
    header{
        padding: 5px 10px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        transition: 800ms;
        z-index: 9999;
    }
    header .logo-wrap{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 15px;
        opacity: 0;
        pointer-events: none;
        transition: 500ms;
    }
    header.on .logo-wrap{
        opacity: 1;
        pointer-events: all;
    }
    header .logo-wrap p{display: none;}
    header .logo{
        width: 152px;
        height: 37px;
    }
    header .logo a{
        width: 100%;
        height: 100%;
        display: block;
        font-size: 0;
        color: transparent;
        background: url(../1_img/base/logo-white-horizontal.svg) no-repeat top center / 100% auto;
        filter: drop-shadow(2px 2px 2px var(--color-main));
    }
    header .nav-wrap{
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        transition: 800ms;
        z-index: 9999;
        background-color: #fff;
        filter: drop-shadow(0px -5px 5px rgba(135, 135, 135, 0.1));
        padding: 0 10px;
        transform: translateY(calc(100% + 21px));
        transition: transform 500ms;
    }
    header .nav-wrap.on{
        transform: translateY(0);
    }
    header .nav-wrap::before{
        content:"";
        width: 76px;
        height: 20px;
        position: absolute;
        left: 50%;
        top: -20px;
        background: url(../1_img/base/deco-cream-white.svg);
        transform: translateX(-50%);
        filter: drop-shadow(0px -3px 2px rgba(135, 135, 135, 0.1));
    }
    header nav ul.menu-base{
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
    }
    header nav ul.menu-base > li{
        width: calc(100% / 5);
    }
    header nav ul.menu-base > li > a{
        padding-top: 14px;
        display: block;
        position: relative;
        font-size: 1rem;
        letter-spacing: 0.15em;
        line-height: 1.3;
        text-align: center;
        background-size: 20px auto;
        background-position: top 9px center;
        background-repeat: no-repeat;
        color: var(--color-font);
    }
    header nav ul.menu-base > li a::before{
        content: "";
        position: absolute;
        width: 10px;
        aspect-ratio: 1 / 1;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 100%;
    }
    header nav ul.menu-base li:nth-child(1) a::before{
        background-color: #f28e2d;
    }
    header nav ul.menu-base li:nth-child(2) a::before{
        background-color: #4c7193;
    }
    header nav ul.menu-base li:nth-child(3) a::before{
        background-color: #b09967;
    }
    header nav ul.menu-base li:nth-child(4) a::before{
        background-color: #7aa662;
    }
    header nav ul.menu-base li:nth-child(5) a::before{
        background-color: #ff8371;
    }
}

/*============================================================================================================================================================
==============================================================================================================================================================

	3.footer

==============================================================================================================================================================
============================================================================================================================================================*/
.fix-store{
    position: fixed;
    right: 20px;
    bottom: 20px;
    transition: 500ms;
    z-index: 9999;
}
.fix-store img{
    width: 100px;
    height: auto;
}

footer {
    padding: 120px 0 30px;
    position: relative;
    color: #fff;
    background-color: var(--color-main);
}
/*================================    footer h2   ================================*/
footer h2{
    position: relative;
    font-size: 2.8rem;
}
footer h2::after{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
}
footer h2 span{
    padding-right: 30px;
    display: inline-block;
    position: relative;
    z-index: 2;
    background-color: var(--color-main);
}
/*================================    footer-top   ================================*/
footer .footer-top h2{
    margin-bottom: 30px;
}
/*================================    footer-btm   ================================*/
footer .footer-btm{
    margin-top: 70px;
}
footer .footer-btm h2{
    margin-bottom: 40px;
}
footer .footer-btm h3{
    font-size: 2rem;
    font-weight: var(--weight-bold);
}
footer .footer-btm address{
    margin-top: 25px;
    font-size: 1.6rem;
}
footer .footer-btm .footer-contact{
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    gap: 0 60px;
}
footer .footer-btm .footer-contact > div{
    width: calc((100% - 60px) / 2);
    text-align: center;
}
footer .footer-btm .footer-contact > div span{
    padding: 0 35px;
    display: inline-block;
    position: relative;
    font-size: 1.8rem;
}
footer .footer-btm .footer-contact > div span::before,
footer .footer-btm .footer-contact > div span::after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 16px;
    aspect-ratio: 16 / 24;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
footer .footer-btm .footer-contact > div span::before{
    left: 0;
    background-image: url(../1_img/base/fukidashi-white-l.svg);
}
footer .footer-btm .footer-contact > div span::after{
    right: 0;
    background-image: url(../1_img/base/fukidashi-white-r.svg);
}
footer .footer-btm .footer-contact a{
    margin-top: 20px;
    padding: 20px;
    width: 100%;
    display: block;
    position: relative;
    font-size: 2.2rem;
    color: var(--color-main);
    font-weight: var(--weight-bold);
    background-color: var(--color-sub);
}
footer .footer-btm .footer-contact a::before{
    content:"";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
footer .footer-btm .footer-contact a.tel::before{
    width: 19px;
    height: 24px;
    left: 45px;
    background: url(../1_img/base/icon-tel.svg) no-repeat center /100% auto;
}
footer .footer-btm .footer-contact a.mail::before{
    width: 21px;
    height: 15px;
    left: 55px;
    background: url(../1_img/base/icon-mail.svg) no-repeat center /100% auto;
}
/*================================    footer-nav   ================================*/
footer .footer-nav{
    margin-top: 40px;
}
footer .footer-nav ul li{
    padding-left: 25px;
    position: relative;
}
footer .footer-nav ul li::before{
    content: "";
    width: 10px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #fff;
}
footer .footer-nav ul li + li{
    margin-top: 5px;
}
footer .footer-nav a{
    font-size: 1.6rem;
    color: #fff;
}
/*================================    footer-poricy   ================================*/
footer .footer-poricy{
    margin-top: 70px;
}
footer .footer-poricy h2{
    margin-bottom: 30px;
}
footer .footer-poricy p{
    font-size: 1.4rem;
    color: #fff;
    font-weight: var(--weight-light);
}
/*================================   copyright   ================================*/
footer #copyright {
    margin-top: 50px;
    text-align: center;
}

/*==============================================================================

	footer スマホ

==============================================================================*/
@media all and (max-width: 768px) {
    .fix-store{
        right: 10px;
        bottom: 10px;
    }
    .fix-store.on{
        bottom: 90px;
    }
    .fix-store img{
        width: 70px;
    }
    footer {
        padding: 40px 0 calc(40px + 53px);
    }
    footer .inner{
        padding: 0 30px;
    }
    /*================================    footer h2   ================================*/
    footer h2{
        font-size: 1.8rem;
    }
    /*================================    footer-top   ================================*/
    footer .footer-top h2{
        margin-bottom: 30px;
    }
    footer .footer-top h2 img{
        width: 172px;
    }
    /*================================    footer-btm   ================================*/
    footer .footer-btm{
        margin-top: 30px;
    }
    footer .footer-btm h2{
        margin-bottom: 30px;
    }
    footer .footer-btm address{
        margin-top: 15px;
        font-size: 1.2rem;
    }
    footer .footer-btm .footer-contact{
        margin-top: 30px;
        gap: 0 10px;
    }
    footer .footer-btm .footer-contact > div{
        width: calc((100% - 10px) / 2);
        position: relative;
    }
    footer .footer-btm .footer-contact > div span{
        padding: 0 20px;
        position: absolute;
        bottom: 100%;
        left: 50%;
        white-space: nowrap;
        transform: translateX(-50%);
        font-size: 1rem;
    }
    footer .footer-btm .footer-contact > div span::before,
    footer .footer-btm .footer-contact > div span::after{
        width: 10px;
    }
    footer .footer-btm .footer-contact > div span::before{
        left: 0;
        background-image: url(../1_img/base/fukidashi-white-l.svg);
    }
    footer .footer-btm .footer-contact > div span::after{
        right: 0;
        background-image: url(../1_img/base/fukidashi-white-r.svg);
    }
    footer .footer-btm .footer-contact a{
        margin-top: 10px;
        padding: 10px 10px 10px 40px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: left;
        text-align: left;
        line-height: 1.2;
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }
    footer .footer-btm .footer-contact a.tel::before{
        width: 12px;
        height: 16px;
        left: 15px;
    }
    footer .footer-btm .footer-contact a.mail::before{
        width: 14px;
        height: 10px;
        left: 15px;
    }
    /*================================    footer-nav   ================================*/
    footer .footer-nav{
        margin-top: 30px;
    }
    footer .footer-nav ul li::before{
        width: 7px;
        height: 10px;
    }
    footer .footer-nav a{
        font-size: 1.2rem;
    }/*================================    footer-poricy   ================================*/
    footer .footer-poricy{
        margin-top: 40px;
    }
    footer .footer-poricy h2{
        margin-bottom: 20px;
    }
    footer .footer-poricy p{
        font-size: 1.2rem;
    }
    /*================================   copyright   ================================*/
    footer #copyright {
        margin-top: 30px;
    }
}



/*============================================================================================================================================================
==============================================================================================================================================================

	4.下層

==============================================================================================================================================================
============================================================================================================================================================*/

/*================================   下層 title   ================================*/
#title {
    padding: 150px 0 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: #fff;
    background-size: cover;
    background-position: center;
}
#title span {
    display: block;
    color: var(--color-main);
    font-weight: var(--weight-bold);
}
#title span[lang="ja"] {
    margin-top: 0px;
    font-size: 1.8rem;
}
#title span[lang="en"] {
    font-size: 4.3rem;
    letter-spacing: 0.2em;
}
#title .inner {
    width: 1200px;
}
/*================================   下層 title-lv2   ================================*/
.title-lv2{
    text-align: center;
    font-size: 1.8rem;
    font-weight: var(--weight-bold);
}

/*================================   下層　content   ================================*/
.underlayer .content{
    padding: 100px 0;
}
.underlayer .content > section + section{
    margin-top: 100px;
}

/*==============================================================================

	下層 スマホ

==============================================================================*/
@media all and (max-width: 768px) {
    /*================================   title   ================================*/
    #title {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    #title span[lang="ja"] {
        margin-top: 0px;
        font-size: 1.2rem;
    }
    #title span[lang="en"] {
        font-size: 3rem;
    }
    #title .inner {
        width: 100%;
    }
    /*================================   下層 content   ================================*/
    .underlayer .content{
        padding: 50px 0;
    }
    .underlayer .content > section + section{
        margin-top: 50px;
    }
    }

/*============================================================================================================================================================
==============================================================================================================================================================

	5.パンクズ

==============================================================================================================================================================
============================================================================================================================================================*/
#pankuzu {
    margin-top: 10px;
}
#pankuzu ul {
    margin: auto;
    width: var(--min-width-s);
    display: flex;
    list-style: none;
    font-size: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
#pankuzu li {
    margin: 0;
    font-weight: 400;
}
#pankuzu li:not(:last-child) {
    margin-right: 13px;
}
#pankuzu li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 15em;
}
#pankuzu li:not(:first-child) {
    padding-left: 22px;
    position: relative;
}
#pankuzu li:not(:first-child)::before {
    content: ">";
    position: absolute;
    font-size: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    line-height: 0;
}


/*============================================================================================================================================================
==============================================================================================================================================================

	6.404ページ

==============================================================================================================================================================
============================================================================================================================================================*/
#nopage {
    margin: 0 auto;
    padding: 200px 0px;
    width: 980px;
    text-align: center;
    font-size: 1.8rem;
}
#nopage .btn_more {
    margin-top: 50px;
}

/*==============================================================================

	404ページ スマホ

==============================================================================*/
@media all and (max-width: 768px) {
    #nopage {
        padding: 100px 20px;
        width: 100%;
        font-size: 1.8rem;
    }
    #nopage .btn_more {
        margin-top: 30px;
    }
}



/*============================================================================================================================================================
==============================================================================================================================================================

	7.ja・アニメーション用

==============================================================================================================================================================
============================================================================================================================================================*/

/*==============================================================================
	fancybox
==============================================================================*/
.fancybox__container{
    z-index: 9999!important;
}


/*==============================================================================
	カルーセル
==============================================================================*/
.carousel-wrap{
    height: 200px;
    overflow: hidden;
}
.carousel-wrap .carousel-content{
    display: flex;
    height: 100%;
    list-style: none;
    animation: loop-slide 100s infinite linear 0s both;
    gap: 10px;
}
.carousel-wrap.reverse .carousel-content{
    animation: loop-slide_rev 100s infinite linear 0s both;
}
.carousel-wrap .carousel-content li{
    height: 100%;
    aspect-ratio: 1 / 1;
}
/*
animation-name: loop-slide;アニメーション名
animation-duration: 20s;開始から終了までの所要時間
animation-iteration-count: infinite;アニメーションのループ回数
animation-timing-function: linear;動きの加減速
animation-delay: 1s;　アニメーションが開始するまでの遅延時間
animation-fill-mode: both;アニメーション開始前・終了後の挙動
*/

/* hoverで止めたいとき
.slide-paused:hover .carousel {
animation-play-state: paused!important;
}
*/
@keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes loop-slide_rev {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}
/*================================   カルーセル スマホ   ================================*/
@media all and (max-width: 768px){
    .carousel-wrap{
        height: 110px;
    }
    .carousel-wrap .carousel-content{
        animation: loop-slide 30s infinite linear 0s both;
    }
    .carousel-wrap.reverse .carousel-content{
        animation: loop-slide_rev 30s infinite linear 0s both;
    }
}