@charset "utf-8";

/*===========================================
 reset 触らない
========================================== */
*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

progress {
  display: inline-block;
}

small {
  font-size: 80%;
  font-size: 0.8em;
}

[hidden] {
  display: none;
}

[unselectable] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
  outline-offset: -0.125rem;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*===========================================
 base プロジェクトによって編集可
========================================== */

html {
  font-size: 100%;
}

@media (max-width: 414px) {
  html {
    font-size: calc((100vw - 320px) / 94 * 3.7 + 12.3px);
  }
}

@media (min-width: 414px) and (max-width: 699.98px) {
  html {
    font-size: calc((100vw - 414px) / 352 * 4 + 16px);
  }
}

@media (min-width: 700px) {
  html {
    font-size: 22px;
  }
}

:root {
  --color__txt: #333;
}

body {
  color: var(--color__txt);
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}

p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  /* -webkit-font-smoothing: antialiased; */
}

p a {
  font-weight: bold;
  text-decoration: underline;
}

a>* {}

a img {
  transition: all 0.6s cubic-bezier(0.12, 1.07, 0.15, 1.11);
}

a img:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

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

img {
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  /* margin-top: -0.3px;
  margin-bottom: -0.3px; */
}

picture {
  display: block;
  line-height: 0;
  font-size: 0;
}

picture>img {
  font-size: 0px;
  font-size: 0rem;
}

::placeholder {
  color: #333;
  opacity: 0.25;
}

*:focus {
  outline: none;
}

form input,
form textarea {
  /* -webkit-appearance: none; */
}

h1,
h2,
h3 {
  /* font-family: var(--font-family__mincho); */
  /* color: #fff; */
}

.is-show {
  opacity: 1 !important;
}

.is-hide {
  opacity: 0 !important;
}

@media (min-width: 700px) {
  .pc {
    display: block;
  }

  .pc--inline {
    display: inline;
  }

  .sp {
    display: none !important;
  }

  .sp--inline {
    display: none !important;
  }
}

