/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #544C51;
   font-family: 'Libre Caslon Text', 'Noto Serif JP', serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 28px;
   letter-spacing: 0.05em;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
}

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

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

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

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

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

/* =============================================
 * Animation
*=============================================*/
.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: 400;
   font-size: 70px;
   letter-spacing: 0.2em;
   line-height: 94px;
}

.h2 .sub {
   display: block;
   color: #FFB357;
   font-weight: 500;
   font-size: 22px;
   letter-spacing: 0.1em;
   line-height: 31px;
   padding-bottom: 10px;
}

.h-18 {
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 26px;
}

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

.h-24 {
   font-weight: 700;
   font-size: 24px;
   letter-spacing: 0.1em;
   line-height: 35px;
}

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

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

.h-30 {
   font-weight: 300;
   font-size: 30px;
   letter-spacing: 0.05em;
   line-height: 44px;
}

.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: 40px;
      line-height: 50px;
   }

   .h2 .sub {
      font-size: 16px;
      line-height: 24px;
   }

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

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

   .h-22,
   .h-24,
   .h-26,
   .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-flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   max-width: 240px;
   height: 48px;
   background-color: #787f93;
   border: 2px solid #787f93;
   color: #fff;
   font-weight: 700;
   font-size: 16px;
   text-align: center;
   box-sizing: border-box;
   border-radius: 4px;
}

/* -- -- */
.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: #3D9FCA;
}

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

.cl-red {
   color: #BD3A43;
}

.cl-yellow {
   color: #FFB357;
}

.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-r {
   font-weight: 400;
}

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

.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);
}

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

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

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

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

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

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

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

.pt80 {
   padding-top: 80px;
}

.pt100 {
   padding-top: 100px;
}

.pb40 {
   padding-bottom: 40px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb100 {
   padding-bottom: 100px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb200 {
   padding-bottom: 200px;
}

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

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

   .pt80 {
      padding-top: 40px;
   }

   .pt100 {
      padding-top: 50px;
   }

   .pt120 {
      padding-top: 60px;
   }

   .pb40 {
      padding-bottom: 20px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb100 {
      padding-bottom: 50px;
   }

   .pb120 {
      padding-bottom: 60px;
   }

   .pb200 {
      padding-bottom: 100px;
   }
}

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

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

/*=============================================
 * <header>
 *=============================================*/
.header__box {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 8px;
}

.header .gtranslate_wrapper,
.header #google_language_translator {
   border: 1px solid #c2c8d2;
   border-radius: 4px;
   box-sizing: border-box;
   display: inline-block;
   position: relative;
   z-index: 0;
}

.header .gtranslate_wrapper:after,
.header #google_language_translator:after {
   content: "\f107";
   font-family: "Font Awesome 7 Free";
   font-weight: 900;
   font-size: 10px;
   line-height: 1;
   letter-spacing: 0;
   color: #384359;
   position: absolute;
   top: 11px;
   right: 7px;
}

.header .gtranslate_wrapper select,
.header #google_language_translator select {
   -webkit-appearance: none;
   appearance: none;
   background: none;
   border: none;
   box-sizing: border-box;
   cursor: pointer;
   font-size: 14px;
   width: 103px;
   height: 32px;
   outline: none;
   padding: 0 20px 0 12px;
   position: relative;
   z-index: 1;
}

.header__mv {
   display: flex;
   align-items: center;
   justify-content: center;
   background: url("../img/index/mv.jpg") no-repeat center/cover;
   min-height: 720px;
   padding: 64px;
   box-sizing: border-box;
   margin-top: 60px;
}

.header__mv .logo {
   width: 190px;
}

.header__kv {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: calc(100vh - 200px);
}

.header__kv .logo {
   width: 50%;
   max-width: 600px;
}

.cart-icon {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 48px;
   height: 48px;
   position: relative;
}

.cart-icon>span {
   display: block;
   letter-spacing: 0;
}

.cart-icon__emoji {
   font-size: 18px;
   line-height: 1;
}

.cart-icon__count {
   width: 16px;
   height: 16px;
   background-color: red;
   color: #fff;
   font-size: 12px;
   line-height: 16px;
   position: absolute;
   top: 2px;
   right: 2px;
   text-align: center;
   border-radius: 50%;
}

