@charset "utf-8";

/*******************************
共通CSS
*******************************/
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
}

a {
  color: var(--color-text) !important;
}

/*********************************
共通パーツ用CSS
*********************************/
.cnt-1000 {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.sec-head .sec-lead {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin: 30px auto 0;
}

.btn-wrapper {
  background-color: var(--color-grey);
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .btn-wrapper {
    padding: 30px 15px;
  }
}

/*********************************
グロナビ
*********************************/
.nav-panel_inner {
  gap: 0;
}

.gnav-list {
  gap: 0;
  min-height: 100px;
}

@media screen and (min-width: 1261px) {
  .gnav-item:not(:last-of-type)::before {
    content: "";
    width: 1px;
    height: 36px;
    background-color: var(--color-text);
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 1260px) {
  .nav-panel_inner {
    display: block;
    padding-bottom: 60px;
  }

  .gnav-list {
    max-width: 500px;
    min-height: 0;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
  }

  .gnav-item a {
    border: solid 1px var(--color-white);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  .gnav-item a span {
    padding: 0 30px;
  }
}

.gnav-item {
  min-width: 180px;
  height: 100%;
}

.gnav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1260px) {
  .gnav-item {
    width: 100%;
    height: 48px;
  }

  .gnav-item.gnav-accordion {
    height: auto;
  }

  .gnav-item .pc-only {
    display: none;
  }
}

.gnav-accordion {
  position: relative;
  height: 100%;
  min-width: 220px;
}

.gnav-accordion .accordion-btn {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: var(--font-serif);
  font-weight: bold;
  line-height: 1.25;
  transition: linear .3s;
}

@media (hover: hover) {
  .gnav-accordion .accordion-btn:hover {
    opacity: 1;
    background-color: #FFF8DE !important;
  }

  @media screen and (max-width: 1260px) {
    .gnav-accordion .accordion-btn:hover {
      opacity: 1;
      background-color: var(--color-submain) !important;
    }
  }
}

@media screen and (min-width: 1261px) {
  .gnav-accordion.is-show .accordion-btn {
    background-color: var(--color-bg-yellow);
  }
}

@media screen and (max-width: 1260px) {
  .gnav-accordion .accordion-btn {
    height: 48px;
    border: solid 1px var(--color-white);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
}

.gnav-accordion .accordion-btn .btn-txt {
  padding: 0 20px;
  position: relative;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@media screen and (min-width: 1261px) {
  .gnav-accordion .accordion-btn .btn-txt {
    padding: 0 25px 0 15px;
  }
}

.gnav-accordion .accordion-btn::before {
  font-family: recop-iconfonts;
  content: "\E842";
  display: inline-block;
  position: absolute;
  font-size: 22px;
  top: calc(50% + 1px);
  right: 17px;
  padding-top: 2px;
  transform: translateY(-50%);
  font-weight: normal;
}

.gnav-accordion.is-show .accordion-btn::before {
  top: calc(50% - 1px);
  transform: translateY(-50%) rotate(-180deg);
}

.gnav-accordion .gnav-accordion-list {
  position: absolute;
  width: 100%;
  background-color: var(--color-white);
}

@media screen and (max-width: 1260px) {
  .gnav-accordion .gnav-accordion-list {
    position: static;
    background-color: transparent;
    max-width: 500px;
    margin: 20px auto 0;
    padding: 0 30px;
  }

  .gnav-accordion .gnav-accordion-list .nav-item:not(:first-of-type) {
    margin-top: 10px;
  }
}

.gnav-accordion .gnav-accordion-list .nav-item {
  position: relative;
  width: 100%;
  font-family: var(--font-serif);
  font-weight: bold;
  line-height: 1.25;
}

.gnav-accordion .gnav-accordion-list .nav-item a {
  padding: 0 25px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: .3s linear;
  position: relative;
  background-color: var(--color-bg-yellow);
}

.gnav-accordion .gnav-accordion-list .nav-item a:hover {
  text-decoration: none !important;
}

.gnav-accordion .gnav-accordion-list .nav-item a::before {
  font-family: recop-iconfonts;
  content: "\E842";
  display: inline-block;
  position: absolute;
  font-size: 22px;
  top: calc(50% + 1px);
  right: 10px;
  padding-top: 2px;
  transform: translateY(-50%);
  font-weight: normal;
}

@media screen and (max-width: 1260px) {
  .gnav-accordion .gnav-accordion-list .nav-item a::before {
    color: var(--color-text);
    z-index: 1;
    right: 17px;
  }
}

@media (hover: hover) {
  li.nav-item:hover {
    opacity: 1;
  }

  .gnav-accordion .gnav-accordion-list .nav-item a:hover {
    opacity: .6;
  }
}

@media screen and (max-width: 1260px) {
  .gnav-accordion .gnav-accordion-list .nav-item a {
    border: none;
    box-shadow: none;
    background-color: var(--color-white);
    min-height: 48px;
    font-size: 16px;
  }
}

.banner-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 1261px) {
  .banner-item:nth-of-type(2) .nav-item {
    background-color: var(--color-text);
  }
}

@media screen and (max-width: 1260px) {
  .banner-list {
    margin-top: 30px;
    flex-direction: column;
  }

  .banner-item {
    width: 100%;
  }
}

/* KV */
.kv-section {
  padding-top: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 1260px) {
  .kv-section {
    padding-top: 0;
  }
}

.kv-section .section-inner {
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
}

.kv-section .section-inner::before,
.kv-section .section-inner::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/lp_common/lp_common_img/deco02.png) no-repeat center / contain;
  width: 94vw;
  max-width: 920px;
  aspect-ratio: 8 / 7;
  left: -48%;
  top: -38%;
  z-index: -1;
}

.kv-section .section-inner::after {
  top: auto;
  bottom: -40px;
  left: auto;
  right: -56%;
  width: 110vw;
  max-width: 1050px;
  background: url(/lp_common/lp_common_img/deco04.png) no-repeat center / contain;
}

@media screen and (max-width: 1260px) {
  .kv-section .section-inner {
    padding-top: 20px;
  }

  .kv-section .section-inner::before {
    top: -7%;
    left: -66%;
  }

  .kv-section .section-inner::after {
    bottom: auto;
    top: -1%;
  }
}

@media screen and (max-width: 767px) {
  .kv-section .section-inner {
    padding-bottom: 30px;
  }
}

.catch {
  font-size: 42px;
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
  padding-bottom: 50px;
  line-height: 1.3;
}

.catch h1 {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  margin: 0;
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
  .catch {
    font-size: 36px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .catch {
    font-size: 26px;
    padding-bottom: 30px;
  }
}

.catch * {
  font-family: inherit;
  font-weight: inherit;
}

.speech-bubble-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.speech-bubble-inner {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  font-size: 28px;
  font-weight: bold;
  color: var(--color-brown);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .speech-bubble-inner {
    font-size: 16px;
    max-width: 300px;
  }
}

.speech-bubble-inner::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-brown);
  border-radius: 50vh;
  z-index: 0;
  top: 0;
  left: 0;
}

