/* ========================================

common

======================================== */
.en_r {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.en_t {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
}

.en_sb {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.num_r {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.is-fade > *:not(.is-not) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade > .is-not {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade.fadeIn > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p_hover a:hover {
  opacity: 0.7;
}

.svg.c_white svg {
  fill: #fff;
}
.svg.c_black svg {
  fill: #000;
}

.img-fit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img-fit::before {
  width: 100%;
  height: 0;
  content: '';
  display: block;
  padding-top: 100%;
  position: relative;
}
.img-fit img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.replace_img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.l_tel {
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  .l_tel {
    pointer-events: auto;
  }
}
@-webkit-keyframes scroll_bar {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  51% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@-webkit-keyframes hover_ul {
  0% {
    background-size: 100% 1px;
    background-position: right bottom;
  }
  50% {
    background-size: 0% 1px;
    background-position: right bottom;
  }
  51% {
    background-size: 0% 1px;
    background-position: left bottom;
  }
  to {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}
/* ========================================

xxxxxx

======================================== */
body {
  position: relative;
  background-color: #fcfbf8;
}

@-webkit-keyframes slide_loop_h {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slide_loop_h {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes slide_loop_v {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes slide_loop_v {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 50vh;
  width: 100vw;
  overflow-x: auto;
}

#scroll > div {
  font-size: 14em;
  width: 500px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  background: #ccdfff;
}

#scroll > div:nth-child(even) {
  background: #f2f4c1;
}

/* ========================================

common

======================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding-right: 0;
}
.header .logo {
  margin-bottom: clamp(30px, 3vw, 45px);
}

@media screen and (max-width: 800px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header .logo {
    margin-bottom: 0;
  }
}
/* ========================================

kv

======================================== */
.kv {
  overflow: hidden;
  position: relative;
}
.kv::before, .kv::after {
  width: 100%;
  height: 22vw;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-position: center top;
  background-repeat: no-repeat;
}
.kv::before {
  background-image: url(../img/top/kv_bg.jpg);
  background-size: cover;
  z-index: -2;
}
.kv::after {
  background-image: url(../img/top/story_bg_top.png);
  background-size: 100%;
  z-index: -1;
}
.kv_inner {
  height: 69.3334vw;
  min-height: 555px;
  padding-top: clamp(54px, 6.6667vw, 100px);
  background-image: url(../img/top/kv_illuist_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}
.kv h2 {
  width: 20.6667vw;
  position: relative;
  margin-left: auto;
  margin-right: 8vw;
  z-index: 5;
}
.kv span {
  display: block;
}
.kv .illust {
  width: 30.1334vw;
  position: absolute;
  left: calc(50% - (30.1334vw / 2));
  bottom: 13.6vw;
  z-index: 2;
}
.kv .sun {
  width: 16.6667vw;
  position: absolute;
  top: 312px;
  top: clamp(0px, 20.8vw, 312px);
  left: 4.6667vw;
  -webkit-animation: rotate 120s linear infinite;
          animation: rotate 120s linear infinite;
  z-index: 2;
}
.kv .cloud {
  position: absolute;
  z-index: 1;
}
.kv .cloud01 {
  width: 9.2vw;
  top: 39.6vw;
  left: 1.0667vw;
  -webkit-animation: cloud01 120s linear infinite;
          animation: cloud01 120s linear infinite;
}
.kv .cloud02 {
  width: 9.6667vw;
  top: 29.6vw;
  left: 15.2vw;
  -webkit-animation: cloud02 90s linear infinite;
          animation: cloud02 90s linear infinite;
}
.kv .cloud03 {
  width: 10.8667vw;
  top: 20.2667vw;
  left: 63.7334vw;
  -webkit-animation: cloud03 100s linear infinite;
          animation: cloud03 100s linear infinite;
}
.kv .cloud04 {
  width: 7.5334vw;
  top: 34.5334vw;
  left: 91.2vw;
  -webkit-animation: cloud04 80s linear infinite;
          animation: cloud04 80s linear infinite;
}
.kv_inner {
  opacity: 0;
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}
.kv_inner h2 {
  opacity: 0;
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}
.kv_inner .illust {
  opacity: 0;
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}
.kv_inner .sun {
  opacity: 0;
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
}
.kv_inner .cloud {
  opacity: 0;
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
}
.kv.fadeIn .kv_inner {
  opacity: 1;
}
.kv.fadeIn .kv_inner h2,
.kv.fadeIn .kv_inner .illust,
.kv.fadeIn .kv_inner .sun,
.kv.fadeIn .kv_inner .cloud {
  opacity: 1;
}

@-webkit-keyframes cloud01 {
  0% {
    opacity: 1;
    left: 1.0667vw;
  }
  8% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  8.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  9% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  9.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 1.0667vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes cloud01 {
  0% {
    opacity: 1;
    left: 1.0667vw;
  }
  8% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  8.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  9% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  9.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 1.0667vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes cloud02 {
  0% {
    opacity: 1;
    left: 15.2vw;
  }
  15% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  15.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  16% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  16.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 15.2vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cloud02 {
  0% {
    opacity: 1;
    left: 15.2vw;
  }
  15% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  15.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  16% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  16.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 15.2vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes cloud03 {
  0% {
    opacity: 1;
    left: 63.7334vw;
  }
  60% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  60.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  61% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  61.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 63.7334vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cloud03 {
  0% {
    opacity: 1;
    left: 63.7334vw;
  }
  60% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  60.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  61% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  61.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 63.7334vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes cloud04 {
  0% {
    opacity: 1;
    left: 91.2vw;
  }
  90% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  90.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  91% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  91.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 91.2vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cloud04 {
  0% {
    opacity: 1;
    left: 91.2vw;
  }
  90% {
    opacity: 1;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  90.5% {
    opacity: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  91% {
    opacity: 0;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  91.1% {
    opacity: 1;
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 91.2vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 800px) {
  .kv::before, .kv::after {
    height: 25vw;
  }
  .kv::before {
    background-image: url(../img/top/kv_bg_sp.jpg);
  }
  .kv_inner {
    height: auto;
    min-height: 0;
    padding-top: 176px;
    padding-bottom: 82.5vw;
    background-image: url(../img/top/kv_illuist_bg_sp.png);
    background-position: center bottom;
  }
  .kv h2 {
    width: 53%;
    max-width: 212px;
    position: relative;
    margin: 0 auto;
  }
  .kv .sun {
    width: 140px;
    top: 128px;
    left: -18px;
  }
  .kv .illust {
    width: 56.5%;
    left: 50%;
    bottom: 22.75vw;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .kv .cloud01 {
    width: 17.25vw;
    height: 11.25vw;
    top: 10vw;
  }
  .kv .cloud02 {
    width: 18vw;
    height: 10.25vw;
    top: 70vw;
  }
  .kv .cloud03 {
    width: 20.25vw;
    height: 22.5vw;
    top: 36vw;
  }
  .kv .cloud04 {
    width: 14vw;
    height: 9.5vw;
    top: 54vw;
  }
}
/* ========================================

story

======================================== */
.story {
  position: relative;
  padding: clamp(85px, 10.6667vw, 160px) 0 calc(40px + 25.3334vw);
  background-image: url(../img/top/story_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.story::before, .story::after {
  width: 100%;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  z-index: 0;
}
.story::before {
  height: 6.4667vw;
  top: 0;
  background-image: url(../img/top/story_bg_top.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  display: none;
}
.story::after {
  height: clamp(103px, 12.9334vw, 194px);
  bottom: 0;
  background-image: url(../img/top/story_bg_bottom.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}
.story_slides {
  width: 100vw;
  height: calc(clamp(330px, 40vw, 600px) + clamp(106px, 13.3334vw, 200px) + 100px);
  position: relative;
  overflow-y: scroll;
}
.story_item {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.story_item .box_text {
  width: 41.13%;
  max-width: 510px;
}
.story_item .box_text .num {
  margin-bottom: clamp(32px, 4vw, 60px);
}
.story_item .box_text .txt {
  color: #5b3714;
  font-size: clamp(15px, 1.6vw, 24px);
  line-height: 2.08;
}
.story_item .box_text .txt span {
  color: #b0702b;
}
.story_item .illust {
  width: 51.6130%;
  max-width: 640px;
  position: relative;
}
.story_item .illust::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  z-index: -1;
}
.story_item .illust .sub {
  width: 22.65625%;
  max-width: 145px;
  position: absolute;
  top: -6.25%;
  right: -6.25%;
}
.story_item.item01 {
  z-index: 5;
}
.story_item.item01 .illust {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.story_item.item02 {
  z-index: 4;
}
.story_item.item02 .illust {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.story_item.item02 .illust::after {
  background-image: url(../img/top/story_cont01_illust.jpg);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.story_item.item03 {
  z-index: 3;
}
.story_item.item03 .illust {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.story_item.item03 .illust::after {
  background-image: url(../img/top/story_cont02_illust.jpg);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.story_item.item04 {
  z-index: 2;
}
.story_item.item04 .illust {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.story_item.item04 .illust::after {
  background-image: url(../img/top/story_cont03_illust.jpg);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.story_item.item05 {
  z-index: 1;
}
.story_item.item05 .illust {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.story_item.item05 .illust::after {
  background-image: url(../img/top/story_cont04_illust.jpg);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

@media screen and (min-width: 801px) {
  .story_slides {
    padding: clamp(53px, 6.6667vw, 100px) 0;
  }
  .story_slides_inner {
    width: 100%;
    height: calc((clamp(330px, 40vw, 600px) + 100px) * 5);
    padding-bottom: clamp(117px, 14.6667vw, 220px);
    z-index: 1;
  }
  .story_item {
    margin-bottom: clamp(117px, 14.6667vw, 220px);
    padding: 30px 20px 0 clamp(21px, 2.6667vw, 40px);
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 5;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
  }
  .story_item.current {
    opacity: 1;
  }
  .story_item.item05 {
    margin-bottom: 0;
    padding-bottom: clamp(117px, 14.6667vw, 220px);
  }
}
@media screen and (max-width: 800px) {
  .story {
    padding-bottom: 228px;
    padding-top: 88px;
    background-image: url(../img/top/story_bg_sp.jpg);
  }
  .story::before {
    display: none;
  }
  .story::after {
    height: 60px;
    background-image: url(../img/top/story_bg_bottom_sp.png);
  }
  .story_slides {
    height: 670px;
  }
  .story_item {
    width: 100%;
    padding: 0;
  }
  .story_item:not(:last-child) {
    margin-bottom: 94px;
  }
  .story_item .box_text {
    width: 75%;
    max-width: none;
    margin: 0 auto 65px;
  }
  .story_item .box_text .num {
    width: 135px;
    margin-bottom: 34px;
  }
  .story_item .box_text .txt {
    font-size: 16px;
    line-height: 2;
  }
  .story_item .illust {
    width: 80%;
    max-width: none;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
  }
  .story_item .illust::after {
    display: none !important;
  }
  .story_item .illust .sub {
    display: none;
  }
}
/* ========================================

slide

======================================== */
.slide {
  overflow: hidden;
  position: relative;
  margin-top: -25.3334vw;
  z-index: 2;
}
.slide_inner {
  -webkit-animation: slide_loop_h 120s linear infinite;
          animation: slide_loop_h 120s linear infinite;
  width: calc((50vw + 22.6667vw + 38.6667vw + 50vw + 26.6667vw + 37.3334vw + (3.3334vw * 6)) * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slide .img {
  overflow: hidden;
  margin-right: 3.3334vw;
  border-radius: 3px;
}
.slide .img01 {
  width: 50vw;
  margin-top: 4vw;
}
.slide .img02 {
  width: 22.6667vw;
  margin-top: 12vw;
}
.slide .img03 {
  width: 38.6667vw;
  margin-top: 4vw;
}
.slide .img04 {
  width: 50vw;
  margin-top: 1.3334vw;
}
.slide .img05 {
  width: 26.6667vw;
  margin-top: 5.3334vw;
}
.slide .img06 {
  width: 37.3334vw;
}

@media screen and (max-width: 800px) {
  .slide {
    margin-top: -144px;
    z-index: 2;
  }
  .slide_inner {
    width: calc((98.25vw + 44.5vw + 76vw + 98.25vw + 52.5vw + 73.5vw + (6.75vw * 6)) * 2);
  }
  .slide .img {
    margin-right: 6.75vw;
    border-radius: 1.5px;
  }
  .slide .img01 {
    width: 98.25vw;
    margin-top: 7.75vw;
  }
  .slide .img02 {
    width: 44.5vw;
    margin-top: 23.5vw;
  }
  .slide .img03 {
    width: 76vw;
    margin-top: 7.75vw;
  }
  .slide .img04 {
    width: 98.25vw;
    margin-top: 2.5vw;
  }
  .slide .img05 {
    width: 52.5vw;
    margin-top: 10.5vw;
  }
  .slide .img06 {
    width: 73.5vw;
  }
}
/* ========================================

about

======================================== */
.about {
  padding-top: clamp(128px, 16vw, 240px);
  background-color: #f6f3ed;
  background-image: url(../img/top/about_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.about_top {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: clamp(182px, 22.6667vw, 340px);
  padding: 0 clamp(38px, 4.6667vw, 70px) 0 clamp(27px, 3.3334vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about_top h2 {
  width: 36.7797%;
  max-width: 434px;
  margin-top: 10px;
}
.about_top .txt {
  font-size: clamp(13px, 1.6vw, 24px);
  text-align: justify;
  line-height: 2.25;
  width: 54.2373%;
  max-width: 640px;
  background: -webkit-linear-gradient(-90deg, #9e5d16, #663b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.about_hl {
  position: relative;
  margin-bottom: clamp(0px, 13.3334vw, 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about_hl .img {
  width: 70%;
  max-width: 1050px;
}
.about_hl h3 {
  max-width: 150px;
  width: clamp(75px, 10vw, 150px);
  padding-top: 16px;
}
.about_cont_inner {
  max-width: 1500px;
  margin: 0 auto;
}
.about_cont_item {
  width: 90%;
  max-width: 1340px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about_cont_item:not(:last-child) {
  margin-bottom: clamp(0px, 8vw, 120px);
}
.about_cont_item .box_img {
  width: 42.5374%;
  position: relative;
}
.about_cont_item .box_img .sub {
  width: 35.6141%;
  max-width: 203px;
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 2;
}
.about_cont_item .box_text {
  width: 47.7612%;
  max-width: 640px;
}
.about_cont_item h4 {
  width: 80%;
  max-width: 400px;
  margin-bottom: 40px;
}
.about_cont_item .txt {
  font-size: clamp(14px, 1.5vw, 20px);
  text-align: justify;
  line-height: 2;
}
.about_cont_item .txt span {
  color: #b0702b;
  background-image: linear-gradient(transparent calc(100% - 1px), rgba(176, 112, 43, 0.3) 0%);
}
.about_cont_item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.about_cont_item:nth-child(odd) .box_img .sub {
  left: auto;
  right: -15px;
}
.about_cont.farm::after {
  width: 100%;
  height: clamp(117px, 14.6667vw, 220px);
  content: '';
  display: block;
  margin-top: clamp(0px, 10.6667vw, 160px);
  background-image: url(../img/top/farm_bg_bottom.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: clamp(1000px, 100%, 99999px) 100%;
}
.about_cont.farm .about_hl::before {
  width: clamp(170px, 21.7334vw, 326px);
  height: clamp(84px, 10.6667vw, 160px);
  content: '';
  display: block;
  position: absolute;
  right: 4%;
  bottom: clamp(-108px, -7vw, -60px);
  background-image: url(../img/top/farm_hl_illust01.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
.about_cont.farm .about_hl h3 {
  margin-right: clamp(0px, 9.6667vw, 145px);
}
.about_cont.brand {
  padding: clamp(0px, 8.6667vw, 130px) 0 clamp(0px, 10vw, 150px);
  background-color: #ece3d0;
}
.about_cont.brand .about_hl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.about_cont.brand .about_hl::before {
  width: clamp(216px, 27vw, 405px);
  height: clamp(87px, 10.8vw, 162px);
  content: '';
  display: block;
  position: absolute;
  left: 6.6667%;
  bottom: clamp(-84px, -5.6vw, -45px);
  background-image: url(../img/top/brand_hl_illust01.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
.about_cont.brand .about_hl h3 {
  margin-left: clamp(0px, 11.3334vw, 170px);
}

@media screen and (max-width: 800px) {
  .about {
    margin-bottom: 15px;
    padding-top: 0;
    background-image: none;
  }
  .about_top {
    width: 80%;
    position: relative;
    margin-bottom: 0;
    padding: 70px 0 240px;
    display: block;
  }
  .about_top::before {
    width: 100vw;
    height: calc(100% + 60px);
    content: '';
    display: block;
    position: absolute;
    left: -10vw;
    bottom: -50px;
    background-color: #fcfbf8;
    background-image: url(../img/top/about_bg_sp.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    z-index: 0;
  }
  .about_top h2 {
    width: 100%;
    max-width: 301px;
    position: relative;
    margin: 0 auto 55px;
    z-index: 1;
  }
  .about_top .txt {
    font-size: 17px;
    line-height: 1.94;
    width: 93.75%;
    max-width: 640px;
    margin: 0 auto;
  }
  .about_hl {
    margin-bottom: 90px;
  }
  .about_hl .img {
    width: 92.5%;
    margin: 0 auto 97px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .about_hl .img img {
    border-radius: 3px;
  }
  .about_hl h3 {
    max-width: none;
    padding-top: 0;
  }
  .about_hl .img {
    position: relative;
    z-index: 2;
  }
  .about_hl .img img {
    z-index: 2;
  }
  .about_hl .img::before {
    z-index: 3;
  }
  .about_cont_item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about_cont_item:not(:last-child) {
    margin-bottom: 80px;
  }
  .about_cont_item .box_img {
    width: 93.75%;
    margin-left: auto;
    margin-bottom: 60px;
  }
  .about_cont_item .box_img .sub {
    width: 152px;
    top: -10px;
    left: -10px;
    z-index: 2;
  }
  .about_cont_item .box_text {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about_cont_item h4 {
    width: 29px;
    margin-bottom: 0;
    padding-top: 10px;
  }
  .about_cont_item .txt {
    font-size: 15px;
    line-height: 1.8;
    width: 78.125%;
  }
  .about_cont_item:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about_cont_item:nth-child(odd) .box_img {
    margin-left: 0;
    margin-right: auto;
  }
  .about_cont_item:nth-child(odd) .box_img .sub {
    left: auto;
    right: -10px;
  }
  .about_cont_item:nth-child(odd) .box_text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .about_cont.farm {
    padding-bottom: 84px;
  }
  .about_cont.farm::after {
    display: none;
  }
  .about_cont.farm .about_hl::before {
    width: 96px;
    height: 90px;
    right: auto;
    left: 0;
    bottom: -92px;
    background-image: url(../img/top/farm_hl_illust01_sp.png);
  }
  .about_cont.farm .about_hl h3 {
    width: 239px;
    margin: 0 auto;
  }
  .about_cont.farm .about_hl .img::before {
    width: 100px;
    height: 65px;
    content: '';
    display: block;
    position: absolute;
    right: -3.75vw;
    bottom: -22px;
    background-image: url(../img/top/farm_hl_illust02_sp.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
  }
  .about_cont.brand {
    position: relative;
    padding: 0 0 88px;
  }
  .about_cont.brand::before {
    width: 100%;
    height: 55px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f6f3ed;
  }
  .about_cont.brand .about_hl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .about_cont.brand .about_hl::before {
    width: 80px;
    height: 86px;
    left: 0;
    bottom: -95px;
    background-image: url(../img/top/brand_hl_illust01_sp.png);
  }
  .about_cont.brand .about_hl h3 {
    width: 287px;
    margin: 0 auto;
  }
  .about_cont.brand .about_hl .img::before {
    width: 120px;
    height: 95px;
    content: '';
    display: block;
    position: absolute;
    right: -3.75vw;
    bottom: -28px;
    background-image: url(../img/top/brand_hl_illust02_sp.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
  }
}
/* ========================================

sale

======================================== */
.sale {
  position: relative;
  background-image: url(../img/top/sale_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.sale::before {
  width: 100%;
  height: clamp(214px, 26.6667vw, 400px);
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ece3d0;
  z-index: 0;
}
.sale::after {
  width: 100%;
  height: clamp(117px, 14.6667vw, 220px);
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/top/sale_bg_bottom.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: clamp(1000px, 100%, 99999px) 100%;
  z-index: 2;
}
.sale_inner {
  width: 96%;
  max-width: 1440px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #ebe2d2), to(white));
  background: linear-gradient(0deg, #ebe2d2 10%, white 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sale .box_text {
  width: 48.6112%;
  padding: clamp(0px, 12vw, 180px) 0 clamp(200px, 20.6667vw, 310px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sale .box_text h2 {
  width: 65%;
  max-width: 455px;
  text-align: center;
  margin: 0 auto;
}
.sale .box_text .txt {
  color: #000;
  font-size: clamp(14px, 1.6667vw, 20px);
  line-height: 2;
  text-align: justify;
  width: 68.5715%;
  max-width: 480px;
  margin: clamp(48px, 6vw, 90px) auto;
}
.sale .box_text .btn {
  width: 68.5715%;
  max-width: 480px;
  margin: 0 auto;
}
.sale .box_text .btn a {
  width: 100%;
  display: block;
  background-image: url(../img/top/sale_btn_on.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.sale .box_text .btn a img {
  -webkit-transition: all .3s;
  transition: all .3s;
}
.sale .box_text .btn a:hover img {
  opacity: 0;
}
.sale .box_img_inner {
  width: 51.3889%;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-animation: slide_loop_v 60s linear infinite;
          animation: slide_loop_v 60s linear infinite;
}
.sale .box_img .img {
  overflow: hidden;
  margin-bottom: 3px;
  border-radius: 3px;
}
.sale .box_img .img02 {
  width: 49.8649%;
}
.sale .box_img .img03 {
  width: 49.7298%;
}

@media screen and (max-width: 800px) {
  .sale {
    background-image: none;
  }
  .sale::before {
    display: none;
  }
  .sale_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sale::after {
    height: 60px;
    background-image: url(../img/top/sale_bg_bottom_sp.png);
    background-size: 100% 100%;
  }
  .sale .box_text {
    width: 80%;
    margin: 0 auto;
    padding: 78px 0 155px;
  }
  .sale .box_text h2 {
    width: 300px;
  }
  .sale .box_text .txt {
    font-size: 16px;
    line-height: 1.93;
    width: 96.875%;
    max-width: 480px;
    margin: 46px  auto 44px;
  }
  .sale .box_text .btn {
    width: 100%;
    max-width: 640px;
  }
  .sale .box_text .btn a {
    background-image: none;
  }
  .sale .box_text .btn a:hover img {
    opacity: 1;
  }
  .sale .box_img {
    width: 100%;
  }
  .sale .box_img_inner {
    width: calc((92.5vw + 46.125vw + 100vw + (15px * 3)) * 2);
    position: relative;
    top: auto;
    right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-animation: slide_loop_h 40s linear infinite;
            animation: slide_loop_h 40s linear infinite;
  }
  .sale .box_img .img {
    overflow: hidden;
    margin-bottom: 0;
    margin-right: 15px;
    border-radius: 3px;
  }
  .sale .box_img .img:nth-child(3) {
    left: calc(92.5vw + 15px);
  }
  .sale .box_img .img:nth-child(7) {
    right: calc(100vw + 15px);
  }
  .sale .box_img .img01 {
    width: 92.5vw;
    aspect-ratio: 740 / 710;
  }
  .sale .box_img .img01 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sale .box_img .img02 {
    width: 46.125vw;
  }
  .sale .box_img .img03 {
    width: 46.125vw;
    position: absolute;
    bottom: 0;
  }
  .sale .box_img .img04 {
    width: 100vw;
    aspect-ratio: 800 / 710;
  }
  .sale .box_img .img04 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* ========================================

info

======================================== */
.info {
  padding: 30px 0 150px;
  background-color: var(--c_base);
}
.info_inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.info_inner h2 {
  width: clamp(75px, 10vw, 150px);
  position: absolute;
  top: 0;
  right: clamp(32px, 4vw, 60px);
}
.info_list {
  padding-top: 100px;
  margin-left: clamp(22px, 2.6667vw, 40px);
}
.info_list_item {
  width: 73.0159%;
  max-width: 920px;
}
.info_list_item:not(:last-child) {
  margin-bottom: 50px;
}
.info_list_item:nth-child(2n) {
  margin-left: clamp(80px, 10vw, 150px);
}
.info_list_item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_list_item a:hover .img img {
  -webkit-transform: scale(1.18);
          transform: scale(1.18);
}
.info_list_item a:hover .box_text .date {
  color: #b0702b;
}
.info_list_item a:hover .box_text h3 {
  color: #b0702b;
}
.info_list_item a:hover .box_text h3 span {
  background-image: -webkit-gradient(linear, left top, right top, from(#b0702b), to(#b0702b));
  background-image: linear-gradient(90deg, #b0702b, #b0702b);
  -webkit-animation: hover_ul 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: hover_ul 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.info_list_item .img {
  width: 28.2609%;
  overflow: hidden;
}
.info_list_item .img img {
  -webkit-transition: all .4s;
  transition: all .4s;
}
.info_list_item .box_text {
  width: 66.3044%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_list_item .box_text .date {
  font-size: clamp(12px, 1.5vw, 18px);
  letter-spacing: 0.08em;
  margin-right: 16px;
  padding-bottom: 2px;
}
.info_list_item .box_text .cat {
  color: #fff;
  font-size: clamp(11px, 1.0667vw, 16px);
  text-align: center;
  padding: 5px 9px 7px;
  background-image: url(../img/top/info_cat_bg02.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_list_item .box_text .cat01 {
  background-image: url(../img/top/info_cat_bg01.png);
}
.info_list_item .box_text .cat03 {
  background-image: url(../img/top/info_cat_bg03.png);
}
.info_list_item .box_text h3 {
  font-size: clamp(15px, 2vw, 24px);
  line-height: 1.58;
  width: 100%;
  margin-top: clamp(10px, 1.3334vw, 20px);
}
.info_list_item .box_text h3 span {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(#5b3714), to(#5b3714));
  background-image: linear-gradient(90deg, #5b3714, #5b3714);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 800px) {
  .info {
    padding: 40px 0 60px;
    background-color: var(--c_base);
  }
  .info_inner {
    width: 85%;
  }
  .info_inner h2 {
    width: 167px;
    margin: 0 auto;
    position: relative;
    top: auto;
    right: auto;
  }
  .info_list {
    padding-top: 65px;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .info_list_item {
    width: 45.5883%;
  }
  .info_list_item:not(:last-child) {
    margin-bottom: 0;
  }
  .info_list_item:nth-child(2n) {
    margin-left: 0;
  }
  .info_list_item .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .info_list_item .box_text {
    width: 100%;
  }
  .info_list_item .box_text .date {
    font-size: 15px;
    margin-right: 14px;
    margin-bottom: 12px;
    padding-bottom: 2px;
  }
  .info_list_item .box_text .cat {
    font-size: 13px;
  }
  .info_list_item .box_text h3 {
    font-size: 17px;
    margin-top: clamp(10px, 1.3334vw, 20px);
  }
  .info_list_item:first-child {
    width: 100%;
    margin-bottom: 38px;
  }
  .info_list_item:first-child .img {
    margin-bottom: 30px;
  }
  .info_list_item:first-child .date {
    margin-bottom: 0;
  }
  .info_list_item:first-child .box_text {
    width: 94.1177%;
    margin: 0 auto;
  }
  .info_list_item:first-child .box_text h3 {
    font-size: 19px;
  }
}
/* ========================================

company

======================================== */
.company {
  position: relative;
  padding-bottom: calc(clamp(80px, 10vw, 150px) + clamp(117px, 14.6667vw, 220px));
  background-color: var(--c_base);
}
.company::after {
  width: 100%;
  height: clamp(117px, 14.6667vw, 220px);
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/top/company_bg_bottom.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: clamp(1000px, 100%, 99999px) 100%;
  z-index: 2;
}
.company_inner {
  width: 90%;
  max-width: 1340px;
  position: relative;
  margin: 0 auto;
  padding-top: 6.1%;
  padding-bottom: 3.7315%;
  background-color: #fff;
  border-radius: 6px;
}
.company_inner::before {
  width: clamp(114px, 14.1334vw, 212px);
  height: clamp(86px, 10.7334vw, 161px);
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 2.9851%;
  background-image: url(../img/top/company_illust.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  -webkit-transform: translateY(calc(-100% + 9px));
          transform: translateY(calc(-100% + 9px));
}
.company_info {
  width: 92.5374%;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.company_info h2 {
  width: clamp(28px, 3.4667vw, 52px);
  margin-left: 3.2259%;
}
.company_info ul {
  font-size: clamp(14px, 1.6667vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.05em;
  width: 84.6775%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.company_info ul li {
  width: 48.5715%;
  margin-bottom: clamp(17px, 2.1334vw, 32px);
  padding-bottom: clamp(17px, 2.1334vw, 32px);
  border-bottom: 1px solid rgba(84, 84, 84, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.company_info ul li:last-child, .company_info ul li:nth-last-child(2) {
  border-bottom: none;
  margin-bottom: 0;
}
.company_info ul li .term {
  color: #b0702b;
  width: 6.5em;
}
.company_info ul li .item {
  color: #5b3714;
  width: calc(100% - 6.5em);
}
.company .map {
  width: 92.5374%;
  height: 400px;
  margin: 0 auto;
}
.company .map iframe {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes underline {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@keyframes underline {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 800px) {
  .company {
    padding-bottom: 195px;
  }
  .company::before {
    width: 156px;
    height: 104px;
    content: '';
    display: block;
    position: absolute;
    left: 30px;
    bottom: 30px;
    background-image: url(../img/top/company_illust_sp.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    z-index: 3;
  }
  .company::after {
    height: 62px;
    background-image: url(../img/top/company_bg_bottom_sp.png);
    background-size: 100% 100%;
  }
  .company_inner {
    width: 92.5%;
    padding-top: 50px;
    padding-bottom: 20px;
    border-radius: 3px;
  }
  .company_inner::before {
    display: none;
  }
  .company_info {
    width: 86.4865%;
    margin-bottom: 26px;
  }
  .company_info h2 {
    width: 117px;
    margin: 0 auto 50px;
  }
  .company_info ul {
    font-size: 15px;
    line-height: 1.53;
    width: 100%;
    display: block;
    border-top: 1px solid rgba(84, 84, 84, 0.5);
  }
  .company_info ul li {
    width: 100%;
    margin-bottom: 0;
    padding: 20.5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .company_info ul li:nth-last-child(2) {
    border-bottom: 1px solid rgba(84, 84, 84, 0.5);
    margin-bottom: 0;
  }
  .company_info ul li .term {
    width: 9.5em;
    padding-left: 0.5em;
  }
  .company_info ul li .item {
    width: calc(100% - 9.5em);
  }
  .company .map {
    width: 89.1892%;
    height: 250px;
  }
}
/* ========================================

contact

======================================== */
.contact {
  padding-top: clamp(76px, 9.4667vw, 142px);
  padding-bottom: calc(clamp(117px, 14.6667vw, 220px) + clamp(84px, 10.4vw, 156px));
  background-color: #fff;
}
.contact_inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact h2 {
  width: clamp(75px, 10vw, 150px);
  margin-right: clamp(32px, 4vw, 60px);
}
.contact_form {
  width: 72.3077%;
  max-width: 940px;
  margin-left: clamp(10px, 1.3334vw, 20px);
}
.contact_form ul {
  margin-bottom: clamp(26px, 3.334vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact_form ul li {
  color: #5b3714;
  font-size: clamp(16px, 1.8334vw, 22px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact_form ul li:not(:last-child) {
  margin-bottom: clamp(21px, 2.5334vw, 38px);
}
.contact_form ul li .term {
  margin-bottom: clamp(16px, 2vw, 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_form ul li .term .att {
  color: #ba5250;
  font-size: clamp(10px, 1vw, 15px);
  margin: 0 1em 0 0.5em;
}
.contact_form ul li .term .error {
  color: #ba5250;
  font-size: clamp(10px, 1vw, 15px);
  padding: 2px 0 1px;
  border-bottom: 1px solid rgba(186, 82, 80, 0.6);
}
.contact_form ul li .input {
  width: 100%;
  position: relative;
}
.contact_form ul li .input input[type="text"],
.contact_form ul li .input input[type="tel"],
.contact_form ul li .input input[type="email"],
.contact_form ul li .input textarea {
  font-size: clamp(14px, 1.6667vw, 20px);
  line-height: 1.5;
  width: 100%;
  padding: clamp(11px, 1.3vw, 19.5px) clamp(11px, 1.4667vw, 22px);
  border: 1px solid #5b3714;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_form ul li .input input[type="text"]::-webkit-input-placeholder,
.contact_form ul li .input input[type="tel"]::-webkit-input-placeholder,
.contact_form ul li .input input[type="email"]::-webkit-input-placeholder,
.contact_form ul li .input textarea::-webkit-input-placeholder {
  color: rgba(91, 55, 20, 0.2);
}
.contact_form ul li .input input[type="text"]:-ms-input-placeholder,
.contact_form ul li .input input[type="tel"]:-ms-input-placeholder,
.contact_form ul li .input input[type="email"]:-ms-input-placeholder,
.contact_form ul li .input textarea:-ms-input-placeholder {
  color: rgba(91, 55, 20, 0.2);
}
.contact_form ul li .input input[type="text"]::-ms-input-placeholder,
.contact_form ul li .input input[type="tel"]::-ms-input-placeholder,
.contact_form ul li .input input[type="email"]::-ms-input-placeholder,
.contact_form ul li .input textarea::-ms-input-placeholder {
  color: rgba(91, 55, 20, 0.2);
}
.contact_form ul li .input input[type="text"]::placeholder,
.contact_form ul li .input input[type="tel"]::placeholder,
.contact_form ul li .input input[type="email"]::placeholder,
.contact_form ul li .input textarea::placeholder {
  color: rgba(91, 55, 20, 0.2);
}
.contact_form ul li .input input[type="text"]:focus,
.contact_form ul li .input input[type="tel"]:focus,
.contact_form ul li .input input[type="email"]:focus,
.contact_form ul li .input textarea:focus {
  border-color: #f6f4ee;
  background-color: #f6f4ee;
}
.contact_form ul li.box_check {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(32px, 4vw, 60px);
}
.contact_form ul li.box_check .term {
  width: 10em;
  margin-bottom: 0;
}
.contact_form ul li.box_check .check {
  width: calc(100% - 10em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.contact_form ul li.box_check .check_label:not(:first-child) {
  margin-left: clamp(21px, 2.6667vw, 40px);
}
.contact_form ul li.box_check .check_label label {
  font-size: clamp(13px, 1.5834vw, 19px);
  cursor: pointer;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_form ul li.box_check .check_label input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: clamp(26px, 2.6667vw, 40px);
  height: clamp(26px, 2.6667vw, 40px);
  margin-right: clamp(8px, 1.0667vw, 16px);
  z-index: 2;
}
.contact_form ul li.box_check .check_label input[type="checkbox"]::before {
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(91, 55, 20, 0.3);
  background-color: #fff;
  border-radius: 6px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_form ul li.box_check .check_label input[type="checkbox"]::after {
  width: clamp(10px, 0.8vw, 12px);
  height: clamp(6px, 0.4667vw, 7px);
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border: clamp(2px, 0.1667vw, 2.5px) solid rgba(91, 55, 20, 0.2);
  border-top: none;
  border-right: none;
  z-index: 2;
  -webkit-transform: translate(-50%, -70%) rotate(-45deg);
          transform: translate(-50%, -70%) rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_form ul li.box_check .check_label input[type="checkbox"]:checked::before {
  border-color: #f6f4ee;
  background-color: #f6f4ee;
}
.contact_form ul li.box_check .check_label input[type="checkbox"]:checked::after {
  border-color: #ba524f;
}
.contact_form ul li.text {
  width: 47.8724%;
}
.contact_form ul li.text .term {
  width: 100%;
}
.contact_form ul li.mail {
  width: 100%;
  margin-bottom: clamp(26px, 3.2vw, 48px);
}
.contact_form ul li.message {
  width: 100%;
}
.contact_form ul li.message .term {
  width: 11.8182em;
}
.contact_form ul li.message .term .error {
  margin-top: 0.5em;
}
.contact_form ul li.message .input {
  width: calc(100% - 11.8182em);
}
.contact_form .box_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_form .box_btn .txt {
  font-size: clamp(13px, 1.5vw, 18px);
  line-height: 1.88;
  letter-spacing: 0.03em;
  width: 55.3192%;
}
.contact_form .box_btn .txt span {
  background-image: -webkit-gradient(linear, left top, right top, from(#ddd9d5), to(#ddd9d5));
  background-image: linear-gradient(90deg, #ddd9d5, #ddd9d5);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}
.contact_form .box_btn .txt span .att {
  color: #ba5250;
}
.contact_form .box_btn .btn {
  width: 40.4256%;
  background: linear-gradient(113deg, #a77131 10%, #7a5023 100%);
  border-radius: 40px;
}
.contact_form .box_btn .btn button {
  width: 100%;
  height: clamp(70px, 5.3334vw, 80px);
  cursor: pointer;
  position: relative;
  background-color: #ede6d5;
  border-radius: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_form .box_btn .btn button::before, .contact_form .box_btn .btn button::after {
  width: clamp(26px, 2.2vw, 33px);
  height: 32px;
  content: '';
  display: block;
  position: absolute;
  left: clamp(13px, 1.6vw, 24px);
  top: 50%;
  background-image: url(../img/top/contact_btn_icon_off.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_form .box_btn .btn button::after {
  background-image: url(../img/top/contact_btn_icon_on.png);
  z-index: 1;
}
.contact_form .box_btn .btn button span {
  width: clamp(70px, 5.9334vw, 89px);
  display: block;
  margin: 0 auto;
  background-image: url(../img/top/contact_btn_txt_on.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.contact_form .box_btn .btn button span img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_form .box_btn .btn button:hover {
  background-color: transparent;
}
.contact_form .box_btn .btn button:hover::before {
  opacity: 0;
}
.contact_form .box_btn .btn button:hover span img {
  opacity: 0;
}
.contact_form .txt {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.8;
}
.contact_form .gc {
  font-size: clamp(10px, 1.3vw, 12px);
  line-height: 1.3;
  margin-top: 2em;
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .contact {
    padding: 82px 0 163px;
  }
  .contact_inner {
    width: 85%;
    display: block;
  }
  .contact h2 {
    width: 236px;
    margin: 0 auto 74px;
  }
  .contact_form {
    width: 100%;
    margin: 0 auto;
  }
  .contact_form ul {
    display: block;
    margin-bottom: 0;
  }
  .contact_form ul li {
    font-size: 18px;
    width: 100% !important;
    padding: 38px 0 45px;
    border-top: 1px solid rgba(84, 84, 84, 0.5);
  }
  .contact_form ul li:not(:last-child) {
    margin-bottom: 0;
  }
  .contact_form ul li .term {
    width: 100% !important;
    display: block;
    margin-bottom: 20px;
  }
  .contact_form ul li .term .att {
    font-size: 18px;
    margin: 0 0 0 5px;
  }
  .contact_form ul li .term .error {
    font-size: 11px;
  }
  .contact_form ul li .input {
    width: 100% !important;
  }
  .contact_form ul li .input input[type="text"],
  .contact_form ul li .input input[type="tel"],
  .contact_form ul li .input input[type="email"],
  .contact_form ul li .input textarea {
    font-size: 16px;
    line-height: 1.56;
    padding: 16.5px;
    border-radius: 3px;
  }
  .contact_form ul li .input textarea {
    height: 300px;
  }
  .contact_form ul li.box_check {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .contact_form ul li.box_check .term {
    margin-bottom: 30px;
  }
  .contact_form ul li.box_check .check {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .contact_form ul li.box_check .check_label {
    margin-bottom: 20px;
  }
  .contact_form ul li.box_check .check_label:not(:first-child) {
    margin-left: 0;
  }
  .contact_form ul li.box_check .check_label:nth-child(odd) {
    width: 51.5%;
  }
  .contact_form ul li.box_check .check_label label {
    font-size: 15px;
  }
  .contact_form ul li.box_check .check_label input[type="checkbox"] {
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }
  .contact_form ul li.box_check .check_label input[type="checkbox"]::before {
    border-radius: 3px;
  }
  .contact_form ul li.box_check .check_label input[type="checkbox"]::after {
    width: 10px;
    height: 5px;
  }
  .contact_form ul li.message {
    padding-bottom: 38px;
  }
  .contact_form .box_btn {
    display: block;
  }
  .contact_form .box_btn .txt {
    font-size: 16px;
    line-height: 1.75;
    width: 94.1177%;
    margin: 0 auto 38px;
  }
  .contact_form .box_btn .btn {
    width: 94.1177%;
  }
  .contact_form .box_btn .btn button {
    width: 100%;
    height: 70px;
    border-radius: 40px;
  }
  .contact_form .box_btn .btn button::before, .contact_form .box_btn .btn button::after {
    width: 31px;
    height: 30px;
  }
  .contact_form .box_btn .btn button span {
    width: 74px;
  }
}
