
/*--------------------------------------------------------------
# 変数
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ミックスイン
--------------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.prev.slick-arrow {
  position: absolute;
  top: -3%;
  bottom: 0;
  left: -7%;
  margin: auto;
  width: 4%;
  height: fit-content;
}

.next.slick-arrow {
  position: absolute;
  top: -3%;
  right: -7%;
  bottom: 0;
  margin: auto;
  width: 4%;
  height: fit-content;
}

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*--------------------------------------------------------------
# アニメーションスタイル
--------------------------------------------------------------*/
.inview--typing span {
  opacity: 0;
}
.inview--typing span.is-active {
  opacity: 1;
}

.inview--fadein {
  transform: translateY(50px);
  opacity: 0;
}
.inview--fadein.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: 0.7s ease-in;
}

.mv-inview--fadein {
  transform: translateY(180px);
  opacity: 0;
}
.mv-inview--fadein.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: 1.5s ease-in;
}

.inview--fadein-nomal {
  opacity: 0;
}
.inview--fadein-nomal.is-active {
  opacity: 1;
  transition: 1s ease-in-out;
}

.inview--scale-up {
  opacity: 0;
  transform: translate(-40%, -20%);
}
.inview--scale-up.is-active {
  opacity: 1;
  animation: topScaleUp 1s linear 1;
}

.inview--connect_fadein > * {
  opacity: 0;
}
.inview--connect_fadein > *.is-active {
  opacity: 1;
  transition: 1s ease-in;
}

@keyframes topScaleUp {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# 基本設定
--------------------------------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  src: url(/fonts/NotoSansJP-Black.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Arial", "メイリオ", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 897px) {
  body {
    font-size: 4.267vw;
  }
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  border: none;
  transition: opacity 0.2s;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fddce2;
}
body.article .wrapper, body.store .wrapper {
  background: #fafafa;
}

p > em {
  font-style: normal;
  font-weight: bold;
}

#content {
  min-height: calc(100vh - 380px);
}
#content.fixed {
  padding-top: 50px;
}

.container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 897px) {
  .container {
    width: 100%;
    padding: 0 5vw;
  }
}

.breadcrumb {
  min-height: 50px;
  margin: 0 auto;
  padding: 0;
  color: #27272a;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 897px) {
  .breadcrumb {
    padding: 1em 0;
    font-size: 3.5vw;
  }
}
.breadcrumb a {
  color: #337ab7;
  font-weight: bold;
  text-decoration: underline;
  margin-right: 0.3em;
}
@media screen and (min-width: 1025px) {
  .breadcrumb a {
    cursor: pointer;
    transition: 0.5s opacity;
  }
  .breadcrumb a:hover {
    opacity: 0.7;
  }
  .breadcrumb a:hover img {
    opacity: 1;
  }
}
.breadcrumb a:not(:first-child) {
  margin-left: 0.3em;
}
.breadcrumb .current {
  margin-left: 0.3em;
}

@media screen and (max-width: 897px) {
  .view--pc {
    display: none !important;
  }
}

@media screen and (min-width: 897px) {
  .view--sp {
    display: none !important;
  }
}

.popup {
  position: fixed;
  z-index: 10;
  right: 3vw;
  bottom: 85px;
  display: none;
  max-width: 320px;
}
@media screen and (max-width: 480px) {
  .popup {
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 0;
    display: none;
    max-width: 100%;
  }
}
.popup__close {
  position: absolute;
  top: -20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: none;
  background-color: rgba(255, 255, 255, 0.5803921569);
  border-radius: 25px;
}

