@charset "UTF-8";
/* Scss Document */
@keyframes carousel_pc {
  0% {
    background-position: 0vw 0;
  }
  100% {
    background-position: calc(-100vw + 16px) 0;
  }
}
@keyframes slide_up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide_down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes slide_right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slide_left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes blur {
  0% {
    filter: blur(15px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes blur_up {
  0% {
    filter: blur(10px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes blur_down {
  0% {
    filter: blur(10px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes blur_right {
  0% {
    filter: blur(10px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes blur_left {
  0% {
    filter: blur(10px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
.slide_up {
  opacity: 0;
  transform: translateY(50px);
}

.animate_slide_up {
  animation-name: slide_up;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateY(0px);
}

.slide_down {
  opacity: 0;
  transform: translateY(-50px);
}

.animate_slide_down {
  animation-name: slide_down;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateY(0px);
}

.slide_right {
  opacity: 0;
  transform: translateX(50px);
}

.animate_slide_right {
  animation-name: slide_right;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateX(0px);
}

.slide_left {
  opacity: 0;
  transform: translateX(-50px);
}

.animate_slide_left {
  animation-name: slide_left;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateX(0px);
}

.blur {
  opacity: 0;
}

.animate_blur {
  animation-name: blur;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.blur_up {
  opacity: 0;
  transform: translateY(50px);
}

.animate_blur_up {
  animation-name: blur_up;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateY(0px);
}

.blur_down {
  opacity: 0;
  transform: translateY(-50px);
}

.animate_blur_down {
  animation-name: blur_down;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateY(0px);
}

.blur_right {
  opacity: 0;
  transform: translateX(50px);
}

.animate_blur_right {
  animation-name: blur_right;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateX(0px);
}

.blur_left {
  opacity: 0;
  transform: translateX(-50px);
}

.animate_blur_left {
  animation-name: blur_left;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform: translateX(0px);
}

/* Scss Document */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
.paragraph-group {
  display: block;
}

.paragraph {
  display: inline-block;
}

.text-white {
  color: #fff;
}

.text-bold {
  font-weight: bold;
}

.text-black {
  font-weight: 700;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

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

.align-justify {
  text-align: justify;
}

.font-xla {
  font-size: 3rem;
}
.font-la {
  font-size: 2rem;
}
.font-mi {
  font-size: 1.8rem;
}
.font-sm {
  font-size: 1.6rem;
}
.font-xsm {
  font-size: 1.4rem;
}

.margin-b16 {
  margin-bottom: 1.6rem;
}
.margin-b24 {
  margin-bottom: 2.4rem;
}
.margin-b32 {
  margin-bottom: 3.2rem;
}
.margin-b40 {
  margin-bottom: 4rem;
}
.margin-b80 {
  margin-bottom: 8rem;
}
.margin-l16 {
  margin-left: 1.6rem;
}
.margin-l24 {
  margin-left: 2.4rem;
}
.margin-l32 {
  margin-left: 3.2rem;
}

@media print, screen and (min-width: 768px) {
  .w-10 {
    width: 10%;
  }
  .w-20 {
    width: 20%;
  }
  .w-30 {
    width: 30%;
  }
  .w-40 {
    width: 40%;
  }
  .w-50 {
    width: 50%;
  }
  .w-60 {
    width: 60%;
  }
  .w-70 {
    width: 70%;
  }
  .w-80 {
    width: 80%;
  }
  .w-90 {
    width: 90%;
  }
  .w-100 {
    width: 100%;
  }
}
/* Scss Document */
html {
  height: 100%;
}
html ::-moz-selection {
  background: #f2c300;
  color: #ffffff;
}
html ::selection {
  background: #f2c300;
  color: #ffffff;
}
@media print, screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  display: none;
  position: relative;
  height: 100%;
  max-width: 100%;
  color: #331d04;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

a {
  transition: all ease 0.3s;
}
a:hover {
  opacity: 0.75;
}

.contarea {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (max-width: 767px) {
  .sp_contarea {
    padding: 0 4vw;
  }
  .pc_only {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
.contarea_s {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.l-inner--1200 {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.l-inner--1000 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (max-width: 767px) {
  .l-inner--1200,
  .l-inner--1000 {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.icon_external, .icon_external.white {
  position: relative;
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  transition: all 0.2s;
}
.icon_external::before, .icon_external.white::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 0.1rem solid #f2c300;
}
.icon_external::after, .icon_external.white::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.3rem;
  left: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  border: 0.1rem solid #f2c300;
}

.icon_external.white::before {
  border: 0.1rem solid #fff;
}
.icon_external.white::after {
  border: 0.1rem solid #fff;
}

.icon_circle {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  display: inline-block;
  transition: all 0.2s;
}
.icon_circle::before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid #f2c300;
  border-style: none solid solid none;
  transform: rotate(-45deg);
  position: absolute;
  left: 0.9rem;
  top: 39%;
}
.icon_circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: solid 0.1rem #f2c300;
}

.icon_leaf {
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  background-color: #a8510d;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  border-radius: 2rem 0 2rem 0;
  margin-right: 1.5rem;
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}
.c-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1005;
  background-color: rgba(242, 195, 0, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .c-header__backdrop {
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.c-header__inner {
  position: relative;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  width: 100%;
  margin: 0 auto;
  padding: 1.2rem 5vw;
  box-sizing: border-box;
}
.c-header__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  z-index: 1020;
  font-family: "M PLUS Rounded 1c", sans-serif, sans-serif;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.c-header__logo:hover {
  opacity: 0.85;
}
.c-header__logo:focus-visible {
  outline: 2px solid #f2c300;
  outline-offset: 4px;
}
.c-header__logoImg {
  display: block;
  width: 15rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-header__logoImg {
    width: 10rem;
  }
}
.c-header__logoSub {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-header__logoSub {
    font-size: 0.9rem;
  }
}
.c-header__logoMain {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-header__logoMain {
    font-size: 2.1rem;
  }
}
.c-header__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
  background-color: #ffffff;
  padding: 0.8rem;
  border-radius: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-header__right {
    gap: 0.8rem;
    padding: 0.6rem;
  }
}
.c-header__ctaTxt {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-header__ctaTxt {
    line-height: 1.25;
  }
}
.c-header__menuBtn {
  position: relative;
  z-index: 1020;
  width: 9rem;
  height: 4.8rem;
  border-radius: 2.4rem;
  border: none;
  background-color: #f2c300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}
.c-header__menuBtn:hover {
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .c-header__menuBtn {
    width: 6rem;
    height: 4.5rem;
  }
}
.c-header__menuLines {
  display: block;
  width: 3.5rem;
  height: 1px;
  background-color: #331d04;
  position: relative;
  transition: background-color 0.3s ease;
}
.c-header__menuLines::before, .c-header__menuLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #331d04;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-header__menuLines::before {
  top: 0;
  transform: translateY(-7px);
}
.c-header__menuLines::after {
  top: 0;
  transform: translateY(7px);
}
.c-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 54rem;
  height: 100vh;
  background-color: #fbfaf3;
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 13rem 4rem 4rem 4rem;
  box-sizing: border-box;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .c-header__nav {
    width: 100%;
  }
}
.c-header.is-active .c-header__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-header.is-active .c-header__nav {
  transform: translateX(0);
}
.c-header.is-active .c-header__menuBtn {
  background-color: #ffffff;
}
.c-header.is-active .c-header__menuLines {
  background-color: transparent;
  width: 2.8rem;
}
.c-header.is-active .c-header__menuLines::before {
  transform: translateY(0) rotate(45deg);
}
.c-header.is-active .c-header__menuLines::after {
  transform: translateY(0) rotate(-45deg);
}

.c-header__navList {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .c-header__navList {
    width: 100%;
  }
}

.c-header__navItem {
  margin-bottom: 2.8rem;
}

.c-header__navLink {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  color: #331d04;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
}
.c-header__navLink::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #f2c300;
}

.footer {
  position: relative;
  background-image: url(../images/common/tree01.png);
  background-repeat: no-repeat;
}
.footer::after, .footer::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
}
.footer::before {
  top: 0;
  height: 13.3vw;
  background-image: url(../images/common/bg_footer.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
.footer::after {
  top: 13.2vw;
  height: calc(100% - 13.46vw);
  background-color: rgba(255, 255, 255, 0.8);
}
.footer_deco {
  display: block;
  position: absolute;
  background-image: url(../images/common/leaf01.png);
  background-size: 100%;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.footer_nav_container {
  line-height: 1.2;
}
.footer_nav_txt:not(.nolink):hover {
  text-decoration: underline;
}
.footer_nav_txt.child {
  position: relative;
  padding-left: 1.5rem;
  display: inline-block;
}
.footer_nav_txt.child::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0.4rem;
  width: 0.5rem;
  height: 0.1rem;
  background: #f2c300;
}
.footer_corp {
  margin-bottom: 4rem;
}
.footer_corp_logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 35rem;
  height: auto;
  margin-bottom: 2rem;
}
.footer_corp_txt {
  text-align: center;
  font-size: 1.4rem;
}
.footer_contact {
  text-align: center;
}
.footer_contact_container {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.footer_contact_ttl {
  display: inline-block;
  width: 4rem;
  font-size: 1.4rem;
  border: 0.1rem solid #f2c300;
}
.footer_contact_num {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.footer_contact_btn:not(:last-child) {
  margin-bottom: 2.5rem;
}
.footer_bottom {
  background: #f2c300;
  color: #fff;
}
.footer_bottom_link:hover {
  text-decoration: underline;
}
.footer_bottom_instagram {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
}
.footer_bottom_instagram img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .footer {
    margin-top: 15rem;
    padding-top: 9rem;
    background-size: 28rem;
    background-position: 100% 84%;
  }
  .footer_deco {
    top: -4rem;
    right: 20%;
    width: 22rem;
    height: 9.5rem;
  }
  .footer_inner {
    display: flex;
    align-items: flex-end;
    padding-bottom: 7rem;
  }
  .footer_left {
    width: 40%;
  }
  .footer_right {
    width: 60%;
    display: flex;
    justify-content: space-around;
  }
  .footer_nav_container {
    letter-spacing: 0.2em;
  }
  .footer_nav_content {
    margin-bottom: 0.8rem;
  }
  .footer_bottom_inner {
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 15rem;
    padding-top: 9rem;
    background-size: 22rem;
    background-position: 100% 88%;
  }
  .footer_deco {
    top: -8rem;
    right: 2rem;
    width: 16rem;
    height: 18rem;
  }
  .footer_left {
    margin-bottom: 7rem;
  }
  .footer_corp {
    margin-bottom: 4.5rem;
  }
  .footer_right {
    font-weight: 700;
    margin-bottom: 25rem;
  }
  .footer_nav {
    font-size: 1.4rem;
  }
  .footer_nav_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
  }
  .footer_nav_content {
    margin-bottom: 2rem;
    width: calc(50% - 0.5rem);
  }
  .footer_bottom_inner {
    padding: 2rem 0;
  }
  .footer_bottom_link {
    display: block;
    margin: 0 auto;
    margin-bottom: 1.7rem;
    text-align: center;
  }
  .footer_bottom_instagram {
    display: block;
    margin: 0 auto;
  }
}

body.is-parts-preview {
  display: block;
  min-height: 100vh;
  padding: 4rem 2rem 8rem;
  background-image: none;
  background-color: #fbfaf3;
}

.c-demo-sec {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ffecc2;
}

.c-demo-sec__ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #331d04;
  margin-bottom: 0.8rem;
}

.c-demo-sec__note {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #331d04;
  opacity: 0.85;
}

.c-demo-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 2rem;
  margin-top: 2rem;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 5rem;
  padding: 1.5rem 3rem;
  border-radius: 50rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-btn {
    min-height: 4.5rem;
    padding: 0.6rem 1.6rem;
    font-size: 1.4rem;
  }
}

.c-btn--primary {
  background-color: #a8510d;
  color: #ffffff;
}
.c-btn--primary:hover {
  opacity: 1;
  background-color: #f2c300;
  color: #331d04;
}
.c-btn--primary:focus-visible {
  outline: 2px solid #f2c300;
  outline-offset: 3px;
}

.c-btn--more {
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  max-width: 35rem;
  min-height: 5.6rem;
  padding: 1.4rem 2.8rem 1.4rem 3.2rem;
  background-color: #f2c300;
  color: #331d04;
  text-align: left;
  transition: opacity 0.3s ease;
}
.c-btn--more:hover {
  opacity: 0.85;
}
.c-btn--more:focus-visible {
  opacity: 1;
  outline: 2px solid #a8510d;
  outline-offset: 2px;
}
.c-btn--more .c-btn__label {
  flex: 1 1 auto;
  min-width: 0;
}
.c-btn--more .c-btn__ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
}
.c-btn--more .c-btn__ico::after {
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid #331d04;
  border-style: none solid solid none;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-btn--more {
    min-height: 5.2rem;
    padding: 1.2rem 2rem 1.2rem 2.4rem;
    max-width: 30rem;
    font-size: 1.4rem;
  }
}

.c-btn--outline {
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  max-width: 35rem;
  min-height: 5.6rem;
  padding: 1.4rem 2.8rem 1.4rem 3.2rem;
  border: 1px solid #f2c300;
  background-color: #ffffff;
  color: #331d04;
  text-align: left;
  transition: opacity 0.3s ease;
}
.c-btn--outline:hover {
  opacity: 0.85;
}
.c-btn--outline:focus-visible {
  outline: 2px solid #a8510d;
  outline-offset: 2px;
}
.c-btn--outline .c-btn__label {
  flex: 1 1 auto;
  min-width: 0;
}
.c-btn--outline .c-btn__ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
}
.c-btn--outline .c-btn__ico::after {
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid #331d04;
  border-style: none solid solid none;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-btn--outline {
    min-height: 5.2rem;
    padding: 1.2rem 2rem 1.2rem 2.4rem;
    max-width: none;
  }
}

.c-btn--block {
  max-width: none;
  width: 100%;
}

.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.c-title__en {
  margin: 0;
  padding: 0;
  font-family: "Akshar", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #f2c300;
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 1.8rem;
  }
}
.c-title__ttl {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-title__ttl {
    font-size: 2.6rem;
  }
}
.c-title--en {
  gap: 0.35em;
  margin: 0;
  padding: 0;
}
.c-title--en .c-title__en {
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #c7d100;
}
@media screen and (max-width: 767px) {
  .c-title--en .c-title__en {
    font-size: 6rem;
  }
}
.c-title--en .c-title__ttl {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-top: 0.15em;
}
@media screen and (max-width: 767px) {
  .c-title--en .c-title__ttl {
    font-size: 2.3rem;
  }
}

.c-title-dot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.c-title-dot__dot {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #f2c300;
}
.c-title-dot__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-title-dot__text {
    font-size: 2rem;
  }
}

.c-service-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 3.2rem 3rem;
  width: 100%;
  min-width: 48rem;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid #f2c300;
  border-radius: 6rem;
}
.c-service-card__iconWrap {
  flex-shrink: 0;
  width: clamp(6.4rem, 14vw, 8.8rem);
  height: clamp(6.4rem, 14vw, 8.8rem);
  line-height: 0;
}
.c-service-card__icon {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-service-card__body {
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 0;
  align-self: flex-start;
}
.c-service-card__title {
  margin: 0 0 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #331d04;
}
.c-service-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  row-gap: 0.2rem;
  align-items: start;
}
.c-service-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-service-card__item {
  margin: 0;
  padding: 0 0 0 0.8em;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #331d04;
  position: relative;
  word-break: auto-phrase;
}
.c-service-card__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-service-card__item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-service-card {
    flex-direction: column;
    align-items: center;
    padding: 1.8rem 2rem;
    border-radius: 4rem;
    gap: 1.2rem;
    min-width: 100%;
  }
  .c-service-card__title {
    margin-bottom: 1rem;
    text-align: center;
  }
  .c-service-card__body {
    width: 100%;
  }
}

.c-faq {
  width: 100%;
  margin: 0 auto;
}
.c-faq__item {
  margin: 0 0 3rem;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #f2c300;
  border-radius: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}
.c-faq__item:last-child {
  margin-bottom: 0;
}
.c-faq__heading {
  margin: 0;
}
.c-faq__header {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  margin: 0;
  padding: 1.4rem 1.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.c-faq__header:hover {
  opacity: 0.85;
}
.c-faq__header:focus-visible {
  outline: 2px solid #f2c300;
  outline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .c-faq__header {
    padding: 1.2rem 1.4rem;
    gap: 0.8rem;
  }
}
.c-faq__q-icon {
  flex-shrink: 0;
  width: 3.4rem;
  height: 3.4rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
  border-radius: 0;
}
.c-faq__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-size: clamp(1.6rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #331d04;
}
.c-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-faq__toggle::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #f2c300;
  border-style: none solid solid none;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
}
.c-faq__item.is-open .c-faq__toggle::before {
  transform: rotate(-135deg);
}
.c-faq__item.is-open .c-faq__header {
  position: relative;
}
.c-faq__item.is-open .c-faq__header::after {
  content: "";
  position: absolute;
  left: 7.4rem;
  right: 1.6rem;
  bottom: 0;
  border-bottom: 1px dashed #ffecc2;
}
@media screen and (max-width: 767px) {
  .c-faq__item.is-open .c-faq__header::after {
    left: 1.4rem;
    right: 1.4rem;
  }
}
.c-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease;
}
.c-faq__item.is-open .c-faq__body {
  grid-template-rows: 1fr;
}
.c-faq__inner {
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-faq__item.is-open .c-faq__inner {
  opacity: 1;
  transition-delay: 0.1s;
}
.c-faq__txt {
  margin: 0;
  padding: 2.8rem 1.8rem 2.8rem 7.4rem;
}
@media screen and (max-width: 767px) {
  .c-faq__txt {
    padding: 2rem;
    font-size: 1.4rem;
  }
}

.c-point-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.c-point-card__media {
  width: 100%;
  max-width: 36rem;
  margin: 0 0 3.4rem;
  padding: 0;
  line-height: 0;
}
.c-point-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.c-point-card__ttl {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 4.4vw, 2.4rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #331d04;
  word-break: auto-phrase;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-point-card__ttl {
    font-size: 2rem;
    min-height: auto;
  }
}
.c-point-card__lead {
  margin: 0 0 2rem;
  font-size: clamp(1.6rem, 3.4vw, 1.8rem);
  letter-spacing: 0.1em;
  color: #331d04;
  word-break: auto-phrase;
}
.c-point-card__txt {
  margin: 0;
  font-size: 1.6rem;
  color: #331d04;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-point-card__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-point-card__media {
    width: 80vw;
    margin-bottom: 2rem;
  }
}

.c-table {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
.c-table__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin: 0;
  padding: 1.2rem 0;
  border-bottom: 1px dashed #ffecc2;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-table__row {
    font-size: 1.4rem;
    padding: 1rem 0;
  }
}
.c-table__dot {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #f2c300;
}
@media screen and (max-width: 767px) {
  .c-table--dot .c-table__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}
.c-table--dot .c-table__term {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
  width: 14.4rem;
  max-width: 42%;
  margin: 0;
  padding: 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-table--dot .c-table__term {
    width: 100%;
    max-width: none;
  }
}
.c-table--dot .c-table__label {
  min-width: 0;
}
.c-table--dot .c-table__desc {
  flex: 1 1 12rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .c-table--dot .c-table__desc {
    flex: none;
    width: 100%;
    padding-left: 1.8rem;
  }
}
.c-table--news {
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-table--news .c-table__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.c-table--news .c-table__date {
  flex: 0 0 14.4rem;
  width: 14.4rem;
  max-width: 42%;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-table--news .c-table__date {
    flex: none;
    width: 100%;
    max-width: none;
  }
}
.c-table--news .c-table__body {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  font-weight: 500;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .c-table--news .c-table__body {
    flex: none;
    width: 100%;
    padding-left: 0;
  }
}

.c-form-row {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 0.8rem 3rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 1.2rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem 1.4rem;
  }
}
.c-form-row__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.6rem;
  flex: 0 0 20rem;
  width: 20rem;
  max-width: 42%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-form-row__head {
    flex: none;
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    gap: 1rem;
  }
}
.c-form-row__label {
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.c-form-row__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 1rem;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: #ffffff;
  background-color: #f28330;
}
.c-form-row__field {
  flex: 1 1 12rem;
  min-width: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-form-row__field {
    flex: none;
    width: 100%;
  }
}
.c-form-row--split {
  gap: 0;
  padding: 0;
  align-items: stretch;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .c-form-row--split {
    flex-wrap: wrap;
  }
}
.c-form-row--split .c-form-row__head {
  flex: 0 0 36%;
  width: auto;
  min-width: 20rem;
  max-width: 40%;
  padding: 1.2rem 1.4rem;
  align-self: stretch;
  align-content: center;
}
@media screen and (max-width: 767px) {
  .c-form-row--split .c-form-row__head {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 1rem 1.2rem;
  }
}
.c-form-row--split .c-form-row__field {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-form-row--split .c-form-row__field {
    flex: none;
    width: 100%;
    padding: 0.85rem 1rem;
  }
}
.c-form-row__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  min-height: 4.8rem;
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: 0.4rem;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-form-row__input::-moz-placeholder {
  color: rgba(51, 29, 4, 0.35);
}
.c-form-row__input::placeholder {
  color: rgba(51, 29, 4, 0.35);
}
.c-form-row__input:focus {
  outline: none;
  border-color: #f2c300;
  box-shadow: 0 0 0 1px #f2c300;
}
@media screen and (max-width: 767px) {
  .c-form-row__input {
    min-height: 4.4rem;
    padding: 0.65rem 1rem;
    font-size: 1.4rem;
  }
}
.c-form-row textarea.c-form-row__input {
  min-height: 12rem;
  resize: vertical;
}
.c-form-row select.c-form-row__input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='none' stroke='%23331d04' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 7 6.5 13 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem 0.65rem;
}
.c-form-row select.c-form-row__input::-ms-expand {
  display: none;
}

.c-footer {
  width: 100%;
  box-sizing: border-box;
}
.c-footer__main {
  padding: 3.2rem 1.6rem 2.8rem;
  text-align: center;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-footer__main {
    padding: 2.4rem 1.4rem 2rem;
  }
}
.c-footer__inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.c-footer__name {
  margin: 0 0 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #331d04;
}
.c-footer__addr {
  margin: 0 0 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-footer__addr {
    font-size: 1.3rem;
  }
}
.c-footer__tel {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-footer__tel {
    font-size: 1.3rem;
  }
}
.c-footer__tel-link {
  color: inherit;
  text-decoration: none;
}
.c-footer__tel-link:hover {
  text-decoration: underline;
}
.c-footer__tel-link:focus-visible {
  outline: 2px solid #f2c300;
  outline-offset: 2px;
}
.c-footer__fax {
  display: inline-block;
  margin-left: 1.6em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-footer__fax {
    display: block;
    margin-left: 0;
    margin-top: 0.4em;
  }
}
.c-footer__bar {
  padding: 1rem 1.6rem;
  background-color: #f2c300;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-footer__bar {
    padding: 0.85rem 1.4rem;
  }
}
.c-footer__copy {
  margin: 0;
  font-family: "Akshar", sans-serif, "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-footer__copy {
    font-size: 1.1rem;
  }
}

.c-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.c-flow__figure {
  margin: 0 0 1.8rem;
  padding: 0;
  width: 100%;
  max-width: 18rem;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.c-flow__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.c-flow__iconWrap {
  margin: 0 0 1.4rem;
  line-height: 0;
  flex-shrink: 0;
}
.c-flow__icon {
  display: block;
  width: 4.8rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-flow__icon {
    width: 3.1rem;
  }
}
.c-flow__ttl {
  margin: 0 0 1rem;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 1.85rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #331d04;
}
.c-flow__txt {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #331d04;
}
@media screen and (max-width: 767px) {
  .c-flow__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-flow {
    max-width: 100%;
    display: grid;
    grid-template-columns: 12rem auto 1fr;
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
    row-gap: 0;
    align-items: start;
    text-align: left;
  }
  .c-flow__figure {
    margin: 0;
    grid-row: 1/span 2;
    grid-column: 1;
    padding-right: 2.3rem;
  }
  .c-flow__iconWrap {
    margin: 0;
    grid-row: 1;
    grid-column: 2;
    align-self: center;
  }
  .c-flow__ttl {
    margin: 0;
    grid-row: 1;
    grid-column: 3;
    align-self: center;
  }
  .c-flow__txt {
    grid-row: 2;
    grid-column: 2/span 2;
    margin-top: 0.2rem;
  }
}

/* Scss Document */
.p-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff7e6;
}
.p-mv::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(8rem, 26vh, 20rem);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(251, 250, 243, 0) 0%, rgba(251, 250, 243, 0.35) 38%, #fbfaf3 88%, #fbfaf3 100%);
}
@media screen and (max-width: 767px) {
  .p-mv::after {
    height: clamp(6rem, 22vh, 14rem);
  }
}
.p-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url(../images/bg_mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-mv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  min-height: 60rem;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    min-height: auto;
    max-height: 52rem;
  }
}
.p-mv__image {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__image {
    top: auto;
    bottom: 0;
    transform: none;
  }
}
.p-mv__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-mv__copy-wrap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 8vw;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: #331d04;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__copy-wrap {
    writing-mode: horizontal-tb;
    top: 18%;
    left: 6vw;
    transform: none;
  }
}
.p-mv__main-txt, .p-mv__sub-txt {
  margin: 0;
  display: block;
}
.p-mv__main-txt span, .p-mv__sub-txt span {
  display: block;
  white-space: nowrap;
  font-weight: 500;
}
.p-mv__main-txt span {
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .p-mv__main-txt span {
    font-size: clamp(4rem, 4.06vw, 6.6rem);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__main-txt span {
    font-size: 3.8rem;
  }
}
.p-mv__main-txt .line2 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__main-txt .line2 {
    margin-top: 0;
  }
}
.p-mv__sub-txt {
  margin-right: 2rem;
}
@media print, screen and (min-width: 768px) {
  .p-mv__sub-txt span {
    font-size: clamp(1.6rem, 1.45vw, 2.4rem);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__sub-txt span {
    font-size: 1.6rem;
  }
}
.p-mv__sub-txt .line1 {
  margin-top: 20rem;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-txt .line1 {
    margin-top: 2rem;
  }
}
.p-mv__sub-txt .line2 {
  margin-right: 1.5rem;
  margin-top: 30rem;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-txt .line2 {
    margin-top: 1rem;
  }
}

.p-mv {
  opacity: 0;
  animation: mv-fade-in 1.8s ease-out forwards;
}
.p-mv__bg {
  transform: scale(1.1);
  animation: bg-sway 20s infinite alternate ease-in-out;
}
.p-mv__image {
  opacity: 0;
  animation: mv-visual-soft 1.85s cubic-bezier(0.33, 1, 0.45, 1) forwards;
  animation-delay: 1.8s;
}
.p-mv__main-txt span, .p-mv__sub-txt span {
  opacity: 0;
  animation: mv-copy-soft 2s cubic-bezier(0.33, 1, 0.45, 1) forwards;
}
.p-mv__main-txt .line1 {
  animation-delay: 0.3s;
}
.p-mv__main-txt .line2 {
  animation-delay: 0.8s;
}
.p-mv__sub-txt .line1,
.p-mv__sub-txt .line2 {
  animation-delay: 1.8s;
}

@keyframes bg-sway {
  0% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-2%);
  }
}
@keyframes mv-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mv-copy-soft {
  0% {
    opacity: 0;
    transform: translateX(12px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@keyframes mv-visual-soft {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(1.04);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    filter: blur(0);
  }
}
@media screen and (max-width: 767px) {
  @keyframes mv-copy-soft {
    0% {
      opacity: 0;
      transform: translateY(14px);
      filter: blur(3px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }
  @keyframes mv-visual-soft {
    0% {
      opacity: 0;
      transform: translateY(18px) scale(1.03);
      filter: blur(8px);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }
}
.p-message {
  position: relative;
  padding: 9rem 0 11rem;
  background-color: #fbfaf3;
  overflow: hidden;
  overflow-x: clip;
  overflow-y: visible;
}
.p-message__inner {
  position: relative;
  width: min(120rem, 94%);
  min-height: 61rem;
  margin: 0 auto;
  z-index: 2;
}
.p-message__inner::before, .p-message__inner::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.p-message__card {
  width: 60%;
  max-width: 60rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.p-message__lead {
  margin: 0;
  color: #331d04;
  line-height: 1.5;
  font-size: clamp(3rem, 3.2vw, 4.8rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.p-message__lead span {
  color: #a8510d;
}
.p-message__text {
  margin: 4.2rem 0 0;
  font-size: clamp(1.65rem, 1.35vw, 2.05rem);
}
.p-message__img {
  position: absolute;
  z-index: 4;
  margin: 0;
}
.p-message__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-message__img--01 {
  top: -3.9rem;
  right: clamp(-1.2rem, 0vw, 1.2rem);
  width: clamp(10rem, 12vw, 12rem);
}
.p-message__img--02 {
  top: -3rem;
  left: clamp(-14rem, -12vw, -10rem);
  width: clamp(22rem, 30vw, 30rem);
}
.p-message__img--03 {
  right: clamp(-16rem, -14vw, -10rem);
  top: 19rem;
  width: clamp(22rem, 30vw, 30rem);
}
.p-message__img--04 {
  left: clamp(-16rem, -14vw, -12rem);
  bottom: -3rem;
  width: clamp(22rem, 30vw, 30rem);
}
.p-message__img--05 {
  right: clamp(-6rem, -4vw, -2rem);
  bottom: -11rem;
  width: clamp(18rem, 25vw, 24rem);
}
.p-message__img-sp {
  display: none;
  margin: 0;
}
.p-message__img-sp img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 0;
    margin-bottom: -2rem;
  }
  .p-message::before {
    top: 9rem;
    left: 1.8rem;
    width: 8.8rem;
    height: 8.8rem;
  }
  .p-message::after {
    right: 1.4rem;
    bottom: 1.2rem;
    width: 13.4rem;
    height: 7.4rem;
    border-radius: 2.4rem;
  }
  .p-message__inner {
    min-height: auto;
    width: calc(100% - 2.4rem);
  }
  .p-message__inner::before {
    width: 7.8rem;
    height: 12.5rem;
    bottom: -2rem;
  }
  .p-message__inner::after {
    width: 12.4rem;
    height: 12.4rem;
    right: -1.8rem;
    top: 21rem;
  }
  .p-message__card {
    width: 100%;
    padding: 0 2rem;
  }
  .p-message__lead {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: -6rem;
    position: relative;
    z-index: 2;
  }
  .p-message__text {
    margin-top: 2.4rem;
    font-size: 1.6rem;
    line-height: 2.05;
    position: relative;
    z-index: 2;
  }
  .p-message__img {
    display: none;
  }
  .p-message__img-sp {
    display: block;
    width: min(28rem, 80%);
    margin: 0 auto;
  }
  .p-message__img-sp--top {
    width: 140vw;
    max-width: none;
    position: relative;
    left: 59%;
    transform: translateX(-50%);
  }
  .p-message__img-sp--bottom {
    margin-top: 2.4rem;
    width: 120vw;
    max-width: none;
    position: relative;
    left: 29%;
    transform: translateX(-50%);
  }
}

.p-point {
  position: relative;
  padding: 8rem 0 8rem;
  background: #ffffff;
}
.p-point__ttl {
  margin-bottom: 5.2rem;
}
.p-point__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-point {
    padding: 7rem 0;
  }
  .p-point::before {
    top: -1.5rem;
    width: 9rem;
    height: 9rem;
    border-radius: 0 0 3rem 0;
  }
  .p-point__ttl {
    margin-bottom: 3.8rem;
  }
  .p-point__cards {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .p-point__card {
    max-width: 100%;
  }
}

.p-service {
  padding: 8rem 0 8rem;
  background: #fbfaf3;
}
.p-service__ttl {
  margin-bottom: 4.6rem;
}
.p-service__lead {
  margin: 0 0 4.6rem;
  text-align: center;
  font-size: 1.6rem;
}
.p-service__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 48rem), 1fr));
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding: 7rem 0 3rem;
  }
  .p-service__ttl {
    margin-bottom: 2.4rem;
  }
  .p-service__lead {
    margin-bottom: 3.4rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .p-service__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-service-gallery {
  position: relative;
  padding: 8rem 0;
  overflow-x: clip;
  overflow-y: visible;
  background: #fbfaf3;
}
.p-service-gallery__swiper {
  overflow: visible;
}
.p-service-gallery__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.p-service-gallery__slide {
  width: 39rem;
  height: auto !important;
  background: transparent;
}
.p-service-gallery__item {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  line-height: 0;
}
.p-service-gallery__item--up {
  transform: translateY(-4rem);
}
.p-service-gallery__item--down {
  transform: translateY(4rem);
}
.p-service-gallery__item img {
  width: 100%;
  height: 26rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-service-gallery__deco {
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-service-gallery__deco--01 {
  top: -1.4rem;
  left: 10vw;
  width: clamp(11rem, 13vw, 17rem);
  height: clamp(11rem, 13vw, 17rem);
  background-image: url(../images/bg_blue.svg);
}
.p-service-gallery__deco--02 {
  right: clamp(2rem, 42vw, 56rem);
  bottom: -2rem;
  width: clamp(11rem, 13vw, 17rem);
  height: clamp(11rem, 13vw, 17rem);
  background-image: url(../images/bg_green.svg);
}
.p-service-gallery__deco--03 {
  top: 1rem;
  right: 3vw;
  width: clamp(11rem, 13vw, 17rem);
  height: clamp(11rem, 13vw, 17rem);
  background-image: url(../images/bg_red.svg);
}
.p-service-gallery .swiper-wrapper,
.p-service-gallery .swiper-slide {
  position: relative;
  z-index: 2;
}
.p-service-gallery .js-gallery-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
@media screen and (max-width: 767px) {
  .p-service-gallery {
    padding: 5rem 0;
  }
  .p-service-gallery__slide {
    width: 20rem;
  }
  .p-service-gallery__item {
    border-radius: 1.2rem;
  }
  .p-service-gallery__item--up {
    transform: translateY(-2rem);
  }
  .p-service-gallery__item--down {
    transform: translateY(2rem);
  }
  .p-service-gallery__item img {
    height: 13rem;
  }
  .p-service-gallery__deco--01 {
    top: 0.9rem;
    left: -2rem;
  }
  .p-service-gallery__deco--02 {
    bottom: -1rem;
    right: 30%;
  }
  .p-service-gallery__deco--03 {
    top: -0.5rem;
    right: -2rem;
  }
}

.p-guide {
  padding: 8rem 0 8rem;
  background: #fbfaf3;
}
.p-guide__inner {
  display: grid;
  grid-template-columns: minmax(35rem, 26rem) 1fr;
  gap: 4rem;
  align-items: start;
}
.p-guide__ttl {
  background: #ffffff;
  border-radius: 12rem;
  box-sizing: border-box;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  align-self: flex-start;
  width: 34rem;
  height: 34rem;
}
.p-guide__content {
  display: contents;
}
.p-guide__block--target, .p-guide__block--area {
  grid-column: 2;
}
@media print, screen and (min-width: 768px) {
  .p-guide__block--target {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(24rem, 30vw, 30rem);
  }
  .p-guide__block--area {
    margin-top: -10rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-guide__block--area {
    margin-top: 0;
  }
}
.p-guide__block--flow {
  grid-column: 1/-1;
  margin-top: 1rem;
}
.p-guide__txt {
  margin: 1.8rem 0 0;
}
.p-guide__areaCard {
  margin-top: 0;
  background-image: url(../images/bg_guide.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  max-width: 63rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-guide__areaCard {
    grid-template-columns: minmax(0, 1fr) 30rem;
  }
}
.p-guide__areaText {
  grid-column: 1;
  width: 100%;
  padding-left: 6rem;
}
.p-guide__areaTtl {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  text-align: center;
}
.p-guide__areaTtl .c-title-dot__text {
  flex: 0 1 auto;
}
.p-guide__areaLead {
  margin: 3.2rem 0 1.2rem;
  font-size: 1.8rem;
  text-align: center;
}
.p-guide__areaList {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
  max-width: 33rem;
}
.p-guide__areaItem {
  display: inline-block;
  margin: 0 0.8rem 0.8rem 0;
  border: 1px solid #f2c300;
  border-radius: 1rem;
  background: #ffffff;
  padding: 1rem 1rem;
  line-height: 1;
}
.p-guide__areaNote {
  margin: 1.2rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.p-guide__map {
  margin: 0;
  grid-column: 2;
  grid-row: auto;
  width: 100%;
  align-self: center;
}
.p-guide__map img {
  width: 100%;
  height: auto;
  display: block;
}
.p-guide__flowList {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
.p-guide__flowItem {
  position: relative;
}
.p-guide__flowItem:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20rem;
  right: -6.5rem;
  width: 12rem;
  height: 2px;
  background: #f2c300;
}
@media screen and (max-width: 767px) {
  .p-guide {
    padding: 8.5rem 0 3rem;
  }
  .p-guide__inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .p-guide__ttl {
    width: 21rem;
    height: 21rem;
    margin: 0 auto;
    border-radius: 7.2rem;
    padding-bottom: 4rem;
  }
  .p-guide__content {
    display: grid;
    gap: 6rem;
  }
  .p-guide__block--target, .p-guide__block--area, .p-guide__block--flow {
    grid-column: auto;
  }
  .p-guide__block--flow {
    margin-top: 0;
  }
  .p-guide__txt {
    margin-top: 2.6rem;
  }
  .p-guide__areaCard {
    margin-top: 0;
    max-width: 100%;
    padding: 0;
    background-image: none;
    position: relative;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr) clamp(11.6rem, 34vw, 14rem);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0.8rem;
    align-items: start;
  }
  .p-guide__areaCard::before {
    content: "";
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_guide-sp.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
  }
  .p-guide__areaCard > * {
    position: relative;
    z-index: 1;
  }
  .p-guide__areaText {
    grid-column: 1;
    grid-row: 1/span 2;
    padding-left: 0;
  }
  .p-guide__areaTtl {
    margin: 0 0 0.8rem;
    margin-right: auto;
    justify-content: flex-start;
    text-align: left;
  }
  .p-guide__areaLead {
    margin: 4rem 0 1rem 1.5rem;
    font-size: 1.6rem;
    text-align: left;
  }
  .p-guide__areaList {
    margin: 0 0 0 1.5rem;
    max-width: none;
    text-align: left;
  }
  .p-guide__areaItem {
    font-size: 1.4rem;
    padding: 0.6rem 1rem;
    margin: 0 0.1rem 0.5rem 0;
  }
  .p-guide__areaNote {
    margin: 2rem 0 0 1.5rem;
    font-size: 1.2rem;
    text-align: left;
  }
  .p-guide__map {
    grid-column: 2;
    grid-row: 2;
    max-width: 100%;
    margin: 0;
    align-self: center;
  }
  .p-guide__flowList {
    margin-top: 1.4rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .p-guide__flowItem:not(:last-child)::after {
    top: 14rem;
    bottom: -1.3rem;
    left: 4.7rem;
    right: auto;
    width: 2px;
    height: 5rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-guide__block--area {
    grid-column: 1/-1;
  }
  .p-guide__areaCard {
    width: 100%;
    max-width: none;
  }
}
.p-faq {
  padding: 8rem 0 8rem;
  background-color: #fbfaf3;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 6rem 0 5rem;
  }
}
.p-faq__ttl {
  margin: 0 auto 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__ttl {
    margin-bottom: 2.8rem;
  }
}

.p-outline {
  position: relative;
  z-index: 2;
  padding: 8rem 0 8rem;
  background-color: #fbfaf3;
  overflow-x: clip;
  overflow-y: visible;
}
@media screen and (max-width: 767px) {
  .p-outline {
    padding: 6rem 0 8rem;
  }
}
.p-outline__cardFrame {
  position: relative;
  width: 100%;
}
.p-outline__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}
.p-outline__deco img {
  display: block;
  width: 100%;
  height: auto;
}
.p-outline__deco--yellow {
  top: 0;
  left: 0;
  transform: translate(-38%, -38%);
  width: min(52vw, 34rem);
  max-width: none;
}
.p-outline__deco--red {
  bottom: 0;
  right: 0;
  transform: translate(38%, 38%);
  width: min(46vw, 30rem);
  max-width: none;
}
.p-outline__ttl {
  margin: 0 auto 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-outline__ttl {
    margin-bottom: 2.8rem;
  }
}
.p-outline__card {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 4rem;
  background: #ffffff;
  border-radius: 6rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-outline__card {
    padding: 2rem;
    border-radius: 4rem;
  }
}
.p-outline__row--addr {
  align-items: flex-start;
}
.p-outline__addr {
  margin: 0;
}
.p-outline__mapBtn {
  margin-top: 1.2rem;
  max-width: 20rem;
  min-height: 3.7rem;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-outline__mapBtn {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
.p-outline .c-table__row:last-child {
  border-bottom: 0;
}

.p-news {
  position: relative;
  z-index: 1;
  padding: 8rem 0 8rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 6rem 0 8rem;
  }
}
.p-news__ttl {
  margin: 0 auto 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-news__ttl {
    margin-bottom: 2.8rem;
  }
}
.p-news__list {
  margin: 0 0 3.2rem;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    padding: 0;
    margin-bottom: 2.8rem;
  }
}
.p-news__action {
  display: flex;
  justify-content: center;
}

.p-recruit {
  --recruit-media-right: -7rem;
  --recruit-media-bottom: clamp(-3.5rem, -7vw, -2rem);
  --recruit-yellow-offset-x: 0rem;
  --recruit-yellow-offset-y: 0rem;
  position: relative;
  z-index: 3;
  padding: clamp(4.8rem, 7vw, 8.5rem) 0 clamp(5rem, 9vw, 9rem);
  background-color: #fbfaf3;
  background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0) 100%), url("../images/bg_recruit.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center center;
  background-size: 100% clamp(6rem, 18vw, 12rem), cover;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}
.p-recruit__inner {
  position: relative;
  z-index: 1;
  min-height: clamp(28rem, 40vw, 38rem);
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.p-recruit__deco {
  position: absolute;
  z-index: 1;
  top: clamp(-13rem, -10vw, -7rem);
  left: clamp(-10rem, -7vw, -4rem);
  width: min(25vw, 32rem);
  max-width: none;
  pointer-events: none;
  line-height: 0;
}
.p-recruit__deco img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__deco {
    top: -2rem;
    left: -5rem;
    width: 32rem;
  }
}
.p-recruit__deco--yellow {
  z-index: 0;
  top: 26rem;
  left: auto;
  right: calc((100vw - min(1260px, 100vw)) / 2 + var(--recruit-media-right) + var(--recruit-yellow-offset-x));
  bottom: calc(var(--recruit-media-bottom) + var(--recruit-yellow-offset-y));
  width: 33rem;
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .p-recruit__deco--yellow {
    top: 29rem;
    left: auto;
    right: -6rem;
    bottom: auto;
    width: 28rem;
  }
}
.p-recruit__content {
  position: relative;
  z-index: 3;
  width: min(100%, 40rem);
  text-align: center;
}
.p-recruit__content .c-title {
  align-items: center;
  text-align: center;
}
.p-recruit__ttl {
  margin: 0 0 7rem;
}
.p-recruit__lead {
  margin: 0 0 1rem;
}
.p-recruit__action {
  display: flex;
  justify-content: center;
}
.p-recruit__note {
  font-size: 1.35rem;
  margin-bottom: 4rem;
}
.p-recruit__media {
  position: absolute;
  z-index: 2;
  right: var(--recruit-media-right);
  width: clamp(42rem, 65vw, 70rem);
  max-width: none;
  margin: 0;
  line-height: 0;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .p-recruit__media {
    top: auto;
    bottom: var(--recruit-media-bottom);
    transform: none;
  }
}
.p-recruit__img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.p-recruit .c-btn--more {
  background-color: #c7d100;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    margin-bottom: 0;
    padding: 5rem 0;
  }
  .p-recruit__inner {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .p-recruit__content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .p-recruit__ttl {
    margin-bottom: 5.2rem;
  }
  .p-recruit__lead {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
  .p-recruit__note {
    font-size: 1.2rem;
  }
  .p-recruit__media {
    position: relative;
    z-index: 2;
    top: auto;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    margin: 0 auto;
  }
  .p-recruit__img {
    transform: none;
  }
}

main > .bg_wave {
  position: relative;
  z-index: 1;
}

.p-contact {
  position: relative;
  padding: 8rem 0;
  background-color: #fff7e6;
  overflow: hidden;
}
.p-contact__inner {
  position: relative;
  z-index: 1;
}
.p-contact__ttl {
  margin-bottom: 4.5rem;
}
.p-contact__ttl .c-title__en {
  color: #f28330;
}
.p-contact__intro {
  margin: 0 auto clamp(3.2rem, 5vw, 4.5rem);
  text-align: center;
}
.p-contact__telCard {
  margin: 0 auto clamp(4rem, 6vw, 5.5rem);
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  padding: clamp(1.8rem, 3vw, 2.4rem) clamp(2rem, 4vw, 3.2rem);
  border-radius: 3rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .p-contact__telCard {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2.4rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__telCard {
    width: 100%;
  }
}
.p-contact__telLabel {
  margin: 0;
  font-size: 2.4rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-contact__telLabel {
    flex: 0 1 auto;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__telLabel {
    font-size: 2rem;
  }
}
.p-contact__telRight {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .p-contact__telRight {
    justify-content: flex-end;
  }
}
.p-contact__telBundle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.p-contact__telNumRow {
  display: flex;
  align-items: center;
  gap: 0.8rem 1.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
}
.p-contact__telIconWrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.15em;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__telIconWrap {
    height: 3.3rem;
    position: relative;
    top: -1.1rem;
  }
}
.p-contact__telIcon {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-contact__telNum {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 1em;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #a8510d;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__telNum {
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.15em;
    font-size: 3.8rem;
  }
}
.p-contact__telNum:hover {
  opacity: 0.85;
}
.p-contact__telSub {
  font-size: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-contact__telSub {
    display: block;
    position: relative;
    left: -1.2rem;
  }
}
.p-contact__telHours {
  margin: 0;
  align-self: stretch;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__telHours {
    font-size: 1.2rem;
  }
}
.p-contact__formBlock {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.p-contact__formTtl {
  margin: 0 0 2.5rem;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__formTtl {
    font-size: 2rem;
  }
}
.p-contact__formLead {
  margin: 0 0 clamp(2.4rem, 4vw, 3.2rem);
  text-align: center;
  word-break: auto-phrase;
}
.p-contact__form {
  margin: 0;
}
.p-contact__formRows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__formRows {
    gap: 0.2rem;
  }
}
.p-contact__formAction {
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
  display: flex;
  justify-content: center;
}
.p-contact__consent {
  margin-top: 2rem;
  text-align: center;
}
.p-contact__consentTxt {
  margin: 0 0 1.2rem;
}
.p-contact__consentLabel {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-contact__consentInput {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.p-contact__consentCheck {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #f2c300;
  border-radius: 0.3rem;
  background: #ffffff;
  box-sizing: border-box;
}
.p-contact__consentInput:checked + .p-contact__consentCheck::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.4rem;
  width: 0.8rem;
  height: 1.2rem;
  border: solid #a8510d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.p-contact__submit.c-btn--more {
  min-height: 5.6rem;
  background-color: #a8510d;
  color: #ffffff;
}
.p-contact__submit.c-btn--more:hover {
  opacity: 0.92;
}
.p-contact__submit.c-btn--more:focus-visible {
  outline: 2px solid #f28330;
  outline-offset: 3px;
}
.p-contact__submit.c-btn--more .c-btn__ico::after {
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid #ffffff;
  border-style: none solid solid none;
  transform: rotate(-45deg);
}

.c-page-top {
  position: fixed;
  right: clamp(1.6rem, 2.4vw, 2.4rem);
  bottom: clamp(1.6rem, 2.4vw, 2.4rem);
  z-index: 1000;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #a8510d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: translateY(1.2rem);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.c-page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-page-top:hover {
  opacity: 0.85;
}
.c-page-top:focus-visible {
  outline: 2px solid #f28330;
  outline-offset: 3px;
}
@media screen and (max-width: 767px) {
  .c-page-top {
    width: 5.2rem;
    height: 5.2rem;
  }
}

.c-page-top__arrow {
  width: 1.8rem;
  height: 1.8rem;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-top: 0.8rem;
}

.p-page-thanks__shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.p-page-thanks__shell > main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.p-page-thanks__shell > main > .p-contact {
  flex: 1 1 auto;
  box-sizing: border-box;
}

body.p-page-thanks .p-contact {
  padding-top: clamp(11rem, 16vw, 14rem);
}
@media screen and (max-width: 767px) {
  body.p-page-thanks .p-contact {
    padding-top: clamp(9.5rem, 22vw, 12rem);
  }
}/*# sourceMappingURL=style.css.map */