@charset "utf-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

.mobile_1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* 子要素 */
.mobile_1 > * {
  width: calc(25% - 9px);
  margin-right: 12px;
  margin-bottom: 12px;
}

/* 4番目ごとに右マージンをなくす */
.mobile_1 > *:nth-child(4n) {
  margin-right: auto;
}

@media screen and (max-width: 960px) {
  .mobile_1 > * {
    width: calc(33.3333% - 8px);
  }
  .mobile_1 > *:nth-child(4n) {
    margin-right: 12px;
  }
  .mobile_1 > *:nth-child(3n) {
    margin-right: auto;
  }
}

@media screen and (max-width: 580px) {
  .mobile_1 > * {
    width: calc(50% - 6px);
  }
  .mobile_1 > *:nth-child(3n) {
    margin-right: 12px;
  }
  .mobile_1 > *:nth-child(2n) {
    margin-right: auto;
  }
}

.img {
  width: 100%;
  height: auto;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

body {
  font-family: "YuGothicM", "Yu Gothic", "Meiryo", "ヒラギノ角ゴ", sans-serif;
}

.inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}

/* header */
#top-head {
  top: -100px;
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
  margin: 100px auto 0;
  padding: 14px 0 0;
  line-height: 1;
  z-index: 999;
}
#top-head a,
#top-head {
  color: #000;
  text-decoration: none;
}
#top-head .inner {
  position: relative;
}
#top-head .logo {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
#top-head .logo h1 {
  margin: 0;
}
#top-head .logo a {
  display: block;
}
#global-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2%;
  list-style: none;
  font-size: 10px;
  padding-left: 0;
}
#global-nav ul li {
}
#global-nav ul li a {
  padding: 0 15px;
  display: block;
}

#mobile-head {
  width: 310px;
}
#global-nav {
  width: calc(100% - 310px);
  max-width: 635px;
}
#global-nav li:last-child a {
  padding-right: 0;
}

/* Fixed */
#top-head.fixed {
  margin-top: 0;
  top: 10px;
  position: fixed;
  width: calc(100% - 20px);
  padding: 10px;
  height: auto;
  background: #000;
  background: rgba(255, 255, 255, 0.7);
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
  font-size: 24px;
  color: #333;
}
#top-head.fixed #global-nav ul li a {
  color: #333;
  padding: 0 15px;
}
#top-head.fixed #global-nav ul li:last-child a {
  padding-right: 0;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 11px;
  width: 34px;
  height: 25px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ccc;
  left: 0;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}

@media screen and (max-width: 750px) {
  #top-head,
  .inner {
    width: 100%;
    padding: 0;
  }
  .inner {
    width: 100%;
    display: block;
  }
  #top-head {
    top: 0;
    left: 0;
    position: fixed;
    margin-top: 0;
  }
  /* Fixed reset */
  #top-head.fixed {
    padding: 0;
    background: transparent;
    top: 0;
    width: 100%;
  }
  #mobile-head {
    background: #fff;
    width: 100%;
    height: 47px;
    z-index: 999;
    position: relative;
  }
  #top-head.fixed .logo,
  #top-head .logo {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #333;
    font-size: 26px;
  }

  #global-nav {
    position: absolute;
    top: -530px;
    background: #333333;
    width: 100%;
    text-align: center;
    padding: 3px 0;
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
  }
  #global-nav ul {
    display: block;
    list-style: none;
    position: static;
    font-size: 12px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #top-head #global-nav ul li a,
  #top-head.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 20px 0;
  }
  #nav-toggle {
    display: block;
    right: 10px;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  .open #global-nav {
    max-width: 100%;
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(576px);
    -webkit-transform: translateY(576px);
    transform: translateY(576px);
  }

  #top-head.fixed #global-nav {
    max-width: 100%;
  }
}

@media screen and (max-width: 375px) {
  #top-head .logo {
    gap: 0 4px;
  }
}

.header__linkBtn {
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.fixed_btn {
  width: 87.8%;
}
.fixed_btn_1 {
  width: 12.2%;
}

.wrap {
  overflow: hidden;
}

.p1 {
  font-family: Helvetica, sans-seri;
  font-size: 2rem;
  letter-spacing: 0.01rem;
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin: 0.5rem auto;
  background-color: #0066cc;
  color: #ffffff;
}

.p2 {
  font-size: 0.8rem;
  letter-spacing: 0.01rem;
  text-align: center;
  font-weight: normal;
  width: 90%;
  margin: 0 auto;
}

.p3 {
  font-size: 0.4rem;
  letter-spacing: 0.01rem;
  text-align: center;
  font-weight: normal;
  width: 85%;
  margin: 0 auto;
  background: #f5f5dc;
}

.p_footer {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01rem;
  text-align: center;
  font-weight: normal;
  width: 100%;
  background: #3c3c3c;
}

.p4 {
  color: #d70035;
  font-size: 14px;
  letter-spacing: 0.01rem;
  text-align: center;
  font-weight: normal;
  width: 90%;
  margin: 0 auto;
}

.p5 {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.01rem;
  text-align: center;
  font-weight: bold;
  width: 90%;
  margin: 0rem auto;
}

.p6 {
  font-size: 0.8rem;
  letter-spacing: 0.01rem;
  text-align: center;
  font-weight: bold;
  width: 100%;
  background: #1e1e1e;
  color: #fff;
  text-decoration: none;
}

.section .oneArea {
  margin-bottom: 100px;
}

.kiran-img {
  position: relative;
  overflow: hidden;
}
.kiran {
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 2s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 2s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 2s ease-in-out infinite;
}
@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-moz-keyframes reflection {
  0% {
    -moz-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    -moz-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    -moz-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.product-list {
  display: flex;
  flex-wrap: wrap;
}
.product-list__item {
  width: 50%;
}
.product-list__item img {
  width: 100%;
  height: auto;
}

.slider-wrap {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.web-shopping__icon {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.link-block {
  display: block;
}
.pdt1 {
  padding-top: 47px;
}
.pdt2 {
  padding-top: 20px;
}
.pdt3 {
  padding-top: 6px;
}
.mgb1 {
  margin-bottom: 42px;
}
.mgb2 {
  margin-bottom: 67px;
}
.mgb3 {
  margin-bottom: 73px;
}
.mgb4 {
  margin-bottom: 31px;
}
.mgb5 {
  margin-bottom: 3%;
}
.mgb6 {
  margin-bottom: 62px;
}
.mgb7 {
  margin-bottom: 85px;
}
.mgb8 {
  margin-bottom: 80px !important;
}
.mgb9 {
  margin-bottom: 54px;
}
.mgb10 {
  margin-bottom: 88px;
}
.mgb11 {
  margin-bottom: 20px;
}
.mgb12 {
  margin-bottom: 25px;
}
.mgb13 {
  margin-bottom: 6px;
}
.mgb14 {
  margin-bottom: 8px;
}
.mgb15 {
  margin-bottom: 10px;
}
.mgb16 {
  margin-bottom: 16px;
}
.banner-title {
  color: #5e5d60;
  width: calc(100% - 40px);
  padding-top: 3px;
  margin: 0.5rem auto;
  background-color: #f3991e;
  border-radius: 10px;
  line-height: 1.2;
}
.youtube-title {
  color: #f3991e;
  font-size: 19px;
  font-weight: 700;
  width: calc(100% - 40px);
  padding: 8px 10px;
  background-color: #d2d2d2;
}
.video-wrap {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-top: 51.7%;
  position: relative;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.footer {
  padding-bottom: 15%;
}
