/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #4B4B4B;
   font-family: "M PLUS Rounded 1c", serif;
   font-weight: 500;
   font-size: 17px;
   line-height: 31px;
   letter-spacing: 0.02em;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
   word-break: break-all;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 15px;
      line-height: 28px;
   }
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
   margin: 0;
   padding: 0;
}

/*=============================================
 * <header>
 *=============================================*/
header {
   display: flex;
   align-items: center;
   gap: 20px;
   background-color: rgba(255, 255, 255, 0.7);
   border-radius: 58px;
   position: fixed;
   top: 15px;
   right: 40px;
   left: 40px;
   z-index: 100;
   box-sizing: border-box;
   padding: 17px 30px;
}

header .logo {
   flex: 1 0 0;
   position: relative;
   z-index: 1;
}

header .logo a {
   display: block;
   width: 197px;
	margin-top:-4px;
}

#navbar {
   display: flex;
   align-items: center;
   gap: 48px;
   font-weight: 700;
   font-size: 14px;
   line-height: 30px;
}

#navbar .nav {
   display: flex;
   gap: 20px;
   color: #000;
}

#navbar .nav a {
   display: inline-block;
   border-bottom: 2px solid transparent;
}

#navbar .nav a:hover {
   border-bottom-color: #000;
   opacity: 1;
}

#navbar .nav-sns {
   display: flex;
   gap: 15px;
}

#navbar .nav-sns li {
   width: 155px;
}

#navbar .nav-sns li a {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 5px;
   border-radius: 50px;
   color: #fff;
   padding: 4px 0 3px;
}

#navbar .nav-sns li a:before {
   content: '';
   display: block;
}

#navbar .nav-sns li a.line {
   background-color: #03C755;
}

#navbar .nav-sns li a.line:before {
   background: url("../img/common/icon-line.png") no-repeat center/cover;
   width: 21px;
   height: 20px;
}

#navbar .nav-sns li a.inq {
   background-color: #FF6301;
}

#navbar .nav-sns li a.inq:before {
   background: url("../img/common/icon-email.png") no-repeat center/cover;
   width: 22px;
   height: 16px;
}

#navbar .nav-sns li a:hover {
   background-color: #000;
   opacity: 1;
}

@media screen and (max-width: 1366px) {
   header {
      padding: 17px 20px;
      right: 20px;
      left: 20px;
   }

   #navbar {
      gap: 20px;
   }
}

@media screen and (max-width: 1300px) {
   #navbar {
      font-size: 12px;
   }

   #navbar .nav {
      gap: 15px;
   }
}

@media screen and (max-width: 1200px) {
   .hamburger {
      display: block;
   }

   #navbar {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex-wrap: inherit;
      gap: 50px;
      width: 100%;
      height: 100vh;
      box-sizing: border-box;
      overflow-y: auto;
      background-color: #fff;
      font-size: 14px;
      padding: 120px 30px;
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease-in-out;
      text-align: center;
   }

   #navbar .nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
   }

   .navOpen #navbar {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
   }
}

@media screen and (max-width: 767px) {
   header {
      background-color: #fff;
      top: 16px;
      right: 20px;
      left: 20px;
      padding: 10px 15px;
   }

   header .logo a {
      width: 130px;
   }

   #navbar .nav-sns {
      flex-direction: column;
      align-items: center;
      width: 100%;
   }

   #navbar .nav-sns li {
      width: 100%;
   }

   #navbar .nav-sns li a {
      padding: 5px 0;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   padding: 80px 0;
}

footer .logo {
   width: 300px;
   margin: 0 auto;
}

footer nav {
   font-weight: 800;
   font-size: 18px;
   letter-spacing: 0.018em;
   line-height: 30px;
   padding-top: 70px;
}

footer nav ul {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 35px;
}

footer address {
   font-weight: 500;
   font-size: 15px;
   line-height: 20px;
   letter-spacing: 0.015em;
   color: #555;
   padding-top: 50px;
}

@media screen and (max-width: 767px) {
   footer {
      padding: 40px 0 70px;
   }

   footer .logo {
      width: 211px;
   }

   footer nav {
      padding-top: 25px;
      font-size: 15px;
      line-height: 26px;
   }

   footer nav ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
   }

   footer address {
      font-size: 13px;
      padding-top: 30px;
   }
}

