@charset "UTF-8";
:root {
  --gold01: #a18156;
  --text-black: #333333;
  --en: "League Spartan", sans-serif;
  --serif: "Noto Serif JP", serif;
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
  outline: 0;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.44;
  color: var(--text-black);
  background: #fff;
  font-feature-settings: "pkna" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
  opacity: 0.9;
}
a:hover {
  opacity: 0.8;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table th,
table td {
  border-collapse: collapse;
}
table th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}
section .inner {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
}

.en {
  font-family: "League Spartan", sans-serif;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.btn01 {
  color: white;
  font-family: var(--serif);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 238px;
  height: 60px;
  background: linear-gradient(#b79668 0%, #80633c 100%);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
}
.btn01::after {
  content: "";
  background: url(../../assets/images/icon-mail.svg) no-repeat center/contain;
  width: 1.1em;
  height: 1em;
  display: inline-block;
  margin-left: 0.5em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 20px 0;
  z-index: 5;
  transition: background-color 0.4s ease;
}
.header.scrolled {
  background-color: rgba(18, 20, 32, 0.85);
}
.header.scrolled .header-inner {
  border-bottom: none;
}
.header .header-inner {
  align-items: center;
  border-bottom: 1px solid white;
  padding-bottom: 8px;
  transition: border-bottom 0.4s ease;
}
.header .header-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  font-family: var(--serif);
  -moz-column-gap: 2.196193265vw;
  column-gap: 2.196193265vw;
}
.header .header-nav-list li a {
  color: white;
  font-size: 1.5rem;
}
.header .header-nav-list li.contact a {
  width: 146px;
  height: 46px;
}

.header-inner .openbtn {
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 64px;
  z-index: 9999;
}

.header-inner .openbtn span {
  display: inline-block;
  transition: all 0.5s;
  position: absolute;
  left: 20px;
  height: 2px;
  border-radius: 2px;
  background: #8e7969;
  width: 30px;
}

.header-inner .openbtn span:nth-of-type(1) {
  top: 20px;
}

.header-inner .openbtn span:nth-of-type(2) {
  top: 32px;
}

.header-inner .openbtn span:nth-of-type(3) {
  top: 44px;
}

.header-inner .openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 20px;
  transform: translateY(12px) rotate(-45deg);
  width: 30px;
}

.header-inner .openbtn.active span:nth-last-of-type(2) {
  opacity: 0;
}

.header-inner .openbtn.active span:nth-of-type(3) {
  top: 20px;
  left: 20px;
  transform: translateY(12px) rotate(45deg);
  width: 30px;
}

.gnav-sp {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  padding: 100px 60px 60px;
  background: #efedea;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s ease;
}

.gnav-sp .gnav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gnav-sp .gnav-list li {
  margin-bottom: 32px;
}

.gnav-sp .gnav-list li a {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--serif);
}

.gnav-sp.panelactive {
  top: 0px;
  opacity: 1;
  pointer-events: inherit;
}

main {
  background: #f7f7f7;
  overflow-x: hidden;
}