.header {
  position: relative;
  z-index: 9;
  background-color: #fff;
  overflow: hidden;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media screen and (max-width: 897px) {
  .header__inner {
    height: 70px;
  }
}
.header__cnt {
  display: flex;
  align-items: center;
}
.header__logo {
  width: 280px;
  margin: 0;
}
.header__logo img {
  width: auto;
}
@media screen and (max-width: 897px) {
  .header__logo {
    width: 40vw;
  }
  .has-nav .header__logo {
    width: auto;
    margin: 0;
  }
  .header__logo img {
    vertical-align: text-top;
  }
}

.header__ttl {
  font-size: 1.8rem;
  margin-left: 1em;
}

.header-btn {
  display: flex;
  align-items: center;
  padding: 0.3em 3em;
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid;
  border-radius: 30px;
}
@media screen and (min-width: 1025px) {
  .header-btn {
    cursor: pointer;
    transition: 0.5s opacity;
  }
  .header-btn:hover {
    opacity: 0.7;
  }
  .header-btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 897px) {
  .header-btn {
    font-size: 3vw;
    padding: 0.3em 1em;
  }
}
.header-btn img {
  width: 17px;
  margin-right: 10px;
}
@media screen and (max-width: 897px) {
  .header-btn img {
    width: 3vw;
    margin-right: 1vw;
  }
}

/*--------------------------------------------------------------
# フォームスタイル
--------------------------------------------------------------*/
@keyframes blink {
  0% {
    border-color: #ff0000;
  }
  50% {
    border-color: #ff0000;
  }
  51% {
    border-color: transparent;
  }
  100% {
    border-color: transparent;
  }
}
.form {
  color: black;
  padding: 0 0 20px 0;
  overflow: hidden;
}
.form_ttl_img {
  display: block;
  margin: 0 auto;
  width: 35%;
}
@media screen and (max-width: 897px) {
  .form_ttl_img {
    width: 80%;
  }
}
.form__cnt {
  border-radius: 2.1875rem;
  border: 5px solid #3C2900;
  background: #FDFFEB;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 50px 0;
  padding: 20px;
}
@media screen and (max-width: 897px) {
  .form__cnt {
    padding: 15px 10px;
  }
}
.form__row {
  display: flex;
  font-size: 2.4rem;
}
@media screen and (max-width: 897px) {
  .form__row {
    display: block;
  }
}
.form__row-ttl {
  position: relative;
  width: 13em;
  padding: 1em 3.5em 1em 1em;
  font-weight: bold;
}
@media screen and (max-width: 897px) {
  .form__row-ttl {
    width: 100%;
    padding: 0.2em 0;
    font-size: 5.333vw;
    text-align: center;
    border-right: none;
  }
}
.form__row-required {
  position: absolute;
  top: 1.5em;
  right: 1em;
  padding: 0 0.3em;
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
  background: #fa6e31;
  border-radius: 100px;
}
@media screen and (max-width: 897px) {
  .form__row-required {
    top: 0.6em;
    font-size: 4.733vw;
  }
}
.form__row-option {
  position: absolute;
  top: 1.5em;
  right: 1em;
  padding: 0 0.3em;
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
  background: #aaa;
  border-radius: 100px;
}
@media screen and (max-width: 897px) {
  .form__row-option {
    top: 0.65em;
    font-size: 4.8vw;
  }
}
.form__row-cnt {
  width: calc(100% - 13em);
  margin: 0;
  padding: 1em;
}
@media screen and (max-width: 897px) {
  .form__row-cnt {
    width: 100%;
    padding: 1vw 5vw 5vw 5vw;
  }
}
@media screen and (max-width: 897px) {
  .form__row-cnt--address {
    padding: 5vw 5vw 5vw 10.5vw;
  }
}
.form__row--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
.form__row-supplement {
  font-size: 1.5rem;
}
.form__row-supplement i {
  margin-right: 0.3em;
  color: #F54E6E;
}
.form__caption {
  margin: 0.5em 0;
  font-size: 2rem;
}
@media screen and (max-width: 897px) {
  .form__caption {
    font-size: 3.6vw;
  }
}
.form__caption:last-child {
  margin-bottom: 0;
}
.form__caption--bold {
  font-weight: bold;
}
.form__caption i {
  margin-right: 0.3em;
  color: #fa6e31;
}
.form__caption--cat {
  position: relative;
  margin-top: 0;
}
@media screen and (max-width: 897px) {
  .form__caption--cat {
    font-size: 4.267vw;
  }
}
.form__allbtn [type=checkbox] {
  display: none;
}
.form__allbtn-txt {
  border-bottom: 2px solid blue;
  color: blue;
}
.form__allbtn-txt i {
  color: blue;
}
.form__row-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form__row-name:first-of-type {
  margin: 0 0 15px 0;
}
.form__row-name .form__caption {
  width: 25%;
}
@media screen and (max-width: 897px) {
  .form__row-name .form__caption {
    width: 60%;
  }
}

.form-category {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 897px) {
  .form-category {
    align-items: flex-start;
  }
}

.form-checkbox-list {
  flex-basis: 49%;
  margin-bottom: 5px;
  position: relative;
  margin-right: 4%;
}
@media screen and (max-width: 897px) {
  .form-checkbox-list {
    flex-basis: 50%;
    margin-bottom: 10px;
  }
  .form-checkbox-list.form-more {
    width: 100%;
  }
}
.form-checkbox-list [type=checkbox] {
  display: none;
}
.form-checkbox-list__checkbox {
  position: absolute;
  top: 53%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: #fff;
  border: 4px solid #3C2900;
  border-radius: 5px;
  content: "";
}
@media screen and (max-width: 897px) {
  .form-checkbox-list__checkbox {
    border: 3px solid #3C2900;
  }
}
.form-checkbox-list__checkbox.not-checked::before {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: 5px;
  border: 4px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
}
@media screen and (max-width: 897px) {
  .form-checkbox-list__checkbox.not-checked::before {
    border: 3px solid transparent;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
  }
}
[type=checkbox]:checked + .form-checkbox-list__checkbox::after {
  position: absolute;
  top: 54%;
  left: -19%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: #3C2900;
  border: 2px solid #3C2900;
  border-radius: 5px;
  content: "";
}
[type=checkbox]:checked + .form-checkbox-list__checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 15%;
  left: 53%;
  width: 14px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
  z-index: 50;
}
@media screen and (max-width: 897px) {
  [type=checkbox]:checked + .form-checkbox-list__checkbox::before {
    top: 4%;
  }
}
.form-checkbox-list__txt {
  padding-left: 1.7em;
  font-size: 1em;
  font-weight: bold;
}
@media screen and (max-width: 897px) {
  .form-checkbox-list__txt {
    padding-left: 1.8em;
    font-size: 4.5vw;
  }
}