/* -- -- */
#pagetop {
   width: 60px;
   position: fixed;
   bottom: 40px;
   right: 40px;
   transition: all 0.3s;
   opacity: 0;
   visibility: hidden;
   z-index: 9;
}

#pagetop.visible {
   opacity: 1;
   visibility: visible;
}

/* -- -- */
.fixed-bnr {
   width: 100%;
   position: fixed;
   bottom: 0;
   left: 0;
   z-index: 10;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s;
}

.fixed-bnr a {
   display: block;
   background-color: #FF6301;
   color: #fff;
   border-radius: 12px 12px 0 0;
   font-weight: 700;
   font-size: 16px;
   line-height: 24px;
   letter-spacing: 0;
   padding: 16px 0;
   text-align: center;
   position: relative;
}

.fixed-bnr a:after {
   content: '';
   width: 18px;
   height: 18px;
   background: url("../img/common/fixed-bnr-arrow.png") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 25px;
   transform: translateY(-50%) rotate(-90deg);
}

.fixed-bnr.fixed {
   opacity: 1;
   visibility: visible;
}

/*=============================================
 * <section>
 *=============================================*/
section {
   box-sizing: border-box;
}

/* Animation */
.fadeInUp {
   transition-delay: 200ms;
   transition-duration: 800ms;
   transform: translate(0px, 24px);
   opacity: 0;
}

.fadeInUp[style*="visible"] {
   transform: translate(0px, 0px);
   opacity: 1;
}

/* -- -- */
.img_effect {
   display: inline-block;
   overflow: hidden;
   position: relative;
}

.img_effect:after {
   content: "";
   animation-duration: 300ms;
   animation-fill-mode: forwards;
   animation-delay: 300ms;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: #fff;
}

.img_effect[style*="visible"]:after {
   animation-name: homeTileAnimation;
}

/* =============================================
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   font-weight: 800;
   font-size: 38px;
   letter-spacing: 0.04em;
   line-height: 50px;
   color: #0F9F01;
}

.h2 .en {
   display: block;
   font-weight: 800;
   font-size: 18px;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   color: #707070;
}

.h2.cl-white {
   color: #fff;
}

.h2.cl-white .en {
   color: #fff;
}

body:not(.home) .h2 {
   font-size: 34px;
   line-height: 40px;
   color: #4AA357;
}

.h-18 {
   font-weight: 800;
   font-size: 18px;
   line-height: 26px;
}

.h-20 {
   font-weight: 800;
   font-size: 20px;
   line-height: 32px;
}

.h-22 {
   font-weight: 800;
   font-size: 22px;
   line-height: 34px;
}

.h-24 {
   font-weight: 800;
   font-size: 24px;
   line-height: 40px;
}

.h-25 {
   font-weight: 800;
   font-size: 25px;
   line-height: 40px;
}

.h-26 {
   font-weight: 800;
   font-size: 26px;
   line-height: 40px;
}

.h-28 {
   font-weight: 800;
   font-size: 28px;
   line-height: 40px;
}

.h-30 {
   font-weight: 800;
   font-size: 30px;
   line-height: 42px;
}

.h-32 {
   font-weight: 800;
   font-size: 32px;
   line-height: 42px;
}

.h-36 {
   font-weight: 800;
   font-size: 36px;
   line-height: 46px;
}

.h-38 {
   font-weight: 800;
   font-size: 38px;
   line-height: 46px;
}

.h-42 {
   font-weight: 800;
   font-size: 42px;
   line-height: 60px;
   letter-spacing: 0;
}

.txt-deco {
   font-weight: 800;
   font-size: 200px;
   letter-spacing: 0.08em;
   line-height: 0.75;
   text-transform: uppercase;
   position: absolute;
   top: 0;
   left: 0;
}

section h3 {
   letter-spacing: 0.12em;
}

@media screen and (max-width: 1200px) {
   .txt-deco {
      font-size: 180px;
   }
}

@media screen and (max-width: 1200px) {
   .txt-deco {
      font-size: 120px;
   }
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 22px;
      line-height: 32px;
   }

   .h2 .en {
      font-size: 14px;
   }

   body:not(.home) .h2 {
      font-size: 22px;
      line-height: 32px;
   }

   .h-18 {
      font-size: 16px;
      line-height: 32px;
   }

   .h-20 {
      font-size: 18px;
      line-height: 32px;
   }

   .h-22,
   .h-24,
   .h-25 {
      font-size: 18px;
      line-height: 32px;
   }

   .h-26,
   .h-28 {
      font-size: 20px;
      line-height: 32px;
   }

   .h-30,
   .h-32 {
      font-size: 22px;
      line-height: 32px;
   }

   .h-36,
   .h-38,
   .h-42 {
      font-size: 24px;
      line-height: 36px;
   }

   .txt-deco {
      font-size: 100px;
      white-space: nowrap;
   }
}

/* button */
.button {
   position: relative;
}

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 0px;
   width: 303px;
   background-color: #0F9F01;
   color: #fff;
   font-weight: 800;
   font-size: 20px;
   letter-spacing: 0.012em;
   line-height: 30px;
   text-transform: uppercase;
   text-align: center;
   box-sizing: border-box;
   margin: 0;
   padding: 20px 0;
   position: relative;
   z-index: 1;
   border-radius: 50px;
}

