@charset "UTF-8";
/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
section:not(#info) {
  padding: clamp(80px, 8.333vw, 160px) 0;
}
@media (width <= 768px) {
  section:not(#info) {
    padding: 12.5vw 0;
  }
}

.sec-title {
  text-align: center;
  margin-bottom: clamp(60px, 6.25vw, 120px);
}
@media (width <= 768px) {
  .sec-title {
    margin-bottom: 8vw;
  }
}
.sec-title p {
  color: #53403b;
  font-size: clamp(37px, 6.388rem, 115px);
  font-weight: 500;
  padding-bottom: clamp(15px, 2.083vw, 40px);
  line-height: 1;
}
@media (width <= 768px) {
  .sec-title p {
    font-size: max(37px, 2.642rem);
    padding-bottom: 5px;
  }
}
.sec-title p span {
  color: #e1c0ac;
  font-weight: 500;
  line-height: 1;
}
.sec-title h2 {
  font-size: clamp(18px, 1.444rem, 26px);
  font-weight: bold;
  color: #53403b;
}
@media (width <= 768px) {
  .sec-title h2 {
    font-size: max(18px, 1.285rem);
  }
}
.sec-title.title-Left {
  padding-left: clamp(15px, 5vw, 100px);
  text-align: left;
}
@media (width <= 768px) {
  .sec-title.title-Left {
    padding: 0 15px;
  }
}
.sec-title .cntText p {
  color: #444;
  line-height: 1.8;
  padding-bottom: 0;
}
.sec-title .cntText p span {
  font-weight: 500;
  color: #444;
}

.cntText {
  padding-top: clamp(40px, 4.166vw, 80px);
}
@media (width <= 768px) {
  .cntText {
    padding-top: 6vw;
  }
}
.cntText p {
  font-size: clamp(14px, 1rem, 18px);
}
@media (width <= 768px) {
  .cntText p {
    font-size: max(14px, 1rem);
    text-align: left;
  }
}
.cntText p span {
  font-size: clamp(13px, 0.888rem, 16px);
}
@media (width <= 768px) {
  .cntText p span {
    font-size: max(13px, .928rem);
    text-align: left;
  }
}

/********************************
button
********************************/
.btn-shadow {
  width: 85%;
  max-width: 350px;
  margin: clamp(80px, 6.25vw, 120px) auto 0;
}
@media (width <= 768px) {
  .btn-shadow {
    margin-top: 8vw;
    max-width: 100%;
    width: 66.66667vw;
  }
}
.btn-shadow a {
  text-shadow: 0px 0px 1px #e1c0ac;
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #e1c0ac;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 24px;
  color: #444;
  border-radius: 10px;
  position: relative;
}
.btn-shadow a::before {
  content: "";
  display: inline-block;
  height: 40px;
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
  z-index: 1;
  border-radius: 2em;
  filter: blur(14px) brightness(0.9);
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
  opacity: 0;
  background: linear-gradient(180deg, #e1bfab 0%, #e0bfab 80%, #65412a 100%);
}
.btn-shadow a span {
  display: inline-block;
  padding: clamp(25px, 1.822vw, 35px) 0;
  border-radius: 50em;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
  font-size: clamp(18px, 1.111rem, 20px);
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (width <= 768px) {
  .btn-shadow a span {
    font-size: max(16px, 1.142rem);
    padding: 15px 0;
  }
}
.btn-shadow a:hover {
  opacity: 1;
  color: #fff;
}
.btn-shadow a:hover::before {
  bottom: -7px;
  opacity: 1;
  filter: blur(16px);
}
.btn-shadow a:hover span {
  filter: brightness(0.9) contrast(1.2);
}
.btn-shadow.btn-banner a {
  background: #ad8f7c;
  text-shadow: 0px 0px 1px #ad8f7c;
  color: #fff;
}
.btn-shadow.btn-banner a::before {
  background: linear-gradient(180deg, #ad8f7c 0%, #9f8270 80%, #85593d 100%);
}

.btn-more {
  width: 85%;
  max-width: 200px;
  margin: 25px auto 0;
  transition: all 0.3s ease;
}
.btn-more a {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: clamp(14px, 0.888rem, 16px);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #444;
  padding: 15px 0;
  border-radius: 50px;
  background: #e1c0ac;
}
.btn-more:hover {
  transform: scale(0.93);
}
.btn-more:hover a {
  opacity: 1;
  color: #fff;
}
.btn-more.onliine a {
  background: #fff;
  border: solid 2px #ad8f7c;
  color: #ad8f7c;
}
.btn-more.onliine:hover a {
  color: #53403b;
}

/********************************
header
********************************/
#Heder {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
#Heder #mainlogo {
  width: 11.45vw;
  max-width: 220px;
  position: fixed;
  top: 35px;
  left: 35px;
  z-index: 999;
}
@media (width <= 768px) {
  #Heder #mainlogo {
    width: 26.53333vw;
    max-width: 150px;
    top: 15px;
    left: 15px;
  }
}
#Heder #NAV {
  position: fixed;
  top: 0;
  right: 0;
  width: 126px;
  height: 135px;
  border-bottom-left-radius: 10.5vw;
  background: #ad8f7c;
  z-index: 999;
}
@media (width <= 1024px) {
  #Heder #NAV {
    width: 110px;
    height: 115px;
  }
}
@media (width <= 768px) {
  #Heder #NAV {
    width: 86px;
    height: 82px;
    border-bottom-left-radius: 23.466vw;
  }
}
#Heder #NAV .navContents {
  position: absolute;
  width: 40px;
  height: 33px;
  top: 20px;
  left: 60px;
}
@media (width <= 1024px) {
  #Heder #NAV .navContents {
    top: 15px;
    left: 50px;
  }
}
@media (width <= 768px) {
  #Heder #NAV .navContents {
    top: 10px;
    left: 40px;
    width: 30px;
    height: 23px;
  }
}
#Heder #NAV .navContents p {
  color: #fff;
  font-size: 12px;
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-top: 3px;
}
@media (width <= 768px) {
  #Heder #NAV .navContents p {
    font-size: 10px;
    margin-top: 0;
  }
}
#Heder .gnavigation {
  position: fixed;
  width: 100%;
  height: 0;
  top: 0;
  right: 0;
  z-index: 998;
  opacity: 0;
  transition: all 0.6s;
}
#Heder .gnavigation::before {
  position: absolute;
  content: "";
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at bottom, #fff, transparent 80%), linear-gradient(to top, #fff 0%, transparent 70%), linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4) 70%), #e7d8cd;
  animation: bg 30s infinite;
  z-index: -1;
  transform: scale(0);
  transition: all 0.6s;
  border-radius: 50%;
}
@keyframes bg {
  0%, 100% {
    background-color: #d8bfac;
  }
  25% {
    background-color: #efd9d1;
  }
  50% {
    background-color: #ddb7ab;
  }
  75% {
    background-color: #999b84;
  }
}
#Heder .gnavigation-AreaWrap {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (width <= 768px) {
  #Heder .gnavigation-AreaWrap {
    padding: 19.532vw 15px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: scroll;
  }
}
#Heder .gnavigation-AreaWrap #GNAV {
  display: none;
  justify-content: center;
  align-items: flex-start;
}
@media (width <= 768px) {
  #Heder .gnavigation-AreaWrap #GNAV {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li {
  opacity: 0;
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li a {
  font-size: clamp(24px, 2.777rem, 50px);
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #53403b;
}
@media (width <= 768px) {
  #Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li a {
    font-size: max(24px, 1.714rem);
  }
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li a span {
  display: block;
  font-size: clamp(13px, 1.444rem, 26px);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  transition: 0.5s ease-in-out;
}
@media (width <= 768px) {
  #Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li a span {
    font-size: max(13px, 0.928rem);
  }
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li a:hover {
  color: #e1c0ac;
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li a:hover span {
  color: #e1c0ac;
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li + li {
  margin-top: clamp(35px, 4.166vw, 80px);
}
@media (width <= 768px) {
  #Heder .gnavigation-AreaWrap #GNAV .gnavMenuList li + li {
    margin-top: 5vw;
  }
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList + .gnavMenuList {
  padding-left: min(160px, 8.333vw);
}
@media (width <= 768px) {
  #Heder .gnavigation-AreaWrap #GNAV .gnavMenuList + .gnavMenuList {
    padding-left: 0;
    margin-top: 5vw;
  }
}
@media (width <= 768px) {
  #Heder .gnavigation-AreaWrap #GNAV .gnavMenuList.sns {
    margin-top: 6.5vw;
  }
}
#Heder .gnavigation-AreaWrap #GNAV .gnavMenuList.sns li a {
  color: #ad8f7c;
}
#Heder .gnavigation.active {
  opacity: 1;
  height: 100vh;
}
#Heder .gnavigation.active::before {
  transform: scale(50);
}
#Heder .gnavigation.active .gnavigation-AreaWrap {
  height: 100%;
  display: flex;
}
#Heder .gnavigation.active .gnavigation-AreaWrap #GNAV {
  display: flex;
}
#Heder .gnavigation.active .gnavigation-AreaWrap #GNAV .gnavMenuList li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/********************************
footer
********************************/
#footer {
  padding: clamp(80px, 8.333vw, 160px) 0 0;
  background: #e7d8cd;
}
@media (width <= 768px) {
  #footer {
    padding: 9.5vw 0 0;
  }
}
#footer .footerMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  #footer .footerMenu {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
#footer .footerMenu-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 13vw;
}
@media (width <= 768px) {
  #footer .footerMenu-menu {
    grid-template-columns: 1fr;
  }
}
#footer .footerMenu-menu .menuList li a {
  font-size: clamp(14px, 1.333rem, 24px);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #53403b;
}
@media (width <= 768px) {
  #footer .footerMenu-menu .menuList li a {
    font-size: max(14px, 1rem);
  }
}
#footer .footerMenu-menu .menuList li + li {
  margin-top: clamp(25px, 2.34vw, 45px);
}
@media (width <= 768px) {
  #footer .footerMenu-menu .menuList li + li {
    margin-top: 1.5vw;
  }
}
@media (width <= 768px) {
  #footer .footerMenu-menu .snsMenu {
    margin-top: 5.208vw;
  }
}
#footer .footerMenu-menu .snsMenu li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#footer .footerMenu-menu .snsMenu li a img {
  width: clamp(35px, 2.395vw, 46px);
}
@media (width <= 768px) {
  #footer .footerMenu-menu .snsMenu li a img {
    width: 4.557vw;
  }
}
#footer .footerMenu-menu .snsMenu li a span {
  line-height: 1;
  font-size: clamp(15px, 1.333rem, 24px);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #53403b;
  padding-left: 15px;
}
@media (width <= 768px) {
  #footer .footerMenu-menu .snsMenu li a span {
    font-size: max(14px, 1rem);
    padding-left: 1vw;
  }
}
#footer .footerMenu-menu .snsMenu li + li {
  margin-top: clamp(25px, 2.34vw, 45px);
}
@media (width <= 768px) {
  #footer .footerMenu-menu .snsMenu li + li {
    margin-top: 1.5vw;
  }
}
@media (width <= 450px) {
  #footer .footerMenu-menu .snsMenu li + li {
    margin-top: 5vw;
  }
}
#footer .footerMenu-logo {
  width: 14.53333vw;
}
@media (width <= 768px) {
  #footer .footerMenu-logo {
    margin-bottom: 5.208vw;
  }
}
@media (width <= 450px) {
  #footer .footerMenu-logo {
    width: 26.666vw;
    margin-bottom: 8vw;
  }
}
#footer #copy {
  margin-top: clamp(80px, 8.333vw, 160px);
  padding: clamp(40px, 4.166vw, 80px) 0;
  border-top: solid 1px #53403b;
}
@media (width <= 768px) {
  #footer #copy {
    margin-top: 5.208vw;
    padding: 2vw 0;
  }
}
#footer #copy p {
  text-align: center;
}
#footer #copy p small {
  font-size: 0.73333vw;
  font-weight: bold;
}
@media (width <= 768px) {
  #footer #copy p small {
    font-size: 12px;
  }
}