.form-radio {
  position: relative;
  display: inline-block;
  margin: 10px 20px 10px 0;
  font-weight: bold;
}
@media screen and (max-width: 897px) {
  .form-radio {
    margin: 10px 10px 10px 0;
  }
}
.form-radio [type=radio] {
  display: none;
}
.form-radio__txt {
  padding: 0.5em 0 0.5em 1.8em;
}
@media screen and (max-width: 897px) {
  .form-radio__txt {
    font-size: 4.5vw;
  }
}
.form-radio__checkbox {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: #fff;
  border: 5px solid #3C2900;
  border-radius: 100px;
  content: "";
}
@media screen and (max-width: 897px) {
  .form-radio__checkbox {
    border: 4px solid #3C2900;
  }
}
[type=radio]:checked + .form-radio__checkbox::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(30%, -50%);
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  background: #3C2900;
  border-radius: 100px;
  content: "";
}
@media screen and (max-width: 897px) {
  [type=radio]:checked + .form-radio__checkbox::after {
    transform: translate(33%, -50%);
  }
}
.form-radio.not-checked::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border: 5px solid transparent;
  border-radius: 100px;
  animation: 1s linear infinite blink;
  pointer-events: none;
  content: "";
  z-index: 10;
}
@media screen and (max-width: 897px) {
  .form-radio.not-checked::before {
    border: 4px solid transparent;
  }
}
.form-radio-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.form-radio-list {
  display: grid;
  justify-items: center;
}
.form-radio-list:not(:nth-child(5n)) {
  margin-right: 2%;
}
@media screen and (max-width: 897px) {
  .form-radio-list {
    width: calc(100% / 3 - 3%);
    margin-bottom: 10px;
  }
  .form-radio-list.form-more {
    width: 100%;
  }
  .form-radio-list:not(:nth-child(5n)) {
    margin-right: 0;
  }
  .form-radio-list:not(:nth-child(3n)) {
    margin-right: 4%;
  }
  .form-radio-list:nth-child(4) {
    width: 100%;
    margin: 0;
  }
  .form-radio-list .last-radio-item {
    height: 18vw;
  }
}
.form-radio-list [type=radio] {
  display: none;
}
.form-radio-list__img {
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #aaa;
  padding: 0.8em;
  display: flex;
  justify-content: center;
  width: 100px;
  height: 100px;
  align-items: center;
}
@media screen and (max-width: 897px) {
  .form-radio-list__img {
    padding: 1.3rem;
    height: 27.3vw;
  }
}
.form-radio-list__img img {
  max-height: 100%;
}
.form-radio-list__img.not-checked::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 10px;
  border: 4px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
}
@media screen and (max-width: 897px) {
  .form-radio-list__img.not-checked::before {
    border-radius: 8px;
    border-width: 3px;
  }
}
[type=radio]:checked + .form-radio-list__img::before {
  animation: none;
}
[type=radio]:checked + .form-radio-list__img::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;
  background: url(/checked.svg) center/85% auto no-repeat, #fff;
  opacity: 0.8;
  content: "";
}
@media screen and (max-width: 897px) {
  [type=radio]:checked + .form-radio-list__img.last-radio-item::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    background: url(/checked.svg) center/15% auto no-repeat, #fff;
    opacity: 0.6;
    content: "";
  }
  .form-radio-list__img.last-radio-item p {
    font-size: 4vw;
    font-weight: bold;
  }
}
.form-radio-list__txt {
  display: block;
  margin-top: 0.5em;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  width: fit-content;
}
@media screen and (max-width: 897px) {
  .form-radio-list__txt {
    font-size: 4vw;
  }
}