@media (max-width: 699.98px) {
  .pc {
    display: none !important;
    pointer-events: none;
  }

  .pc--inline {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .sp--inline {
    display: inline;
  }
}

@media (max-width: 767.98px) {
  p {
    line-height: 1.75;
    font-size: 16px;
    font-size: .8rem;
    margin-top: 10px;
  }
}

/*===========================================
 Project ここから独自CSS記載
========================================== */
a {
  transition: all 0.6s cubic-bezier(0.12, 1.07, 0.15, 1.11);
}

@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

.bz {
  background-color: #fff;
  position: relative;
}

@media (min-width: 700px) {
  .bz {
    display: flex;
    justify-content: center;
  }

  .pc-logo__wrapper {
    position: fixed;
    left: 37px;
    top: 23px;
    width: calc(307 / 1680 * 100%);
  }

  .pc-logo {
    aspect-ratio: 307/42;
    object-fit: contain;
  }

  .pc-bg {
    position: fixed;
    inset: 0;
    aspect-ratio: 1680/913;
    object-fit: cover;
    height: 100%;
    display: block;
  }
}

@media (min-width: 1040px) {
  .bz {
    justify-content: center;
    padding-inline: 20px;
  }

  .bz-page {
    margin-left: calc(100 / 1040 * 100%);
  }
}

@media (min-width: 1400px) {
  .bz {
    padding-inline: 20px;
  }

  .bz-page {
    margin-left: 15vw;
  }
}

@media (min-width: 1700px) {
  .bz {
    justify-content: center;
  }
}

/* PC部分 */
.bz-pc,
.pc-logo__wrapper,
.pc-bg {
  display: none;
}

.bz-pc__box {
  position: fixed;
  top: 29%;
  left: 15%;

}

@media (min-width: 1800px) {
  .bz-pc__box {
    left: 4%;
  }
}

@media (max-width: 1039px) {
  .bz-pc__box {
    display: none;
  }
}

.pc-01 {
  aspect-ratio: 366/230;
  max-width: 366px;
  margin-left: 12px;
}

.pc-btn01 {
  display: block;
  /* width: calc(400 / 422 * 100%); */
  width: 104%;
  max-width: 410px;
  margin-top: 78px;
}

.pc-btn01 {
  object-fit: cover;
}

.bz-page {
  background-color: #fff;
  width: 100%;
  position: relative;
  z-index: 9;
}



@media (min-width: 700px) {
  .bz-pc__content {
    padding-bottom: 0 !important;
    /* position: sticky; */
    position: fixed;
    top: 30%;
    transform: translate(0%, -50%);
    left: 5%;
    width: calc(442 / 1600 * 100%);
    max-width: 500px;
  }

  @media (min-width: 1399px) {
    .bz-pc__content {
      left: 11%;
    }

  }

  .bz-page {
    max-width: 586px;
    min-width: 580px;
    flex: 1;
    /* border-inline: 7px solid #fff; */
    box-shadow: 0px 4px 21.4px rgba(129, 137, 124, 0.22);
  }


  .pc-bg {
    display: block;
  }
}

@media (min-width: 1040px) {
  .bz-pc {
    display: block;
    position: relative;
    width: min(356px, 33%);
    z-index: 9;
  }

  .pc-logo__wrapper {
    display: block;
  }
}

/* SP部分 */
/* スライダー*/
.bz-54 {
  position: relative;
  overflow: hidden;
}

.splide {
  position: absolute;
  top: -1%;
  padding-left: 5%;
}

.voice-card__inner {
  height: 95%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 3px solid #fff;
  border-radius: 20px;
  padding: 27px 17px 20px 19px;
  padding: 1.6875rem 1.0625rem 1.25rem 1.1875rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
  box-shadow: 0 0 13.8px rgba(145, 145, 145, 0.25);
  overflow: hidden;
  background-image: url(../../assets/img/bg-koe01.png);
  margin-left: 6px;
  margin-block: 18px;
}

.voice-card__inner01 {
  background-image: url(../../assets/img/bg-koe01.png);
}

.voice-card__inner02,
.voice-card__inner03 {
  background-image: url(../../assets/img/bg-koe02.png);
}

.voice-card__inner04 {
  background-image: url(../../assets/img/bg-koe03.png);
}

.voice-card__top {
  margin-left: -7px;
  margin-left: -0.4375rem;
  display: flex;
  align-items: center;
  gap: 14px;
  gap: 0.875rem;
}

.voice-card__image {
  width: 30.6%;
  height: auto;
}

.voice-card__meta {
  flex: 1;
  margin-top: -1px;
  margin-top: -0.0625rem;
}

.voice-card__name {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.voice-card__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin: 8px 0 0 -3px;
  margin: 0.5rem 0 0 -0.1875rem;
  letter-spacing: 0.04em;
  line-height: 160%;
}


.voice-card__body p {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 182%;
  letter-spacing: 0.03em;
}

.voice-card__body strong {
  font-weight: bold;
}

/* 画像切り替え */
/* 背景の暗いオーバーレイ */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.56);
  display: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* 画像のスクロールを許可するラッパー */
#modalImageWrapper {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  z-index: 1001;
}

#modalImageWrapper img {
  width: auto;
  height: auto;
}

@media (min-width: 768px) {
  #modalImageWrapper img {
    max-width: 90vw;
    max-height: 90vh;
  }
}

/* 拡大表示された画像 */
#modalImage {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

#btnClose {
  position: absolute;
  top: 2%;
  right: 3%;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  cursor: pointer;
  z-index: 1002;
}


/* 背景スクロール禁止用 */
body.modal-open {
  overflow: hidden;
}


.bz-42 h2 img.enlarged {
  width: 90% !important;
  height: auto;
  z-index: 11;
  position: relative;
}