.navbar a {
   display: inline-flex;
   margin: 9px 0;
   border-bottom: 1px solid transparent;
}

.navbar a:hover,
.navbar a.current {
   border-bottom-color: #544C51;
}

.navbar__nav {
   display: flex;
   justify-content: space-between;
   gap: 36px;
   font-weight: 700;
   color: #544C51;
}

.navbar__gift {
   font-weight: 700;
   color: #544C51;
}

@media screen and (max-width: 1023px) {
   .navbar__nav {
      gap: 10px;
   }
}

@media screen and (max-width: 767px) {
   .header {
      padding-top: 70px;
   }

   .header__box {
      background: #fff;
      width: 100%;
      height: 48px;
      padding: 0 12px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      box-sizing: border-box;
   }

   .header__mv {
      min-height: 424px;
      margin-top: 0;
      padding: 56px 24px 24px;
   }

   .header__mv .logo {
      width: 90px;
   }

   .header__kv {
      height: 100vw;
   }

   .header .logo-txt {
      font-weight: 700;
   }

   .cart-icon {
      width: 36px;
      height: 36px;
   }

   .cart-icon__emoji {
      font-size: 14px;
   }

   .cart-icon__count {
      width: 14px;
      height: 14px;
      font-size: 10px;
      line-height: 14px;
      top: 0;
      right: 0;
   }

   .hamburger {
      display: block;
   }

   .navbar {
      background: rgba(0, 0, 0, 0.5);
      color: #544C51;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      box-sizing: border-box;
      padding-right: 56px;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s linear;
   }

   .navbar__close {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 56px;
      height: 56px;
      position: absolute;
      top: 0;
      right: 0;
      font-size: 20px;
      letter-spacing: 0;
      line-height: 1;
      color: #fff;
      transform: translateX(-100%);
      transition: all 0.3s linear;
   }

   .navbar__wrap {
      background: #fff;
      width: 100%;
      max-width: 100%;
      height: 100%;
      margin: 0;
      padding: 40px 20px 144px;
      overflow-y: auto;
      box-sizing: border-box;
      transform: translateX(-100%);
      transition: all 0.3s linear;
   }

   .navbar__logo {
      width: 90px;
      margin: 0 auto;
      padding-bottom: 40px;
   }

   .navbar__nav {
      flex-direction: column;
      gap: 0;
      font-size: 16px;
   }

   .navbar__nav li {
      border-top: 1px solid rgba(84, 76, 81, 0.2);
   }

   .navbar__nav a {
      margin: 0;
      padding: 16px 0;
   }

   .navbar__nav a:hover,
   .navbar__nav a.current {
      border-bottom: 0;
   }

   .navbar__nav .sub-menu .woo-cat-list {
      font-weight: 400;
      font-size: 14px;
   }

   .navbar__nav .sub-menu .has-children {
      position: relative;
   }

   .navbar__nav .sub-menu .has-children>a {
      display: block;
      margin-right: 48px;
   }

   .navbar__nav .sub-menu .has-children i {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 48px;
      height: 60px;
      position: absolute;
      top: 0;
      right: 0;
      transition: all 0.3s;
   }

   .navbar__nav .sub-menu .has-children ul {
      display: none;
      border-top: 1px solid rgba(84, 76, 81, 0.2);
      padding-left: 16px;
   }

   .navbar__nav .sub-menu .has-children ul li:first-child {
      border-top: 0;
   }

   .navbar__nav .sub-menu .has-children.is-active i {
      transform: rotate(-180deg);
   }

   .navbar__gift {
      font-weight: 700;
      font-size: 16px;
   }

   .navbar__gift a {
      margin: 0;
      padding: 16px 0;
   }

   .navbar__nav-sub {
      padding-bottom: 16px;
   }

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

   .navOpen .navbar__close,
   .navOpen .navbar__wrap {
      transform: translateX(0);
   }
}