/********************************
navigation
********************************/
.nav-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 33px;
  box-sizing: border-box;
  cursor: pointer;
  clear: both;
  margin: 0 auto;
}
@media (width <= 768px) {
  .nav-toggle {
    width: 30px;
    height: 23px;
  }
}
.nav-toggle div {
  background: #fff;
  width: 100%;
  height: 2px;
  margin: 9px auto;
  border-radius: 10px;
  transition: 0.3s cubic-bezier(0.28, 0.55, 0.385, 1.65);
  transition-timing-function: cubic-bezier(0.28, 0.55, 0.385, 1.65);
  transform: 0;
  transform-origin: center;
}
@media (width <= 768px) {
  .nav-toggle div {
    margin: 5px auto;
  }
}
.nav-toggle div::before, .nav-toggle div::after {
  transition: 0.3s cubic-bezier(0.28, 0.55, 0.385, 1.65);
  transition-timing-function: cubic-bezier(0.28, 0.55, 0.385, 1.65);
}
.nav-toggle.nav-toggle--toggled div:not(:first-child):not(:last-child) {
  width: 0;
  margin-left: 0;
  opacity: 1;
}

.nav-toggle--type-1.nav-toggle--style-3 .nav-toggle.nav-toggle--toggled div:first-child {
  animation-name: T1S3DF;
}

@keyframes T1S3DF {
  0% {
    transform: none;
  }
  40% {
    transform: translateY(0.85rem);
  }
  80% {
    transform: translateY(0.85rem) rotate(45deg);
  }
}
.nav-toggle--type-1.nav-toggle--style-3 .nav-toggle.nav-toggle--toggled div:last-child {
  animation-name: T1S3L;
}

@keyframes T1S3L {
  0% {
    transform: none;
  }
  40% {
    transform: translateY(-0.375rem);
  }
  80% {
    transform: translateY(-0.375rem) rotate(-45deg);
  }
}
.nav-toggle--type-1.nav-toggle--style-4 .nav-toggle.nav-toggle--toggled div {
  animation-timing-function: linear;
}

.nav-toggle--type-1.nav-toggle--style-4 .nav-toggle.nav-toggle--toggled div:first-child {
  animation-name: T1S4DF;
}

@keyframes T1S4DF {
  0% {
    margin-right: 0;
    transform: none;
  }
  20% {
    width: 100%;
    transform: translateY(0.85rem);
  }
  40% {
    width: 0;
    margin-right: 0;
    transform: translateY(0.85rem);
  }
  80% {
    width: 0;
    margin-right: auto;
    transform: translateY(0.85rem) rotate(45deg);
  }
  90% {
    transform: translateY(0.85rem) rotate(45deg);
  }
}
.nav-toggle--type-1.nav-toggle--style-4 .nav-toggle.nav-toggle--toggled div:last-child {
  animation-name: T1S4L;
}

@keyframes T1S4L {
  0% {
    margin-left: 0;
    transform: none;
  }
  20% {
    width: 100%;
    transform: translateY(-0.375rem);
  }
  40% {
    width: 0;
    margin-left: 0;
    transform: translateY(-0.375rem);
  }
  80% {
    width: 0;
    margin-left: auto;
    transform: translateY(-0.375rem) rotate(-45deg);
  }
  90% {
    transform: translateY(-0.375rem) rotate(-45deg);
  }
}
.nav-toggle--type-1.nav-toggle--style-5 .nav-toggle.nav-toggle--toggled div {
  animation-timing-function: linear;
}

.nav-toggle--type-1.nav-toggle--style-5 .nav-toggle.nav-toggle--toggled div:first-child {
  animation-name: T1S5DF;
}

@keyframes T1S5DF {
  0% {
    margin-right: 0;
    transform: none;
    transform-origin: top right;
  }
  25% {
    width: 100%;
    transform: translateY(0.85rem) rotate(10deg);
  }
  30% {
    width: 100%;
    transform: translateY(0.85rem) rotate(10deg);
  }
  40% {
    width: 0%;
    transform: translateY(0.375rem) rotate(10deg);
  }
  50% {
    width: 0%;
    transform-origin: center;
    transform: translateY(0.375rem) rotate(45deg);
  }
  90% {
    transform: translateY(0.375rem) rotate(45deg);
  }
}
.nav-toggle--type-1.nav-toggle--style-5 .nav-toggle.nav-toggle--toggled div:not(:first-child):not(:last-child) {
  animation-name: T1S5DM;
  width: 0%;
}

