@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400&family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap");
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333333;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.032em;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.16%;
}

.inner--size-l {
  max-width: 1240px;
  width: 86.11%;
}

.oneSide-margin {
  width: min(89.93vw, 1440px + (100vw - 1440px) / 2);
}

.textCenter {
  text-align: center;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInLoadTrigger,
.fadeUpLoadTrigger,
.fadeLeftLoadTrigger,
.fadeRightLoadTrigger {
  opacity: 0;
}

/*=================================
  ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger,
.zoomInLoadTrigger,
.zoomOutLoadTrigger {
  opacity: 0;
}

/*==================================
  じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger,
.blurLoadTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

.bl-ttl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .bl-ttl {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

.bl-ttl__ja {
  font-size: 44px;
  letter-spacing: 0.4em;
  line-height: 1.5;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__ja {
    font-size: 32px;
    writing-mode: unset;
    text-align: center;
    letter-spacing: 0.064em;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja {
    font-size: 25px;
  }
}

.bl-ttl__en {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.19em;
  line-height: 1.375;
  writing-mode: vertical-lr;
  color: rgba(200, 102, 23, 0.6);
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__en {
    font-size: 14px;
    writing-mode: unset;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__en {
    font-size: 12px;
  }
}

.bl-ttl__ja--wh,
.bl-ttl__en--wh {
  color: #FFFFFF;
}

.bl-ttl--right {
  margin-right: 0;
  margin-left: auto;
}

.bl-ttl__ja--horizontal {
  writing-mode: unset;
  letter-spacing: 0.064em;
}

.bl-ttl__en--horizontal {
  writing-mode: unset;
  letter-spacing: 0.064em;
}

/*===========================
ページ共通
===========================*/
.inner-rightAlignment {
  padding-left: 4%;
}
@media screen and (max-width: 768px) {
  .inner-rightAlignment {
    padding-left: 0;
  }
}

.bg-icho-ttl {
  position: relative;
}

.bg-icho-ttl__icon {
  width: 12.45%;
  margin: 0 auto;
  opacity: 0.15;
}
@media screen and (max-width: 1024px) {
  .bg-icho-ttl__icon {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .bg-icho-ttl__icon {
    width: 30%;
  }
}

.bg-icho-ttl__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.056em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .bg-icho-ttl__txt {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .bg-icho-ttl__txt {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }
}

.underFv-deco {
  position: absolute;
  width: 15.2vw;
  max-width: 280px;
  right: 0;
  top: 0;
}

.under-fv {
  margin-top: 176px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .under-fv {
    margin-top: 82px;
  }
}

.under-fv__img {
  width: 100%;
}

.page-ttl {
  font-size: 38px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.076em;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-ttl {
    font-size: 23px;
    width: 100%;
  }
}

.under-fv__deco-left {
  position: absolute;
  width: 10%;
  top: 0;
  left: 0;
  transform: translateY(-18%);
}
@media screen and (max-width: 768px) {
  .under-fv__deco-left {
    width: 14%;
  }
}

.under-fv__deco-right {
  width: 15%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(82.4%);
}
@media screen and (max-width: 768px) {
  .under-fv__deco-right {
    width: 18%;
  }
}

.linkAdjust {
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 1024px) {
  .linkAdjust {
    padding-top: 30px;
    margin-top: -30px;
  }
}

/*==========================
ヘッダー
==========================*/
.head {
  width: 100%;
  padding-left: 3.75%;
  padding-right: 4.72%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.head__logo {
  width: 146px;
  height: 132px;
  background-color: #FFFFFF;
  border-radius: 0 0 100px 100px;
  position: relative;
  position: absolute;
  top: 0;
  left: 3.75%;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    position: fixed;
    top: 0;
    left: 5.33%;
    z-index: 9999;
  }
}
@media screen and (max-width: 768px) {
  .head__logo {
    width: 80px;
    height: 81.3px;
  }
}
.head__logo img {
  width: 103px;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .head__logo img {
    width: 60px;
  }
}

.head__nav {
  width: 814px;
  margin-right: 22%;
  margin-left: auto;
  margin-top: 20px;
  padding: 16px 5.52%;
  background-color: #FFFFFF;
  border-radius: 34px;
}

.headNav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headNav-list__item a {
  color: #833320;
  transition: all 0.5s;
  font-weight: 500;
}
.headNav-list__item a:hover {
  color: #C86617;
  transition: all 0.5s;
}

.headNav-forEc {
  position: absolute;
  top: 20px;
  right: 4.72%;
}
.headNav-forEc a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 25px;
  background-color: #833320;
  transition: all 0.5s;
  border-radius: 34px;
  font-weight: 400;
}
.headNav-forEc a:hover {
  background-color: #C86617;
  transition: all 0.5s;
}

.forEc-icon {
  width: 24px;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .forEc-icon {
    margin-right: 8px;
  }
}
.forEc-icon img {
  vertical-align: sub;
}

.forEc-txt {
  color: #FFFFFF;
  font-weight: 500;
}

.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FEFEFC;
  transition: all 0.3s;
  pointer-events: none;
}

.burger-nav__right-deco {
  position: absolute;
  width: 20%;
  top: 10vh;
  right: 0;
}

.burger-nav__left-deco {
  position: absolute;
  width: 16%;
  bottom: 10vh;
  left: 0;
}

.burger-nav.panelactive {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
}

.burger-nav.panelactive .burger-nav__listWrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.burger-nav .burger-nav__list {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav.panelactive .burger-nav__list {
  display: block;
}

.burgerNav__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav .burgerNav-list__item {
  list-style: none;
  margin-bottom: 10px;
  text-align: center;
}

.burger-nav .burgerNav-list__item a {
  color: #833320;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 27px;
  right: 14px;
  cursor: pointer;
  width: 30px;
  height: 20px;
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background-color: #833320;
  width: 100%;
}

.openbtn1 span:nth-of-type(1) {
  top: 0;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
}

.burgerNav-list__item.burgerNav-list__item--forEc {
  margin-top: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.burgerNav-list__item.burgerNav-list__item--forEc a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
  background-color: #833320;
  transition: all 0.5s;
  border-radius: 34px;
}
.burgerNav-list__item.burgerNav-list__item--forEc a .forEc-icon {
  width: 13px;
  margin-right: 8px;
}
.burgerNav-list__item.burgerNav-list__item--forEc a .forEc-icon img {
  vertical-align: sub;
}
.burgerNav-list__item.burgerNav-list__item--forEc a .forEc-txt {
  color: #FFFFFF;
  font-weight: 500;
}

/*===========================
フッター
===========================*/
.foot {
  margin-top: 120px;
  padding: 120px 0 23px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .foot {
    margin-top: 80px;
    padding: 50px 0 10px;
  }
}

.foot__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.foot__bg img {
  -o-object-position: top center;
     object-position: top center;
}

.foot-nav {
  padding-bottom: 52px;
  border-bottom: 0.5px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .foot-nav {
    padding-bottom: 15px;
  }
}

.foot-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.8%;
}
@media screen and (max-width: 768px) {
  .foot-nav__list {
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .foot-nav__item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.foot-nav__item a {
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: 0.036em;
  font-weight: 400;
  transition: all 0.3s;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .foot-nav__item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .foot-nav__item a {
    font-size: 14px;
  }
}
.foot-nav__item a:hover {
  color: #B49E5F;
  transition: all 0.3s;
}

.foot-under-nav {
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .foot-under-nav {
    width: 80%;
    margin: 30px auto;
  }
}

.foot-under-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.55%;
}
@media screen and (max-width: 768px) {
  .foot-under-nav__list {
    gap: 5px 35px;
    flex-wrap: wrap;
  }
}

.foot-under-nav__item a {
  color: #FFFFFF;
  line-height: 1;
  font-size: 16px;
  letter-spacing: 0.032em;
  font-weight: 400;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .foot-under-nav__item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .foot-under-nav__item a {
    font-size: 12px;
  }
}
.foot-under-nav__item a:hover {
  color: #B49E5F;
  transition: all 0.3s;
}

.foot-sns {
  margin-top: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
}
@media screen and (max-width: 768px) {
  .foot-sns {
    margin-top: 35px;
    gap: 25px;
  }
}

.foot-sns__item {
  width: 35px;
}

.foot__logo {
  margin: 73px auto 0;
  width: 10.9%;
  aspect-ratio: 1/1;
  max-width: 180px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .foot__logo {
    margin: 40px auto 0;
    width: 30%;
    aspect-ratio: 1/1;
    max-width: 120px;
  }
}
.foot__logo img {
  position: absolute;
  width: 67.5%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.foot__copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.024em;
  line-height: 1;
  color: #FFFFFF;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .foot__copyright {
    margin-top: 15px;
    font-size: 10px;
  }
}