@media screen and (min-width: 768px) {
   .navbar {
      height: auto !important;
   }

   .navbar__nav .sub-menu {
      position: relative;
   }

   .navbar__nav .sub-menu ul {
      background-color: #fff;
      border-radius: 4px;
      box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
      color: #4d4d4d;
      max-width: 250px;
      min-width: 170px;
      padding: 0;
      font-size: 12px;
      line-height: 24px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
   }

   .navbar__nav .sub-menu ul a {
      display: block;
      border-bottom: 0;
      margin: 0;
      padding: 12px 16px;
   }

   .navbar__nav .sub-menu ul a:hover {
      background-color: #f6f6f6;
      opacity: 1;
   }

   .navbar__nav .sub-menu ul i {
      display: none;
   }

   .navbar__nav .sub-menu>ul {
      position: absolute;
      top: 100%;
      left: 0;
   }

   .navbar__nav .sub-menu>ul ul {
      position: absolute;
      top: 0;
      left: 100%;
   }

   .navbar__nav .sub-menu:hover>ul {
      opacity: 1;
      visibility: visible;
   }

   .navbar__nav .sub-menu>ul .has-children:hover ul {
      opacity: 1;
      visibility: visible;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   font-size: 12px;
   padding: 100px 0 8px;
}

footer .icon-insta {
   padding-bottom: 100px;
   text-align: center;
}

footer .icon-insta a {
   display: inline-block;
   width: 24px;
}

footer nav {
   display: flex;
   gap: 32px;
   padding-bottom: 30px;
}

footer nav a {
   border-bottom: 1px solid transparent;
}

footer nav a:hover {
   border-bottom-color: #000;
}

footer address {
   color: #544C51;
}

@media screen and (max-width: 767px) {
   footer {
      padding-top: 50px;
   }

   footer nav {
      display: none;
   }

   footer .icon-insta {
      padding-bottom: 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: scale(1.05);
}

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

#pagetop {
   width: 70px;
}

@media screen and (max-width: 1023px) {
   .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>
 *=============================================*/
.breadcrumbs {
   font-size: 14px;
   line-height: 21px;
   margin-bottom: 100px;
   padding: 20px 0;
}

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

.breadcrumbs ul li {
   position: relative;
}

.breadcrumbs ul li+li {
   padding-left: 32px;
}

.breadcrumbs ul li+li:before {
   content: '...';
   position: absolute;
   top: 0;
   left: 0;
}

.breadcrumbs .home a {
   display: block;
   background: url("../img/common/icon-home.svg") no-repeat top 2px 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: 1023px) {
   .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 {
   padding: 160px 0 100px;
}

#content-404 .txt {
   padding-top: 40px;
}

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

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

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

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

   #content-404 .button a {
      width: auto;
   }
}

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

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

.img-zoom:hover .img,
.img-zoom:hover .img-obj {
   transform: scale(1.07);
}

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

.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   line-height: 24px;
}

.tb-style dl dt,
.tb-style dl dd {
   display: table-cell;
   vertical-align: top;
   border-bottom: 1px solid #fff;
   padding: 30px 20px;
}

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

.tb-style dl dt {
   width: 180px;
   position: relative;
   top: 1px;
   border-bottom-width: 3px;
}

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

.tb-style .dot {
   text-indent: -18px;
   padding-left: 18px;
}

.tb-style .num {
   text-indent: -18px;
   padding-left: 18px;
}

.tb-style .p+.p {
   padding-top: 30px;
}

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

   .tb-style dl dt,
   .tb-style dl dd {
      padding: 20px 0;
   }

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

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

   .tb-style .dot {
      text-indent: -15px;
      padding-left: 15px;
   }

   .tb-style .num {
      text-indent: -15px;
      padding-left: 15px;
   }

   .tb-style .p+.p {
      padding-top: 20px;
   }
}

/* -- --*/
.cursor,
.follower {
   border-radius: 50%;
   position: absolute;
   top: 0;
   left: 0;
   pointer-events: none;
}

.cursor {
   width: 8px;
   height: 8px;
   background-color: #55adb6;
   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: 30px;
   height: 30px;
   background-color: #e4d35f;
   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: multiply;
}

.follower.is-active {
   -webkit-transform: scale(2.2);
   -ms-transform: scale(2.2);
   transform: scale(2.2);
}

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

