@charset "UTF-8";

/* ==========================================================================
   Base
========================================================================== */
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 4vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

@media only screen and (min-width: 480px) {
  html {
    font-size: 87.5%; }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  line-height: 1.8;
  color: #777; }

@media only screen and (min-width: 992px) {
  html {
    font-size: 100%; }
}
@media only screen and (min-width: 1440px) {
  html {
    font-size: 125%; }
}

/* ======================
   Animation
====================== */
.fadeIn { opacity: 0; }
.show .fadeIn,
.fadeIn.show { animation: fadeIn 1s .4s forwards; }
.fadeInUp { opacity: 0;
            transform: translateY(5vh); }
.show .fadeInUp,
.fadeInUp.show { animation: fadeInUp 1s .4s forwards; }

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeInUp {
  0%   { opacity: 0;
         transform: translateY(5vh); }
  100% { opacity: 1;
         transform: translateY(0); }
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  background-color: #FFF;
  background-image: url(../img/element/03.png);
  background-repeat: no-repeat;
  background-position: 10% 10%;
  background-size: 10vw;
  width: 100vw;
  position: relative;
  z-index: 999;
  transition: .4s; }

#header__logo {
  width: 200px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  z-index: 999;
  transition: opacity .2s ease-in-out;
}
#header__logo a,
#header__logo span {
  padding: 0 15px;
}
#header__logo img,
#header__logo svg {
  display: block;
}

@media only screen and (min-width: 992px) {
  #siteHeader {
    background-image: url(../img/element/01.png), url(../img/element/02.png), url(../img/element/03.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: right 20vw top 40%, right 10vw bottom 30%, 20vw 20%;
    background-size: 10vw, 10vw, 5vw;
    padding-bottom: 15px;
  }
  #siteHeader.hasMenu {
    padding-bottom: 70px;
  }
  #siteHeader #header__logo {
    padding: 30px 0 15px;
    width: 340px;
    height: 220px;
  }
}

/* ==========================================================================
   Navigation
========================================================================== */
nav ul {
  list-style-type: none;
  border-bottom: 0;
  margin: 0;
  padding: 0; }
nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  text-decoration: none;
  line-height: 1.25; }
nav ul li a span,
nav ul li a em {
  display: block;
  font-style: normal; }


.gNav {
  position: relative;
  z-index: 99;
}

.gNav .gNav__inner{
  background-color: rgba(255,255,255,0.9);
}

.gNav ul li a:hover {
  color: #444;
  text-decoration: none;
}


/* Main menu */
.gNav .main-menu {
  font-size: 1.125rem;
  letter-spacing: .05em;
}
.gNav .main-menu a {
  display: block;
  padding: 0 30px;
  line-height: 40px;
}

/* Login menu */
.gNav .login-menu {
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: .875rem;
  letter-spacing: .05em;

  display: none !important;
}
.gNav .login-menu li a {
  padding: 0 10px;
  line-height: 40px;
}

/* SNS menu */
.gNav .sns-menu {
  padding: 0 20px;
}
.gNav .sns-menu li a {
  padding: 0 10px;
  line-height: 40px;
}
.gNav .sns-menu li a .icon::before {
  width: 1.5rem;
  height: 1.5rem;
}


/* Nav Btn */
#navBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 111;
}
#navBtn .navBtn__trigger {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 70px;
  height: 70px;
  padding: 18px;
  margin-left: auto;
  position: relative;
}
#navBtn i{
  display: block;
  background: currentColor;
  width: 34px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  right: 0;
  left: 0;
  margin: -1px auto 0;
  transition: transform .3s;
}
#navBtn i:nth-of-type(1){
  top: 27px;
}
#navBtn i:nth-of-type(2){
  top: 35px
}
#navBtn i:nth-of-type(3){
  top: 43px
}


#navBtn.on i{
  width: 30px;
}
#navBtn.on i:nth-of-type(1){
  top: 35px;
  transform: rotate(45deg);
}
#navBtn.on i:nth-of-type(2){
  transform: scaleX(0);
}
#navBtn.on i:nth-of-type(3){
  top: 35px;
  transform: rotate(135deg);
}


@media only screen and (max-width: 991px) {
  .gNav{
    width: 220px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 140px;

    opacity: 0;
    transform: translateX(100%);
    transition: transform .4s, opacity .4s;
  }
  #siteHeader.fixed .gNav {
    position: fixed;
    margin-top: 0;
  }
  .gNav .gNav__inner {
    transition: .4s;
  }
  #siteHeader.fixed .gNav .gNav__inner {
    padding-top: 40px;
  }
  
  .gNav.on{
    transform: translateX(0);
    opacity: 1;
  }
  .gNav .login-menu {
    margin: 20px 30px 15px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }
  .gNav nav {
    padding-top: 30px;
    padding-bottom: 30px;
    opacity: 0;
    transform: translateX(30px);
    transition: .6s .2s ease;
  }
  .gNav.on nav {
    opacity: 1;
    transform: translateX(0);
  }
}

