@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #333;
  min-width: 1080px;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
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;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #333;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 420px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #333;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.kv {
  background: #FBF9F0;
  margin-top: 8rem;
}

.bg_bg02 {
  background: #FBF9F0;
}

.bg_orange {
  background: #FEF6EB;
}

.bg_white {
  background: #fff;
}

.syakai .bg_bg02 {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .syakai .bg_bg02 {
    padding: 6rem 0;
  }
}
.syakai .bg_bg02 .img {
  width: 80%;
  max-width: 1192px;
  margin: 0 auto;
}

#onayami {
  padding-top: 8rem;
  margin-top: -8rem;
}

.onayami .bg_img {
  background: url(../images/bg_onayami.png) 0/cover no-repeat;
  padding: 8rem 0;
}
.onayami .img {
  width: 100%;
  margin: -2px auto 0;
}
.onayami .img_02 {
  margin-top: 0;
}

.kaiketsu .bg_orange {
  padding-bottom: 10rem;
}
.kaiketsu .kaiketsu_ttl {
  max-width: 610px;
  width: 61%;
  margin: 0 auto;
}
.kaiketsu .bg_white {
  padding: 5rem 0;
  margin-top: 4rem;
  border-radius: 1rem;
}
.kaiketsu .bg_white .img {
  width: 62%;
  margin: 0 auto;
}
.kaiketsu .bg_white .img02 {
  margin: 4rem auto 0;
  width: 86%;
}

.cta {
  background: url(../images/cta_bg.png) 0/cover no-repeat;
  padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  .cta {
    background: url(../images/cta_bg_sp.png) 0/cover no-repeat;
  }
}
.cta .cta_call {
  width: 90%;
  margin: 0 auto;
}
.cta .bg_white {
  width: 90%;
  margin: 5px auto 0;
  box-shadow: 2px 2px 17px 0px rgba(0, 0, 0, 0.16);
}
.cta .cta_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2rem 5rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .cta .cta_container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
}
.cta .cta_container .cta_txt {
  flex-basis: 38%;
}
.cta .cta_container .cta_btn {
  flex-basis: 40%;
}
.cta .cta_container .cta_btn a:hover {
  transform: scale(0.97);
}
.cta .cta_container .cta_btn .phone_txt {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #444;
}
.cta .cta_container .cta_btn .mail_txt {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1rem;
}

#riyuu {
  margin-top: -8rem;
  padding-top: 8rem;
}

.riyuu .riyuu_bg {
  padding: 10rem 0;
  background: url(../images/riyuu_bg.png) 0/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .riyuu .riyuu_bg {
    padding: 5.7rem 0;
    background: url(../images/riyuu_bg_sp.png) 0/cover no-repeat;
  }
}
.riyuu .riyuu_ttl {
  width: 326px;
  margin: 0 auto;
}
.riyuu .img {
  width: 85%;
  max-width: 1145px;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .riyuu .img {
    width: 95%;
    margin-top: 0;
  }
}

.skills .bg_orange {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .skills .bg_orange {
    padding: 5rem 0;
  }
}
.skills .bg_orange .img {
  max-width: 1126px;
  margin: 0 auto;
  width: 90%;
}

#flow {
  margin-top: -8rem;
  padding-top: 8rem;
}

.flow .flow_bg {
  background: url(../images/flow_bg.webp) 0/cover no-repeat;
  background-position: bottom;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .flow .flow_bg {
    padding: 5rem 0;
  }
}
.flow .flow_contents {
  width: 90%;
  max-width: 1143px;
  margin: 0 auto;
}

.model .bg_bg {
  background: linear-gradient(180deg, #fff 0%, #fff 70%, #FBF9F0 70%, #FBF9F0 100%);
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .model .bg_bg {
    background: transparent;
    padding: 5rem 0;
  }
}

.plan .bg_bg {
  background: #FBF9F0;
  padding: 10rem 0;
}
.plan .plan_ttl {
  width: 140px;
  margin: 0 auto;
}
.plan .plan_img {
  margin: 4rem auto 0;
  width: 80%;
  max-width: 1100px;
}
@media screen and (max-width: 420px) {
  .plan .plan_img {
    width: 630px;
  }
}

#faq {
  padding-top: 8rem;
  margin-top: -8rem;
}

