@charset "UTF-8";

/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
}

main {
  display: block;
  /* Render `main` consistently */
}

/* 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 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #4C4044;
  font-weight: 400;
  line-height: 1.25;
}

/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 80px 0 0 0;
}

@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(800px + 40px);
}

.container-md {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(940px + 40px);
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1080px + 40px);
}

.container-lg {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1000px + 40px);
}

.container-xl {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1200px + 40px);
}

.main .container-lg {
  padding: 0 60px;
  max-width: calc(1000px + 120px);
}

@media screen and (max-width: 768px) {
  .main .container-lg {
    padding: 0 20px;
    max-width: calc(1000px + 40px);
  }
}


/* ========================================
    共通
    ======================================== */
.section {
  margin-top: 100px;
}

@media (max-width: 1080px) {
  .section {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .section {
    margin-top: 60px;
  }
}

.m-section-ttl {
  font-size: clamp(14px, 1.4vw, 22px);
  width: fit-content;
  font-family: "noto serif jp";
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .m-section-ttl {
    text-align: center;
  }
}

.m-section-ttl span {
  font-size: clamp(28px, 2.7vw, 48px);
  letter-spacing: 0.02em;
  margin: 10px 0;
  font-weight: 700;
}

.m-section-ttl::after {
  content: "";
  display: block;
  width: 120px;
  height: 15px;
  background-image: url("../img/common/section-ttl-accent.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.cta-section {
  background: url("../img/pc/bg.webp") center center/cover no-repeat;
  padding: 50px;
  position: relative;
  height: auto;
  overflow: hidden;
}

.cta-section .container-lg {
  padding: 0 20px;
  max-width: calc(1000px + 40px);
}

@media (max-width: 600px) {
  .cta-section {
    padding: 20px;
    background: url("../img/sp/bg.webp") center center/cover no-repeat;
  }
}

.cta-section .cta-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .cta-section .container-lg {
    padding: 0;
  }
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.cta-section__left img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-section__btn {
  margin-top: 20px;
  cursor: pointer;
}

.cta-section__right {
  background: #FEDA4D;
  position: relative;
  border-radius: 10px;
}

.cta-section__right-content {
  position: relative;
  padding: 33px 22px;
}

@media (max-width: 600px) {
  .cta-section__right-content {
    padding: 20px 20px;
  }
}

.cta-section__right-label {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  z-index: 1;
  transform: translate(25%, -25%);
}

@media (max-width: 1200px) {
  .cta-section__right-label {
    width: 80px;
  }
}

@media (max-width: 1080px) {
  .cta-section__right-label {
    transform: translate(50%, -35%);
  }
}

.cta-section__right-head {
  text-align: center;
  font-family: "Noto Serif JP", "serif";
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media (max-width: 1080px) {
  .cta-section__right-head {
    font-size: 16px;
  }
}

.cta-section__right-txt {
  text-align: center;
  font-size: 14px;
  color: #4C4044;
  font-weight: 500;
  margin-top: 15px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .cta-section__right-txt {
    bottom: 17px;
  }
}

@media (max-width: 600px) {
  .cta-section__right-txt {
    font-size: 13px;
  }
}

.cta-section__right-txt span {
  background: #fff;
  padding: 2px 4px;
}

@media (max-width: 600px) {
  .cta-section__right-txt span {
    padding: 0px;
  }
}

.cta-section__right-txt br {
  display: none;
}

@media (max-width: 1080px) {
  .cta-section__right-txt br {
    display: block;
  }
}

.cta-section__slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  min-height: 0;
  contain: layout style paint;
}

@media (max-width: 600px) {
  .cta-section__slide-content {
    gap: 10px;
  }
}

.cta-section__slide-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.cta-section__slide-btn img {
  display: block;
  width: 46px;
  height: 46px;
}

@media (max-width: 1200px) {
  .cta-section__slide-btn img {
    width: 35px;
    height: 35px;
  }
}

.cta-section__slide-btn:hover {
  opacity: 0.7;
}

.cta-section__slide-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.cta-section__slide-items {
  display: flex;
}

.cta-splide .splide__slide {
  display: block !important;
}

.cta-splide>.splide__pagination {
  display: none !important;
}

.splide__slide.cta-section__slide-item {
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
  aspect-ratio: 300/203;
  flex-shrink: 0;
  width: 100%;
  min-height: 0;
  contain: layout style paint;
}

@media (max-width: 600px) {
  .splide__slide.cta-section__slide-item {
    aspect-ratio: 220/148;
  }
}

.splide__slide.cta-section__slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: inherit;
}

.splide__slide.cta-section__slide-item picture {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
}

.cta-splide-pagination.splide__pagination {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
  margin-bottom: 15px;
  position: static !important;
  transform: none !important;
  list-style: none;
  padding: 0;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 10px;
  height: auto;
}

@media (max-width: 600px) {
  .cta-splide-pagination.splide__pagination {
    margin: 10px 0;
    min-height: 8px;
  }
}

.cta-splide-pagination .splide__pagination__page {
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
  margin: 0 !important;
  opacity: 1;
  width: 10px;
  height: 10px;
  border: none;
}

@media (max-width: 600px) {
  .cta-splide-pagination .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}

.cta-splide-pagination .splide__pagination__page.is-active {
  background: #4C4044;
  transform: scale(1);
}

.cta-splide-pagination .splide__pagination__page:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-section__left {
    width: 100%;
  }

  .cta-section__right {
    width: 100%;
    padding: 0px 0px;
  }

  .cta-section__slide-btn img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 600px) {
  .cta-section__inner {
    gap: 30px;
  }
}

