@charset "utf-8";

/* CSS Document */

* {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    /*scroll-padding-top: 100px;*/
}

body {
    height: 100%;
    font-family: "M PLUS 1p";
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.2vw;
    line-height: 1.68;
    -webkit-text-size-adjust: 100%;
    overflow-y: hidden scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: #fff;
    color: #3a3a3a;
}

.wf-mplus1p {
    font-family: "M PLUS 1p";
}

body ::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
}

a.anchor {
    display: block;
    padding-top: 60px;
    margin-top: -60px;
    border: #3b2404 1px solid;
}

img {
    max-width: 100%;
}

h1 {
    color: #fff;
    letter-spacing: 0.15vh;
    font-weight: bold;
    margin: 2% 0;
}

h2 {

    letter-spacing: 0.15vh;
    font-weight: bold;
    margin: 2% 0;
    color: #1ca0c9;
}

h3 {
    width: fit-content;
    color: #2d2a2a;
    /**background-color: #0B0F51;**/
    letter-spacing: 0.15vh;
    font-weight: bold;
    margin: 2% 0;
    padding: 1%;
    border-radius: 5%;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 1.8vw;
    letter-spacing: 0.15vh;
    font-weight: bold;
    margin: 2% 0;
}

.txt_blu {
    color: #1ca0c9;
    font-weight: bold;
    font-size: 1.8vw;
}

/*menu_PC--------------------------------------*/

.header {
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header_02 {
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #200101;

}

.nav_sz {
    width: 70%;
    /*border: #000 1px solid;*/
    position: absolute;
    left: -5%;

}



.header_sp {
    display: none;
}

.logo-bx {
    margin-top: 5%;
    margin-left: 15%;
    width: 35vw;
}

.header__logo {
    transition: .2s;
}

.h_ttl {
    position: absolute;
    left: 15%;
    top: 13%;
    font-family: "Montserrat", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 2.8vw;
    color: #ffffff;
    font-weight: bold;
}

.global-nav {
    text-align: right;
    padding-right: 1%;
    height: 100%;
    display: flex;
    align-items: center;
}

.global-nav__list {
    height: 100%;
    display: flex;
    align-items: center;
}

.global-nav__list--item {
    display: inline-block;
    padding: 0 30px;
    /**border-right: #ddd 1px solid;**/
    font-family: "Montserrat", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 1.18vw;
    color: #ffffff;
    font-weight: bold;
}

.global-nav__list--item a {
    letter-spacing: 2px;
    text-align: center;
    display: flex;
    flex-flow: column;
    color: #ffffff;
}

.global-nav__list--item a:hover {
    color: #F3D738;
}


.global-nav__list--item span {
    margin-top: .1vw;
    font-size: .7vw;
    color: #ffffff;
}


/*li a:link,
a:visited {
    color: #202130;
    text-decoration: none;
}*/


/*li a:hover {
    color: #202130;
    -webkit-transition: all .3s;
    transition: all .3s;
}*/

li:last-child {
    border-right: none;
}


/*sp-nav-menu*/

.sp-menu {
    display: none;
}


/*menu SP*/

.mn_bx {
    position: fixed;
    z-index: 2000;
    background-color: rgba(39, 38, 38, 0.384);
}


/*navi*/

nav {
    width: 50%;
    height: 70px;
    position: fixed;
    margin-left: 50%;
}

.drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 50px;
    height: 50px;
    padding: 1em 1em;
    /*background-color: #000;*/
    margin: 0 0 0 auto;
}


/*toggle*/

.navbar_toggle {
    margin-top: 15px;
    z-index: 9999;
}

.navbar_toggle_icon {
    position: relative;
    display: block;
    height: 2px;
    width: 30px;
    background: #3a3a3a;
    -webkit-transition: ease .5s;
    transition: ease .5s;
}

.navbar_toggle_icon:nth-child(1) {
    top: 0;
}

.navbar_toggle_icon:nth-child(2) {
    margin: 8px 0;
}

.navbar_toggle_icon:nth-child(3) {
    top: 0;
}


/*OPEN時の動き*/

.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu {
    -webkit-transform: translateX(-100%);
    transform: translateX(+100%);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    z-index: 1000;
    background-color: #4d401971;
    height: 120vh;
    margin-top: -20vh;
    text-align: left;
}

.menu ul {
    padding-top: 30vh;
    list-style: none;
}

.menu li {
    padding: 2em;
    list-style: none;
    color: #F6F6F6;
    font-weight: bold;
}

.mn_pd1 {
    display: block;
    width: 60%;
    border-bottom: 1px solid #CCC;
    margin-left: 10%;
}

.menu li a {
    color: #F6F6F6;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
}


/*OPEN時の動き*/

.menu.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/*----------------------*/

#howto {
    padding-top: 60px;
    margin-top: -60px;
}

#shop {
    padding-top: 60px;
    margin-top: -60px;
}