/* テキスト */
.bz-05__text {
  width: 78%;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 181%;
  letter-spacing: 0.06em;
  margin-top: -45%;
  margin-inline: auto;
  padding-bottom: 10%;
}

.bz-05__text span {
  color: #D27015;
  font-weight: bold;
}

.bz-08__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 185%;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: -46%;
  padding-bottom: 13%;
}

.bz-08__text span {
  font-weight: 600;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.06em;
  line-height: 197%;
  color: #00560B;
}

.bz-10__text {
  margin-top: -24%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 187%;
  letter-spacing: 0.1em;
  text-align: center;
}

.bz-10__text span {
  font-weight: 600;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.06em;
  color: #00560B;
}

.bz-15__text {
  margin-top: -51%;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 203%;
  letter-spacing: 0.07em;
  text-align: center;
}

.bz-15__text span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 35px;
  font-size: 2.1875rem;
  letter-spacing: 0.11em;
  line-height: 208%;
  color: #334D75;
}

.bz-17 {
  position: relative;
}

.bz-17__text {
  position: absolute;
  top: 16%;
  left: 20%;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.16em;
  text-align: center;
}

.bz-17__text span {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.bz-21 {
  position: relative;
}

.bz-21__text {
  position: absolute;
  top: 0;
  left: 23.5%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 210%;
}

.bz-21 h3 span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.23em;
  line-height: 234%;
  color: #00560B;
  padding-left: 0.7em;
}

.bz-23 h2 {
  margin-top: -11%;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 25.12px;
  font-size: 1.57rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 154%;
}

.bz-23 h2 span {
  font-weight: 900;
  color: #2BA13B;
}

.coaching__title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 154%;
  color: #0D0140;
}

.coaching__sub {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.19em;
  line-height: 168%;
  text-align: center;
  color: #1D193B;
  padding-top: 7px;
  padding-top: 0.4375rem;
  padding-left: 8px;
  padding-left: 0.5rem;
}

.coaching__head {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 120%;
  text-align: center;
  color: #1D193B;
}

.num01 {
  padding-right: 3px;
  padding-right: 0.1875rem;
  font-size: 28.33em;
  font-size: 1.77rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 145%;
  color: #0D0140;
}

.coaching__text {
  width: 92%;
  margin-top: 2%;
  margin-inline: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 156%;
  color: #1D193B;
  padding-left: 1%;
  padding-bottom: 4%;
}

.bz-24,
.bz-26,
.bz-27,
.bz-29,
.bz-31 {
  position: relative;
}

.bz-24 .coaching {
  position: absolute;
  top: 33%;
  left: 10%;
  width: 80%;
}

.bz-26 .coaching__body {
  position: absolute;
  top: 9%;
  left: 10%;
  width: 80%;
}

.bz-27 .coaching {
  position: absolute;
  top: 44%;
  left: 10%;
  width: 80%;
}

.bz-29 .coaching__body {
  position: absolute;
  top: 7%;
  left: 10%;
  width: 80%;
}

.bz-31 .coaching__body {
  position: absolute;
  top: 4%;
  left: 10%;
  width: 80%;
}


.message__head {
  margin-left: 10.4%;
  margin-top: -11%;
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 181%;
}

.message__text {
  width: 81.8%;
  margin-inline: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 180%;
}

.bz-37 .message__text {
  margin-top: -132%;
  padding-bottom: 3%;
}


.bz-39 .message__text {
  margin-top: -86%;
  padding-bottom: 3%;
}

.bz-40 {
  position: relative;
}

.bz-40 .message__head {
  margin-top: -21%;
}

.s4-20 {
  position: absolute;
  top: -20px;
  right: 0;
  width: 34%;
  height: auto;
}

.bz-41 .message__text {
  margin-top: -126%;;
  padding-bottom: 2%;
}

.henka__text {
  margin-top: -33%;
  margin-left: 9%;
  width: 81.2%;
  margin-inline: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 150%;
}

.bz-47 .henka__text {
  margin-top: -37%;
  margin-left: 15%;
}