/*---------------------------
TOPページ
---------------------------*/
/*========= ローディング ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #FFF;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 14.8vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  #splash_logo img {
    width: 32vw;
  }
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bl-topBtn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.bl-topBtn a {
  line-height: 1;
  font-weight: 400;
  display: block;
  padding: 10px 30px;
  position: relative;
  border: 1px solid #833320;
  border-radius: 26px;
}
.bl-topBtn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  width: 63px;
  height: 1px;
  background-color: #833320;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .bl-topBtn a::before {
    width: 45px;
    right: -24px;
  }
}
.bl-topBtn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -35px;
  width: 7px;
  height: 1px;
  background-color: #833320;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .bl-topBtn a::after {
    right: -25px;
  }
}
.bl-topBtn a:hover::before {
  right: -44px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .bl-topBtn a:hover::before {
    right: -34px;
  }
}
.bl-topBtn a:hover::after {
  right: -45px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .bl-topBtn a:hover::after {
    right: -35px;
  }
}

/*======== fv =========*/
.fv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.fv-txt {
  font-size: 39px;
  writing-mode: vertical-rl;
  position: absolute;
  top: 23%;
  left: 10.2%;
}
@media screen and (max-width: 1024px) {
  .fv-txt {
    font-size: 24px;
    left: 50%;
    transform: translateX(-50%);
    top: 44%;
  }
}
@media screen and (max-width: 768px) {
  .fv-txt {
    top: 30%;
  }
}
.fv-txt .fv-txt__block:first-of-type {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.fv-txt .fv-txt__block:nth-of-type(2) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  margin-top: 72px;
}
@media screen and (max-width: 1024px) {
  .fv-txt .fv-txt__block:nth-of-type(2) {
    margin-top: 35px;
  }
}

.fv-txt__block {
	position: relative;
	transform: translateY(30px);
  display: block;
  font-weight: 300;
  font-size: 39px;
  letter-spacing: 0.4em;
  line-height: 1.9;
  -webkit-animation-name: fvTxtAnime;
          animation-name: fvTxtAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .fv-txt__block {
    font-size: 24px;
  }
}

@-webkit-keyframes fvTxtAnime {
  0% {
    opacity: 0;
	transform: translateY(-30px);
  }
  100% {
    opacity: 1;
	transform: translateY(0);
  }
}

@keyframes fvTxtAnime {
  0% {
    opacity: 0;
	transform: translateY(-30px);
  }
  100% {
    opacity: 1;
	transform: translateY(0);
  }
}
.fv-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .fv-img img {
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 768px) {
  .fv-img img {
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.fv-logo {
  position: absolute;
  left: 50%;
  width: min(13.48vw, 24.7vh);
  height: auto;
  top: 12%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .fv-logo {
    width: min(32.5%, 150px);
  }
}

.fv-deco-right {
  width: 8.4%;
  right: 0;
  top: 10%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .fv-deco-right {
    width: 21%;
    top: 6.4%;
  }
}

.fv-deco-left {
  width: 10.13%;
  left: 0;
  bottom: 7.11%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .fv-deco-left {
    width: 20%;
    bottom: 6.4%;
  }
}

.fv-deco-bottom {
  width: 100%;
  position: absolute;
  bottom: -1.77%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fv-deco-bottom {
    bottom: -7%;
  }
}

.underFv-deco--top {
  top: 94vh;
}
@media screen and (max-width: 1024px) {
  .underFv-deco--top {
    top: unset;
    bottom: -60px;
  }
}

/*======== news =========*/
.top-news {
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .top-news {
    margin-top: 60px;
  }
}

.inner--top-news {
  padding-right: 14.3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .inner--top-news {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .inner--top-news {
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 5%;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .inner--top-news {
    align-items: flex-start;
  }
}

.bl-ttl__ja--top-news {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja--top-news {
    font-size: 20px;
  }
}

.bl-ttl__en--top-news {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__en--top-news {
    font-size: 12px;
  }
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .top-news__list {
    width: 100%;
    margin-top: 25px;
  }
}

.top-news__item a {
  line-height: 1.18;
  transition: all 0.5s;
  display: flex;
  align-items: flex-start;
  gap: 35px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .top-news__item a {
    gap: 15px;
    line-height: 1.7;
  }
}
.top-news__item a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}

.top-news__date {
  color: #C86617;
  font-weight: 400;
}

.top-news__ttl {
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .bl-topBtn--top-news {
    width: 100%;
    margin-top: 50px;
  }
}
.bl-topBtn--top-news a {
  width: 174px;
  color: #833320;
}
@media screen and (max-width: 1024px) {
  .bl-topBtn--top-news a {
    margin-left: auto;
    margin-right: 5%;
  }
}

/*======== about =========*/
.top-about {
  margin-top: 55px;
  padding: 120px 0 140px;
  position: relative;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 100px 0;
  }
}

.top-about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top-about__bg img {
  -o-object-position: top;
     object-position: top;
}

.top-about__komainu-r,
.top-about__komainu-l {
  position: absolute;
}

.top-about__komainu-r {
  width: 51%;
  height: auto;
  top: 83px;
  left: 0;
  transform: translateX(-55.1%);
}
@media screen and (max-width: 768px) {
  .top-about__komainu-r {
    width: 80%;
    top: 113px;
  }
}

.top-about__komainu-l {
  width: 50.8%;
  height: auto;
  bottom: 16px;
  right: 0;
  transform: translateX(53.99%);
}
@media screen and (max-width: 768px) {
  .top-about__komainu-l {
    width: 80.8%;
  }
}

.top-about__icho {
  width: 12.45%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-about__icho {
    width: 23%;
  }
}

.top-about__ttl {
  color: #FFFFFF;
  font-size: 32px;
  width: 705px;
  margin: 48px auto 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-about__ttl {
    font-size: 25px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 25px auto 0;
    text-align: center;
    line-height: 1.7;
  }
}

.normalDocs--top-about {
  width: 705px;
  margin: 73px auto 0;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 2.33;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .normalDocs--top-about {
    width: 100%;
    margin: 55px auto 0;
    text-align: center;
  }
}

.bl-topBtn--top-about {
  margin: 90px auto 0;
}
@media screen and (max-width: 768px) {
  .bl-topBtn--top-about {
    margin: 60px auto 0;
  }
}
.bl-topBtn--top-about a {
  padding: 20px 43px;
  color: #FFFFFF;
  width: 313px;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .bl-topBtn--top-about a {
    width: 280px;
  }
}
.bl-topBtn--top-about a::before {
  background-color: #FFFFFF;
}
.bl-topBtn--top-about a::after {
  background-color: #FFFFFF;
}

/*======== about =========*/
.top-choose {
  padding-top: 225px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-choose {
    padding-top: 100px;
  }
}

.top-choose__deco {
  position: absolute;
  width: 12vw;
  max-width: 230px;
  top: 0;
  transform: translateY(-38%);
}
@media screen and (max-width: 768px) {
  .top-choose__deco {
    width: 20%;
  }
}

.inner--top-choose {
  position: relative;
}

.bl-ttl--top-choose {
  position: absolute;
  right: -4.38%;
  top: -114px;
}
@media screen and (max-width: 1024px) {
  .bl-ttl--top-choose {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    right: unset;
    top: 0;
    left: 0;
  }
}

.top-choose__list {
  width: 88.59%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .top-choose__list {
    width: 100%;
    margin: 50px auto 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.top-choose__list .top-choose__item {
  width: calc(50% - 15px);
  position: relative;
  transition: all 0.3s;
  top: 0;
  min-width: 400px;
}
@media screen and (max-width: 1024px) {
  .top-choose__list .top-choose__item {
    min-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .top-choose__list .top-choose__item {
    width: 100%;
    min-width: unset;
  }
}
.top-choose__list .top-choose__item a {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1/0.29;
  position: relative;
  box-shadow: 0 0 10px rgba(131, 51, 32, 0.2);
}
@media screen and (max-width: 768px) {
  .top-choose__list .top-choose__item a {
    aspect-ratio: 1/0.4;
  }
}
.top-choose__list .top-choose__item:hover {
  transition: all 0.3s;
  top: -7px;
}

.top-choose__ttl {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding-left: 5.9%;
}
@media screen and (max-width: 768px) {
  .top-choose__ttl {
    font-size: 16px;
    padding-left: 2%;
  }
}

.top-choose__txt {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.024em;
  margin-top: 15px;
  padding-left: 5.9%;
}
@media screen and (max-width: 768px) {
  .top-choose__txt {
    font-size: 10px;
    padding-left: 2%;
  }
}

.top-choose__img {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  right: 0;
  z-index: -2;
}

.top-choose__item-deco {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-choose__item-deco {
    width: 73%;
  }
  .top-choose__item-deco img {
    -o-object-position: right;
       object-position: right;
  }
}

/*======== 定期便 =========*/
.top-regularMail {
  position: relative;
  background-color: #B49E5F;
  /*margin-top: 180px;*/
}
@media screen and (max-width: 768px) {
  .top-regularMail {
	   /*margin-top: 120px;*/
  }
}

.top-regularMail__deco {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-75%);
  width: 11.18vw;
}
@media screen and (max-width: 768px) {
  .top-regularMail__deco {
    width: 20%;
    transform: translateY(-55%);
  }
}

.top-regularMail__img {
  width: 51.25%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-regularMail__img {
    width: 100vw;
    position: relative;
    margin-left: -5.335vw;
    margin-top: 30px;
  }
}

.top-regularMail__txtBlock {
  width: 48.42%;
  margin-left: auto;
  margin-right: 0;
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .top-regularMail__txtBlock {
    width: 100%;
    margin: 0;
  }
}

.top-regularMail__ttl {
  font-size: 30px;
  letter-spacing: 0.07em;
  line-height: 1.57;
  color: #FFFFFF;
  width: 380px;
  margin: 0 auto;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-regularMail__ttl {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .top-regularMail__ttl {
    font-size: 23px;
  }
}

.top-regularMail__explain {
  color: #FFFFFF;
  width: 380px;
  margin: 45px auto 0;
  line-height: 2.37;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-regularMail__explain {
    width: 100%;
    text-align: center;
  }
}

.top-regularMail__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 436px;
  margin: 75.5px 0 0 auto;
  border: 1px solid #FFFFFF;
  border-radius: 45px;
  color: #FFFFFF;
  padding: 25px 0;
  font-size: 28px;
  letter-spacing: 0.048em;
  line-height: 1;
  transition: all 0.5s;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top-regularMail__btn a {
    width: 100%;
    gap: 15px;
    margin: 35px 0 0 auto;
    border-radius: 35px;
	  transition: unset;
  padding: 15px 0;
    font-size: 20px;
  }
}
.top-regularMail__btn a:hover {
  color: #B49E5F;
  background-color: #FFFFFF;
  transition: all 0.5s;
}

.top-regularMail__btn a:hover .top-regularMail__cart__normal {
  opacity: 0;
  transition: all 0.5s;
}
.top-regularMail__btn a:hover .top-regularMail__cart__hover {
  opacity: 1;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
.top-regularMail__btn a:hover {
	color: #fff;
  background-color:unset;
  transition: unset;
	}
	
.top-regularMail__btn a:hover .top-regularMail__cart__normal {
  opacity: 1;
  transition:unset;
}
}
.top-regularMail__cart {
  width: 40px;
  height: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-regularMail__cart {
    width: 30px;
    height: 30px;
  }
}
.top-regularMail__cart img {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .top-regularMail__cart img {
    width: 30px;
    height: 30px;
  }
}
.top-regularMail__cart .top-regularMail__cart__hover {
  opacity: 0;
  transition: all 0.5s;
}
.top-regularMail__cart .top-regularMail__cart__normal {
  opacity: 1;
  transition: all 0.5s;
}

.top-regularMail__btm-wrap {
  padding-bottom: 73px;
}

/*======== 商品一覧 =========*/
.top-selection {
  padding-top: 134px;
  position: relative;
  overflow-x: hidden;
  overflow-y: clip;
  padding-bottom: 120px;
  margin-bottom: -120px;
}

.top-selection__deco-right {
  position: absolute;
  width: 21%;
  right: 0;
  top: calc(134px - 3.4%);
  z-index: -1;
}

.top-selection__deco-left {
  position: absolute;
  width: 11.3%;
  left: 0;
  top: 30.3%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-selection__deco-left {
    z-index: 1;
    top: 27.3%;
  }
}

.bl-ttl--top-selection {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: block;
}

.bl-ttl__ja--top-selection {
  writing-mode: unset;
  letter-spacing: 0.064em;
  text-align: center;
  font-size: 34px;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__ja--top-selection {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja--top-selection {
    font-size: 25px;
  }
}

.bl-ttl__en--top-selection {
  writing-mode: unset;
  letter-spacing: 0.064em;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__en--top-selection {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__en--top-selection {
    font-size: 12px;
  }
}

.top-selection__list {
  margin-top: 96px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .top-selection__list {
    flex-direction: column;
    margin-top: 50px;
    gap: 15px;
  }
}

.top-selection__item {
  width: calc(50% - 12.5px);
  padding: 20px 23px 30px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(131, 51, 32, 0.2);
}
@media screen and (max-width: 768px) {
  .top-selection__item {
    width: 100%;
    padding: 20px;
  }
}
.top-selection__item a:hover .top-selection__link::before {
  left: 15px;
  transition: all 0.5s;
}
.top-selection__item a:hover .top-selection__link::after {
  right: -17px;
  transition: all 0.5s;
}

.top-selection__img {
  width: 100%;
  aspect-ratio: 1/0.74;
}

.top-selection__name {
  margin-top: 25px;
  color: #C86617;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .top-selection__name {
    margin-top: 18px;
    font-size: 18px;
  }
}

.top-selection__explain {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.028em;
  line-height: 1.76;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .top-selection__explain {
    font-size: 14px;
  }
}

.top-selection__price {
  margin-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .top-selection__price {
    gap: 7px;
  }
}

.top-selection__price__num {
  font-size: 17px;
  color: #707070;
  letter-spacing: 0;
  line-height: 1.17;
}

.top-selection__price__tax {
  font-size: 10px;
  letter-spacing: 0.024em;
  line-height: 1.17;
  color: #707070;
}

.top-selection__link {
  margin-top: 25px;
  width: 36%;
  margin-right: 0;
  margin-left: auto;
  padding: 0 0 12px 11px;
  position: relative;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .top-selection__link {
    width: 150px;
  }
}
.top-selection__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background-color: #707070;
  bottom: 0;
  transition: all 0.5s;
  left: 0;
}
.top-selection__link::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 0.5px;
  background-color: #707070;
  bottom: 5px;
  right: -2px;
  transform: rotate(45deg);
  transition: all 0.5s;
}

.bl-topBtn--top-selection {
  margin: 76px auto 0;
  width: 295px;
}
@media screen and (max-width: 768px) {
  .bl-topBtn--top-selection {
    margin: 50px auto 0;
    width: 250px;
  }
}
.bl-topBtn--top-selection a {
  color: #833320;
  padding: 18px 50px;
}

.top-selection__btn-list {
  width: 94.2%;
  margin: 160px auto 0;
  aspect-ratio: 1/0.638;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-selection__btn-list {
    width: 100%;
    margin: 100px auto 0;
    aspect-ratio: 1/1.5;
  }
}
.top-selection__btn-list .top-selection__btn-item:first-of-type {
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.top-selection__btn-list .top-selection__btn-item:first-of-type a {
  background-color: #C86617;
}
.top-selection__btn-list .top-selection__btn-item:first-of-type a .top-selection__btn-icon {
  width: 62px;
}
@media screen and (max-width: 768px) {
  .top-selection__btn-list .top-selection__btn-item:first-of-type a .top-selection__btn-icon {
    width: 12%;
    max-width: 62px;
  }
}
.top-selection__btn-list .top-selection__btn-item:last-of-type {
  right: 0;
  bottom: 0;
  transition: all 0.5s;
}
.top-selection__btn-list .top-selection__btn-item:last-of-type a {
  background-color: #833320;
}
.top-selection__btn-list .top-selection__btn-item:last-of-type a .top-selection__btn-icon {
  width: 71px;
}
@media screen and (max-width: 768px) {
  .top-selection__btn-list .top-selection__btn-item:last-of-type a .top-selection__btn-icon {
    max-width: 71px;
    width: 13%;
  }
}
.top-selection__btn-list .top-selection__btn-item:hover:first-of-type {
  top: -10px;
  transition: all 0.5s;
}
.top-selection__btn-list .top-selection__btn-item:hover:last-of-type {
  bottom: 10px;
  transition: all 0.5s;
}

.top-selection__btn-item {
  width: 47%;
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .top-selection__btn-item {
    width: 75%;
  }
}
.top-selection__btn-item a {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
}

.top-selection__btn-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .top-selection__btn-content {
    width: 100%;
  }
}

.top-selection__btn-icon {
  margin: 0 auto;
}

.top-selection__btn-ttl {
  font-size: 34px;
  color: #FFFFFF;
  letter-spacing: 0.064em;
  line-height: 1;
  text-align: center;
  margin-top: 9.6%;
}
@media screen and (max-width: 768px) {
  .top-selection__btn-ttl {
    font-size: 19px;
    text-align: center;
    margin-top: 6.6%;
  }
}

.top-selection__btn-explain {
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: 0.028em;
  line-height: 1.8;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 9.6%;
}
@media screen and (max-width: 768px) {
  .top-selection__btn-explain {
    font-size: 12px;
    margin-top: 6.6%;
    font-weight: 500;
  }
}

.top-selection__komainu-left {
  position: absolute;
  width: 73%;
  left: 0;
  bottom: 21%;
  transform: translateX(-66%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-selection__komainu-left {
    width: 70%;
    bottom: 13%;
  }
}

.top-selection__komainu-right {
  position: absolute;
  width: 76%;
  right: 0;
  bottom: calc(120px - 4.08%);
  transform: translateX(65.9%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-selection__komainu-right {
    bottom: calc(120px - 4.58%);
  }
}

/*===========================
ABOUTページ
===========================*/
/*======== いちょう堂の原点 ========*/
.origin {
  margin-top: 60px;
  position: relative;
  padding: 170px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .origin {
    padding: 100px 0;
  }
}

.origin__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.origin__bg img {
  -o-object-position: top;
     object-position: top;
}

.origin-ttl {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .origin-ttl {
    writing-mode: horizontal-tb;
  }
}
.origin-ttl span {
  color: #FFFFFF;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 1024px) {
  .origin-ttl span {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.origin-ttl span:first-of-type {
  font-size: 45px;
  letter-spacing: 0.2em;
  line-height: 0;
}
@media screen and (max-width: 1280px) {
  .origin-ttl span:first-of-type {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .origin-ttl span:first-of-type {
    text-align: center;
  }
}
.origin-ttl span:last-of-type {
  font-size: 68px;
  position: relative;
  text-align: end;
  letter-spacing: 0.3em;
  margin-bottom: -70px;
  margin-right: 20px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.45);
}
@media screen and (max-width: 1280px) {
  .origin-ttl span:last-of-type {
    font-size: 50px;
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 1024px) {
  .origin-ttl span:last-of-type {
    font-size: 42px;
    margin-bottom: 0;
    text-align: center;
    margin-top: 10px;
    margin-right: auto;
  }
}
.origin-ttl span:last-of-type::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 154px;
  background-color: #FFFFFF;
  bottom: -33px;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 1024px) {
  .origin-ttl span:last-of-type::after {
    display: none;
  }
}

.origin__list .origin__item:first-of-type {
  margin-top: 50px;
}
.origin__list .origin__item:last-of-type {
  margin-top: 145px;
  padding-left: 4%;
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .origin__list .origin__item:last-of-type {
    margin-top: 80px;
    padding-left: 0;
  }
}

.origin__item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .origin__item {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .origin__item {
    display: block;
  }
}

.origin-img {
  width: 36.45%;
  max-width: 500px;
}
@media screen and (max-width: 1280px) {
  .origin-img {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .origin-img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

.origin-txt-wrap {
  width: 515px;
}
@media screen and (max-width: 1024px) {
  .origin-txt-wrap {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .origin-txt-wrap {
    width: 100%;
  }
}

.origin-icho {
  width: 142px;
  margin: 43px auto 100px;
}
@media screen and (max-width: 1280px) {
  .origin-icho {
    width: 100px;
    margin: 20px auto 50px;
  }
}
@media screen and (max-width: 1024px) {
  .origin-icho {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .origin-icho {
    width: 20%;
    margin: 35px auto 25px;
  }
}

.origin-heading {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.076em;
  line-height: 1.25;
  color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  .origin-heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .origin-heading {
    font-size: 20px;
    margin-top: 35px;
  }
}

.origin-explain {
  margin-top: 48px;
  color: #FFFFFF;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .origin-explain {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .origin-explain {
    margin-top: 25px;
  }
}

.origin-deco {
  width: 12%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(35.6%);
}
@media screen and (max-width: 768px) {
  .origin-deco {
    width: 13%;
  }
}

.origin-komainu-right {
  position: absolute;
  right: 0;
  width: 27.9%;
  top: 28%;
  z-index: -1;
}

.origin-komainu-left {
  position: absolute;
  left: 0;
  width: 32.7%;
  bottom: 6.26%;
  z-index: -1;
}

/*======== 運営会社 ========*/
.company-profile {
  margin-top: 207px;
}
@media screen and (max-width: 768px) {
  .company-profile {
    margin-top: 100px;
  }
}

.inner--company-profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4%;
}
@media screen and (max-width: 1024px) {
  .inner--company-profile {
    display: block;
    gap: unset;
  }
}

.company-profile__block {
  padding: 40px 8% 61px 5%;
  border-radius: 20px;
  background-color: #F9F8F4;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .company-profile__block {
    padding: 40px 5%;
  }
}
@media screen and (max-width: 1024px) {
  .company-profile__block {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .company-profile__block {
    padding: 40px 20px 50px;
    display: block;
  }
}

.company-profile__logo {
  width: 29.7%;
}
@media screen and (max-width: 1024px) {
  .company-profile__logo {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .company-profile__logo {
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
  }
}

.company-profile-table {
  width: 58%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .company-profile-table {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .company-profile-table {
    width: 100%;
    margin-top: 35px;
  }
}

.company-profile-table__body {
  display: block;
  width: 100%;
}

.company-profile__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  border-bottom: 0.5px solid #833320;
  color: #707070;
}

.company-profile__head {
  display: block;
  width: 107px;
  padding: 25px 0 25px 30px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .company-profile__head {
    width: 90px;
    padding: 15px 0 15px 20px;
  }
}

.company-profile__data {
  display: block;
  width: calc(100% - 107px);
  padding: 25px 10%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .company-profile__data {
    width: calc(100% - 90px);
    padding: 15px 3%;
  }
}

/*======== 企業理念 ========*/
.philosophy {
  margin-top: 190px;
  padding-top: 81px;
  padding-bottom: 64px;
  position: relative;
  background-color: #B49E5F;
}
@media screen and (max-width: 768px) {
  .philosophy {
    margin-top: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.philosophy__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.philosophy-uzu-right {
  position: absolute;
  width: 11.1%;
  top: 0;
  right: 0;
  transform: translateY(-77%);
}
@media screen and (max-width: 768px) {
  .philosophy-uzu-right {
    width: 14%;
  }
}

.philosophy-uzu-left {
  position: absolute;
  width: 15.2%;
  bottom: 0;
  left: 0;
  transform: translateY(36.8%);
}
@media screen and (max-width: 768px) {
  .philosophy-uzu-left {
    width: 18%;
  }
}

.inner--philosophy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .inner--philosophy {
    display: block;
  }
}

.philosophy-mainTxt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 16px;
  margin-top: 6.4%;
}
@media screen and (max-width: 1024px) {
  .philosophy-mainTxt {
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
  }
}
.philosophy-mainTxt span {
  display: block;
  writing-mode: vertical-lr;
  font-size: 32px;
  letter-spacing: 0.068em;
  letter-spacing: 0.2em;
  line-height: 1.7;
  padding: 20px 10px;
  background-color: #FFFFFF;
  color: #833320;
  font-weight: 400;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 1024px) {
  .philosophy-mainTxt span {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy-mainTxt span {
    font-size: 20px;
    padding: 10px 5px;
  }
}

.philosophy__deco {
  position: absolute;
  width: 21.7%;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .philosophy__deco {
    width: 37%;
  }
}

.philosophy-explain {
  width: 45%;
  position: relative;
  aspect-ratio: 1/1.24;
}
@media screen and (max-width: 1024px) {
  .philosophy-explain {
    width: 78%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .philosophy-explain {
    width: 100%;
    margin-top: 20px;
  }
}
.philosophy-explain .philosophy-explain__item:first-of-type {
  top: 0;
  left: 0;
}
.philosophy-explain .philosophy-explain__item:last-of-type {
  bottom: 0;
  right: 0;
}

.philosophy-explain__item {
  width: 73.88%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 1px solid #FFFFFF;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .philosophy-explain__item {
    width: 70%;
  }
}

.philosophy-explain__txt-block {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.philosophy-explain__ttl {
  font-size: 39px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .philosophy-explain__ttl {
    font-size: 25px;
  }
}

.philosophy-explain__txt {
  font-size: 19px;
  letter-spacing: 0.036em;
  margin-top: 45px;
  color: #FFFFFF;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .philosophy-explain__txt {
    font-size: 13px;
    margin-top: 15px;
  }
}

/*======== 代表メッセージ ========*/
.message {
  margin-top: 235px;
  margin-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .message {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .message {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.inner--message {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.5%;
}
@media screen and (max-width: 1024px) {
  .inner--message {
    display: block;
  }
}

.message-content {
  margin-top: 92px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8%;
}
@media screen and (max-width: 768px) {
  .message-content {
    margin-top: 35px;
    display: block;
  }
}

.message-personal {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .message-personal {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

.message-img {
  width: 100%;
}

.message-name {
  letter-spacing: 0.076em;
  line-height: 1;
  margin-top: 15px;
  text-align: right;
}

.message-txt {
  width: 52.6%;
}
@media screen and (max-width: 768px) {
  .message-txt {
    width: 100%;
    margin-top: 50px;
  }
}

.message-ttl {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.076em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .message-ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .message-explain {
    font-size: 15px;
  margin-top: 27px;
  }
}

/*===========================
PRODUCTページ
===========================*/
/*======= 商品カテゴリ =======*/
.product-category {
  margin-top: 110px;
  position: relative;
}

.product-category__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.9%;
}
@media screen and (max-width: 1024px) {
  .product-category__list {
    gap: 20px;
  }
}
.product-category__list .product-category__item:nth-of-type(3n-2) {
  background-color: #FEFAEF;
}

.product-category__list .product-category__item:nth-of-type(3n-1) {
  background-color: #FFF5EC;
}

.product-category__list .product-category__item:nth-of-type(3n) {
  background-color: #EBF5F1;
}

.product-category__item {
  border-radius: 10px;
  width: 31.393%;
  box-shadow: 0 0 10px rgba(131, 51, 32, 0.2);
  z-index: 1;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .product-category__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .product-category__item {
    width: 100%;
  }
}
.product-category__item:hover {
  transform: translateY(-10px);
  transition: all 0.5s;
}
.product-category__item a {
  width: 100%;
  display: block;
  aspect-ratio: 1/0.38;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .product-category__item a {
    aspect-ratio: 1/0.42;
  }
}
@media screen and (max-width: 768px) {
  .product-category__item a {
    aspect-ratio: 1/0.28;
  }
}

.product-category-img {
  width: 25%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .product-category-img {
    width: 20%;
  }
}

.product-category-name {
  font-size: 19px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 20px;
  color: #C86617;
}
@media screen and (max-width: 768px) {
  .product-category-name {
    font-size: 15px;
    margin-top: 8px;
  }
}

.category-explain-block .category-explain:first-of-type {
  margin-top: 120px;
}

.category-explain {
  position: relative;
  margin-top: 90px;
}

.inner--category-explain {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(131, 51, 32, 0.2);
  padding: 50px 4% 60px;
}

.category-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.9%;
}
@media screen and (max-width: 1024px) {
  .category-main {
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .category-main {
    display: block;
  }
}

.category-main__txt {
  width: 510px;
}
@media screen and (max-width: 1024px) {
  .category-main__txt {
    width: 380px;
  }
}
@media screen and (max-width: 768px) {
  .category-main__txt {
    width: 100%;
  }
}

.category-main__subTtl {
  line-height: 1;
  font-weight: 400;
  color: #C86617;
}

.category-main__ttl {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.056em;
  line-height: 1;
  margin-top: 15px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.category-main__smallTtl{
	font-size: 16px;
	line-height: 1;
	margin-right: 17px;
}
@media screen and (max-width: 1024px) {
  .category-main__ttl {
    font-size: 20px;
  }
}

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

.category-main__smallTtl{
	font-size: 13px;
}
}
.category-main__explain {
  margin-top: 50px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .category-main__explain {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .category-main__explain {
    margin-top: 15px;
  }
}

.category-main__img {
  width: calc(95.1% - 510px);
	aspect-ratio: 1 / 0.55; 
}
@media screen and (max-width: 1024px) {
  .category-main__img {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  .category-main__img {
    width: 100%;
    max-width: 450px;
    margin: 40px auto 0;
  }
}

.category-explain__productList {
  margin-top: 41px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3.5%;
}
@media screen and (max-width: 768px) {
  .category-explain__productList {
    flex-wrap: wrap;
    gap: 30px 20px;
  }
}
.category-explain__productList .category-explain__productItem {
  width: 22.375%;
}
@media screen and (max-width: 768px) {
  .category-explain__productList .category-explain__productItem {
    width: calc(50% - 10px);
  }
}

.category-explain__itemImg {
  width: 100%;
  aspect-ratio: 1/0.69;
}
.category-explain__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-explain__itemName {
  font-size: 15px;
  color: #C86617;
  line-height: 1.86;
  margin-top: 14px;
	line-height: 1.3;
}

.category-explain__itemName span{
	font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .category-explain__itemName {
    font-size: 13px;
    margin-top: 10px;
  }
.category-explain__itemName span{
	font-size: 10px;
}
}

.category-explain__itemPrice {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 3px;
}

.category-explain__itemPrice-num {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .category-explain__itemPrice-num {
    font-size: 13px;
  }
}

.category-explain__itemPrice-tax {
  font-size: 9px;
  letter-spacing: 0.024em;
  line-height: 1;
  margin-top: 8px;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .category-explain__itemPrice-tax {
    font-size: 7px;
  }
}

.category-explain__deco--left {
  position: absolute;
  width: 11.18%;
  left: 0;
  top: 0;
  transform: translateY(-52.1%);
  z-index: -1;
}

.category-explain__deco--right {
  position: absolute;
  width: 15.2%;
  right: 0;
  top: -14px;
  z-index: -1;
}

.wrapping {
  margin-top: 123px;
  padding: 87px 0 70px;
  background-color: #FFF5EC;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wrapping {
    margin-top: 100px;
    padding: 50px 0 45px;
  }
}

.category-explain__deco--left-bottom {
  position: absolute;
  width: 11.18%;
  left: 0;
  top: 0;
  transform: translateY(-64.4%);
}

.inner--wrapping {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 10%;
}
@media screen and (max-width: 1024px) {
  .inner--wrapping {
    display: block;
  }
}

.wrapping-content {
  width: calc(90% - 90px);
}
@media screen and (max-width: 1024px) {
  .wrapping-content {
    width: 100%;
    margin-top: 35px;
  }
}

.wrapping-main {
  position: relative;
}
.wrapping-main img {
  width: 100%;
  height: auto;
}

.wrapping-main__txt {
  position: absolute;
  right: -37px;
  bottom: -59px;
  width: 558px;
  padding: 30px 6.2% 40px;
  background-color: #FFF;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .wrapping-main__txt {
    position: absolute;
    right: unset;
    bottom: -69px;
    width: 96%;
    padding: 10px 20px;
    line-height: 1.5;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.7);
  }
}

.category-explain__productList--wrapping {
  margin-top: 96px;
}

/*===========================
PRODUCT詳細ページ
===========================*/
.productDetail {
  margin-top: 150px;
}
@media screen and (max-width: 1024px) {
  .productDetail {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .productDetail {
    margin-top: 100px;
  }
}

.productDetail-slider {
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .productDetail-slider {
    margin-bottom: 10px;
  }
}

.productDetail-img {
  width: 100%;
  aspect-ratio: 1/0.68;
}
.productDetail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.productDetail-thumbnail-img {
  aspect-ratio: 1/1;
  margin-right: 15px;
  width: calc(25% - 15px) !important;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .productDetail-thumbnail-img {
    margin-right: 10px;
    width: calc(25% - 10px) !important;
  }
}

.inner--productDetail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 3.5%;
}
@media screen and (max-width: 768px) {
  .inner--productDetail {
    display: block;
  }
}

.product-slider-fix {
  width: 45%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .product-slider-fix {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .product-slider-fix {
    position: relative;
    top: unset;
    margin-top: 35px;
    width: 100%;
  }
}

.productDetail-name {
  font-size: 22px;
  letter-spacing: 0.056em;
  line-height: 1.3;
  padding-bottom: 15px;
  border-bottom: 0.5px solid #833320;
  margin-top: 18px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .productDetail-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .productDetail-name {
    font-size: 18px;
  }
}

.productDetail-price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 25px;
}

.productDetail-price__ttl {
  font-size: 14px;
  letter-spacing: 0.036em;
  line-height: 1;
  font-weight: 500;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .productDetail-price__ttl {
    margin-right: 5px;
  }
}

.productDetail-price__num {
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
}

.productDetail-price__tax {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
}

.productDetail-buyBtn {
  margin-top: 67px;
}
@media screen and (max-width: 768px) {
  .productDetail-buyBtn {
    margin-top: 50px;
  }
}
.productDetail-buyBtn a {
  background-color: #833320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .productDetail-buyBtn a {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .productDetail-buyBtn a {
    padding: 10px;
  }
}
.productDetail-buyBtn a:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.productDetail-buyBtn__icon {
  width: 30px;
  margin-right: 7.22%;
}
.productDetail-buyBtn__icon img {
  vertical-align: middle;
}

.productDetail-buyBtn__txt {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .productDetail-buyBtn__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .productDetail-buyBtn__txt {
    font-size: 16px;
  }
}

.shopBag {
  margin-top: 100px;
  background-color: #FFF6EC;
  border-radius: 10px;
  padding: 30px 5.5% 40px;
}
@media screen and (max-width: 1024px) {
  .shopBag {
    margin-top: 80px;
    padding: 20px 4% 30px;
  }
}
@media screen and (max-width: 768px) {
  .shopBag {
    margin-top: 35px;
    padding: 20px 3% 20px;
  }
}

.shopBag__ttl {
  font-size: 18px;
  letter-spacing: 0.036;
  text-align: center;
  color: #833320;
}
@media screen and (max-width: 1024px) {
  .shopBag__ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .shopBag__ttl {
    font-size: 14px;
  }
}

.shopBag__list {
  margin-top: 35px;
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 3.8%;
}
@media screen and (max-width: 1024px) {
  .shopBag__list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .shopBag__list {
    gap: 10px;
  }
}

.shopBag__item {
  width: 30.46%;
}
@media screen and (max-width: 768px) {
  .shopBag__item {
    width: calc(33% - 6.67px);
  }
}

.shopBag-img {
  width: 100%;
}

.shopBag-name {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .shopBag-name {
    font-size: 12px;
  }
}

/*======== 商品詳細 ========*/
.productDetail-main-ttl {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .productDetail-main-ttl {
    margin-top: 50px;
  }
}

.productDetail-main-ttl__ja {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.036em;
  line-height: 1;
  font-weight: 400;
}

.productDetail-main-ttl__en {
  font-size: 14px;
  text-align: center;
  line-height: 1;
  font-weight: 300;
  margin-top: 7px;
  color: #833320;
}

.productDetail-table {
  margin-top: 31px;
  display: block;
  width: 100%;
}

.productDetail-table__body,
.productDetail-table__row {
  display: block;
  width: 100%;
}

.productDetail-table__row {
  border-bottom: 0.5px solid #833320;
}
@media screen and (max-width: 768px) {
  .productDetail-table__row {
    display: block;
  }
}

.productDetail-table__head {
  display: block;
    padding: 15px 15px 0 15px;
    width: 100%;
  color: #707070;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .productDetail-table__head {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .productDetail-table__head {
    width: 100%;
    padding: 15px 0 0 0;
  }
}

.productDetail-table__data {
  width: 100%;
  padding: 15px ;
  color: #707070;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .productDetail-table__data {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .productDetail-table__data {
    width: 100%;
    padding: 3px 0 15px 0;
  }
}

.productDetail-explain-block {
  margin-top: 90px;
}
.productDetail-explain-block .productDetail-explain-block__item:not(:first-of-type) {
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .productDetail-explain-block .productDetail-explain-block__item:not(:first-of-type) {
    margin-top: 50px;
  }
}

.productDetail-explain-block__img {
  width: 100%;
  aspect-ratio: 1/0.63;
}
.productDetail-explain-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .productDetail-explain-block__img {
    max-width: 450px;
    margin: 0 auto;
  }
}

.productDetail-explain-block__txt {
  margin-top: 23px;
  line-height: 1.5;
  color: #707070;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .productDetail-explain-block__txt {
    margin-top: 20px;
  }
}

/*===========================
定期購入
===========================*/
/*======== 心づかいのスタンバイ便（定期購入）とは ========*/
.about-regularMail {
  margin-top: 100px;
  padding: 145px 0 125px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .about-regularMail {
    padding: 100px 0;
  }
}

.about-regularMail__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.about-regularMail__bg img {
  -o-object-position: top;
     object-position: top;
}

.about-regularMail-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.17%;
}
@media screen and (max-width: 768px) {
  .about-regularMail-ttl {
    align-items: flex-start;
  }
}

.about-regularMail-ttl__icho {
  width: 5.48%;
  display: block;
}
@media screen and (max-width: 768px) {
  .about-regularMail-ttl__icho {
    width: 45px;
    margin-top: 3px;
  }
}

.about-regularMail-ttl__txt {
  font-size: 28px;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 1024px) {
  .about-regularMail-ttl__txt {
    font-size: 23px;
    letter-spacing: 0.056em;
  }
}
@media screen and (max-width: 768px) {
  .about-regularMail-ttl__txt {
    font-size: 20px;
    line-height: 1.5;
  }
}

.about-regularMail__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 130px;
  gap: 8%;
}
@media screen and (max-width: 1024px) {
  .about-regularMail__content {
    margin-top: 80px;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .about-regularMail__content {
    margin-top: 50px;
  }
}

.about-regularMail__txt-wrap {
  width: 630px;
}
@media screen and (max-width: 1024px) {
  .about-regularMail__txt-wrap {
    width: 100%;
  }
}
.about-regularMail__txt-wrap .about-regularMail__explain:not(:first-of-type) {
  margin-top: 63px;
}
@media screen and (max-width: 768px) {
  .about-regularMail__txt-wrap .about-regularMail__explain:not(:first-of-type) {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1024px) {
  .inner--about-regularMail {
    padding-left: 0;
  }
}
.about-regularMail__explain {
  color: #FFFFFF;
  font-weight: 600;
}

.about-regularMail__img {
  width: calc(92% - 630px);
}
@media screen and (max-width: 1024px) {
  .about-regularMail__img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 50px;
    aspect-ratio: 1/0.5;
  } 
	.about-regularMail__img img{
		object-position: bottom;
  }
}

/*======== コース内容 ========*/
.plan {
  padding: 135px 0 200px;
  background-color: #B49E5F;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .plan {
    padding: 100px 0 150px;
  }
}
@media screen and (max-width: 768px) {
  .plan {
    padding: 80px 0 100px;
  }
}

.inner--plan {
  position: relative;
}

.bl-ttl__plan {
  position: absolute;
  top: 0;
  right: -4.38%;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__plan {
    position: relative;
    right: unset;
  }
}

.plan__list {
  width: 76.3%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 97px;
  min-width: 750px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .plan__list {
    width: 100%;
    margin: 50px auto 0;
    gap: 65px;
    min-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .plan__list {
    gap: 80px;
  }
}
.plan__list .plan__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .plan__list .plan__item:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.plan__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.2%;
}
@media screen and (max-width: 768px) {
  .plan__item {
    flex-direction: column-reverse;
    gap: 35px;
  }
}

.plan-explain {
  width: 384px;
}
@media screen and (max-width: 1024px) {
  .plan-explain {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .plan-explain {
    width: 100%;
  }
}

.plan-ttl {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.036em;
  line-height: 1.32;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .plan-ttl {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .plan-ttl {
    font-size: 20px;
    text-align: center;
  }
}

.plan-detail {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .plan-detail {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.plain-detail__item {
  font-size: 18px;
  position: relative;
  padding-left: 18px;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .plain-detail__item {
    font-size: 16px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .plain-detail__item {
    font-size: 14px;
    padding-left: 14px;
  }
}
.plain-detail__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.plan-guideline {
  font-weight: 600;
  line-height: 1;
  padding: 7px 12px;
  border: 1px solid #FFFFFF;
  margin-top: 47px;
  color: #FFFFFF;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .plan-guideline {
    padding: 5px 10px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .plan-guideline {
    margin: 35px auto 0;
  }
}

.orderTop-btn {
  margin-top: 60px;
}

.order-btn {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .order-btn {
    margin-top: 50px;
  }  .orderTop-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .order-btn {
    margin-top: 35px;
  }  .orderTop-btn {
    margin-top: 35px;
  }
}
.order-btn a {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
  display: block;
  padding: 18px 0;
  width: 304px;
	margin: 0 auto;
  background-color: #C86617;
  transition: all 0.5s;
  border-radius: 33px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .order-btn a {
    font-size: 20px;
    width: 100%;
    max-width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .order-btn a {
    font-size: 18px;
    margin: 0 auto;
    padding: 15px 0;
  }
}
.order-btn a:hover {
  background-color: #833320;
  transition: all 0.5s;
}

.plan-img {
  width: calc(92.8% - 384px);
}
@media screen and (max-width: 1024px) {
  .plan-img {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .plan-img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

.benefits {
  margin-top: 135px;
  background-color: #FFFFFF;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 42px 6.5% 85px 4.9%;
  border-radius: 15px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
  .benefits {
    margin-top: 100px;
    padding: 20px 6% 40px;
  }
}

.benefits__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .benefits__content {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .benefits__list {
    gap: 25px;
    width: 100%;
  }
}

.benefits__item {
  font-size: 22px;
  letter-spacing: 0.044em;
  line-height: 1.2;
  padding-left: 7px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: linear-gradient(transparent 84%, rgba(200, 102, 23, 0.47) 60%);
}
@media screen and (max-width: 768px) {
  .benefits__item {
    font-size: 13px;
    padding-left: 3px;
  }
}

.benefits__img {
  width: calc(95% - 470px);
}
@media screen and (max-width: 768px) {
  .benefits__img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

.plan-deco {
  position: absolute;
}

.plan-deco--upper {
  width: 15.2%;
  left: 0;
  top: 0;
  transform: translateY(-29.3%);
  z-index: 1;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  .plan-deco--upper {
    width: 25%;
  }
}

.plan-deco--middle {
  width: 11.1%;
  right: 0;
  top: 36%;
  z-index: 1;
  max-width: 185px;
}
@media screen and (max-width: 768px) {
  .plan-deco--middle {
    width: 20%;
  }
}

.plan-deco--bottom {
  width: 15.2%;
  left: 0;
  bottom: 0;
  transform: translateY(58.4%);
  z-index: 1;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  .plan-deco--bottom {
    width: 25%;
  }
}

.plan-deco--komainu-left {
  width: 32.7%;
  left: 0;
  top: 17.5%;
  z-index: 0;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .plan-deco--komainu-left {
    width: 53%;
  }
}

.plan-deco--komainu-right {
  width: 27.9%;
  right: 0;
  z-index: 0;
  bottom: 19.6%;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .plan-deco--komainu-right {
    width: 47%;
  }
}

/*======== よくあるご質問 ========*/
.faq {
  margin: 140px 0 150px;
}
@media screen and (max-width: 768px) {
  .faq {
    margin: 100px 0;
  }
}

.faq__list {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 75px;
}
@media screen and (max-width: 768px) {
  .faq__list {
    margin-top: 50px;
    gap: 35px;
  }
}

.faq-question {
  padding: 0 4% 10px;
  color: #C86617;
  border-bottom: 1px solid rgba(200, 102, 23, 0.4);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.036em;
}
@media screen and (max-width: 768px) {
  .faq-question {
    line-height: 1.6;
    font-size: 16px;
  }
}

.faq-answer {
  padding: 0 4%;
  line-height: 1.8;
  margin-top: 13px;
}

/*===========================
GUIDEページ
===========================*/
/*======== ページ共通 ========*/
.guide-list {
  margin-top: 55px;
}
.guide-list .guide-item:not(:first-of-type) {
  margin-top: 65px;
}

.guide-ttl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 4% 12px;
  border-bottom: 1px solid #833320;
}
@media screen and (max-width: 1024px) {
  .guide-ttl {
    padding: 0 2.5% 12px;
  }
}

.guide-ttl__icon {
  width: 32px;
  height: auto;
}

.guide-ttl__txt {
  line-height: 1.66;
  font-size: 18px;
  letter-spacing: 0.036em;
  padding-top: 3px;
}
@media screen and (max-width: 1024px) {
  .guide-ttl__txt {
    padding-top: 0;
  }
}

.guide-docs {
  padding: 20px 4% 0;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .guide-docs {
    padding: 20px 2.5% 0;
  }
}

.guide-supplement {
  margin-top: 5px;
  line-height: 1.8;
  color: #833320;
  text-align: center;
}

.guide-supplement--size-l{
	font-size: 25px;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.guide-supplement--size-l{
		font-size: 20px;
	}
}
/*======== リンクボタン ========*/
.page-subTtl {
  position: absolute;
  color: #FFFFFF;
  top: calc(50% + 55px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-subTtl {
    font-size: 12px;
  }
}

.guide-pageLink {
  margin-top: 70px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guide-pageLink {
    margin-top: 50px;
  }
}

.guide-pageLink__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 3%;
}
@media screen and (max-width: 1024px) {
  .guide-pageLink__list {
    gap: 20px 2%;
  }
}
@media screen and (max-width: 768px) {
  .guide-pageLink__list {
    gap: 10px;
  }
}

.guide-pageLink__item {
  width: 31%;
  box-shadow: 0 0 10px rgba(131, 51, 32, 0.2);
}
@media screen and (max-width: 1024px) {
  .guide-pageLink__item {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .guide-pageLink__item {
    width: calc(50% - 5px);
  }
}
.guide-pageLink__item a {
  display: block;
  width: 100%;
  padding: 30px 0;
  text-align: center;
  font-size: 20px;
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .guide-pageLink__item a {
    padding: 20px 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .guide-pageLink__item a {
    font-size: 16px;
  }
}

.guide-pageLink__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.guide-pageLink__bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*======== ご注文について ========*/
#order {
  margin-top: 180px;
}
@media screen and (max-width: 1024px) {
  #order {
    margin-top: 80px;
  }
}

/*======== 商品注文方法 ========*/
#how-to-order {
  margin-top: 93px;
}
@media screen and (max-width: 1024px) {
  #how-to-order {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  #how-to-order {
    margin-top: 100px;
  }
}

.how-to-order__list {
  margin-top: 82px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .how-to-order__list {
    margin-top: 50px;
  }
}
.how-to-order__list .how-to-order__item:not(:first-of-type) {
  margin-top: 52px;
}
.how-to-order__list::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 74.9%;
  top: 9.5%;
  left: 37px;
  background-color: #833320;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .how-to-order__list::after {
    left: 27.5px;
  }
}
@media screen and (max-width: 768px) {
  .how-to-order__list::after {
    display: none;
  }
}

.how-to-order__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.8%;
}
@media screen and (max-width: 768px) {
  .how-to-order__item {
    display: block;
  }
}

.how-to-order__side-l {
  width: 610px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 4.5%;
}
@media screen and (max-width: 1024px) {
  .how-to-order__side-l {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .how-to-order__side-l {
    width: 100%;
  }
}

.how-to-order__stepNum {
  width: 74px;
  height: 74px;
  border: 1px solid #833320;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .how-to-order__stepNum {
    width: 55px;
    height: 55px;
  }
}

.how-to-order__step {
  text-align: center;
  color: #833320;
  line-height: 1.43;
}
@media screen and (max-width: 1024px) {
  .how-to-order__step {
    font-size: 14px;
  }
}

.how-to-order__num {
  text-align: center;
  color: #833320;
  line-height: 1.43;
}
@media screen and (max-width: 1024px) {
  .how-to-order__num {
    font-size: 14px;
  }
}

.how-to-order__txt {
  margin-top: 29px;
  line-height: 1.61;
}
@media screen and (max-width: 1024px) {
  .how-to-order__txt {
    margin-top: 20px;
    width: calc(87% - 55px);
  }
}
@media screen and (max-width: 768px) {
  .how-to-order__txt {
    margin-top: 0;
    width: calc(100% - 85px);
  }
}

.how-to-order__ttl {
  font-size: 18px;
  letter-spacing: 0.036em;
}
@media screen and (max-width: 1024px) {
  .how-to-order__ttl {
    font-size: 16px;
  }
}

.how-to-order__explain {
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .how-to-order__explain {
    margin-top: 10px;
  }
}

.how-to-order__img {
  width: calc(95.2% - 610px);
}
@media screen and (max-width: 1024px) {
  .how-to-order__img {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .how-to-order__img {
    width: 100%;
    max-width: 450px;
    margin: 35px auto 0;
  }
}

/*======== お支払い方法 ========*/
#how-to-pay {
  margin-top: 215px;
}
@media screen and (max-width: 1024px) {
  #how-to-pay {
    margin-top: 100px;
  }
}

.guide-list--how-to-pay {
  margin-top: 98px;
}
@media screen and (max-width: 768px) {
  .guide-list--how-to-pay {
    margin-top: 50px;
  }
}

/*======== お届けについて ========*/
#bring {
  margin-top: 123px;
}
@media screen and (max-width: 1024px) {
  #bring {
    margin-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .bring-table-wrap {
    width: 100%;
    overflow-x: scroll;
  }
}
.bring-table {
  margin-top: 45px;
  display: block;
  width: 100%;
  border: 1px solid #833320;
}
@media screen and (max-width: 768px) {
  .bring-table {
    width: 680px;
  }
}

.bring-table__body {
  display: block;
  width: 100%;
}

.bring-table__row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.bring-table__row--head {
  background-color: #F7E7DC;
  border-top: 1px solid #833320;
}

.bring-table__head {
  text-align: center;
  line-height: 1;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .bring-table__head {
    font-size: 16px;
  }
}

.bring-table__middleCell {
  border-left: 1px solid #833320;
}

.bring-table__leftCell {
  width:66.6%;
  display: block;
  padding-left: 3%;
  padding-right: 3%;
}

.bring-table__middleCell {
  width: 33.4%;
  display: block;
  text-align: center;
}

.bring-table__rightCell {
  width: 20.14%;
  display: block;
  text-align: center;
}

.bring-table__data {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #833320;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .bring-table__data {
    font-size: 15px;
  }
}
.bring-table__data span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.area-mainName {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .area-mainName {
    font-size: 16px;
  }
}

.area-detailName {
  line-height: 1.8 margin-top 5px;
}
@media screen and (max-width: 1024px) {
  .area-detailName {
    font-size: 14px;
  }
}

/*======== 配送について ========*/
#delivery {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  #delivery {
    margin-top: 100px;
  }
}

/*======== 注意事項 ========*/
#attention {
  margin-top: 135px;
}
@media screen and (max-width: 1024px) {
  #attention {
    margin-top: 100px;
  }
}

/*======== プラポリ ========*/
#policy {
  margin-top: 135px;
}
@media screen and (max-width: 1024px) {
  #policy {
    margin-top: 100px;
  }
}

.policy-txt {
  margin-top: 75px;
  line-height: 1.8;
}

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

.policy-txt {
  margin-top: 35px;
}
}
/*======== 特定商取引法に基づく表記 ========*/
#tradelaw {
  margin-top: 135px;
}
@media screen and (max-width: 1024px) {
  #tradelaw {
    margin-top: 100px;
  }
}

.tradelaw {
  margin-bottom: 200px;
}


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

.tradelaw {
  margin-bottom: 100px;
}

}
.tradelaw-table {
  margin-top: 80px;
  width: 100%;
  display: block;
}

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


.tradelaw-table {
  margin-top: 35px;
}
}
.tradelaw-table__body {
  width: 100%;
  display: block;
}

.tradelaw-table__row {
  width: 100%;
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid #833320;
}

.tradelaw-table__head {
  display: block;
  font-size: 18px;
  letter-spacing: 0.036em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .tradelaw-table__head {
    font-size: 16px;
  }
}

.tradelaw-table__data {
  display: block;
  margin-top: 5px;
  line-height: 1.8;
}

/*===========================
NEWSページ
===========================*/
.news {
  margin-top: 125px;
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 80px;
  }
}

.newsCategory {
  margin-top: 65px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(131, 51, 32, 0.41);
}
@media screen and (max-width: 768px) {
  .newsCategory {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .newsCategory__wrap {
    width: 30%;
    min-width: 280px;
    position: relative;
  }
	.newsCategory select{
		display: block;
    width: 100%;
    border: 1px solid #C86617;
    padding: 4px 15px;
	}
  .newsCategory__wrap::after {
    content: "▼";
    position: absolute;
    pointer-events: none;
    color: #C86617;
    font-size: 20px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

.newsCategory__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.4%;
}

.newsCategory__item a {
  font-weight: 400;
}
.newsCategory__item a.newsCategory__current {
  border-bottom: 2px solid #C86617;
}

.newsCategory-select {
  width: 100%;
  border: 1px solid #C86617;
  border-radius: 10px;
  padding: 5px 20px;
}

.news__list {
  margin-top: 55px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 65px 3.8%;
}
@media screen and (max-width: 768px) {
  .news__list {
    gap: 20px;
  }
}

.news__item {
  width: 30.46%;
}
@media screen and (max-width: 768px) {
  .news__item {
    width: calc(50% - 10px);
  }
}

.news-img {
  width: 100%;
  aspect-ratio: 1/0.63;
}
.news-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.news-date {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news-date {
    font-size: 12px;
  }
}

.news-ttl {
  margin-top: 7px;
  line-height: 1.8;
  font-weight: 400;
}

.news-categoryName {
  color: #C86617;
  font-weight: 400;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  .news-categoryName {
    margin-top: 0;
  }
}

.pageNation {
  margin-top: 140px;
  display: flex;
  align-items: f;
  justify-content: center;
  gap: calc(2.9% - 10px);
}
@media screen and (max-width: 768px) {
  .pageNation {
    gap: 30px;
  }
}

.pageNation__item--prev {
  padding-right: 13px;
  position: relative;
  width: 16px;
}
.pageNation__item--prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 57%;
  left: 0;
  transform: translateY(-50%);
}
.pageNation__item--prev::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.pageNation__item--num {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  padding-bottom: 5px;
  padding: 0 5px 5px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .pageNation__item--num {
    font-size: 18px;
  }
}

.pageNation__item--current {
  border-bottom: 1px solid #C86617;
}
.pageNation__item--current a {
  pointer-events: none;
}

.pageNation__item--dot {
  font-size: 22px;
  margin-bottom: -10px;
}
@media screen and (max-width: 768px) {
  .pageNation__item--dot {
    font-size: 20px;
  }
}

.pageNation__item--next {
  padding-left: 13px;
  position: relative;
  width: 16px;
}
.pageNation__item--next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 57%;
  right: 0;
  transform: translateY(-50%);
}
.pageNation__item--next::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

/*===========================
NEWS記事ページ
===========================*/
.article {
  margin-top: 190px;
}
@media screen and (max-width: 768px) {
  .article {
    margin-top: 100px;
  }
}

.article__date-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.article__date {
  font-size: 18px;
  letter-spacing: 0.056em;
  line-height: 1;
  color: #C86617;
  padding-right: 25px;
  margin-right: 25px;
  position: relative;
  font-weight: 400;
}
.article__date::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  background-color: #C86617;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .article__date {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .article__date {
    margin-top: 14px;
  }
}

.article__category {
  font-size: 18px;
  letter-spacing: 0.056em;
  line-height: 1;
  color: #C86617;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .article__category {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .article__category {
    margin-top: 14px;
  }
}

.article__ttl {
  margin-top: 13px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .article__ttl {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .article__ttl {
    margin-top: 20px;
  }
}

.article-content {
  margin-top: 36px;
}

.article__img {
  width: 100%;
}

.article__head {
  font-size: 22px;
  letter-spacing: 0.044em;
  line-height: 1.38;
  font-weight: 400;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .article__head {
    font-size: 18px;
  }
}

.article__txt {
  margin-top: 40px;
  margin-bottom: 108px;
}

.article-pageLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22%;
  margin-top: 150px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .article-pageLink {
    gap: 35px;
    margin-top: 80px;
    margin-bottom: 100px;
  }
}

.article-pageLink__item a {
  font-size: 22px;
  letter-spacing: 0.044em;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .article-pageLink__item a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .article-pageLink__item a {
    font-size: 14px;
  }
}

.article-pageLink__item--prev a {
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article-pageLink__item--prev a {
    padding-left: 20px;
  }
}
.article-pageLink__item--prev a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 57%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .article-pageLink__item--prev a::before {
    width: 12px;
    top: 50%;
  }
}
.article-pageLink__item--prev a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .article-pageLink__item--prev a::after {
    width: 5px;
    top: 47%;
  }
}
.article-pageLink__item--prev a:hover::before {
  left: -5px;
  transition: all 0.3s;
}
.article-pageLink__item--prev a:hover::after {
  left: -5px;
  transition: all 0.3s;
}

.article-pageLink__item--next a {
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article-pageLink__item--next a {
    padding-right: 20px;
  }
}
.article-pageLink__item--next a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 57%;
  right: 0;
  transition: all 0.3s;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .article-pageLink__item--next a::before {
    width: 12px;
    top: 50%;
  }
}
.article-pageLink__item--next a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  top: 50%;
  right: 0;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .article-pageLink__item--next a::after {
    width: 5px;
    top: 47%;
  }
}
.article-pageLink__item--next a:hover::before {
  right: -5px;
  transition: all 0.3s;
}
.article-pageLink__item--next a:hover::after {
  right: -5px;
  transition: all 0.3s;
}

.article-pageLink__item--return a::after {
  content: "";
  position: absolute;
  background-color: #C86617;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transition: all 0.5s;
  transform-origin: left;
}
.article-pageLink__item--return a:hover::after {
  transition: all 0.5s;
  transform: scale(1, 1);
  transform-origin: left;
}

/*===========================
CONTACTページ
===========================*/
.contact {
  margin-top: 92px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 80px;
  }
}

.contact-explain {
  text-align: center;
}

.contactForm {
  margin-top: 100px;
  width: 100%;
  background-color: #FFF6EC;
  border-radius: 10px;
  padding: 80px 9.6% 85px 11%;
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    margin-top: 50px;
    padding: 50px 10%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    padding: 30px 25px;
  }
}

.contactForm__ttl {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.056em;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .contactForm__ttl {
    font-size: 25px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__ttl {
    font-size: 20px;
    margin-bottom: 35px;
  }
}

.formDl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .formDl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .formDl {
    margin-bottom: 15px;
  }
}
.formDl.formDl-flexStart {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 0.036em;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;

  }
}

.formDt--confirm{
	padding-top:0;
} 
.formDt--normal-height {
  padding-top: 0;
}

.formTtl {
  margin-right: 2px;
  font-weight: 400;
  text-align: right;
}

.formRequired {
  line-height: 1;
  color: #833320;
  font-weight: 400;
}

.formDd {
  width: calc(100% - 250px);
  margin-left: 25px;
}
@media screen and (max-width: 1024px) {
  .formDd {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .formDd {
    margin-top: 2px;
  }
}

.radioBtn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-weight: 400;
}

input[type=radio] {
  position: relative;
  width: 21px;
  height: 21px;
  background-color: #C86617;
  border-radius: 50%;
  /*vertical-align: -2px;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  input[type=radio] {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11.5px;
  height: 11.5px;
  border-radius: 50%;
  background: #FFFFFF;
  content: "";
}
@media screen and (max-width: 768px) {
  input[type=radio]:checked:before {
    width: 9px;
    height: 9px;
  }
}

.radioBtn {
  margin-right: 4%;
  color: #333333;
  display: flex;
  align-items: center;
}
.radioBtn:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 420px) {
  .radioBtn {
    margin-right: 13px;
  }
  .radioBtn:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .radioBtn-wrap__contactMethod {
    display: block;
  }
}
input[type=text],
input[type=email],
textarea {
  padding: 13px 21px;
  line-height: 1;
  background-color: #FFFFFF;
  font-weight: 400;
  box-shadow: inset 1px 1px 6px rgba(0, 0, 0, 0.16);
  color: #333333;
  width: 100%;
}
@media screen and (max-width: 768px) {
  input[type=text],
input[type=email],
textarea {
    padding: 10px 20px;
  }
}

textarea {
  height: 217px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 170px;
  }
}

::-moz-placeholder {
  color: #A3AFAC;
}

::placeholder {
  color: #A3AFAC;
}

input[type=text].postCode {
  width: 165px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  input[type=text].postCode {
    margin-right: 15px;
    width: 120px;
  }
}

input[type=text].prefectures {
  width: 165px;
}

.selectbox {
  position: relative;
}
.selectbox::after {
  content: "";
  position: absolute;
  width: 9.4px;
  height: 9.4px;
  border-bottom: 2px solid #9B9A9A;
  border-right: 2px solid #9B9A9A;
  top: 50%;
  right: 17.5px;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}

.formAdress__upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.restAddress {
  margin-top: 12px;
}

.formDl--addressWrap {
  align-items: flex-start;
}
.formDl--addressWrap .formTtl {
  margin-top: 15px;
}

.formDl--addressWrap .formTtl.formTtl--confirm{
	margin-top:0;
}
input[type=file] {
  color: #333333;
}

.fileTxt {
  margin-top: 11px;
  font-size: 12px;
  color: #333333;
}

.formDl__file {
  align-items: flex-start;
}

input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #833320;
  vertical-align: -3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 6px;
  transform: rotate(50deg);
  width: 5px;
  height: 11px;
  border-right: 1px solid #833320;
  border-bottom: 1px solid #833320;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 30px;
  color: #333333;
}

.form--policyLink {
  text-decoration: underline;
}

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  transition: all 0.3s;
  pointer-events: all;
}

.submitBtn {
  width: 240px;
  padding: 17px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  background-color: #C86617;
  transition: all 0.5s;
  text-align: center;
}
.submitBtn:hover {
  transition: all 0.5s;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    font-size: 14px;
    width: 180px;
    padding: 15px 0;
  }
}


.error-page__content{
		padding: 150px 0;
		margin-top: 80px;
		background-color: #fff;
    font-family: "Jost", sans-serif;
		position: relative;
		z-index: 3;
		color: #0A3165;
	}
	
	.error-page__ttl{
    font-size: 40px;
    font-weight: 700;
	}
	@media screen and (max-width: 768px) {
		.error-page__content{
		margin-top: 50px;
	}
	
		.error-page__ttl{
			font-size: 30px;
			font-weight: 700;
		}
	}

  .wpcf7-spinner{
display: none!important;
}


.to-top-btn{ 
  width: max-content;
  margin: 80px auto 0;
}

.to-top-btn a{ 
  display: block;
  padding: 15px 70px;
  text-align: center;
  color: #fff;
  background-color: #833320;
  transition: all .5s;
}

.to-top-btn a:hover{ 
  background-color: #C86617;
  transition: all .5s;
}

@media screen and (max-width: 1024px) {
  .to-top-btn a{
  padding: 10px 50px;
  }
  .contact-explain--thanks{
    font-size: 14px;
  }
}

.submit-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

@media screen and (max-width: 768px) {
.submit-wrap{
	flex-direction: column;
	gap: 30px;
    margin-top: 50px;
	}
}