.faq .bg_bg03 {
  background: #FEE6CA;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .faq .bg_bg03 {
    padding: 5rem 0;
  }
}
.faq .bg_bg03 .bg_white {
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
  border-radius: 1rem;
}

#contact {
  padding-top: 8rem;
  margin-top: -8rem;
}
@media screen and (max-width: 767px) {
  #contact {
    margin-top: 0;
    padding-top: 5rem;
  }
}

.contact {
  padding: 10rem 0;
  background: #FEF6EB;
}
.contact .contact_ttl {
  width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact .contact_ttl {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 5rem 0;
  }
}
.contact .contact-form {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contact .contact-form {
    margin-top: 0;
  }
}
.contact .contact-form form {
  margin-top: 4.8rem;
  /* 初期状態: ボタンが無効な場合 */
  /* ボタンが有効な場合（JavaScriptでenabledにする） */
}
@media screen and (max-width: 420px) {
  .contact .contact-form form {
    margin-top: 2.4rem;
  }
}
.contact .contact-form form .item {
  width: 65%;
  margin: 0 auto;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
  gap: 2.6rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact .contact-form form .item {
    width: 90%;
  }
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
  }
}
.contact .contact-form form .item label, .contact .contact-form form .item p {
  flex-basis: 40%;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: right;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .item label, .contact .contact-form form .item p {
    text-align: left;
  }
}
.contact .contact-form form .item .wpcf7-form-control-wrap, .contact .contact-form form .item textarea {
  flex-basis: 60%;
  flex-basis: 100%;
  font-size: 1.6rem;
}
.contact .contact-form form .item input, .contact .contact-form form .item textarea {
  font-size: 1.6rem;
  background: #fff;
  padding: 15px 2rem;
  border-radius: 8px;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.06) inset;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact .contact-form form .item input, .contact .contact-form form .item textarea {
    padding: 10px 1.4rem;
  }
}
.contact .contact-form form .item textarea {
  height: 80px;
}
.contact .contact-form form .requid {
  color: #F25E23;
  font-size: 0.8rem;
  vertical-align: super;
  margin-left: 0.3rem;
}
.contact .contact-form form .radio {
  display: flex;
  column-gap: 3.6rem;
  justify-content: center;
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .radio {
    flex-direction: column-reverse;
  }
}
.contact .contact-form form .radio .wpcf7-list-item, .contact .contact-form form .radio .wpcf7-radio {
  margin-left: 0;
}
.contact .contact-form form .radio .wpcf7-list-item {
  padding: 0.8rem 0;
}
.contact .contact-form form .radio .wpcf7-list-item-label {
  font-size: 1.6rem;
}
.contact .contact-form form .radio .wpcf7-list-item {
  margin: 0;
  position: relative;
}
.contact .contact-form form .radio .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.contact .contact-form form .radio input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
  height: 60%;
  cursor: pointer;
}
.contact .contact-form form .radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.5em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.2s; /* 色をじんわり変化させる */
  width: 1.5em;
}
.contact .contact-form form .radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #F25E23; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}
.contact .contact-form form .item.first {
  margin-top: 4rem;
}
.contact .contact-form form .item.checkbox {
  align-items: flex-start;
}
.contact .contact-form form .item.checkbox .con-i {
  font-size: 1.2rem;
}
.contact .contact-form form .item.checkbox .checkbox_boxes {
  flex-basis: 100%;
}
.contact .contact-form form .item.checkbox .checkbox_boxes div:not(:first-child) {
  margin-top: 1rem;
}
.contact .contact-form form .item.checkbox .wpcf7-form-control-wrap {
  padding-left: 1rem;
  display: block;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .item.checkbox .wpcf7-form-control-wrap {
    width: 95%;
    margin-top: 1rem;
  }
}
.contact .contact-form form .item.checkbox .wpcf7-list-item {
  margin: 1.6rem 30px 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
}
.contact .contact-form form .item.checkbox .wpcf7-list-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .item.checkbox .wpcf7-list-item {
    margin-top: 1rem;
  }
}
.contact .contact-form form .item.checkbox .wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  font-size: 14px; /* 項目のフォントサイズ */
  margin-left: 0;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .item.checkbox .wpcf7-list-item-label {
    font-size: 1.3rem;
  }
}
.contact .contact-form form .item.checkbox input[type=checkbox] {
  display: none; /* デフォルトのチェックボックスを非表示にする */
  /* チェック状態にカスタム画像を表示 */
}
.contact .contact-form form .item.checkbox input[type=checkbox] + label {
  position: relative;
  font-size: 1.4rem;
  padding-left: 30px; /* チェックボックスの位置を確保 */
  cursor: pointer;
}
.contact .contact-form form .item.checkbox input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #fff; /* チェックボックスの背景を白に */
  border-radius: 3px;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.06) inset;
}
.contact .contact-form form .item.checkbox input[type=checkbox]:checked + label:before {
  background: url(../images/input-check.png) no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  background-color: #fff; /* チェックされた状態でも背景色は白 */
  border: none; /* 枠線を消す */
}
.contact .contact-form form .txt {
  font-size: 1.4rem;
  display: flex;
  margin: 5px auto 0 35%;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .txt {
    margin-left: 2rem;
  }
}
.contact .contact-form form .txt .link-btn {
  display: flex;
  align-items: start;
}
.contact .contact-form form .txt .link-btn .link {
  text-decoration: underline;
  transition: 0.3s;
}
.contact .contact-form form .txt .link-btn .link:hover {
  color: #F25E23;
}
.contact .contact-form form .txt .link-btn span {
  height: 12px;
  margin: 0 0.2rem 0 0.5rem;
}
.contact .contact-form form .txt .link-btn span img {
  width: 12px;
  height: 12px;
  vertical-align: baseline;
}
.contact .contact-form form .agree_box label {
  font-size: 1.4rem;
}
.contact .contact-form form .agree_box label a {
  display: inline;
  text-decoration: underline;
}
.contact .contact-form form .agree_box label a span {
  vertical-align: top;
  margin: 0 4px;
}
.contact .contact-form form .agree_box label a span svg {
  vertical-align: middle;
}
.contact .contact-form form .submitBtn {
  width: 38%;
  margin: 6.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .contact .contact-form form .submitBtn {
    width: 90%;
    margin-top: 4rem;
  }
}
.contact .contact-form form .submitBtn input[type=submit] {
  background-color: #ddd; /* 無効時の背景色 */
  color: #fff; /* ボタン上のテキストの色 */
  border: none;
  width: 100%;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  padding: 16px 20px;
  cursor: not-allowed; /* 無効時のカーソルを変更 */
  opacity: 0.6; /* 無効時の透明度を少し下げる */
  transition: 0.3s;
}
.contact .contact-form form .submitBtn input[type=submit]:not([disabled]) {
  background-color: #F25E23; /* 有効時の背景色 */
  cursor: pointer; /* 有効時のカーソル */
  opacity: 1; /* 有効時は透明度を通常に */
}
.contact .contact-form form .submitBtn input[type=submit]:not([disabled]):hover {
  transform: scale(0.97);
}
.contact .contact-form p {
  font-weight: 600;
}

