@charset "UTF-8";
/*-----------------------------------------------
reset
-----------------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

/*-----------------------------------------------
variables
-----------------------------------------------*/
:root {
  --color-brand: #A49365;
  --color-brand-sub: #F6F4EE;
  --color-text: #333;
  --color-nav: #333;
  --color-required: #FF0000;
  --color-bg: #F6F4EE;
  --font-family-base: Noto Sans JP, sans-serif;
  --font-family-title: Work Sans, Noto Sans JP, sans-serif;
  --font-family-nav: Work Sans, sans-serif;
  --font-size-base: 1.6rem;
  --font-size-page-title: 3.6rem;
  --line-height-base: 1.75;
  --container-max-width: 86.1111111111%;
}

/*-----------------------------------------------
base
-----------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  overflow-x: hidden;
}

main {
  padding-top: 100px;
}
@media (width < 768px) {
  main {
    padding-top: 60px;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover, a:focus {
    color: var(--color-link-hover);
    opacity: 0.8;
  }
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media (width < 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.container {
  width: 86.1111111111%;
  margin-inline: auto;
}
.container__inner {
  padding: 64px;
}
.container__inner--white-bg {
  background-color: #fff;
}
.container__inner--rounded {
  border-radius: 12px;
}
@media (width < 1025px) {
  .container__inner {
    padding: 32px;
  }
}
@media (width < 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
  .container__inner {
    padding: 32px 16px;
  }
}

.section--ptb {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section--pt {
  padding-top: 100px;
}
@media (width < 768px) {
  .section--ptb {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section--pt {
    padding-top: 48px;
  }
}

.badge-list {
  display: flex;
  gap: 10px;
}

.badge,
a.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #F6F4EE;
  color: #7D6E4A;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

a.badge:hover, a.badge:focus {
  background-color: #e5e1d3;
  color: #7D6E4A;
  opacity: 0.8;
  text-decoration: none;
}

.triangle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.triangle__img {
  width: 25.3px;
}

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

.bg {
  background-color: var(--color-bg);
}

.bg-qa {
  background-color: #F6F4EE;
}

.mb-75 {
  margin-bottom: 75px;
}
@media (width < 768px) {
  .mb-75 {
    margin-bottom: 40px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media (width < 768px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media (width < 768px) {
  .mb-100 {
    margin-bottom: 48px;
  }
}

.mb-64 {
  margin-bottom: 64px;
}
@media (width < 768px) {
  .mb-64 {
    margin-bottom: 32px;
  }
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-48-md {
  margin-bottom: 48px;
}
@media (width < 768px) {
  .mb-48-md {
    margin-bottom: 24px;
  }
}

.mb-48-md0 {
  margin-bottom: 48px;
}
@media (width < 768px) {
  .mb-48-md0 {
    margin-bottom: 0;
  }
}

.mb-48-md16 {
  margin-bottom: 48px;
}
@media (width < 768px) {
  .mb-48-md16 {
    margin-bottom: 16px;
  }
}

@media (width < 768px) {
  .md-mb-48 {
    margin-bottom: 48px;
  }
}

.br-md {
  display: none;
}
@media (width < 768px) {
  .br-md {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media (width < 768px) {
  .br-pc {
    display: none;
  }
}

/*-----------------------------------------------
buttons
-----------------------------------------------*/
.btn {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 1.6rem;
  color: #333;
}
.btn:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/brn_next_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--white {
  color: #fff;
}
.btn--white:after {
  background-image: url(../img/common/brn_next_arrow_white.svg);
}
@media (hover: hover) {
  .btn:hover, .btn:focus {
    opacity: 0.8;
  }
}
@media (width < 768px) {
  .btn {
    font-size: 1.4rem;
  }
}

.contact_btn {
  display: inline-block;
  font-size: 2.4rem;
  width: 468px;
  color: #fff;
  background: var(--color-btn-form);
  padding: 22px 0;
  text-align: center;
}
@media (hover: hover) {
  .contact_btn:hover, .contact_btn:focus {
    opacity: 0.8;
    color: #fff;
  }
}
@media (width < 768px) {
  .contact_btn {
    width: 300px;
  }
}

.link--swiper {
  font-family: var(--font-family-base);
  font-weight: 700;
  text-align: right;
  font-size: 1.4rem;
}
@media (width < 768px) {
  .link {
    text-align: right;
  }
}

