@charset "UTF-8";
/* reset.scss - 2025年最新版の軽量モダンリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

hr {
  border: none;
  height: 1px;
  background-color: #ccc;
}

:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 2px;
}

/*
 変数定義用のファイルです 
 自由に書き換えてください
*/
/*========= Media Size ===============*/
/*========= Font ===============*/
/*========= Color ===============*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1200px;
  background-color: #012f49;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  body {
    min-width: unset;
    font-size: 1.4rem;
  }
}

main {
  overflow: hidden;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  h2 {
    font-size: 1.8rem;
  }
}

p {
  font-weight: 400;
  line-height: 2;
}

a {
  cursor: pointer;
}

.js-slide-up {
  overflow: hidden;
}

.js-fadein {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-fadein.is-visible {
  opacity: 1;
}

.js-slidein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), transform 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-slidein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pc {
  display: block !important;
}
@media (max-width: 900px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 900px) {
  .sp {
    display: block !important;
  }
}

.l-inner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .l-inner {
    padding: 0 30px;
  }
}

.p-front__fv {
  position: relative;
}
.p-front__fv img {
  width: 100%;
}
.p-front__fv__text {
  position: absolute;
  top: 45%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .p-front__fv__text {
    font-size: 2rem;
  }
}
.p-front__fv__text span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fvFadeUp 1.2s ease forwards;
}
.p-front__fv__text span:nth-of-type(1) {
  animation-delay: 0.3s;
}
.p-front__fv__text span:nth-of-type(2) {
  animation-delay: 0.5s;
}
.p-front__fv__text span:nth-of-type(3) {
  display: inline-block;
  animation-delay: 0.7s;
}
@media screen and (max-width: 900px) {
  .p-front__fv__text span:nth-of-type(3) {
    display: block;
  }
}
.p-front__fv__text__marker {
  display: inline-block !important;
  margin-top: 30px;
  margin-right: 20px;
  padding: 0 20px;
  font-size: 5rem;
  font-weight: 700;
  color: #886a1e;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .p-front__fv__text__marker {
    margin: 15px 0;
    font-size: 3.4rem;
  }
}
.p-front__estate {
  padding-bottom: 40px;
  background-color: #002032;
}
@media screen and (max-width: 900px) {
  .p-front__estate {
    margin-top: 30px;
  }
}
.p-front__estate__tabs {
  display: flex;
  justify-content: center;
  margin-top: -32px;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .p-front__estate__tabs {
    margin-top: -49px;
    margin-bottom: 40px;
  }
}
.p-front__estate__tab {
  width: 400px;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  background-color: #fff;
  color: #886a1e;
  transition: all 0.3s;
}
@media screen and (max-width: 900px) {
  .p-front__estate__tab {
    width: 45%;
    height: 50px;
    font-size: 1.6rem;
  }
}
.p-front__estate__tab.is-active {
  background-color: #886a1e;
  color: #fff;
  z-index: 2;
}
.p-front__estate__tab:first-child {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .p-front__estate__tab:first-child {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  }
}
.p-front__estate__tab:last-child {
  margin-left: -32px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .p-front__estate__tab:last-child {
    margin-left: -26px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.p-front__estate__list {
  width: 85%;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 900px) {
  .p-front__estate__list {
    width: 100%;
    padding-left: 30px;
    gap: 37px;
  }
}
.p-front__estate__list::-webkit-scrollbar {
  display: none;
}
.p-front__estate__list::-webkit-scrollbar-track {
  background: transparent;
}
.p-front__estate__list .c-estate-item {
  width: 320px;
  flex-shrink: 0;
}
.p-front__estate .c-btn-border {
  margin: 70px auto;
}
.p-front__info {
  width: 80%;
  margin: 110px auto;
  padding: 50px 0;
  background-color: #886a1e;
}
@media screen and (max-width: 900px) {
  .p-front__info {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-front__info h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 40px auto;
  font-size: 3.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .p-front__info h2 {
    font-size: 2rem;
    gap: 15px;
    margin: 0 auto 15px auto;
  }
}
.p-front__info h2::before, .p-front__info h2::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: rgba(228, 214, 176, 0.93);
}
@media screen and (max-width: 900px) {
  .p-front__info h2::before, .p-front__info h2::after {
    width: 20px;
    height: 20px;
  }
}
.p-front__info h2::before {
  position: absolute;
  top: 0;
  left: -40px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.p-front__info h2::after {
  position: absolute;
  bottom: 0;
  right: -40px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.p-front__info__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 900px) {
  .p-front__info__inner {
    gap: 24px;
    flex-direction: column;
  }
}
.p-front__info__tel {
  font-size: 5rem;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .p-front__info__tel {
    font-size: 3rem;
  }
}
.p-front__info__time {
  font-size: 2rem;
}
@media screen and (max-width: 900px) {
  .p-front__info__time {
    font-size: 1.6rem;
  }
}

@keyframes fvFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-concept {
  padding-bottom: 100px;
}
.p-concept .l-inner {
  margin-top: 130px;
}
.p-concept section {
  margin: 120px 0;
}
@media screen and (max-width: 900px) {
  .p-concept section {
    margin: 60px 0;
  }
}
.p-concept h2 {
  width: fit-content;
  padding: 4px 10px;
  color: #886a1e;
  font-weight: bold;
  background-color: #fff;
  font-size: 2.7rem;
}
@media screen and (max-width: 900px) {
  .p-concept h2 {
    font-size: 1.8rem;
  }
}
.p-concept h3 {
  margin: 40px 0 30px 0;
}

.p-estate {
  padding-bottom: 100px;
}
.p-estate__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
@media screen and (max-width: 900px) {
  .p-estate__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-estate__tabs {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .p-estate__tabs {
    margin-bottom: 40px;
  }
}
.p-estate__tab {
  width: 320px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  background-color: #fff;
  color: #b59134;
  transition: all 0.3s;
}
@media screen and (max-width: 900px) {
  .p-estate__tab {
    width: 55%;
    height: 50px;
    font-size: 1.6rem;
  }
}
.p-estate__tab.is-active {
  background-color: #b59134;
  color: #fff;
  z-index: 2;
}
.p-estate__tab:first-child {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .p-estate__tab:first-child {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  }
}
.p-estate__tab:last-child {
  margin-left: -26px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .p-estate__tab:last-child {
    margin-left: -28px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.p-estate .c-btn {
  margin: 70px auto;
}

.p-company {
  padding-bottom: 100px;
}
.p-company .l-inner {
  margin-top: 130px;
}
.p-company section {
  margin: 120px 0;
}
.p-company__message__name {
  margin-top: 77px;
  margin-bottom: 52px;
}
.p-company__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 70px auto;
}
.p-company__list__item {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}
@media screen and (max-width: 900px) {
  .p-company__list__item {
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
  }
}
.p-company__list__item:last-child {
  border-bottom: none;
}
.p-company__list__item dt {
  width: 300px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .p-company__list__item dt {
    width: 100%;
    font-size: 1.6rem;
  }
}
.p-company__list__item dd {
  flex: 1;
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .p-company__list__item dd {
    font-size: 1.4rem;
  }
}
.p-company .c-company-partners {
  gap: 10px 40px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 900px) {
  .p-company .c-company-partners {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-company .c-company-partners li {
  position: relative;
  padding-left: 0;
}

.p-contact {
  padding-bottom: 100px;
}
.p-contact .c-title {
  margin-top: 100px;
}
.p-contact .wpcf7 {
  margin-top: 70px;
}
.p-contact .form-item {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .p-contact .form-item {
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
  }
}
.p-contact .form-item__label {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .p-contact .form-item__label {
    display: inline-block;
    width: fit-content;
    font-size: 1.6rem;
  }
}
.p-contact .form-item .req {
  width: 46px;
}
@media screen and (max-width: 900px) {
  .p-contact .form-item .req {
    display: inline-block;
  }
}
.p-contact .form-item .req span {
  display: block;
  text-align: center;
  font-size: 12px;
  background: #b59134;
  color: #fff;
}
.p-contact .form-item__input {
  flex: 1;
}
@media screen and (max-width: 900px) {
  .p-contact .form-item__input {
    width: 100%;
  }
}
.p-contact .form-item input,
.p-contact .form-item textarea {
  font-size: 16px;
  padding: 4px 8px;
  background: #ececec;
  color: #000;
}
.p-contact .form-item input[type=radio] {
  accent-color: #b59134;
}
.p-contact .form-item span {
  font-size: 1.6rem;
}
.p-contact input[type=submit] {
  cursor: pointer;
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 13px 80px;
  background-color: #b59134;
  color: #fff;
  transition: opacity 0.3s, background-color 0.3s;
}
.p-contact input[type=submit]:hover {
  opacity: 0.8;
}
.p-contact__thanks {
  margin-top: 100px;
  text-align: center;
}
.p-contact__thanks h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.p-contact__thanks a {
  margin: 100px auto;
}

.c-btn {
  display: block;
  text-align: center;
  padding: 13px 80px;
  background-color: #b59134;
  color: #fff;
  transition: opacity 0.3s, background-color 0.3s;
}
@media screen and (max-width: 900px) {
  .c-btn {
    font-size: 1.8rem;
  }
}
.c-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 900px) {
  .c-btn:hover {
    opacity: 1;
  }
}
.c-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.c-btn.is-loading {
  position: relative;
  color: transparent;
}
.c-btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.c-btn-border {
  display: block;
  width: 270px;
  text-align: center;
  padding: 15px 0px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 900px) {
  .c-btn-border {
    font-size: 1.8rem;
  }
}
.c-btn-border span {
  position: relative;
  z-index: 2;
}
.c-btn-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #b59134;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  transition: all 0.6s ease;
  z-index: 1;
  transform-origin: left bottom;
}
.c-btn-border:hover {
  border-color: #b59134;
}
.c-btn-border:hover::after {
  transform: scale(20);
}
@media screen and (max-width: 900px) {
  .c-btn-border:hover::after {
    transform: scale(1);
  }
}
.c-btn-border:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.c-btn-border.is-loading {
  position: relative;
  color: transparent;
}
.c-btn-border.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  clip-path: none;
  background-color: transparent;
}

.c-btn-contact {
  display: block;
  width: 270px;
  text-align: center;
  padding: 15px 0px;
  color: white;
  background-color: #a78f52;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .c-btn-contact {
    font-size: 1.8rem;
  }
}
.c-btn-contact span {
  position: relative;
  z-index: 2;
}
.c-btn-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.93);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  transition: all 0.6s ease;
  z-index: 1;
  transform-origin: left bottom;
}
.c-btn-contact:hover {
  color: #886a1e;
}
.c-btn-contact:hover:after {
  transform: scale(20);
}
@media screen and (max-width: 900px) {
  .c-btn-contact:hover {
    color: #fff;
  }
  .c-btn-contact:hover::after {
    transform: scale(1);
  }
}
.c-btn-contact:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.c-btn-contact.is-loading {
  position: relative;
  color: transparent;
}
.c-btn-contact.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  clip-path: none;
  background-color: transparent;
}

.c-contact-form {
  max-width: 650px;
  margin: 0 auto;
}
.c-contact-form__radios {
  width: fit-content;
  margin: 60px auto 0 auto;
}
.c-contact-form__radios .wpcf7-list-item {
  margin: 0 0 0 2em;
}
.c-contact-form__radios label {
  display: flex;
  align-items: end;
  gap: 8px;
}
.c-contact-form__radios input {
  width: 20px !important;
  height: 20px;
  accent-color: #938f6c;
  vertical-align: bottom;
  outline: none;
}
.c-contact-form__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 33px;
}
@media screen and (max-width: 900px) {
  .c-contact-form__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.c-contact-form__label {
  position: relative;
  width: 200px;
}
.c-contact-form__label small {
  display: block;
  margin-top: 9px;
  line-height: 1.8;
  font-size: 1.1rem;
}
.c-contact-form .wpcf7-form-control-wrap {
  flex: 1;
}
.c-contact-form input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=submit]):not([type=reset]):not([type=image]),
.c-contact-form textarea {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 3px;
  padding: 14px 56px 14px 18px;
  font-size: 1.6rem;
  margin: 0 0 0 auto;
  background: #e7e7e5;
  outline: none;
}
.c-contact-form__address {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.c-contact-form__address__label {
  width: 180px;
  font-size: 1.2rem;
  font-weight: bold;
}
.c-contact-form__address__input {
  flex: 1;
  border-radius: 3px;
  padding: 14px 18px;
  background: #f5f4f0;
}
.c-contact-form input[type=checkbox] {
  width: 20px;
  height: 20px;
  display: inline-block;
  accent-color: #938f6c;
  vertical-align: bottom;
  margin-right: 8px;
  outline: none;
}
.c-contact-form .accept-modal-btn {
  color: #5b584a;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.c-contact-form .wpcf7-submit,
.c-contact-form .wpcf7-previous {
  padding: 20px 0px;
  margin: 0 auto;
  width: 90%;
  min-width: 300px;
  text-align: center;
  border: 1px solid #2d2d2d;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
  .c-contact-form .wpcf7-submit,
  .c-contact-form .wpcf7-previous {
    width: 100%;
    padding: 14px 0px;
  }
}
.c-contact-form .wpcf7-submit:hover,
.c-contact-form .wpcf7-previous:hover {
  background: #d6d4c4;
}

.c-estate-item {
  display: block;
  background-color: #fff;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-estate-item:hover {
  opacity: 0.8;
}
.c-estate-item__thumbnail {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.c-estate-item__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-estate-item__categories {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.c-estate-item__categories span {
  background-color: rgba(1, 47, 73, 0.9);
  color: #fff;
  padding: 5px 15px;
  font-size: 1.4rem;
}
@media screen and (max-width: 900px) {
  .c-estate-item__categories span {
    font-size: 1.2rem;
    padding: 4px 10px;
  }
}
.c-estate-item__body {
  padding: 20px;
}
@media screen and (max-width: 900px) {
  .c-estate-item__body {
    padding: 20px;
  }
}
.c-estate-item__title {
  font-size: 2.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .c-estate-item__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.c-estate-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-estate-item__info dl {
  display: flex;
  font-size: 1.3rem;
}
.c-estate-item__info dl dt::after {
  content: "：";
}
.c-estate-item__info dl dd {
  flex: 1;
}
.c-estate-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.c-page-icatch {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .c-page-icatch {
    height: 200px;
  }
}
.c-page-icatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-title {
  position: relative;
  width: 100%;
  padding: 20px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .c-title {
    padding: 14px 0px 50px 16px;
  }
}
.c-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #886a1e;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}
.c-title__ja {
  position: relative;
  z-index: 2;
  font-size: 1.9rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .c-title__ja {
    font-size: 1.3rem;
  }
}
.c-title__en {
  position: relative;
  z-index: 2;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Abhaya Libre", serif;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .c-title__en {
    font-size: 3rem;
  }
}

.l-header__logo {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .l-header__logo {
    width: 90px;
    height: 90px;
  }
}
.l-header__logo img {
  width: 100px;
}
@media screen and (max-width: 900px) {
  .l-header__logo img {
    width: 65px;
  }
}
.l-header__nav {
  position: fixed;
  top: 60px;
  right: 70px;
  z-index: 10;
}
.l-header__nav ul {
  display: flex;
}
.l-header__nav ul li:nth-of-type(2) a {
  padding: 17px;
}
.l-header__nav ul a {
  display: block;
  padding: 17px 40px;
  font-size: 1.8rem;
  color: #000;
  background-color: #fff;
}
.l-header__nav ul a.contact {
  padding: 17px 40px;
  background-color: #947c3e;
  color: #fff;
  transition: background-color 0.3s ease;
}
.l-header__nav ul a.contact:hover {
  background-color: #ccaf62;
}
.l-header__nav ul a:hover span::after {
  width: 100%;
}
.l-header__nav ul span {
  position: relative;
  display: block;
  width: fit-content;
}
.l-header__nav ul span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
  .l-header__menu-open {
    position: fixed;
    top: 28px;
    right: 33px;
    width: 36px;
    height: 20px;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
  }
  .l-header__menu-open span {
    position: absolute;
    right: 0;
    width: 36px;
    height: 1px;
    background-color: #886a1e;
    transition: all 0.3s ease;
  }
  .l-header__menu-open span:nth-of-type(1) {
    top: 15%;
  }
  .l-header__menu-open span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__menu-open span:nth-of-type(3) {
    bottom: 15%;
  }
  .l-header__menu-open.is-active span {
    background-color: #fff;
  }
  .l-header__menu-open.is-active span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(25deg);
  }
  .l-header__menu-open.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__menu-open.is-active span:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-25deg);
  }
}
.l-header__nav-sp {
  position: fixed;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012f49;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.l-header__nav-sp.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header__nav-sp ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.l-header__nav-sp ul li a {
  font-size: 1.8rem;
  display: block;
}

.l-footer {
  background-color: #fff;
  padding: 50px 0;
}
@media screen and (max-width: 900px) {
  .l-footer {
    padding: 25px 0px;
  }
}
.l-footer__inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .l-footer__inner {
    width: 100%;
    gap: 30px;
    justify-content: center;
  }
}
.l-footer__logo img {
  width: 120px;
}
@media screen and (max-width: 900px) {
  .l-footer__logo img {
    width: 65px;
  }
}
.l-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 900px) {
  .l-footer__content {
    flex-direction: column;
    gap: 6px;
  }
}
.l-footer__address {
  color: #000;
}
.l-footer__address h2 {
  font-size: 2.6rem;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .l-footer__address h2 {
    font-size: 1.3rem;
  }
}
.l-footer__address p {
  font-size: 1.7rem;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .l-footer__address p {
    font-size: 1.1rem;
  }
}
.l-footer__info {
  padding: 20px 30px;
  background-color: #b59134;
}
@media screen and (max-width: 900px) {
  .l-footer__info {
    width: 100%;
    padding: 7px 9px;
  }
}
.l-footer__info p {
  font-size: 1.9rem;
}
@media screen and (max-width: 900px) {
  .l-footer__info p {
    font-size: 1.1rem;
  }
}

.l-inner {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .l-inner {
    padding: 0 30px;
  }
}
.l-inner--900 {
  max-width: 900px;
}
.l-inner--750 {
  max-width: 750px;
}
.l-inner--550 {
  max-width: 550px;
}

.l-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}
.l-flex__left {
  width: 50%;
}
.l-flex__right {
  width: 50%;
}/*# sourceMappingURL=style.css.map */