.bz-48-1 {
  margin-top: 6%;
}

.bz-48-2 .henka__text {
  margin-top: -39%;
  margin-left: 10%;
}

.bz-49 {
  margin-top: 8%;
}

.bz-50 .henka__text {
  margin-top: -39%;
  margin-left: 11%;
  width: 79%;
}

.bz-51 {
  margin-top: 8.5%;
}

.bz-52 {
  position: relative;
}

.bz-52 .henka__text {
  position: absolute;
  top: 60%;
    left: 10%;
}
.step {
  position: relative;
}

.step__wrap {
  position: absolute;
  top: 27%;
  left: 38%;
}

.btn01 {
  width: 68%;
  display: block;
  margin-top: 7px;
}

.step__head {
  font-size: 15px;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  line-height: 135%;
  font-weight: bold;
}

.step__text {
  max-width: 77%;
  padding-top: 2%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 135%;
}

.bz-60-2__text-wrap {
  margin-top: -39%;
  padding-bottom: 1%;
}

.bz-60-2__text {
  margin-top: 14px;
  margin-top: 0.875rem;
  width: 83%;
  margin-inline: auto;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 153%;
}

/* フッター */
.bz-footer {
  padding-block: 33px 29px;
  padding-block: 2.0625rem 1.8125rem;
  background-color: #D9EAF2;
}