/*-----------------------------------------------
cards
-----------------------------------------------*/
.card {
  background: var(--color-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.card__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__content {
  padding: var(--spacing-base);
}
.card__title {
  font-size: var(--font-size-h3);
  margin-bottom: var(--spacing-small);
}
.card__text {
  margin-bottom: var(--spacing-base);
}

/*-----------------------------------------------
contact-cta
-----------------------------------------------*/
.contact-cta {
  max-width: 1440px;
  width: 93.0555555556vw;
  margin-left: auto;
  margin-bottom: 0;
  border-radius: 12px 0 0 12px;
  background: var(--color-brand);
  color: var(--color-text-white);
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.contact-cta__inner {
  max-width: 474px;
}
.contact-cta__title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
.contact-cta__title .ja {
  font-size: 3.6rem;
}
.contact-cta__title .en {
  font-family: "Work Sans", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.contact-cta__btn {
  font-family: "Work Sans", sans-serif;
  width: 300px;
  border-radius: 36px;
  border: 1px solid #fff;
  padding: 25.5px 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
.contact-cta__btn::before {
  content: "";
  background-image: url(../img/common/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .contact-cta__btn:hover, .contact-cta__btn:focus {
    opacity: 0.8;
  }
}
@media (width < 1025px) {
  .contact-cta {
    padding: 48px 32px;
    flex-direction: column;
    gap: 48px;
  }
}
@media (width < 768px) {
  .contact-cta {
    width: 95.8974358974vw;
  }
  .contact-cta__title .ja {
    font-size: 2.4rem;
  }
}

/*-----------------------------------------------
qa-list
-----------------------------------------------*/
.qa-list {
  margin: 40px 0;
}
.qa-list .qa-6:first-child {
  border-top: 1px solid #BFBFBF;
}

.qa-6 {
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #BFBFBF;
}

.qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 30px 40px;
  color: #333333;
  font-weight: 500;
  cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
  position: absolute;
  left: 0;
  font-weight: 500;
  font-size: 24px;
}

.qa-6 summary::before {
  color: #7D6E4A;
  content: "Q.";
  font-family: "Work Sans";
}

.qa-6 summary::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #7D6E4A;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.qa-6 summary .plus-vertical {
  content: "";
  width: 2px;
  height: 16px;
  background: #7D6E4A;
  position: absolute;
  right: calc(1em + 7px);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.qa-6[open] summary {
  padding-bottom: 16px;
}

.qa-6[open] summary .plus-vertical {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.qa-6[open] summary::after {
  transform: translateY(-50%);
  -webkit-animation: moveToBottom 0.3s ease forwards;
          animation: moveToBottom 0.3s ease forwards;
}

.qa-6:not([open]) summary::after {
  -webkit-animation: moveToCenter 0.3s ease forwards;
          animation: moveToCenter 0.3s ease forwards;
}

.qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0 40px 30px 40px;
  color: #333;
  transition: transform 0.3s, opacity 0.5s;
}

.qa-6[open] p {
  transform: none;
  opacity: 1;
}

@-webkit-keyframes moveToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: calc(100% - 16px);
  }
}

@keyframes moveToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: calc(100% - 16px);
  }
}
@-webkit-keyframes moveToCenter {
  0% {
    top: calc(100% - 16px);
  }
  100% {
    top: 50%;
  }
}
@keyframes moveToCenter {
  0% {
    top: calc(100% - 16px);
  }
  100% {
    top: 50%;
  }
}
.section-qa-list .qa:first-child {
  border-top: none;
}

.qa {
  max-width: 100%;
  width: 100%;
  border-top: 1px solid #BFBFBF;
}

.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 30px 40px;
  color: #333333;
  cursor: pointer;
}

.qa summary::before,
.qa p::before {
  position: absolute;
  left: 0;
  font-size: 24px;
}

.qa summary::before {
  color: #7D6E4A;
  content: "Q.";
  font-family: "Work Sans";
}

.qa summary::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #7D6E4A;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.qa summary .plus-vertical {
  content: "";
  width: 2px;
  height: 16px;
  background: #7D6E4A;
  position: absolute;
  right: calc(1em + 7px);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.qa[open] summary {
  padding-bottom: 16px;
}

.qa[open] summary .plus-vertical {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.qa[open] summary::after {
  transform: translateY(-50%);
  -webkit-animation: moveToBottom 0.3s ease forwards;
          animation: moveToBottom 0.3s ease forwards;
}

.qa:not([open]) summary::after {
  -webkit-animation: moveToCenter 0.3s ease forwards;
          animation: moveToCenter 0.3s ease forwards;
}

.qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0 40px 30px 40px;
  color: #333;
  transition: transform 0.3s, opacity 0.5s;
}

.qa[open] p {
  transform: none;
  opacity: 1;
}

/*-----------------------------------------------
swiper
-----------------------------------------------*/
.swiper-container {
  width: 93.0555555556vw;
  margin-left: auto;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  /*contentを空にする*/
}

.swiper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.swiper-header .page__title {
  margin-bottom: 0;
  text-align: left;
}
.swiper-header .swiper__nav {
  display: flex;
  gap: 16px;
}
.swiper-header .swiper-button-prev,
.swiper-header .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.swiper-header .swiper-button-prev img,
.swiper-header .swiper-button-next img {
  width: 40px;
  height: 40px;
  display: block;
}

.swiper__img, .swiper__title, .swiper__text {
  margin-bottom: 15px;
}
.swiper__img {
  overflow: hidden;
  border-radius: 12px;
}
.swiper__title {
  font-weight: 700;
}