#msge {
    padding-top: 60px;
    margin-top: -60px;
}

#contact {
    padding-top: 60px;
    margin-top: -60px;
}



/*-----parallax--------------------------------------*/


/*固定する背景*/

.parallax_content {
    height: 100vh;
    min-height: 400px;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


.front_content {
    padding-top: 10%;
    width: 100%;
    background-image: url(../img/bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}



.front_content01 {
    /* height: 100vh;*/
    /*margin: 0 auto;*/
    width: fit-content;
    padding: 60px;
    background-color: #fcfdc7;
    color: #2a2929;
    background-image: url(../img/bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.front_content02 {
    /* height: 100vh;*/
    /*margin: 0 auto;*/
    width: fit-content;
    padding: 60px;
    background-color: #08b4a6;
    color: #fff;
    background-image: url(../img/bg2.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


.front_content03 {
    /* height: 100vh;*/
    /*margin: 0 auto;*/
    width: fit-content;
    padding: 60px;
    background-color: #f6fef8;
    color: #2a2929;
}

.front_content04 {
    /* height: 100vh;*/
    /*margin: 0 auto;*/
    width: fit-content;
    padding: 60px;
    background-color: #08b4a6;
    color: #fff;
        background-image: url(../img/bg2.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.parallax_content.img_bg_01 {
    background-image: url(../img/10.jpg);
}

.parallax_content.img_bg_02 {
    background-image: url();
}

.parallax_content.img_bg_03 {
    background-image: url(../img/15.jpg);
}

.parallax_content.img_bg_04 {
    background-image: url(../img/18.jpg);
}

.parallax_content.img_bg_05 {
    background-image: url(../img/19.jpg);
}

.parallax_content.img_bg_06 {
    background-image: url(../img/20.jpg);
}

.v_box {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.child {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.child video {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: scale-down;
}

.child img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: scale-down;
}



/*contents*/

.side_bt {
    background-color: #bebcb9a1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 15vh;
    right: 0;
    font-size: 0.3vw;
    color: #fff;
}

.side_bt:hover {
    background-color: #797876a1;
    transition: all 0.3s ease;
}

.cont_bx {
    /*border: #3a3a3a 1px solid;*/
    margin: 0 auto;
    width: 70%;
    justify-content: space-between;
    align-items: center;

}

.cont_bx2 {
    /*border: #3a3a3a 1px solid;*/
    margin: 0% 5%;
    padding: 5% 5%;
    /*height: 100vh;*/
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    background-color: #faf8f4;
}

.cont_bx3 {
    /*border: #3a3a3a 1px solid;*/
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
    align-items: center;

}


.lg_hl {
    text-align: left;
    margin-bottom: 2%;
    border-bottom: #bdbaba 2px solid;
}

.cont_bx p {
    margin: 3% 0;
}

.cont_bx2 p {
    margin: 1% 0;
}

.l_bx {
    margin: 0 auto;
    width: 100%;
}

.l_bx li {
    list-style: none;
}

.r_bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /*border: #aa1c1c 1px solid;*/
}

.r_bx img {
    margin: 2% 0;
    width: 46%;
    border-radius: 5% 5%;
}


.ct_line {
    border-right: 1px solid #3a3a3a;
    width: 10px;
    height: 100vh;
}

.ct_line2 {
    width: 10%;
    height: 100vh;
}


/*hou-to*/



.cont_bx3 {
    /*border: #3a3a3a 1px solid;*/
    width: 80%;
    margin: 0% auto;
    padding: 1% 5%;
    display: flex;
    justify-content: center;
}

.hd_bx {
    text-align: center;
    border-bottom: #202130 2px solid;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 3%;
    width: 45%;
}

.l_bx2 {
    display: flex;
    align-items: center;
    width: 50%;
    /*border: rgb(100, 23, 23) 1px solid;*/
}

.bx2_in {
    /*border: rgb(36, 153, 25) 1px solid;*/
    width: 20%;
}

.l_bx2_txt {
    margin: 5%;
    /*border: rgb(36, 153, 25) 1px solid;*/
    width: 70%;
}

.coution {
    font-size: 0.7vw;
}


/*SHOP*/

.os_bt {
    margin-top: 10%;
}

/*******************************/


.inbox04 {
    margin-top: 15%;
    text-align: center;
    width: 100%;
    /*background-color: #fff;*/
}

.inbox04 h2 {
    text-align: center;
    width: 100%;

}

.onshop_btn {
    display: block;
    background-color: #08b4a6;
    width: 35%;
    padding: 15px;
    margin: 0 auto;
    color: #fff !important;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6vw;
    letter-spacing: .5pt;
    transition: .3s ease-out;
}

.onshop_btn:hover {
    color: #485a69 !important;
    border-radius: 20px;
    letter-spacing: .2pt;
    background-color: #fff;
    border: 2px solid #485a69;
}



/*----------------------------------------*/

/*contct*/


/*--------------------*/

#contact {
    top: -100;
}

.con_ttl {
    top: 4%;
    width: 100%;
    height: 100px;
    text-align: center;
}

.cntc-txt {
    text-align: left;
    width: 100%;
    margin: 0% auto;
    color: #020202;
    margin: 5% 0;
    letter-spacing: .6;
}

.cntc-txt p {
    margin-bottom: 3%;
    text-align: center;
}

.cntc-txt a {
    color: #020202;
    text-decoration: underline;
}

.cntc-txt a:link {
    color: #020202;
}

.cntc-txt a:visited {
    color: #020202;
}

.cntc-txt a:hover {
    color: #020202;
}

.cntc-txt a:active {
    color: #020202;
}

#formWrap {
    width: 80%;
    margin: 0 auto;
}

.formTable {
    margin: 0 auto;
}

table.formTable th,
table.formTable td {
    width: 100%;
    display: block;
}

table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
}

input[type="text"],
textarea {
    width: 100%;
    margin: 0 auto;
    padding: 5px 0;
    font-size: 110%;
    display: block;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    width: 20%;
    height: 40px;
    margin: 20px;
}

.con_bt {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    /*border: #000 1px solid;*/
}

::placeholder {
    font-size: 0.8vw;
    color: #b1acac;
}


/*company*/


/*------------------------------------*/

.su_bx2 {
    width: 73%;
    margin: 0 auto;
    margin-top: 15%;
    letter-spacing: 2pt;
}

.su_bx3 {
    width: 73%;
    height: 100vh;
    margin: 0 auto;
    margin-top: 15%;
    padding-bottom: 10%;
    letter-spacing: 2pt;

}

.su_bx3 ul {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 15%;
}



.demo_box {
    display: flex;
    padding: 5px;
    height: auto;
    border-bottom: #fff 1px solid;
    width: 80%;
    margin: 0 auto;
    border-bottom: #3a3a3a 1px solid;
}

.demo_item {
    margin-top: 3%;
    color: #070707;
    width: 20%;
    font-size: 1.4vw;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.demo_item2 {
    margin-top: 3%;
    margin-left: 3%;
    color: #070707;
    width: 75%;
    font-size: 1.4vw;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/*footer*/

.footer_bxt {
    margin-top: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    background-color: #1a1a1a;
    text-align: center;
}

.footer_in {
    display: flex;

    margin: 0 auto;
    color: #ffffff;
    font-size: 0.8vw;
    text-align: center;
}

.footer_logo {
    width: 15%;
    padding: 2%;
}

.ft_menu {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 5%;
    width: 50%;
    font-family: "Montserrat", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 1.08vw;
    color: #ffffff;
    font-weight: bold;
    ;
}

.ft_menu li {
    margin-right: 15px;
    margin-bottom: 5px;
    border-bottom: 2px #e0dfdc solid;

}

.ft_menu li a:hover {
    border-bottom: 5px #ecece9 solid;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: .6;
}



.ft_menu a:link,
a:visited {
    color: #f9f9f9;
    text-decoration: none;
}

.cp_sns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    margin-right: 2%;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #fff;
}


/*pp*/

.pp_txt {
    margin-bottom: 3%;
    font-size: .8vw;
}

.pp_txt p {
    margin-bottom: 3%;
}

.pp_sig {
    text-align: left;
    width: 100%;
    height: 150px;
    background-color: rgba(9, 59, 75, 0.596);
}


/*animation */

.fadein {
    animation-name: fadeInAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadein0 {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.f_box {
    /*border: 1px solid #333;*/
    transform: translatey(50px);
    opacity: 0;
    transition: opacity 1s, transform 0.5s;
}

.fadein2 {
    opacity: 1;
    transform: translateX(0);
}

.f_box2 {
    /*border: 1px solid #333;*/
    transform: translateX(-100px);
    opacity: 0;
    transition: opacity 1s, transform 0.5s;
}

.fadein21 {
    opacity: 1;
    transform: translateX(0);
    animation-delay: 1s;
}

.f_box3 {
    /*border: 1px solid #333;*/
    transform: translateX(100px);
    opacity: 1;
    transition: opacity 1s, transform 0.5s;
}

.fadein23 {
    opacity: 1;
    transform: translateX(0);
    animation-delay: 2s;
}

.f_box4 {
    /*border: 1px solid #333;*/
    transform: translatey(50px);
    opacity: 0;
    transition: opacity 1s, transform 0.5s;
}

.fadein24 {
    animation-delay: 3s;
    opacity: 1;
    transform: translateX(0);
}


/* ラッパー */

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}


/* スライド */

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    margin-top: 4%;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}


/* ナビゲーションボタン */

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1* var(--swiper-navigation-size) / 2);
    z-index: 10;
    padding: 0 15% 0 15%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    --swiper-navigation-color: rgb(0, 0, 0);
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}


/* ページネーション */

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}


/* ページネーションブレット */

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}