.form-select {
  position: relative;
}
.form-select select {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding: 0 45px 0 20px;
  color: inherit;
  font-size: 2rem;
  font-family: inherit;
  line-height: inherit;
  background-color: #fff;
  background-image: url(/assets/top/select_bg-1b5a9170249c533ca8c4f00e6f501423436bee88a5a6805ede341f18b59887ec.svg), url(/assets/top/icon_valid_success-984a794a58bf29b61ef59284efe63527e3dbf6bc22db2a94ca597397f26a575b.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px 24px, 0;
  border: 4px #3C2900 solid;
  border-radius: 30px;
  appearance: none;
}
@media screen and (max-width: 897px) {
  .form-select select {
    height: 50px;
    font-size: 4.333vw;
    border: 3px #3C2900 solid;
  }
}
.form-select select:focus {
  border-color: #3C2900;
  outline: none;
}
.form-select select.form-valid {
  background-size: 0, 24px 24px;
}
.form-select__block {
  width: 60%;
}
@media screen and (max-width: 897px) {
  .form-select__block {
    width: 100%;
  }
}
.form-select.not-checked::before {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 30px;
  border: 4px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
  pointer-events: none;
}
@media screen and (max-width: 897px) {
  .form-select.not-checked::before {
    border: 3px solid transparent;
  }
}

.select-file {
  display: grid;
  align-content: center;
  width: 80%;
  border: 3px solid #3C2900;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1.8rem;
  padding: 3px 30px 3px 20px;
  background-color: #fff;
  background-image: url(/assets/top/select_bg-1b5a9170249c533ca8c4f00e6f501423436bee88a5a6805ede341f18b59887ec.svg), url(/assets/top/icon_valid_success-984a794a58bf29b61ef59284efe63527e3dbf6bc22db2a94ca597397f26a575b.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px 20px, 0;
  position: relative;
}
@media screen and (max-width: 897px) {
  .select-file {
    font-size: 4.333vw;
    border: 3px #3C2900 solid;
  }
}
.select-file.form-valid {
  background-size: 0, 20px 20px;
}
.select-file.not-checked::before {
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 20px;
  border: 3px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
  pointer-events: none;
}

.clear-file {
  display: grid;
  align-content: center;
  width: 20%;
  height: fit-content;
  background-color: #b54d4d;
  border-radius: 4px;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  font-size: 1.3rem;
  padding: 3px 0;
}

.form-address {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 897px) {
  .form-address {
    position: relative;
  }
}
.form-address:last-child {
  margin-bottom: 0;
}
.form-address__ttl {
  width: 150px;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 897px) {
  .form-address__ttl {
    width: 100%;
  }
}
.form-address__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form-address__zip {
  width: 300px;
}
@media screen and (max-width: 897px) {
  .form-address__zip {
    width: 100%;
    margin-right: 4vw;
    margin-left: -1em;
    line-height: 0;
  }
  .form-address__zip .form-input {
    padding-left: 2.3em;
    padding-right: 5px;
  }
}
@media screen and (max-width: 897px) {
  .form-address__zip-unclear {
    display: grid;
    place-items: center;
    text-align: center;
  }
}
.form-address__mark {
  position: absolute;
  top: 16%;
  left: 6%;
  margin: auto;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 897px) {
  .form-address__mark {
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    width: 1em;
    height: fit-content;
    z-index: 1;
    font-size: 5vw;
  }
}
.form-address__find, .form-address__back {
  font-size: 1.8rem;
  color: #000;
  text-decoration: underline;
  white-space: nowrap;
}
@media screen and (max-width: 897px) {
  .form-address__find, .form-address__back {
    font-size: 3.733vw;
  }
}
.form-address__back {
  display: none;
}
.form-address__cnt {
  flex: 1;
}
.form-address__zip, .form-address__cnt {
  position: relative;
}
.form-address__zip.not-checked::before, .form-address__cnt.not-checked::before {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 30px;
  border: 4px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
  pointer-events: none;
  z-index: 1;
}
.form-address__zipcode {
  margin: 0;
}

.break-on-mobile {
  display: inline;
}

@media (max-width: 768px) {
  .break-on-mobile {
    display: block;
  }
}
.form-input {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding: 0 45px 0 20px;
  color: inherit;
  font-size: 2rem;
  font-family: inherit;
  line-height: inherit;
  background-color: #fff;
  background-image: none, url(/assets/top/icon_valid_success-984a794a58bf29b61ef59284efe63527e3dbf6bc22db2a94ca597397f26a575b.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px 24px, 0;
  border: 4px #3C2900 solid;
  border-radius: 30px;
  appearance: none;
}
@media screen and (max-width: 897px) {
  .form-input {
    font-size: 4.333vw;
    border: 3px #3C2900 solid;
    height: 50px;
  }
}
.form-input:focus {
  outline: none;
}
.form-input.not-checked::before {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 30px;
  border: 4px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
  pointer-events: none;
}
.form-input.form-valid {
  background-size: 0, 24px 24px;
}

.form-username,
.form-userkana {
  position: relative;
}
.form-username.not-checked::before,
.form-userkana.not-checked::before {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 30px;
  border: 4px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
  pointer-events: none;
}
@media screen and (max-width: 897px) {
  .form-username.not-checked::before,
  .form-userkana.not-checked::before {
    border: 3px solid transparent;
  }
}

.form-input#zip_cd {
  position: relative;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 897px) {
  .form-input#zip_cd {
    padding: 0 0 0 30px;
  }
}

.form-tel,
.form-email {
  position: relative;
}
.form-tel.not-checked::before,
.form-email.not-checked::before {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 30px;
  border: 4px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
  pointer-events: none;
}
@media screen and (max-width: 897px) {
  .form-tel.not-checked::before,
  .form-email.not-checked::before {
    border: 3px solid transparent;
  }
}
.form-tel.form-valid,
.form-email.form-valid {
  background-size: 0, 24px 24px;
}

.form-group--inline .form-radio {
  display: inline-block;
  margin-right: 2em;
}

.form-valid__error {
  position: relative;
}
.form-valid__error:not(.not_error_display) select, .form-valid__error:not(.not_error_display) [type=text], .form-valid__error:not(.not_error_display) [type=tel], .form-valid__error:not(.not_error_display) [type=email], .form-valid__error:not(.not_error_display) [type=number] {
  border-color: #e74c3c;
}
.form-valid__error:not(.not_error_display).form-group {
  outline: 2px solid #dc3545;
}
.form-valid__error .form-error {
  position: absolute;
  bottom: calc(100% + 6px);
  margin: 0;
  padding: 0 0.5em;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  white-space: nowrap;
  background: #e74c3c;
  border: 2px #c0392b solid;
  border-radius: 4px;
  opacity: 0.85;
}
.form-valid__error .form-error::before {
  position: absolute;
  top: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-color: #c0392b transparent transparent transparent;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  content: "";
}
.form-valid__error .form-error::after {
  position: absolute;
  top: 100%;
  left: 18px;
  width: 0;
  height: 0;
  border-color: #e74c3c transparent transparent transparent;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  content: "";
}
.form-valid__error.not_error_display .form-error {
  display: none;
}

.form-valid__success select {
  border-color: #39d300;
  background-size: 0, 30px 30px;
}
.form-valid__success .form-input {
  border-color: #39d300;
  background-size: 30px 30px;
}

.cBtn-beneath {
  margin: 100px 0 0 0;
  display: none;
}
@media screen and (max-width: 897px) {
  .cBtn-beneath {
    margin: 20px 0 0 0;
  }
}
.cBtn-beneath__text {
  display: grid;
  place-items: center;
  background-color: white;
  border: solid 4px black;
  font-weight: bold;
  font-size: 2.3rem;
  text-align: center;
  padding: 1em 0;
  margin: 0 0 3em 0;
  position: relative;
}
@media screen and (max-width: 897px) {
  .cBtn-beneath__text {
    font-size: 3.5vw;
  }
}
.cBtn-beneath__text br {
  display: none;
}
@media screen and (max-width: 897px) {
  .cBtn-beneath__text br {
    display: block;
  }
}
.cBtn-beneath__text::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: -55%;
  left: 0;
  margin: auto;
  clip-path: polygon(0 0, 50% 55%, 100% 0);
  background-color: #000;
  width: 2em;
  height: 2em;
}
@media screen and (max-width: 897px) {
  .cBtn-beneath__text::before {
    bottom: -60%;
    width: 3em;
    height: 3em;
  }
}