@media (max-width: 767px) {
  .swiper-header {
    align-items: flex-end;
    gap: 12px;
  }
  .swiper-header .swiper__nav {
    gap: 8px;
  }
  .swiper-header .swiper-button-prev,
.swiper-header .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .swiper-header .swiper-button-prev img,
.swiper-header .swiper-button-next img {
    width: 40px;
    height: 40px;
  }
}
/*-----------------------------------------------
main-canvas
-----------------------------------------------*/
.main-canvas-wrapper {
  width: 100vw;
  height: 66.625vw;
  overflow: hidden;
  position: relative;
}
.main-canvas-wrapper::before {
  content: "";
  width: 294px;
  height: 294px;
  background-image: url(../img/top/dot_01.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.main-canvas-wrapper::after {
  content: "";
  width: 294px;
  height: 294px;
  background-image: url(../img/top/dot_03.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.main-canvas-wrapper__dot {
  width: 294px;
  height: 294px;
  position: absolute;
  top: 30%;
  left: 39%;
  transform: translate(-50%, -50%);
}
@media (width < 1025px) {
  .main-canvas-wrapper {
    height: 60vh;
  }
  .main-canvas-wrapper::before, .main-canvas-wrapper::after, .main-canvas-wrapper__dot {
    width: 200px;
    height: 200px;
  }
}
@media (width < 768px) {
  .main-canvas-wrapper {
    height: 50vh;
  }
  .main-canvas-wrapper::before, .main-canvas-wrapper::after, .main-canvas-wrapper__dot {
    width: 120px;
    height: 120px;
  }
}

.main-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120.2vw;
  height: 80.08325vw;
  transform: translate(-50%, -50%);
  display: block;
}
.main-canvas__content {
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 190px;
  left: 5.625vw;
}
.main-canvas__title {
  font-family: var(--font-family-title);
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4px;
  text-transform: uppercase;
  position: relative;
  width: 100%;
}
.main-canvas__message {
  display: block;
  font-size: 32px;
  font-weight: 600;
}
.main-canvas__cath {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-canvas__cath--active {
  opacity: 1;
  pointer-events: auto;
}
.main-canvas__cath--hidden {
  opacity: 0;
  pointer-events: none;
}
@media (width < 1025px) {
  .main-canvas__content {
    top: 64px;
    left: 16px;
  }
  .main-canvas__title {
    font-size: 54.9px;
  }
  .main-canvas__message {
    font-size: 20px;
  }
}
@media (width < 768px) {
  .main-canvas__cath {
    width: 90%;
  }
}
@media (width < 390px) {
  .main-canvas__title {
    font-size: 50px;
  }
}

/* Contactform - お問い合わせフォーム */
.wpcf7 {
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 14px;
  margin: 0 0 2.5em !important;
  padding: 0;
  width: 100%;
}

.wpcf7 form {
  margin: 1.5em 1.5em 0;
}

.wpcf7 p {
  margin-bottom: 1em;
  font-size: 16px;
}

.wpcf7 input,
.wpcf7 textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  line-height: 1.2;
  padding: 8px;
  width: 100%;
}

.wpcf7 select,
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  border: 1px solid #ccc;
  max-width: 97%;
  padding: 8px;
  width: auto;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  display: inline-block;
  height: auto;
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.2;
}

.wpcf7 .wpcf7-list-item {
  display: block;
}

.wpcf7 textarea {
  height: 300px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border: 1px solid #bbb;
  outline: none;
}

.wpcf7 .wpcf7-submit {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 225px;
  height: 48px;
  margin: 30px auto 0;
  background-color: #333333;
  cursor: pointer;
  border: none !important;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: all 0.3s;
}

.wpcf7 .wpcf7-submit:before,
.wpcf7 .wpcf7-submit:after {
  box-sizing: border-box;
}

.wpcf7 .wpcf7-submit:hover {
  background-color: #666666;
}

.wpcf7 .wpcf7-submit .wpcf7-not-valid {
  background: pink;
}

.wpcf7 .wpcf7-submit .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  border-radius: 4px;
}

.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}

/*-----------------------------------------------
header
-----------------------------------------------*/
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  font-size: 14px;
  z-index: 100;
}
.header__logo {
  padding-top: 10px;
  width: 492px;
  transition: 0.3s;
}
.header__logo img {
  width: 492px;
}
.header__inner {
  width: 94.4444444444%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width < 768px) {
  .header {
    height: 60px;
  }
  .header__logo {
    padding-top: 12.6px;
    width: 214px;
    min-width: 214px;
  }
  .header__logo img {
    width: 214px;
  }
  .header__inner {
    align-items: center;
  }
}