.fixed-btn-pc {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-btn-pc--visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .fixed-btn-pc {
    display: none;
  }
}

.fixed-btn-pc__btn {
  width: 70px;
  display: block;
}

@media screen and (max-width: 1200px) {
  .fixed-btn-pc__btn {
    width: 50px;
  }
}

.fixed-btn-sp {
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 768px) {
  .fixed-btn-sp {
    display: block;
  }
}

@media (max-width: 600px) {
  .fixed-btn-sp {
    width: 100%;
    max-width: 100%;
  }
}

.fixed-btn-sp--visible {
  opacity: 1;
  visibility: visible;
}

.fixed-btn-sp a {
  max-width: 400px;
  margin: 0 auto;
}

.fixed-btn-sp__btn {
  display: block;
}

.page-contact-confirm .fixed-btn-pc,
.page-contact-confirm .fixed-btn-sp,
.page-thanks .fixed-btn-pc,
.page-thanks .fixed-btn-sp {
  display: none !important;
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  padding: 8px 0px;
  border-bottom: 1px solid #948B8B;
}

@media screen and (max-width: 480px) {
  .header {
    padding: 10px 0px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__logo {
  width: clamp(100px, 8vw, 120px);
}

.header__logo-wrap a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__logo-txt {
  font-size: 12px;
}

@media screen and (max-width: 680px) {
  .header__logo-txt .u-sp-only {
    display: block;
  }
}

@media (max-width: 600px) {
  .header__btn {
    display: none;
  }
}

.header__btn a {
  display: inline-block;
  width: 100%;
  max-width: 250px;
}

@media screen and (max-width: 768px) {
  .header__btn a {
    max-width: 220px;
  }
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.border-red {
  color: #C20242;
  font-weight: 700;
  background-image: linear-gradient(transparent calc(100% - 7px), #FED400 calc(100% - 7px), #FED400 100%);
  background-repeat: no-repeat;
  background-position: bottom;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ========================================
    トップページ
    ======================================== 
*/
body {
  background: #FFFCF7;
  color: #4C4044;
}


.mainV {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #eee;
  padding-bottom: 20px;
  background-image: url("../img/pc/mv-bg.webp");
}

@media (max-width: 600px) {
  .mainV {
    background-image: url("../img/sp/mv-bg.webp");
  }
}

.mainV__inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 50px;
}

@media (max-width: 1080px) {
  .mainV__inner {
    margin: 0;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .mainV__inner {
    flex-direction: column;
    padding-top: 46px;
    gap: 20px;
    padding-bottom: 20px;
  }
}

.mainV__left {
  width: 55%;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .mainV__left {
    width: 100%;
  }
}

/* ========================================
    メリット
    ======================================== 
*/
.merit__txt {
  text-align: center;
  margin-top: 22px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .merit__txt {
    text-align: left;
    font-size: 14px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 600px) {
  .merit__txt--sp {
    font-weight: 700;
  }
}

.merit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .merit__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 18px;
  }
}

/* ========================================
    リスク
    ======================================== 
*/
.risk {
  padding: 100px 0;
  background: url("../img/common/risk-bg.webp") center center/cover no-repeat;
}

@media (max-width: 600px) {
  .risk {
    padding: 60px 0;
  }
}

.risk-img-02 {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .risk-img-02 {
    margin-top: 30px;
  }
}

/* ========================================
    理由
    ======================================== 
*/
.m-contents {
  padding: 80px 50px;
  padding-bottom: 50px;
  border: 1px solid #948B8B;
  border-radius: 10px;
  background: #FFFFFF;
  position: relative;
  margin-top: 72px;
}

@media (max-width: 768px) {
  .m-contents {
    padding: 50px 30px;
  }
}

@media (max-width: 600px) {
  .m-contents {
    padding: 50px 20px;
    padding-bottom: 20px;
    margin-top: 44px;
  }
}

.m-content-ttl {
  font-size: 26px;
  font-weight: 700;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "MS PMincho", serif;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .m-content-ttl {
    font-size: 20px;
    align-items: baseline;
  }
}

.m-content-ttl span {
  flex-shrink: 0;
  display: inline-block;
  line-height: 1.5;
  font-size: 25px;
  background: #3E2830;
  color: #FFFFFF;
  border-radius: 30px;
  padding: 0px 14px;
  width: fit-content;
  margin-right: 10px;
  font-family: "Crimson Text", "Georgia", serif;
}

@media (max-width: 600px) {
  .m-content-ttl span {
    font-size: 22px;
    padding: 0px 12.5px;
    margin-right: 5px;
  }
}

.m-content-txt {
  margin-top: 28px;
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 600px) {
  .m-content-txt {
    margin-top: 10px;
    font-size: 14px;
  }
}

.m-content-txt span {
  color: #C20242;
  font-weight: bold;
}

.reason__contents-head {
  width: 60%;
  margin: 0 auto;
  position: absolute;
  height: 90px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
}

@media (max-width: 600px) {
  .reason__contents-head {
    width: 100%;
    height: 65px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -30%);
  }
}

.reason__contents-head img {
  object-fit: contain;
}

.reason__content {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .reason__content {
    flex-direction: column;
  }
}

.reason__content-left {
  width: 50%;
  padding-right: 40px;
  min-width: 340px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .reason__content-left {
    min-width: 300px;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .reason__content-left {
    width: 100%;
    padding-right: 0;
    min-width: auto;
  }
}

.reason__content-separator {
  width: 100%;
  height: 1px;
  background: #948B8B;
  margin: 19px 0;
}

.reason__content-right {
  width: 50%;
}

@media (max-width: 600px) {
  .reason__content-right {
    width: 100%;
    margin-top: 30px;
  }
}

.reason__txt {
  text-align: center;
  line-height: 1.75;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .reason__txt {
    margin-top: 15px;
    font-size: 14px;
    text-align: left;
  }
}

.reason__img {
  margin-top: 40px;
}

.strength {
  margin-top: 70px;
}

@media (max-width: 600px) {
  .strength {
    margin-top: 40px;
  }
}

.strength-img {
  margin-top: 70px;
}

@media (max-width: 600px) {
  .strength-img {
    margin-top: 20px;
  }
}

.strength__contents-head {
  width: 65%;
  margin: 0 auto;
  height: 90px;
  margin-bottom: 13px;
}

@media (max-width: 600px) {
  .strength__contents-head {
    width: 100%;
    height: 93px;
    margin-bottom: 8px;
  }
}

.strength__contents-head img {
  object-fit: contain;
}

.strength__content {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #FFFFFF;
  padding: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-right: 40px;
  border-radius: 10px;
  border: 1px solid #948B8B;
}

@media (max-width: 768px) {
  .strength__content {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .strength__content {
    flex-direction: column;
    padding-right: 20px;
  }
}

.strength__content-right {
  padding-left: 10px;
}

.strength__content-left {
  width: 32%;
  flex-shrink: 0;
  min-width: 300px;
}

@media screen and (max-width: 1200px) {
  .strength__content-left {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .strength__content-left {
    min-width: 220px;
  }
}

@media (max-width: 600px) {
  .strength__content-left {
    width: 100%;
    min-width: auto;
  }
}

/* ========================================
    悩み解決
    ======================================== 
*/
.problem {
  background: #F7F2EB;
  padding: 100px 0;
}

@media (max-width: 600px) {
  .problem {
    padding: 60px 0;
  }
}

.problem__ttl::after {
  display: none;
}

.problem-img {
  position: relative;
  margin-top: 20px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .problem-img {
    margin-top: 2px;
    margin-bottom: 20px;
  }
}

.problem-img picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.problem-img picture:first-child {
  position: relative;
  z-index: 1;
}

.problem-img picture:nth-child(2) {
  z-index: 2;
}

.problem-img picture:nth-child(3) {
  z-index: 3;
}

.problem-img picture img {
  width: 100%;
  height: auto;
  display: block;
}

.problem__txt {
  text-align: center;
  margin-top: 18px;
}

@media (max-width: 600px) {
  .problem__txt {
    font-size: 14px;
    text-align: left;
  }
}

.problem-support {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .problem-support {
    margin-top: 30px;
  }
}

.problem-support--mt70 {
  margin-top: 70px;
}

@media (max-width: 600px) {
  .problem-support--mt70 {
    margin-top: 40px;
  }
}

/* ========================================
    収益モデル
    ======================================== 
*/
.profit-model__txt {
  text-align: center;
  margin-top: 18px;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .profit-model__txt {
    font-size: 14px;
    text-align: left;
  }
}

.profit-model__img {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .profit-model__img {
    margin-top: 30px;
  }
}

/* ========================================
    オーナーの声
    ======================================== */
.owner-voice {
  padding: 100px 0;
  background: #F7F2EB;
}

@media (max-width: 600px) {
  .owner-voice {
    padding: 60px 0;
  }
}

.owner-voice__txt {
  text-align: center;
  margin-top: 18px;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .owner-voice__txt {
    font-size: 14px;
    text-align: left;
  }
}

.owner-voice__slider {
  position: relative;
  overflow: visible;
}

.owner-voice__slider .splide {
  overflow: hidden;
}

.owner-voice__slider .splide__pagination {
  position: static;
  margin-top: 20px;
  gap: 10px;
}

@media (max-width: 600px) {
  .owner-voice__slider .splide__pagination {
    margin-top: 15px;
  }
}

.owner-voice__slider .splide__pagination .splide__pagination__page {
  background-color: #FFF;
  width: 10px;
  height: 10px;
  margin: 0;
}

@media (max-width: 600px) {
  .owner-voice__slider .splide__pagination .splide__pagination__page {
    width: 15px;
    height: 15px;
  }
}

.owner-voice__slider .splide__pagination .splide__pagination__page.is-active {
  background-color: rgb(76, 64, 68);
  transform: scale(1);
}

.splide-button-prev,
.splide-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media (max-width: 768px) {

  .splide-button-prev,
  .splide-button-next {
    width: 40px;
    height: 40px;
  }
}

.splide-button-prev img,
.splide-button-next img {
  width: 100%;
  height: auto;
  display: block;
}

.splide-button-prev {
  left: -30px;
}

@media (max-width: 1080px) {
  .splide-button-prev {
    left: -15px;
  }
}

@media (max-width: 768px) {
  .splide-button-prev {
    left: -8px;
  }
}

.splide-button-next {
  right: -30px;
}

@media (max-width: 1080px) {
  .splide-button-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .splide-button-next {
    right: 0px;
  }
}

.splide__slide {
  position: relative;
  width: 100%;
}

.owner-voice__open-btn {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 37%;
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.3s ease;
  min-width: 310px;
}

@media (max-width: 768px) {
  .owner-voice__open-btn {
    bottom: 15px;
  }
}

@media (max-width: 600px) {
  .owner-voice__open-btn {
    width: 85%;
    bottom: 15px;
    left: 50%;
    transform: translateX(calc(-50% - 4px));
  }
}

@media (max-width: 600px) {
  .owner-voice__container {
    padding: 0 16px;
    padding-right: 8px;
  }
}

.owner-voice__open-btn:hover {
  opacity: 0.6;
}

/* ========================================
    オーナーの声ポップアップ
    ======================================== */
.owner-voice-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.owner-voice-popup--active {
  opacity: 1;
  visibility: visible;
}

.owner-voice-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.owner-voice-popup__content {
  position: relative;
  background: #FFFFFF;
  width: 90%;
  max-width: 1032px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .owner-voice-popup__content {
    width: 95%;
    max-height: 95vh;
    padding: 20px;
  }
}

.owner-voice-popup__close-btn {
  position: fixed;
  top: -10px;
  right: calc((100vw - min(90vw, 1032px)) / 2 + 20px);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #E0E0E0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transform: translateY(100%);
  transition: background 0.3s ease;
}

@media (max-width: 600px) {
  .owner-voice-popup__close-btn {
    top: 10px;
    right: 5px;
    width: 60px;
    height: 60px;
    transform: translateY(0%);
  }
}

.owner-voice-popup__close-btn:hover {
  background: #CCCCCC;
}

.owner-voice-popup__close-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.owner-voice-popup__header {
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .owner-voice-popup__header {
    margin-bottom: 20px;
  }
}

.owner-voice-popup__store-name {
  font-size: 14px;
  color: #4C4044;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .owner-voice-popup__store-name {
    font-size: 12px;
  }
}

.owner-voice-popup__owner-name {
  font-size: 24px;
  font-weight: 700;
  color: #4C4044;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .owner-voice-popup__owner-name {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .owner-voice-popup__intro-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.owner-voice-popup__intro {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

@media (max-width: 600px) {
  .owner-voice-popup__intro {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
}

.owner-voice-popup__photo {
  flex-shrink: 0;
  width: 35%;
}

@media (max-width: 600px) {
  .owner-voice-popup__photo {
    width: 100%;
  }
}

.owner-voice-popup__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.owner-voice-popup__intro-text-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Serif JP", "serif";
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .owner-voice-popup__intro-text-title {
    text-align: center;
    font-size: 14px;
    margin-bottom: 2px;
  }
}

.owner-voice-popup__intro-text-name {
  font-size: 25px;
  font-weight: 700;
  font-family: "Noto Serif JP", "serif";
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .owner-voice-popup__intro-text-name {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.owner-voice-popup__intro-text {
  flex: 1;
  color: #4C4044;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .owner-voice-popup__intro-text {
    font-size: 14px;
  }
}

.owner-voice-popup__intro-text p {
  margin: 0 0 10px 0;
}

.owner-voice-popup__intro-text p:last-child {
  margin-bottom: 0;
}

.owner-voice-popup__interview {
  margin-top: 30px;
  background: #ECE8E1;
  position: relative;
  padding: 40px;
  border-radius: 10px;
  padding-top: 80px;
}

@media (max-width: 600px) {
  .owner-voice-popup__interview {
    padding: 20px;
    padding-top: 60px;
  }
}

.owner-voice-popup__interview-label {
  text-align: center;
  position: absolute;
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 30px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -30%);
}

.owner-voice-popup__interview-label img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.owner-voice-popup__qa {
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .owner-voice-popup__qa {
    margin-bottom: 20px;
  }
}

.owner-voice-popup__qa:last-child {
  margin-bottom: 0;
}

.owner-voice-popup__question {
  background: #948B8B;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  padding: 6px 24px;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 0;
  font-family: "Noto Serif JP", "serif";
}

@media (max-width: 600px) {
  .owner-voice-popup__question {
    font-size: 16px;
    padding: 10px 10px;
  }
}

.owner-voice-popup__answer {
  padding: 20px 24px;
  margin-top: 0;
}

@media (max-width: 600px) {
  .owner-voice-popup__answer {
    padding: 10px 0;
    padding-top: 15px;
  }
}

.owner-voice-popup__answer-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #4C4044;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .owner-voice-popup__answer-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.owner-voice-popup__answer-text {
  font-size: 16px;
  color: #4C4044;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 600px) {
  .owner-voice-popup__answer-text {
    font-size: 14px;
  }
}

.owner-voice-popup__footer {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 600px) {
  .owner-voice-popup__footer {
    margin-top: 20px;
    padding-top: 0px;
  }
}

.owner-voice-popup__close-btn-footer {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.owner-voice-popup__close-btn-footer img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.owner-voice-popup__close-btn-footer:hover {
  opacity: 0.7;
}

.flow__txt {
  text-align: center;
  margin-top: 18px;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .flow__txt {
    font-size: 14px;
    text-align: left;
  }
}

.flow-img {
  margin-top: 30px;
}

@media (max-width: 600px) {
  .flow-img {
    margin-top: 27px;
  }
}

/* ========================================
    FAQ
    ======================================== */
.faq {
  background: #FFFCF7;
}

.faq__list-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 600px) {
  .faq__list-wrap {
    margin-top: 30px;
    gap: 15px;
  }
}

.faq__item {
  border: 1px solid #948B8B;
  border-radius: 8px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  background: #FFFFFF;
  align-items: baseline;
  padding: 15px;
  gap: 12px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 600px) {
  .faq__question {
    padding: 12px 10px;
    padding-left: 13px;
    gap: 10px;
  }
}

.faq__label {
  font-weight: 700;
  flex-shrink: 0;
  font-family: "Crimson Text", "Noto Serif JP", "Hiragino Mincho ProN", "serif";
}

.faq__label--q {
  font-size: 30px;
}

@media (max-width: 600px) {
  .faq__label--q {
    font-size: 22px;
  }
}

.faq__label--a {
  font-size: 30px;
  color: hsl(100, 40%, 40%);
  margin-right: 8px;
  transform: translateY(2px);
}

@media (max-width: 600px) {
  .faq__label--a {
    font-size: 22px;
  }
}

.faq__question-text {
  flex: 1;
  font-size: 16px;
  color: hsl(0, 0%, 20%);
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 600px) {
  .faq__question-text {
    font-size: 14px;
  }
}

.faq__toggle-btn {
  width: 50px;
  height: 40px;
  border-radius: 30px;
  background: #4C4044;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.faq__toggle-btn:hover {
  background: hsl(0, 0%, 25%);
}

@media (max-width: 600px) {
  .faq__toggle-btn {
    width: 38px;
    height: 32px;
  }
}

.faq__toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}

.faq__toggle-icon::before,
.faq__toggle-icon::after {
  content: "";
  position: absolute;
  background: #FFFFFF;
  transition: transform 0.3s ease;
}

.faq__toggle-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__toggle-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 600px) {
  .faq__toggle-icon {
    width: 12px;
    height: 12px;
  }

  .faq__toggle-icon::before {
    width: 12px;
  }

  .faq__toggle-icon::after {
    height: 12px;
  }
}

.faq__item--active .faq__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  padding-right: 42px;
  padding-left: 14px;
  border-top: 1px solid #948B8B;
  margin-top: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

@media (max-width: 600px) {
  .faq__answer {
    padding: 0 13px;
    padding-right: 23px;
  }
}

.faq__item--active .faq__answer {
  opacity: 1;
  padding-top: 0;
  padding-bottom: 30px;
}

@media (max-width: 600px) {
  .faq__item--active .faq__answer {
    padding: 16px 13px;
    padding-right: 23px;
    padding-top: 0;
  }
}

.faq__answer-text {
  flex: 1;
  font-size: 16px;
  color: hsl(0, 0%, 20%);
  line-height: 1.75;
  margin: 0;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .faq__answer-text {
    font-size: 14px;
  }
}

/* ========================================
    会社概要
    ======================================== */
.company-info {
  padding-bottom: 0;
  background: #FFFCF7;
}

.company-info__content {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .company-info__content {
    margin-top: 30px;
  }
}

.company-info__list {
  background: #FFFFFF;
  border: 1px solid #948B8B;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.company-info__item {
  display: flex;
  border-bottom: 1px solid #948B8B;
}

.company-info__item:last-child {
  border-bottom: none;
}

.company-info__term {
  width: 200px;
  flex-shrink: 0;
  background: #4C4044;
  color: #FFFFFF;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  border-right: 1px solid #948B8B;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .company-info__term {
    width: 120px;
    padding: 16px 20px;
    font-size: 14px;
  }
}

.company-info__desc {
  flex: 1;
  background: #FFFFFF;
  color: #4A4A4A;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .company-info__desc {
    padding: 16px 20px;
    font-size: 14px;
  }
}

.footer {
  padding-bottom: 50px;
}

@media (max-width: 600px) {
  .footer {
    padding-bottom: 120px;
  }
}

.footer__copyright {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
  color: #4C4044;
  line-height: 1.75;
  font-family: "Crimson Text", "Noto Serif JP", "Hiragino Mincho ProN", "serif";
}

.page-contact-confirm .footer,
.page-thanks .footer {
  padding-bottom: 0;
}

.page-contact-confirm .footer__copyright,
.page-thanks .footer__copyright {
  display: none;
}

/* ========================================
    お問い合わせ
    ======================================== */
.contact {
  background-color: #FED400;
  padding: 120px 0;
  position: relative;
}

@media (max-width: 600px) {
  .contact {
    padding: 56px 20px 40px;
  }
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/common/cta-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

.contact>* {
  position: relative;
  z-index: 1;
}

.contact__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact__info {
  font-size: 16px;
  text-align: center;
  line-height: 2;
  margin-top: 25px;
  padding: 0 20px;
}

@media (max-width: 600px) {
  .contact__info {
    font-size: 13px;
    margin-top: 20px;
  }
}

.contact__inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 0 40px;
  padding-top: 28px;
}

@media (max-width: 600px) {
  .contact__inner {
    padding-bottom: 20px;
    padding-top: 23px;
  }
}

/* .contact-label {
  width: 30%;
  max-width: 330px;
  min-width: 240px;
  margin: 0 auto;
  transform: translate(0, -30%);
} */

.contact-label {
  width: 30%;
  max-width: 330px;
  min-width: 240px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
}

.contact__info-banner {
  width: 75%;
  background-color: #FFF8D2;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact__info-banner {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .contact__info-banner {
    padding: 17px 22px;
    gap: 11px;
    padding-left: 20px;
  }
}