@media only screen and (min-width: 992px) {
  .gNav{
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  #siteHeader.fixed .gNav {
    position: fixed;
    top: 0;
    bottom: auto;
    border-bottom: 1px solid #EEE; }
  .gNav nav {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .gNav .main-menu {
    margin: 15px 0;
    display: flex;
    justify-content: center;
  }
  .gNav .login-menu {
    margin: 15px 0;
    position: fixed;
    top: 0;
    right: 15px;
  }
  .gNav .sns-menu {
    display: none;
  }
  .gNav .login-menu li a {
    padding: 0 15px;
  }
  #navBtn {
    display: none;
  }
}

/* ==========================================================================
   Main
========================================================================== */
.wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  background-color: #A5D8DC;
  color: #FFF;
  padding-top: 40px;
  padding-bottom: 25px;
  clear: both;
  overflow: hidden; }
#siteFooter a {
  display: inline-block;
  line-height: 1.8;
}
#siteFooter a:hover {
  opacity: .5;
}

#siteFooter .footer-bottom {
  text-align: center;
}
#siteFooter .footer-bottom__menu {
  margin-bottom: 30px;
}
#siteFooter .footer-bottom__menu li {
  margin: 5px 0;
}

#siteFooter .copyright {
  margin: 15px 0;
  font-size: .75rem; }

#pageTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255,255,255,0.9);
  border-radius: 100%;
  visibility: hidden;
  opacity: 0;
  transition: .4s;
}
#pageTop.on {
  visibility: visible;
  opacity: 1;
}
#pageTop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: .75rem;
  height: .75rem;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  transform: translate(-50%,-25%) rotate(-45deg);
}

@media only screen and (min-width: 768px) {
  #siteFooter {
    padding-top: 60px; }
  #siteFooter .footer-bottom__menu {
    margin-bottom: 60px;
  }
  #siteFooter .footer-bottom__menu li {
    border-right: 1px solid currentColor;
    margin: 0;
  }
  #siteFooter .footer-bottom__menu li:first-of-type {
    border-left: 1px solid currentColor;
  }
  #siteFooter .footer-bottom__menu li a {
    padding: 0 15px;
  }
}


@media only screen and (min-width: 992px) {
  #siteFooter {
    font-size: .85rem; }
}


/* ==========================================================================
   Layout
========================================================================== */
ul.row {
  list-style-type: none;
  padding: 0;
}
.section {
  padding-top: 45px;
  padding-bottom: 45px;
}
section.section {
  border-top: 1px solid #EEE;
}
.no-border {
  border: none !important;
}
.content {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 375px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }
}


.elem_01 {
  background-image: url(../img/element/01.png);
  background-repeat: no-repeat;
  background-position: right 10vw top 5vh;
  background-size: 20vw;
}
.elem_02 {
  background-image: url(../img/element/02.png);
  background-repeat: no-repeat;
  background-position: right -5vw top 5vh;
  background-size: 30vw;
}
.elem_03 {
  background-image: url(../img/element/03.png), url(../img/element/03.png);
  background-repeat: no-repeat, no-repeat;
  background-position: right 15vw top 5vh, left 5vw bottom 5vh;
  background-size: 12vw, 15vw;
}

@media only screen and (min-width: 992px) {
  .elem_01 {
    background-position: 30vw 7.5vh;
    background-size: 10vw;
  }
  .elem_02 {
    background-position: right -5vw top 5vh;
    background-size: 25vw;
  }
  .elem_03 {
    background-position: 30vw 7.5vh, left 5vw bottom 5vh;
    background-size: 7.5vw, 10vw;
  }
}

.page__header {
  border-top: 1px solid #EEE;
  padding-top: 45px;
  position: relative;
}
.page__header .inner {
  padding-left: 1.5rem; 
  border-left: 2px solid currentColor;
}
.page__header .ttl {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
  text-transform: uppercase;
}
.page__header .ja_ttl {
  font-size: .8rem;
  line-height: 1;
  letter-spacing: .2em;
  color: #BDBDBD;
}
@media only screen and (min-width: 992px) {
  .page__header {
    padding-top: 60px;
  }
}


.section__header {
  position: relative;
  margin-bottom: 45px;
}
.section__header .ttl {
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
.section__header .ttl::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: currentColor;
  margin-left: .2rem;
  margin-top: .5em;
}
@media only screen and (min-width: 992px) {
  .section__header {
    margin-bottom: 60px;
  }
}


/* ==========================================================================
   Typography
========================================================================== */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-weight: 400;
  line-height: 1.4;
  position: relative; }
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