.agreement__check {
  display: block;
  margin-top: 1em;
  cursor: pointer;
  transition: 0.5s opacity;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (max-width: 897px) {
  .agreement__check {
    font-size: 3.5vw;
  }
}
.agreement [type=checkbox] {
  display: none;
}
.agreement__checkbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: #fff;
  border: 2px solid #a92e2c;
  border-radius: 5px;
  content: "";
}
.agreement__checkbox.not-checked::before {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 5px;
  border: 3px solid transparent;
  animation: 1s linear infinite blink;
  content: "";
}
[type=checkbox]:checked + .agreement__checkbox::after {
  position: absolute;
  top: 50%;
  left: -12%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: #a92e2c;
  border-radius: 5px;
  content: "";
}
[type=checkbox]:checked + .agreement__checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  width: 14px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
  z-index: 50;
}

.photo-popup {
  display: none;
  /* 最初はポップアップを非表示にする */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  /* 上層に表示 */
  width: 25%;
  max-width: 500px;
  border-radius: 0.7em 0.7em 0.5em 0.5em;
}
@media screen and (max-width: 897px) {
  .photo-popup {
    width: 90%;
    max-width: auto;
  }
}
.photo-popup__ttl {
  background-color: #C3D500;
  border-radius: 0.5em 0.5em 0 0;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.5em 0;
}
.photo-popup__inner {
  display: grid;
  justify-content: center;
  padding: 2em;
  background-color: white;
  border-radius: 0 0 0.5em 0.5em;
}
.photo-popup__img {
  max-height: 120px;
  object-fit: scale-down;
  margin: 0 auto;
}

.select-photo-btn {
  background-color: #FF552C;
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 3em;
  padding: 0.5em 3em;
  margin: 2em auto 0 auto;
  width: fit-content;
}

.cancel-btn {
  background-color: #aaa;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 3em;
  padding: 0.5em 1em;
  width: fit-content;
  margin: 1em auto 0 auto;
}

#popup1 {
  /* popup1の特別なスタイルをここに書く */
}

#popup2 {
  /* popup2の特別なスタイルをここに書く */
}

#popup3 {
  /* popup3の特別なスタイルをここに書く */
}

.footer {
  border-radius: 30px 30px 0 0;
  border: 5px solid #FDFFEB;
  background: #3C2900;
  width: 100%;
  color: #FDFFEB;
  font-family: Hina Mincho;
  text-align: center;
  padding: 30px 0;
}
.footer__tel {
  margin: 30px 0 0 0;
}
.footer__business-hours {
  margin: 10px 0 0 0;
}
.footer__company-info {
  margin: 20px auto;
  padding: 0 0 0 30px;
  display: flex;
  gap: 0 30px;
  width: fit-content;
  line-height: 1.2em;
}
.footer__company-info--link {
  color: #FDFFEB;
}
.footer__company-info--link:first-of-type {
  border-right: solid 1px #FDFFEB;
  padding: 0 30px 0 0;
}