.thanks {
  padding: 20rem 0 10rem;
  min-height: 90vh;
  background: #FBF9F0;
}
@media screen and (max-width: 420px) {
  .thanks {
    padding: 16rem 0 8rem;
  }
}
.thanks .thanks_ttl {
  font: 600 3rem/1.4 "Noto Sans JP", system-ui;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks .thanks_ttl {
    font-size: 2.4rem;
  }
}
.thanks .thanks_txt p {
  color: #333;
  line-height: 1.8;
  text-align: center;
  margin-top: 2rem;
}
.thanks .back_btn {
  background: #F25E23;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  width: 50%;
  margin: 10rem auto 0;
  padding: 1.6rem 2rem;
  border-radius: 4rem;
}
@media screen and (max-width: 420px) {
  .thanks .back_btn {
    width: 100%;
    padding: 2rem;
  }
}
.thanks .back_btn:hover {
  transform: scale(0.98);
}

.footer {
  margin-top: 7.2rem;
  border-bottom: 1rem solid #F25E23;
  padding-bottom: 3rem;
}
@media screen and (max-width: 420px) {
  .footer {
    margin-top: 4rem;
    padding-bottom: 2rem;
  }
}
.footer .footer_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 420px) {
  .footer .footer_container {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer_container h2 {
  width: 57px;
}
.footer .footer_container .com_info h3 {
  font-size: 1.6rem;
  font-weight: 600;
  flex-basis: 10%;
}
@media screen and (max-width: 420px) {
  .footer .footer_container .com_info h3 {
    text-align: center;
    font-size: 1.4rem;
  }
}
.footer .footer_container .com_info .com_link {
  flex-basis: 20%;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (max-width: 420px) {
  .footer .footer_container .com_info .com_link {
    font-size: 1.4rem;
  }
}
.footer .footer_container .com_info .com_link span {
  vertical-align: top;
  margin-left: 1rem;
}
.footer .footer_container .com_info .com_link span svg {
  vertical-align: middle;
}
.footer .footer_container .copy {
  flex-basis: 70%;
  text-align: right;
  width: 100%;
  font-size: 1.2rem;
}
@media screen and (max-width: 420px) {
  .footer .footer_container .copy {
    text-align: center;
  }
}

.l-nav {
  display: none;
}
@media screen and (max-width: 420px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
.header .header_img {
  height: 4px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header .header_img {
    height: 5px;
  }
}
.header .header_img img {
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .header .header_img img {
    height: 5px;
  }
}
.header .header_container {
  padding: 1.4rem 1rem 1.4rem 2rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .header_container {
    padding: 6px 0 4px 1.8rem;
  }
}
.header .header_container .logo {
  width: 31%;
  max-width: 457px;
}
@media screen and (max-width: 767px) {
  .header .header_container .logo {
    width: 160px;
  }
}
.header .header_container .nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8vw;
}
@media screen and (max-width: 767px) {
  .header .header_container .nav {
    gap: 4rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 16% 14% 4% 14%;
    top: 64px;
  }
}
.header .header_container .nav .nav_item {
  font-size: 1.6rem;
}
.header .header_container .nav .btn {
  flex-basis: 26%;
  max-width: 227px;
}
@media screen and (max-width: 767px) {
  .header .header_container .nav .btn {
    border-left: 0;
    max-width: none;
    width: 70%;
    border-bottom: none;
  }
}
.header .header_container .nav .btn img {
  max-width: 227px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .header .header_container .nav .btn img {
    max-width: none;
  }
}
.header .header_container .nav .btn:hover {
  transform: scale(0.97);
}

@media screen and (max-width: 767px) {
  .header_spbtn {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 3;
    border: none;
    background-color: #E87130;
    margin: 0 0 0 auto;
    cursor: pointer;
    z-index: 999;
    position: fixed;
    top: 4px;
    right: 60px;
  }
  .burger-btn {
    display: block;
    width: 60px;
    height: 60px;
    z-index: 3;
    border: none;
    background-color: #FEF6EB;
    right: 0;
    cursor: pointer;
    z-index: 999;
  }
  .burger-btn .bar {
    width: 28px;
    height: 3px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F25E23;
    transition: all 0.4s;
  }
  .burger-btn .bar_top {
    top: 20px;
  }
  .burger-btn .bar_mid {
    top: 28px;
  }
  .burger-btn .bar_bottom {
    top: 36px;
  }
  .burger-btn.close .bar_top {
    transform: translate(-50%, 7px) rotate(45deg);
    transition: transform 0.3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }
  .burger-btn.close .bar_bottom {
    transform: translate(-50%, -9px) rotate(-45deg);
    transition: transform 0.3s;
  }
  .nav-header-menu {
    width: 80vw;
    height: 100%;
    position: fixed;
    top: 6rem;
    right: -100%;
    z-index: 10;
    transition: 0.3s;
    background: #FBF9F0;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    padding-left: 4rem;
  }
  .nav-header-menu .nav_item {
    font-weight: 600;
    padding-left: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  .nav-header-menu.active {
    transition: 0.3s;
    right: 0;
  }
  .nav {
    padding: 0;
    min-width: auto;
    z-index: 999;
  }
}