.speech-bubble-inner::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #FFF6E0;
  border-radius: 50vh;
  z-index: -1;
  top: 4px;
  left: 5px;
}

@media screen and (max-width: 767px) {
  .speech-bubble-inner::after {
    top: 4px;
    left: 3px;
    width: calc(100% - 3px);
    height: calc(100% - 2px);
  }
}

.speech-bubble-inner p {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 6px 0;
}

.speech-bubble-inner p::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #FFF6E0;
  bottom: 0;
  z-index: 1;
  left: calc(50% - 15px);
}

.speech-bubble-inner p::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: var(--color-brown);
  bottom: -10px;
  z-index: 0;
  right: calc(50% - 20px);
  transform: rotate(-52deg);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .speech-bubble-inner p::before {
    width: 18px;
    left: calc(50% - 9px);
  }

  .speech-bubble-inner p::after {
    width: 15px;
    right: calc(50% - 12px);
    bottom: -6px;
  }
}

.speech-bubble-inner span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .speech-bubble-inner span {
    gap: 6px;
    padding: 0 20px 0 25px;
  }
}

.speech-bubble-inner span::before,
.speech-bubble-inner span::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 36px;
  height: 2px;
  border-radius: 50vh;
  background-color: var(--color-brown);
  top: calc(50% + 1px);
}

@media screen and (max-width: 767px) {

  .speech-bubble-inner span::before,
  .speech-bubble-inner span::after {
    width: 22px;
  }
}

.speech-bubble-inner span::before {
  left: -5px;
  transform: rotate(55deg);
}

.speech-bubble-inner span::after {
  right: -5px;
  transform: rotate(-55deg);
}

.speech-bubble-inner .icon {
  aspect-ratio: 22 / 36;
  height: 36px;
}