.contact__info-title {
  flex-shrink: 0;
  padding-right: 30px;
  border-right: 1px solid #948B8B;
  display: flex;
  line-height: 70px;
}

@media (max-width: 768px) {
  .contact__info-title {
    padding-right: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: 1px solid #948B8B;
    width: 100%;
    justify-content: center;
    line-height: inherit;
  }
}

.contact__info-title p {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
  align-items: center;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 600px) {
  .contact__info-title p {
    font-size: 14px;
  }
}

.contact__info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 600px) {
  .contact__info-content {
    width: 100%;
    gap: 7px;
  }
}

.contact__info-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  justify-content: left;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .contact__info-item {
    font-size: 13px;
    gap: 5px;
  }
}

.contact__info-item span {
  flex: 1;
  text-align: left;
  font-weight: 500;
}

.contact__info-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 600px) {
  .contact__info-icon {
    width: 20px;
    height: 20px;
  }
}

.contact__form {
  width: 100%;
  padding: 30px 50px 0;
  border-radius: 0;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .contact__form {
    padding: 20px 20px 0;
  }
}

.wpcf7-form.init {
  border-top: 1px solid #948B8B;
  padding-top: 40px;
}

@media (max-width: 600px) {
  .wpcf7-form.init {
    padding-top: 20px;
  }
}