/* -- -- */
.swiper-fade .swiper-slide {
   opacity: 0;
}

.swiper-fade .swiper-slide-active {
   opacity: 1;
}

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

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

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
   color: #53B075;
   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;
}

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

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

/*=============================================
 * wpcf7
 *=============================================*/
.wpcf7 {
   position: relative;
}

.wpcf7 .select {
   position: relative;
}

.wpcf7 .select {
   display: flex;
   align-items: flex-start;
   width: 100%;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
   content: '';
   width: 15px;
   height: 8px;
   background: url("../img/common/icon-angle-down.png") no-repeat center top/cover;
   position: absolute;
   top: 19px;
   right: 20px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #fff;
   border: 1px solid #ccc;
   border-radius: 4px;
   line-height: 30px;
   padding: 7px 50px 7px 20px;
   cursor: pointer;
}

.wpcf7 .select select::-ms-expand {
   display: none;
}

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 1px solid #ccc;
   border-radius: 4px;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 7px 20px;
   line-height: 30px;
}

.wpcf7 textarea {
   height: 240px;
   resize: vertical;
}

.wpcf7 input[type="date"] {
   padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background-position: top 22px right 15px;
   background-size: 18px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #AAB8C4;
}

.wpcf7 ::-moz-placeholder {
   color: #AAB8C4;
}

.wpcf7 :-ms-input-placeholder {
   color: #AAB8C4;
}

.wpcf7 :-moz-placeholder {
   color: #AAB8C4;
}

.wpcf7-checkbox {
   display: flex;
   flex-direction: column;
   gap: 10px;
   line-height: 24px;
}

.wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-checkbox input {
   display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 16px 1fr;
   align-items: flex-start;
   gap: 8px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after {
   content: '';
   grid-area: 1/1;
   margin: auto;
}

.wpcf7-checkbox .wpcf7-list-item-label:before {
   width: 16px;
   height: 16px;
   background-color: #fff;
   border: 1px solid #707070;
   border-radius: 2px;
   box-sizing: border-box;
}

.wpcf7-checkbox .wpcf7-list-item-label:after {
   width: 16px;
   height: 16px;
   background: url("../img/common/icon-checked.png") no-repeat center top/cover;
   display: none;
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7-radio {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   line-height: 28px;
}

.wpcf7-radio .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-radio input {
   display: none;
}

.wpcf7-radio .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 28px 1fr;
   align-items: flex-start;
   gap: 10px;
   cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
   content: '';
   grid-area: 1/1;
   border-radius: 50%;
   margin: auto;
}

.wpcf7-radio .wpcf7-list-item-label:before {
   width: 28px;
   height: 28px;
   background-color: #fff;
}

.wpcf7-radio .wpcf7-list-item-label:after {
   width: 16px;
   height: 16px;
   background-color: #020C45;
   display: none;
}

.wpcf7-radio input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 13px;
   line-height: 22px;
   color: #E50012;
}

.wpcf7 .result_txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
}

/*=============================================
 * 
 *=============================================*/
.list-cat-toggle {
   color: #544C51;
}

.list-cat-toggle a {
   display: block;
   padding: 16px 16px 16px 0;
}

.list-cat-toggle .woo-cat-list {
   border-top: 1px solid;
   border-bottom: 1px solid;
}

.list-cat-toggle .woo-cat-list__item {
   position: relative;
}

.list-cat-toggle .woo-cat-list__item.has-children>a {
   margin-right: 48px;
}

.list-cat-toggle .woo-cat-list__item.has-children>i {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 48px;
   height: 60px;
   position: absolute;
   top: 0;
   right: 0;
   cursor: pointer;
   transition: all 0.3s;
}

.list-cat-toggle .woo-cat-list__item.has-children.is-active>i {
   transform: rotate(-180deg);
}

.list-cat-toggle .woo-cat-list__item .woo-cat-list {
   display: none;
   border-bottom: 0;
   padding-left: 16px;
}

.list-cat-toggle .woo-cat-list__item .woo-cat-list__item:not(:last-child) {
   border-bottom: 1px solid;
}