.footer-copy {
  display: block;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* ボタン関連 */
.cta-exist {
  position: relative;
}

.bz-cta-group--pc {
  max-width: 413px;
  bottom: 8.4%;
  left: min(60%, 495px);
}

.bz-cta-group {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin-inline: auto;
}

.bz-cta-group--01 {
  top: 9%;
}

.bz-cta-group--02 {
  top: 0.4%;
}

.bz-cta-group--03 {
  top: 2%;
}

.bz-cta__button {
  position: absolute;
  display: block;
  width: 86%;
  top: 9%;
  left: 50%;
  transform: translateX(-50%);
}

.bz-cta__button02 {
  bottom: 10%;
  top: unset;
}

/* 他コンテンツ */
.bz-12,
.bz-13,
.bz-15,
.bz-17,
.bz-20,
.bz-21,
.bz-22,
.bz-26,
.bz-29,
.bz-31,
.bz-36,
.bz-38,
.bz-40,
.bz-43,
.bz-44,
.bz-45,
.bz-47,
.bz-48-2,
.bz-50,
.s50-1,
.bz-53,
.bz-56,
.bz-57,
.bz-58,
.bz-59,
.bz-60-1 {
  margin-top: -1px;
  margin-top: -0.0625rem;
}

.bz-28 {
  margin-top: -0.5px;
}

.bz-07 {
  margin-top: -14px;
  margin-top: -0.875rem;
}

.bz-09 {
  margin-top: -10px;
  margin-top: -0.625rem;
}

.bz-11 {
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.bz-18 {
  margin-top: -3px;
  margin-top: -0.1875rem;
}

.bz-19,
.bz-37-4 {
  margin-top: -2px;
  margin-top: -0.125rem;
}

.bz-24 {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.bz-25 {
  margin-top: -2px;
  margin-top: -0.125rem;
}

.bz-33 {
  margin-top: 7%;
}

.bz-34 {
  margin-top: -6px;
  margin-top: -0.375rem;
}

.bz-35 {
  margin-top: -9px;
  margin-top: -0.5625rem;
}

.bz-46 {
  margin-top: 1%;
}

.bz-55 {
  margin-top: 1%;
}

/* 固定ボタン */

.kotei-btn {
  max-width: 586px;
  width: 100%;
  padding-block: 16px 12px;
  padding-block: 1rem 0.75rem;
  padding-inline: 66px;
  padding-inline: 4.125rem;
  background-color: rgba(90, 198, 226, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin-inline: auto;
  display: block;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}

@media (min-width: 587px) and (max-width: 700px) {
  .kotei-btn {
    max-width: 100%;
    padding-inline: 120px;
  }
}

.kotei-btn.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1040px) {
  .kotei-btn {
    display: none;
  }
}


/* お問い合わせ（フォーム関連はもう少し下） */
.contact {
  background-image: url(../../assets/img/bg-contact.png);
  background-size: cover;

}

.contact__inner {
  padding-block: 17px 43px;
  padding-block: 1.0625rem 2.6875rem;
  padding-inline: 22px;
  padding-inline: 1.375rem;
  border-radius: 30px;
}

.bz-contact__logo {
  padding-top: 18px;
  padding-left: 19px;
  width: 212px;
}

.contact__box h1 {
  margin-inline: auto;
}

.contact__image {
  position: relative;
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.contact__image01 {
  border-radius: 20px;
  border-radius: 1.25rem;
}

.contact__image02 {
  position: absolute;
  width: 62%;
  bottom: -32%;
  left: -10%;
}

.contact__sub-title {
  font-size: 18px;
  color: #EF7400;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 155%;
  letter-spacing: 0.18em;
  text-align: center;
}

.contact__description {
  margin-top: 58px;
  margin-top: 3.625rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 162%;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}

/*===========================================
 お問い合わせフォーム
========================================== */
.contact__box {
  padding: 40px 34px 32px;
  padding: 2.5rem 2.125rem 2rem;
  border-radius: 30px;
  border-radius: 1.875rem;
  background-color: #fff;
}

.bz-contact__form-body {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.c-form {
  padding-left: 1%;
}

.c-form-item+.c-form-item {
  margin-top: 16px;
  margin-top: 1rem;
}

.c-form-item__ttl {
  display: flex;
  align-items: center;
  column-gap: 5px;
  column-gap: 0.5rem;
}

.c-form-item__ttl p {
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 177%;
  letter-spacing: 0.1em;
}

.c-form-item__ttl span {
  margin-top: -3px;
  font-weight: 500;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.17em;
  color: #fff;
  background-color: #DC361D;
  width: 38px;
  width: 2.375rem;
  display: grid;
  place-items: center;
  border-radius: 2.61px;
}

.c-input,
.c-input__textarea {
  width: 100%;
  border-radius: 10px;
  border-radius: 0.625rem;
  background-color: #F3F3F3;
  border: 1px solid #F3F3F3;
  padding: 8px 16px 7px 11px;
  padding: 0.5rem 1rem 0.4375rem 0.6875rem;
  color: #1c1c1c;
  margin-top: 1%;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 177%;
  letter-spacing: 0.1em;
}

@media (min-width: 320px) and (max-width: 400px) {

  .c-input,
  .c-input__textarea {
    padding: 17px 7px 19px;
    padding: 1.0625rem 0.4375rem 1.1875rem;
  }

  .c-input--flex {
    width: 150px;
    width: 9.375rem;
    height: 57.5px;
    height: 3.59375rem;
  }
}

input::placeholder,
textarea::placeholder {
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 177%;
  letter-spacing: 0.1em;
}

.c-select {
  position: relative;
}

.c-select::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  right: 0.9375rem;
  transform: translateY(-50%);
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}

.firefox .c-select::after {
  content: none;
}

.firefox .c-input,
.firefox .c-input__textarea {
  padding-right: 5px;
  padding-right: 0.3125rem;
}

.c-select--wide::after {
  right: 30px;
  right: 1.875rem;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

.c-select .c-input {
  background-color: #f3f3f3;
}

.c-form-item__label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-input--flex {
  width: 150px;
  width: 9.375rem;
  height: 57.5px;
  height: 3.59375rem;
}

@media (min-width: 600px) and (max-width: 700px) {
  .c-input--flex {
    width: 140px;
    width: 8.75rem;
  }
}

@media (min-width: 700px) {
  .c-input--flex {
    width: 160px;
    width: 10rem;
  }
}

input[type="date"],
input[type="month"],
input[type="time"] {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.safari input[type="date"],
.safari input[type="month"],
.safari input[type="time"] {
  width: 150px;
  width: 9.375rem;
  height: 57.5px;
  height: 3.59375rem;
}

/* プレースホルダーの色変更 */
input[type="date"]::-webkit-input-placeholder {
  color: #303030;
  /* プレースホルダー文字色 */
}

input[type="date"]::-moz-placeholder {
  color: #303030;
  /* Firefox */
}

input[type="date"]:-ms-input-placeholder {
  color: #303030;
  /* IE */
}

input[type="date"]::placeholder {
  color: #303030;
  /* 通常のプレースホルダー（クロスブラウザ対応） */
}

.c-message {
  min-height: 195px;
  min-height: 12.1875rem;
  line-height: 1.7;
}

.c-message::placeholder {
  line-height: 1.7;
}

.bz-contact__form-btn {
  margin-top: 27px;
  margin-top: 1.6875rem;
  text-align: center;
}

button#submit-btn {
  border: none;
  width: 238px;
}

@media (any-hover: hover) {
  .c-cta-btn__btn:hover {
    opacity: 0.8;
  }
}

/* サンクスページ */
.bz-thanks__page {
  background-image: url(../../assets/img/bg-thanks.png);
  display: flex;
  flex-direction: column;
  height: 100svh;
}

@media (min-width: 1400px) {
  .bz-thanks__page {
    height: 100svh;
  }
}

.bz-thanks__logo {
  margin: 20px 15px 22px;
  width: 192px;
}

.bz-thanks__inner {
  background-color: #fff;
  border-radius: 30px;
  border-radius: 1.875rem;
  width: 89%;
  margin-inline: auto;
  padding: 50px 30px 43px;
  padding: 3.125rem 1.875rem 2.6875rem;
}


.bz-thanks__title {
  color: #EF7400;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 155%;
  letter-spacing: 0.15em;
  text-align: center;
}

.bz-thanks__text-wrap {
  /* padding-block-start: 39px; */
  padding-block-start: 1.4375rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.bz-thanks__text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 167%;
  letter-spacing: 0.05em;

}

.bz-thanks__back-link {
  display: block;
  margin-top: 60px;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: underline;
}

/* safariのみ適用 */
.safari a img {
  transition: all 0.6s cubic-bezier(0.12, 1.07, 0.15, 1.11);
}

.safari a:hover img {
  opacity: 0.7;
}

/* よくあるご質問 */
.faq {
  padding-block: 7% 14%;
  background-image: url(../../assets/img/bg-faq02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faq__inner {
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}

.faq__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  color: #00560B;
}

.faq__list {
  margin-top: 37px;
  margin-top: 2.3125rem;
}

.faq__item {
  position: relative;
  padding: 35px 24px 22px 39px;
  padding: 2.1875rem 1.5rem 1.375rem 2.4375rem;
  border-radius: 20px;
  border-radius: 1.25rem;
  background-color: #fff;
  box-shadow: 0 0 17.3px #D5E3D2;
}

.faq__item::before {
  content: "";
  position: absolute;
  top: -14%;
  left: 3%;
  width: 39px;
  width: 2.4375rem;
  height: 47px;
  height: 2.9375rem;
  background-image: url(../../assets/img/q.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.faq__item+.faq__item {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.faq__item-question {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}


.faq__item-answer {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.06em;
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.bz-thanks{
  background-color: #FEF8EB;
}

.bz-thanks__logo-2{
  background-color: #FEF8EB;
}

.pp-buttom{
  text-decoration: none;
  color: #444;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 10px;
}
@media (min-width: 764px) {
  .pp-buttom p {
    text-decoration: none;
    color: #444;
    text-align: center;
    font-size: 0.8rem;
  }
}
.thanks-button_bg{
  margin-top: 20px;
}
.thanks-button{
  width: 80%;
  margin: -7.825rem auto 0;
}
.bz-thanks__inner-inn{
  width: 100%;
}