.form-unit {
  width: 100%;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .form-unit {
    margin-bottom: 10px;
    font-size: 14px;
    flex-direction: column;
  }
}

.form-unit__head {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  flex-shrink: 0;
  width: 220px;
  gap: 10px;
  color: #3E2830;
}

@media (max-width: 600px) {
  .form-unit__head {
    font-size: 14px;
    margin-bottom: 8px;
    gap: 5px;
    line-height: 1.5;
  }
}

.m-required::before {
  content: "必須";
  display: inline-block;
  background-color: #FED400;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  width: 60px;
  line-height: 30px;
  border-radius: 30px;
  padding: 2px 6px;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 600px) {
  .m-required::before {
    font-size: 12px;
    padding: 1px 5px;
    margin-left: 0;
    width: 50px;
    line-height: 25px;
    border-radius: 25px;
  }
}

.m-optional::before {
  content: "任意";
  display: inline-block;
  background-color: #4C4044;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  width: 60px;
  line-height: 30px;
  border-radius: 30px;
  padding: 2px 6px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .m-optional::before {
    font-size: 12px;
    padding: 1px 5px;
    margin-left: 0;
    width: 50px;
    line-height: 25px;
    border-radius: 25px;
  }
}

.form-unit>.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .form-unit>.wpcf7-form-control-wrap {
    margin-top: 6px;
  }
}