.nav {
  width: 48.6111111111vw;
}
.nav__list {
  text-align: center;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav.is-active {
  transition: opacity 0.4s ease;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: all;
  position: fixed;
  top: 0;
  right: 0;
  background: var(--color-brand);
  text-align: left;
}
.nav.is-active a,
.nav.is-active .nav__dropdown-toggle {
  color: #fff;
}
.nav__item {
  transition: 0.3s;
  font-weight: 500;
  font-family: var(--font-family-nav);
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.nav__item a {
  color: var(--color-nav);
  display: block;
  width: 100%;
}
@media (hover: hover) {
  .nav__item a:hover, .nav__item a:focus {
    color: var(--color-brand);
  }
}
.nav__item--has-child .nav__dropdown {
  position: absolute;
  top: 32px;
  left: 0;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  min-width: 256px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.nav__item--has-child .nav__dropdown .nav__dropdown-item {
  text-align: left;
  margin-bottom: 16px;
}
.nav__item--has-child .nav__dropdown .nav__dropdown-item:last-child {
  margin-bottom: 0;
}
.nav__item--has-child .nav__dropdown .nav__dropdown-item a {
  font-size: 16px;
  line-height: 1.75;
  text-transform: none;
  transition: all 0.3s ease;
}
.nav__item--has-child .nav__dropdown .nav__dropdown-item a:hover, .nav__item--has-child .nav__dropdown .nav__dropdown-item a:focus {
  color: var(--color-brand);
}
.nav__item--has-child.is-active .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item--contact {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  margin-left: 10px;
}
.nav__item--contact a {
  font-size: 14px;
  color: #fff;
  padding: 11.5px 0;
  width: 134px;
}
@media (hover: hover) {
  .nav__item--contact:hover, .nav__item--contact:focus {
    opacity: 0.8;
  }
  .nav__item--contact:hover a, .nav__item--contact:focus a {
    color: #fff;
  }
}
.nav__item--privacy {
  display: none;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-nav);
  font-weight: 500;
  font-family: var(--font-family-nav);
  font-size: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
@media (hover: hover) {
  .nav__dropdown-toggle:hover, .nav__dropdown-toggle:focus {
    color: var(--color-brand);
  }
}
.nav__dropdown-icon {
  display: inline-block;
  width: 10px;
  height: 5.5px;
  position: relative;
  transition: 0.3s;
}
.nav__dropdown-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 5.5px;
  background-image: url(../img/common/menu_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (width < 1280px) {
  .nav__list {
    gap: 20px;
  }
}
@media (width < 1025px) {
  .nav {
    max-width: 100%;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .nav.is-active {
    height: 100vh;
    overflow-y: auto;
  }
  .nav__list {
    padding: 48px 30px;
    padding-top: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0 auto;
    position: static;
    width: 100%;
    overflow-y: auto;
  }
  .nav__item {
    font-size: 2.4rem;
    margin: 0;
    text-align: left;
  }
  .nav__item--contact {
    width: 100%;
    text-align: center;
    border-radius: 36px;
    background: inherit;
    border: 1px solid #fff;
  }
  .nav__item--contact a {
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%;
    padding: 25.5px 0;
    position: relative;
  }
  .nav__item--contact a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
    width: 15px;
    height: 12px;
    background-image: url(../img/common/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .nav__item--privacy {
    display: block;
    text-transform: none;
    margin: 32px 0;
  }
  .nav__item--privacy a {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
  }
  .nav__item--has-child .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
  }
}
@media (width < 1025px) and (hover: hover) {
  .nav__item:hover a, .nav__item:focus a {
    color: #fff;
  }
}
@media (width < 1025px) {
  .nav__dropdown-icon {
    display: none;
  }
}
@media (width < 1025px) {
  .nav__dropdown-item a {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
    padding: 0 16px;
  }
}
@media (width <= 375px) {
  .nav__list {
    top: 30px;
    padding: 20px 30px;
  }
}

.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: 3px;
  position: fixed;
  top: 20px;
  right: 20px;
  place-items: center;
  width: 60px;
  aspect-ratio: 1;
  display: none;
}
.burger.is-active {
  --opacity: 0;
  --rotate: 150deg;
  --translate: 0;
  position: fixed;
}
.burger.is-active span {
  background-color: #fff;
}
.burger span {
  width: 24px;
  height: 1px;
  border-radius: 2px;
  background-color: var(--color-text);
  grid-area: 1/1/-1/-1;
  transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
}
.burger span:nth-child(1) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.burger span:nth-child(2) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}
@media (width < 1025px) {
  .burger {
    display: grid;
  }
}
@media (width < 768px) {
  .burger {
    top: 0;
    right: 0;
  }
}

/*-----------------------------------------------
breadcrumb
-----------------------------------------------*/
.breadcrumb {
  padding: 16px 0;
}
.breadcrumb__inner {
  width: 94%;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 14px;
  color: #6c757d;
}
.breadcrumb__inner a {
  color: #333;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.breadcrumb__inner a:hover {
  color: #0056b3;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .breadcrumb__inner {
    padding: 0 16px;
  }
}

/*footer
-----------------------------------------------*/
.footer {
  background: #FFFFFF;
  padding-bottom: 100px;
  font-family: var(--font-family-nav);
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.footer__inner {
  padding: 100px 0;
  color: var(--color-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  min-width: 385px;
}
.footer__list {
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__item {
  font-size: 1.4rem;
}
.footer__copyright {
  font-size: 1.3rem;
  color: rgba(51, 51, 51, 0.7);
  text-align: right;
}
@media (width < 1280px) {
  .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (width < 1025px) {
  .footer__inner {
    flex-direction: column;
  }
  .footer__logo {
    margin-inline: auto;
  }
  .footer__copyright {
    text-align: center;
  }
}
@media (width < 768px) {
  .footer {
    padding-bottom: 48px;
  }
  .footer__inner {
    padding: 48px 0;
  }
  .footer__logo {
    max-width: 358px;
    min-width: 270px;
  }
  .footer__nav {
    display: none;
  }
}
.footer__item--has-child {
  position: relative;
}
.footer__item--has-child .footer__dropdown {
  position: absolute;
  top: 32px;
  left: 0;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  min-width: 256px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.footer__item--has-child .footer__dropdown .footer__dropdown-item {
  text-align: left;
  margin-bottom: 16px;
}
.footer__item--has-child .footer__dropdown .footer__dropdown-item:last-child {
  margin-bottom: 0;
}
.footer__item--has-child .footer__dropdown .footer__dropdown-item a {
  font-size: 16px;
  line-height: 1.75;
  text-transform: none;
  transition: all 0.3s ease;
}
.footer__item--has-child .footer__dropdown .footer__dropdown-item a:hover, .footer__item--has-child .footer__dropdown .footer__dropdown-item a:focus {
  color: var(--color-brand);
}
.footer__item--has-child.is-active .footer__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-nav);
  font-weight: 500;
  font-family: var(--font-family-nav);
  font-size: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.footer__dropdown-toggle:hover, .footer__dropdown-toggle:focus {
  color: var(--color-brand);
}
.footer__dropdown-icon {
  display: inline-block;
  width: 10px;
  height: 5.5px;
  position: relative;
  transition: 0.3s;
}
.footer__dropdown-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 5.5px;
  background-image: url(../img/common/menu_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*-----------------------------------------------
top
-----------------------------------------------*/
.top-bg {
  border-radius: 20px 20px 0 0;
  color: #fff;
}
.top-bg--brand {
  background-color: var(--color-brand);
}
.top-bg--black {
  background-color: #2C2F33;
}
@media (width < 768px) {
  .top-bg {
    border-radius: 10px 10px 0 0;
  }
}

.container-top {
  width: 93%;
  margin-inline: auto;
}
@media (width < 768px) {
  .container-top {
    width: 100%;
    padding: 0 16px;
  }
}

.section-top--ptb {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-top--pb {
  padding-bottom: 120px;
}
.section-top--ptb100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-top--pt100 {
  padding-top: 100px;
}
.section-top__title {
  font-family: var(--font-family-title);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-top__title .ja {
  font-size: 1.6rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.section-top__title .ja::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}
.section-top__title .en {
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.section-top__text {
  border-top: 1px solid;
  padding: 24px 0;
}
.section-top__intro-title {
  font-size: 60px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.section-top__sub-title {
  font-family: var(--font-family-title);
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.9375;
  margin-bottom: 24px;
}
.section-top__intro-text {
  border-top: 1px solid #333;
  padding: 24px 0;
}
.section-top__intro-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: space-between;
}
.section-top__intro-right {
  width: 46.5vw;
}
.section-top__intro-right-title {
  font-family: var(--font-family-title);
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-top__intro-left {
  width: 34.375vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.section-top__intro-left-title {
  font-family: var(--font-family-title);
  font-size: 4rem;
  font-weight: 500;
  text-transform: uppercase;
}
.section-top__intro-item {
  border-top: 1px solid #333;
  padding: 24px 0;
}
.section-top__intro-item-sub-title {
  font-family: var(--font-family-title);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-top__intro-item-sub-title .en {
  font-size: 3.6rem;
  line-height: 1.0416666667;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.section-top__intro-item-sub-title .ja {
  font-size: 1.4rem;
  color: #1D1D1B;
}
.section-top__flex {
  display: flex;
  justify-content: space-between;
}
.section-top__flex-left {
  width: 44.125vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-top__flex-right {
  width: 30.1875vw;
  min-width: 483px;
}
@media (width < 1025px) {
  .section-top__intro-content {
    flex-direction: column;
    gap: 40px;
  }
  .section-top__intro-left {
    max-width: 480px;
    margin-inline: auto;
  }
  .section-top__intro-left, .section-top__intro-right {
    width: 100%;
  }
  .section-top__flex {
    flex-direction: column;
    gap: 40px;
  }
  .section-top__flex-left, .section-top__flex-right {
    width: 100%;
  }
  .section-top__flex-right {
    min-width: 100%;
  }
}
@media (width < 768px) {
  .section-top--ptb {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-top--pb {
    padding-bottom: 64px;
  }
  .section-top--ptb100 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-top--pt100 {
    padding-top: 64px;
  }
  .section-top__title .ja {
    font-size: 1.048rem;
  }
  .section-top__title .en {
    font-size: 3.6rem;
  }
  .section-top__sub-title {
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 12px;
  }
  .section-top__text {
    padding: 12px 0;
  }
  .section-top__intro-title {
    font-size: 24px;
    margin-bottom: 21.85px;
  }
  .section-top__intro-text {
    padding: 13px 0;
  }
  .section-top__intro-img {
    padding: 0 19px;
  }
  .section-top__intro-right-title {
    font-size: 1.6rem;
  }
  .section-top__intro-left-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .section-top__intro-item-sub-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-top__intro-item-sub-title .en {
    font-size: 2.6rem;
    line-height: 1;
  }
}

.top-service__list {
  display: flex;
  gap: 20px;
}
.top-service__item {
  width: 30.1875vw;
  overflow: hidden;
  border-radius: 20px;
}
.top-service__md-flex {
  display: flex;
  gap: 20px;
}
@media (width < 768px) {
  .top-service__list {
    flex-direction: column;
  }
  .top-service__md-flex {
    gap: 8px;
  }
  .top-service__item {
    width: 100%;
    border-radius: 10px;
  }
}

.top-case__title {
  font-family: var(--font-family-title);
  font-weight: 500;
  color: #0D0D0D;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top-case__title .ja {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.top-case__title .ja::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #0D0D0D;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}
.top-case__title .en {
  font-size: 4rem;
  line-height: 0.9375;
}
@media (width < 768px) {
  .top-case__title .ja {
    font-size: 1.048rem;
  }
  .top-case__title .en {
    font-size: 2.6rem;
  }
}

.top-column__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.top-column__item {
  display: flex;
  gap: 20px;
}
.top-column__item--reverse {
  flex-direction: row-reverse;
}
.top-column__img {
  width: 45.875vw;
  overflow: hidden;
  border-radius: 20px;
}
.top-column__img img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column__content {
  width: 45.875vw;
  color: #000;
  background-color: #fff;
  border-radius: 20px;
  padding: 80px 35px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.top-column__title {
  color: #7D6E4A;
  text-transform: uppercase;
  font-family: var(--font-family-title);
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1;
}
@media (width < 768px) {
  .top-column__list, .top-column__item {
    flex-direction: column;
    gap: 8px;
  }
  .top-column__img, .top-column__content {
    width: 100%;
  }
  .top-column__img img {
    aspect-ratio: 358/321.75;
  }
  .top-column__content {
    padding: 52px 22.75px;
    gap: 20px;
  }
  .top-column__title {
    font-size: 2.6rem;
    line-height: 1;
  }
}

.section-vision-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-family-title);
}
.section-vision-title__sub-title {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}
.section-vision-title__title {
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.section-vision-title__text {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}
@media (width < 768px) {
  .section-vision-title {
    gap: 12px;
  }
  .section-vision-title__sub-title {
    font-size: 1.6rem;
  }
  .section-vision-title__title {
    font-size: 3.6rem;
  }
  .section-vision-title__text {
    font-size: 1.4rem;
  }
}

/*-----------------------------------------------
page
-----------------------------------------------*/
.page__header-title {
  padding: 64px 0;
  max-width: 86.1111111111%;
  margin-inline: auto;
  font-family: var(--font-family-title);
  display: flex;
  flex-direction: column;
}
.page__header-title .en {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.page__header-title .ja {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.page__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.page__title--center {
  text-align: center;
}
.page__title--mb-48 {
  margin-bottom: 48px;
}
.page__thumbnail {
  width: 93.0555555556%;
  margin-bottom: 100px;
  border-radius: 0 20px 20px 0;
}
.page__thumbnail img {
  border-radius: 0 20px 20px 0;
  aspect-ratio: 1440/400;
}
.page__item {
  position: relative;
  padding-left: 1em;
  text-indent: -0.5em;
  word-break: break-word;
}
.page__item:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  background: none;
  margin: 0;
  border-radius: 0;
  display: inline-block;
}
@media (width < 768px) {
  .page__header-title {
    max-width: 100%;
    padding: 48px 16px;
  }
  .page__header-title .ja {
    padding: 16px 0;
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .page__thumbnail {
    width: 95.8974358974%;
    margin-bottom: 48px;
  }
  .page__thumbnail img {
    aspect-ratio: 374/280;
  }
  .page__title {
    font-size: 2.4rem;
  }
}

.intro__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.intro__sub-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 48px;
}
.intro__inner {
  text-align: center;
  margin-bottom: 48px;
}
.intro__wrapper {
  padding: 64px 96px;
  border-radius: 12px;
  background-color: var(--color-brand);
  color: #fff;
}
.intro__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.intro__item {
  color: #333;
  border-radius: 7px;
  background: #fff;
  padding: 32px;
  text-align: center;
  position: relative;
}
.intro__item::before {
  position: absolute;
  top: -10px;
  left: 7px;
  content: "";
  width: 24px;
  height: 17px;
  background-image: url(../img/service/icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.intro__item h4 {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 1025px) {
  .intro__wrapper {
    padding: 48px 40px;
  }
  .intro__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .intro__title {
    font-size: 2.4rem;
  }
  .intro__sub-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .intro__text {
    text-align: left;
  }
  .intro__wrapper {
    padding: 32px 16px;
  }
  .intro__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .intro__item {
    padding: 12px;
  }
}

.page-service__inner {
  padding: 64px 0;
}
.page-service__header {
  text-align: center;
  height: 60px;
}
.page-service__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
.page-service__sub-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.page-service__sub-title--center {
  text-align: center;
}
.page-service__list {
  display: flex;
  flex-direction: column;
}
.page-service__list--row {
  flex-direction: row;
  gap: 32px;
}
.page-service__list--row .page-service__item {
  gap: 15px;
  padding: 0;
  border-bottom: none;
}
.page-service__list--row .page-service__sub-title {
  font-size: 1.6rem;
}
@media (width < 768px) {
  .page-service__list--row {
    flex-direction: column;
    gap: 40px;
  }
}
.page-service__item {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-brand);
}
.page-service__item > a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.page-service__item--gap-24 {
  gap: 24px;
}
.page-service__item:first-child {
  padding-top: 0;
}
.page-service__item:last-child {
  border-bottom: none;
}
.page-service__num-list {
  display: flex;
  gap: 20px;
}
.page-service__num-item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 12px;
  background: #fff;
  width: 27.7777777778vw;
}
.page-service__num-item-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.page-service__num-item-num {
  color: #B9AC88;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-title);
}
.page-service__num-item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.page-service__textbox {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-service__num-img {
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.page-service__content {
  display: flex;
  margin-inline: auto;
  gap: 40px;
}
.page-service__content--center {
  align-items: center;
}
.page-service__text-box {
  width: 52.7777777778vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-service__img {
  width: 30.5555555556vw;
  border-radius: 12px;
}
.page-service__img img {
  border-radius: 12px;
}
.page-service__list-img {
  border-radius: 10px;
}
.page-service__list-img img {
  border-radius: 10px;
}
.page-service__flex {
  display: flex;
  gap: 40px;
}
@media (width < 1025px) {
  .page-service__inner {
    padding: 0 0 48px;
  }
  .page-service__img {
    width: 100%;
  }
  .page-service__content {
    flex-direction: column;
  }
  .page-service__text-box {
    width: 100%;
  }
  .page-service__textbox {
    padding: 32px 40px;
  }
  .page-service__textbox--ps {
    padding: 32px 16px;
  }
  .page-service__flex {
    flex-direction: column;
  }
  .page-service__num-list {
    flex-direction: column;
  }
  .page-service__num-item {
    width: 100%;
  }
}
@media (width < 768px) {
  .page-service__title {
    font-size: 2rem;
  }
  .page-service__sub-title {
    font-size: 1.6rem;
  }
  .page-service__item {
    gap: 24px;
  }
  .page-service__num-item-title {
    font-size: 1.6rem;
  }
}

.detail__list {
  display: flex;
  gap: 8px;
}
.detail__item {
  display: flex;
  gap: 8px;
}
.detail__item:before {
  content: "／";
  display: inline-block;
}
.detail__item:first-child:before {
  content: "";
  display: none;
}

.result {
  border: 1px solid #DAD5C7;
  border-radius: 12px;
  display: flex;
}
.result__title {
  font-family: var(--font-family-title);
  color: #A49365;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
.result__item {
  padding: 64px;
  border-right: 1px solid #DAD5C7;
}
.result__item:last-child {
  border-right: none;
}
@media (width < 1025px) {
  .result__item {
    padding: 32px 16px;
  }
}
@media (width < 768px) {
  .result {
    flex-direction: column;
  }
}

.support__bold {
  font-weight: 700;
}
.support__inner {
  background: #fff;
  padding: 40px 64px;
  border-radius: 12px;
}
.support__list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.support__item {
  display: flex;
  gap: 24px;
  width: 27.6%;
  position: relative;
}
.support__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 68.3px;
  background: #DAD5C7;
  position: absolute;
  top: 0;
  right: -48px;
}
.support__item:last-child::after {
  display: none;
}
.support__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
}
.support__icon {
  width: 42px;
  min-width: 42px;
}
.support__point {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.support__point span {
  color: #7D6E4A;
  background: linear-gradient(transparent 70%, rgba(185, 172, 136, 0.2) 70%);
}
.support__textbox {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.support__flex {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
}
.support__read {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.support__read span {
  color: #7D6E4A;
}
.support__img {
  overflow: hidden;
  border-radius: 0 12px 12px 0;
}
@media (width < 1025px) {
  .support__list {
    flex-direction: column;
  }
  .support__item {
    width: 100%;
    border-bottom: 1px solid #DAD5C7;
    padding: 24px 0;
  }
  .support__item:last-child {
    border-bottom: none;
  }
  .support__item:after {
    display: none;
  }
  .support__flex {
    flex-direction: column;
  }
  .support__img {
    border-radius: 0 0 12px 12px;
  }
}
@media (width < 768px) {
  .support__inner {
    padding: 32px 16px;
  }
  .support__point {
    font-size: 1.6rem;
  }
  .support__textbox {
    padding: 48px 16px;
  }
  .support__read {
    font-size: 2rem;
  }
}

.page-business {
  border-radius: 12px;
  background: #A49365;
  color: #fff;
  padding: 64px 96px;
}
.page-business__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.page-business__item {
  padding: 32px 40px;
}
.page-business__item:first-child {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.page-business__item:nth-child(2) {
  border-bottom: 1px solid #fff;
}
.page-business__item-img {
  max-width: 300px;
  margin-inline: auto;
  margin-bottom: 24px;
}
.page-business__flex {
  display: flex;
  width: 100%;
}
.page-business__flex li {
  padding: 32px 40px;
  width: 33.3333333333%;
  border-right: 1px solid #fff;
}
.page-business__flex li:last-child {
  border-right: none;
}
.page-business__flex-content {
  font-size: 67px;
  font-weight: 600;
  line-height: 1.5;
}
.page-business__flex-content span {
  font-size: 32px;
}
.page-business__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media (width < 1400px) {
  .page-business {
    padding: 32px 16px;
  }
  .page-business__flex li {
    padding: 16px 8px;
  }
  .page-business__flex-content {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.5;
  }
  .page-business__flex-content span {
    font-size: 24px;
  }
}
@media (width < 768px) {
  .page-business__title {
    font-size: 1.6rem;
  }
  .page-business__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-business__item {
    padding: 32px 0;
  }
  .page-business__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .page-business__item:first-child, .page-business__item:nth-child(3) {
    border-right: none;
  }
  .page-business__flex-content {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
  }
  .page-business__flex-content span {
    font-size: 12px;
  }
}

.page-sponsorship__list {
  display: flex;
  flex-direction: column;
}
.page-sponsorship__list--row {
  flex-direction: row;
  gap: 32px;
}
.page-sponsorship__list--row .page-service__item {
  gap: 15px;
  padding: 0;
  border-bottom: none;
}
.page-sponsorship__list--row .page-service__sub-title {
  font-size: 1.6rem;
}
.page-sponsorship__list-img {
  border-radius: 10px;
}
.page-sponsorship__list-img img {
  border-radius: 10px;
}
@media (width < 768px) {
  .page-sponsorship__list--row {
    flex-direction: column;
    gap: 40px;
  }
}
.page-sponsorship__item {
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-sponsorship__item--gap-24 {
  gap: 24px;
}
.page-sponsorship__item:first-child {
  padding-top: 0;
}
@media (width < 768px) {
  .page-sponsorship__item {
    width: 100%;
  }
}

.page-consulting {
  display: flex;
  flex-direction: column;
}
.page-consulting__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0;
  list-style: none;
}
.page-consulting__list-img {
  border-radius: 10px;
  overflow: hidden;
}
.page-consulting__item > a {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (width < 1025px) {
  .page-consulting__list--row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (width < 768px) {
  .page-consulting__list--row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}
@media (width < 1025px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width < 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 36px;
  }
}

/*single page
-----------------------------------------------*/
.date {
  font-size: 16px;
  color: #888;
}

article {
  max-width: 840px;
  margin: 70px auto 100px;
}
@media (width < 768px) {
  article {
    margin: 48px auto;
    padding-inline: 16px;
  }
}

.single__header {
  margin-bottom: 40px;
}
.single__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
@media (width < 768px) {
  .single__title {
    font-size: 28px;
  }
}

.wysiwyg-editor h2,
.wysiwyg-editor h3,
.wysiwyg-editor h4,
.wysiwyg-editor p,
.wysiwyg-editor ul,
.wysiwyg-editor ol,
.wysiwyg-editor table,
.wysiwyg-editor img,
.wysiwyg-editor a,
.wysiwyg-editor blockquote {
  overflow: auto;
}
.wysiwyg-editor h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 30px 0 0px;
}
@media (width < 768px) {
  .wysiwyg-editor h2 {
    font-size: 24px;
  }
}
.wysiwyg-editor h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  border-bottom: 1px solid #DAD5C7;
}
.wysiwyg-editor h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wysiwyg-editor h4:before {
  content: "";
  border: 1px solid #333;
  width: 16px;
  height: 1px;
  background: #333;
}
.wysiwyg-editor h2:first-child,
.wysiwyg-editor h2 + h3,
.wysiwyg-editor h3 + h4 {
  margin-bottom: 10px;
}
.wysiwyg-editor img {
  border-radius: 10px;
}
.wysiwyg-editor table {
  margin: 40px 0;
  border-collapse: collapse;
}
.wysiwyg-editor table th,
.wysiwyg-editor table td {
  font-weight: 400;
  border: 1px solid #E3E3E3;
  padding: 12px;
}
.wysiwyg-editor p,
.wysiwyg-editor ul,
.wysiwyg-editor ol {
  margin: 10px;
  font-size: 18px;
  line-height: 2;
}
.wysiwyg-editor ul,
.wysiwyg-editor ol {
  padding-left: 20px;
}
.wysiwyg-editor ul {
  list-style-type: disc;
  list-style-position: outside;
}
.wysiwyg-editor ol {
  list-style-type: decimal;
}
.wysiwyg-editor .wp-block-table figcaption {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 10px 0;
}
.wysiwyg-editor blockquote {
  margin: 0 0 40px 0;
  padding: 0 0 0 30px;
  border-left: 2px solid #B9AC88;
}
.wysiwyg-editor blockquote p {
  margin-bottom: 0;
}
.wysiwyg-editor blockquote cite {
  font-size: 14.22px;
  margin-bottom: 10px;
}
.wysiwyg-editor a {
  color: #333;
  text-decoration: underline;
}
.wysiwyg-editor a:hover,
.wysiwyg-editor a:focus {
  opacity: 0.8;
}

.orignal-table01,
.orignal-table02 {
  font-size: 14px;
  font-weight: 500;
  border-collapse: collapse;
  margin: 40px 0;
}
.orignal-table01 th,
.orignal-table02 th {
  background: #F6F6F6;
}

.challenge-list {
  margin: 40px 0;
  border: 1px solid #DAD5C7;
  padding-inline: 30px;
  border-radius: 12px;
}
.challenge-list__header {
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  border-bottom: 1px solid #DAD5C7;
}
.challenge-list__header:has(.challenge-list__img) .challenge-list__company {
  padding: 0 20px;
  border-left: 1px solid #DAD5C7;
}
.challenge-list__company {
  width: 100%;
  margin: 20px 0;
}
.challenge-list__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.challenge-list__company-item {
  display: flex;
  gap: 4px 16px;
}
.challenge-list__company-item dt {
  color: #8D9295;
  min-width: 70px;
  font-weight: 400;
}
.challenge-list__company-item dd a {
  color: #0184C8;
  display: block;
  text-decoration: underline;
}
.challenge-list__body {
  padding: 20px 0;
}
.challenge-list__body-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.challenge-list__body-item:last-child {
  margin-bottom: 0;
}
.challenge-list__body-item-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}
.challenge-list__body-item-text {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 0;
}
.challenge-list__body-item-block {
  max-width: 380px;
  width: 100%;
  min-height: 158px;
  padding: 20px;
  border-radius: 7px;
  background: #F6F6F6;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.challenge-list__body-item-block--solution {
  background: #F6F4EE;
}
.challenge-list .triangle {
  background: #DAD5C7;
  height: 36px;
  min-width: 20px;
  max-width: 20px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (width < 768px) {
  .challenge-list {
    padding-inline: 16px;
  }
  .challenge-list__header {
    flex-direction: column;
    gap: 20px;
  }
  .challenge-list__header:has(.challenge-list__img) .challenge-list__company {
    border-left: none;
    padding: 0 0 20px;
  }
  .challenge-list__company {
    border-left: none;
    padding: 0 0 20px;
    margin: 0;
  }
  .challenge-list__company dt {
    width: 22%;
  }
  .challenge-list__company dd a {
    width: 100%;
  }
  .challenge-list__body-item {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .challenge-list .triangle {
    transform: rotate(90deg);
  }
}

/*archive
-----------------------------------------------*/
.category-list {
  display: flex;
}
.category-list__wrapper {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.category-list__item {
  margin-right: 32px;
}
.category-list__item:has(.badge--all) {
  padding-right: 32px;
  border-right: 1px solid #DAD5C7;
}
.category-list__item:has(.badge--all) .badge {
  background: #7D6E4A;
  color: #fff;
}
.category-list__item:last-child {
  margin-right: 0;
}
.category-list__img img {
  aspect-ratio: 740/414;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 1025px) {
  .category-list {
    font-size: 1.4rem;
    flex-direction: column;
  }
  .category-list__wrapper {
    margin-top: 16px;
    gap: 16px;
  }
  .category-list__item {
    margin-right: 0;
  }
  .category-list__item:has(.badge--all) {
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid #DAD5C7;
    width: 100%;
  }
}

.category-section__inner {
  padding: 32px 64px;
  background: #fff;
  border-radius: 12px;
}
.category-section__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .category-section {
    font-size: 1.4rem;
  }
  .category-section__inner {
    padding: 16px;
  }
}

.archive__inner {
  padding: 64px;
  background: #fff;
  border-radius: 12px;
}
.archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 60px;
  grid-column-gap: 32px;
}
.archive__img {
  overflow: hidden;
  border-radius: 10px;
}
.archive__item, .archive__link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.archive__info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.archive__pagination {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.archive__pagination ul {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border: 1px solid #7D6E4A;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #fff;
}
.archive__pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border-right: 1px solid #7D6E4A;
}
.archive__pagination li:last-child {
  border-right: none;
}
.archive__pagination li a,
.archive__pagination li .page-numbers,
.archive__pagination li .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #7D6E4A;
  background: #fff;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.archive__pagination li .current {
  border: 2px solid #7D6E4A !important;
}
.archive__pagination li .page-numbers {
  background: #fff;
  color: #7D6E4A;
  font-weight: 700;
  box-shadow: none;
  border: none;
}
.archive__pagination li .page-numbers-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 10px;
  margin: 0 auto;
}
.archive__pagination li .page-numbers-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.archive__pagination li .page-numbers-icon path {
  fill: #7D6E4A;
}
.archive__pagination li .prev,
.archive__pagination li .next {
  color: #7D6E4A;
  background: #fff;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive__pagination li .dots {
  color: #7D6E4A;
  background: #fff;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive__pagination li .prev.disabled,
.archive__pagination li .prev[aria-disabled=true],
.archive__pagination li .prev[disabled],
.archive__pagination li .prev[aria-disabled=true] {
  color: #ccc !important;
  background: #fff !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 0.6;
}
.archive__pagination ul {
  border-radius: 10px;
}
.archive__pagination li:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.archive__pagination li:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (width < 768px) {
  .archive__pagination ul {
    border-width: 1px;
    border-radius: 10px;
  }
  .archive__pagination li {
    min-width: 46px;
    height: 46px;
  }
  .archive__pagination li .dots {
    font-size: 14px;
  }
  .archive__pagination li:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  .archive__pagination li:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
}
@media (width < 1025px) {
  .archive__inner {
    padding: 32px;
  }
  .archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .archive__inner {
    padding: 32px 16px;
  }
  .archive__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive__empty {
  text-align: center;
  color: #7D6E4A;
  font-size: 1.6rem;
  padding: 48px 0;
  background: #fffbe9;
  border-radius: 8px;
  margin: 32px 0;
}

/*news
-----------------------------------------------*/
.news__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news__header {
  display: flex;
  align-items: center;
  gap: 40px;
}
.news__item {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #DAD5C7;
  padding: 24px 0;
}
.news__data {
  width: 80px;
  min-width: 80px;
}
.news .badge,
.news a.badge {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #7D6E4A;
}
.news__link {
  margin-left: auto;
  width: 54.1666666667vw;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.news__link::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/brn_next_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.news__sub-title {
  font-weight: 700;
  max-width: 660px;
}
@media (width > 1440px) {
  .news__link {
    width: 80%;
  }
}
@media (width < 1025px) {
  .news__item {
    flex-direction: column;
    gap: 16px;
  }
  .news__header {
    gap: 20px;
  }
  .news__link {
    width: 100%;
  }
}
@media (width < 768px) {
  .news__sub-title {
    width: 69.2307692308vw;
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=style.css.map */