.font1 {
  font-family: 'Helvetica Neue', 'Helvetica Neue', 'Work Sans', sans-serif;
}
.serif {
  font-family: '游明朝体', 'Yu Mincho', YuMincho, 'Noto Serif JP', serif;
}

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

.help-box {
  line-height: 1.5; }

.support {
  display: inline-block;
  font-size: .714rem;
  font-feature-settings: "palt";
}

@media only screen and (min-width: 992px) {
  .support {
    font-size: .625rem;
  }
}

@media only screen and (min-width: 1440px) {
  .support {
    font-size: .6rem;
  }
}

/* ==========================================================================
   Title
========================================================================== */
.ttl {
  line-height: 1.5;
  letter-spacing: .05em;
}
/* ==========================================================================
   Color
========================================================================== */


/* ==========================================================================
   Links
========================================================================== */
a {
  color: inherit;
  transition: .2s ease-in-out;
}
a.underline {
  border-bottom: 1px solid;
  display: inline-block;
}
a:active,
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Images
========================================================================== */
img {
  max-width: 100%;
  height: auto;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}
.cover {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.imgBox > .cover {
  width: 100%;
  height: 100%;
}
/* ==========================================================================
   Icon
========================================================================== */
.icon {
  display: inline-block;
  white-space: nowrap;
}
.icon::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: .5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.icon-instagram::before { background-image: url(../img/icon/instagram.svg); margin-right: 0; }
.icon-login::before { background-image: url(../img/icon/user.svg); }
.icon-cart::before { background-image: url(../img/icon/cart.svg); }

@media only screen and (min-width: 576px) {
  .icon::before {
    transform: translateY(-.1em);
  }
}
/* ==========================================================================
   Button
========================================================================== */
.btn {
  width: 15rem;
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  padding: 1.25em 1.5em;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  background-color: transparent;
  position: relative;
  transition: all .3s;
}
.btn:active,
.btn:focus,
.btn:hover {
  border-color: #80CCCE;
  background-color: #80CCCE;
  color: #FFF;
  box-shadow: none;
}
a:active span.btn,
a:focus span.btn,
a:hover span.btn {
  border-color: #80CCCE;
  background-color: #80CCCE;
  color: #FFF;
  box-shadow: none; 
}

.row .list .btn {
  width: 100%;
}

.btn-b {
  border-color: #80CCCE;
  background-color: #80CCCE;
  color: #FFF;
}
.btn.btn-b:active,
.btn.btn-b:focus,
.btn.btn-b:hover {
  border-color: #54BABA;
  background-color: #54BABA;
  color: #FFF;
  box-shadow: none;
}

/* ==========================================================================
   Badge
========================================================================== */
.badge {
  margin: 0 3px;
  padding: .4em 1.3em;
  font-size: 80%;
  font-weight: 400;
  border-radius: 0;
  vertical-align: top;
  border: 1px solid currentColor;
}
/* ==========================================================================
   Slick.js
========================================================================== */
body .slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
body .slider .slick-dots {
  background-color: #FFF;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
body .slider .slick-dots li {
  width: 36px;
  height: 20px;
}
body .slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 8px 2px;
}
body .slider .slick-dots li button:before {
  content: '';
  line-height: 1;
  top: 8px;
  right: 2px;
  left: 2px;
  width: auto;
  height: 4px;
  background-color: #DDD;
  opacity: 1;
}
body .slick-dots li.slick-active button:before,
body .slick-dots li button:focus:before,
body .slick-dots li button:hover:before {
  background-color: #A5D8DC;
  opacity: 1 !important;
}

body .slider + .slider-thumb {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
body .slider + .slider-thumb .thumb {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 5px;
  margin: 0 0 10px;
  cursor: pointer;
  opacity: 1;
  transition: .2s ease-in-out;
}
body .slider + .slider-thumb .thumb:hover,
body .slider + .slider-thumb .thumb.current {
  opacity: .5;
}

@media only screen and (min-width: 768px) {
  body .slider .slick-dots li {
    width: 64px;
  }
  body .slider .slick-dots li button:before {
    right: 4px;
    left: 4px;
  }
}

/* ==========================================================================
   YouTube
========================================================================== */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Form
========================================================================== */
label {
  cursor: pointer;
}

input[type="text"],
input[type="number"],
textarea,
select {
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  display: inline-block;
  padding: .25em .75em;
  line-height: 1.5;
  width: 100%;
  font-size: 1.6rem;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #707070;
  outline: none;
  transition: .2s ease-in-out;
}
input[type="text"],
input[type="number"],
select {
  height: 34px; 
}
input[type="text"]:focus,
input[type="number"]:focus {
  border-color: #4A4A4A;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}