.button a:after {
   content: '';
   width: 23px;
   height: 9px;
   background: url("../img/common/arrow-right.svg") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 25px;
   transform: translate(0, -50%);
   transition: transform 0.3s;
}

.button a:hover {
   background-color: #000;
   opacity: 1;
}

.button a:hover:after {
   transform: translate(5px, -50%);
}

@media screen and (max-width: 767px) {
   .button a {
      width: 240px;
      font-size: 16px;
      padding: 12px 0;
   }

   .button a:after {
      width: 17px;
      height: 6px;
      right: 20px;
   }
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

.txt-c {
   text-align: center;
}

.txt-j {
   text-align: justify;
}

.txt-r {
   text-align: right;
}

.cl-blue {
   color: #226cac;
}

.cl-green {
   color: #0F9F01;
}

.cl-red {
   color: #BD3A43;
}

.cl-white {
   color: #fff;
}

.cl-orange {
   color: #FF6201;
}

.cl-pink {
   color: #D8005C;
}

.cl-yellow {
   color: #EEFF00;
}

.hightlight {
   background-image: linear-gradient(#fae428, #fae428);
   background-size: 100% 33px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

@media screen and (max-width: 767px) {
   .hightlight {
      background-size: 100% 15px;
   }
}

.fw-r {
   font-weight: 400;
}

.fw-m {
   font-weight: 500;
}

.fw-smb {
   font-weight: 600;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-20 {
   border-radius: 20px;
}

.bdra-24 {
   border-radius: 24px;
}

.bdra-30 {
   border-radius: 30px;
}

.bdra-50 {
   border-radius: 30px;
}

.img-shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
   .bdra-20 {
      border-radius: 10px;
   }

   .bdra-30 {
      border-radius: 15px;
   }

   .bdra-50 {
      border-radius: 25px;
   }
}

/* -- --*/
.w600 {
   max-width: 600px;
   margin: 0 auto;
}

.w800 {
   max-width: 800px;
   margin: 0 auto;
}

.w900 {
   max-width: 900px;
   margin: 0 auto;
}

/* -- --*/
.section-space {
   padding: 180px 0;
}

.section-space.last {
   padding-bottom: 0;
}

.mb90 {
   margin-bottom: 90px;
}

.pt80 {
   padding-top: 80px;
}

.pt100 {
   padding-top: 100px;
}

.pt120 {
   padding-top: 120px;
}

.pt280 {
   padding-top: 280px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb100 {
   padding-bottom: 100px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb280 {
   padding-bottom: 280px;
}

@media screen and (max-width: 767px) {
   .section-space {
      padding: 80px 0;
   }

   .mb90 {
      margin-bottom: 20px;
   }

   .pt80 {
      padding-top: 40px;
   }

   .pt100,
   .pt120 {
      padding-top: 50px;
   }

   .pt280 {
      padding-top: 80px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb100,
   .pb120 {
      padding-bottom: 50px;
   }

   .pb280 {
      padding-bottom: 80px;
   }
}

/* -- --*/
.bg-cl01 {
   background: #F6FDF7;
}

.bg-cl02 {
   background: #0F9F01;
}

.bg-cl03 {
   background-color: #fff;
}

/* -- -- */
.img-zoom {
   display: block;
   overflow: hidden;
}

.img-zoom .img,
.img-zoom .img-cover {
   transition: 0.6s ease-in-out;
}

.img-zoom:hover {
   opacity: 1;
}

.img-zoom:hover .img,
.img-zoom:hover .img-cover {
   transform: scale(1.07);
   filter: brightness(0.8);
}

/* -- -- */
.effect-bnr a {
   display: block;
   background-color: #030c17;
   position: relative;
}

.effect-bnr a:after {
   content: '';
   position: absolute;
   top: 30px;
   right: 30px;
   bottom: 30px;
   left: 30px;
   border: 1px solid #fff;
   box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1);
   opacity: 0;
   -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
   transition: opacity 0.35s, transform 0.35s;
   -webkit-transform: scale3d(1.1, 1.1, 1);
   transform: scale3d(1.1, 1.1, 1);
}

.effect-bnr a:hover {
   opacity: 1;
}

.effect-bnr a:hover:after {
   opacity: 1;
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
}

.effect-bnr a:hover img {
   opacity: 0.3 !important;
}

/* -- --*/
.tb-style {
   position: relative;
}

.tb-style dl {
   display: table;
   width: 100%;
   border-bottom: 1px solid #EBEBEB;
   padding-bottom: 25px;
}

.tb-style dl+dl {
   padding-top: 25px;
}

.tb-style dl dt,
.tb-style dl dd {
   display: table-cell;
   vertical-align: top;
}

.tb-style dl dt {
   width: 145px;
}

@media screen and (max-width: 767px) {
   .tb-style dl {
      display: block;
      padding-bottom: 15px;
   }

   .tb-style dl+dl {
      padding-top: 15px;
   }

   .tb-style dl dt,
   .tb-style dl dd {
      display: block;
      height: auto;
   }

   .tb-style dl dt {
      width: auto;
      font-weight: 700;
      padding-right: 0;
      padding-left: 0;
   }
}

/* -- -- */
.swiper {
   overflow: hidden;
   position: relative;
}

.swiper-wrapper {
   transition-timing-function: linear;
}

.swiper-button-next,
.swiper-button-prev {
   width: 70px;
   height: 70px;
   background-color: #0F9F01;
   border-radius: 50%;
   transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
   content: '';
   background: url("../img/common/arrow-right.svg") no-repeat center/23px auto;
   width: 100%;
   height: 100%;
}

.swiper-button-prev:after {
   transform: rotate(180deg);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
   background-color: #000;
   opacity: 1;
}

.swiper-pagination {
   display: flex;
   align-items: center;
   gap: 12px;
   width: auto;
   position: static;
   margin: 0;
   padding-right: 10px;
}

.swiper-pagination .swiper-pagination-bullet {
   display: block;
   width: auto;
   height: auto;
   border-radius: 0;
   background: transparent;
   opacity: 1;
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 0.04em;
   line-height: 30px;
   margin: 0;
}

.swiper-pagination .swiper-pagination-bullet-active {
   color: #53B075;
}

@media screen and (max-width: 767px) {

   .swiper-button-next,
   .swiper-button-prev {
      width: 40px;
      height: 40px;
   }

   .swiper-button-next:after,
   .swiper-button-prev:after {
      background-size: 15px auto;
   }
}

/* -- --*/
.slick-arrow {
   display: block;
   width: 40px;
   height: 40px;
   background: #2aa872;
   border: 0;
   font-size: 0;
   outline: 0;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   cursor: pointer;
   transition: opacity 0.3s;
   z-index: 1;
   border-radius: 50%;
}

.slick-arrow:before {
   content: '';
   width: 9px;
   height: 17px;
   border-radius: 50%;
   -webkit-mask-image: url("../img/common/arrow-right.png") no-repeat center top/cover;
   mask: url(../img/common/arrow-right.png) no-repeat center top/cover;
   background-color: #fff;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.slick-arrow:hover {
   opacity: 0.7;
}

.slick-prev {
   left: 0;
}

.slick-prev:before {
   transform: translate(-50%, -50%) rotate(180deg);
}

.slick-next {
   right: 0;
}

/* -- --*/
.photo-full img {
   width: 100%;
   max-width: inherit;
}

.img-cover {
   width: 100%;
   max-width: inherit;
   height: 100%;
   object-fit: cover;
}

@media screen and (max-width: 767px) {
   .photo-full {
      width: 100%;
      height: 60vw;
   }

   .photo-full img {
      height: 100%;
      object-fit: cover;
   }
}

/*=============================================*
 * Key
 *=============================================*/
#kv {
   background: url("../img/common/kv-bg-img.jpg") no-repeat center top/cover;
   position: relative;
   padding: 200px 0 130px;
}

#kv .page-title {
   font-weight: 800;
   font-size: 46px;
   letter-spacing: 0.1em;
   line-height: 50px;
   text-align: center;
   color: #fff;
}

#kv .page-title .en {
   display: block;
   font-size: 26px;
   padding-bottom: 10px;
   text-transform: capitalize;
}

#kv figure {
   width: 64.5%;
}

#kv figure span {
   display: block;
   width: 100%;
   padding-top: 51.3%;
   position: relative;
}