.form-unit:has(.form-unit__head)>.wpcf7-form-control-wrap {
  margin-top: 0;
  display: block;
}

.form-unit:has(.wpcf7-radio)>.wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.form-unit:has(.wpcf7-radio):has(.form-unit__head)>.wpcf7-form-control-wrap {
  margin-top: 0;
}

.form-unit__input {
  width: 100%;
  height: auto;
  padding: 10px 12px;
  border: 1px solid #948B8B;
  background: #F7F2EB;
  border-radius: 5px;
  min-height: 50px;
  font-size: 16px;
  box-sizing: border-box;
  color: #3E2830;
  font-family: inherit;
}

@media (max-width: 600px) {
  .form-unit__input {
    padding: 8px 10px;
  }
}

.form-unit__input::placeholder {
  color: #C9BDBD;
}

@media (max-width: 600px) {
  .form-unit__input::placeholder {
    font-size: 14px;
  }
}

.form-unit__input:focus {
  outline: 1px solid #948B8B;
  outline-offset: -1px;
  border-color: #948B8B;
}

.form-unit__input:not(:placeholder-shown),
.form-unit__input.filled {
  background-color: #FFF8D2;
}

.form-unit__textarea {
  width: 100%;
  padding: 10px 12px;
  height: 120px;
  border: 1px solid #948B8B;
  background: #F7F2EB;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  resize: vertical;
  font-family: inherit;
  color: #3E2830;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .form-unit__textarea {
    padding: 8px 10px;
    height: 120px;
  }
}

.form-unit__textarea::placeholder {
  color: #C9BDBD;
}

@media (max-width: 600px) {
  .form-unit__textarea::placeholder {
    font-size: 14px;
  }
}

.form-unit__textarea:focus {
  outline: 1px solid #948B8B;
  outline-offset: -1px;
  border-color: #948B8B;
}

.form-unit__textarea:not(:placeholder-shown),
.form-unit__textarea.filled {
  background-color: #FFF8D2;
}

.form-unit__select {
  width: 100%;
  height: auto;
  min-height: 50px;
  padding: 10px 12px;
  padding-right: 40px;
  border: 1px solid #948B8B;
  background: #F7F2EB;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  appearance: none;
  background-image: url("../img/common/pulldown.webp");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  background-size: 10px 10px;
  color: #3E2830;
  font-family: inherit;
}

@media (max-width: 600px) {
  .form-unit__select {
    padding: 8px 10px;
    padding-right: 36px;
    font-size: 14px;
    background-position: right 10px center;
  }
}

.form-unit__select:focus {
  outline: 1px solid #948B8B;
  outline-offset: -1px;
  border-color: #948B8B;
}

.form-unit__select.filled {
  background-color: #FFF8D2;
}

.form-unit__select option {
  padding: 8px;
  color: #000;
}

.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 0;
}

@media (max-width: 600px) {
  .wpcf7-radio {
    gap: 6px;
  }
}

.wpcf7-radio input:hover,
.wpcf7-radio label:hover {
  cursor: pointer;
}

.wpcf7-list-item {
  border-radius: 5px;
  background: #F7F2EB;
  display: inline-flex;
  height: 50px;
  align-items: center;
  margin-left: 0;
  border: 1px solid #948B8B;
}

.wpcf7-list-item:has(input[type=radio]:checked) {
  background-color: #FFF8D2;
}

.wpcf7-list-item label {
  width: 100%;
  height: 100%;
  font-size: 16px;
  list-style: none;
  line-height: 50px;
  vertical-align: middle;
  padding-left: 10px;
  cursor: pointer;
  color: #3E2830;
  font-weight: normal;
}

@media (max-width: 600px) {
  .wpcf7-list-item label {
    font-size: 14px;
  }
}

input[type=radio] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
  margin-right: 5px;
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4C4044;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #948B8B;
  position: relative;
  background-color: #F7F2EB;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

.form-checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 8px;
  height: 16px;
  border-right: 2px solid #C9BDBD;
  border-bottom: 2px solid #C9BDBD;
  transform: rotate(45deg) translate(-50%, -50%);
}

.form-checkbox:checked {
  background-color: #FFF8D2;
}

.form-checkbox:checked::after {
  border-right-color: #3E2830;
  border-bottom-color: #3E2830;
}

.wpcf7-acceptance label {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .wpcf7-acceptance label {
    font-size: 13px;
  }
}

.form-consent {
  margin-top: 4px;
  text-align: left;
}

.form-consent .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-right: 0;
  height: inherit;
  background: none;
  border: none;
}

@media (max-width: 600px) {
  .form-consent .wpcf7-list-item {
    flex-direction: row;
    gap: 8px;
  }
}

.form-consent .wpcf7-list-item input[type=checkbox] {
  margin-top: 2px;
  flex-shrink: 0;
}

.form-consent .wpcf7-list-item label {
  margin-left: 0;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
  text-align: left;
  color: #3E2830;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 600px) {
  .form-consent .wpcf7-list-item label {
    font-size: 13px;
  }
}

.form-consent .wpcf7-list-item label a {
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.form-submit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .form-submit-wrap {
    flex-direction: column;
    gap: 15px;
  }
}

.contact__form--confirm .form-submit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .contact__form--confirm .form-submit-wrap {
    flex-direction: column;
    gap: 0px;
  }
}

.contact__form--confirm .form-submit-wrap .wpcf7-submit.form__submit {
  background-image: url("../img/common/submit-btn.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: transparent;
  border: none;
  padding: 0;
  width: auto;
  width: 360px;
  height: 95px;
  margin: 0;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s;
  color: transparent;
  font-size: 0;
  line-height: 0;
  position: relative;
  flex: 0 0 auto;
}

@media (max-width: 600px) {
  .contact__form--confirm .form-submit-wrap .wpcf7-submit.form__submit {
    min-width: 250px;
    height: 95px;
    max-width: 100%;
    width: 100%;
    background-size: contain;
  }
}

.contact__form--confirm .form-submit-wrap .wpcf7-submit.form__submit:hover {
  opacity: 0.8;
}

.contact__form--confirm .form-submit-wrap .wpcf7-submit.form__submit:active {
  opacity: 0.9;
}

.contact__form--confirm .form-submit-wrap .wpcf7-submit.form__submit::before,
.contact__form--confirm .form-submit-wrap .wpcf7-submit.form__submit::after {
  display: none;
}

.contact__form--confirm .form-submit-wrap input.wpcf7-form-control.wpcf7-previous {
  background-image: url("../img/common/prev-btn.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: transparent;
  border: none;
  padding: 0;
  width: auto;
  width: 360px;
  height: 95px;
  margin: 0;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s;
  color: transparent;
  font-size: 0;
  line-height: 0;
  position: relative;
  flex: 0 0 auto;
}

@media (max-width: 600px) {
  .contact__form--confirm .form-submit-wrap input.wpcf7-form-control.wpcf7-previous {
    min-width: 250px;
    max-width: 100%;
    width: 100%;
    height: 95px;
    background-size: contain;
  }
}

.contact__form--confirm .form-submit-wrap input.wpcf7-form-control.wpcf7-previous:hover {
  opacity: 0.8;
}

.contact__form--confirm .form-submit-wrap input.wpcf7-form-control.wpcf7-previous:active {
  opacity: 0.9;
}

.wpcf7-submit.form-submit__btn {
  background-image: url("../img/common/confirm-btn.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 100%;
  min-width: 300px;
  height: 95px;
  margin: 0 auto;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s;
  color: transparent;
  font-size: 0;
  line-height: 0;
  position: relative;
}

@media (max-width: 600px) {
  .wpcf7-submit.form-submit__btn {
    min-width: 250px;
    height: 85px;
    background-size: contain;
    background-image: url("../img/common/sp-confirm-btn.webp");
  }
}

.wpcf7-submit.form-submit__btn:hover {
  opacity: 0.8;
}

.wpcf7-submit.form-submit__btn:active {
  opacity: 0.9;
}

.wpcf7-submit.form-submit__btn::before,
.wpcf7-submit.form-submit__btn::after {
  display: none;
}

.wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
  height: 0;
}

.wpcf7-spinner {
  display: none !important;
}

input.wpcf7-form-control.wpcf7-previous {
  display: block;
  margin: 0 auto;
}

.contact-next-page {
  padding-top: 100px;
  min-height: 100vh;
}

@media (max-width: 600px) {
  .contact-next-page {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.contact__thanks-info {
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
}

@media (max-width: 600px) {
  .contact__thanks-info {
    margin-top: 15px;
  }
}

.contact__thanks-message {
  font-size: 30px;
  font-weight: 700;
  color: #4C4044;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}

@media (max-width: 600px) {
  .contact__thanks-message {
    font-size: 20px;
  }
}

.contact__thanks-text {
  font-size: 16px;
  color: #4C4044;
  line-height: 1.75;
  margin: 0 0 50px 0;
}

@media (max-width: 600px) {
  .contact__thanks-text {
    font-size: 14px;
    margin-bottom: 40px;
    text-align: left;
  }
}

.contact__thanks-text p {
  margin: 0 0 15px 0;
}

.contact__thanks-text p:last-child {
  margin-bottom: 0;
}

.contact__thanks-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 600px) {
  .contact__thanks-btn-wrap {
    margin-top: 40px;
  }
}

.contact__thanks-btn {
  display: inline-block;
  transition: opacity 0.3s;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.contact__thanks-btn:hover {
  opacity: 0.8;
}

.contact__thanks-btn img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.contact__form--confirm .form-unit {
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #948B8B;
}

@media (max-width: 768px) {
  .contact__form--confirm .form-unit {
    align-items: flex-start;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.contact__form--confirm .wpcf7-form.init {
  padding-top: 20px;
}

.contact__form--confirm .form-unit__head {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact__form--confirm .form-unit__head {
    padding: 13px 10px;
    width: 100%;
    background: #F7F2EB;
    border-bottom: 1px solid #948B8B;
  }
}

@media (max-width: 768px) {
  .form-unit__input-wrap {
    padding: 30px 0 30px 10px;
  }

  .form-unit__textarea-wrap {
    padding: 20px 0 20px 10px;
  }
}

.contact__form--confirm .form-unit__textarea-wrap {
  white-space: pre-line;
}

@media (max-width: 768px) {
  .contact__form--confirm .wpcf7-form.init {
    padding-top: 0;
  }
}

.page-contact-confirm .form-consent .wpcf7-list-item label {
  justify-content: center;
}

@media (max-width: 600px) {
  .page-contact-confirm .form-consent .wpcf7-list-item label {
    justify-content: left;
    margin-top: 15px;
  }
}

/*# sourceMappingURL=main.css.map */