@charset "UTF-8";
body {
  font-family: YuGothic Medium, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "Meiryo UI", sans-serif;
  overflow-x: hidden;
}

*,
figure {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
a.hover:hover {
  text-decoration: underline;
}

ul,
li {
  list-style: none;
}

.bold-ja {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "Meiryo UI", sans-serif;
  font-weight: bold;
}

.cata_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cata_flex.-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cata_flex.-x_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cata_flex.-y_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}

.wrapper {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1180px) {
  .wrapper {
    max-width: 91.3%;
  }
}

/* ===============================================
# header
=============================================== */
#header {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  #header {
    padding: 4.35% 4.35% 30px;
  }
}
@media screen and (max-width: 767px) {
  #header .sns_list {
    margin-top: 24px;
  }
}

@media screen and (max-width: 1080px) {
  .h_logo {
    max-width: 180px;
    margin-right: 10px;
  }
}

.h_right .flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h_official {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #999;
}
@media screen and (max-width: 1080px) {
  .h_official {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .h_official {
    font-size: 13px;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}
.h_official a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.h_official span {
  margin: 0 0.8em;
}
@media screen and (max-width: 767px) {
  .h_official span {
    margin: 0 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .h_official .ico {
    width: 30px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .h_official .window {
    width: 14px;
    height: auto;
  }
}

.sns_list li {
  margin-left: min(1.66vw, 25px);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.sns_list li:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
@media screen and (max-width: 1080px) {
  .sns_list li :not(:last-child) {
    width: 30px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .sns_list li {
    width: 7.24vw;
  }
}

.main {
}

/* ===============================================
# form
=============================================== */
:root {
  --orange: #ffb018;
  --black: #141414;
}

.form {
  background: #f8f8f8;
  padding-bottom: 100px;
  @media screen and (max-width: 767px) {
    padding-bottom: 14.49vw;
  }
}
.form .h2 {
  text-align: center;
  font-size: 28px;
  padding-top: 88px;
  margin-bottom: 88px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form .h2 {
    padding-top: 58px;
    margin-bottom: 58px;
  }
}
.form .h2:before {
  content: "";
  width: 1px;
  height: 60px;
  background: var(--black);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: tranlate(-50%, 0);
  transform: tranlate(-50%, 0);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-animation: 2s ease-in-out infinite ttlLine;
  animation: 2s ease-in-out infinite ttlLine;
}
@media screen and (max-width: 767px) {
  .form .h2:before {
    height: 40px;
  }
}
@-webkit-keyframes ttlLine {
  0% {
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    height: 60px;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ttlLine {
  0% {
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    height: 60px;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes ttlLine {
    0% {
      opacity: 0;
      height: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      height: 40px;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes ttlLine {
    0% {
      opacity: 0;
      height: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      height: 40px;
    }
    100% {
      opacity: 0;
    }
  }
}
.form .explain {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .form .explain {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.form .explain li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.7;
}
.form .explain .orange {
  color: #ff7814;
}
.form .form_wrap {
  background: #fff;
  border-radius: 20px;
  padding: 60px 100px 88px;
}
@media screen and (max-width: 960px) {
  .form .form_wrap {
    padding: 20px 3% 44px;
    box-shadow: 5.59px 5.59px 5.59px 0 rgba(0, 0, 0, 0.05);
  }
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  padding: 0.7em;
  display: inline-block;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 960px) {
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"] {
    max-width: 100%;
  }
}
.form input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  border: 1px solid #999;
  border-radius: 1em;
  accent-color: var(--orange);
  background-color: #fff;
  margin-bottom: -0.2em;
}
.form input[type="radio"]:checked {
  background: #fff;
  accent-color: var(--orange);
  position: relative;
}
.form input[type="radio"]:checked:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #ff7814;
  border-radius: 0.5em;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.form textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  padding: 0.7em;
  width: 100%;
  height: 160px;
  width: 100%;
  max-width: 500px;
}
.form dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 45px 0;
  border-bottom: 1px solid #ddd;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .form dl div {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .form dl div {
    padding: 20px 0;
  }
}
.form dl div:last-child {
  border-bottom: none;
}
.form dl dt {
  padding: 0 1em 0 6.4%;
  min-width: 338px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .form dl dt {
    min-width: unset;
    max-width: 200px;
    width: 100%;
    padding: 0 1em 0 0;
  }
}
@media screen and (max-width: 960px) {
  .form dl dt {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .form dl dt {
    min-width: unset;
    font-size: 16px;
  }
}
.form dl dt:before {
  content: "任意";
  height: 21px;
  line-height: 21px;
  text-align: center;
  width: 48px;
  background: #8a8b8b;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  margin-top: 0.3em;
  margin-right: 0.4em;
  display: block;
}
@media screen and (max-width: 767px) {
  .form dl dt:before {
    width: 40px;
    height: 18px;
    line-height: 18px;
    font-size: 13px;
  }
}
.form dl dt.required:before {
  content: "必須";
  background: #ff7814;
}
.form dl dd {
  width: calc(100% - 338px);
}
@media screen and (max-width: 960px) {
  .form dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .form dl dd {
    width: 100%;
  }
}
.form dl .wpcf7-list-item {
  color: #595757;
  margin-left: 0;
  width: 50%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .form dl .wpcf7-list-item {
    font-size: 15px;
    width: 42%;
  }
  .form dl .wpcf7-list-item:nth-child(odd) {
    width: 58%;
  }
}
.form .privacy_txt {
  line-height: 1.8;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .form .privacy_txt {
    font-size: 14px;
  }
}
.form .zipcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .form .zipcode {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.form .zipcode span {
  display: block;
}
.form .zipcode input[type="text"] {
  width: 100px;
}
.form .zipcode .input_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form .zipcode .input_wrap span {
  display: block;
  margin: auto;
}
.form .zipcode .ziptxt {
  color: #595757;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .form .zipcode .ziptxt {
    width: 100%;
    margin-top: 0.5em;
    font-size: 13px;
  }
}
.form .zipcode .mark,
.form .zipcode input[type="text"] {
  margin-right: 0.3em;
}
.form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form .wpcf7-radio .wpcf7-list-item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-radio .wpcf7-list-item {
    font-size: 15px;
    width: 42%;
  }
  .form .wpcf7-radio .wpcf7-list-item:nth-child(odd) {
    width: 58%;
  }
}
.form .flame {
  background: #fafafa;
  border-radius: 5px;
  border: 1px solid #b4b5b5;
  height: 228px;
  overflow-y: scroll;
  padding: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .form .flame {
    padding: 20px;
    margin-bottom: 28px;
  }
}
.form .flame h2 {
  font-size: 20px;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .form .flame h2 {
    font-size: 16px;
  }
}
.form .flame p {
  color: #595757;
  line-height: 1.8;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .form .flame p {
    font-size: 14px;
  }
}
.form .consent {
  max-width: 430px;
  margin: 0 auto 45px;
  background: #f0f0f0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form .consent {
    margin: 0 auto 28px;
  }
}
.form .consent input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  width: 19px;
  height: 19px;
  border: 1px solid #ddd;
  border-radius: 0;
  margin-bottom: -3px;
}
.form .consent input[type="checkbox"]:checked {
  background: #ff7814;
  border: 1px solid #ff7814;
  position: relative;
}
.form .consent input[type="checkbox"]:checked:after {
  display: block;
  content: "";
  width: 15px;
  height: 8px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}
.form .consent label {
  margin: 0 auto;
  display: block;
  max-width: 430px;
  width: 430px;
  color: #595757;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  padding: 0.8em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form .consent label {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.form .consent .wpcf7-list-item {
  margin-left: 0;
}
.form .sbmit_btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  margin: 0 auto;
  display: block;
  background: #1f3134;
  border-radius: 5px;
  color: #fff;
  max-width: 430px;
  font-size: 18px;
  text-align: center;
  position: relative;
}
.form .sbmit_btn:after {
  content: "";
  background: url(../img/arrow.svg) no-repeat center center/contain;
  width: 11px;
  height: 14px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-18px, -50%);
  transform: translate(-18px, -50%);
}
.form .sbmit_btn input[type="submit"] {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "Meiryo UI", sans-serif;
  font-weight: bold;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  padding: 0.8em;
  width: 100%;
}
.form .wpcf7-spinner {
  visibility: hidden;
  display: none !important;
}

/* ===============================================
# footer
=============================================== */
.footer {
  background: var(--orange);
  padding: 44px 0 1em;
  text-align: center;
  @media screen and (max-width: 767px) {
  }
}
.footer .logo {
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .footer .logo {
    max-width: 300px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 36px;
  }
}
.footer .sns_list {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer .sns_list {
    margin-bottom: 4.83vw;
    gap: 2.65vw;
  }
}
.footer .copyright {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 2.41vw;
  }
}

.main .thanks {
  min-height: 50vh;
}
.main .thanks h2 {
  font-size: 24px;
  margin-bottom: 1em;
}
.main .thanks p {
  margin-bottom: 2em;
  line-height: 2;
}
.main .thanks a {
  cursor: pointer;
  margin: 0 auto;
  display: block;
  background: var(--orange);
  border-radius: 5px;
  color: #fff;
  max-width: 430px;
  font-size: 18px;
  text-align: center;
  padding: 0.8em;
}

/* Swiperの矢印のスタイルをカスタマイズ */
.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background-size: 100%; /* 矢印のサイズを調整 */
  z-index: 10;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 0;
  display: none;
}

.swiper-button-prev {
  background: url("../img/arrow_prev.svg") no-repeat center; /* 矢印の画像を指定 */
  left: -20px !important;
}

.swiper-button-next {
  background: url("../img/arrow_next.svg") no-repeat center; /* 矢印の画像を指定 */
  right: -20px !important;
}

/* デフォルトでSwiperのページネーション（ドット）を非表示に */
.swiper-pagination {
  display: none;
}

/* 768px以上でSwiperの矢印を非表示に */
@media (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
/*# sourceMappingURL=catalog.css.map */