/*--------------------------------------------------------------
# ボタンスタイル
--------------------------------------------------------------*/
.cvBtn__submit,
.linkBtn__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.3em;
  margin: 0 auto;
  font-family: "Arial", "メイリオ", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-weight: bold;
  font-size: 4.5rem;
  text-decoration: none;
  color: #fff;
  max-width: 600px;
  background: #F56F00;
  border: 5px solid #fff;
  border-radius: 100px;
  appearance: none;
}
@media screen and (max-width: 897px) {
  .cvBtn__submit,
  .linkBtn__submit {
    width: 90%;
    height: 2.7em;
    font-size: 6vw;
    border: 3px solid #fff;
    box-shadow: 0 5px 0 0 #6e5300;
  }
}
.cvBtn__submit:not(:disabled):hover,
.linkBtn__submit:not(:disabled):hover {
  box-shadow: 0 1px 0 #333;
  transform: translateY(3px);
}
.cvBtn__submit:disabled,
.linkBtn__submit:disabled {
  opacity: 0.5;
}
.cvBtn__submit:focus,
.linkBtn__submit:focus {
  outline: none;
}
.cvBtn__circle,
.linkBtn__circle {
  display: inline;
  width: 1.3em;
  height: 1.3em;
  margin-left: 0.5em;
  background-color: #F56F00;
  border-radius: 50%;
  box-shadow: inset 1px 2px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
  content: "";
  position: relative;
}
.cvBtn__circle::before,
.linkBtn__circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: white;
  line-height: 1;
  width: 0.45em;
  height: 0.45em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  top: 35%;
  right: 32%;
}
.cvBtn__submit-let,
.linkBtn__submit-let {
  display: grid;
  place-items: center;
  background: white;
  width: 2.3em;
  height: 2.3em;
  font-size: 2.5rem;
  padding: 0.3em;
  color: black;
  line-height: 1;
  border-radius: 100%;
}
@media screen and (max-width: 897px) {
  .cvBtn__submit-let,
  .linkBtn__submit-let {
    font-size: 4vw;
  }
}
.cvBtn__submit-let:not(:first-child),
.linkBtn__submit-let:not(:first-child) {
  margin-left: -0.7em;
}
.cvBtn__submit-let + .cvBtn__submit-txt, .cvBtn__submit-let + .linkBtn__submit-txt,
.linkBtn__submit-let + .cvBtn__submit-txt,
.linkBtn__submit-let + .linkBtn__submit-txt {
  margin-left: 0.5em;
}

.cvBtn__submit {
  background: #f46f01;
  box-shadow: 0 7px 0 0 black;
  margin: 30px auto 0 auto;
}
.cvBtn__circle {
  display: inline;
  width: 1.3em;
  height: 1.3em;
  margin-left: 0.5em;
  background-color: #f46f01;
  border-radius: 50%;
  box-shadow: inset 1px 2px 8px rgb(0, 0, 0);
  text-align: center;
  content: "";
  position: relative;
}
.cvBtn__submit-let {
  background: #fffb00;
  color: black;
}

.linkBtn__submit {
  font-size: 3.5rem;
  max-width: 480px;
  box-shadow: 0 4px 0 0.5 black;
  border: 3px solid #fff;
}
@media screen and (max-width: 897px) {
  .linkBtn__submit {
    font-size: 2rem;
    width: 78vw;
    max-width: 350px;
  }
}
.linkBtn__submit-let {
  display: grid;
  place-items: center;
  background: white;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  padding: 0.3em;
  color: black;
  line-height: 1;
  border-radius: 100%;
}
@media screen and (max-width: 897px) {
  .linkBtn__submit-let {
    font-size: 2.1rem;
  }
}
.linkBtn__submit-let:not(:first-child) {
  margin-left: -0.5em;
}
.linkBtn__submit-let + .cvBtn__submit-txt, .linkBtn__submit-let + .linkBtn__submit-txt {
  margin-left: 0.5em;
}

body {
  user-select: none;
  background-color: #c3d600;
  z-index: 1;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 897px) {
  body {
    width: 100vw;
  }
}

.wave {
  position: relative;
}
.wave_bg {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0;
}
@media screen and (max-width: 897px) {
  .wave_bg {
    display: none;
  }
}
.wave_bg_sp {
  display: none;
}
@media screen and (max-width: 897px) {
  .wave_bg_sp {
    display: block;
    width: 105%;
    position: absolute;
    bottom: -9%;
    left: 0;
  }
}
.wave_rotate_bg {
  width: 100%;
  transform: rotate(180deg);
  margin-top: -1px;
}