@media screen and (max-width: 767px) {
  .speech-bubble-inner .icon {
    height: 22px;
  }
}

.zokusei-card-list {
  display: flex;
  gap: 36px;
  color: var(--color-white);
  padding-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .zokusei-card-list {
    flex-direction: column;
    gap: 46px;
  }
}

.zokusei-card {
  flex: 1;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}

.zokusei-card:hover {
  opacity: 0.8;
}

.zokusei-card::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--color-brown);
  border-radius: 12px;
  z-index: -1;
  top: 7px;
  left: 7px;
}

.zokusei-card-label {
  font-size: 30px;
  font-family: var(--font-serif);
  font-weight: bold;
  text-align: center;
  padding: 8px 0 6px;
}

@media screen and (max-width: 767px) {
  .zokusei-card-label {
    font-size: 26px;
    padding: 6px 0 4px;
  }
}

.zokusei-card-inner {
  background-color: var(--color-main);
  color: var(--color-white) !important;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zokusei-card-inner:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .zokusei-card-image img {
    aspect-ratio: 3 / 1;
    width: 100%;
    object-fit: cover;
    object-position: 20% center;
  }
}

.zokusei-card-text-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 60px;
}

.zokusei-card-text-wrapper::before,
.zokusei-card-text-wrapper::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 24px solid var(--color-main);
  border-bottom: 0;
  bottom: -24px;
  left: calc(50% - 25px);
  z-index: 1;
}

.zokusei-card-text-wrapper::after {
  border-top: 24px solid var(--color-brown);
  bottom: -30px;
  left: calc((50% - 25px) + 6px);
  z-index: 0;
}

.zokusei-card-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 15px;
  line-height: 1.2;
  padding: 14px 50px;
}

@media screen and (max-width: 767px) {
  .zokusei-card-text {
    padding: 10px 40px;
    gap: 4px 10px;
  }
}

.kv-section .title-contents-wrapper {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-serif);
}

@media screen and (max-width: 767px) {
  .kv-section .title-contents-wrapper {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 10px;
  }
}

.kv-section .title-contents-wrapper * {
  font-family: inherit;
}

.kv-section .title-contents-wrapper .txt-box {
  font-family: "Noto Sans", sans-serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.txt-box {
  max-width: 950px;
  margin: 0 auto;
}

.page-title {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .page-title {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

/* 属性ヒーローコンテンツ */
.zokusei-hero {
  background: var(--color-main);
  color: var(--color-white);
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .zokusei-hero {
    margin: 0;
    flex-direction: column;
    min-height: auto;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .zokusei-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
  }
}

.zokusei-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .zokusei-hero-bg {
    aspect-ratio: 375 / 162;
    width: 100%;
    overflow: hidden;
  }

  .zokusei-hero-bg img {
    object-position: top;
  }
}

@media screen and (min-width: 768px) {
  .zokusei-hero::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(210, 135, 6, 1), rgba(210, 135, 6, 1) 50%, rgba(210, 135, 6, 0) 66%);
    z-index: 1;
  }
}

.zokusei-hero-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 10px 0 30%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .zokusei-hero-text-wrapper {
    justify-content: center;
    padding: 17px 20px 20px;
  }
}

.zokusei-hero-inner {
  width: 47%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .zokusei-hero-inner {
    width: 53%;
    padding-left: 30px
  }
}

@media screen and (max-width: 767px) {
  .zokusei-hero-inner {
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: center;
  }
}

.zokusei-hero-text {
  max-width: 480px;
  width: 100%;
}

.zokusei-hero-text .ttl {
  font-size: 44px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: bold;
  text-align: center;
}

.zokusei-hero-text .ttl * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.zokusei-hero-text * {
  font-size: 16px;
  color: var(--color-white);
}

.zokusei-hero-list {
  display: flex;
  gap: 5px 15px;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .zokusei-hero-text {
    max-width: none;
  }

  .zokusei-hero-text .ttl {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
  }

  .zokusei-hero-text p {
    font-size: 18px;
    text-align: left;
  }

  .zokusei-hero-text p span {
    display: inline;
  }
}

/* qa */
.qa-section {
  background-color: var(--color-bg-yellow);
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .qa-section {
    padding: 30px 0;
  }
}

.qa-section .sec-body {
  padding-top: 60px;
  max-width: 1115px;
}

.qa-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 39px;
  position: relative;
  justify-content: center;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .qa-card-list {
    gap: 50px 15px;
  }
}

