@charset "UTF-8";
/* CSS Document */
/* header */
.header {
  height: 72px;
  width: 100%;
  padding: 0 10px;
  position: fixed;
  z-index: 3;
}
.headerColorScroll {
  background-color: #FFF;
  height: 72px;
  width: 100%;
  padding: 0 10px;
  position: fixed;
  z-index: 3;
  transition: 0.5s ease-out;
}
.logo-white {
  height: 40px;
  width: auto;
  float: left;
}
.logo-blue {
  display: none;
}
.logo-whiteColorScroll {
  display: none;
  transition: 0.5s ease-out;
}
.logo-blueColorScroll {
  display: block;
  height: 40px;
  width: auto;
  float: left;
  transition: 0.5s ease-out;
}
.logo {
  position: fixed;
}
.header-pc {
  display: none;
}
.header-pc_blue-wrap {
  display: none;
}
.header-lang_mobile {
  text-align: right;
  display: flex;
}
.header-lang_mobile ul {
  list-style: none;
  font-size: 1.1rem;
}
.header-lang_mobile ul li {
  display: inline-block;
  margin-left: 14px;
}
.header-lang_mobile ul li a {
  text-decoration: none;
  color: #070F6C;
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%
}
.btn-and__lang {
  position: relative;
}
.pc-lang {
  position: absolute;
  right: 77px;
  top: -8px;
}
.pc-lang ul {
  display: flex;
  list-style: none;
}
.lang {
  text-decoration: none;
  color: #FFF;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.3rem;
  transition-duration: 0.5s;
}
.lang:hover{
  color: #03A88A;
  transition-duration: 0.2s;
}
.langColorScroll {
  color: #070F6C;
  transition: 0.5s ease-out;
}
.lang:hover{
  color: #03A88A;
  transition-duration: 0.2s;
}
.pc-lang ul li {
  margin-left: 20px;
}
/* ハンバーガー */
.toggle_btn {
  display: block;
  position: fixed;
  top: 21px;
  right: 24px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 5;
}
.hamburger {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #FFF;
  border-radius: 4px;
  transition: all .5s;
}
.hamburgerColorScroll {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  background-color: #070F6C;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .hamburger {
  background-color: #070F6C;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 2;
  cursor: pointer;
}
/* navigation */
nav {
  z-index: 4;
  position: fixed;
  color: #FFF;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 18px 24px;
  line-height: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  opacity: 0;
  right: 100%;
}
.open nav {
  text-align: center;
  top: 0;
  left: 0;
  opacity: 1;
  overflow: auto;
}
.open nav .nav-area li:nth-child(1) {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.open nav .nav-area li:nth-child(2) {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}
.open nav .nav-area li:nth-child(3) {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
}
.open nav .nav-area li:nth-child(4) {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 1.1s;
  animation-fill-mode: forwards;
}
.open nav .nav-area li:nth-child(5) {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}
.open nav .nav-area li:nth-child(6) {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.open nav .nav-area li:nth-child(7) {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 1.7s;
  animation-fill-mode: forwards;
}
.open nav .nav-icons {
  transform: translateX(-150%);
  animation-name: nav;
  animation-duration: 1.9s;
  animation-fill-mode: forwards;
}
@keyframes nav {
  0% {
    opacity: 0;
    transform: translateX(-5%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.nav-logo {
  padding-bottom: 45px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-color {
  text-decoration: none;
  color: #070F6C;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.3rem;
}
nav ul li {
  font-weight: 600;
  padding-bottom: 50px;
}
.nav-icons ul li {
  padding-bottom: 0;
}
.nav-shop_info {
  font-size: 1.1rem;
}
.link-pc {
  display: none;
}
.nav-area {
  padding-top: 57px;
}
nav img {
  height: 12px;
  width: auto;
}
.nav-icons ul {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: baseline;
}
.nav-icons ul li:nth-child(1) {
  margin-right: 40px;
}
.nav-icons ul li:nth-child(2) {
  margin-right: 40px;
}
.nav-icons ul li:nth-child(3) {
  margin-right: 40px;
}
.nav-icons ul li img {
  height: 20px;
  width: auto;
  object-fit: contain;
  vertical-align: bottom;
}
@media(min-width:700px) {
  nav ul {
    font-size: 1.6rem;
  }
}
@media(min-width:1200px) {
  .open #mask {
    display: none;
  }
  .open nav {
    overflow: visible;
  }
  .toggle_btn {
    display: none;
  }
  nav {
    backdrop-filter: none;
    position: static;
    padding: 0;
    opacity: 1;
    overflow-y: visible;
    overflow-x: visible;
  }
  nav ul li {
    padding-bottom: 0;
  }
  .nav-area {
    padding-top: 0;
  }
  .nav-color {
    color: #FFF;
    margin-left: 35px;
    font-size: 1.4rem;
    position: relative;
  }
  .nav-color::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    content: '';
    width: 0;
    height: 2px;
    background-color: #FFF;
    transition: .3s;
  }
  .nav-color:hover::after {
    width: 100%;
  }
  .nav-colorColorScroll {
    color: #070F6C;
    transition: 0.5s ease-out;
  }
  .nav-colorColorScroll::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    content: '';
    width: 0;
    height: 2px;
    background-color: #070F6C;
    transition: .3s;
  }
  .nav-colorColorScroll:hover::after {
    width: 100%;
  }
  .header {
    height: 110px;
    padding: 20px 30px;
    position: fixed;
    transition: 0.4s;
  }
  .header h1 img {
    height: 70px;
    transition-duration: 0.3s;
  }
  .header h1 img:hover {
    transform: scale(0.98, 0.98);
    transition-duration: 0.3s;
  }
  .logo {
    position: static;
  }
  .navigation {
    display: block;
    text-align: right;
    position: static;
    color: #070F6C;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }
  .online-shop {
    padding: 0;
  }
  .nav-logo {
    display: none;
  }
  .nav-shop_info {
    display: none;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    margin-bottom: 0;
  }
  .navigation ul li a {
    display: block;
    color: #070F6C;
  }
  .navigation ul li {
    padding-bottom: 0;
  }
  .navigation ul {
    margin-bottom: 0;
  }
  .navigation nav img {
    margin-left: 0;
  }
  .header_wrap {
    display: block;
  }
  .header-pc {
    display: flex;
    justify-content: flex-end;
    margin-right: 150px;
    margin-bottom: 20px;
  }
  .header-pc li {
    list-style: none;
    padding-left: 30px;
    margin: 0;
  }
  .header-pc li img {
    height: 18px;
    width: auto;
    vertical-align: bottom;
    transition-duration: 0.5s;
  }
  .header-pc li img:hover {
    transform: scale(0.9, 0.9);
    transition-duration: 0.5s;
  }
  .header-pc_blue {
    display: flex;
    justify-content: flex-end;
    margin-right: 150px;
    margin-bottom: 20px;
  }
  .header-pc_blue li {
    list-style: none;
    padding-left: 30px;
    margin: 0;
  }
  .header-pc_blue li img {
    height: 18px;
    width: auto;
    vertical-align: bottom;
    transition-duration: 0.5s;
  }
  .header-pc_blue li img:hover {
    transform: scale(0.9, 0.9);
    transition-duration: 0.5s;
  }
  .header-pc_blue-wrap {
    display: none;
  }
  .header-pcColorScroll {
    display: none;
    transition: 0.5s ease-out;
  }
  .header-pc_blue-wrapColorScroll {
    display: block;
    transition: 0.5s ease-out;
  }
  .link {
    display: none;
  }
  .link-pc {
    display: inline-block;
  }
  .linkColorScroll {
    display: inline-block;
    transition: 0.5s ease-out;
  }
  .link-pcColorScroll {
    display: none;
    transition: 0.5s ease-out;
  }
  .pc-lang {
    margin-left: 40px;
    font-size: 1.4rem;
    right: 0px;
    top: -53px;
  }
  .pc-lang ul li {
    margin-left: 30px;
  }
}