.mv {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100svh;
  background: url(../../assets/images/mv-pc.png) no-repeat center/cover;
}
/* .mv .mv-text-72hours {
  position: absolute;
  max-width: 381px;
  width: 381px;
  height: 230px;
  bottom: 10.980966325vw;
  left: 62.737920937vw;
} */
@media screen and (max-width: 768px) {
  .mv{
    background: url(../../assets/images/mv-sp.png) no-repeat center /cover;
  }
  /* .mv .mv-text-72hours {
    width: 100%;
    max-width: 100%;
    bottom: 0px;
    left: 0;
  } */
}
.mv .mv-content {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .mv .mv-content {
    padding-top: 60px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.mv .mv-text {
  text-align: center;
  color: white;
  font-family: var(--serif);
  font-weight: 500;
}
.mv .mv-text .top {
  font-size: clamp(22px, 4.39238653vw, 60px);
  line-height: 1;
  margin-bottom: 16px;
  white-space: nowrap;
}
.mv .mv-text .top .big {
  font-size: 160%;
}
.mv .mv-text .middle {
  font-size: clamp(18px, 1.756954612vw, 24px);
  margin-bottom: 24px;
  line-height: 1.5;
}
.mv .mv-text .bottom {
  font-size: clamp(16px, 1.317715959vw, 18px);
  line-height: 1.9444444444;
  margin-bottom: 32px;
}
.mv .mv-cta {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  margin: 0 auto;
}

h2 {
  font-size: clamp(20px, 2.3426061493vw, 32px);
  text-align: center;
  font-weight: 500;
  line-height: 1.875;
  margin-bottom: 40px;
  font-family: var(--serif);
}

.service .service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .service .service-list {
    grid-template-columns: 1fr;
  }
}
.service .service-list li {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 24px;
  background: white;
}
.service .service-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(#6c81bf 0%, #2a334d 100%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.service .service-list li::before .img-wrapper {
  max-height: 70px;
  height: 100%;
  width: auto;
}
.service .service-list li h3 {
  color: var(--gold01);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-weight: 500;
}

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

.process {
  overflow: hidden;
  background:#324864;
  position: relative;
}
.process::before {
  content: "";
  background-image: url(../../assets/images/deco01.svg);
  background-size: 100vw 84.9926793558vw;
  width: 100vw;
  height: 84.9926793558vw;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.process h2 {
  color: white;
}
.process .process-list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.process .process-list .item {
  background-color: white;
  width: 100%;
  margin-bottom: 64px;
  height: 140px;
  justify-content: flex-start;
  position: relative;
}
.process .process-list .item:not(:last-child)::after {
  content: "";
  background: url(../../assets/images/arrow-brown.svg) no-repeat center/contain;
  width: 35px;
  height: 13px;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
}
.process .process-list .item.ex {
  height: auto;
  padding: 32px;
}
@media screen and (max-width:768px){
  .process .process-list .item.ex{
    padding: 24px;
  }
}
.process .process-list .item.ex h3 {
  text-align: center;
  color: var(--gold01);
  font-weight: 500;
  margin-bottom: 8px;
}
.process .process-list .item .item-list-wrapper {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .process .process-list .item .item-list-wrapper {
    flex-direction: column;
  }
}
.process .process-list .item .item-list-wrapper .item-list.left-from0,
.process .process-list .item .item-list-wrapper .item-list.right-from7 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .process .process-list .item .item-list-wrapper .item-list.left-from0,
  .process .process-list .item .item-list-wrapper .item-list.right-from7 {
    width: 100%;
  }
}
.process .process-list .item .item-list-wrapper .item-list.left-from0 .item-has-num::before,
.process .process-list .item .item-list-wrapper .item-list.right-from7 .item-has-num::before {
  content: attr(data-num) ".";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 2rem;
  color: var(--gold01);
  font-weight: 500;
  font-family: var(--serif);
}
.process .process-list .img-wrapper {
  width: 22.5%;
  height: 100%;
  flex-shrink: 0;
}
.process .process-list .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.process .process-list .right {
  padding: 0 32px 0px 16px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width:768px){
  .process .process-list .right{
    padding: 0 16px 0px 10px;
  }
}
.process .process-list .right .num {
  height: 100%;
  width: 11.2903225806%;
  margin-right: 10px;
}
.process .process-list .right .num img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.process .process-list .text-wrapper {
  height: 100%;
  background-color: white;
  flex: 1;
}
.process .process-list .text-wrapper h3 {
  font-size: clamp(16px, 1.756954612vw, 24px);
  color: var(--gold01);
  font-weight: 500;
  font-family: var(--serif);
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .about h2 {
    max-width: 200px;
    margin: 0 auto 40px;
  }
}

.success {
  position: relative;
}
.success::before {
  content: "";
  background: url(../../assets/images/success.png) no-repeat center/contain;
  width: 44.2166910688vw;
  height: 41.21522694vw;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16.3982430454vw;
  mix-blend-mode: multiply;
}
.success .content01 {
  margin-bottom: 72px;
}
.success .success-list,
.success .voice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.success-list {
  position: relative;
}
@media screen and (max-width: 768px) {
  .success .success-list,
  .success .voice-list {
    grid-template-columns: 1fr;
  }
}
.success .success-list li,
.success .voice-list li {
  height: 170px;
  background: white;
}
.success .success-list li .img-wrapper,
.success .voice-list li .img-wrapper {
  width: 37.5%;
  height: 100%;
  flex-shrink: 0;
}
.success .success-list li .img-wrapper img,
.success .voice-list li .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.success .success-list li .text-wrapper,
.success .voice-list li .text-wrapper {
  flex: 1;
  padding: 20px;
}
.success .success-list li .text-wrapper h3,
.success .voice-list li .text-wrapper h3 {
  font-size: clamp(18px, 1.756954612vw, 24px);
  font-family: var(--serif);
  font-weight: 500;
  color: var(--gold01);
  margin-bottom: 8px;
}

.why {
  background: #324864;
}
@media screen and (max-width: 768px) {
  .why h2 img {
    height: 1.2em;
  }
}
.why h2 .en {
  font-weight: 400;
}
.why .why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .why .why-list {
    grid-template-columns: 1fr;
  }
}
.why .why-list li {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background: linear-gradient(#b9a066 0%, #7a683e 100%);
  border: 1px solid #fff;
  color: white;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.756954612vw, 24px);
}
.why .why-list li .left {
  width: 50%;
  padding-left: 24px;
}
.why .why-list li .right {
  background-color: rgba(77, 57, 10, 0.1);
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 24px;
}
.why .why-list li .right::before {
  content: "";
  height: 100%;
  width: 16px;
  background: linear-gradient(#b9a066 0%, #7a683e 100%);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.type h2 {
  margin-bottom: 0;
  line-height: 1.2;
}
.type h2 .big {
  font-size: 160%;
}
.type .sub-ttl {
  font-size: clamp(18px, 1.9033674963vw, 26px);
  text-align: center;
  font-family: var(--serif);
  margin-bottom: 40px;
}
.type .lead {
  margin-bottom: 40px;
  text-align: center;
}
.type .kizon .type-list .item .cate {
  background-color: #2c354f;
}
.type .content-flex-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 16px;
}
.type .content-flex-wrapper .ttl-area {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  font-size: clamp(18px, 1.756954612vw, 24px);
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-weight: 500;
  padding: 0 16px;
  position: relative;
  margin-right: 16px;
  padding-bottom: 16px;
}
.type .content-flex-wrapper .ttl-area::before {
  content: "";
  background-color: var(--text-black);
  width: 2px;
  height: calc(100% + 16px);
  position: absolute;
  top: 0;
  right: 0;
}
.type .type-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .type .type-list {
    grid-template-columns: 1fr;
  }
}
.type .type-list .item {
  position: relative;
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.type .type-list .item .box {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.type .type-list .item .top {
  padding: 24px 16px 10px;
}
.type .type-list .item .top .desc {
  font-size: 1.6rem;
}
.type .type-list .item .bottom {
  padding: 16px;
  height: 100%;
  padding-top: 10px;
}
.type .type-list .item .cate {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: var(--gold01);
  width: 90px;
  display: flex;
  font-size: 1.4rem;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: white;
}
.type .type-list .item h3 {
  font-size: clamp(18px, 1.756954612vw, 24px);
  text-align: center;
  font-family: var(--serif);
  color: var(--gold01);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 500;
}
.type .type-list .item h3 .ja {
  font-size: clamp(16px, 1.4641288433vw, 18px);
}
.type .type-list .item .bottom {
  background: #fcfcf2;
  color: #2a334d;
  font-weight: 700;
}
.type .arrow-container {
  margin-left: 56px;
  padding-top: 16px;
  border-top: 2px solid var(--text-black);
}
@media screen and (max-width: 768px) {
  .type .arrow-container {
    display: none;
  }
}

.sample {
  background: #324864;
}
.sample h2 {
  color: white;
}
.sample .sample-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sample .sample-list .item {
 
  padding: 12px;
  
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  
  background-color: white;
  height: auto;
  min-height: 100px;
}
@media screen and (max-width:1080px){
  .sample .sample-list{
    grid-template-columns: repeat(3,1fr);
  }
}
@media screen and (max-width: 768px) {
  .sample .sample-list {
    grid-template-columns: 1fr;
  }
  .sample .sample-list .item{
    min-height: 72px;
  }
}


.sample .sample-list .item h3 {
  font-size: clamp(16px, calc(16/1366*100vw), 16px);
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--gold01);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2380952381;
}

.faq {
  background: #efedea;
}
.faq .faq-item {
  background-color: white;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto 24px;
}
.faq .faq-head,
.faq .faq-body {
  padding: 20px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .faq .faq-head,
  .faq .faq-body {
    padding: 16px;
  }
}
.faq .faq-head span,
.faq .faq-body span {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: white;
  display: flex;
  justify-content: center;
  line-height: 1;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq .faq-head span,
  .faq .faq-body span {
    font-size: 1.8rem;
  }
}
.faq .faq-head {
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
}
.faq .faq-head::before,
.faq .faq-head::after {
  content: "";
  width: 26px;
  height: 2px;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold01);
}
@media screen and (max-width: 768px) {
  .faq .faq-head::before,
  .faq .faq-head::after {
    width: 18px;
    height: 1px;
  }
}
.faq .faq-head::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq .faq-head::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq .faq-head.close::before {
  transform: rotate(45deg);
}
.faq .faq-head.close::after {
  transform: rotate(-45deg);
}
.faq .faq-head p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 16px;
  flex: 1;
  color: var(--gold01);
  font-family: var(--serif);
}
@media screen and (max-width: 768px) {
  .faq .faq-head p {
    font-size: 1.6rem;
    margin-left: 10px;
    padding-right: 30px;
  }
}
.faq .faq-head span {
  color: var(--gold01);
}
.faq .faq-body {
  border-top: 1px solid #EFEDEA;
  display: none;
  padding-left: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq .faq-body {
    padding-left: 40px;
  }
}
.faq .faq-body::after {
  position: absolute;
  content: "A.";
  font-family: var(--serif);
  font-size: 2.4rem;
  color: #324864;
  position: absolute;
  left: 20px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .faq .faq-body::after {
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
    left: 16px;
    top: 16px;
  }
}
.faq .faq-body p {
  flex: 1;
}
.faq .text-wrapper {
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--serif);
}
.faq .text-wrapper .top {
  color: var(--gold01);
  font-size: clamp(20px, 1.756954612vw, 24px);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.3;
}
.faq .text-wrapper .top .big {
  font-size: 166%;
}
.faq .text-wrapper .bottom {
  font-size: clamp(16px, 2.0497803807vw, 28px);
  font-weight: 500;
  line-height: 1;
}
.faq .btn01 {
  width: 238px;
  height: 60px;
  margin: 0 auto;
  font-size: 1.9rem;
}
.faq .btn01::after {
  content: none;
}

