@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

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

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #1a1311;
  font-size: clamp(1.6rem, 0.9895833333vw, 1.9rem);
  font-weight: normal;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}
@media screen and (max-width: 767px) {
  body {
    font-size: clamp(1.3rem, 0.9895833333vw, 1.7rem);
  }
}
body.noscroll {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #1a1311;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.l-main {
  display: block;
  background-color: transparent;
}

#wrapper .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-main__common-container {
  margin-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .l-main__common-container {
    margin-bottom: clamp(12rem, 2.8125vw, 18rem);
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
}
.l-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
  -webkit-animation: headerSlideDown 0.5s ease forwards;
          animation: headerSlideDown 0.5s ease forwards;
}

@-webkit-keyframes headerSlideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes headerSlideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 2.8rem 3.2rem;
}
@media screen and (max-width: 1339px) {
  .l-header__inner {
    padding: 2.8rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 1.4rem 1.6rem;
  }
}

.l-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22.5rem;
          flex: 0 0 22.5rem;
  padding-right: 1.6rem;
}
@media screen and (max-width: 1339px) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 15vw;
            flex: 0 1 15vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 clamp(16rem, 35.15625vw, 22.5rem);
            flex: 0 0 clamp(16rem, 35.15625vw, 22.5rem);
    margin-bottom: -0.1rem;
  }
}
.l-header__logo a {
  display: block;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 76.6%;
    min-width: 31rem;
    max-width: 49rem;
    height: 100vh;
    height: 100svh;
    background-color: #092330;
    -webkit-box-shadow: -6px 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: -6px 0 20px rgba(0, 0, 0, 0.1);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8rem 2.4rem 3.2rem;
    z-index: 300;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    pointer-events: none;
  }
  .l-header__nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .l-header__nav.open .l-header__nav-list {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.5vw;
  margin-right: 2.5vw;
}
@media screen and (max-width: 1339px) {
  .l-header__nav-list {
    gap: 0 2rem;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

@media screen and (max-width: 1023px) {
  .l-header__nav-item {
    width: 100%;
    border-bottom: 0.5px solid #c8bb9b;
  }
  .l-header__nav-item:first-child {
    border-top: 0.5px solid #c8bb9b;
  }
}

.l-header__nav-item.--md {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item.--md {
    display: block;
  }
}

.l-header__nav-link {
  color: #1a1311;
  font-size: clamp(1.5rem, 0.93vw, 1.8rem);
  font-weight: normal;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 0.2rem;
  display: block;
  position: relative;
}
.l-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1a1311;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__nav-link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (max-width: 1339px) {
  .l-header__nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link {
    font-size: clamp(1.5rem, 3.90625vw, 1.7rem);
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.095em;
    padding: 1.8rem 0;
  }
  .l-header__nav-link::after {
    display: none;
  }
}

.l-header__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.7vw;
          flex: 0 0 12.7vw;
  color: #fff;
  font-size: clamp(1.5rem, 0.93vw, 1.8rem);
  font-weight: 500;
  line-height: 1;
  max-width: 24.4rem;
  min-width: 22rem;
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #a10008;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 1339px) {
  .l-header__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.8rem;
            flex: 0 0 16.8rem;
    font-size: 1.4rem;
    min-width: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__btn::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 3.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 19px;
  background-image: url(../img/icon_mail_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1339px) {
  .l-header__btn::before {
    left: 22px;
    width: 19px;
    height: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__btn::before {
    left: 50px;
    width: 22px;
    height: 17px;
  }
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  padding: 10rem 0 9rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 7.2rem 0 7.2rem;
  }
}
.contact .l-footer {
  border-top: 0.5px solid #1a1311;
}
@media screen and (max-width: 767px) {
  .contact .l-footer {
    padding-top: clamp(8rem, 17.5vw, 9.6rem);
  }
}

.l-footer__inner.c-inner {
  width: clamp(300px, 90%, 134rem);
}
@media screen and (max-width: 1023px) {
  .l-footer__inner.c-inner {
    width: 100%;
    padding: 0 10vw;
  }
}

.l-footer__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4.8rem;
  margin-bottom: 8.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__heading {
    display: block;
    margin-bottom: 3.2rem;
  }
}

.l-footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.4rem;
          flex: 0 0 31.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 100%;
    max-width: 19.6rem;
    margin-bottom: 1.6rem;
  }
}
.l-footer__logo a:hover {
  opacity: 0.7;
}

.l-footer__logo-link {
  display: block;
  width: 100%;
}

.l-footer__address {
  font-size: clamp(1.5rem, 0.938vw, 1.6rem);
  font-weight: normal;
  line-height: 1.89;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: 1.25rem;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 4.8rem;
     -moz-column-gap: 4.8rem;
          column-gap: 4.8rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    -webkit-column-gap: 2.8rem;
       -moz-column-gap: 2.8rem;
            column-gap: 2.8rem;
    margin-bottom: 4rem;
  }
}

.l-footer__nav-item {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item {
    margin-bottom: 1.6rem;
  }
}

.l-footer__nav-break {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-break {
    display: none;
  }
}

.l-footer__nav-link {
  font-size: clamp(1.6rem, 0.9896vw, 1.9rem);
  font-weight: normal;
  letter-spacing: 0.1em;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.2rem;
    padding-left: 1.4rem;
  }
}
.l-footer__nav-link:hover {
  color: #11182b;
  opacity: 0.8;
}
.l-footer__nav-link::before {
  content: "";
  position: absolute;
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #1a1311;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link::before {
    top: 53%;
    width: 10px;
    height: 10px;
  }
}
.l-footer__nav-link.--dot {
  padding-left: 0;
}
.l-footer__nav-link.--dot::before {
  content: "・";
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: none;
          transform: none;
  width: auto;
  height: auto;
  background-color: transparent;
}

.l-footer__copyright {
  font-size: clamp(1.6rem, 0.9896vw, 1.9rem);
  font-weight: 300;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  sidebar
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  l-content
------------------------------------------------------------------------------*/
.l-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-content__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 68.35%;
          flex: 0 1 68.35%;
}
@media screen and (max-width: 767px) {
  .l-content__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.l-content__side {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 26.2%;
          flex: 0 1 26.2%;
}
@media screen and (max-width: 767px) {
  .l-content__side {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-top: clamp(6.4rem, 12.5vw, 8rem);
  }
}

/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  width: clamp(300px, 90%, 140rem);
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .c-inner {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 2rem;
  }
}

.c-inner--sm {
  width: clamp(300px, 100%, 108.5rem);
  padding: 0 2rem;
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #fff;
  font-size: clamp(1.5rem, 1.1979166667vw, 2.3rem);
  font-weight: normal;
  background-color: #11182b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(38rem, 24vw, 45rem);
  height: 7.9rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: clamp(1.3rem, 2.96875vw, 1.9rem);
    width: 100%;
    max-width: clamp(23.4rem, 58.59375vw, 37.5rem);
    height: clamp(4.4rem, 10.15625vw, 6.5rem);
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 83%;
  height: 100%;
  opacity: 0.13;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  clip-path: polygon(0 0, 100% 0, 40% 100%, 0% 100%);
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease, clip-path 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s ease, clip-path 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease, clip-path 0.6s ease;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease, clip-path 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.2rem;
  height: 1.4rem;
  background-image: url(../img/icon_arrow_right_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn::after {
    right: 1.6rem;
    width: 0.7rem;
    height: 0.8rem;
  }
}
.c-btn:hover {
  opacity: 1;
}
.c-btn:hover::before {
  -webkit-transform: translateX(70%);
          transform: translateX(70%);
  opacity: 0.6;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}
.c-btn:hover::after {
  -webkit-transform: translateY(-50%) translateX(4px);
          transform: translateY(-50%) translateX(4px);
}

@-webkit-keyframes c-btn-shine {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0.13;
  }
  55% {
    opacity: 0.35;
  }
  100% {
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
    opacity: 0.2;
  }
}