@media screen and (max-width: 767px) {
  .qa-card-list {
    flex-direction: column;
  }
}

.qa-card-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 12px;
  width: calc((100% - 78px) / 3);
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .qa-card-item {
    width: calc((100% - 30px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .qa-card-item {
    width: 100%;
  }
}

.qa-card-q,
.qa-card-a {
  background-color: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 22px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.qa-card-q {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 10px 50px 0;
  line-height: 1.4;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .qa-card-q {
    padding: 10px 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .qa-card-q {
    font-size: 22px;
    height: 110px;
    padding: 10px 20px 0;
  }
}

.qa-card-q::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 16px solid var(--color-brown);
  border-bottom: 0;
  bottom: -16px;
  left: calc(50% - 12px);
  z-index: 1;
}

.qa-card-q * {
  font-family: inherit;
  font-weight: inherit;
}

.qa-card-q .qa-card-icon,
.qa-card-a .qa-card-icon {
  font-size: 22px;
  position: absolute;
  background-color: #666666;
  border-radius: 50vh;
  border: 2px solid var(--color-white);
  width: 40px;
  height: 40px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  z-index: 1;
}

.qa-card-a {
  padding: 22px 30px 30px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.qa-card-a .qa-card-icon {
  font-family: inherit;
  font-weight: inherit;
  position: relative;
  background-color: var(--color-main);
  color: var(--color-white);
  top: 0;
}

.qa-card-answer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  font-weight: normal;
  padding-top: 6px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .qa-card-a {
    gap: 6px;
    padding: 22px 30px;
  }

  .qa-card-answer {
    line-height: 1.5;
  }
}

.qa-card-answer .strong-txt {
  color: var(--color-brown);
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .qa-card-answer .strong-txt {
    font-size: 18px;
    line-height: 1.7;
  }
}

/* スタッフの声 */
.voice-section {
  background-color: var(--color-bg-yellow);
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .voice-section {
    overflow: hidden;
  }
}

@media screen and (max-width: 900px) {
  .voice-section {
    padding: 30px 0;
  }
}

.voice-section .sec-body {
  padding-top: 40px;
  max-width: 1115px;
  min-height: 584px;
}

@media screen and (max-width: 900px) {
  .voice-section .sec-body {
    padding-top: 20px;
  }
}

.voice-contents {
  position: relative;
}

@media screen and (max-width: 900px) {
  .voice-contents {
    display: flex;
    flex-direction: column;
  }
}

.voice-contents figure {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .voice-contents figure {
    order: 1;
    margin-top: -20px;
    margin-bottom: -30px;
  }
}

.voice-contents .speech-bubble-txt {
  position: absolute;
  margin: 0;
  font-size: 18px;
  text-align: center;
  padding: 0 10px;
}

@media screen and (max-width: 1200px) {
  .voice-contents .speech-bubble-txt {
    font-size: 16px;
  }
}

.voice-contents .speech-bubble-txt span {
  color: var(--color-brown);
  font-weight: bold;
  font-size: 27px;
  display: inline;
  letter-spacing: -.05em;
}

@media screen and (max-width: 1200px) {
  .voice-contents .speech-bubble-txt span {
    font-size: 22px;
  }
}

@media screen and (max-width: 900px) {
  .voice-contents .speech-bubble-txt span {
    font-size: 18px;
  }
}

.voice-contents .speech-bubble-txt.type-01 {
  top: 10%;
  left: -3.5%;
  background-image: url(/zokusei/img/bg_speech_bubble_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 411 / 307;
  width: 411px;
  max-width: 38%;
}

.voice-contents .speech-bubble-txt.type-02 {
  bottom: -50%;
  right: 50%;
  transform: translateX(50%);
  background-image: url(/zokusei/img/bg_speech_bubble_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 451 / 268;
  width: 451px;
  padding-bottom: 40px;
  max-width: 44%;
}

.voice-contents .speech-bubble-txt.type-03 {
  bottom: 50%;
  right: -3%;
  transform: translateY(50%);
  background-image: url(/zokusei/img/bg_speech_bubble_03.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 416 / 253;
  width: 416px;
  padding-bottom: 20px;
  max-width: 38%;
}

@media screen and (max-width: 1200px) {
  .voice-contents .speech-bubble-txt.type-01 {
    left: -20px;
  }

  .voice-contents .speech-bubble-txt.type-03 {
    right: -20px;
  }
}

@media screen and (max-width: 900px) {
  .voice-contents .speech-bubble-txt.type-01 {
    position: relative;
    top: 10%;
    left: -130px;
    transform: translateX(50%);
    margin: auto;
    width: 411px;
    max-width: 85%;
  }

  .voice-contents .speech-bubble-txt.type-02 {
    position: relative;
    bottom: auto;
    right: auto;
    transform: none;
    margin: auto;
    width: 451px;
    padding-bottom: 5%;
    max-width: 100%;
    order: 2;
  }

  .voice-contents .speech-bubble-txt.type-03 {
    position: relative;
    bottom: auto;
    right: auto;
    transform: none;
    margin: auto;
    width: 416px;
    padding-bottom: 20px;
    max-width: 100%;
    order: 3;
  }
}

@media screen and (min-width: 901px) {
  .voice-contents .speech-bubble-txt .sp-design-only {
    display: none;
  }
}

/* ワークフロー */
.work-flow-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media screen and (min-width: 768px) {

  .work-flow-section::before,
  .work-flow-section::after {
    content: "";
    display: block;
    position: absolute;
    background: url(/lp_common/lp_common_img/deco02.png) no-repeat center / contain;
    width: 77.7vw;
    max-width: 970px;
    aspect-ratio: 8 / 7;
    right: 70vw;
    top: 40px;
    z-index: -1;
  }

  .work-flow-section::after {
    top: 50%;
    right: auto;
    left: 70vw;
    max-width: 840px;
    width: 67.7vw;
    transform: translateY(-50%);
  }
}

.work-flow-section .section-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.work-flow-section .sec-body {
  padding: 70px 0 0 0;
}

@media screen and (max-width: 767px) {
  .work-flow-section .section-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .work-flow-section .sec-body {
    padding: 30px 0 0;
  }
}

.tab-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  position: relative;
  bottom: -2px;
  z-index: 1;
}

.tab-btn {
  border-radius: 6px 6px 0 0;
  background-color: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 26px;
  max-width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 767px) {
  .tab-btn {
    font-size: 18px;
    height: 40px;
    max-width: 147px;
  }
}

.gradation-accordion-content {
  overflow: hidden;
  transition: height .4s ease;
  position: relative;
}

.gradation-accordion-content.is-open {
  padding-bottom: 60px;
}

.tab-btn.is-active {
  background-color: var(--color-brown);
}

.tab-btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 16px solid transparent;
  border-bottom: 0;
  bottom: -16px;
  left: calc(50% - 12px);
  z-index: 1;
  transition: linear .3s;
}

.tab-btn.is-active::before {
  border-top: 16px solid var(--color-brown);
}

.tab-panel-inner {
  max-width: 100%;
  width: 100%;
  border-radius: 30px;
  border: solid 2px #CEB29A;
  background-color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .tab-panel-inner {
    border-radius: 20px;
    padding-bottom: 20px;
  }
}

.timeline {
  position: relative;
  max-width: 732px;
  margin: 0 auto;
  padding: 80px 20px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .timeline {
    padding: 20px 20px 20px 30px;
  }
}

.timeline.animating {
  transition: height 0.6s ease;
}

.timeline.is-open {
  padding-bottom: 70px !important;
}

.timeline:not(.animating) {
  transition: none;
}

.timeline-item {
  position: relative;
}

.timeline-item:not(:last-of-type) {
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .timeline-item:not(:last-of-type) {
    padding-bottom: 30px;
  }
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 13px;
  width: 24px;
  height: 24px;
  border-radius: 50vh;
  background-color: var(--color-brown);
}

@media screen and (max-width: 767px) {
  .timeline-item::before {
    top: 34px;
  }
}

.timeline-item-inner {
  padding-left: 105px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .timeline-item-inner {
    padding-left: 35px;
  }
}

.timeline-item-inner::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  top: 48px;
  left: -3px;
  background-color: #CEB29A;
}

@media screen and (max-width: 767px) {
  .timeline-item-inner::before {
    top: 70px;
    height: calc(100% - 20px);
  }
}

.timeline-item-inner::after {
  content: "";
  display: inline-block;
  position: absolute;
  font-weight: bold;
  width: 23px;
  height: 23px;
  border: 5px solid;
  border-color: transparent transparent #CEB29A #CEB29A;
  transform: rotate(-45deg);
  bottom: -50px;
  left: -12px;
  padding-top: 2px;
}

@media screen and (max-width: 767px) {
  .timeline-item-inner::after {
    bottom: -50px;
  }
}

.timeline-item:last-of-type .timeline-item-inner::before,
.timeline-item:last-of-type .timeline-item-inner::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .timeline-time {
    padding-top: 4px;
  }
}

.timeline-title-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 2px;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 20px;
  color: var(--color-brown);
  border-bottom: solid 2px var(--color-brown);
}

@media screen and (max-width: 767px) {
  .timeline-title-wrapper {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    font-size: 18px;
    padding-bottom: 7px;
    line-height: 1.3;
  }
}

.timeline-title-wrapper * {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.timeline-title {
  font-weight: bold;
  font-size: 26px;
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .timeline-title {
    font-size: 24px;
  }
}

.timeline-content img {
  margin-top: 20px;
  max-width: 345px;
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .timeline-content img {
    width: 100%;
    max-width: 500px;
  }
}

.accordion-button-wrapper {
  height: 110px;
  width: calc(100% + 30px);
  margin: 0 -15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(255, 255, 255, 1) 43%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  transition: height .4s linear, padding-bottom .4s linear, background-image .4s linear, bottom .4s linear;
}

.accordion-button-wrapper:not(.opened) {
  height: auto;
  background: none;
  padding-bottom: 0;
  bottom: 0;
}

.show-more-button {
  display: block;
  margin: 0 auto 0;
  width: 100%;
  max-width: 320px;
  height: 40px;
  border: solid 1px #CEB29A;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}

.show-more-button:hover {
  opacity: 0.8;
}

.show-more-button span {
  padding: 0 20px;
  position: relative;
  font-family: inherit;
}

.show-more-button::before {
  font-family: recop-iconfonts;
  content: "\E822";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  padding-top: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-weight: normal;
  font-size: 26px;
  width: 26px;
  height: 26px;
  border-radius: 0;
  transition: .4s linear;
}

.accordion-button-wrapper.opened .show-more-button::before {
  content: "\E813";
}

/* フリータさん向けワークフロー */
.time-card-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media screen and (max-width: 1115px) {
  .time-card-list {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }

  .time-card-item {
    width: 286px;
  }

  .time-card-item:first-of-type {
    padding-left: 50px;
    width: 336px;
  }

  .time-card-item:last-of-type {
    padding-right: 50px;
    width: 336px;
  }
}

.time-card {
  height: 100%;
  padding: 24px 0;
  border: 1px solid var(--color-text);
  background-color: var(--color-white);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.time-card-title {
  font-size: 28px;
  font-weight: bold;
}

.time-card-icon {
  margin: 35px auto;
  width: 84px;
}

@media screen and (max-width: 1115px) {
  .time-card-icon {
    margin: 20px auto;
  }
}

.time-card-lead {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  line-height: 1.5;
}

@media screen and (max-width: 1115px) {
  .time-card-lead {
    font-size: 20px;
    min-height: 90px;
  }
}

.time-card-text {
  font-size: 16px;
  padding: 0 24px;
  margin-top: 16px;
  text-align: justify;
}

@media screen and (max-width: 1115px) {
  .time-card-text {
    margin-top: 8px;
  }
}

/* スクロールヒント */
@media screen and (max-width: 1115px) {
  .scrollable {
    overflow-x: scroll;
    padding: 0 0 35px;
    position: relative;
  }

  .scrollable::before {
    content: "";
    background: url(/lp_common/lp_common_img/scroll-hint.png) no-repeat center / contain;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 139px;
    height: 110px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  /* 画面内に入ったらアニメーション */
  .scrollable.is-active::before {
    animation: Scrollhint-fade 1.5s ease-in-out;
    animation-iteration-count: 2;
  }

  @keyframes Scrollhint-fade {
    0% {
      transform: translate(-50%, -50%);
    }

    70% {
      opacity: 1;
    }

    100% {
      transform: translate(calc(-50% + 50px), -50%);
      opacity: 0;
    }
  }

  /* 一度でもスクロールしたら非表示 */
  .scrollable.is-active.is-scrolled::before {
    opacity: 0;
    transition: opacity 0.3s;
  }
}

/* インタビュー */
.interview-section {
  background-color: var(--color-bg-yellow);
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .interview-section {
    padding: 30px 0;
  }
}

.interview-contents .accordion-button-wrapper {
  width: 100%;
  margin: 0 auto;
  background-image: linear-gradient(0deg, rgb(255, 242, 188, 1) 43%, rgba(255, 242, 188, 0) 100%);
}

.interview-contents .speech-bubble-inner {
  max-width: 400px;
}

@media screen and (min-width: 768px) {
  .interview-contents .speech-bubble-inner p {
    font-size: 18px;
  }
  .interview-contents .speech-bubble-inner span::before, .interview-contents .speech-bubble-inner span::after {
    width: 22px;
  }
}

.interview-contents .speech-bubble-inner span {
  padding: 0 30px;
  letter-spacing: -.05em;
}

.interview-contents .speech-bubble-txt-wrapper {
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .interview-contents .speech-bubble-inner span {
    padding: 0 30px;
  }

  .interview-contents .speech-bubble-txt-wrapper {
    padding-top: 30px;
  }
}

.interview-contents .speech-bubble-txt-wrapper .text-contents {
  border: solid 4px var(--color-white);
  border-radius: 10px;
  padding: 65px 95px 30px;
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .interview-contents .speech-bubble-txt-wrapper .text-contents {
    padding: 50px 15px 15px;
  }
}

.interview-contents .speech-bubble-txt-wrapper .text-contents .strong-txt {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .interview-contents .speech-bubble-txt-wrapper .text-contents .strong-txt {
    margin-bottom: 7px;
  }
}

.interview-contents .speech-bubble-txt {
  margin-bottom: -50px;
}

@media screen and (max-width: 767px) {
  .interview-contents .speech-bubble-txt {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.interview-contents .accordion-button-wrapper:not(.opened) {
  bottom: 0;
}

.interview-hero {
  display: flex;
  align-items: flex-end;
  padding-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  .interview-hero {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 0;
  }
}

.interview-hero-text-wrapper {
  max-width: 520px;
  width: 100%;
  background-color: var(--color-white);
  position: relative;
  padding: 44px 40px 35px;
  margin-bottom: -40px;
}

.interview-hero-text-wrapper .title {
  background-color: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 20px;
  max-width: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 5px 40px;
  position: absolute;
  top: -25px;
  left: 0;
}

.interview-hero-text-wrapper .name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.staff-figure-wrapper figure {
  max-width: 723px;
  width: calc(100% + 50px);
  margin-left: -10px;
}

@media screen and (max-width: 1000px) {
  .interview-hero-text-wrapper {
    margin-top: -20px;
    margin-bottom: 0;
    padding: 30px 20px 25px;
  }

  .interview-hero-text-wrapper .title {
    min-height: 40px;
    font-size: 18px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 210px;
    padding: 5px;
    width: 100%;
  }

  .interview-hero-text-wrapper .name {
    font-size: 16px;
    margin-bottom: 6px;
    text-align: center;
  }

  .staff-figure-wrapper figure {
    margin: 0 -10px;
    width: calc(100% + 20px);
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .staff-figure-wrapper figure {
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}

.staff-voice-wrapper {
  max-width: 284px;
  width: 100%;
  min-height: 104px;
  margin-bottom: -52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border: 2px solid var(--color-brown);
  border-radius: 50vh;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  position: relative;
}

@media screen and (max-width: 767px) {
  .staff-voice-wrapper {
    max-width: 220px;
    font-size: 16px;
    margin-bottom: -10px;
    min-height: 80px;
    padding: 0 10px;
  }
}

.staff-voice-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 70%;
  border-style: solid;
  border-width: 20px 0 0 30px;
  border-color: var(--color-brown) transparent transparent;
  translate: -50% 100%;
}

.staff-voice-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 70%;
  border-style: solid;
  border-width: 16.3px 0 0 24.4px;
  border-color: var(--color-white) transparent transparent;
  translate: calc(-50% + 0.8px) 100%;
}

.staff-voice-wrapper * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.interview-contents-inner {
  max-width: 1075px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .interview-contents-inner {
    padding-bottom: 0px;
  }
}

.interview-section .accordion-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .interview-section .accordion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
  }

  .interview-section .accordion-btn::before {
    position: absolute;
    font-family: recop-iconfonts;
    content: "\E842";
    color: var(--color-white);
    font-size: 28px;
    transform: translateY(-50%);
    cursor: pointer;
    top: calc(50% + 1px);
    right: 20px;
  }

  .interview-section .accordion-btn::after {
    content: "クリック・タップで閉じます";
    position: absolute;
    width: 1px;
    height: 1px;
    left: 0;
    top: 0;
    clip: rect(1px, 1px, 1px, 1px);
  }

  .interview-item.is-show .accordion-btn::before {
    top: calc(50% - 1px);
    transform: translateY(-50%) rotate(-180deg);
  }

  .interview-item.is-show .accordion-btn::after {
    content: "クリック・タップで開きます";
  }
}

.interview-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.interview-list.animating {
  transition: height 0.6s ease;
}

.interview-list:not(.animating) {
  transition: none;
}

.interview-icon {
  max-width: 140px;
  width: 16%;
}

.interview-icon img {
  border-radius: 50vh;
}

.interview-q {
  max-width: 860px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .interview-q {
    gap: 0;
  }

  .interview-q .interview-icon {
    position: absolute;
    z-index: 1;
    max-width: 50px;
    width: 100%;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
}

.interview-a {
  max-width: 860px;
  display: flex;
  margin: -20px 0 0 auto;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 1000px) {
  .interview-a {
    margin: 0px 0 0 auto;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .interview-a {
    flex-direction: column;
    gap: 0;
    padding-top: 20px;
  }

  .interview-a .interview-icon {
    width: 100%;
    max-width: 90px;
    margin: 0 auto 30px;
  }
}

.interview-question {
  background-color: var(--color-brown);
  color: var(--color-white);
  font-size: 24px;
  font-weight: bold;
  border-radius: 10px;
  padding: 23px 37px;
  flex: 1;
  position: relative;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.interview-question::before {
  content: "";
  position: absolute;
  top: 54%;
  left: 0;
  border-style: solid;
  border-width: 15.5px 23px 15.5px 0;
  border-color: transparent var(--color-brown) transparent transparent;
  translate: -100% -55%;
  transform: skew(0, 35deg);
  transform-origin: right;
}

.interview-question::after {
  content: "";
  position: absolute;
  top: 54%;
  left: 0;
  border-style: solid;
  border-width: 13.1px 19.4px 13.1px 0;
  border-color: transparent var(--color-brown) transparent transparent;
  translate: -100% -55%;
  transform: skew(0, 35deg);
  transform-origin: right;
}

@media screen and (max-width: 767px) {
  .interview-question {
    margin: 0 auto;
    padding: 15px 40px 15px 75px;
    min-height: 80px;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
  }

  .interview-question::before,
  .interview-question::after {
    display: none;
  }
}

.interview-answer {
  background-color: var(--color-white);
  color: var(--color-text);
  border: solid 2px var(--color-brown);
  font-size: 16px;
  line-height: 1.6;
  border-radius: 10px;
  padding: 22px 30px;
  flex: 1;
  position: relative;
  margin-top: 30px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  .interview-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .interview-answer {
    margin: 0px;
  }
}

@media screen and (min-width: 768px) {
  .interview-answer::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: 15.5px 0 15.5px 23px;
    border-color: transparent transparent transparent var(--color-brown);
    translate: 100% -45%;
    transform: skew(0, -35deg);
    transform-origin: left;
  }

  .interview-answer::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: 13.1px 0 13.1px 19.4px;
    border-color: transparent transparent transparent var(--color-white);
    translate: 100% -45%;
    transform: skew(0, -35deg);
    transform-origin: left;
  }
}

@media screen and (max-width: 767px) {
  .interview-answer {
    margin: 0 auto;
    padding: 0;
    min-height: 80px;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: opacity .3s ease;
  }

  .interview-answer-inner {
    padding: 15px 20px;
    min-height: 80px;
    overflow: hidden;
    background-color: var(--color-white);
    border: solid 2px var(--color-brown);
    border-radius: 10px;
    position: relative;
    z-index: 1;
  }

  .interview-item:not(.is-show) .interview-answer::before,
  .interview-item:not(.is-show) .interview-answer::after {
    top: 20px;
    z-index: 0;
    transition: top .3s ease;
  }

  .interview-answer::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 50%;
    border-style: solid;
    border-width: 0 15px 20px 15px;
    border-color: transparent transparent var(--color-brown);
    translate: -50% -100%;
    z-index: 1;
    opacity: 1;
    transition: top .3s ease;
  }

  .interview-answer::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 50%;
    border-style: solid;
    border-width: 0 12.5px 16.7px 12.5px;
    border-color: transparent transparent var(--color-white);
    translate: -50% -100%;
    z-index: 1;
    opacity: 1;
    transition: top .3s ease;
  }
}

/* その他のコンテンツ */
.other {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .other {
    padding: 30px 15px;
  }
}

.other .bnr-list {
  margin-top: 40px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .other .bnr-list {
    margin-top: 30px;
  }
}