@keyframes T1S5DM {
  0% {
    width: 100%;
    opacity: 1;
  }
  40% {
    width: 100%;
  }
  50% {
    width: 0%;
    opacity: 1;
  }
}
.nav-toggle--type-1.nav-toggle--style-5 .nav-toggle.nav-toggle--toggled div:last-child {
  animation-name: T1S5L;
}

@keyframes T1S5L {
  0% {
    margin-left: 0;
    transform: none;
    transform-origin: bottom left;
  }
  25% {
    width: 100%;
    transform: translateY(-0.375rem) rotate(10deg);
  }
  30% {
    width: 100%;
    transform: translateY(-0.375rem) rotate(10deg);
  }
  40% {
    width: 0%;
    transform: translateY(-0.375rem) rotate(10deg);
  }
  50% {
    width: 0%;
    transform-origin: center;
    transform: translateY(-0.375rem) rotate(-45deg);
  }
  90% {
    transform: translateY(-0.375rem) rotate(-45deg);
  }
}
/* Toggled */
.nav-toggle.nav-toggle--toggled div {
  width: 100%;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.28, 0.55, 0.385, 1.65);
}

.nav-toggle.nav-toggle--toggled div:after,
.nav-toggle.nav-toggle--toggled div:before {
  width: 100%;
}

.nav-toggle.nav-toggle--toggled div:first-child {
  transform: translateY(15px) rotate(45deg);
}
@media (width <= 768px) {
  .nav-toggle.nav-toggle--toggled div:first-child {
    transform: translateY(9px) rotate(45deg);
  }
}

.nav-toggle.nav-toggle--toggled div:not(:first-child):not(:last-child) {
  opacity: 0;
}

.nav-toggle.nav-toggle--toggled div:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
@media (width <= 768px) {
  .nav-toggle.nav-toggle--toggled div:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }
}

/********************************
common
********************************/
.sv {
  position: relative;
}
.sv-image {
  border-radius: 0 0 0 8vw;
  overflow: hidden;
}
.sv-title {
  position: absolute;
  bottom: 2.5vw;
  left: 5vw;
  mix-blend-mode: overlay;
  color: #fff;
  font-size: 6.388rem;
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
@media (width <= 768px) {
  .sv-title {
    font-size: 8.8rem;
    bottom: 7.5vw;
    left: 5vw;
  }
}
@media (width <= 450px) {
  .sv-title {
    font-size: 4.58rem;
  }
}
.sv-title h1 {
  font-size: 1.333rem;
  display: block;
  line-height: 1;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (width <= 768px) {
  .sv-title h1 p {
    font-size: 2rem;
  }
}
@media (width <= 450px) {
  .sv-title h1 p {
    font-size: 1.0714rem;
  }
}

.pageExplanation {
  padding-bottom: 0 !important;
}
.pageExplanation div p {
  text-align: center;
  font-size: clamp(14px, 1.1111rem, 20px);
}
@media (width <= 768px) {
  .pageExplanation div p {
    text-align: left;
  }
}
.pageExplanation div p span {
  font-size: clamp(13px, 0.888rem, 16px);;
  font-weight: 500;
}

.catch {
  padding: clamp(60px, 6.25vw, 120px) 0;
}
@media (width <= 768px) {
  .catch {
    padding: 7.81vw 15px;
  }
}
.catch h3 {
  text-align: center;
  font-size: clamp(32px, 5.333rem, 96px);
  color: #ad8f7c;
  line-height: 1.5;
  font-family: "neue-kabel", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media (width <= 768px) {
  .catch h3 {
    font-size: max(32px, 2.285rem);
  }
}
.catch h3 .color {
  color: #e1c0ac;
  font-family: "neue-kabel", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}

.banner .bannerWrap {
  display: grid;
  grid-template-columns: 52.5% auto;
}
@media (width <= 768px) {
  .banner .bannerWrap {
    grid-template-columns: 1fr;
    background: #e7d8cd;
    padding: 7vw 0;
  }
}
@media (width <= 768px) {
  .banner .bannerWrap-banner {
    width: 85%;
    margin: 0 auto 7vw;
  }
}
.banner .bannerWrap-infoArea {
  background: #e7d8cd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner .bannerWrap-infoArea figure {
  width: clamp(280px, 18.22vw, 350px);
  margin: 0 auto;
}
@media (width <= 768px) {
  .banner .bannerWrap-infoArea figure {
    max-width: 250px;
  }
}

.pagination {
  padding-top: 7.291vw;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-numbers li {
  line-height: 2;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span {
  font-size: clamp(15px, 1.222rem, 22px);
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #53403b;
}
@media (width <= 768px) {
  .pagination .page-numbers li a,
  .pagination .page-numbers li span {
    font-size: max(15px, 1.071rem);
  }
}
.pagination .page-numbers li .current {
  width: 3vw;
  height: 3vw;
  background: #e1c0ac;
  border-radius: 50%;
  color: #fff;
}
@media (width <= 768px) {
  .pagination .page-numbers li .current {
    width: 4vw;
    height: 4vw;
  }
}
@media (width <= 450px) {
  .pagination .page-numbers li .current {
    width: 6vw;
    height: 6vw;
  }
}
.pagination .page-numbers li .next {
  position: relative;
}
.pagination .page-numbers li .next::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 3vw;
  background: url(../images/common/next.png) no-repeat center;
  background-size: contain;
  top: 50%;
  right: -4vw;
  transform: translateY(-50%);
}
@media (width <= 768px) {
  .pagination .page-numbers li .next::before {
    width: 4vw;
    height: 4vw;
    right: -5vw;
  }
}
@media (width <= 450px) {
  .pagination .page-numbers li .next::before {
    width: 6vw;
    height: 6vw;
    right: -7vw;
  }
}
.pagination .page-numbers li .prev {
  position: relative;
}
.pagination .page-numbers li .prev::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 3vw;
  background: url(../images/common/prev.png) no-repeat center;
  background-size: contain;
  top: 50%;
  left: -4vw;
  transform: translateY(-50%);
}
@media (width <= 768px) {
  .pagination .page-numbers li .prev::before {
    width: 4vw;
    height: 4vw;
    left: -5vw;
  }
}
@media (width <= 450px) {
  .pagination .page-numbers li .prev::before {
    width: 6vw;
    height: 6vw;
    left: -7vw;
  }
}
.pagination .page-numbers li + li {
  padding-left: 5vw;
}

.single-pagenav {
  margin-top: 3.125vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-pagenav a,
.single-pagenav span {
  font-size: clamp(15px, 1.222rem, 22px);
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #53403b;
}
.single-pagenav .prev {
  padding-left: 5vw;
  position: relative;
}
.single-pagenav .prev::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 3vw;
  background: url(../images/common/prev.png) no-repeat center;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.single-pagenav .next {
  position: relative;
  padding-right: 4vw;
}
.single-pagenav .next::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 3vw;
  background: url(../images/common/next.png) no-repeat center;
  background-size: contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.subscriptionContents ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 768px) {
  .subscriptionContents ul {
    flex-direction: column;
  }
}
.subscriptionContents ul li {
  width: 50%;
  max-width: 350px;
}
@media (width <= 450px) {
  .subscriptionContents ul li {
    width: 85%;
    max-width: 85%;
  }
}
.subscriptionContents ul li img:nth-child(2) {
  height: 1px !important;
}
.subscriptionContents ul li + li {
  margin-left: 25px;
}
@media (width <= 768px) {
  .subscriptionContents ul li + li {
    margin-left: 0;
    margin-top: 25px;
  }
}

.meter-banner {
  position: fixed;
  margin: 15px 20px;
  z-index: 99998;
  bottom: 0;
  right: 0px;
  width: 180px;
  height: 180px;
}
.meter-banner-close {
  font-weight: bold;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 99999;
  padding: 4px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}
.meter-banner a:hover {
  opacity: 1;
}
.meter-banner a:hover img {
  opacity: 1;
}

/********************************
@import
********************************/
/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
#MV {
  overflow: hidden;
  border-radius: 0 0 0 8vw;
  position: relative;
}
#MV #message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  width: 100%;
  mix-blend-mode: overlay;
  color: #fff;
  font-size: clamp(40px, 5.833rem, 105px);
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}
@media (width <= 768px) {
  #MV #message {
    font-size: max(40px, 2.857rem);
  }
}
@media (width <= 450px) {
  #MV #message {
    line-height: 1.3;
  }
}

#info {
  padding: clamp(60px, 6.25vw, 120px) 0 clamp(80px, 8.333vw, 160px);
}
@media (width <= 768px) {
  #info {
    padding-top: 2vw;
  }
}
#info .imageArea {
  width: 100%;
  zoom: 1;
}
#info .imageArea .imgLeft {
  float: left;
  width: 37.5vw;
  padding-top: 8vw;
  border-radius: 0px 0px 8vw 0px;
  overflow: hidden;
}
@media (width <= 768px) {
  #info .imageArea .imgLeft {
    z-index: 8;
    position: relative;
    width: 48%;
    padding-top: 25vw;
  }
}
#info .imageArea .imgRight {
  float: right;
  width: 49.66vw;
  border-radius: 0px 0px 0px 8vw;
  overflow: hidden;
}
@media (width <= 768px) {
  #info .imageArea .imgRight {
    width: 63%;
    margin-left: -13%;
  }
}
#info .imageArea::after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}
#info .textArea {
  padding-top: clamp(80px, 8.333vw, 160px);
  text-align: center;
}
@media (width <= 768px) {
  #info .textArea {
    padding: 7.812vw 15px 0;
  }
}
#info .textArea h4 {
  font-size: clamp(26px, 2.333rem, 42px);
  text-align: center;
  font-weight: bold;
  color: #53403b;
}
@media (width <= 768px) {
  #info .textArea h4 {
    text-align: left;
    font-size: max(26px, 1.857rem);
  }
}
#info .textArea .cntText h1 {
  font-size: clamp(14px, 1rem, 18px);
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (width <= 768px) {
  #info .textArea .cntText h1 {
    font-size: max(14px, 1rem);
  }
}

#sec01 {
  background: #fff;
}
#sec01 .worriesList-item {
  display: grid;
}
@media (width <= 768px) {
  #sec01 .worriesList-item {
    padding: 0 15px;
  }
}
#sec01 .worriesList-item figure {
  width: clamp(335px, 44.27vw, 850px);
}
#sec01 .worriesList-item figure img {
  border: solid 10px #ad8f7c;
  border-radius: 0px 8vw 8vw 8vw;
  overflow: hidden;
}
#sec01 .worriesList-item__textBox .title p {
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(16px, 1rem, 18px);
  color: #53403b;
}
@media (width <= 768px) {
  #sec01 .worriesList-item__textBox .title p {
    font-size: max(16px, 1.142rem);
  }
}
#sec01 .worriesList-item__textBox .title p span {
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#sec01 .worriesList-item__textBox .title p .color {
  color: #ad8f7c;
}
#sec01 .worriesList-item__textBox .title p .num {
  font-size: clamp(22px, 1.5625rem, 25px);
}
@media (width <= 768px) {
  #sec01 .worriesList-item__textBox .title p .num {
    font-size: max(22px, 1.571rem);
  }
}
#sec01 .worriesList-item__textBox .title h5 {
  font-size: 3.5416vw;
  color: #53403b;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}
@media (width <= 768px) {
  #sec01 .worriesList-item__textBox .title h5 {
    font-size: max(28px, 2rem);
  }
}
#sec01 .worriesList-item__textBox .title h5 .accent {
  font-size: 4.791vw;
  color: #ad8f7c;
  font-weight: bold;
  padding: min(25px, 1.302vw);
  background: url(../images/top/sec01-titlebg.png) no-repeat center;
  background-size: contain;
  line-height: 1;
}
@media (width <= 768px) {
  #sec01 .worriesList-item__textBox .title h5 .accent {
    font-size: max(32px, 2.285rem);
    padding: 12px;
  }
}
#sec01 .worriesList-item__textBox .text {
  margin-top: clamp(25px, 4.166vw, 80px);
}
@media (width <= 768px) {
  #sec01 .worriesList-item__textBox .text {
    margin-top: 4vw;
  }
}
#sec01 .worriesList-item.left {
  grid-template-columns: 1fr auto;
}
@media (width <= 768px) {
  #sec01 .worriesList-item.left {
    grid-template-columns: 1fr;
  }
}
#sec01 .worriesList-item.left figure {
  margin-right: max(100px, 5.208vw);
}
@media (width <= 768px) {
  #sec01 .worriesList-item.left figure {
    margin-right: 0;
    width: 100%;
  }
}
#sec01 .worriesList-item.left .worriesList-item__textBox {
  padding-right: clamp(15px, 5vw, 100px);
}
@media (width <= 768px) {
  #sec01 .worriesList-item.left .worriesList-item__textBox {
    padding-right: 0;
    margin-top: 3vw;
    width: 100%;
  }
}
#sec01 .worriesList-item.right {
  grid-template-columns: auto 1fr;
}
@media (width <= 768px) {
  #sec01 .worriesList-item.right {
    grid-template-columns: 1fr;
  }
}
#sec01 .worriesList-item.right figure {
  margin-left: max(100px, 5.208vw);
}
@media (width <= 768px) {
  #sec01 .worriesList-item.right figure {
    order: 1;
    margin-left: 0;
    width: 100%;
  }
}
#sec01 .worriesList-item.right .worriesList-item__textBox {
  padding-left: clamp(15px, 5vw, 100px);
}
@media (width <= 768px) {
  #sec01 .worriesList-item.right .worriesList-item__textBox {
    order: 2;
    margin-top: 3vw;
    padding-left: 0;
    width: 100%;
  }
}
#sec01 .worriesList-item + .worriesList-item {
  margin-top: clamp(60px, 6.25vw, 120px);
}
@media (width <= 768px) {
  #sec01 .worriesList-item + .worriesList-item {
    margin-top: 12vw;
  }
}

/***********
sec02
*****************/
.profileList-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
}
@media (width <= 768px) {
  .profileList-item {
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .profileList-item .pSlider {
    width: 100%;
    height: 90vw;
  }
}
.profileList-item .pSlider-list {
  position: relative;
  width: 100%;
  height: 100%;
}
.profileList-item .pSlider-list__unit {
  display: block;
  position: absolute;
  border-radius: 0px 50px 50px 50px;
  overflow: hidden;
  left: 50%;
  top: 50%;
  opacity: 0.4;
  transform: translateX(-50%);
  transition-duration: 0.45s, 0.45s;
  transition-property: opacity, transform;
}
.profileList-item .pSlider-list__unit:nth-of-type(1) {
  z-index: 3;
  transform: translateY(-50%) translateX(-50%) translate3d(2rem, -6rem, 0) rotate3d(0, 0, 1, 12deg);
  transform-origin: right bottom;
}
.profileList-item .pSlider-list__unit:nth-of-type(2) {
  z-index: 2;
  transform: translateY(-50%) translateX(-50%) translate3d(-2rem, -4rem, 0) rotate3d(0, 0, 1, -8deg);
  transform-origin: left bottom;
}
.profileList-item .pSlider-list__unit:nth-of-type(3) {
  z-index: 1;
  transform: translateY(-50%) translateX(-50%) translate3d(7rem, -2.5rem, 0) rotate3d(0, 0, 1, 15deg);
  transform-origin: right bottom;
}
.profileList-item .pSlider-list__unit.pic-yuzu, .profileList-item .pSlider-list__unit.pic-moca, .profileList-item .pSlider-list__unit.pic-komugi, .profileList-item .pSlider-list__unit.pic-azuki, .profileList-item .pSlider-list__unit.pic-zinger, .profileList-item .pSlider-list__unit.pic-lily, .profileList-item .pSlider-list__unit.pic-coconuts {
  z-index: 4 !important;
}
.profileList-item .pSlider-list.active {
  display: block;
}
.profileList-item .pSlider-list.active .pSlider-list__unit:nth-of-type(1) {
  transform: translateY(-50%) translateX(-50%) translate3d(0rem, 0rem, 0) rotate3d(0, 0, 1, 0deg);
  opacity: 1;
}
.profileList-item .pSlider-list.active .pSlider-list__unit:nth-of-type(2) {
  transform: translateY(-50%) translateX(-50%) translate3d(0rem, 1rem, 0) rotate3d(0, 0, 1, -7deg);
  opacity: 1;
}
.profileList-item .pSlider-list.active .pSlider-list__unit:nth-of-type(3) {
  transform: translateY(-50%) translateX(-50%) translate3d(0rem, 0rem, 0) rotate3d(0, 0, 1, 5deg);
  opacity: 1;
}
.profileList-item .pSlider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(35px, 4.166vw, 80px);
  height: clamp(35px, 4.166vw, 80px);
  z-index: 5;
}
@media (width <= 768px) {
  .profileList-item .pSlider-button {
    width: 8vw;
    height: 8vw;
  }
}
.profileList-item .pSlider-button.prev {
  content: "";
  left: 0;
  background: url(../images/common/prev.png) no-repeat center;
  background-size: contain;
}
@media (width <= 768px) {
  .profileList-item .pSlider-button.prev {
    left: 5vw;
  }
}
.profileList-item .pSlider-button.next {
  content: "";
  right: 0;
  background: url(../images/common/next.png) no-repeat center;
  background-size: contain;
}
@media (width <= 768px) {
  .profileList-item .pSlider-button.next {
    right: 5vw;
  }
}
.profileList-item .pSlider-button:hover {
  cursor: pointer;
}
.profileList-item .textBox {
  padding-right: 2.8vw;
}
@media (width <= 768px) {
  .profileList-item .textBox {
    padding-right: 0;
  }
}
.profileList-item .textBox .name {
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(30px, 2.555rem, 46px);
  margin-bottom: clamp(25px,2.083vw, 40px);
}
@media (width <= 768px) {
  .profileList-item .textBox .name {
    font-size: max(30px, 2.142rem);
    margin-bottom: 2.5vw;
  }
}
.profileList-item .textBox dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.profileList-item .textBox dl dt {
  color: #53403b;
  font-weight: bold;
}
@media (width <= 768px) {
  .profileList-item .textBox dl dt {
    font-size: max(15px, 1.0714rem);
  }
}
.profileList-item .textBox dl dd {
  font-weight: 500;
}
@media (width <= 768px) {
  .profileList-item .textBox dl dd {
    font-size: max(14px, 1rem);
  }
}
.profileList-item .textBox dl + dl {
  margin-top: 10px;
}
.profileList-item + .profileList-item {
  margin-top: clamp(100px, 9.375vw, 180px);
}
@media (width <= 768px) {
  .profileList-item + .profileList-item {
    margin-top: 5vw;
  }
}

#sec03 {
  background: #fff;
}
#sec03 .closetWrap {
  display: grid;
  grid-template-columns: 52% auto;
}
@media (width <= 768px) {
  #sec03 .closetWrap {
    display: block;
    padding: 0 15px;
  }
}
#sec03 .closetWrap .closet-dressArea__slide .slick-slide {
  position: relative;
  max-height: 750px;
  border-radius: 0px 0px 8vw 0px;
  overflow: hidden;
}
#sec03 .closetWrap .closet-dressArea__slide .slick-slide img {
  width: 100%;
  height: 50vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (width <= 768px) {
  #sec03 .closetWrap .closet-dressArea__slide .slick-slide img {
    height: 70vw;
  }
}
#sec03 .closetWrap .closet-dressArea__slide .slick-dots {
  bottom: -40px;
}
#sec03 .closetWrap .closet-dressArea__slide .slick-dots li button::before {
  color: #e1c0ac;
  opacity: 1;
  font-size: 15px;
}
@media (width <= 768px) {
  #sec03 .closetWrap .closet-dressArea__slide .slick-dots li button::before {
    font-size: 1rem;
  }
}
#sec03 .closetWrap .closet-dressArea__slide .slick-dots li.slick-active button::before {
  color: #53403b;
}
#sec03 .closetWrap .closet-textArea {
  padding-right: clamp(15px, 5vw, 100px);
  padding-left: min(65px, 3.385vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (width <= 768px) {
  #sec03 .closetWrap .closet-textArea {
    padding-top: 8vw;
  }
}

#sec04 .contentsWrap {
  display: grid;
  grid-template-columns: 42% auto;
}
@media (width <= 768px) {
  #sec04 .contentsWrap {
    grid-template-columns: 1fr;
  }
}
#sec04 .contentsWrap-newsContents {
  padding-right: clamp(15px, 5vw, 100px);
  padding-left: 1.6vw;
}
@media (width <= 768px) {
  #sec04 .contentsWrap-newsContents {
    padding-right: 15px;
  }
}
#sec04 .contentsWrap-newsContents .newsList li {
  border-bottom: solid 1px #444;
}
#sec04 .contentsWrap-newsContents .newsList li a {
  transition: 0.6s ease-in-out !important;
}
#sec04 .contentsWrap-newsContents .newsList li a .dataList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#sec04 .contentsWrap-newsContents .newsList li a .dataList .date {
  font-size: clamp(13px, 0.888rem, 16px);
  padding-right: clamp(30px, 2.343vw, 45px);
}
@media (width <= 768px) {
  #sec04 .contentsWrap-newsContents .newsList li a .dataList .date {
    font-size: max(13px, 0.928rem);
  }
}
#sec04 .contentsWrap-newsContents .newsList li a .dataList .date.NEW {
  padding-left: 2.58vw;
  position: relative;
}
@media (width <= 768px) {
  #sec04 .contentsWrap-newsContents .newsList li a .dataList .date.NEW {
    padding-left: 10vw;
  }
}
#sec04 .contentsWrap-newsContents .newsList li a .dataList .date.NEW::before {
  position: absolute;
  content: "NEW";
  font-size: clamp(13px, 0.888rem, 16px);
  color: #e1c0ac;
  left: 0;
  top: 0;
}
@media (width <= 768px) {
  #sec04 .contentsWrap-newsContents .newsList li a .dataList .date.NEW::before {
    font-size: max(13px, 0.928rem);
  }
}
#sec04 .contentsWrap-newsContents .newsList li a .dataList .cat {
  font-size: clamp(13px, 0.888rem, 16px);
  padding: 5px 10px 8px;
  border: solid 1px #444;
  border-radius: 50px;
  line-height: 1;
}
@media (width <= 768px) {
  #sec04 .contentsWrap-newsContents .newsList li a .dataList .cat {
    font-size: max(13px, 0.928rem);
  }
}
#sec04 .contentsWrap-newsContents .newsList li a .news-title {
  font-size: clamp(14px, 1.1111rem, 20px);
  font-weight: bold;
  padding: 25px 0 15px;
}
@media (width <= 768px) {
  #sec04 .contentsWrap-newsContents .newsList li a .news-title {
    font-size: max(15px, 1.071rem);
    padding: 15px 0 8px;
  }
}
#sec04 .contentsWrap-newsContents .newsList li a:hover {
  transition: 0.6s ease-in-out !important;
}
#sec04 .contentsWrap-newsContents .newsList li a:hover .news-title {
  color: #ad8f7c;
}
#sec04 .contentsWrap-newsContents .newsList li + li {
  margin-top: clamp(15px, 1.562vw, 30px);
}

#sec05 {
  background: #fff;
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
.p-sec01 .profileList-item .textBox {
  padding-right: 2.8vw;
}
.p-sec01 .profileList-item .pSlider .p-mainImage {
  border-radius: 0px 50px 50px 50px;
  border: solid 4px #53403b;
  overflow: hidden;
  width: 18.75vw;
  margin: 0 auto;
}
.p-sec01 .profileList-item:nth-of-type(even) .textBox {
  order: 2;
  padding-left: 2.8vw;
}
@media (width <= 768px) {
  .p-sec01 .profileList-item:nth-of-type(even) .textBox {
    order: 1;
  }
}
.p-sec01 .profileList-item:nth-of-type(even) .pSlider {
  order: 1;
}
@media (width <= 768px) {
  .p-sec01 .profileList-item:nth-of-type(even) .pSlider {
    order: 2;
  }
}
.p-sec01 .profileList-item:last-of-type .pSlider {
  place-self: center;
}
@media (width <= 768px) {
  .p-sec01 .profileList-item:last-of-type .pSlider figure {
    width: 47vw;
    margin-top: 8vw;
  }
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
.c-sec01 .closetList-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: clamp(15px, 5.208vw, 100px) clamp(15px, 2.083vw, 40px);
}
@media (width <= 768px) {
  .c-sec01 .closetList-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 7vw 1.58vw;
    margin-top: 0;
  }
}
@media (width <= 450px) {
  .c-sec01 .closetList-list {
    grid-template-columns: 1fr;
    grid-gap: 40px 0;
    margin-top: 60px;
  }
}
.c-sec01 .closetList-list li .imgBox {
  width: 100%;
  position: relative;
}
.c-sec01 .closetList-list li .imgBox img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
  border-radius: 0px 0px 50px 0px;
  border: solid 3px #ad8f7c;
  overflow: hidden;
}
@media (width <= 768px) {
  .c-sec01 .closetList-list li .imgBox img {
    height: 42vw;
  }
}
@media (width <= 450px) {
  .c-sec01 .closetList-list li .imgBox img {
    height: 82vw;
  }
}
.c-sec01 .closetList-list li .imgBox img:nth-of-type(2) {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}
.c-sec01 .closetList-list li .imgBox img.after {
  opacity: 0;
}
.c-sec01 .closetList-list li .imgBox:hover {
  opacity: 1;
}
.c-sec01 .closetList-list li .imgBox:hover img {
  opacity: 1;
}
.c-sec01 .closetList-list li .imgBox:hover img.before {
  opacity: 0;
}
.c-sec01 .closetList-list li .imgBox:hover img.after {
  opacity: 1;
}
.c-sec01 .closetList-list li .imgBox:hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 15px;
  right: -15px;
  z-index: -1;
}
.c-sec01 .closetList-list li .linkBox {
  margin-top: 1.562vw;
}
.c-sec01 .closetList-list li .linkBox .name {
  font-weight: bold;
  text-align: center;
}
.c-sec01 .closetList-list li .linkBox .onliine {
  margin-top: 15px;
}

.c-sec02 {
  background: #fff;
}
.c-sec02 .patternList {
  max-width: 1300px;
  margin: 0 auto;
}
.c-sec02 .patternList-item {
  display: grid;
  grid-template-columns: 52% auto;
  place-items: center;
}
@media (width <= 768px) {
  .c-sec02 .patternList-item {
    grid-template-columns: 1fr;
  }
}
.c-sec02 .patternList-item .patternImage {
  width: 23.4vw;
}
@media (width <= 768px) {
  .c-sec02 .patternList-item .patternImage {
    width: 40.36vw;
  }
}
@media (width <= 450px) {
  .c-sec02 .patternList-item .patternImage {
    width: 75%;
  }
}
.c-sec02 .patternList-item .patternImage img {
  border-radius: 0 8vw 8vw 8vw;
  border: solid 4px #ad8f7c;
  overflow: hidden;
}
.c-sec02 .patternList-item .patternOverview {
  width: 100%;
}
@media (width <= 768px) {
  .c-sec02 .patternList-item .patternOverview {
    margin-top: 3vw;
  }
}
.c-sec02 .patternList-item .patternOverview .title {
  font-size: clamp(15px, 1.222rem, 22px);
  font-weight: bold;
  margin-bottom: 2.5vw;
}
@media (width <= 768px) {
  .c-sec02 .patternList-item .patternOverview .title {
    text-align: center;
    font-size: max(14px, 1rem);
  }
}
.c-sec02 .patternList-item .patternOverview dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .c-sec02 .patternList-item .patternOverview dl {
    justify-content: center;
  }
}
.c-sec02 .patternList-item .patternOverview dl dt,
.c-sec02 .patternList-item .patternOverview dl dd {
  font-size: clamp(14px, 1.111rem, 20px);
  font-weight: 500;
}
@media (width <= 768px) {
  .c-sec02 .patternList-item .patternOverview dl dt,
  .c-sec02 .patternList-item .patternOverview dl dd {
    font-size: max(14px, 1rem);
  }
}
.c-sec02 .patternList-item .patternOverview dl dt {
  width: 30%;
}
.c-sec02 .patternList-item .patternOverview dl dd a {
  display: inline-block;
  width: 100%;
  padding-right: 35px;
  position: relative;
}
.c-sec02 .patternList-item .patternOverview dl dd a::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 21l-8-9h6v-12h4v12h6l-8 9zm9-1v2h-18v-2h-2v4h22v-4h-2z' fill='%23ad8f7c'/%3E%3C/svg%3E");
  background-size: contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-sec02 .patternList-item .patternOverview dl + dl {
  margin-top: clamp(25px, 2.604vw, 50px);
}
.c-sec02 .patternList-item + .patternList-item {
  margin-top: 6.25vw;
}
@media (width <= 450px) {
  .c-sec02 .patternList-item + .patternList-item {
    margin-top: 12vw;
  }
}
.c-sec02 .sizeTable {
  padding-top: clamp(60px, 6.25vw, 120px);
}
@media (width <= 450px) {
  .c-sec02 .sizeTable {
    overflow: hidden;
  }
}
@media (width <= 450px) {
  .c-sec02 .sizeTable-wrap {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.c-sec02 .sizeTable-wrap table {
  border: solid 4px #53403b;
}
@media (width <= 450px) {
  .c-sec02 .sizeTable-wrap table {
    width: 690px;
  }
}
.c-sec02 .sizeTable-wrap table caption {
  font-size: clamp(18px, 1.333rem, 24px);
  font-weight: bold;
  text-align: left;
  margin-bottom: 25px;
}
.c-sec02 .sizeTable-wrap table tbody tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.c-sec02 .sizeTable-wrap table tbody tr th,
.c-sec02 .sizeTable-wrap table tbody tr td {
  border-bottom: solid 4px #53403b;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 1.111rem, 20px);
  padding: 1.58vw 0;
}
.c-sec02 .sizeTable-wrap table tbody tr th {
  border-left: solid 4px #53403b;
  font-weight: bold;
  line-height: 1.8;
}
.c-sec02 .sizeTable-wrap table tbody tr th.example {
  background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #53403b 50%, #53403b calc(50% + 0.5px), transparent calc(50% + 1px));
}
.c-sec02 .sizeTable-wrap table tbody tr th:first-child {
  border-left: none;
}
.c-sec02 .sizeTable-wrap table tbody tr td {
  border-left: solid 4px #53403b;
  font-weight: 500;
}
.c-sec02 .sizeTable-wrap table tbody tr:last-child th,
.c-sec02 .sizeTable-wrap table tbody tr:last-child td {
  border-bottom: none;
}
.c-sec02 .sizeTable .notes {
  margin-top: 1.89vw;
}
.c-sec02 .sizeTable .notes li {
  font-size: clamp(13px, 0.888rem, 16px);
  font-weight: 500;
  padding-left: 1.2vw;
  position: relative;
}
@media (width <= 768px) {
  .c-sec02 .sizeTable .notes li {
    font-size: max(13px, .92857rem);
    padding-left: 3vw;
  }
}
.c-sec02 .sizeTable .notes li::before {
  position: absolute;
  content: "※";
  font-size: clamp(13px, 0.888rem, 16px);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  left: 0;
  top: 0;
}
@media (width <= 768px) {
  .c-sec02 .sizeTable .notes li::before {
    font-size: max(13px, .92857rem);
  }
}
.c-sec02 .sizeTable .notes li + li {
  margin-top: 8px;
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
@media (width <= 450px) {
  .n-sec01 {
    padding-top: 20vw;
  }
}
.n-sec01 .cat-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-sec01 .cat-list li a {
  font-size: clamp(14px, 1.111rem, 20px);
  font-weight: 500;
}
.n-sec01 .cat-list li.active {
  border-bottom: solid 1px #53403b;
}
.n-sec01 .cat-list li.active a {
  color: #53403b;
  font-weight: bold;
}
.n-sec01 .cat-list li + li {
  margin-left: 3.64vw;
}
.n-sec01 .nList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5.729vw;
  margin-top: 5vw;
}
@media (width <= 768px) {
  .n-sec01 .nList {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 450px) {
  .n-sec01 .nList {
    grid-template-columns: 1fr;
    grid-gap: 40px 0;
  }
}
.n-sec01 .nList li figure {
  width: 100%;
  position: relative;
}
.n-sec01 .nList li figure img {
  border-radius: 0px 0px 50px 0px;
  border: solid 3px #ad8f7c;
  overflow: hidden;
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .n-sec01 .nList li figure img {
    height: 42vw;
  }
}
@media (width <= 450px) {
  .n-sec01 .nList li figure img {
    height: 82vw;
  }
}
.n-sec01 .nList li .textBox .dataList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: clamp(25px, 1.562vw,30px);
}
.n-sec01 .nList li .textBox .dataList .date {
  font-size: clamp(13px, 0.888rem, 16px);
  padding-right: clamp(30px, 2.343vw, 45px);
}
@media (width <= 768px) {
  .n-sec01 .nList li .textBox .dataList .date {
    font-size: max(13px, 0.928rem);
  }
}
.n-sec01 .nList li .textBox .dataList .date.NEW {
  padding-left: 2.58vw;
  position: relative;
}
@media (width <= 768px) {
  .n-sec01 .nList li .textBox .dataList .date.NEW {
    padding-left: 10vw;
  }
}
.n-sec01 .nList li .textBox .dataList .date.NEW::before {
  position: absolute;
  content: "NEW";
  font-size: clamp(13px, 0.888rem, 16px);
  color: #e1c0ac;
  left: 0;
  top: 0;
}
@media (width <= 768px) {
  .n-sec01 .nList li .textBox .dataList .date.NEW::before {
    font-size: max(13px, 0.928rem);
  }
}
.n-sec01 .nList li .textBox .dataList .cat {
  font-size: clamp(13px, 0.888rem, 16px);
  padding: 5px 10px 8px;
  border: solid 1px #444;
  border-radius: 50px;
  line-height: 1;
}
@media (width <= 768px) {
  .n-sec01 .nList li .textBox .dataList .cat {
    font-size: max(13px, 0.928rem);
  }
}
.n-sec01 .nList li .textBox .news-title {
  font-size: clamp(14px, 1.1111rem, 20px);
  font-weight: bold;
  padding: 25px 0 15px 0;
}
@media (width <= 768px) {
  .n-sec01 .nList li .textBox .news-title {
    font-size: max(15px, 1.071rem);
    padding: 15px 0 0;
  }
}
.n-sec01 .nList li:nth-of-type(2), .n-sec01 .nList li:nth-of-type(5), .n-sec01 .nList li:nth-of-type(8), .n-sec01 .nList li:nth-of-type(11) {
  margin-top: 2.083vw;
}
@media (width <= 768px) {
  .n-sec01 .nList li:nth-of-type(2), .n-sec01 .nList li:nth-of-type(5), .n-sec01 .nList li:nth-of-type(8), .n-sec01 .nList li:nth-of-type(11) {
    margin-top: 0;
  }
}
@media (width <= 768px) {
  .n-sec01 .nList li:nth-of-type(even) {
    margin-top: 4vw;
  }
}
@media (width <= 450px) {
  .n-sec01 .nList li:nth-of-type(even) {
    margin-top: 0;
  }
}

/*****************
single
*****************/
.s-sec02 {
  padding-top: 0 !important;
}
.s-sec02 .singleContentsWrap {
  display: grid;
  grid-gap: 0 7.291vw;
  grid-template-columns: 57% auto;
}
@media (width <= 768px) {
  .s-sec02 .singleContentsWrap {
    grid-template-columns: 1fr;
    grid-gap: 12vw 0;
  }
}
.s-sec02 .singleContentsWrap .s-Wrap,
.s-sec02 .singleContentsWrap .s-articles {
  background: #fff;
  border-radius: 50px;
  padding: 2.343vw 1.302vw;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-Wrap,
  .s-sec02 .singleContentsWrap .s-articles {
    border-radius: 2.5rem;
    padding: 6vw 10px;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList .date {
  font-size: clamp(14px, 1.111rem, 20px);
  padding-right: clamp(40px, 2.604vw, 50px);
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList .date.NEW {
  padding-left: 2.998vw;
  position: relative;
}
@media (width <= 768px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList .date.NEW {
    padding-left: 5vw;
  }
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList .date.NEW {
    padding-left: 9vw;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList .date.NEW::before {
  position: absolute;
  content: "NEW";
  font-size: clamp(14px, 1.111rem, 20px);
  color: #e1c0ac;
  left: 0;
  top: 0;
}
@media (width <= 768px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList .date.NEW::before {
    font-size: max(13px, 0.928rem);
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .dataList .cat {
  font-size: clamp(14px, 1.111rem, 20px);
  padding: 5px 10px 8px;
  border: solid 1px #444;
  border-radius: 50px;
  line-height: 1;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s--title {
  margin: 1.822vw auto;
  font-size: clamp(18px, 1.944rem, 35px);
  font-weight: bold;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s--title {
    font-size: max(18px, 1.285rem);
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .eyecach {
  border-radius: 2.604vw;
  overflow: hidden;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content {
  margin-top: 4.166vw;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content img:not(.emoji) {
  width: 100% !important;
  height: auto !important;
  max-width: 85%;
  margin: 2vw auto;
  border-radius: 1.302vw;
  overflow: hidden;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content img:not(.emoji) {
    margin: 6vw auto;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content img.emoji {
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content video {
  width: 100% !important;
  height: auto !important;
  max-width: 85%;
  margin: 2vw auto;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content video {
    margin: 6vw auto;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content h1 {
  margin-top: 3.385vw;
  margin-bottom: 1.822vw;
  padding-left: 5px;
  font-size: clamp(16px, 1.444rem, 26px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(225, 192, 172, 0.45) 70%);
  font-weight: bold;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content h1 {
    font-size: max(16px, 1.142rem);
    margin-bottom: 3vw;
    margin-top: 5vw;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content h2 {
  padding-left: 5px;
  margin-bottom: 1.041vw;
  font-size: clamp(15px, 1.222rem, 22px);
  background-image: repeating-linear-gradient(90deg, #53403b 0, #53403b 2px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0) 4px);
  background-size: 4px 4px;
  background-repeat: repeat-x;
  background-position: center bottom;
  font-weight: bold;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content h2 {
    font-size: max(15px, 1.071rem);
    padding-bottom: 1.5vw;
    margin-bottom: 3vw;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content h2:nth-of-type(n+2) {
  margin-top: 1.562vw;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content h3 {
  font-size: clamp(15px, 1.2rem, 18px);
  margin: 10px 0;
  background: #fcf9f4;
  padding: 5px 8px;
  font-weight: 500;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ul {
  margin: 1.562vw auto;
  padding-left: 1vw;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ul li {
  padding-left: 1.2vw;
  font-size: clamp(13px, 0.888rem, 15px);
  font-weight: 500;
  position: relative;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ul li {
    font-size: max(13px, .9285rem);
    padding-left: 5vw;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ul li::before {
  position: absolute;
  content: "●";
  color: #ad8f7c;
  font-size: clamp(13px, 0.888rem, 15px);
  left: 0;
  top: 0;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ul li::before {
    font-size: max(13px, .9285rem);
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ol {
  border: solid 1px #d8bfac;
  border-radius: 10px;
  padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  list-style: decimal;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ol li a {
  font-weight: 500;
  color: #ad8f7c;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content ol li ul {
  margin: auto;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content blockquote {
  margin: 1.562vw auto;
  border-radius: 25px;
  background: #fcf9f4;
  padding: 1.822vw;
  border: solid 1.562vw #e7d8cd;
  position: relative;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content blockquote {
    margin: 5vw auto;
    padding: 2.5vw;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content blockquote::before {
  position: absolute;
  content: "";
  width: 2.604vw;
  height: 2.604vw;
  background: url(../images/common/blockquote.png) no-repeat center;
  background-size: contain;
  left: -1.041vw;
  top: -1.041vw;
}
@media (width <= 450px) {
  .s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content blockquote::before {
    width: 4vw;
    height: 4vw;
    left: 0;
    top: -2vw;
  }
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content blockquote cite {
  display: block;
  margin-top: 0.88vw;
}
.s-sec02 .singleContentsWrap .s-story .s-Wrap .s-content blockquote cite a {
  color: #ad8f7c;
  word-break: break-all;
}
.s-sec02 .singleContentsWrap .s-articles {
  height: -moz-fit-content;
  height: fit-content;
}
.s-sec02 .singleContentsWrap .s-articles-title {
  text-align: center;
}
.s-sec02 .singleContentsWrap .s-articles-title .heading {
  font-size: clamp(16px, 1.777rem, 32px);
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #53403b;
}
.s-sec02 .singleContentsWrap .s-articles-title .heading span {
  color: #e1c0ac;
  font-size: clamp(16px, 1.777rem, 32px);
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.s-sec02 .singleContentsWrap .s-articles-title .j-heading {
  font-size: clamp(13px, 1.111rem, 20px);
  color: #53403b;
  font-weight: bold;
}
.s-sec02 .singleContentsWrap .s-articles .articlesContentsWrap {
  margin-top: 2.604vw;
}
.s-sec02 .singleContentsWrap .s-articles .articlesContentsWrap .wpp-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.s-sec02 .singleContentsWrap .s-articles .articlesContentsWrap .wpp-list li figure {
  width: 48%;
}
.s-sec02 .singleContentsWrap .s-articles .articlesContentsWrap .wpp-list li figure .wpp-thumbnail {
  width: 100%;
  margin-right: 0;
  border-radius: 0px 0px 2vw 0px;
}
.s-sec02 .singleContentsWrap .s-articles .articlesContentsWrap .wpp-list li .popular-textContents {
  padding-left: 2vw;
  width: 52%;
}
.s-sec02 .singleContentsWrap .s-articles .articlesContentsWrap .wpp-list li .popular-textContents a {
  font-size: clamp(13px, 1rem, 16px);
  font-weight: bold;
}
.s-sec02 .singleContentsWrap .s-articles .btn-more {
  margin-top: 4vw;
}
@media (width <= 768px) {
  .s-sec02 .singleContentsWrap .s-articles .btn-more {
    margin-top: 12vw;
  }
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
.f-sec01 .faqList h2 {
  font-size: clamp(18px, 1.2777rem, 23px);
  font-weight: bold;
  padding-bottom: 0.5vw;
  position: relative;
  margin-bottom: 1vw;
}
@media (width <= 768px) {
  .f-sec01 .faqList h2 {
    font-size: max(18px, 1.2857rem);
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
  }
}
.f-sec01 .faqList h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #53403b 0px, #53403b 1px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%), repeating-linear-gradient(135deg, #ad8f7c 0px, #ad8f7c 1px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 8px 8px;
}
.f-sec01 .faqList .faqItem .faq-title {
  font-size: clamp(15px, 1.333rem, 24px);
  font-weight: bold;
  padding: 1.822vw 3.645vw 1.822vw 4.85vw;
  position: relative;
  border: solid 4px #e1c0ac;
  transition: all 0.4s ease-in-out;
}
@media (width <= 768px) {
  .f-sec01 .faqList .faqItem .faq-title {
    font-size: max(15px, 1.071rem);
  }
}
@media (width <= 450px) {
  .f-sec01 .faqList .faqItem .faq-title {
    padding-left: 8vw;
    line-height: 1.8;
    border-width: 2px;
    padding-right: 8vw;
  }
}
.f-sec01 .faqList .faqItem .faq-title::before {
  position: absolute;
  content: "Q";
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e1c0ac;
  font-size: clamp(20px, 2.777rem, 50px);
  top: 1vw;
  left: 1.562vw;
}
@media (width <= 768px) {
  .f-sec01 .faqList .faqItem .faq-title::before {
    font-size: max(20px, 1.428rem);
    line-height: 1.5;
  }
}
.f-sec01 .faqList .faqItem .faq-title::after {
  position: absolute;
  content: "";
  width: 1.198vw;
  height: 1.198vw;
  background: url(../images/faq/arrow-open.png) no-repeat center;
  background-size: contain;
  top: 50%;
  right: 1.562vw;
  transform: translateY(-50%);
}
@media (width <= 768px) {
  .f-sec01 .faqList .faqItem .faq-title::after {
    width: 3vw;
  }
}
.f-sec01 .faqList .faqItem .faq-title:hover {
  cursor: pointer;
}
.f-sec01 .faqList .faqItem .faq-cont {
  padding: 1.822vw 3.645vw 1.822vw 4.85vw;
  background: #e1c0ac;
  font-size: clamp(14px, 1.111rem, 20px);
  font-weight: 500;
  color: #53403b;
  position: relative;
  border-radius: 0 0 2.604vw 0;
  display: none;
}
@media (width <= 768px) {
  .f-sec01 .faqList .faqItem .faq-cont {
    font-size: max(14px, 1rem);
  }
}
@media (width <= 450px) {
  .f-sec01 .faqList .faqItem .faq-cont {
    padding-left: 8vw;
  }
}
.f-sec01 .faqList .faqItem .faq-cont::before {
  position: absolute;
  content: "A";
  font-family: "neue-kabel", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  font-size: clamp(20px, 2.777rem, 50px);
  top: 1.82vw;
  left: 1.562vw;
}
@media (width <= 768px) {
  .f-sec01 .faqList .faqItem .faq-cont::before {
    font-size: max(20px, 1.428rem);
    line-height: 1.5;
  }
}
.f-sec01 .faqList .faqItem.read .faq-title {
  background: #53403b;
  border-color: #53403b;
  color: #fff;
}
.f-sec01 .faqList .faqItem.read .faq-title::after {
  background: url(../images/faq/arrow-close.png) no-repeat center;
  background-size: contain;
}
.f-sec01 .faqList .faqItem + .faqItem {
  margin-top: 2vw;
}
@media (width <= 450px) {
  .f-sec01 .faqList .faqItem + .faqItem {
    margin-top: 5vw;
  }
}
.f-sec01 .faqList + .faqList {
  margin-top: 5vw;
}
@media (width <= 450px) {
  .f-sec01 .faqList + .faqList {
    margin-top: 8vw;
  }
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
.cnt-sec01 form dl dt p {
  font-weight: bold;
  font-size: clamp(15px, 1.333rem, 24px);
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (width <= 768px) {
  .cnt-sec01 form dl dt p {
    font-size: max(15px, 1.0714rem);
  }
}
.cnt-sec01 form dl dt p::before {
  position: absolute;
  content: "❋";
  font-size: clamp(12px, 1rem, 18px);
  right: -20px;
  top: -5px;
}
.cnt-sec01 form dl dd {
  margin-top: 1.0416vw;
}
.cnt-sec01 form dl dd input,
.cnt-sec01 form dl dd textarea {
  outline: none;
  border: none;
  width: 100%;
  padding: 0.7812vw;
  background: #e1c0ac;
  font-size: clamp(14px, 1rem, 18px);
  border-radius: 0 0 2.604vw 0;
  font-weight: 500;
  line-height: 1.8;
}
@media (width <= 768px) {
  .cnt-sec01 form dl dd input,
  .cnt-sec01 form dl dd textarea {
    font-size: max(14px, 1rem);
  }
}
.cnt-sec01 form dl + dl {
  margin-top: 3.125vw;
}
.cnt-sec01 form .link-send {
  margin: 7.291vw auto 0;
  display: flex;
  justify-content: center;
}
@media (width <= 450px) {
  .cnt-sec01 form .link-send {
    margin-top: 12vw;
  }
}
.cnt-sec01 form .link-send input {
  width: 10.416vw;
  height: 10.416vw;
  border-radius: 50%;
  background: #e1c0ac;
  text-align: center;
  font-size: clamp(15px, 1.333rem, 24px);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #444;
  transition: all 0.4s ease-in-out;
}
@media (width <= 768px) {
  .cnt-sec01 form .link-send input {
    font-size: max(15px, 1.0714rem);
    width: 12vw;
    height: 12vw;
  }
}
@media (width <= 450px) {
  .cnt-sec01 form .link-send input {
    width: 18vw;
    height: 18vw;
  }
}
.cnt-sec01 form .link-send input:hover {
  cursor: pointer;
  background: #ad8f7c;
  color: #fff;
}
.cnt-sec01 form .wpcf7-spinner {
  display: none;
}/*# sourceMappingURL=style.css.map */