.fv {
  height: 950px;
  position: relative;
}
@media screen and (max-width: 897px) {
  .fv {
    height: fit-content;
    height: 750px;
    padding-bottom: 15vw;
  }
}
.fv:before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 25vw;
  height: 100%;
  z-index: -1;
  content: "";
  background: url(/assets/top/lp/mv_cushioning-cfdc63312f3f7423792a747fae47a4527419df9d2be992f359d8ee53c4dcc77b.svg) no-repeat;
}
@media screen and (max-width: 897px) {
  .fv:before {
    content: none;
  }
}
.fv:after {
  position: absolute;
  right: -20px;
  top: 0;
  content: "";
  width: 50vw;
  height: 100%;
  z-index: -2;
  background: url(/assets/top/lp/mv_bg-872e27bb7a4c14bacc570c53169454640d1e61a27bfe2aa52f6a7158c3beebb3.svg) top left/auto 100% repeat;
}
@media screen and (max-width: 897px) {
  .fv:after {
    width: 100vw;
    top: 15vw;
    right: 0;
    background: url(/assets/top/lp/mv_bg_sp-bed6134f4b9ad0377194a23e2fbde513d33ec3df6917fef1cee27cf8e7383f59.png) top left/110% auto no-repeat;
  }
}
.fv__header {
  height: 100px;
  display: flex;
  align-items: center;
}
.fv__header img {
  height: 30px;
  width: auto;
}
@media screen and (max-width: 897px) {
  .fv__header img {
    height: 50px;
    width: 40vw;
  }
}
@media screen and (max-width: 897px) {
  .fv__header {
    height: 15vw;
    align-items: end;
    justify-content: center;
  }
}
.fv_main {
  width: 100%;
  z-index: 100;
  padding-top: 120px;
  padding: 90px 0 0 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media screen and (max-width: 897px) {
  .fv_main {
    flex-direction: column;
    justify-content: inherit;
    padding: 5vw 0 0 0;
  }
}
.fv_main--txt {
  display: block;
  max-width: 557px;
  max-height: 372px;
  margin: 0 auto;
}
@media screen and (max-width: 897px) {
  .fv_main--txt {
    height: fit-content;
    max-height: none;
  }
}
.fv_main--txt img {
  width: 100%;
  height: auto;
}
.fv_main--watch {
  display: block;
  max-width: 557px;
  max-height: 372px;
  padding-left: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 897px) {
  .fv_main--watch {
    padding: 10vw 5vw 0;
    max-height: none;
  }
}
.fv_main--watch img {
  width: 100%;
  height: auto;
}
.fv_main_sp {
  display: none;
  width: 100%;
}
@media screen and (max-width: 897px) {
  .fv_main_sp {
    display: block;
    position: absolute;
    top: 28%;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.fv__btn {
  margin: 70px 0 0;
  z-index: 100;
}
@media screen and (max-width: 897px) {
  .fv__btn {
    margin: 2vw 0 0 0;
  }
}

.container {
  max-width: 1280px !important;
  width: 100vw;
  margin: 0 auto;
}
@media screen and (max-width: 897px) {
  .container {
    width: 100% !important;
  }
}

.reason .container {
  padding: 10vw 5vw 0 5vw;
}

.reason {
  background-color: #fdfeeb;
}
@media screen and (max-width: 897px) {
  .reason {
    padding: 50px 10px 30px 10px;
  }
}
.reason__heading {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 897px) {
  .reason__heading {
    font-size: 2.5rem;
  }
}
.reason__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
}
@media screen and (max-width: 897px) {
  .reason__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reason__item {
  margin: 50px auto;
}
@media screen and (max-width: 897px) {
  .reason__item {
    margin: 50px auto 20px auto;
  }
}
.reason__ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 0.5em;
}
.reason__ttl--num {
  display: grid;
  place-items: center;
}
.reason__ttl--txt {
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0 0 0.5em;
}
.reason__content {
  font-size: 1.6rem;
  text-align: left;
  margin: 30px 0 0 0;
  padding: 0 0 20px 0;
}
@media screen and (max-width: 897px) {
  .reason__content {
    margin: 30px 0 15px 0;
  }
}

.shop {
  padding: 100px 0 200px 0;
  background-color: #c3d600;
}
@media screen and (max-width: 897px) {
  .shop {
    padding: 75px 0 120px 0;
  }
}
.shop__heading {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
.shop__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 50px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 897px) {
  .shop__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 0;
  }
}
.shop__item {
  text-align: center;
  background-color: #fdfeeb;
  padding: 30px;
  border-radius: 30px;
}
.shop__name {
  font-size: 2.5rem;
  font-weight: bold;
}
.shop__img {
  margin: 20px 0 0 0;
}

.pattern {
  background-color: #fdfeeb;
}
@media screen and (max-width: 897px) {
  .pattern {
    padding: 50px 0;
  }
}
.pattern__heading {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
.pattern__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 50px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 897px) {
  .pattern__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 0;
  }
}
.pattern__item {
  text-align: center;
}
.pattern__name {
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
.pattern__img {
  margin: 20px 0 0 0;
  width: 500px;
  height: 210px;
  overflow: hidden;
  border-radius: 20px;
  border: solid 5px #C3D600;
}
.pattern__txt {
  margin: 20px 0 0 0;
}

.case {
  width: 100vw;
  padding: 100px 0 50px 0;
  background-color: #c3d600;
  overflow: hidden;
}
@media screen and (max-width: 897px) {
  .case {
    width: 100%;
  }
}
.case__heading {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
.case__item {
  width: 350px !important;
}
@media screen and (max-width: 897px) {
  .case__item {
    width: 90% !important;
    display: block !important;
    margin: 0 auto !important;
  }
}
.case__img img {
  width: 350px;
  height: 240px;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 897px) {
  .case__img img {
    border-radius: 20px 20px 0 0;
  }
}
.case__inner {
  background-color: #FDFFEB;
  color: #3C2900;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 0 0 2em 2em;
  padding: 2em 1.5em;
}
.case__container {
  display: grid;
  gap: 0.3em 0;
}
.case__info {
  display: flex;
  justify-content: center;
  gap: 0 1em;
  width: 100%;
  white-space: nowrap;
}
.case__info--ttl {
  background-color: #c3d600;
  width: 8em;
  font-size: 1rem;
  border-radius: 10px;
  padding: 0.2em 0;
  text-align: center;
}
.case__info--txt {
  font-size: 1.3rem;
  width: 7em;
}
.case__amount {
  text-align: center;
  font-size: 2rem;
  margin: 30px auto 0 auto;
}
.case__amount--item, .case__amount--pit {
  border-radius: 7px;
  width: fit-content;
  margin: 0 auto;
  padding: 2px 40px;
}
.case__amount--item {
  border: solid 1px #3C2900;
  margin: 0 auto 10px auto;
}
.case__amount--pit {
  background-color: #3C2900;
  color: white;
  position: relative;
}
.case__checkmark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -12px;
  margin: auto;
}

.step {
  border-radius: 25px;
  border: 8px solid #FDFFEB;
  background: #3C2900;
  color: white;
  font-weight: bold;
  max-width: 1280px;
  margin: 200px auto 100px auto;
  padding: 50px 0;
}
@media screen and (max-width: 897px) {
  .step {
    margin: 100px 10px 100px 10px;
  }
}
.step_ttl {
  display: block;
  margin: 0 auto;
}
.step__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 50px auto 0 auto;
  padding: 0 50px;
  gap: 0 50px;
}
@media screen and (max-width: 897px) {
  .step__inner {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 0 0 10px;
  }
}
.step__item {
  display: grid;
}
@media screen and (max-width: 897px) {
  .step__item {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 0 70px 0;
  }
}
.step__item--ttl {
  font-size: 2.5rem;
  line-height: 1.2em;
  margin: 0.3em 0;
}
@media screen and (max-width: 897px) {
  .step__item--ttl {
    font-size: 2rem;
  }
}
.step__item--txt {
  font-size: 1.3rem;
}
.step__item--wrapper {
  height: 9em;
}
.step_img {
  display: block;
  margin: 0 auto;
}