.contact .contact-wrapper {
  padding: 48px;
  background: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .contact .contact-wrapper {
    padding: 20px;
  }
}
.contact .contact-wrapper {
  margin-top: 88px;
}
@media screen and (max-width: 768px) {
  .contact .contact-wrapper {
    margin-top: 40px;
  }
}
.contact .contact-wrapper table {
  width: 100%;
  margin: 0 auto;
}
.contact .contact-wrapper table tr:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.contact .contact-wrapper table tr.naiyou th {
  vertical-align: top;
}
.contact .contact-wrapper table th,
.contact .contact-wrapper table td {
  padding: 20px 0;
}
.contact .contact-wrapper table th label.required::after {
  content: "必須";
  background: #c95f5f;
  font-size: 1.2rem;
  color: white;
  border-radius: 20px;
  display: inline-block;
  padding: 3px 5px;
  line-height: 1;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .contact .contact-wrapper table th label.required::after {
    font-size: 1.1rem;
    margin-left: 6px;
    margin-top: -1px;
  }
}
.contact .contact-wrapper table td {
  width: 60.4838709677%;
}
.contact .contact-wrapper table td label {
  margin-right: 2em;
}
.contact .contact-wrapper table input[type="checkbox"] {
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  margin-right: 5px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .contact .contact-wrapper table input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
}
.contact .contact-wrapper table input,
.contact .contact-wrapper table textarea {
  border-radius: 3px;
  border: 1px solid #ccc;
  width: 100%;
  padding: 8px;
}
.contact .contact-wrapper table textarea {
  height: 146px;
  resize: vertical;
}
.contact .contact-wrapper table .flex-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact .contact-wrapper table .flex-wrapper {
    flex-direction: column;
    row-gap: 5px;
    align-items: flex-start;
  }
}
.contact .contact-wrapper button {
  margin: 40px auto;
  width: 238px;
  height: 60px;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .contact .contact-wrapper button {
    margin: 24px auto;
  }
}
.contact .contact-wrapper .btn01::after {
  content: none;
}
.contact-confirm p {
  text-align: center;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
}
.contact-confirm .error {
  color: #c50000;
}
.contact-confirm .contact-btn {
  margin: 40px auto;
  width: 238px;
  height: 60px;
  background: linear-gradient(#b79668 0%, #80633c 100%);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  display: block;
}
.contact-confirm .contact-btn::after {
  content: none;
}

.footer {
  padding: 32px 32px 32px 16px;
  background: #324864;
  color: white;
  font-family: var(--serif);
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 48px;
  }
}
.footer .inner.flex {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .footer .inner.flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    margin-bottom: 24px;
  }
}
.footer .footer-nav-list {
  gap: 2.3426061493vw;
}
@media screen and (max-width: 768px) {
  .footer .footer-nav-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-nav-list li {
    margin-bottom: 8px;
  }
}
.footer .footer-nav-list li a {
  color: white;
  font-size: 1.5rem;
}
.footer .footer-nav-list .btn01 {
  width: 146px;
  height: 46px;
}
.footer small {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.4rem;
  text-align: center;
}

.page-privacy .header {
  background-color: #f7f7f7;
}
.page-privacy .header .header-nav-list li a {
  color: var(--text-black);
}
.page-privacy .header .header-nav-list li.contact a {
  color: white;
}
.page-privacy main {
  margin-top: 60px;
}
.page-privacy .head-text {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .page-privacy .head-text {
    margin-bottom: 24px;
  }
}
.page-privacy dl {
  margin-bottom: 32px;
}
.page-privacy dl dt {
  font-weight: 700;
  margin-bottom: 16px;
}
.page-privacy dl dd ul {
  padding-left: 1em;
}
.page-privacy dl dd ul ul {
  padding-left: 1em;
}
.page-privacy dl dd .list li {
  position: relative;
  padding-left: 1.3em;
}
.page-privacy dl dd .list li span {
  position: absolute;
  top: 0;
  left: 0;
}

h1 a img {
  width: 163px;
  display: block;
}
.footer-logo img {
  width: 160px;
}