#kv figure img {
   position: absolute;
   top: 0;
   left: 0;
}

@media screen and (max-width: 767px) {
   #kv {
      padding: 100px 0 50px;
   }

   #kv .page-title {
      font-size: 24px;
      line-height: 36px;
   }

   #kv .page-title .en {
      font-size: 14px;
      padding-bottom: 0;
   }
}

/* -- --*/
.breadcrumbs {
   color: #555;
   font-weight: 700;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 20px;
   position: absolute;
   bottom: 40px;
   left: 0;
}

.breadcrumbs ul {
   display: flex;
   flex-wrap: wrap;
}

.breadcrumbs ul li+li:before {
   content: '';
   display: inline-block;
   vertical-align: middle;
   width: 26px;
   border-top: 1px solid #d3d3d3;
   margin: 0 15px;
}

.breadcrumbs a {
   color: #2aa872;
}

.breadcrumbs a:hover {
   text-decoration: underline;
}

@media screen and (max-width: 1023px) {
   .breadcrumbs {
      width: 100%;
      overflow-x: auto;
      padding: 5px 0;
   }

   .breadcrumbs ul {
      width: max-content;
   }

   .breadcrumbs {
      font-size: 14px;
      position: static;
   }

   .breadcrumbs ul li+li:before {
      content: '';
      width: 10px;
      margin: 0 5px;
   }
}

/*=============================================*
 * 404
 *=============================================*/
#content-404 {
   text-align: center;
   padding: 120px 0;
}

#content-404 .button {
   text-align: center;
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   #content-404 {
      padding: 50px 0;
   }

   #content-404 .button {
      padding-top: 30px;
   }
}

/*=============================================*
 * thanks
 *=============================================*/
#content-thanks {
   padding: 120px 0;
}

#content-thanks h2{
   margin-bottom: 40px;
   color: #0F9F01;
   font-size: 28px;
   font-weight: 700;
}

#content-thanks .p_storeList{
   margin: 40px 0;
}

#content-thanks .button {
   text-align: center;
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   #content-thanks {
      padding: 50px 0;
   }

   #content-thanks .button {
      padding-top: 30px;
   }
}

/*=============================================*
 * searchform
 *=============================================*/
.searchform {
   width: 200px;
   position: relative;
}

.searchform input[type="text"] {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 1px solid #c1c1c1;
   font-weight: 500;
   line-height: 28px;
   border-radius: 8px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 0 30px 0 10px;
}

.searchform input[type="submit"] {
   background: url("../img/common/icon-search.svg") no-repeat center/17px auto;
   width: 30px;
   height: 30px;
   border: 0;
   outline: 0;
   position: absolute;
   top: 0;
   right: 0;
   cursor: pointer;
}

@media screen and (max-width: 767px) {
   .searchform {
      margin: 0 10px;
   }
}

/*=============================================*
 * Modal
 *=============================================*/
.box-modal .no {
   line-height: 40px;
   text-align: left;
}

.box-modal figure {
   padding-top: 15px;
}

.box-modal h3 {
   font-weight: 600;
   line-height: 40px;
   padding-top: 30px;
}

.box-modal h4 {
   text-align: left;
   padding-top: 30px;
}

.box-modal .txt {
   text-align: left;
   font-size: 18px;
   line-height: 36px;
   padding-top: 30px;
}

@media screen and (max-width: 767px) {
   .box-modal .no {
      line-height: 32px;
   }

   .box-modal h3 {
      line-height: 32px;
      padding-top: 20px;
   }

   .box-modal .txt {
      font-size: 14px;
      line-height: 30px;
      padding-top: 20px;
   }
}