.slick-slide {
  margin-right: 1.2vw !important;
  margin-left: 1.2vw !important;
}

.slick-track {
  padding-top: 4em;
  overflow: hidden;
}

@media screen and (max-width: 897px) {
  .Case .slick-track {
    padding-top: 1.5em;
  }
}

.slick-list {
  overflow: initial;
}

.slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fa6e31;
  position: absolute;
  top: 50%;
  right: 10%;
  z-index: 1;
}
@media screen and (max-width: 897px) {
  .slick-arrow {
    top: 60%;
  }
}

.slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  opacity: 1;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.8;
}

.slick-next {
  right: 10% !important;
}
@media screen and (max-width: 897px) {
  .slick-next {
    right: 5% !important;
  }
}

.slick-prev {
  left: 10% !important;
}
@media screen and (max-width: 897px) {
  .slick-prev {
    left: 5% !important;
  }
}

.slick-next:before {
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slick-prev:before {
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.slick-dots {
  bottom: -3em;
}

.slick-dots button {
  border-radius: 50%;
}

.slick-dots li button:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background-color: #fff !important;
  opacity: inherit !important;
}

.slick-dots .slick-active button:before {
  background: #fa6e31 !important;
  opacity: inherit !important;
}

.topForm {
  padding: 0 10px 100px 10px;
}
.topForm__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.topForm__prologue {
  position: relative;
  padding: 2em 0 0 0;
  font-size: 4.6rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: #3C2900;
}
@media screen and (max-width: 897px) {
  .topForm__prologue {
    margin-bottom: 0;
    font-size: 6.33vw;
  }
}
.topForm__prologue-acc {
  display: inline-block;
  margin-right: 0.3em;
  padding: 0 0.6em;
  color: white;
  background: orange;
}

/*--------------------------------------------------------------
# ボタンスタイル
--------------------------------------------------------------*/
.cvBtn {
  background: rgb(255, 85, 26);
  border-radius: 2em;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  border: none;
  margin: 1em auto 0;
  display: block;
  padding: 0.5em 0;
  box-shadow: 0 3px rgb(181, 103, 6);
  width: 350px;
}
@media screen and (max-width: 897px) {
  .cvBtn {
    margin: 1em auto 0 auto;
    width: 80%;
    padding: 0.5em 0;
  }
}

.cvBtn:disabled {
  background: rgba(255, 85, 26, 0.4);
  box-shadow: 0 3px rgba(181, 103, 6, 0.4);
  cursor: not-allowed;
}

.linkBtn {
  background: #FF551A;
  border-radius: 2em;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  border: none;
  margin: 0 auto;
  display: block;
  padding: 0.5em 0;
  width: 400px;
  box-shadow: 0 3px #b56706;
  text-align: center;
}
@media screen and (max-width: 897px) {
  .linkBtn {
    width: 80%;
    margin: 1em auto 0 auto;
  }
}

.ctaBtn {
  background-color: rgba(173, 200, 10, 0.3);
  padding: 0.7em;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.ctaBtn__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1em;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 897px) {
  .ctaBtn__inner {
    max-width: none;
  }
}

.ctaBtn1,
.ctaBtn2 {
  color: white;
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 1em 0;
  border-radius: 0.3em;
  opacity: none;
}

.ctaBtn1 {
  background-color: #004831;
  box-shadow: 0 3px #002217;
}
.ctaBtn1 a {
  color: white;
}

.ctaBtn2 {
  background-color: #ff8a00;
  color: white;
  box-shadow: 0 3px #d17000;
}
.ctaBtn2 a {
  color: white;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.shiny-btn {
  position: relative;
  overflow: hidden;
}

.shiny-btn::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hidden {
  display: none;
}