@keyframes c-btn-shine {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0.13;
  }
  55% {
    opacity: 0.35;
  }
  100% {
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
    opacity: 0.2;
  }
}
.c-btn--standalone {
  margin-top: clamp(10rem, 8.125vw, 15.6rem);
}
@media screen and (max-width: 767px) {
  .c-btn--standalone {
    margin-top: clamp(5.6rem, 18.75vw, 12rem);
  }
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-burger-btn {
    display: block;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 1.8rem;
    right: 1rem;
    z-index: 1001;
    padding: 1rem;
    background-color: transparent;
    /* ハンバーガーメニューが開いたとき */
  }
  .c-burger-btn.cross .c-burger-btn__bar--top {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
    -webkit-transform: translateY(10px) rotate(135deg);
            transform: translateY(10px) rotate(135deg);
  }
  .c-burger-btn.cross .c-burger-btn__bar--mid {
    -webkit-transition-delay: 120ms;
            transition-delay: 120ms;
    -webkit-transform: translateX(-15px) scaleX(0);
            transform: translateX(-15px) scaleX(0);
  }
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(-10px) rotate(-135deg);
            transform: translateY(-10px) rotate(-135deg);
  }
}
@media screen and (max-width: 767px) {
  .c-burger-btn {
    top: 0.7rem;
    right: 0.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header.open .c-burger-btn .c-burger-btn__bar {
    background-color: #fff;
  }
}

.c-burger-btn__bar {
  margin: 0 auto;
  display: block;
  height: 1px;
  width: 36px;
  border-radius: 0px;
  background-color: #1a1311;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-burger-btn__bar--top,
.c-burger-btn__bar--mid {
  margin-bottom: 9px;
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title {
  text-align: center;
}

.c-title__ja {
  font-size: clamp(4.4rem, 2.55vw, 4.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 1023px) {
  .c-title__ja {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 2rem;
  }
}

.c-title__en {
  font-size: clamp(1.8rem, 1.1vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-top: 1rem;
}
@media screen and (max-width: 1023px) {
  .c-title__en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 1rem;
    margin-top: 0.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-title02
------------------------------------------------------------------------------*/
.c-title02 {
  text-align: center;
}

.c-title02__en {
  font-size: clamp(4.4rem, 2.45vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  display: block;
}
@media screen and (max-width: 1023px) {
  .c-title02__en {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__en {
    font-size: 2rem;
  }
}

.c-title02__ja {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.09em;
  margin-top: 0.6rem;
}
@media screen and (max-width: 1023px) {
  .c-title02__ja {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__ja {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------------------------
  c-title03
------------------------------------------------------------------------------*/
.c-title03 {
  text-align: center;
}

.c-title03__ja {
  font-size: clamp(3.4rem, 2.5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-title03__ja {
    font-size: clamp(1.8rem, 5.75vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 0.6rem;
  }
}

.c-title03__ja--sub {
  font-size: clamp(2rem, 1.6666666667vw, 3.2rem);
  display: block;
  font-weight: 600;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .c-title03__ja--sub {
    font-size: clamp(1.2rem, 4.25vw, 2rem);
  }
}

.c-title03__en {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-title03__en {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
}

/*------------------------------------------------------------------------------
  c-title04
------------------------------------------------------------------------------*/
.c-title04 {
  text-align: center;
}

.c-title04__text {
  font-size: clamp(2.6rem, 2.0833333333vw, 4rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 0.1px solid #1a1311;
  display: inline-block;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-title04__text {
    font-size: clamp(1.8rem, 5.75vw, 2.8rem);
    line-height: 1.25;
    display: block;
    padding-bottom: 1.4rem;
  }
}

.c-title04--white .c-title04__text {
  color: #fff;
  border-bottom-color: #fff;
}

/*------------------------------------------------------------------------------
  c-title05
------------------------------------------------------------------------------*/
.c-title05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.3rem;
     -moz-column-gap: 1.3rem;
          column-gap: 1.3rem;
}
@media screen and (max-width: 767px) {
  .c-title05 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.c-title05__logo {
  width: clamp(32rem, 27.0833333333vw, 52rem);
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  min-width: 0;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .c-title05__logo {
    width: clamp(28rem, 23.0729166667vw, 44rem);
  }
}

.c-title05__text {
  font-size: clamp(3.2rem, 2.65625vw, 5.1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-title05__text {
    font-size: clamp(1.8rem, 4.84375vw, 3.1rem);
    letter-spacing: 0.14em;
    margin-bottom: 0;
  }
}

.c-title05--sm .c-title05__logo {
  width: clamp(28rem, 18.6458333333vw, 35.8rem);
}
@media screen and (max-width: 767px) {
  .c-title05--sm .c-title05__logo {
    width: clamp(28rem, 23.0729166667vw, 44rem);
  }
}
.c-title05--sm .c-title05__text {
  font-size: clamp(2.4rem, 3.28125vw, 4rem);
  letter-spacing: 0.14em;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-title05--sm .c-title05__text {
    font-size: clamp(1.8rem, 4.84375vw, 3.1rem);
    letter-spacing: 0.14em;
    margin-bottom: 0;
  }
}

/*------------------------------------------------------------------------------
  c-title06
------------------------------------------------------------------------------*/
.c-title06 {
  text-align: center;
}

.c-title06__en {
  font-size: clamp(4rem, 2.8645833333vw, 5.5rem);
  font-weight: 600;
  letter-spacing: 0.135em;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-title06__en {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: 0.075em;
  }
}

.c-title06__ja {
  font-size: clamp(1.3rem, 0.8333333333vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.095em;
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-title06__ja {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-top: 0.7rem;
  }
}

/*------------------------------------------------------------------------------
  c-title07
------------------------------------------------------------------------------*/
.c-title07 {
  text-align: center;
}

.c-title07__en {
  font-size: clamp(4.4rem, 2.45vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  display: block;
}
@media screen and (max-width: 1023px) {
  .c-title07__en {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title07__en {
    font-size: 2rem;
  }
}

.c-title07__ja {
  font-size: clamp(1.8rem, vs(26), 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 0.8rem;
}
@media screen and (max-width: 1023px) {
  .c-title07__ja {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title07__ja {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------------------------
  c-title08
------------------------------------------------------------------------------*/
.c-title08 {
  text-align: center;
}

.c-title08__ja {
  font-size: clamp(3.2rem, 2.0833333333vw, 4rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  border-bottom: 0.1px solid #1a1311;
  display: inline-block;
  padding: 0 7.2rem 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-title08__ja {
    font-size: clamp(1.8rem, 5.75vw, 2.8rem);
    line-height: 1.25;
    padding: 0 3.2rem 1.2rem;
  }
}

.c-title08__en {
  font-size: 1.3rem;
  font-size: clamp(1.3rem, 0.8854166667vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.135em;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  display: block;
}

.c-title08--white .c-title08__ja {
  color: #fff;
  border-bottom-color: #fff;
}
.c-title08--white .c-title08__en {
  color: #fff;
}

/*------------------------------------------------------------------------------
  c-post-card
------------------------------------------------------------------------------*/
.c-post-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .c-post-card-wrap {
    gap: 3.2rem 6%;
  }
}

.c-post-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 22%;
          flex: 0 1 22%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  .c-post-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}
.c-post-card:hover, .c-post-card:focus-within {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.c-post-card__link {
  display: block;
}

.c-post-card__img {
  width: 100%;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-post-card__img {
    margin-bottom: 1.4rem;
  }
}
.c-post-card__img img {
  aspect-ratio: 1/1;
}

.c-post-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-post-card__meta {
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }
}

.c-post-card__time.c-label {
  min-width: 14.2rem;
  padding: 0.5rem 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .c-post-card__time.c-label {
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-post-card__time.c-label {
    font-size: 1rem;
    padding: 0.4rem 1.6rem;
  }
}

.c-post-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .c-post-card__title {
    font-size: 1.1rem;
  }
}
.c-post-card:hover .c-post-card__title {
  text-decoration: underline;
}

.c-post-card--stripe-bg {
  max-width: 40rem;
}
.c-post-card--stripe-bg .c-post-card__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  padding: 1.4rem;
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 6px, #ddd 6px, #ddd 8px);
}
@media screen and (max-width: 767px) {
  .c-post-card--stripe-bg .c-post-card__img {
    padding: 0.6rem;
  }
}
.c-post-card--stripe-bg .c-post-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-post-card--stripe-bg .c-post-card__meta {
  gap: 2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-post-card--stripe-bg .c-post-card__meta {
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.c-post-card--stripe-bg .c-post-card__category {
  font-size: 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5rem 1.6rem;
  min-width: 9rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-post-card--stripe-bg .c-post-card__category {
    font-size: 1.1rem;
    min-width: 0;
    padding: 0.3rem 1.4rem;
  }
}
.c-post-card--stripe-bg .c-post-card__date {
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-post-card--stripe-bg .c-post-card__date {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}
.c-post-card--stripe-bg .c-post-card__title {
  font-size: clamp(1.7rem, 0.9895833333vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-post-card--stripe-bg .c-post-card__title {
    font-size: 1.4rem;
  }
}

/*------------------------------------------------------------------------------
  c-business-card
------------------------------------------------------------------------------*/
.c-business-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 5%;
}
@media screen and (max-width: 767px) {
  .c-business-card-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem 0;
  }
}

.c-business-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}
@media screen and (max-width: 767px) {
  .c-business-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 2.4rem;
       -moz-column-gap: 2.4rem;
            column-gap: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .c-business-card--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

a.c-business-card .c-card__img {
  overflow: hidden;
}
a.c-business-card .c-card__img img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
a.c-business-card:hover .c-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-card__img {
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-card__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 60.1%;
            flex: 0 1 60.1%;
  }
}
.c-card__img img {
  aspect-ratio: 400/272;
}

@media screen and (max-width: 767px) {
  .c-business-card-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-business-card__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.c-business-card__title {
  font-size: clamp(1.8rem, 1.4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-business-card__title {
    font-size: 1.35rem;
  }
}

.c-business-card-wrap--large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: clamp(10.4rem, 9.4791666667vw, 18.2rem);
}
@media screen and (max-width: 767px) {
  .c-business-card-wrap--large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: clamp(2rem, 10.3125vw, 6.6rem);
  }
}

.c-business-card--large {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.57%;
          flex: 0 1 47.57%;
}
@media screen and (max-width: 767px) {
  .c-business-card--large {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: block;
  }
}
.c-business-card--large .c-card__img img {
  aspect-ratio: 666/441;
}
@media screen and (max-width: 767px) {
  .c-business-card--large .c-business-card__title {
    font-size: clamp(1.4rem, 4.0625vw, 1.8rem);
  }
}
.c-business-card--large .c-label {
  color: #535252;
  font-size: clamp(1.4rem, 1.015625vw, 1.95rem);
  padding: 0.6rem 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-business-card--large .c-label {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }
}

/*------------------------------------------------------------------------------
  c-property-card
------------------------------------------------------------------------------*/
.c-property-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.99vw 3.2%;
}
@media screen and (max-width: 1023px) {
  .c-property-card-wrap {
    gap: 6.5vw 2%;
  }
}
@media screen and (max-width: 767px) {
  .c-property-card-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4.375vw 0;
  }
}

.c-property-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 22.6%;
          flex: 0 1 22.6%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), -webkit-box-shadow 0.35s ease;
  transition: -webkit-transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease;
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease, -webkit-transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), -webkit-box-shadow 0.35s ease;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
@media screen and (max-width: 1023px) {
  .c-property-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
  }
}
@media screen and (max-width: 767px) {
  .c-property-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
.c-property-card:hover, .c-property-card:focus-within {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 3px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 3px 18px rgba(0, 0, 0, 0.06);
}

.c-property-card__link {
  display: block;
}

.c-property-card__img {
  width: 100%;
}

.c-property-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 3.8rem;
  padding-left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-property-card__header {
    -webkit-column-gap: 0.6rem;
       -moz-column-gap: 0.6rem;
            column-gap: 0.6rem;
    min-height: 2.6rem;
    padding-left: 0.6rem;
  }
}

.c-property-card__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: end;
      align-self: flex-end;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-property-card__label-wrap {
    margin-top: 0.6rem;
  }
}

.c-property-card__label {
  color: #1a1311;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  padding: 0.2rem 1.6rem;
  border: 1px solid #1a1311;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-property-card__label {
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0;
    padding: 0.4rem 1rem;
  }
}

.c-property-card__status {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  color: #fff;
  font-weight: 400;
  background-color: #1a1311;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(10rem, 8.5416666667vw, 16.4rem);
  min-height: 3.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.4rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-property-card__status {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    width: clamp(6.4rem, 20vw, 12.8rem);
    min-height: 2.6em;
  }
}

.c-property-card__status--sold {
  background-color: #a10008;
}

.c-property-card__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.8rem 2.8rem 2rem;
}
@media screen and (max-width: 1023px) {
  .c-property-card__body {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-property-card__body {
    padding: clamp(1.6rem, 4.375vw, 2.8rem) clamp(1rem, 3.75vw, 2.4rem) clamp(1rem, 3.125vw, 2rem);
  }
}

.c-property-card__title {
  font-size: clamp(1.5rem, 1.25vw, 1.6rem);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-wrap: break-word;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-property-card__title {
    font-size: clamp(1.2rem, 2.1875vw, 1.4rem);
    margin-bottom: 0.2rem;
  }
}

.c-property-card__price {
  font-size: clamp(2rem, 1.4583333333vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: block;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-property-card__price {
    font-size: clamp(1.6rem, 1.3020833333vw, 2rem);
    margin-bottom: 0.4rem;
  }
}
.c-property-card__price span {
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  margin-left: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-property-card__price span {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  }
}

.c-property-card__desc {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-property-card__desc {
    font-size: 1.1rem;
  }
}

/*------------------------------------------------------------------------------
  c-badge
------------------------------------------------------------------------------*/
.c-badge {
  color: #fff;
  font-size: clamp(1.3rem, 0.781vw, 1.5rem);
  font-weight: normal;
  background-color: #11182b;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  padding: 0.6rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-badge {
    font-size: 1.1rem;
    padding: 0.5rem 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-label
------------------------------------------------------------------------------*/
.c-label {
  color: #535252;
  font-size: clamp(1.4rem, 0.93vw, 1.8rem);
  font-weight: normal;
  padding: 0.5rem 5.2rem;
  border: 1px solid #535252;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-label {
    font-size: 1rem;
    padding: 0.4rem 1.6rem;
    text-align: center;
    min-width: 8rem;
  }
}

/*------------------------------------------------------------------------------
  c-filter
------------------------------------------------------------------------------*/
.c-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem 4rem;
}
@media screen and (max-width: 767px) {
  .c-filter {
    gap: 1.2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-filter__chip {
  color: #fff;
  font-size: clamp(1.6rem, 0.8854166667vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #c1c1c1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 28rem;
  height: 5.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.2rem 2rem;
  border-radius: 40px;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media screen and (max-width: 767px) {
  .c-filter__chip {
    font-size: 1.2rem;
    min-width: 9rem;
    height: auto;
    padding: 0.8rem 1.6rem;
  }
}
.c-filter__chip:hover {
  opacity: 1;
  color: #fff;
  background-color: #11182b;
}
.c-filter__chip.is-active {
  color: #fff;
  background-color: #11182b;
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-fixed-cta
------------------------------------------------------------------------------*/
.c-fixed-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-fixed-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .c-fixed-cta.is-show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .c-fixed-cta__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 5.8rem;
    background-color: #a10008;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .c-fixed-cta__btn-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 3.6rem;
    position: relative;
    display: inline-block;
  }
  .c-fixed-cta__btn-text::before {
    content: "";
    position: absolute;
    top: 52%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 28px;
    height: 18px;
    background-image: url(../img/icon_mail_w.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

/*------------------------------------------------------------------------------
  c-prose
------------------------------------------------------------------------------*/
.c-prose h2 {
  color: #11182b;
  font-size: clamp(2.4rem, 1.7708333333vw, 3.4rem);
  font-weight: 600;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-prose h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.5;
  }
}
.c-prose h3 {
  font-size: clamp(2.4rem, 1.4583333333vw, 2.8rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-prose h3 {
    font-size: 1.7rem;
  }
}
.c-prose h4 {
  font-size: clamp(1.9rem, 1.3541666667vw, 2.4rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-prose h4 {
    font-size: 1.6rem;
  }
}
.c-prose h5 {
  font-size: clamp(1.7rem, 1.25vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  .c-prose h5 {
    font-size: 1.5rem;
  }
}
.c-prose h2,
.c-prose h3,
.c-prose h4,
.c-prose h5,
.c-prose a,
.c-prose p,
.c-prose ul,
.c-prose ol,
.c-prose dl,
.c-prose .wp-block-table,
.c-prose .wp-block-image,
.c-prose .wp-block-media-text,
.c-prose .wp-block-gallery {
  margin: 1.5em 0;
}
.c-prose ul {
  list-style-type: disc;
  list-style-position: inside;
}
.c-prose ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-prose ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.2em;
}
.c-prose ol li {
  text-indent: 0;
  padding-left: 0.3em;
}
.c-prose a:not([class]) {
  color: #09099C;
  text-decoration: underline;
}
.c-prose .wp-block-table table {
  width: 100%;
  table-layout: auto;
}
.c-prose .wp-block-table td,
.c-prose .wp-block-table th {
  min-width: 7rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-prose .wp-block-table td,
  .c-prose .wp-block-table th {
    min-width: 3rem;
    white-space: normal;
  }
}
.c-prose table td:first-child,
.c-prose table th:first-child {
  min-width: 8rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-prose table td:first-child,
  .c-prose table th:first-child {
    min-width: 5rem;
    white-space: normal;
  }
}
.c-prose .wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose .wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose .wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose .wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose figure.wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose figure.wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose figure.wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose figure.wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose img.aligncenter {
  margin-inline: auto;
  display: block;
}
.c-prose img.alignright {
  margin-inline: auto 0;
  display: block;
}
.c-prose img.alignleft {
  margin-inline: 0 auto;
  display: block;
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
.c-pagination-wrap {
  margin-top: clamp(10rem, 8.125vw, 15.6rem);
}
@media screen and (max-width: 767px) {
  .c-pagination-wrap {
    margin-top: clamp(5.6rem, 18.75vw, 12rem);
  }
}

.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .page-numbers li {
  margin: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers li {
    margin: 0 0.3rem;
  }
}
.c-pagination .page-numbers span,
.c-pagination .page-numbers a {
  font-size: clamp(1.5rem, 1.1979166667vw, 2.3rem);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #11182b;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 41px;
  height: 41px;
  border-radius: 1px;
  border: 1px solid #11182b;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 1px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers span,
  .c-pagination .page-numbers a {
    font-size: 1.4rem;
    width: 34px;
    height: 34px;
  }
}
.c-pagination .page-numbers span.current,
.c-pagination .page-numbers a.current {
  pointer-events: none;
}
.c-pagination .page-numbers span.current, .c-pagination .page-numbers span:hover,
.c-pagination .page-numbers a.current,
.c-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #11182b;
  opacity: 1;
}
.c-pagination .page-numbers .dots {
  font-weight: normal;
  pointer-events: none;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 1.25rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .dots {
    width: 26px;
  }
}
.c-pagination .page-numbers .prev::before,
.c-pagination .page-numbers .next::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .prev::before,
  .c-pagination .page-numbers .next::before {
    width: 7px;
    height: 7px;
  }
}
.c-pagination .page-numbers .prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-left: 3px;
}
.c-pagination .page-numbers .next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 3px;
}

/*------------------------------------------------------------------------------
  c-fade-up - 汎用アニメーションクラス
------------------------------------------------------------------------------*/
.c-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.c-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-fade-up.is-no-anim {
  -webkit-transition: none !important;
  transition: none !important;
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

/*------------------------------------------------------------------------------
  c-image-modal
------------------------------------------------------------------------------*/
.c-image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
}

.c-image-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.c-image-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  height: 90%;
  max-height: 90vh;
  max-height: 90dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-image-modal__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: auto;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.6rem;
}

.c-image-modal__close-btn {
  position: absolute;
  top: 16px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-image-modal__close-btn {
    width: 24px;
    height: 24px;
  }
}
.c-image-modal__close-btn::before, .c-image-modal__close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-image-modal__close-btn::before, .c-image-modal__close-btn::after {
    width: 24px;
  }
}
.c-image-modal__close-btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-image-modal__close-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  width: 100%;
  position: relative;
}

.p-mv__img {
  width: 100%;
  height: auto;
}

.p-mv__copy {
  color: #fff;
  font-size: clamp(4.2rem, 2.5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  position: absolute;
  left: 6rem;
  bottom: 5.2rem;
  text-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1023px) {
  .p-mv__copy {
    font-size: 3.6rem;
    left: 2rem;
    bottom: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    font-size: clamp(2.8rem, 7.65vw, 3.6rem);
    left: 1.6rem;
    bottom: 2.2rem;
    text-shadow: 0 0 9px rgba(0, 0, 0, 0.9);
  }
}

/*------------------------------------------------------------------------------
  p-home-about
------------------------------------------------------------------------------*/
.p-home-about {
  padding: 25rem 0 22rem;
}
@media screen and (max-width: 767px) {
  .p-home-about {
    padding: 10.2rem 0 15rem;
  }
}

.p-home-about__inner {
  position: relative;
}
.p-home-about__inner::before, .p-home-about__inner::after {
  content: "";
  position: absolute;
  width: 17.18vw;
  height: 17.18vw;
  max-width: 339px;
  max-height: 339px;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1280px) {
  .p-home-about__inner::before, .p-home-about__inner::after {
    width: 14vw;
    height: 14vw;
  }
}
@media screen and (max-width: 767px) {
  .p-home-about__inner::before, .p-home-about__inner::after {
    width: 25vw;
    height: 25vw;
  }
}
.p-home-about__inner::before {
  top: -112px;
  left: -20px;
  background-image: url(../img/illust_home_about1.svg);
}
@media screen and (max-width: 767px) {
  .p-home-about__inner::before {
    top: -28px;
    left: 10px;
  }
}
.p-home-about__inner::after {
  bottom: -112px;
  right: -28px;
  background-image: url(../img/illust_home_about2.svg);
}
@media screen and (max-width: 767px) {
  .p-home-about__inner::after {
    bottom: -80px;
    right: 10px;
  }
}

.p-home-about__title {
  text-align: center;
}

.p-home-about__title-en {
  font-size: 4.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.075em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-home-about__title-en {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-about__title-en {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
}

.p-home-about__title-ja {
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-home-about__title-ja {
    font-size: 1rem;
  }
}

.p-home-about__texts {
  font-size: clamp(1.6rem, 0.93vw, 1.8rem);
  line-height: 2.33;
  text-align: center;
  margin-top: 6.4rem;
}
@media screen and (max-width: 1280px) {
  .p-home-about__texts {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-about__texts {
    max-width: 60rem;
    margin-inline: auto;
  }
  .p-home-about__texts .md {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-home-about__texts {
    font-size: 1.1rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0;
    margin-top: 5.2rem;
  }
  .p-home-about__texts .md {
    display: block;
  }
}
.p-home-about__texts p:not(:last-child) {
  margin-bottom: 2em;
}

/*------------------------------------------------------------------------------
  p-home-business
------------------------------------------------------------------------------*/
.p-home-business {
  padding: 12.8rem 0 16rem;
  margin-bottom: 20.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-business {
    padding: 4.8rem 0 8.8rem;
    margin-bottom: 7.8rem;
  }
}
.p-home-business::before {
  content: "";
  position: absolute;
  top: 0;
  width: 80%;
  height: 100%;
  background-color: #e0dfdf;
  z-index: -1;
}
@media screen and (min-width: 1920px) {
  .p-home-business::before {
    width: calc(128rem + (100vw - 140rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .p-home-business::before {
    width: calc(100% - 62px);
  }
}

.p-home-business--odd::before {
  left: 0;
  border-radius: 0 96px 96px 0;
}
@media screen and (max-width: 767px) {
  .p-home-business--odd::before {
    border-radius: 0 64px 64px 0;
  }
}

.p-home-business--even::before {
  right: 0;
  border-radius: 96px 0 0 96px;
}
@media screen and (max-width: 767px) {
  .p-home-business--even::before {
    border-radius: 64px 0 0 64px;
  }
}

.p-home-business__content {
  margin: 4.8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-home-business__content {
    margin: 4rem 0;
  }
}

/*------------------------------------------------------------------------------
  p-home-real-estate
------------------------------------------------------------------------------*/
.p-home-real-estate {
  position: relative;
  z-index: 1;
}

.p-home-real-estate__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr 3.2rem 1fr 3.2rem 1fr 3.2rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .p-home-real-estate__list {
    -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-real-estate__list {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.p-home-real-estate__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-home-real-estate__img {
  aspect-ratio: 400/272;
  overflow: hidden;
}
.p-home-real-estate__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-home-real-estate__title {
  font-size: clamp(1.6rem, 1.40625vw, 2.7rem);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-home-real-estate__title {
    font-size: clamp(1.4rem, 2.65625vw, 1.7rem);
    margin-top: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-home-works
------------------------------------------------------------------------------*/
.p-home-works {
  padding: 12rem 0 28rem;
  margin-bottom: 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-works {
    padding: 4rem 0 11.2rem;
    margin-bottom: 9.6rem;
  }
}
.p-home-works::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 121rem;
  background-image: url(../img/home-works-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-home-works::before {
    height: 46rem;
    background-image: url(../img/home-works-bg_sp.png);
    background-position: center 0;
  }
}

.p-home-works__title {
  font-size: clamp(4rem, 2.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-home-works__title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-home-section
------------------------------------------------------------------------------*/
.p-home-section {
  margin-bottom: 30rem;
}
@media screen and (max-width: 767px) {
  .p-home-section {
    margin-bottom: 9.6rem;
  }
}

.p-home-section__content {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-home-section__content {
    margin-top: 3.4rem;
  }
}
.p-home-section__content .p-news-list {
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .p-home-section__content .p-news-list {
    margin-top: -3rem;
  }
}

.p-home-section__btn-wrap {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-home-section__btn-wrap {
    margin-top: 3.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-home-concept
------------------------------------------------------------------------------*/
.p-home-concept {
  padding-top: 9rem;
  margin-bottom: 20rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-concept {
    padding-top: 12rem;
    padding-top: 30vw;
    margin-bottom: 7.5rem;
  }
}

.p-home-concept__en-title {
  position: absolute;
  top: 160px;
  left: 83px;
  color: #c7c5c4;
  font-size: clamp(9.6rem, 8.75vw, 16.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .p-home-concept__en-title {
    left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-concept__en-title {
    font-size: clamp(4rem, 10.4vw, 8.8rem);
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__en-title {
    top: 0.5vw;
    left: 48px;
    font-size: 10vw;
  }
}
@media screen and (max-width: 520px) {
  .p-home-concept__en-title {
    top: -2vw;
    font-size: 11.75vw;
  }
}

.p-home-concept__inner {
  margin-left: auto;
  width: calc(140rem + (100% - 140rem) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-home-concept__inner {
    width: 100%;
    padding-left: 2rem;
  }
}

.p-home-concept__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5.8vw;
  margin-top: 16rem;
}
@media screen and (max-width: 1280px) {
  .p-home-concept__content {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-concept__content {
    gap: 0 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem 0;
    margin-top: 0;
  }
}

.p-home-concept__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 16rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-home-concept__text-wrap {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-concept__text-wrap {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__text-wrap {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 0;
    padding: 0 2rem;
  }
}

.p-home-concept__lead {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1280px) {
  .p-home-concept__lead {
    margin-bottom: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__lead {
    margin-bottom: 1.2rem;
  }
}

.p-home-concept__lead-sub {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-home-concept__lead-sub {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
}

.p-home-concept__lead-main {
  font-size: clamp(3.8rem, 2.45vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1280px) {
  .p-home-concept__lead-main {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-concept__lead-main {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__lead-main {
    font-size: 2.3rem;
  }
}

.p-home-concept__texts {
  font-size: clamp(1.5rem, 0.93vw, 1.8rem);
  font-weight: normal;
  line-height: 2.23;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1023px) {
  .p-home-concept__texts {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__texts {
    font-size: 1.1rem;
  }
}
.p-home-concept__texts p:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (max-width: 1023px) {
  .p-home-concept__texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__texts p:not(:last-child) {
    margin-bottom: 2em;
  }
}

.p-home-concept__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59.26%;
          flex: 0 1 59.26%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-home-concept__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 54%;
            flex: 0 1 54%;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-concept__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 42%;
            flex: 0 1 42%;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 81%;
            flex: 0 1 81%;
    margin-left: auto;
    width: 81%;
  }
}
.p-home-concept__img::before {
  content: "";
  position: absolute;
  top: -16rem;
  right: 0;
  width: 117%;
  height: 112%;
  background-color: #e0dfdf;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .p-home-concept__img::before {
    top: -12rem;
    width: 110%;
    height: 96%;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-concept__img::before {
    top: -8rem;
    height: 110%;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__img::before {
    top: auto;
    bottom: 6.25vw;
    width: 116%;
    height: 112%;
  }
}

/*------------------------------------------------------------------------------
  p-page-header
------------------------------------------------------------------------------*/
.p-page-header {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: clamp(10rem, 8.125vw, 15.6rem) 2rem 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-page-header {
    padding: clamp(6.4rem, 14.0625vw, 9rem) 2rem clamp(7.2rem, 15.625vw, 10rem);
  }
}

.p-page-header__title {
  text-align: center;
  position: relative;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-header__title {
    padding-bottom: 2rem;
  }
}
.p-page-header__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(20rem, 11.1979166667vw, 21.5rem);
  height: 9px;
  background: -webkit-gradient(linear, left top, right top, from(#7d7a7a), color-stop(25%, #7d7a7a), color-stop(25%, #cccccc), color-stop(50%, #cccccc), color-stop(50%, #a8bccc), color-stop(75%, #a8bccc), color-stop(75%, #3a617d), to(#3a617d));
  background: linear-gradient(to right, #7d7a7a 0%, #7d7a7a 25%, #cccccc 25%, #cccccc 50%, #a8bccc 50%, #a8bccc 75%, #3a617d 75%, #3a617d 100%);
}
@media screen and (max-width: 767px) {
  .p-page-header__title::after {
    width: clamp(16rem, 33.59375vw, 21.5rem);
    height: 7px;
  }
}

.p-page-header__title-en {
  font-size: clamp(4rem, 2.4479166667vw, 4.7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.075em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-page-header__title-en {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 0.6rem;
  }
}

.p-page-header__title-ja {
  font-size: clamp(1.3rem, 0.8333333333vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.095em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-page-header__title-ja {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  }
}

/*------------------------------------------------------------------------------
  p-contact
------------------------------------------------------------------------------*/
.p-contact__lead {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  line-height: 2.33;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-bottom: clamp(4rem, 4.1666666667vw, 8rem);
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: clamp(1.3rem, 3.28125vw, 1.6rem);
    line-height: 2.19;
  }
}

.p-contact__tel {
  color: #fff;
  background-color: #37445c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: clamp(70rem, 43.5416666667vw, 83.6rem);
  margin: 0 auto clamp(10.4rem, 9.0625vw, 17.4rem);
  padding: clamp(4.8rem, 3.125vw, 6rem) 1.6rem clamp(4.8rem, 3.5416666667vw, 6.8rem);
}
@media screen and (max-width: 767px) {
  .p-contact__tel {
    width: 100%;
    margin: 0 auto clamp(8.8rem, 25vw, 16rem);
    padding: clamp(4.8rem, 8.75vw, 5.6rem) 1.6rem;
  }
}

.p-contact__tel-lead {
  font-size: clamp(1.6rem, 0.9895833333vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-lead {
    font-size: clamp(1.4rem, 3.59375vw, 1.7rem);
    margin-bottom: 1.6rem;
  }
}

.p-contact__tel-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-contact__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-link {
    margin-bottom: 0.4rem;
  }
}

.p-contact__tel-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(2.4rem, 3.125vw, 6rem);
          flex: 0 0 clamp(2.4rem, 3.125vw, 6rem);
  margin-right: 1.35vw;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 clamp(2.4rem, 9.375vw, 6rem);
            flex: 0 0 clamp(2.4rem, 9.375vw, 6rem);
    margin-right: 2.03vw;
  }
}

.p-contact__tel-number {
  font-size: clamp(3.2rem, 2.7083333333vw, 5.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: -0.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-number {
    font-size: clamp(2.8rem, 8.125vw, 4rem);
    margin-top: -0.3rem;
    margin-left: 2.03vw;
  }
}

.p-contact__tel-info-text {
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
  line-height: 1.43;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-left: 1.35vw;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-info-text {
    font-size: clamp(1.2rem, 3.125vw, 1.4rem);
    line-height: 1.65;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: 0;
    padding-left: calc(clamp(2.4rem, 9.375vw, 6rem) + 4.5vw);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/*------------------------------------------------------------------------------
  p-contact-form
------------------------------------------------------------------------------*/
.p-contact-form {
  margin-bottom: clamp(8rem, 7.0833333333vw, 13.6rem);
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-bottom: clamp(6.4rem, 14.375vw, 9.2rem);
  }
}

.p-contact-form__content:not(:last-child) {
  margin-bottom: clamp(8rem, 6.25vw, 12rem);
}
@media screen and (max-width: 767px) {
  .p-contact-form__content:not(:last-child) {
    margin-bottom: clamp(4rem, 18.75vw, 12rem);
  }
}

.p-contact-form__item:not(:last-child) {
  margin-bottom: clamp(5.6rem, 3.75vw, 7.2rem);
}
@media screen and (max-width: 767px) {
  .p-contact-form__item:not(:last-child) {
    margin-bottom: clamp(4rem, 12.5vw, 6.4rem);
  }
}

.p-contact-form__item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 1.6rem;
}

.p-contact-form__required {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 87px;
          flex: 0 1 87px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #37445c;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 32px;
  height: 29px;
  padding: 0.6rem 1.2rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__required {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 clamp(7.2rem, 15.15625vw, 8rem);
            flex: 0 1 clamp(7.2rem, 15.15625vw, 8rem);
    font-size: 1.2rem;
    height: 27px;
    margin-right: 1.2rem;
  }
}
.p-contact-form__required.--any {
  background-color: #9f8159;
}

.p-contact-form__item-title {
  font-size: clamp(1.7rem, 0.9895833333vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 0.1rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-title {
    font-size: clamp(1.5rem, 3.28125vw, 1.7rem);
    margin-top: 0.25rem;
  }
}

.p-contact-form__input-wrap {
  width: 100%;
}
.p-contact-form__input-wrap ~ .p-contact-form__input-wrap {
  margin-top: clamp(1.6rem, 2.0833333333vw, 4rem);
}
.p-contact-form__input-wrap input[type=text],
.p-contact-form__input-wrap input[type=email],
.p-contact-form__input-wrap input[type=tel],
.p-contact-form__input-wrap input[type=date],
.p-contact-form__input-wrap input[type=time],
.p-contact-form__input-wrap select,
.p-contact-form__input-wrap textarea {
  color: #1a1311;
  font-size: 1.6rem !important;
  width: 100%;
  padding: 31px 12px 31px 40px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  background-color: #efefef;
  border: 1px solid #cbcccc;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1339px) {
  .p-contact-form__input-wrap input[type=text],
  .p-contact-form__input-wrap input[type=email],
  .p-contact-form__input-wrap input[type=tel],
  .p-contact-form__input-wrap input[type=date],
  .p-contact-form__input-wrap input[type=time],
  .p-contact-form__input-wrap select,
  .p-contact-form__input-wrap textarea {
    padding: 26px 12px 26px 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text],
  .p-contact-form__input-wrap input[type=email],
  .p-contact-form__input-wrap input[type=tel],
  .p-contact-form__input-wrap input[type=date],
  .p-contact-form__input-wrap input[type=time],
  .p-contact-form__input-wrap select,
  .p-contact-form__input-wrap textarea {
    padding: 18px 12px 18px 24px;
    border-radius: 2px;
  }
}
.p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=date]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=time]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
  color: #767676;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap input[type=date]::-moz-placeholder, .p-contact-form__input-wrap input[type=time]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
  color: #767676;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=date]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=time]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
  color: #767676;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=date]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=time]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
  color: #767676;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::placeholder,
.p-contact-form__input-wrap input[type=email]::placeholder,
.p-contact-form__input-wrap input[type=tel]::placeholder,
.p-contact-form__input-wrap input[type=date]::placeholder,
.p-contact-form__input-wrap input[type=time]::placeholder,
.p-contact-form__input-wrap select::placeholder,
.p-contact-form__input-wrap textarea::placeholder {
  color: #767676;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=date]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=time]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap input[type=date]::-moz-placeholder, .p-contact-form__input-wrap input[type=time]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=date]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=time]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=date]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=time]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::placeholder,
  .p-contact-form__input-wrap input[type=email]::placeholder,
  .p-contact-form__input-wrap input[type=tel]::placeholder,
  .p-contact-form__input-wrap input[type=date]::placeholder,
  .p-contact-form__input-wrap input[type=time]::placeholder,
  .p-contact-form__input-wrap select::placeholder,
  .p-contact-form__input-wrap textarea::placeholder {
    font-size: 1.4rem;
  }
}
.p-contact-form__input-wrap input[type=date],
.p-contact-form__input-wrap input[type=time] {
  position: relative;
}
.p-contact-form__input-wrap input[type=date]::-webkit-calendar-picker-indicator,
.p-contact-form__input-wrap input[type=time]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.p-contact-form__input-wrap input[type=date]::-moz-calendar-picker-indicator,
.p-contact-form__input-wrap input[type=time]::-moz-calendar-picker-indicator {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.p-contact-form__input-wrap textarea {
  resize: vertical;
  min-height: 34rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap textarea {
    min-height: 24rem;
  }
}
.p-contact-form__input-wrap input[type=radio],
.p-contact-form__input-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #E6E6E6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: -4.5px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin-right: 1rem;
}
.p-contact-form__input-wrap input[type=radio]:checked,
.p-contact-form__input-wrap input[type=checkbox]:checked {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  outline: none !important;
  outline-offset: none;
  border-radius: 50%;
}

.p-contact-form__input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.6rem;
  }
}

.p-contact-form__input-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.8%;
          flex: 0 1 47.8%;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.p-contact-form__zip-btn-wrap {
  max-width: 29.3rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: auto;
  margin-left: 3.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact-form__zip-btn-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
    width: 55%;
    max-width: 100%;
    margin-left: 0;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    min-width: 24rem;
  }
}
.p-contact-form__zip-btn-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 10px;
  background-image: url(../img/icon_long_arrow_right_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form__zip-btn-wrap::after {
    top: 46%;
    right: 20px;
    width: 38px;
    height: 10px;
  }
}

.p-contact-form__zip-btn {
  color: #fff;
  font-size: clamp(1.6rem, 0.9895833333vw, 1.9rem);
  font-weight: normal;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  background-color: #37445c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 6.3rem;
  padding-left: 4rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-form__zip-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    height: 5.6rem;
    padding-left: 2rem;
  }
}
.p-contact-form__zip-btn:hover {
  opacity: 0.85;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    gap: 1.2rem 1.6rem;
  }
}
.p-contact-form__radio-wrap label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

.p-contact-form__select-wrap {
  position: relative;
}
.p-contact-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 26px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #cbcccc;
  border-bottom: 1px solid #cbcccc;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 1;
}
.p-contact-form__select-wrap select {
  cursor: pointer;
}

.p-contact-form__box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #cbcccc;
  padding: 8rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__box {
    padding: 5.6rem 2.4rem;
  }
}

.p-contact-form__box-inner {
  max-width: 92rem;
  padding-left: 5.8rem;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__box-inner {
    padding-left: 0;
  }
}

.p-contact-form__box-title {
  font-size: clamp(1.7rem, 1.09375vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__box-title {
    font-size: clamp(1.5rem, 3.28125vw, 1.7rem);
    margin-bottom: 1.6rem;
  }
}

.p-contact-form__box-text {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  font-weight: normal;
  line-height: 1.77;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: clamp(3.2rem, 2.5vw, 4.8rem);
}
@media screen and (max-width: 767px) {
  .p-contact-form__box-text {
    font-size: clamp(1.2rem, 2.8125vw, 1.6rem);
    margin-bottom: 2em;
  }
}

.p-contact-form__agree {
  color: #1a1311;
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: clamp(1.2rem, 2.8125vw, 1.6rem);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-contact-form__agree input {
  margin-right: 1.2rem;
}
.p-contact-form__agree input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  margin: 0 1.2rem 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #eee;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), color-stop(40%, #ececec), to(#f3f3f3));
  background: linear-gradient(180deg, #e6e6e6 0%, #ececec 40%, #f3f3f3 100%);
  -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03), inset 0 8px 6px -2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03), inset 0 8px 6px -2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  transition: box-shadow 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
  vertical-align: -7px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree input[type=checkbox] {
    width: 22px;
    height: 22px;
    margin: 0 1rem 0 0;
  }
}
.p-contact-form__agree input[type=checkbox]:focus-visible {
  outline: 2px solid #37445c;
  outline-offset: 0px;
}
.p-contact-form__agree input[type=checkbox]:checked {
  background-color: #37445c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 5.5 4.5 9 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: 12px auto;
  -webkit-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -1px -1px 4px rgba(255, 255, 255, 0.15);
          box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -1px -1px 4px rgba(255, 255, 255, 0.15);
}
.p-contact-form__agree a {
  font-size: clamp(1.8rem, 1.09375vw, 2.1rem);
  font-weight: 600;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree a {
    font-size: clamp(1.2rem, 2.8125vw, 1.6rem);
  }
}

.c-btn.p-contact-form__btn {
  margin-inline: auto;
  margin-block: 0;
}
.c-btn.p-contact-form__btn .wpcf7-spinner {
  display: none;
}
.c-btn.p-contact-form__btn input[type=submit],
.c-btn.p-contact-form__btn input[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: inherit;
  font: inherit;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: inherit;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-btn.p-contact-form__btn input[type=submit]:disabled,
.c-btn.p-contact-form__btn input[type=button]:disabled {
  cursor: not-allowed;
}
.c-btn.p-contact-form__btn:has(:disabled) {
  opacity: 0.4;
  cursor: not-allowed;
}

/*------------------------------------------------------------------------------
  WordPress調整用
------------------------------------------------------------------------------*/
.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}
.p-contact-form .wpcf7-response-output:empty {
  display: none;
}

.p-contact-form__radio-wrap .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap .wpcf7-radio {
    gap: 1.2rem 1.6rem;
  }
}
.p-contact-form__radio-wrap .wpcf7-radio label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

/*------------------------------------------------------------------------------
  p-sub-mv
------------------------------------------------------------------------------*/
.p-sub-mv {
  width: 100%;
  position: relative;
}

.p-sub-mv__title {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.p-sub-mv__title-ja {
  font-size: clamp(3.2rem, 2.3958333333vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-ja {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 0.6rem;
  }
}

.p-sub-mv__title-en {
  font-size: clamp(1.4rem, 1.3020833333vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.075em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-en {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
}

.p-sub-mv__img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__img {
    height: 128.91vw;
  }
}

/*------------------------------------------------------------------------------
  p-concept
------------------------------------------------------------------------------*/
.p-concept {
  background-color: #11182b;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13.4rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding: 7.2rem 0 6.4rem;
  }
}

.p-concept__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-concept__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-concept__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51.5%;
          flex: 0 1 51.5%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-concept__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-concept__lead {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1023px) {
  .p-concept__lead {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__lead {
    margin-bottom: 1.6rem;
  }
}

.p-concept__lead-en {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-concept__lead-en {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__lead-en {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
}

.p-concept__lead-ja {
  font-size: clamp(3.2rem, 2.7083333333vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.52;
}
@media screen and (max-width: 767px) {
  .p-concept__lead-ja {
    font-size: clamp(2.6rem, 5.78125vw, 3.7rem);
    line-height: 1.24;
  }
}

.p-concept__text {
  font-size: clamp(1.45rem, 0.9375vw, 1.8rem);
  font-weight: normal;
  line-height: 2.33;
  letter-spacing: 0.085em;
}
@media screen and (max-width: 1023px) {
  .p-concept__text {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
@media screen and (max-width: 767px) {
  .p-concept__text {
    font-size: clamp(1.4rem, 3.90625vw, 2.5rem);
  }
}

.p-concept__graph {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42%;
          flex: 0 1 42%;
  margin-right: -2.4rem;
}
@media screen and (max-width: 1023px) {
  .p-concept__graph {
    margin-right: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__graph {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 46rem;
    margin: 15vw auto 0;
  }
}

/*------------------------------------------------------------------------------
  p-custom-feature-section
------------------------------------------------------------------------------*/
.p-custom-feature-section {
  margin-bottom: 17rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature-section {
    margin-bottom: 12.8rem;
  }
}

.p-custom-feature-section__bg {
  background-image: url(../img/custom-feature-bg.jpg);
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15.8rem 0 33rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature-section__bg {
    background-image: url(../img/custom-feature-bg_sp.jpg);
    padding: 24vw 0 9rem;
  }
}

/*------------------------------------------------------------------------------
  p-custom-feature
------------------------------------------------------------------------------*/
.p-custom-feature--price {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature--price {
    margin-top: 3.2rem;
  }
}

.p-custom-feature--design {
  margin: 30rem 0;
}
@media screen and (max-width: 767px) {
  .p-custom-feature--design {
    margin: 8rem 0;
  }
}

.p-custom-feature__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(140rem + (100% - 140rem) / 2);
  max-width: 90%;
}
@media screen and (max-width: 1280px) {
  .p-custom-feature__media {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1280px) {
  .p-custom-feature__media--odd {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__media--odd {
    padding-right: 2rem;
  }
}

.p-custom-feature__media--even {
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .p-custom-feature__media--even {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__media--even {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media--even {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media--even {
    margin-left: 0;
  }
  .p-custom-feature__media--even .p-custom-feature__media-content {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding-right: 2rem;
    margin-bottom: 4.8rem;
  }
}

.p-custom-feature__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59%;
          flex: 0 1 59%;
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .p-custom-feature__img.--price {
    height: 73.6vw;
  }
  .p-custom-feature__img.--price img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-custom-feature__media-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37%;
          flex: 0 1 37%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__media-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 44%;
            flex: 0 1 44%;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 4rem;
  }
  .p-custom-feature__media-content.--price {
    padding-top: 3rem;
    padding-bottom: 4rem;
    margin-top: -15.6vw;
    position: relative;
  }
  .p-custom-feature__media-content.--price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 100%;
    height: 100%;
    background-image: url(../img/custom-feature-bg2_sp.jpg);
    background-size: cover;
    background-position: center 0;
    background-repeat: no-repeat;
    z-index: -1;
  }
}

.p-custom-feature__media-title {
  position: absolute;
  font-size: clamp(14rem, 12.8645833333vw, 24.7rem);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-title {
    font-size: clamp(4rem, 11.71875vw, 7.5rem);
  }
}
.p-custom-feature__media-title.--price {
  top: -72px;
  left: 72px;
  color: #d5dee4;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 1280px) {
  .p-custom-feature__media-title.--price {
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-title.--price {
    position: relative;
    top: 0;
    left: 0;
  }
}
.p-custom-feature__media-title.--design {
  top: 12px;
  right: -6.7vw;
  color: #c1c1c1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1280px) {
  .p-custom-feature__media-title.--design {
    left: -58px;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-title.--design {
    position: relative;
    top: 0;
    left: 0;
  }
}
.p-custom-feature__media-title.--quality {
  top: -112px;
  left: -7.3vw;
  color: #e7dfcb;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-title.--quality {
    top: -71vw;
    left: auto;
    right: -10px;
  }
}

.p-custom-feature__media-lead {
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  color: #11182b;
  font-weight: 600;
  line-height: 1.56;
  white-space: nowrap;
  letter-spacing: 0.1em;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-lead {
    font-size: clamp(1.8rem, 5.75vw, 2.8rem);
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-lead {
    margin-bottom: 1.2rem;
  }
}
.p-custom-feature__media-lead.--price {
  margin-top: 16rem;
}
@media screen and (max-width: 1280px) {
  .p-custom-feature__media-lead.--price {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-lead.--price {
    margin-top: 1.2rem;
  }
}
.p-custom-feature__media-lead.--design {
  margin-top: 24rem;
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__media-lead.--design {
    margin-top: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-lead.--design {
    margin-top: 0.8rem;
  }
}
.p-custom-feature__media-lead.--quality {
  margin-top: 15rem;
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__media-lead.--quality {
    margin-top: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-lead.--quality {
    margin-top: 4rem;
  }
}

.p-custom-feature__media-text {
  font-size: clamp(1.45rem, 0.9375vw, 1.8rem);
  line-height: 2.33;
  letter-spacing: 0.085em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-custom-feature__media-text {
    font-size: clamp(1.4rem, 3.59375vw, 2.3rem);
    letter-spacing: 0.025em;
    line-height: 1.9;
  }
}

.p-custom-feature__three-features {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 30rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__three-features {
    margin-top: 3.2rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__three-features {
    position: relative;
    width: 102vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 0;
  }
}
.p-custom-feature__three-features::before {
  content: "";
  position: absolute;
  top: -10.104vw;
  top: -6vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 24.01vw;
  background-image: url(../img/custom-feature-bg2.jpg);
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__three-features::before {
    display: none;
  }
}
.p-custom-feature__three-features img {
  position: relative;
  z-index: 1;
}

.p-custom-feature__case .p-case-media-wrap {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__case .p-case-media-wrap {
    margin-top: 6.4rem;
  }
}

.p-custom-feature__point-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-column-gap: 5.6rem;
     -moz-column-gap: 5.6rem;
          column-gap: 5.6rem;
  margin: 10rem 0 15rem;
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__point-wrap {
    -webkit-column-gap: 3.2rem;
       -moz-column-gap: 3.2rem;
            column-gap: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__point-wrap {
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
    margin: 4rem 0 8.8rem;
  }
}

.p-custom-feature__point {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 16.15vw;
          flex: 0 1 16.15vw;
  height: 16.15vw;
  min-width: 15rem;
  min-height: 15rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5f889c;
  font-size: clamp(1.4rem, 1.40625vw, 2.7rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.07em;
  text-align: center;
  border: 1px solid #5f889c;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__point {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 28.25vw;
            flex: 0 1 28.25vw;
    height: 28.25vw;
    min-width: 28.75vw;
    min-height: 28.75vw;
    font-size: clamp(1rem, 0.5208333333vw, 1.2rem);
  }
}

.p-custom-feature__living {
  width: 100%;
  margin-bottom: 19rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__living {
    margin-bottom: 3.4rem;
  }
}

.p-custom-feature__text {
  position: absolute;
  top: 48px;
  right: 30px;
  color: #fff;
  text-align: right;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__text {
    top: 18px;
    right: 14px;
  }
}

.p-custom-feature__title {
  font-size: clamp(4rem, 2.9166666667vw, 5.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__title {
    font-size: clamp(2rem, 6.5vw, 2.6rem);
    margin-bottom: 2rem;
  }
}

.p-custom-feature__lead {
  font-size: clamp(1.6rem, 1.1458333333vw, 2.2rem);
  font-weight: 600;
  line-height: 1.81;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .p-custom-feature__lead {
    font-size: clamp(1rem, 2.375vw, 1.2rem);
  }
}

.p-custom-feature__living-bg {
  width: 100%;
}

.p-custom-feature__design-media-wrap {
  margin-bottom: 30rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__design-media-wrap {
    margin-bottom: 8.8rem;
  }
}

.p-custom-feature__design-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__design-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 0 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.p-custom-feature__design-media:not(:last-child) {
  margin-bottom: 24rem;
}
@media screen and (max-width: 767px) {
  .p-custom-feature__design-media:not(:last-child) {
    margin-bottom: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .p-custom-feature__design-media-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 2rem;
  }
}
.p-custom-feature__design-media-img.--kitchen {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 57.78%;
          flex: 0 1 57.78%;
}
.p-custom-feature__design-media-img.--closet {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 63.21%;
          flex: 0 1 63.21%;
}

.p-custom-feature__design-media-content {
  color: #11182b;
}
.p-custom-feature__design-media-content.--kitchen {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}
.p-custom-feature__design-media-content.--closet {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32%;
          flex: 0 1 32%;
}

.p-custom-feature__design-media-title {
  font-size: clamp(3.2rem, 2.9166666667vw, 5.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 7rem;
}
@media screen and (max-width: 1023px) {
  .p-custom-feature__design-media-title {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-feature__design-media-title {
    font-size: clamp(2rem, 3.515625vw, 2.25rem);
    margin-bottom: 1.6rem;
  }
}

.p-custom-feature__design-media-text {
  font-size: clamp(1.4rem, 1.1458333333vw, 2.2rem);
  font-weight: 600;
  line-height: 2.31;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-custom-feature__design-media-text {
    font-size: clamp(1.4rem, 3.59375vw, 2.3rem);
    line-height: 1.9;
    letter-spacing: 0.025em;
  }
}

/*------------------------------------------------------------------------------
  p-custom-performance
------------------------------------------------------------------------------*/
.p-custom-performance {
  margin-bottom: 19rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance {
    margin-bottom: 5.6rem;
  }
}

.p-custom-performance__content {
  background-color: #f1ede1;
  padding: 10.2rem 0 24.8rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__content {
    padding: 5.6rem 0 6rem;
    margin-top: 2.8rem;
  }
}

.p-custom-performance__item.--first {
  margin-bottom: 25rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__item.--first {
    margin-bottom: 9rem;
  }
}
.p-custom-performance__item.--second {
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__item.--second {
    margin-bottom: 6.4rem;
  }
}
.p-custom-performance__item.--second .c-title03__ja {
  letter-spacing: 0.05em;
}

.p-custom-performance__lead {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  font-weight: normal;
  line-height: 2.33;
  letter-spacing: 0.085em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__lead {
    font-size: clamp(1rem, 2.75vw, 1.5rem);
    margin-top: 1.6rem;
  }
}

.p-custom-performance__graph {
  max-width: 127.7rem;
  margin-inline: auto;
}
.p-custom-performance__graph.--first {
  padding-left: 8.4rem;
  margin-top: 9.6rem;
}
@media screen and (max-width: 1023px) {
  .p-custom-performance__graph.--first {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-performance__graph.--first {
    margin-top: 3.2rem;
  }
}
.p-custom-performance__graph.--second {
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__graph.--second {
    margin-top: 4.8rem;
  }
}

.p-custom-performance__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 13rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    row-gap: 3.6rem;
    margin-top: 5.2rem;
  }
}

.p-custom-performance__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 27.71%;
          flex: 0 1 27.71%;
}
.p-custom-performance__card.--orange .p-custom-performance__card-lead {
  background-color: #f29700;
}
.p-custom-performance__card.--orange .p-custom-performance__card-title {
  color: #f29700;
}
.p-custom-performance__card.--red .p-custom-performance__card-lead {
  background-color: #a10008;
}
.p-custom-performance__card.--red .p-custom-performance__card-title {
  color: #a10008;
}
.p-custom-performance__card.--brown .p-custom-performance__card-lead {
  background-color: #65421f;
}
.p-custom-performance__card.--brown .p-custom-performance__card-title {
  color: #65421f;
}

.p-custom-performance__card-img {
  width: 100%;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__card-img {
    margin-bottom: 1rem;
  }
}
.p-custom-performance__card-img img {
  aspect-ratio: 388/271;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__card-img img {
    aspect-ratio: 291/203;
  }
}

.p-custom-performance__card-lead {
  color: #fff;
  font-size: clamp(1.6rem, 1.25vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__card-lead {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    padding: 0.8rem 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.p-custom-performance__card-title {
  font-size: clamp(2rem, 1.875vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__card-title {
    font-size: clamp(2rem, 6.75vw, 3rem);
    margin-bottom: 0.8rem;
  }
}

.p-custom-performance__card-text {
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  line-height: 1.66;
  letter-spacing: 0.085em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__card-text {
    font-size: clamp(1.2rem, 3.375vw, 1.6rem);
  }
}

.p-custom-performance__item-box {
  background-color: #f8f6ef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.8rem 8rem 14rem;
}
@media screen and (max-width: 1023px) {
  .p-custom-performance__item-box {
    padding: 4.8rem 4rem 14rem;
  }
}
@media screen and (max-width: 767px) {
  .p-custom-performance__item-box {
    background-color: transparent;
    padding: 0;
  }
}

.p-custom-performance__merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 4.8rem;
  margin: 4rem 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__merit-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.2rem;
    margin: 2.6rem 0 0.6rem;
  }
}

.p-custom-performance__merit {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.73%;
          flex: 0 1 47.73%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.4rem 2rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__merit {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 2.4rem 2rem 2rem;
  }
}

.p-custom-performance__merit-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 17.4rem;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__merit-icon {
    height: auto;
    margin-bottom: 2rem;
  }
  .p-custom-performance__merit:nth-child(1) .p-custom-performance__merit-icon img {
    max-width: 80px;
  }
  .p-custom-performance__merit:nth-child(2) .p-custom-performance__merit-icon img {
    max-width: 131px;
  }
  .p-custom-performance__merit:nth-child(3) .p-custom-performance__merit-icon img {
    max-width: 119px;
  }
  .p-custom-performance__merit:nth-child(4) .p-custom-performance__merit-icon img {
    max-width: 77px;
  }
}
.p-custom-performance__merit-icon img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.p-custom-performance__merit-title {
  font-size: clamp(2.4rem, 1.875vw, 3.6rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__merit-title {
    font-size: clamp(1.8rem, 5.25vw, 2.4rem);
    margin-bottom: 1.2rem;
  }
}

.p-custom-performance__merit-text {
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  line-height: 1.66;
  letter-spacing: 0.085em;
  text-align: justify;
  max-width: 44.2rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__merit-text {
    font-size: clamp(1.4rem, 3.59375vw, 2.3rem);
    line-height: 1.9;
    letter-spacing: 0.025em;
    max-width: 65vw;
    margin-inline: auto;
  }
}

.p-custom-performance__merit-notes {
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  line-height: 1.66;
  letter-spacing: 0.085em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__merit-notes {
    font-size: 1rem;
  }
}

.p-custom-performance__option {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__option {
    margin-top: 8rem;
  }
}

.p-custom-performance__option-title {
  text-align: center;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__option-title {
    margin-bottom: 2.4rem;
  }
}

.p-custom-performance__option-title-en {
  font-size: clamp(3.6em, 2.4479166667vw, 4.7rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__option-title-en {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    margin-bottom: 0.4rem;
  }
}

.p-custom-performance__option-title-ja {
  font-size: clamp(1.8rem, 1.3541666667vw, 2.6rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__option-title-ja {
    font-size: clamp(1rem, 0.001552795vw, 1.4rem);
  }
}

.p-custom-performance__option-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 96.2rem;
  -webkit-column-gap: 4.2rem;
     -moz-column-gap: 4.2rem;
          column-gap: 4.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__option-list {
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
  }
}
.p-custom-performance__option-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 15.21vw;
          flex: 0 1 15.21vw;
  height: 15.21vw;
  min-width: 17rem;
  min-height: 17rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #422a10;
  font-size: clamp(1.5rem, 1.3020833333vw, 2.7rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  border: 1px solid #422a10;
}
@media screen and (max-width: 767px) {
  .p-custom-performance__option-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 28vw;
            flex: 0 1 28vw;
    height: 28vw;
    min-width: 28vw;
    min-height: 28vw;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }
}

/*------------------------------------------------------------------------------
  p-custom-faq
------------------------------------------------------------------------------*/
.p-custom-faq {
  margin-bottom: 28rem;
}
@media screen and (max-width: 767px) {
  .p-custom-faq {
    margin-bottom: 12rem;
  }
}
.p-custom-faq .p-faq {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-custom-faq .p-faq {
    margin-top: 2.8rem;
  }
}

.p-custom-faq__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 9.4rem;
     -moz-column-gap: 9.4rem;
          column-gap: 9.4rem;
  margin-top: clamp(10rem, 8.75vw, 16.8rem);
}
@media screen and (max-width: 767px) {
  .p-custom-faq__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.6rem;
    margin-top: clamp(4rem, 16vw, 8rem);
  }
  .p-custom-faq__btn-wrap .c-btn {
    margin-inline: auto;
  }
}

/*------------------------------------------------------------------------------
  p-case-media
------------------------------------------------------------------------------*/
.p-case-media-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25rem;
}
@media screen and (max-width: 1023px) {
  .p-case-media-wrap {
    row-gap: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case-media-wrap {
    row-gap: 7rem;
  }
}

.p-case-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-case-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-case-media__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32.64%;
          flex: 0 1 32.64%;
}
@media screen and (max-width: 1023px) {
  .p-case-media__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}
.p-case-media--rental .p-case-media__content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media screen and (max-width: 767px) {
  .p-case-media__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-case-media__title {
  font-size: clamp(5rem, 3.3854166667vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-case-media__title {
    font-size: clamp(2rem, 8.4375vw, 5.4rem);
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-right: 5.6vw;
    margin-bottom: 0;
  }
}

.p-case-media__label {
  color: #fff;
  font-size: clamp(2.4rem, 1.5625vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #8697a2;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-case-media__label {
    font-size: clamp(1.4rem, 3.984375vw, 2.5rem);
    padding: 0.7rem 11.72vw;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
.p-case-media--rental .p-case-media__label {
  font-size: clamp(1.8rem, 1.1979166667vw, 2.3rem);
  padding: 1.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-case-media--rental .p-case-media__label {
    font-size: clamp(1.4rem, 3.90625vw, 2.5rem);
    padding: 0.7rem 5.2vw;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.p-case-media__info {
  font-size: clamp(1.6rem, 0.9895833333vw, 1.9rem);
  line-height: 1.58;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-case-media__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: clamp(1.4rem, 3.90625vw, 2.5rem);
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    line-height: 1.44;
    margin-top: 1.4rem;
  }
}
.p-case-media__info li.--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-case-media__info li.--flex span:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-case-media__info-price {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-case-media__info-price {
    font-size: clamp(1.3rem, 2.96875vw, 1.9rem);
  }
}
.p-case-media__info-price .--number {
  font-size: clamp(2.4rem, 2.1875vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-case-media__info-price .--number {
    font-size: clamp(2.4rem, 6.5625vw, 4.2rem);
    line-height: 1.3;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
}
.p-case-media__info-price .--unit {
  font-size: clamp(1.6rem, 1.25vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-case-media__info-price .--unit {
    font-size: clamp(1.5rem, 3.75vw, 2.4rem);
  }
}
.p-case-media__info-price.--notes {
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-case-media__info-price.--notes {
    margin-bottom: 0.6rem;
  }
}
.p-case-media__info-price.--notes .--number {
  position: relative;
}
.p-case-media__info-price.--notes .--number::after {
  content: "※付帯工事は別途";
  position: absolute;
  bottom: -15px;
  left: 0;
  color: #1a1311;
  font-size: clamp(1.2rem, 0.9895833333vw, 1.9rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-case-media__info-price.--notes .--number::after {
    display: none;
  }
}
.p-case-media__info-price .--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-case-media__info-price .--sp {
    display: inline-block;
  }
}

.p-case-media__img {
  width: 100%;
  margin-top: 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-case-media__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    width: 64.7vw;
    margin-top: 6.9vw;
    margin-inline: auto;
  }
}

.p-case-media__drawing-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 63.21%;
          flex: 0 1 63.21%;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-case-media__drawing-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-media__drawing-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-top: 2.8rem;
  }
}

.p-case-media__drawing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-case-media__drawing {
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case-media__drawing {
    padding: 1rem 2rem;
  }
}
.p-case-media__drawing img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-case-media__drawing img:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .p-case-media__drawing img {
    width: 100% !important;
    height: auto !important;
    max-width: 50rem;
  }
}
.p-case-media--rental .p-case-media__drawing {
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-case-media--rental .p-case-media__drawing {
    padding: 2rem;
  }
}

.p-case-media__desc {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-top: clamp(6.4rem, 5.4166666667vw, 10.4rem);
}
@media screen and (max-width: 767px) {
  .p-case-media__desc {
    margin-top: clamp(2rem, 6.875vw, 4.4rem);
  }
}

.p-case-media__desc-text {
  font-size: clamp(1.4rem, 1.09375vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.71;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case-media__desc-text {
    font-size: clamp(1.2rem, 3.59375vw, 1.4rem);
    font-weight: normal;
    line-height: 1.86;
    letter-spacing: 0.085em;
    text-align: left;
  }
}

.p-case-media__desc-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: clamp(88rem, 58.1770833333vw, 111.7rem);
  margin-top: clamp(3.2rem, 3.3333333333vw, 6.4rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-case-media__desc-img-wrap {
    max-width: 100%;
    margin-top: clamp(2rem, 6.875vw, 4.4rem);
  }
}

.p-case-media__desc-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.73%;
          flex: 0 1 46.73%;
}

/*------------------------------------------------------------------------------
  p-company-greeting
------------------------------------------------------------------------------*/
.p-company-greeting {
  margin: clamp(10.4rem, 8.3333333333vw, 16rem) 0 clamp(12.8rem, 10.4166666667vw, 20rem);
}
@media screen and (max-width: 767px) {
  .p-company-greeting {
    margin: clamp(2.4rem, 6.25vw, 4rem) 0 clamp(8.8rem, 21.25vw, 13.6rem);
  }
}

.p-company-greeting__lead {
  font-size: clamp(3rem, 2.4479166667vw, 4.7rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.14em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 5.55vw;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__lead {
    font-size: clamp(2.4rem, 5.78125vw, 3.7rem);
    text-align: center;
    margin-bottom: 2.4rem;
  }
}

.p-company-greeting__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 122.6rem;
  gap: 6.93vw;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-company-greeting__body {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-greeting__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}

.p-company-greeting__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__content {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
}

.p-company-greeting__texts {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__texts {
    margin-bottom: 2rem;
  }
}
.p-company-greeting__texts p {
  font-size: clamp(1.7rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  line-height: 2.33;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1339px) {
  .p-company-greeting__texts p {
    font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  }
}
@media screen and (max-width: 767px) {
  .p-company-greeting__texts p {
    font-size: clamp(1.4rem, 3.90625vw, 1.6rem);
    line-height: 2;
  }
}
.p-company-greeting__texts p:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (max-width: 899px) {
  .p-company-greeting__texts p:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-company-greeting__texts p:not(:last-child) {
    margin-bottom: 0;
  }
}

.p-company-greeting__sign {
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: right;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__sign {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    line-height: 1.5;
    margin-left: auto;
    margin-right: 0;
  }
}
.p-company-greeting__sign .--position {
  font-size: 1.6rem;
}
@media screen and (max-width: 1339px) {
  .p-company-greeting__sign .--position {
    font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .p-company-greeting__sign .--position {
    font-size: clamp(1.2rem, 3.28125vw, 1.5rem);
  }
}
.p-company-greeting__sign .--name {
  font-size: 2.7rem;
  margin-left: 0.5em;
}
@media screen and (max-width: 1339px) {
  .p-company-greeting__sign .--name {
    font-size: clamp(2.2em, 1.40625vw, 2.7rem);
  }
}
@media screen and (max-width: 767px) {
  .p-company-greeting__sign .--name {
    font-size: clamp(1.6rem, 5.625vw, 2rem);
  }
}

.p-company-greeting__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 36%;
          flex: 0 1 36%;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__photo {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-company-greeting__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/*------------------------------------------------------------------------------
  p-company-profile
------------------------------------------------------------------------------*/
.p-company-profile {
  background-image: url(../img/company-profile-bg.jpg);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: clamp(14.4rem, 9.4270833333vw, 18.1rem) 0 clamp(16.8rem, 11.8229166667vw, 22.7rem);
  position: relative;
}
@media screen and (max-width: 120rem) {
  .p-company-profile {
    padding: clamp(11.2rem, 9.4270833333vw, 18.1rem) 0 clamp(12.8rem, 11.8229166667vw, 22.7rem);
    background-position: 20% center;
  }
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    background-image: url(../img/company-profile-bg_sp.jpg);
    padding: clamp(9.6rem, 36.71875vw, 23.5rem) 0 clamp(32rem, 99.21875vw, 63.5rem);
    background-position: center bottom;
  }
}

.p-company-profile__title {
  position: absolute;
  top: 3.6rem;
  left: 3.6rem;
  color: #fff;
  font-size: clamp(8.8rem, 7.34375vw, 14.1rem);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.66;
}
@media screen and (max-width: 899px) {
  .p-company-profile__title {
    top: 1.6rem;
    left: 1.6rem;
    font-size: clamp(5rem, 8vw, 7.2rem);
    line-height: 0.95;
  }
}
@media screen and (max-width: 767px) {
  .p-company-profile__title {
    top: 2.4rem;
    font-size: clamp(4rem, 15.46875vw, 8rem);
    line-height: 0.89;
  }
}
@media screen and (max-width: 520px) {
  .p-company-profile__title {
    font-size: clamp(4rem, 11.6666666667vw, 5.6rem);
  }
}

.p-company-profile__content {
  width: 46.07vw;
  max-width: 63.5rem;
  min-width: 50rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-company-profile__content {
    width: 100%;
    max-width: 48rem;
    min-width: 0;
    margin-inline: auto;
  }
}

.p-company-profile__table {
  width: 100%;
}

.p-company-profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__row {
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
  }
}
.p-company-profile__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28.89%;
          flex: 0 1 28.89%;
  color: #fff;
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.2;
  background-color: #37445c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.4rem 1.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-block: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__row dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33.33%;
            flex: 0 1 33.33%;
    font-size: clamp(1.2rem, 3.28125vw, 1.4rem);
    padding: 1.4rem 1.2rem;
  }
}
.p-company-profile__row dt span {
  display: block;
  width: 100%;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 767px) {
  .p-company-profile__row dt span {
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
.p-company-profile__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.085em;
  line-height: 1.68;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #1a1311;
  padding: 2.4rem 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__row dd {
    font-size: clamp(1.2rem, 3.28125vw, 1.4rem);
    line-height: 1.7;
    padding: clamp(1.6rem, 3.75vw, 2.4rem) 0.6rem;
  }
}
.p-company-profile__row:first-child dd {
  border-top: 1px solid #1a1311;
}

@media screen and (max-width: 767px) {
  .p-company-profile__row-list li:not(:last-child) {
    margin-bottom: 1em;
  }
}
.p-company-profile__row-list li .--sm {
  font-size: 1.1rem;
  margin-left: 0.8rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-company-profile__row-list li .--sm {
    font-size: 1rem;
    margin-left: 0;
  }
}

/*------------------------------------------------------------------------------
  p-company-history
------------------------------------------------------------------------------*/
.p-company-history {
  margin-top: clamp(12rem, 10.4166666667vw, 20rem);
}
@media screen and (max-width: 767px) {
  .p-company-history {
    margin-top: clamp(8rem, 21.25vw, 13.6rem);
  }
  .p-company-history .c-inner {
    padding: 0 1rem;
  }
}

.p-company-history__list {
  max-width: 108rem;
  margin: clamp(12rem, 0.8333333333vw, 16rem) auto 0;
}
@media screen and (max-width: 767px) {
  .p-company-history__list {
    margin-top: clamp(3rem, 8.75vw, 5.6rem);
  }
}

.p-company-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 4.57vw;
     -moz-column-gap: 4.57vw;
          column-gap: 4.57vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company-history__item {
    -webkit-column-gap: 3.125vw;
       -moz-column-gap: 3.125vw;
            column-gap: 3.125vw;
  }
}
.p-company-history__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(17rem + 4.57vw + 11.5px);
  width: 2px;
  height: calc(4.3rem - 4px);
  background-color: #d7d7d8;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-company-history__item::before {
    left: calc(62px + 3.125vw + 7px);
    height: calc(2.7rem - 3px);
  }
}
.p-company-history__item::after {
  content: "";
  position: absolute;
  top: calc(4.3rem + 26px + 4px);
  bottom: 0;
  left: calc(17rem + 4.57vw + 11.5px);
  width: 2px;
  background-color: #d7d7d8;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-company-history__item::after {
    top: calc(2.7rem + 16px + 3px);
    left: calc(62px + 3.125vw + 7px);
  }
}
.p-company-history__item:first-child::before {
  display: none;
}
.p-company-history__item:last-child::after {
  display: none;
}

.p-company-history__year {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17rem;
          flex: 0 0 17rem;
  color: #d7d7d8;
  font-size: 6.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.055em;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-company-history__year {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 62px;
            flex: 0 0 62px;
    font-size: 2.4rem;
  }
}

.p-company-history__dot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #37445c;
  margin-top: 4.3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-company-history__dot {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2.7rem;
  }
}

.p-company-history__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4rem 1.6rem 4rem 0;
  border-bottom: 1px solid #1a1311;
}
@media screen and (max-width: 767px) {
  .p-company-history__content {
    padding: 2.4rem 0;
  }
}
.p-company-history__item:last-child .p-company-history__content {
  border-bottom: none;
}

.p-company-history__event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6em;
}
@media screen and (max-width: 767px) {
  .p-company-history__event {
    gap: 1rem;
  }
}
.p-company-history__event p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.33;
  letter-spacing: 0.025em;
  margin-top: -0.2rem;
}
@media screen and (max-width: 767px) {
  .p-company-history__event p {
    font-size: clamp(1.1rem, 3.125vw, 1.4rem);
    line-height: 2.1;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin-top: -0.1rem;
  }
}

.p-company-history__badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 1.6rem;
  border-radius: 50px;
  background-color: #37445c;
  -ms-flex-item-align: start;
      align-self: flex-start;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-company-history__badge {
    font-size: clamp(1rem, 2.8125vw, 1.4rem);
    padding: 0.5rem 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-common-contact
------------------------------------------------------------------------------*/
.p-common-contact {
  background-color: #092330;
  padding: 12rem 0 16.4rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact {
    padding: 7.6rem 0 11rem;
  }
}
.p-common-contact .c-title02 {
  color: #fff;
}

.p-common-contact__box {
  border: 1px solid #fff;
  margin-inline: auto;
  max-width: 116rem;
  width: 100%;
  display: block;
}

.p-common-contact__box--tel {
  margin: 9rem auto 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__box--tel {
    margin: 3.2rem 0 1.6rem;
  }
}

.p-common-contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__content {
    display: block;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-common-contact__content--tel {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}

.p-common-contact__content--mail {
  gap: 0 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__content--mail {
    gap: 0;
    padding-top: 5rem;
    padding-bottom: 4.4rem;
  }
}

.p-common-contact__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 36.72%;
          flex: 0 1 36.72%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  border-right: 1px solid #fff;
  padding-right: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-common-contact__logo {
    max-width: clamp(19rem, 45vw, 28.8rem);
    margin: 0 auto 5.2rem;
    padding-right: 0;
    border-right: none;
  }
}
.p-common-contact__logo img {
  display: block;
}

.p-common-contact__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4rem 0 4rem 7.2rem;
}
@media screen and (max-width: 1280px) {
  .p-common-contact__info {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-contact__info {
    padding: 0;
  }
}

.p-common-contact__info-title {
  font-size: clamp(1.8rem, 1.458vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__info-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
}

.p-common-contact__tel {
  font-size: clamp(3rem, 2.135vw, 4.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .p-common-contact__tel {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-contact__tel {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
}
.p-common-contact__tel a {
  color: #fff;
  font-size: clamp(4.8rem, 3.64vw, 7rem);
}
@media screen and (max-width: 1023px) {
  .p-common-contact__tel a {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-contact__tel a {
    font-size: clamp(2.8rem, 9vw, 5rem);
  }
}
.p-common-contact__tel a:hover {
  opacity: 0.75;
}

.p-common-contact__info-texts {
  font-size: clamp(1.5rem, 0.833vw, 1.6rem);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-common-contact__info-texts {
    font-size: 1.1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
  }
  .p-common-contact__info-texts li {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    display: inline-block;
  }
}

.p-common-contact__info-mail {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__info-mail {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding-left: 1.8rem;
  }
}
.p-common-contact__info-mail::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 10px;
  background-image: url(../img/icon_mail2_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-common-contact__info-mail::before {
    top: 5px;
    width: 11px;
    height: 9px;
  }
}

.p-common-contact__box--mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-common-contact__box--mail:hover {
  opacity: 0.75;
}

.p-common-contact__mail-icon {
  width: clamp(12rem, 8.542vw, 16.4rem);
}
@media screen and (max-width: 1023px) {
  .p-common-contact__mail-icon {
    width: 10.2rem;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .p-common-contact__mail-icon {
    margin: 0 auto 2rem;
  }
}

.p-common-contact__mail-title {
  color: #fff;
  font-size: clamp(2.8rem, 1.77vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .p-common-contact__mail-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-contact__mail-title {
    font-size: 1.75rem;
  }
}

/*------------------------------------------------------------------------------
  p-privacy-policy
------------------------------------------------------------------------------*/
.p-privacy-policy {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  line-height: 2.33;
  margin-top: 2.5vw;
}
@media screen and (max-width: 1023px) {
  .p-privacy-policy {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    line-height: 1.86;
    margin-top: 0;
  }
}
.p-privacy-policy p {
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy p {
    text-align: left;
    letter-spacing: 0.12em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.p-privacy-policy__content {
  max-width: 107.8rem;
  width: 100%;
  margin-top: clamp(4rem, 3.125vw, 6rem);
  margin-inline: auto;
}

.p-privacy-policy__block:not(:last-child) {
  margin-bottom: clamp(8rem, 7.0833333333vw, 13.6rem);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__block:not(:last-child) {
    margin-bottom: clamp(5.6rem, 16.25vw, 10.4rem);
  }
}
.p-privacy-policy__block a {
  color: #a10008;
  text-decoration: underline;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.p-privacy-policy__block a:hover {
  opacity: 0.75;
}

.p-privacy-policy__block-title {
  color: #fff;
  letter-spacing: 0.085em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  background-color: #37445c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem 1.2rem;
  margin-bottom: clamp(3.2rem, 3.75vw, 7rem);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__block-title {
    line-height: 1.43;
    letter-spacing: 0.12em;
    padding: 1.6rem 1.2rem;
    margin-bottom: clamp(2rem, 5vw, 3.2rem);
  }
}

.p-privacy-policy__list {
  margin-top: clamp(4rem, 3.3333333333vw, 6.4rem);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list {
    margin-top: clamp(1.6rem, 6.25vw, 4rem);
  }
}
.p-privacy-policy__list li {
  font-weight: 500;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 0.5px solid #1a1311;
  padding: 2.4rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list li {
    letter-spacing: 0.12em;
    padding: clamp(1.6rem, 7.5vw, 2.4rem) 0.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-news-list
------------------------------------------------------------------------------*/
.p-news-list {
  max-width: 103rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    max-width: 100%;
  }
  .p-news-list.u-mb-8 {
    margin-bottom: 4rem !important;
  }
}

.p-news-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #1a1311;
  gap: 0 4rem;
  padding: 3.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-news-list__link {
    gap: 0 1.2rem;
    padding: 2.4rem 0;
  }
}
.p-news-list__link:hover {
  opacity: 0.75;
}

.p-news-list__time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14.2rem;
          flex: 0 0 14.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5rem 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__time {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.8rem;
            flex: 0 0 8.8rem;
    padding: 0.4rem 1.2rem;
  }
}

.p-news-list__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1.6rem, 0.86vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: 1.1rem;
  }
}
.p-news-list__link:hover .p-news-list__title {
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  p-access
------------------------------------------------------------------------------*/
.p-access {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 23rem 0 15.4rem;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding: 8.8rem 0;
  }
}

.p-access__map {
  width: 100%;
  margin: 6.4rem 0 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    margin: 3.2rem 0;
  }
}
.p-access__map iframe {
  aspect-ratio: 1920/880;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-access__map iframe {
    aspect-ratio: 4/3;
  }
}

.p-access__text {
  font-size: clamp(1.8rem, 1.51vw, 2.9rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-access__text {
    font-size: 1.4rem;
    line-height: 1.42;
  }
}

/*------------------------------------------------------------------------------
  p-common-nav
------------------------------------------------------------------------------*/
.p-common-nav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../img/common-nav-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 18.2rem 5rem;
}
@media screen and (max-width: 1023px) {
  .p-common-nav {
    padding: 14rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-nav {
    padding: 5.4rem 2rem;
  }
}

.p-common-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-common-nav__list {
    display: block;
  }
}

.p-common-nav__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3333333333%;
          flex: 0 1 33.3333333333%;
}

.p-common-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 36rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  padding: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-common-nav__link {
    min-height: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-nav__link {
    min-height: 21.4rem;
  }
}
.p-common-nav__link:hover {
  opacity: 0.85;
}

.p-common-nav__item-title {
  color: #fff;
  z-index: 1;
  text-align: center;
}

.p-common-nav__item-title-ja {
  font-size: clamp(2.2rem, 1.46vw, 2.8rem);
  font-weight: 500;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-common-nav__item-title-ja {
    font-size: 1.8rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-nav__item-title-ja {
    font-size: 1.65rem;
  }
}
.p-common-nav__item-title-ja::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  width: 13.6rem;
  height: 1px;
}

.p-common-nav__item-title-en {
  font-size: clamp(1.7rem, 0.99vw, 1.9rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1023px) {
  .p-common-nav__item-title-en {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-common-nav__item-title-en {
    font-size: 1.1rem;
  }
}

.p-common-nav__item-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  z-index: 0;
  overflow: hidden;
}
.p-common-nav__item-bg img {
  width: 101%;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-common-nav__link:hover .p-common-nav__item-bg img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

/*------------------------------------------------------------------------------
  p-faq
------------------------------------------------------------------------------*/
.p-faq__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 0.1px solid #1a1311;
}

.p-faq__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  background-color: #fff;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8rem 3.6rem 8rem 6rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-faq__item-title {
    -webkit-column-gap: 3.2rem;
       -moz-column-gap: 3.2rem;
            column-gap: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__item-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    padding: 4rem 0rem 4rem 1.2rem;
  }
}
.p-faq__item-title h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1.8rem, 1.6666666667vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item-title h3 {
    font-size: clamp(1.3rem, 3.75vw, 1.5rem);
    margin-top: 0;
  }
}

.p-faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.64vw;
          flex: 0 0 3.64vw;
  height: 3.6vw;
  min-width: 5rem;
  min-height: 5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-faq__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.5vw;
            flex: 0 0 4.5vw;
    height: 4.5vw;
    min-width: 6.25vw;
    min-height: 6.25vw;
  }
}
.p-faq__icon.--q {
  background-image: url(../img/icon_q.svg);
}
.p-faq__icon.--a {
  background-image: url(../img/icon_a.svg);
}

.p-faq__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45px;
          flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: block;
  background-color: #11182b;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28px;
            flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
}
.p-faq__button::before, .p-faq__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-faq__button::before {
  width: 13px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .p-faq__button::before {
    width: 9px;
    height: 1px;
  }
}
.p-faq__button::after {
  width: 2px;
  height: 13px;
}
@media screen and (max-width: 767px) {
  .p-faq__button::after {
    width: 1px;
    height: 9px;
  }
}
.p-faq__item-title.open .p-faq__button::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-faq__item-answer {
  background-color: #f3f3f2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 0.1px solid #1a1311;
  padding: 8rem 12rem 8rem 6rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__item-answer {
    padding: 4rem 2.4rem 4rem 1.4rem;
  }
}
.p-faq__item-answer p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1.6rem, 1.25vw, 2.4rem);
  line-height: 1.8;
  text-align: justify;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item-answer p {
    font-size: clamp(1.1rem, 3.25vw, 1.5rem);
    line-height: 1.66;
    margin-top: 0;
  }
}

.p-faq__item-answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item-answer-inner {
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-single
------------------------------------------------------------------------------*/
.p-single {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    margin-top: 0;
  }
}

.p-single__content {
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-bottom: clamp(4.8rem, 18.75vw, 12rem);
  }
}

/*------------------------------------------------------------------------------
  p-event
------------------------------------------------------------------------------*/
.p-event-wrap {
  margin-bottom: clamp(10rem, 7.4479166667vw, 14.3rem);
}
@media screen and (max-width: 767px) {
  .p-event-wrap {
    margin-bottom: clamp(6.4rem, 13.75vw, 8.8rem);
  }
}

.p-event:not(:last-child) {
  margin-bottom: clamp(18rem, 13.28125vw, 25.5rem);
}
@media screen and (max-width: 767px) {
  .p-event:not(:last-child) {
    margin-bottom: clamp(10rem, 3.28125vw, 21rem);
  }
}

/*------------------------------------------------------------------------------
  p-event-cta
------------------------------------------------------------------------------*/
.p-event-cta {
  background-image: url(../img/event-cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18rem 4rem 17.2rem;
}
@media screen and (max-width: 1023px) {
  .p-event-cta {
    background-image: url(../img/event-cta-bg_sp.jpg);
    padding: clamp(5rem, 10.3125vw, 6.6rem) 4rem;
    height: 101%;
  }
}

.p-event-cta__box {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 77rem;
  width: 100%;
  text-align: center;
  padding: 11.2rem 2rem 10.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-event-cta__box {
    max-width: 56rem;
    padding: 8rem 2rem 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-event-cta__box {
    padding: clamp(4rem, 8.59375vw, 5.5rem) 2rem clamp(4.4rem, 9.375vw, 6rem);
  }
}

.p-event-cta__title {
  font-size: clamp(2.6rem, 1.8229166667vw, 3.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.095em;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-event-cta__title {
    font-size: clamp(2.2rem, 5.46875vw, 3.5rem);
    margin-bottom: 1.6rem;
  }
}

.p-event-cta__lead {
  font-size: clamp(1.7rem, 1.09375vw, 2.1rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.095em;
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-event-cta__lead {
    font-size: clamp(1.4rem, 3.28125vw, 2.1rem);
    margin-bottom: 3.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-post-header
------------------------------------------------------------------------------*/
.p-post-header {
  border-bottom: 0.5px solid #1a1311;
  padding-bottom: 4.8rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-post-header {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
}

.p-post-header__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1.6rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-post-header__category-wrap {
    gap: 0 1.2rem;
    margin-bottom: clamp(3.2rem, 7.5vw, 4.8rem);
  }
}

.p-post-header__category {
  font-size: clamp(1.2rem, 0.9895833333vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 48px;
  padding: 0.8rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-post-header__category {
    font-size: clamp(1.1rem, 2.96875vw, 1.9rem);
    padding: 0.7rem 2.4rem;
  }
}

.p-post-header__date {
  font-size: clamp(1.8rem, 1.1979166667vw, 2.3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.095em;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-post-header__date {
    font-size: clamp(1.4rem, 3.90625vw, 2.5rem);
    margin-bottom: 2rem;
  }
}

.p-post-header__title {
  font-size: clamp(3rem, 2.0833333333vw, 4rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.095em;
}
@media screen and (max-width: 767px) {
  .p-post-header__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 0.05em;
    line-height: 1.375;
  }
}

.p-post-header__info-list {
  margin-top: 1.8rem;
}

.p-post-header__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1.6rem, 1.3020833333vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.095em;
}
@media screen and (max-width: 767px) {
  .p-post-header__info-item {
    font-size: clamp(1.4rem, 3.90625vw, 2.5rem);
    font-weight: normal;
  }
}
.p-post-header__info-item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-post-header__info-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*------------------------------------------------------------------------------
  p-rental-support
------------------------------------------------------------------------------*/
.p-rental-support {
  margin-top: clamp(16rem, 10.2083333333vw, 19.6rem);
  margin-bottom: 34.323vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-rental-support {
    background: -webkit-gradient(linear, left top, right top, color-stop(38%, rgba(55, 63, 64, 0.43)), color-stop(98%, rgba(5, 12, 22, 0.43))), #303638;
    background: linear-gradient(90deg, rgba(55, 63, 64, 0.43) 38%, rgba(5, 12, 22, 0.43) 98%), #303638;
    padding-top: clamp(4rem, 10.15625vw, 6.5rem);
    margin-top: 0;
    margin-bottom: 0;
  }
}

.p-rental-support__inner {
  width: clamp(300px, 100% - 21.2rem, 100%);
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-rental-support__inner {
    width: clamp(300px, 90%, 100%);
  }
}
@media screen and (max-width: 767px) {
  .p-rental-support__inner {
    width: 100%;
  }
}
.p-rental-support__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 11rem);
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(38%, rgba(55, 63, 64, 0.43)), color-stop(98%, rgba(5, 12, 22, 0.43))), #303638;
  background: linear-gradient(90deg, rgba(55, 63, 64, 0.43) 38%, rgba(5, 12, 22, 0.43) 98%), #303638;
  border-radius: 10px 0 0 10px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rental-support__inner::before {
    display: none;
  }
}

.p-rental-support__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-rental-support__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-rental-support__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.25%;
          flex: 0 1 46.25%;
}
@media screen and (max-width: 767px) {
  .p-rental-support__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 87.5%;
  }
}

.p-rental-support__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 39%;
          flex: 0 1 39%;
  margin-top: 6vw;
  margin-right: 7.2vw;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-bottom: 19.43vw;
}
@media screen and (max-width: 1280px) {
  .p-rental-support__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-rental-support__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 2rem;
    margin-top: clamp(6.4rem, 17.5vw, 11.2rem);
    margin-inline: auto;
  }
}

.p-rental-support__lead {
  font-size: clamp(2.4rem, 2.4479166667vw, 4.7rem);
  font-weight: 600;
  line-height: 1.27;
  letter-spacing: 0.1em;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1280px) {
  .p-rental-support__lead {
    margin-bottom: 2.92vw;
  }
}
@media screen and (max-width: 767px) {
  .p-rental-support__lead {
    font-size: clamp(1.8rem, 5.78125vw, 2.4rem);
    margin-bottom: 3.2rem;
  }
}

.p-rental-support__text {
  font-size: clamp(1.2rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  line-height: 2.33;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-rental-support__text {
    font-size: clamp(1.2rem, 3.90625vw, 1.5rem);
    line-height: 2.44;
  }
}

.p-rental-support__sub-img {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: -15.68vw;
  width: 47.92vw;
}
@media screen and (max-width: 767px) {
  .p-rental-support__sub-img {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    margin-top: 27.5vw;
  }
}

.p-rental-support__deco-text {
  position: absolute;
  bottom: 5.833vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: clamp(6.4rem, 8.75vw, 16.8rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.75;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-rental-support__deco-text {
    bottom: 62vw;
    font-size: clamp(3.2rem, 16.25vw, 8rem);
  }
}
@media screen and (max-width: 520px) {
  .p-rental-support__deco-text {
    bottom: 60vw;
  }
}

/*------------------------------------------------------------------------------
  p-rental-reason
------------------------------------------------------------------------------*/
.p-rental-reason {
  margin-bottom: clamp(22rem, 16.9270833333vw, 32.5rem);
}
@media screen and (max-width: 767px) {
  .p-rental-reason {
    background-image: url(../img/rental-reason-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-top: clamp(6.4rem, 16.5625vw, 10.6rem);
    padding-bottom: clamp(8rem, 27.5vw, 17.6rem);
    margin-bottom: 0;
  }
}

.p-rental-reason__lead {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  line-height: 2.33;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-rental-reason__lead {
    font-size: clamp(1.2rem, 3.90625vw, 1.5rem);
    line-height: 1.8;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin-top: 2.4rem;
  }
}

.p-rental-reason__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5.73vw;
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-rental-reason__card-list {
    margin-top: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: clamp(3.2rem, 13.75vw, 6.4rem);
  }
}

.p-reason-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.36%;
          flex: 0 1 46.36%;
}
@media screen and (max-width: 767px) {
  .p-reason-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.p-reason-card__img {
  width: 100%;
}
.p-reason-card__img img {
  aspect-ratio: 650/440;
}
@media screen and (max-width: 767px) {
  .p-reason-card__img img {
    aspect-ratio: 560/380;
  }
}

.p-reason-card__content {
  background-color: #fff;
  width: calc(100% - 8rem);
  -webkit-box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.08);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 17.76vw;
  margin-inline: auto;
  margin-top: -6.3vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-reason-card__content {
    width: calc(100% - 6.25vw);
    margin-top: -17vw;
  }
}

.p-reason-card__title {
  color: #fff;
  font-size: clamp(2rem, 1.6666666667vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 1.8rem 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  background: linear-gradient(112deg, #4A5456 30%, #111A26 140%);
}
@media screen and (max-width: 767px) {
  .p-reason-card__title {
    font-size: clamp(1.8rem, 4.21875vw, 2rem);
    padding: 1.6rem 0.8rem;
  }
}

.p-reason-card__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.8rem 2rem;
}
@media screen and (max-width: 1023px) {
  .p-reason-card__body {
    padding: 3.2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason-card__body {
    padding: clamp(2rem, 5.3125vw, 3.2rem);
  }
}

.p-reason-card__text {
  font-size: clamp(1.5rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  line-height: 1.94;
  width: 78%;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .p-reason-card__text {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .p-reason-card__text {
    font-size: clamp(1.3rem, 3.59375vw, 1.5rem);
    line-height: 1.73;
    width: 100%;
  }
}

/*------------------------------------------------------------------------------
  p-rental-request
------------------------------------------------------------------------------*/
.p-rental-request {
  background-image: url(../img/rental-request-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: clamp(5.6rem, 3.6458333333vw, 7rem);
  padding-bottom: clamp(8rem, 5.9375vw, 11.4rem);
}
@media screen and (max-width: 767px) {
  .p-rental-request {
    background-image: url(../img/rental-request-bg_sp.jpg);
    background-position: center top;
    padding-top: clamp(7.2rem, 16.5625vw, 10rem);
    padding-bottom: clamp(22rem, 68.90625vw, 44.1rem);
  }
}

.p-rental-request__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-rental-request__content {
    width: 100%;
    margin-top: clamp(3.2rem, 10.3125vw, 6.6rem);
  }
}

.p-rental-request__text-wrap {
  position: relative;
  z-index: 1;
}

.p-rental-request__lead {
  font-size: clamp(2.2rem, 2.03125vw, 3.9rem);
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-rental-request__lead {
    font-size: clamp(1.8rem, 5.78125vw, 2.2rem);
    line-height: 1.24;
    text-align: center;
    margin-bottom: clamp(2rem, 6.875vw, 4.4rem);
  }
}

.p-rental-request__text {
  font-size: clamp(1.3rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  line-height: 2.33;
  letter-spacing: 0.025em;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-rental-request__text {
    font-size: clamp(1.2rem, 3.4375vw, 1.5rem);
    line-height: 2;
    text-align: center;
    margin-bottom: clamp(4rem, 10vw, 6.4rem);
  }
}

.p-rental-request__img {
  position: absolute;
  top: -3.65vw;
  left: calc(100% + 7.6vw);
  width: 38.7vw;
}
@media screen and (max-width: 1280px) {
  .p-rental-request__img {
    left: calc(100% + 2vw);
  }
}
@media screen and (max-width: 767px) {
  .p-rental-request__img {
    top: calc(100% + 8.91vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 86.72vw;
  }
}

/*------------------------------------------------------------------------------
  p-rental-case
------------------------------------------------------------------------------*/
.p-rental-case {
  background: linear-gradient(340deg, #DFDFDF 3.64%, #F6F6F6 68.43%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: clamp(16rem, 12.3958333333vw, 23.8rem) 0;
}
@media screen and (max-width: 767px) {
  .p-rental-case {
    padding: clamp(6.4rem, 25vw, 16rem) 0 clamp(5.6rem, 19.53125vw, 12.5rem);
  }
}
.p-rental-case .p-case-media-wrap {
  margin-top: clamp(7.2rem, 5.7291666667vw, 11rem);
}

/*------------------------------------------------------------------------------
  p-rental-faq
------------------------------------------------------------------------------*/
.p-rental-faq {
  margin-top: clamp(11.2rem, 8.75vw, 16.8rem);
  margin-bottom: clamp(16rem, 11.875vw, 22.8rem);
}
@media screen and (max-width: 767px) {
  .p-rental-faq {
    margin-top: clamp(6.4rem, 21.40625vw, 10.4rem);
    margin-bottom: clamp(8rem, 25vw, 16rem);
  }
}
.p-rental-faq .p-faq {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-rental-faq .p-faq {
    margin-top: 7.34vw;
  }
}

/*------------------------------------------------------------------------------
  p-estate-about
------------------------------------------------------------------------------*/
.p-estate-about {
  margin-top: clamp(8.8rem, 6.9791666667vw, 13.4rem);
  margin-bottom: clamp(14.4rem, 13.5416666667vw, 26rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-estate-about {
    padding-bottom: clamp(8rem, 22.5vw, 14.4rem);
    margin-top: clamp(6.4rem, 19.84375vw, 12.7rem);
    margin-bottom: clamp(6.4rem, 18.75vw, 12rem);
  }
  .p-estate-about .c-inner {
    padding: 0 0 0 2rem;
  }
}
.p-estate-about::before {
  content: "";
  position: absolute;
  top: 6.93vw;
  left: 0;
  background-image: url(../img/estate-about-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 72.29vw;
  height: calc(100% - 1.25vw);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-estate-about::before {
    top: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-estate-about::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: calc(100% - 37vw);
    background-image: url(../img/estate-about-bg_sp.jpg);
  }
}

.p-estate-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-estate-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-estate-about__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 5.6rem;
  margin-bottom: clamp(2.4rem, 2.5vw, 4.8rem);
}
@media screen and (max-width: 767px) {
  .p-estate-about__text-wrap {
    width: 100%;
    padding-right: 3.2rem;
    margin-top: clamp(2.4rem, 12.5vw, 8rem);
    margin-bottom: 0;
  }
}

.p-estate-about__lead {
  font-size: clamp(4.4rem, 2.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.14em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: clamp(3.2rem, 2.9166666667vw, 256rem);
}
@media screen and (max-width: 1280px) {
  .p-estate-about__lead {
    font-size: clamp(2.8rem, 3.125vw, 4rem);
  }
}
@media screen and (max-width: 1023px) {
  .p-estate-about__lead {
    font-size: clamp(2.2rem, 3.125vw, 3.2rem);
  }
}
@media screen and (max-width: 767px) {
  .p-estate-about__lead {
    font-size: clamp(2rem, 5.78125vw, 2.6rem);
    margin-bottom: clamp(1.6rem, 4.375vw, 2.8rem);
  }
}

.p-estate-about__text {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  font-weight: normal;
  line-height: 2.33;
  letter-spacing: 0.085em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-estate-about__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-estate-about__text {
    font-size: clamp(1.3rem, 3.90625vw, 1.5rem);
    line-height: 2.44;
    letter-spacing: 0.025em;
    max-width: 42rem;
  }
}

.p-estate-about__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.64%;
          flex: 0 1 41.64%;
}
@media screen and (max-width: 767px) {
  .p-estate-about__img {
    width: 73.3vw;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: auto;
  }
}

/*------------------------------------------------------------------------------
  p-estate-field
------------------------------------------------------------------------------*/
.p-estate-field {
  margin-bottom: clamp(11.2rem, 9.7395833333vw, 18.7rem);
}
@media screen and (max-width: 767px) {
  .p-estate-field {
    margin-bottom: clamp(6.4rem, 18.4375vw, 11.8rem);
  }
  .p-estate-field .c-inner {
    padding: 0 1rem;
  }
}

.p-estate-field__graph {
  width: clamp(20rem, 39.375vw, 75.6rem);
  margin-top: clamp(6.4rem, 4.1666666667vw, 8rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-estate-field__graph {
    width: 100%;
    max-width: 50rem;
    margin-top: clamp(3.2rem, 9.375vw, 6rem);
  }
}

/*------------------------------------------------------------------------------
  p-estate-property
------------------------------------------------------------------------------*/
.p-estate-property {
  padding-top: clamp(11.2rem, 7.5vw, 14.4rem);
  padding-bottom: clamp(16rem, 12.3958333333vw, 23.8rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-estate-property {
    padding-top: clamp(6.4rem, 20vw, 12.8rem);
    padding-bottom: clamp(6.4rem, 20vw, 12.8rem);
  }
}
.p-estate-property::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #11182b;
  width: 100%;
  height: clamp(30rem, 32.5vw, 62.4rem);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-estate-property::before {
    height: 97.5vw;
  }
}
.p-estate-property::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e4e2e8;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.p-estate-property__card-wrap {
  margin-top: clamp(8.8rem, 6.9791666667vw, 13.4rem);
  margin-bottom: clamp(12.8rem, 9.375vw, 18rem);
}
@media screen and (max-width: 767px) {
  .p-estate-property__card-wrap {
    margin-top: clamp(2.4rem, 6.875vw, 4.4rem);
    margin-bottom: clamp(6.4rem, 15.9375vw, 10.2rem);
  }
}

.p-estate-property__banner-text {
  font-size: clamp(1.6rem, 1.1458333333vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-estate-property__banner-text {
    font-size: clamp(1.4rem, 3.4375vw, 1.6rem);
  }
}

.p-estate-property__banner-img {
  width: clamp(36rem, 23.59375vw, 45.3rem);
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-estate-property__banner-img {
    width: 70.8vw;
    max-width: 45rem;
  }
}

/*------------------------------------------------------------------------------
  p-estate-case
------------------------------------------------------------------------------*/
.p-estate-case {
  margin-top: clamp(16rem, 13.8020833333vw, 26.5rem);
  margin-bottom: clamp(12.8rem, 9.375vw, 18rem);
}
@media screen and (max-width: 767px) {
  .p-estate-case {
    margin-top: clamp(5.6rem, 10vw, 6.4rem);
    margin-bottom: clamp(10.4rem, 31.25vw, 20rem);
  }
}

.p-estate-case__card-wrap {
  margin-top: clamp(4.8rem, 4.5833333333vw, 8.8rem);
}
@media screen and (max-width: 767px) {
  .p-estate-case__card-wrap {
    margin-top: clamp(2.4rem, 10vw, 6.4rem);
  }
}

/*------------------------------------------------------------------------------
  p-property
------------------------------------------------------------------------------*/
.p-property {
  margin-top: clamp(10rem, 10.4166666667vw, 20rem);
}
@media screen and (max-width: 767px) {
  .p-property {
    margin-top: 0;
  }
}

/*------------------------------------------------------------------------------
  p-property__head
------------------------------------------------------------------------------*/
.p-property__head {
  margin-bottom: clamp(3.2rem, 2.9166666667vw, 5.6rem);
}

.p-property__head-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2.4rem, 3.3333333333vw, 6.4rem);
  margin-bottom: clamp(2.4rem, 2.9166666667vw, 5.6rem);
}
@media screen and (max-width: 767px) {
  .p-property__head-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: clamp(2rem, 6.25vw, 4rem) 0;
    margin-bottom: clamp(2.4rem, 12.1875vw, 7.8rem);
  }
}

.p-property__category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #11182b;
  font-size: clamp(1.8rem, 1.3020833333vw, 2.5rem);
  font-weight: normal;
  letter-spacing: 0.02em;
  min-width: clamp(16rem, 13.75vw, 26.4rem);
  min-height: clamp(8rem, 5.8333333333vw, 11.2rem);
  padding: 1.2rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-property__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: clamp(1.1rem, 2.34375vw, 1.3rem);
    width: 100%;
    min-width: auto;
    min-height: clamp(4.4rem, 10.625vw, 6.8rem);
    padding: 0.4rem 1rem;
  }
}

.p-property__title {
  font-size: clamp(2.2rem, 1.6666666667vw, 3.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.012em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-wrap: break-word;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .p-property__title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
  }
}

.p-property__head-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem clamp(26rem, 19.7916666667vw, 38rem);
  margin-bottom: clamp(3.2rem, 3.75vw, 7.2rem);
}
@media screen and (max-width: 1023px) {
  .p-property__head-summary {
    gap: 1.6rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-property__head-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: clamp(4rem, 13.4375vw, 8.6rem) 0;
    margin-bottom: clamp(2.4rem, 6.875vw, 4.4rem);
  }
}

.p-property__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-property__price {
    background-color: #ebebeb;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 50px;
    width: 100%;
    padding: clamp(1.2rem, 3.75vw, 2.4rem) 1rem;
    margin-inline: auto;
  }
}

.p-property__price-text {
  font-size: clamp(1.6rem, 1.3020833333vw, 2.5rem);
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: 0.73vw;
}
@media screen and (max-width: 767px) {
  .p-property__price-text {
    font-size: clamp(1.4rem, 3.125vw, 2rem);
    margin-right: 1.79vw;
  }
}

.p-property__price-val {
  font-size: clamp(3rem, 2.34375vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-left: 0.73vw;
}
@media screen and (max-width: 767px) {
  .p-property__price-val {
    font-size: clamp(2.6rem, 5.625vw, 3.6rem);
    margin-left: 1.79vw;
  }
}

.p-property__price-unit {
  font-size: clamp(1.8rem, 1.4583333333vw, 2.8rem);
}
@media screen and (max-width: 767px) {
  .p-property__price-unit {
    font-size: clamp(1.4rem, 3.59375vw, 2.3rem);
  }
}

@media screen and (max-width: 767px) {
  .p-property__contact-btn {
    font-size: clamp(1.5rem, 3.59375vw, 2.3rem);
    max-width: clamp(28rem, 58.125vw, 37.2rem);
    height: clamp(5.6rem, 12.34375vw, 7.9rem);
    margin-inline: auto;
  }
}

/*------------------------------------------------------------------------------
  p-property__meta（所在地・交通）
------------------------------------------------------------------------------*/
.p-property__meta {
  margin-bottom: clamp(6.4rem, 6.25vw, 12rem);
}
@media screen and (max-width: 767px) {
  .p-property__meta {
    margin-bottom: clamp(4rem, 11.25vw, 7.2rem);
  }
}
.p-property__meta > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.6rem, 1.3020833333vw, 2.5rem);
  line-height: 1.4;
  letter-spacing: 0.16em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  border-bottom: 0.5px solid #1a1311;
  padding: clamp(2.4rem, 2.5vw, 4.8rem) 0;
}
@media screen and (max-width: 767px) {
  .p-property__meta > div {
    font-size: clamp(1.3rem, 3.90625vw, 1.6rem);
    padding: clamp(2rem, 4.375vw, 2.8rem) 0;
  }
}

/*------------------------------------------------------------------------------
  p-property__gallery
------------------------------------------------------------------------------*/
.p-property__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(8.8rem, 8.75vw, 16.8rem);
}
@media screen and (max-width: 767px) {
  .p-property__gallery {
    display: block;
  }
}

.p-property__gallery-main {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60.36%;
          flex: 0 1 60.36%;
  min-width: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-top: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-property__gallery-main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 63%;
            flex: 0 1 63%;
  }
}
@media screen and (max-width: 767px) {
  .p-property__gallery-main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding-top: 0;
    position: relative;
  }
}

.p-property__gallery-count {
  color: #fff;
  font-size: clamp(1.5rem, 0.8333333333vw, 1.6rem);
  letter-spacing: 0.12em;
  line-height: 1;
  background-color: #11182b;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem 1.2rem;
  min-width: clamp(6.4rem, 6.25vw, 12rem);
  min-height: clamp(2.4rem, 1.5625vw, 3rem);
}
@media screen and (max-width: 767px) {
  .p-property__gallery-count {
    font-size: clamp(1.2rem, 2.8125vw, 1.5rem);
    min-width: clamp(11.2rem, 21.40625vw, 13.7rem);
    min-height: clamp(2.4rem, 5.3125vw, 3.4rem);
  }
}

.p-property__gallery-main-swiper {
  margin-top: clamp(3.2rem, 2.3958333333vw, 4.6rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-property__gallery-main-swiper {
    margin-top: 1.6rem;
  }
}
.p-property__gallery-main-swiper .swiper-slide figure {
  aspect-ratio: 845/548;
  overflow: hidden;
}

.js-property-pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .js-property-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.6rem;
    bottom: -2.4rem !important;
    width: 100%;
  }
}
.js-property-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c8c9ca;
  opacity: 1;
  margin: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.js-property-pagination .swiper-pagination-bullet-active {
  background-color: #11182b;
}

.p-property__gallery-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 3.6rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1023px) {
  .p-property__gallery-btn {
    width: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-property__gallery-btn {
    width: 1.8rem;
  }
}
.p-property__gallery-btn img {
  display: block;
  width: 100%;
  height: auto;
}
.p-property__gallery-btn:hover {
  opacity: 0.75;
}
.p-property__gallery-btn--prev {
  left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-property__gallery-btn--prev {
    left: 0.8rem;
  }
}
.p-property__gallery-btn--next {
  right: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-property__gallery-btn--next {
    right: 0.8rem;
  }
}

.p-property__gallery-aside {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.71%;
          flex: 0 1 33.71%;
}
@media screen and (max-width: 767px) {
  .p-property__gallery-aside {
    display: none;
  }
}

.p-property__thumbs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
@media screen and (max-width: 1023px) {
  .p-property__thumbs {
    gap: 1.2rem;
  }
}

.p-property__thumbs li button {
  display: block;
  width: 100%;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.p-property__thumbs li button img {
  aspect-ratio: 4/3;
}
.p-property__thumbs li.is-active button {
  border-color: #37445c;
  border-radius: 2px;
}

/*------------------------------------------------------------------------------
  p-property__section（基本情報・物件地図）
------------------------------------------------------------------------------*/
.p-property__section {
  margin-bottom: clamp(12.8rem, 10.2083333333vw, 19.6rem);
}
@media screen and (max-width: 767px) {
  .p-property__section {
    margin-bottom: clamp(7.2rem, 19.6875vw, 12.6rem);
  }
}
.p-property__section:last-of-type {
  margin-bottom: clamp(9.6rem, 8.9583333333vw, 17.2rem);
}
@media screen and (max-width: 767px) {
  .p-property__section:last-of-type {
    margin-bottom: clamp(5.6rem, 15vw, 9.6rem);
  }
}

.p-property__section-title {
  font-size: clamp(2rem, 1.6666666667vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: clamp(3.2rem, 2.5vw, 4.8rem);
}
@media screen and (max-width: 767px) {
  .p-property__section-title {
    font-size: clamp(1.6rem, 4.0625vw, 2rem);
    margin-bottom: clamp(2.4rem, 5.9375vw, 3.2rem);
  }
}

/*------------------------------------------------------------------------------
  p-property__spec（基本情報テーブル）
------------------------------------------------------------------------------*/
.p-property__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 0.5px solid #79889c;
  border-right: 0.5px solid #79889c;
}

.p-property__spec-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1.6rem, 1.09375vw, 2.1rem);
  font-weight: normal;
  letter-spacing: 0.12em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.3;
}
@media screen and (max-width: 1023px) {
  .p-property__spec-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-property__spec-item {
    font-size: 1.2rem;
    line-height: 1.44;
  }
}
.p-property__spec-item.--full {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.p-property__spec-item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(18rem, 11.3541666667vw, 21.8rem);
          flex: 0 0 clamp(18rem, 11.3541666667vw, 21.8rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #79889c;
  padding: 2.8rem 0.8rem;
  padding: clamp(2.4rem, 1.6666666667vw, 3.2rem) 0.8rem;
  border-bottom: 0.5px solid #fff;
}
@media screen and (max-width: 1023px) {
  .p-property__spec-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 15rem;
            flex: 0 1 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-property__spec-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 clamp(10rem, 30.78125vw, 19.7rem);
            flex: 0 0 clamp(10rem, 30.78125vw, 19.7rem);
    padding: clamp(1.6rem, 2.8125vw, 2rem) 0.4rem;
  }
}
.p-property__spec-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(2.4rem, 1.6666666667vw, 3.2rem) 0.8rem clamp(2.4rem, 1.6666666667vw, 3.2rem) 3.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 0.5px solid #79889c;
}
@media screen and (max-width: 767px) {
  .p-property__spec-item dd {
    padding: clamp(1.6rem, 2.8125vw, 2rem) 0.8rem clamp(1.6rem, 2.8125vw, 2rem) 4.68vw;
  }
}

/*------------------------------------------------------------------------------
  p-property__map
------------------------------------------------------------------------------*/
.p-property__map {
  width: 100%;
  aspect-ratio: 1400/640;
}
@media screen and (max-width: 767px) {
  .p-property__map {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    overflow: hidden;
    margin-bottom: clamp(5.6rem, 15vw, 9.6rem);
  }
}
.p-property__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-property__map {
    aspect-ratio: 4/3;
  }
}

/*------------------------------------------------------------------------------
  p-works
------------------------------------------------------------------------------*/
.p-works__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.4rem, 2.5vw, 4.8rem);
  padding-bottom: clamp(4rem, 3.75vw, 7.2rem);
  border-bottom: 0.5px solid #1a1311;
  margin-bottom: clamp(5.6rem, 4.7916666667vw, 9.2rem);
}
@media screen and (max-width: 767px) {
  .p-works__head {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto clamp(1.2rem, 3.125vw, 2.4rem) 1fr;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: clamp(1.2rem, 3.125vw, 2.4rem);
       -moz-column-gap: clamp(1.2rem, 3.125vw, 2.4rem);
            column-gap: clamp(1.2rem, 3.125vw, 2.4rem);
    row-gap: clamp(1.2rem, 3.125vw, 2.4rem);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-bottom: clamp(2rem, 6.5625vw, 4rem);
    margin-bottom: clamp(4rem, 14.375vw, 6.4rem);
  }
}

.p-works__head-side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin-top: clamp(1.8rem, 1.4583333333vw, 2.8rem);
}
@media screen and (max-width: 767px) {
  .p-works__head-side {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    gap: 1rem;
    margin-top: 0;
  }
}

.p-works__head-label {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-works__head-label {
    font-size: clamp(1.7rem, 4.6875vw, 2rem);
    margin-bottom: 0;
  }
}

.p-works__head-page {
  font-size: clamp(2.8rem, 2.0833333333vw, 40rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-works__head-page {
    font-size: clamp(2.2rem, 6.875vw, 2.8rem);
  }
}

.p-works__head-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-works__head-main {
    display: contents;
  }
}

.p-works__address {
  font-size: clamp(1.5rem, 0.8854166667vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.095em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 0.75em;
}
@media screen and (max-width: 767px) {
  .p-works__address {
    font-size: clamp(1.2rem, 3.90625vw, 1.5rem);
    letter-spacing: 0.16em;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    margin-bottom: 0;
    -ms-grid-row-align: center;
        align-self: center;
  }
}

.p-works__title {
  font-weight: 600;
  font-size: clamp(2.2rem, 1.4583333333vw, 2.8rem);
  line-height: 1.4;
  letter-spacing: 0.095em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-wrap: break-word;
  word-break: keep-all;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-works__title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    line-height: 1.34;
    letter-spacing: 0.12em;
    text-align: left;
    grid-column: 1/-1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-bottom: clamp(0.8rem, 1.875vw, 2rem);
  }
}

.p-works__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-works__categories {
    grid-column: 1/-1;
    -ms-grid-row: 3;
    grid-row: 3;
    gap: 0.8rem;
  }
}

.p-works__category {
  color: #64696d;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.095em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background-color: #e5e4e5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: clamp(11.2rem, 7.5vw, 14.4rem);
  padding: 0.8rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-works__category {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 1.6rem) / 3);
            flex: 0 1 calc((100% - 1.6rem) / 3);
    font-size: 1.1rem;
    line-height: 1.15;
    -ms-flex-item-align: start;
        align-self: flex-start;
    text-align: left;
    min-width: 0;
    padding: 0.6rem 0.8rem;
  }
}

.p-works__content {
  margin-bottom: clamp(12rem, 9.8958333333vw, 19rem);
}
@media screen and (max-width: 767px) {
  .p-works__content {
    margin-bottom: clamp(6.4rem, 15.9375vw, 10.2rem);
  }
}

.p-works__section-wrap {
  margin-bottom: clamp(10rem, 7.5vw, 14.4rem);
}
@media screen and (max-width: 767px) {
  .p-works__section-wrap {
    margin-bottom: clamp(4.8rem, 13.75vw, 8.8rem);
  }
}

.p-works__section:not(:last-child) {
  margin-bottom: clamp(12rem, 7.9166666667vw, 15.2rem);
}
@media screen and (max-width: 767px) {
  .p-works__section:not(:last-child) {
    margin-bottom: clamp(6.4rem, 15.9375vw, 10.2rem);
  }
}

.p-works__section-title {
  font-size: clamp(2.4rem, 1.875vw, 3.6rem);
  font-weight: 7600;
  line-height: 1.2;
  letter-spacing: 0.075em;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: clamp(3.2rem, 2.2916666667vw, 4.4rem);
}
@media screen and (max-width: 767px) {
  .p-works__section-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: clamp(2rem, 6.25vw, 3.2rem);
  }
}

.p-works__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 0.5px solid #1a1311;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 119.7rem;
  margin-inline: auto;
}

.p-works__data-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.095em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(2.4rem, 3.0208333333vw, 5.8rem);
     -moz-column-gap: clamp(2.4rem, 3.0208333333vw, 5.8rem);
          column-gap: clamp(2.4rem, 3.0208333333vw, 5.8rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 0.5px solid #1a1311;
  padding: 4rem 2rem 4rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-works__data-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-column-gap: clamp(1.6rem, 6.6666666667vw, 4rem);
       -moz-column-gap: clamp(1.6rem, 6.6666666667vw, 4rem);
            column-gap: clamp(1.6rem, 6.6666666667vw, 4rem);
    padding: clamp(1.6rem, 7.5vw, 4rem) 1.6rem clamp(1.6rem, 7.5vw, 4rem) clamp(1.6rem, 5.9375vw, 3.2rem);
  }
}
.p-works__data-item:nth-child(odd) {
  border-right: 0.5px solid #1a1311;
}
@media screen and (max-width: 767px) {
  .p-works__data-item:nth-child(odd) {
    border-right: none;
  }
}
.p-works__data-item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(2rem, 1.40625vw, 2.7rem);
}
@media screen and (max-width: 767px) {
  .p-works__data-item dt {
    font-size: clamp(1.3rem, 4.53125vw, 2rem);
  }
}
.p-works__data-item dd {
  min-width: 0;
  font-size: clamp(1.8rem, 1.1458333333vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  .p-works__data-item dd {
    font-size: clamp(1.2rem, 3.75vw, 1.8rem);
  }
}

.p-works__data-price {
  font-size: clamp(3.2rem, 2.1875vw, 4.2rem);
}
@media screen and (max-width: 767px) {
  .p-works__data-price {
    font-size: clamp(2rem, 7.1875vw, 3.6rem);
    line-height: 0.85;
  }
}

.p-works__data-unit {
  font-size: clamp(1.6rem, 1.25vw, 2.4rem);
}
@media screen and (max-width: 767px) {
  .p-works__data-unit {
    font-size: clamp(1.3rem, 4.0625vw, 2rem);
  }
}

.p-works__data-item--merged {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  border-right: none !important;
}
.p-works__data-item--merged dt:nth-of-type(2) {
  margin-left: clamp(2rem, 2.0833333333vw, 4rem);
}
@media screen and (max-width: 767px) {
  .p-works__data-item--merged {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto clamp(1.6rem, 6.6666666667vw, 4rem) 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: auto clamp(1.6rem, 4.53125vw, 2.2rem) auto;
    grid-template-rows: auto auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: clamp(1.6rem, 6.6666666667vw, 4rem);
       -moz-column-gap: clamp(1.6rem, 6.6666666667vw, 4rem);
            column-gap: clamp(1.6rem, 6.6666666667vw, 4rem);
    row-gap: clamp(1.6rem, 4.53125vw, 2.2rem);
  }
  .p-works__data-item--merged > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-works__data-item--merged > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-works__data-item--merged > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-works__data-item--merged > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .p-works__data-item--merged dt:nth-of-type(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .p-works__data-item--merged dd:nth-of-type(1) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .p-works__data-item--merged dt:nth-of-type(2) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-left: 0;
  }
  .p-works__data-item--merged dd:nth-of-type(2) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.p-works__concept {
  font-size: clamp(1.6rem, 0.9895833333vw, 1.9rem);
  font-weight: 400;
  line-height: 2.21;
  letter-spacing: 0.095em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works__concept {
    font-size: clamp(1.4rem, 3.59375vw, 1.6rem);
    letter-spacing: 0.085em;
    line-height: 1.87;
    text-align: left;
  }
}

/*------------------------------------------------------------------------------
  p-works-list
------------------------------------------------------------------------------*/
.p-works-list {
  padding: 6.4rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-works-list {
    padding: 0;
  }
}

.p-works-list__section + .p-works-list__section {
  margin-top: clamp(18rem, 12.0833333333vw, 23.2rem);
}
@media screen and (max-width: 767px) {
  .p-works-list__section + .p-works-list__section {
    margin-top: clamp(10rem, 6.6666666667vw, 12.8rem);
  }
}

.p-works-list__section-head {
  padding: clamp(4rem, 4.4791666667vw, 8.6rem) 0;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: relative;
}
.p-works-list__section-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(22rem, 18.9583333333vw, 36.4rem);
  background-color: #11182b;
  z-index: -1;
}

.p-works-list__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 5vw 4rem;
}
@media screen and (max-width: 1023px) {
  .p-works-list__items {
    -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-works-list__items {
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 1.6rem;
  }
}

.p-works-list__link {
  display: block;
}
.p-works-list__link:hover {
  opacity: 1;
}
.p-works-list__link:hover .p-works-list__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-works-list__img {
  aspect-ratio: 317/230;
  overflow: hidden;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__img {
    margin-bottom: 1.2rem;
  }
}
.p-works-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-works-list__label {
  font-size: clamp(1.2rem, 0.6510416667vw, 1.25rem);
  padding: 0.5rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__label {
    font-size: 1.1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0.5rem 0.8rem;
  }
}

.p-works-list__title {
  font-size: clamp(1.5rem, 0.8333333333vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__title {
    font-size: clamp(1.2rem, 2.34375vw, 1.5rem);
    margin-top: 0.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-blog-list
------------------------------------------------------------------------------*/
.p-blog-list__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(4.8rem, 5vw, 9.6rem) 1fr clamp(4.8rem, 5vw, 9.6rem) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6.4rem, 5.3125vw, 10.2rem) clamp(4.8rem, 5vw, 9.6rem);
  margin-top: clamp(4.8rem, 5vw, 9.6rem);
}
@media screen and (max-width: 1023px) {
  .p-blog-list__cards {
    gap: 4rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blog-list__cards {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 2rem;
    margin-top: 4rem;
  }
}

/*------------------------------------------------------------------------------
  p-sidebar
------------------------------------------------------------------------------*/
.p-sidebar {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 0.5px solid #1a1311;
  padding-left: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-sidebar {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-left: none;
    padding-left: 0;
  }
}

/*------------------------------------------------------------------------------
  p-sidebar__author
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .p-sidebar__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: clamp(5.6rem, 16.25vw, 10.4rem);
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
}

.p-sidebar__author-img {
  width: 64.7%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__author-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46%;
            flex: 0 1 46%;
    margin-bottom: 0;
  }
}

.p-sidebar__author-text {
  font-size: clamp(1.3rem, 0.78125vw, 1.5rem);
  font-weight: 400;
  line-height: 1.86;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-sidebar__author-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 44%;
            flex: 0 1 44%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-sidebar__author-text {
    font-size: clamp(1.1rem, 3.59375vw, 1.4rem);
    line-height: 2;
    letter-spacing: 0.095em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

/*------------------------------------------------------------------------------
  p-sidebar__section
------------------------------------------------------------------------------*/
.p-sidebar__section:not(:last-child) {
  margin-bottom: clamp(8rem, 5.8333333333vw, 11.2rem);
}
@media screen and (max-width: 767px) {
  .p-sidebar__section:not(:last-child) {
    border-bottom: 0.5px solid #1a1311;
    padding-bottom: clamp(2.8rem, 6.25vw, 4rem);
    margin-bottom: clamp(5.6rem, 12.1875vw, 7.8rem);
  }
}

.p-sidebar__heading {
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__heading {
    margin-bottom: clamp(2.8rem, 7.5vw, 4.8rem);
  }
}

.p-sidebar__heading-en {
  font-size: clamp(2.2rem, 1.6666666667vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.075em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__heading-en {
    font-size: clamp(2rem, 6.40625vw, 2.5rem);
    margin-bottom: 0.2rem;
  }
}

.p-sidebar__heading-ja {
  font-size: clamp(1.2rem, 0.8333333333vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.095em;
}
@media screen and (max-width: 767px) {
  .p-sidebar__heading-ja {
    font-size: clamp(1.1rem, 3.125vw, 1.4rem);
  }
}

/*------------------------------------------------------------------------------
  p-sidebar__list（カテゴリー・最新情報）
------------------------------------------------------------------------------*/
.p-sidebar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__list {
    row-gap: 0.4rem;
  }
}

.p-sidebar__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  font-size: clamp(1.3rem, 0.9895833333vw, 1.9rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.095em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-sidebar__list-item {
    font-size: clamp(1.1rem, 3.75vw, 1.4rem);
  }
}
.p-sidebar__list-item::before {
  content: "●";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.9rem;
  display: inline-block;
  padding-top: 0.45rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__list-item::before {
    font-size: 0.8rem;
    padding-top: 0.5rem;
  }
}
.p-sidebar__list-item a {
  text-decoration: none;
  color: #1a1311;
}
.p-sidebar__list-item a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/*------------------------------------------------------------------------------
  p-sidebar__archive
------------------------------------------------------------------------------*/
.p-sidebar__archive {
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__archive {
    width: 73.333%;
    max-width: 44rem;
  }
}

.p-sidebar__archive-year {
  font-size: clamp(1.3rem, 0.9895833333vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.095em;
}
@media screen and (max-width: 767px) {
  .p-sidebar__archive-year {
    font-size: clamp(1.1rem, 3.75vw, 1.4rem);
  }
}
.p-sidebar__archive-year:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__archive-year:not(:last-child) {
    margin-bottom: clamp(1.2rem, 3.75vw, 2.4rem);
  }
}
.p-sidebar__archive-year[open] .p-sidebar__archive-year-label::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-bottom: -0.3rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar__archive-year[open] .p-sidebar__archive-year-label::after {
    margin-bottom: -0.1rem;
  }
}

.p-sidebar__archive-year-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  line-height: 1.2;
  padding: 1rem 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-sidebar__archive-year-label::-webkit-details-marker {
  display: none;
}
.p-sidebar__archive-year-label:hover {
  color: #1a1311;
  opacity: 0.8;
}
.p-sidebar__archive-year-label::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid #1a1311;
  border-bottom: 1.5px solid #1a1311;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-sidebar__archive-year-label::after {
    width: 0.6rem;
    height: 0.6rem;
    border-width: 1px;
    margin-bottom: 0.4rem;
  }
}

.p-sidebar__archive-month-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem 0 0.8rem 2rem;
  margin-top: -1rem;
}
.p-sidebar__archive-month-list li {
  line-height: 2;
}
.p-sidebar__archive-month-list li::before {
  content: "-";
  margin-right: 0.4rem;
}
.p-sidebar__archive-month-list li a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.p-sidebar__archive-month-list li a:hover {
  color: #1a1311;
  opacity: 0.8;
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #11182b;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left;
}

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

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

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-mb-8 {
  margin-bottom: 64px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-inline: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */