/*=============================================
 * body
 *=============================================*/
body {
   background-color: #fff;
   color: #1A1A1A;
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 28px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
}

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

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

/*=============================================
 * <header>
 *=============================================*/
header {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
   gap: 20px;
   width: 220px;
   height: 100vh;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
   overflow-y: auto;
   padding: 20px;
   border-right: 1px solid;
}

header a {
   -webkit-transition: .3s;
   transition: .3s;
}

header .logo {
   width: 150px;
}

header .logo a {
   display: block;
   position: relative;
   -webkit-transition: 0s;
   transition: 0s;
}

header .logo a img {
   display: block;
   -webkit-transition: .3s;
   transition: .3s;
}

header .logo a img+img {
   opacity: 0;
   position: absolute;
   top: 0;
   left: 0;
}

header .logo a:hover {
   transition: all 0.3s;
}

#navbar {
   width: 164px;
}

#navbar ul:not(.sns) {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 12px;
   line-height: 17px;
   border-top: 1px solid;
   padding: 25px 5px;
}

#navbar ul.nav {
   gap: 24px;
   font-weight: 500;
   font-size: 14px;
   line-height: 20px;
}

#navbar .btn-shopping-cart {
   margin: 0 -5px;
}

#navbar .btn-shopping-cart a {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
   background-color: #1A1A1A;
   color: #fff;
   border: 1px solid;
   font-size: 14px;
   line-height: 18px;
   border-radius: 5px;
   padding: 3px;
}

#navbar .sns {
   display: flex;
   align-items: center;
   gap: 15px;
   font-size: 26px;
}

#navbar .sns li {
   width: 25px;
}

#navbar .sns .fa-youtube {
   color: #FF0000;
}

.hamburger {
   display: none;
}

@media screen and (min-width: 1081px) {
   header::-webkit-scrollbar {
      width: 4px;
   }

   header::-webkit-scrollbar-track {
      box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
   }

   header::-webkit-scrollbar-thumb {
      background-color: darkgrey;
   }

   header.is-white {
      color: #fff;
   }

   header.is-white .logo a img {
      opacity: 0;
   }

   header.is-white .logo a img+img {
      opacity: 1;
   }

   header.is-white #navbar .btn-shopping-cart a {
      background-color: #fff;
      color: #1A1A1A;
   }
}

@media screen and (min-width: 1081px) and (min-height: 700px) {
   header {
      /*      justify-content: center;*/
   }
}

@media screen and (max-width: 1080px) {
   header {
      flex-direction: row;
      gap: 0px 20px;
      width: 100%;
      height: 70px;
      background-color: #fff;
      overflow-y: inherit;
      border-right: 0;
      padding: 0px 20px;
      -webkit-transition: .3s ease-in-out;
      transition: .3s ease-in-out;
   }

   header:before {
      content: '';
      width: 100%;
      height: 0;
      border-bottom: 1px solid #1A1A1A;
      position: absolute;
      bottom: 0;
      left: 0;
   }

   header .logo {
      width: auto;
      flex: auto;
      position: relative;
      z-index: 2;
   }

   header .logo a {
      display: block;
      width: 100px;
   }

   header .btn-cart {
      display: block;
   }

   header .btn-cart a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background-color: #1A1A1A;
      color: #fff;
      border: 1px solid;
      font-size: 12px;
      line-height: 18px;
      border-radius: 5px;
      padding: 3px 15px;
   }

   .hamburger {
      display: block;
   }

   body.home header {
      background-color: transparent;
   }

   body.home header:before {
      border-bottom-color: #fff;
   }

   body.home header .logo a img {
      opacity: 0;
   }

   body.home header .logo a img+img {
      opacity: 1;
   }

   body.home header .btn-cart a {
      background-color: #fff;
      color: #1A1A1A;
   }

   body.home header .hamburger span:before,
   body.home header .hamburger span:after {
      background-color: #fff;
   }

   body.home header .hamburger.is-active span:before,
   body.home header .hamburger.is-active span:after {
      background-color: #1A1A1A;
   }

   body.home header.fixed {
      background-color: #fff;
   }

   body.home header.fixed:before {
      border-bottom-color: #1A1A1A;
   }

   body.home header.fixed .logo a img {
      opacity: 1;
   }

   body.home header.fixed .logo a img+img {
      opacity: 0;
   }

   body.home header.fixed .btn-cart a {
      background-color: #1A1A1A;
      color: #fff;
   }

   body.home header.fixed .hamburger span:before,
   body.home header.fixed .hamburger span:after {
      background-color: #1A1A1A;
   }

   #navbar {
      width: 100%;
      height: 100%;
      background: #fff;
      color: #1A1A1A;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
      padding: 120px 20px;
      box-sizing: border-box;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s linear;
   }

   #navbar ul:not(.sns) {
      align-items: center;
      gap: 10px;
      padding: 20px 0;
   }

   #navbar ul.nav {
      align-items: center;
      gap: 20px;
      border-top: 0;
      padding-top: 0;
   }

   #navbar ul.nav li.bnr {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
   }

   #navbar ul.nav li.bnr a {
      display: block;
      width: 80px;
   }

   #navbar ul.nav-sub1 {
      border-bottom: 1px solid;
   }

   #navbar ul.nav-sub2 {
      flex-wrap: wrap;
      flex-direction: row;
      justify-content: center;
      gap: 12px 20px;
      width: 220px;
      border-top: 0;
      margin: 0 auto;
   }

   #navbar .btn-shopping-cart {
      margin: 0;
   }

   #navbar .btn-shopping-cart a {
      width: 150px;
      background-color: #1A1A1A !important;
      color: #fff !important;
   }

   #navbar .sns {
      justify-content: center;
   }

   .navOpen #navbar {
      opacity: 1;
      visibility: visible;
   }

   body.home.navOpen header .logo a img {
      opacity: 1;
   }

   body.home.navOpen header .logo a img+img {
      opacity: 0;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #EEEDE7;
   color: #1A1A1A;
   padding: 100px 20px 50px 240px;
}

footer .box {
   display: flex;
   align-items: flex-end;
   gap: 40px;
}

footer .logo {
   width: 200px;
}

footer nav {
   display: flex;
   align-items: center;
   gap: 24px;
   font-size: 16px;
   line-height: 24px;
}

footer address {
   font-size: 13px;
   line-height: 20px;
   text-align: left;
   padding-top: 100px;
}

@media screen and (max-width: 1080px) {
   footer {
      padding: 100px 0px 50px;
   }
}

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

   footer .box {
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
   }

   footer .logo {
      width: 200px;
   }

   footer nav {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      width: 200px;
   }

   footer nav a {
      font-size: 13px;
      line-height: 20px;
   }

   footer nav a:first-child {
      width: 100%;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
   }

   footer address {
      text-align: center;
      font-size: 11px;
      line-height: 14px;
      padding-top: 50px;
   }
}

/* -- -- */
.ft-fixed {
   position: fixed;
   bottom: -100%;
   right: 30px;
   z-index: 9;
   transition: 0.5s;
}

.ft-fixed ul {
   display: flex;
   flex-direction: column;
   gap: 20px;
   width: 90px;
}

.ft-fixed ul a img {
   transition: all 0.3s;
}

.ft-fixed ul a:hover img {
   transform: translateY(-10px);
}

.ft-fixed.fixed {
   bottom: 35px;
}

#pagetop {
   width: 70px;
}

@media screen and (max-width: 991px) {
   .ft-fixed {
      right: 10px;
      bottom: 10px;
   }

   .ft-fixed ul {
      gap: 10px;
      width: 80px;
   }
}

@media screen and (max-width: 767px) {
   .ft-fixed ul {
      width: 60px;
   }

   #pagetop {
      width: 40px;
   }
}

/* -- -- */
*::selection {
   background-color: #010B33;
   color: #fff;
}

/*=============================================
 * <section>
 *=============================================*/
#kv {
   display: flex;
   align-items: flex-end;
   padding: 245px 40px 40px;
   margin-left: 220px;
   position: relative;
}

#kv .photo {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: -1;
}

#kv .photo:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: #1A1A1A;
   opacity: 0.5;
   position: absolute;
   top: 0;
   left: 0;
}

#kv .catch {
   font-weight: 500;
   font-size: 18px;
   line-height: 26px;
   color: #fff;
}

#kv .catch span {
   display: block;
   font-size: 70px;
   letter-spacing: 0.1em;
   line-height: 90px;
   padding-top: 20px;
}

#kv .catch span:first-letter {
   text-transform: uppercase;
}

@media screen and (max-width: 1080px) {
   #kv {
      margin-left: 0;
   }
}

@media screen and (max-width: 767px) {
   #kv {
      padding: 150px 0 30px;
      margin-top: 70px;
   }

   #kv .catch {
      font-size: 16px;
   }

   #kv .catch span {
      font-size: 32px;
      line-height: 50px;
      padding-top: 5px;
   }
}

/* -- --*/
.breadcrumbs {
   font-size: 13px;
   line-height: 20px;
   margin-bottom: 90px;
   padding: 30px 40px 30px 260px;
}

.breadcrumbs .wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
}

.breadcrumbs a.home {
   display: block;
   background: url("../img/common/icon-home.svg") no-repeat center left/16px auto;
   padding-left: 20px;
}

.breadcrumbs span {
   word-break: break-all;
}

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

@media screen and (max-width: 1080px) {
   .breadcrumbs {
      padding: 30px 0;
   }
}

@media screen and (max-width: 991px) {
   .breadcrumbs {
      font-size: 12px;
      overflow-x: auto;
      box-sizing: border-box;
      padding: 10px 20px;
      margin-bottom: 30px;
   }

   .breadcrumbs .wrap {
      gap: 10px;
      width: max-content;
      max-width: inherit;
      background-color: transparent;
      margin: 0;
      padding: 0;
   }

   .breadcrumbs .wrap>span {
      position: relative;
      top: 1px;
   }
}

/* -- --*/
.filter-gray {
   filter: grayscale(100%);
   cursor: pointer;
   transition: all 0.3s;
}

.filter-gray:hover {
   filter: grayscale(0);
}

/*
 * 404
 *=============================================*/
#content-404 hr {
   padding-top: 60px;
}

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

@media screen and (max-width: 767px) {
   #content-404 hr {
      padding-top: 30px;
   }

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

/*
 * keyframes
*=============================================*/
@keyframes homeTileAnimation {
   0% {
      transform: translateX(0);
   }

   to {
      transform: translateX(-120%);
   }
}

@keyframes rotate {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(1turn);
   }
}

/*
 * Animation
*=============================================*/
@keyframes fadeUpAnime {
   from {
      opacity: 0;
      transform: translateY(100px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.fadeInUp {
   opacity: 0;
}

.fadeInUp[style*="visible"] {
   animation-name: fadeUpAnime;
   animation-duration: 0.5s;
   animation-fill-mode: forwards;
   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: 500;
   font-size: 16px;
   letter-spacing: 0em;
   line-height: 24px;
   position: relative;
}

.h2:after {
   content: '';
   display: block;
   width: 40px;
   height: 0;
   border-top: 2px dotted;
   margin-top: 15px;
}

.h2 .en {
   display: block;
   font-family: "Lora", serif;
   font-weight: 400;
   font-size: 42px;
   letter-spacing: 0.05em;
   line-height: 54px;
   padding-bottom: 5px;
}

.h2.white {
   color: #fff;
}

.h2.white:after {
   border-color: #fff;
}

.h2.center {
   text-align: center;
}

.h2.center:after {
   margin: 15px auto 0;
}

.h2-type1 {
   font-weight: 500;
   font-size: 32px;
   letter-spacing: 0em;
   line-height: 46px;
   position: relative;
}

.h2-type1:after {
   content: '';
   display: block;
   width: 40px;
   height: 0;
   border-top: 2px dotted;
   margin-top: 15px;
}

.h2-type1 .en {
   display: block;
   font-family: "Lora", serif;
   font-weight: 400;
   font-size: 18px;
   letter-spacing: 0.05em;
   line-height: 23px;
   padding-bottom: 5px;
}

.h-18 {
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 26px;
   border-left: 6px solid #FFD220;
   padding-left: 8px;
}

.h-20 {
   font-weight: 500;
   font-size: 20px;
   letter-spacing: 0;
   line-height: 26px;
}

.h-22 {
   font-weight: 500;
   font-size: 22px;
   letter-spacing: 0;
   line-height: 32px;
}

.h-24 {
   font-weight: 500;
   font-size: 24px;
   letter-spacing: 0;
   line-height: 35px;
   position: relative;
}

.h-24.bd-l {
   border-left: 6px solid #FFD220;
   padding-left: 8px;
}

.h-28 {
   font-weight: 400;
   font-size: 28px;
   letter-spacing: 0;
   line-height: 40px;
   position: relative;
}

.h-30 {
   font-weight: 400;
   font-size: 30px;
   letter-spacing: 0;
   line-height: 36px;
}

.h-32 {
   font-weight: 400;
   font-size: 32px;
   letter-spacing: 0;
   line-height: 46px;
}

.h-36 {
   font-weight: 400;
   font-size: 36px;
   letter-spacing: 0;
   line-height: 54px;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 14px;
      line-height: 20px;
      text-align: center;
   }

   .h2:after {
      margin: 15px auto 0;
   }

   .h2 .en {
      font-size: 32px;
      line-height: 40px;
   }

   .h2-type1 {
      font-size: 24px;
      line-height: 36px;
      text-align: center;
   }

   .h2-type1:after {
      margin: 15px auto 0;
   }

   .h2-type1 .en {
      font-size: 14px;
      line-height: 20px;
   }

   .h-17 {
      font-size: 15px;
   }

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

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

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

   .h-36 {
      font-size: 26px;
      line-height: 36px;
   }
}

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

.button a {
   display: inline-block;
   vertical-align: baseline;
   font-family: 'Lora', serif;
   font-weight: 400;
   font-size: 15px;
   letter-spacing: 0.05em;
   line-height: 30px;
   text-align: left;
   box-sizing: border-box;
   padding: 25px 0 25px 95px;
   position: relative;
   z-index: 1;
}

.button a i {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 80px;
   height: 80px;
   border-radius: 50%;
   position: absolute;
   top: 50%;
   left: 0px;
   transform: translateY(-50%);
   transition: all 0.3s;
   color: #5A3E3F;
   background-color: #fff;
   border: 2px solid #DCDCDC;
   box-sizing: border-box;
}

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

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

.button a svg {
   transform: rotate(-90deg);
   position: absolute;
   left: -2px;
   top: -2px;
   width: calc(100% + 4px);
   height: calc(100% + 4px);
   transition: 0.3s linear;
   pointer-events: none;
   fill: transparent;
   stroke: #008459;
   stroke-width: 2;
   stroke-dasharray: 0 360;
   z-index: 9;
}

.button a:hover {
   opacity: 1;
   padding-left: 100px;
}

.button a:hover i:before {
   background-position: -30px center;
}

.button a:hover i:after {
   background-position: 0px center;
}

.button a:hover svg {
   border-color: #008459;
   stroke-dasharray: 360 360;
}

.button01 {
   position: relative;
}

.button01 a {
   display: inline-block;
   width: 150px;
   font-weight: 500;
   font-size: 14px;
   letter-spacing: 0;
   line-height: 20px;
   box-sizing: border-box;
   border-bottom: 1px solid #CCCCCC;
   padding: 0 10px 10px;
   position: relative;
   z-index: 1;
   text-align: left;
}

.button01 a:before {
   content: "";
   position: absolute;
   z-index: 1;
   left: 0;
   right: calc(100% - 30px);
   bottom: -1px;
   background: #010B33;
   height: 1px;
   -webkit-transition-property: right;
   transition-property: right;
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-timing-function: ease-out;
   transition-timing-function: ease-out;
}

.button01 a:after {
   content: '';
   background: url("../img/common/icon-arrow-right01.svg") no-repeat center top/cover;
   width: 26px;
   height: 18px;
   position: absolute;
   top: 0;
   right: 10px;
   transition: all 0.3s;
}

.button01.white a:after {
   background-image: url("../img/common/icon-arrow-right01-white.svg");
}

.button01 a:hover {
   opacity: 1;
}

.button01 a:hover:before {
   right: 0;
}

.button01 a:hover:after {
   right: 0;
}

.button02 {
   position: relative;
}

.button02 a {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   width: 170px;
   border-radius: 50px;
   background-color: #FFD220;
   font-weight: 500;
   padding: 8px 15px;
   box-sizing: border-box;
   position: relative;
}

.button02 a:after {
   content: "\f061";
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   font-size: 14px;
   position: absolute;
   top: 50%;
   right: 15px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

@media screen and (max-width: 767px) {
   .button a {
      font-size: 14px;
      padding: 15px 0 15px 70px;
   }

   .button a i {
      width: 60px;
      height: 60px;
   }
}

/* -- -- */
.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: #0099CA;
}

.cl-green {
   color: #2E8B57;
}

.cl-red {
   color: #BD3A43;
}

.udl01 {
   background-image: linear-gradient(#AE0615, #AE0615);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.udl02 {
   background-image: linear-gradient(#002A7D, #002A7D);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.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-30 {
   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;
   }
}

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

.w800 {
   max-width: 800px;
}

.w900 {
   max-width: 900px;
}

/* -- --*/
.section_pd {
   padding: 120px 40px 120px 260px;
}

.section_pd1 {
   padding: 0 40px 0 260px;
}

.pt80 {
   padding-top: 80px;
}

.pt120 {
   padding-top: 120px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb200 {
   padding-bottom: 200px;
}

@media screen and (max-width: 1080px) {
   .section_pd {
      padding-right: 0;
      padding-left: 0;
   }

   .section_pd1 {
      padding: 0;
   }
}

@media screen and (max-width: 767px) {
   .section_pd {
      padding: 60px 0;
   }

   .pt80 {
      padding-top: 40px;
   }

   .pt120 {
      padding-top: 60px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb120,
   .pb200 {
      padding-bottom: 60px;
   }
}

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

.bg-cl02 {
   background-color: #F3F7F8;
}

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

.img-zoom>* {
   transform: scale(1, 1);
   transition: all 0.3s ease;
}

.img-zoom:hover>* {
   transform: scale(1.05, 1.05);
}

/* -- -- */
.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;
}

/* -- -- */
.box-img {
   display: flex;
   flex-wrap: wrap;
   gap: 80px;
   position: relative;
}

.box-img .photo {
   width: 50%;
}

.box-img .col {
   width: calc(50% - 80px);
   padding-top: 30px;
}

.box-img .txt {
   padding-top: 40px;
}

.box-img.img-r {
   flex-direction: row-reverse;
}

@media screen and (max-width: 991px) {
   .box-img {
      gap: 40px;
   }

   .box-img .photo {
      width: 100%;
      text-align: center;
   }

   .box-img .col {
      width: 100%;
      padding-top: 0;
   }

   .box-img .txt {
      padding-top: 15px;
   }

   .box-img.img_r .photo {
      margin-left: 0;
   }
}

@media screen and (max-width: 767px) {
   .box-img {
      gap: 30px;
   }
}

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

.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   border-bottom: 1px solid #ccc;
   font-size: 15px;
   line-height: 20px;
   padding: 30px 20px;
}

.tb-style dl:first-child {
   padding-top: 0;
}

.tb-style dl>* {
   display: table-cell;
   vertical-align: top;
}

.tb-style dl dt {
   width: 200px;
   font-weight: 500;
   position: relative;
}

.tb-style dl dd {
   padding-left: 40px;
}

.tb-style dl dd p {
   padding-bottom: 20px;
}

.tb-style dl dd p:last-child {
   padding-bottom: 0;
}

@media screen and (max-width: 767px) {
   .tb-style dl {
      font-size: 14px;
      padding: 20px 0;
   }

   .tb-style dl dt {
      width: 90px;
      text-align: left;
   }

   .tb-style dl dd {
      padding-left: 10px;
   }
}

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

/* -- --*/
.box-lead {
   display: flex;
   flex-wrap: wrap;
   max-width: 790px;
   margin: 0 auto;
}

.box-lead hgroup {
   flex: auto;
}

.box-lead h2 {
   font-weight: 700;
   letter-spacing: 0.04em;
}

.box-lead h3 {
   max-width: 250px;
   font-weight: 700;
   font-size: 17px;
   letter-spacing: 0.04em;
   line-height: 30px;
   padding-top: 20px;
}

.box-lead .txt {
   width: 420px;
}

@media screen and (max-width: 767px) {
   .box-lead {
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 30px;
   }

   .box-lead h3 {
      max-width: 100%;
      font-size: 16px;
   }

   .box-lead .txt {
      width: 100%;
   }
}

/* -- --*/
.table_price {
   width: 100%;
}

.table_price th,
.table_price td {
   border: 1px solid #C9C9C9;
   color: #616161;
   text-align: center;
   vertical-align: middle;
   padding: 9px 0;
}

.table_price th {
   background-color: #EEEEEE;
}

/* -- --*/
.txt-14 {
   font-size: 14px;
   line-height: 20px;
}

/* -- --*/
.cursor,
.follower {
   display: none !important;
   border-radius: 50%;
   position: absolute;
   top: -46px;
   left: -46px;
   pointer-events: none;
}

.cursor.is-click,
.follower.is-click {
   display: block !important;
}

.cursor {
   width: 8px;
   height: 8px;
   background-color: transparent;
   z-index: 1001;
   mix-blend-mode: multiply;
}

@media (max-width: 767px) {
   .cursor {
      display: none;
   }
}

.follower {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -webkit-justify-content: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   width: 100px;
   height: 100px;
   background-color: rgba(255, 255, 255, 0.6);
   z-index: 1000;
   -webkit-transition: -webkit-transform ease .4s;
   transition: -webkit-transform ease .4s;
   -o-transition: transform ease .4s;
   transition: transform ease .4s;
   transition: transform ease .4s, -webkit-transform ease .4s;
   text-align: center;
   mix-blend-mode: hard-light;
}

.follower:after {
   content: 'Click';
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
   font-family: "Lora", serif;
   font-weight: 400;
   font-size: 20px;
   position: absolute;
   top: 0;
   left: 0;
   color: #5c5c5c;
}

@media (max-width: 767px) {
   .follower {
      display: none;
   }
}

/* -- --*/
.swiper-controls {
   display: flex;
   align-items: center;
   gap: 20px;
}

.swiper-controls .swiper-button-next,
.swiper-controls .swiper-button-prev {
   width: 7px;
   height: 14px;
   position: static;
   margin: 0;
   color: #002B3D;
}

.swiper-controls .swiper-button-next:after,
.swiper-controls .swiper-button-prev:after {
   font-size: 14px;
}

.swiper-controls .swiper-button-next:hover,
.swiper-controls .swiper-button-prev:hover {
   color: #53B075;
   opacity: 1;
}

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

.swiper-controls .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-controls .swiper-pagination .swiper-pagination-bullet-active {
   color: #53B075;
}

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

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

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

/* -- --*/
.l-container {
   padding: 0 40px 0 260px;
}

.l-container .wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
}

.l-container .sidenav {
   width: 250px;
}

.l-container .sidenav ul {
   position: sticky;
   top: 20px;
}

.l-container .sidenav ul li+li {
   padding-top: 30px;
}

.l-container .sidenav ul a {
   display: block;
   color: #ccc;
   font-weight: 500;
   font-size: 15px;
   line-height: 20px;
   position: relative;
   padding-left: 15px;
}

.l-container .sidenav ul a:before {
   content: '';
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background-color: #ccc;
   position: absolute;
   top: 6px;
   left: 0;
}

.l-container .sidenav ul a.active {
   color: #333;
}

.l-container .sidenav ul a.active:before {
   background-color: #FFD220;
}

.l-container .contents {
   width: calc(100% - 270px);
   max-width: 800px;
}

@media screen and (max-width: 1080px) {
   .l-container {
      padding: 0;
   }

   .l-container .sidenav ul {
      top: 100px;
   }
}

@media screen and (max-width: 991px) {
   .l-container .sidenav {
      width: 140px;
   }

   .l-container .contents {
      width: calc(100% - 160px);
   }
}

@media screen and (max-width: 767px) {
   .l-container .wrap {
      gap: 40px;
   }

   .l-container .sidenav {
      width: 100%;
   }

   .l-container .sidenav ul {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px;
   }

   .l-container .sidenav ul li+li {
      padding-top: 0px;
   }

   .l-container .sidenav ul a {
      font-size: 14px;
   }

   .l-container .contents {
      width: 100%;
   }
}

/* -- --*/
.table-of-content ul {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
}

.table-of-content ul li {
   width: calc(25% - 15px);
   max-width: 320px;
}

.table-of-content ul a {
   display: flex;
   font-size: 16px;
   line-height: 24px;
   border: 1px solid #ccc;
   border-left: 4px solid #1A1A1A;
   padding: 19px 46px 19px 26px;
   position: relative;
}

.table-of-content ul a:after {
   content: "\f0d7";
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   font-size: 14px;
   position: absolute;
   top: 50%;
   right: 25px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

.table-of-content ul a:hover:after {
   top: 55%;
}

@media screen and (max-width: 1440px) {
   .table-of-content ul li {
      width: calc(33.33% - 14px);
   }
}

@media screen and (max-width: 991px) {
   .table-of-content ul li {
      width: calc(50% - 10px);
   }
}

@media screen and (max-width: 767px) {
   .table-of-content ul {
      gap: 10px;
   }

   .table-of-content ul li {
      width: calc(50% - 5px);
   }

   .table-of-content ul a {
      font-size: 13px;
      padding: 9px 8px;
   }

   .table-of-content ul a:after {
      right: 10px;
   }
}

/* -- --*/
hr {
   border: 0;
   border-bottom: 1px solid #ccc;
}