@charset "UTF-8";
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: 800ms;
}
.js-fade__view--delay1 {
  transition-delay: 100ms;
}
.js-fade__view--delay2 {
  transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  transform: translateY(-50px);
  transition: 800ms;
}
.js-fade__down--delay1 {
  transition-delay: 100ms;
}
.js-fade__down--delay2 {
  transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------*/ /* -------------------------------------------*/ /* -------------------------------------------*/
/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  overflow: auto;
  scroll-behavior: smooth;
}

body {
  color: #1a1a1a;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  height: 100%;
  letter-spacing: 0;
  line-height: 1.5;
  min-height: 100vh;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  display: block;
  text-decoration: none;
}

a {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.6;
}

picture {
  display: block;
  line-height: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

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

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

output {
  display: inline-block;
}

@media not all and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
:root {
  --content_width: 990px;
  --header_width: 1130px;
  --content_width-sm: 868px;
  --cta_width: 800px;
  --content-both_space: 15px;
}
@media screen and (max-width: 1000px) {
  :root {
    --content_width: 800px;
    --header_width: 800px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --content_width: 365px;
    --header_width: 365px;
    --header_height: 58px;
    --content_width-sm: 355px;
    --content-both_space: 15px;
  }
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  border: none;
  color: #1a1a1a;
  line-height: 1;
  padding: 15px 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 600px) {
  input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
    padding: 10px 0;
  }
}

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

:focus {
  outline: none;
}

:-ms-input-placeholder {
  color: #9fa0a0;
}

::placeholder {
  color: #9fa0a0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

input.elem-short {
  width: 7rem;
}
@media screen and (max-width: 600px) {
  input.elem-short {
    width: 5rem;
  }
}

.elem-full .wpcf7-form-control-wrap {
  width: 100%;
}

/**
 * textarea
 *
 */
textarea {
  border: none;
  border: none;
  border-radius: 5px;
  height: 140px;
  padding: 0;
  position: relative;
  width: 100%;
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled:-ms-input-placeholder {
  color: #ede8e8;
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  color: #ede8e8;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 10px 10px 10px 40px;
  position: relative;
  transition: 0.5;
  transition-property: color;
  vertical-align: middle;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text {
    margin: 0 15px 0 0;
    padding: 10px 5px 12px 30px;
  }
}

input[type=radio] + .mwform-radio-field-text::before {
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 25px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease;
  width: 25px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::before {
    height: 20px;
    width: 20px;
  }
}

input[type=radio] + .mwform-radio-field-text::after {
  background-color: #ec6051;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 14px;
  left: 13px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    height: 12px;
    left: 10px;
    width: 12px;
  }
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  display: none;
  vertical-align: middle;
}

input[type=checkbox] + .mwform-checkbox-field-text {
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 0 0 35px;
  position: relative;
  transition: 0.5;
  transition-property: color;
}
@media screen and (max-width: 1000px) {
  input[type=checkbox] + .mwform-checkbox-field-text {
    font-size: 1.4rem;
    padding-left: 30px;
  }
}

input[type=checkbox] + .mwform-checkbox-field-text::before {
  background: #fff;
  border: 0.5px #323232 solid;
  border-radius: 3px;
  box-sizing: border-box;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  z-index: 2;
}

input[type=checkbox] + .mwform-checkbox-field-text::after {
  border-bottom: 3px solid #ec6051;
  border-left: 3px solid #ec6051;
  content: "";
  display: block;
  height: 5px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  width: 10px;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  input[type=checkbox] + .mwform-checkbox-field-text::after {
    top: 3px;
  }
}

input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  border: 1px #ede8e8 solid;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.select-parts::after {
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  content: "";
  height: 10px;
  margin-top: 2px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  z-index: 5;
}
.select-parts select {
  appearance: none;
  background: #fbefe3;
  border: none;
  border: none;
  box-shadow: none;
  color: #7f7f7f;
  cursor: pointer;
  font-size: 2rem;
  height: 45px;
  letter-spacing: 0.1em;
  padding: 0 20px 0 15px;
  position: relative;
  text-align: center;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .select-parts select {
    font-size: rem(15px);
  }
}

/**
 * file
 *
 */
input[type=file] + label {
  margin: 0 10px 0 0;
  padding: 15px 0;
  width: 160px;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* -------------------------------------------*/
.l-drawer {
  background-color: rgba(255, 255, 255, 0.95);
  height: calc(100vh - var(--header_height));
  opacity: 0;
  overflow: auto;
  position: fixed;
  right: -120%;
  top: var(--header_height);
  transition: right 0.5s ease-in-out;
  width: 100%;
  z-index: 90;
}
.l-drawer.js-drawer-open {
  right: 0;
}
.l-drawer__close {
  display: none;
}
.l-drawer__inner {
  padding-bottom: 6rem;
  padding-left: 21%;
  padding-top: 8.6rem;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .l-drawer__inner {
    padding-left: 7.5rem;
    padding-top: 6.2rem;
  }
}
.l-drawer__list {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  row-gap: 4.4rem;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .l-drawer__list {
    row-gap: 2.4rem;
  }
}
.l-drawer__link {
  align-items: start;
  column-gap: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
}
.l-drawer__link span {
  display: block;
}
.l-drawer__link span:first-child {
  color: #000;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  width: 26.8rem;
}
@media screen and (max-width: 480px) {
  .l-drawer__link span:first-child {
    font-size: 1.8rem;
    letter-spacing: 0;
    width: 13.8rem;
  }
}
.l-drawer__link span:last-child {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .l-drawer__link span:last-child {
    font-size: 1.4rem;
  }
}
.l-drawer.js-drawer-modal {
  border-radius: 1rem;
  bottom: 1.5rem;
  height: calc(100vh - var(--header_height) - 3rem);
  left: 1.5rem;
  opacity: 1 !important;
  overflow: unset;
  padding: 1.5rem;
  right: 1.5rem;
  top: calc(var(--header_height) + 1.5rem);
  width: unset;
}
.l-drawer.js-drawer-modal .l-drawer__close {
  align-items: start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 2.3rem;
  justify-content: end;
  width: 100%;
}
.l-drawer.js-drawer-modal .l-drawer__close-inner {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 2.3rem;
  justify-content: space-between;
  width: 2.9rem;
}
.l-drawer.js-drawer-modal .l-drawer__close-inner span {
  background-color: #4F4D4D;
  display: block;
  height: 0.3rem;
  opacity: 1;
  width: 2.9rem;
}
.l-drawer.js-drawer-modal .l-drawer__close-inner span:first-child {
  transform: rotate(41deg);
  transform-origin: left bottom;
}
.l-drawer.js-drawer-modal .l-drawer__close-inner span:last-child {
  transform: rotate(-39.24deg);
  transform-origin: top left;
}
.l-drawer.js-drawer-modal .l-drawer__inner {
  height: calc(100vh - var(--header_height) - 8.3rem);
  overflow: auto;
  padding: 1.5rem;
}
.l-drawer.js-drawer-modal .l-drawer__list {
  margin: 0 auto;
}

/* -------------------------------------------*/
.l-footer {
  background-color: #000;
  bottom: 0;
  box-shadow: 0 -0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
  left: 0;
  padding: 3.4rem 4rem 4rem;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .l-footer {
    padding: 2.3rem 1.5rem;
  }
}
.l-footer__logo {
  display: block;
  height: 3.5rem;
  width: 21.7rem;
}

/* -------------------------------------------*/
.l-header {
  background-color: #fff;
  box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.3);
  left: 0;
  padding-top: 3rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
  .l-header {
    padding: 2rem 5.6rem 2.5rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .l-header {
    padding: 2rem 3.1rem 2rem 1.5rem;
  }
}
.l-header__logo {
  height: 3.9rem;
  padding-top: 1.9rem;
  width: 40.5rem;
}
@media screen and (max-width: 1000px) {
  .l-header__logo {
    height: 2.9rem;
    padding: 0;
    width: 21.7rem;
  }
}
@media screen and (max-width: 480px) {
  .l-header__logo {
    height: 3.5rem;
    margin-top: 0;
    padding: 0;
  }
}
.l-header__logo-link {
  display: block;
  height: 100%;
  width: 100%;
}
.l-header__upper {
  align-items: start;
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 123rem;
  padding: 0 1.5rem;
}
@media screen and (max-width: 1000px) {
  .l-header__upper {
    align-items: center;
    padding: 0;
  }
}
.l-header__upper-list {
  align-items: start;
  column-gap: 1.6rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  transform: translateY(-0.4rem);
}
@media screen and (max-width: 1000px) {
  .l-header__upper-list {
    display: none;
  }
}
.l-header__upper-item {
  height: 4.4rem;
  width: 17.6rem;
}
.l-header__upper-link {
  align-items: center;
  border-radius: 0.3rem;
  box-shadow: 0.1rem 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.4);
  column-gap: 1rem;
  display: flex;
  height: 100%;
  justify-content: center;
  padding-top: 1rem;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.l-header__upper-link span {
  display: block;
}
.l-header__upper-link span:first-child {
  color: #000;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.l-header__upper-link span:last-child {
  color: #555555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.l-header__upper-link:hover {
  box-shadow: 0.2rem 0.3rem 0.2rem 0 rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.l-header__trigger {
  height: 2.3rem;
  width: 2.9rem;
}
@media not all and (max-width: 1000px) {
  .l-header__trigger {
    display: none;
  }
}
.l-header__trigger-inner {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 2.3rem;
  justify-content: space-between;
  width: 2.9rem;
}
.l-header__trigger-inner span {
  background-color: #4F4D4D;
  display: block;
  height: 0.3rem;
  opacity: 1;
  width: 2.9rem;
}
.l-header__trigger-inner span:not(:nth-child(2)) {
  transition: all 0.5s ease-in;
}
.l-header__trigger-inner span:nth-child(2) {
  transition: all 0.1s ease-in;
}
.l-header__trigger-inner.js-trigger-open span:first-child {
  transform: rotate(41deg);
  transform-origin: left bottom;
}
.l-header__trigger-inner.js-trigger-open span:nth-child(2) {
  opacity: 0;
}
.l-header__trigger-inner.js-trigger-open span:last-child {
  transform: rotate(-39.24deg);
  transform-origin: top left;
}

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

section {
  position: relative;
  width: 100%;
}

body {
  height: fit-content;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1000px) {
  body {
    min-width: 100%;
    overflow-x: hidden;
    width: 100%;
  }
}

.l-wrapper {
  overflow-x: hidden;
  position: relative;
  text-align: left;
  width: 100%;
}
@media not all and (max-width: 1000px) {
  .l-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    text-align: left;
    width: 100%;
  }
}

.l-main {
  padding-bottom: var(--footer_height);
  padding-top: var(--header_height);
  position: relative;
  width: 100%;
}
.l-main__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content_width);
  padding: 0 var(--content-both_space);
  position: relative;
  width: 100%;
}
.l-main--404 .l-main__inner, .l-main--error .l-main__inner {
  padding: 120px 0;
}
@media screen and (max-width: 1000px) {
  .l-main--404 .l-main__inner, .l-main--error .l-main__inner {
    padding: 80px 15px;
  }
}
.l-main--404 .c-heading__title, .l-main--error .c-heading__title {
  font-size: 2.6rem;
  font-weight: 700;
}
.l-main--404 .c-heading__catch, .l-main--error .c-heading__catch {
  font-size: 1.6rem;
  margin-top: 20px;
}
.l-main--404 .c-btn, .l-main--error .c-btn {
  margin: 40px auto 0;
  max-width: 420px;
}
@media screen and (max-width: 1000px) {
  .l-main--404 .c-btn, .l-main--error .c-btn {
    margin-top: 30px;
  }
}

.no-link {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.no-link--ba {
  pointer-events: none !important;
}
.no-link--ba::before, .no-link--ba::after {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

/* -------------------------------------------*/
.l-navi__pc-list {
  align-items: center;
  column-gap: 4.8rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .l-navi__pc-list {
    column-gap: 1.8rem;
  }
}
.l-navi__pc-link {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 1.6rem;
  row-gap: 0.4rem;
}
.l-navi__pc-link:hover {
  opacity: 1;
}
.l-navi__pc-link:hover span:first-child::before {
  width: 100%;
}
.l-navi__pc span:first-child {
  color: #000;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
}
.l-navi__pc span:first-child::before {
  background-color: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 0.1rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: width 0.5s ease-in-out;
  width: 0;
}
.l-navi__pc span:last-child {
  color: #555555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .l-navi__pc {
    display: none;
  }
}
.l-navi__footer-list {
  align-items: start;
  column-gap: 3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
}
.l-navi__footer-link {
  color: #fff;
  display: block;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-top: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .l-navi__footer {
    display: none;
  }
}

.chat-input {
  border: 1px solid #ddd;
  border-radius: 25px;
  flex: 1;
  font-size: 14px;
  outline: none;
  padding: 12px 16px;
}

.send-btn {
  align-items: center;
  background: #007cba;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  height: 45px;
  justify-content: center;
  margin-left: 10px;
  width: 45px;
}

.send-btn:hover {
  background: #005a87;
}

.send-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.chat-messages {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  max-height: 600px;
  min-height: 300px;
  overflow-y: auto;
  padding: 20px;
}

.message {
  align-items: flex-start;
  display: flex;
  margin-bottom: 15px;
}

.message.user {
  justify-content: flex-end;
}

.message.ai {
  justify-content: flex-start;
}

.message-content {
  word-wrap: break-word;
  border-radius: 18px;
  max-width: 70%;
  padding: 12px 16px;
}

.message.user .message-content {
  background: #007cba;
  color: white;
}

.message.ai .message-content {
  background: white;
  border: 1px solid #e0e0e0;
  color: #333;
}

.property-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  padding: 15px;
}

.property-title {
  color: #007cba;
  font-weight: bold;
  margin-bottom: 8px;
}

.property-details {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.property-price {
  color: #e74c3c;
  font-size: 16px;
  font-weight: bold;
}

.typing-indicator {
  align-items: center;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  display: flex;
  margin-bottom: 15px;
  padding: 10px 16px;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  animation: typing 1.4s infinite;
  background: #ccc;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
}
/* -------------------------------------------*/
.c-pagination {
  align-items: center;
  column-gap: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 6.4rem auto 0;
}
.c-pagination * {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4285714286;
}

/* -------------------------------------------*/
.c-property-primary__list {
  align-items: start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  row-gap: 4rem;
}
@media screen and (max-width: 480px) {
  .c-property-primary__list {
    row-gap: 2.7rem;
  }
}
.c-property-primary__link {
  display: block;
  height: fit-content;
  width: 100%;
}
.c-property-primary__img {
  aspect-ratio: 192/129;
  box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.25);
  height: auto;
  width: 100%;
}
.c-property-primary__img--no-image {
  background-color: #e2e1e1;
}
.c-property-primary__img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.c-property-primary__content {
  padding-top: 1.2rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .c-property-primary__content {
    padding-top: 0.6rem;
  }
}
.c-property-primary__content p {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.125;
}
@media screen and (max-width: 480px) {
  .c-property-primary__content p {
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
}
.c-property-primary__content p:first-of-type {
  padding-top: 0.4rem;
}
@media screen and (max-width: 1000px) {
  .c-property-primary__content p:first-of-type {
    padding-top: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .c-property-primary__content p:first-of-type {
    padding-top: 0.8rem;
  }
}
.c-property-primary__detail {
  position: absolute;
  right: 0;
  top: 1.3rem;
}
@media screen and (max-width: 480px) {
  .c-property-primary__detail {
    top: 1rem;
  }
}

/* -------------------------------------------*/
.js-to-top {
  background: url(../img/common/arrow_up-brown-circle.svg) no-repeat center center/contain;
  bottom: -6rem;
  cursor: pointer;
  height: 6rem;
  opacity: 0;
  position: fixed;
  right: 4rem;
  width: 6rem;
  z-index: 10;
}
.js-to-top--up {
  opacity: 1;
}
.js-to-top--stay {
  opacity: 1;
  position: absolute;
  transition: none;
}
/* -------------------------------------------*/
.p-top-chat {
  align-items: start;
  column-gap: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: calc(100vh - var(--header_height) - var(--footer_height));
  justify-content: center;
  padding: 1rem 5rem 2rem;
  /* 三点ローディングアニメーション */
  /* 送信ボタン */
}
.p-top-chat__body {
  align-items: start;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: start;
}
.p-top-chat__conversation {
  align-items: start;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  overflow-y: auto;
  row-gap: 1rem;
  width: 100%;
}
.p-top-chat__conversation .concierge-message {
  border-radius: 0.5rem;
  padding: 1rem;
}
.p-top-chat__conversation .concierge-message--user {
  background-color: #f0eee7;
  color: #1a1a1a;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
.p-top-chat__conversation .concierge-message--assistant {
  color: #1a1a1a;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
.p-top-chat__conversation .concierge-message--assistant strong {
  font-weight: bold;
}
.p-top-chat__input {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  display: flex;
  padding: 1.5rem;
  width: 100%;
}
.p-top-chat__input input {
  padding: 0;
}
.p-top-chat__result {
  flex: 0 0 auto;
  padding-right: 1rem;
  transition: with 2s ease-in-out;
  width: 0;
}
.p-top-chat__result.--recommended {
  height: 100%;
  overflow-y: auto;
  width: 20%;
}
.p-top-chat .typing-dots {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}
.p-top-chat .typing-dots span {
  animation: typing-dot 1.4s infinite ease-in-out;
  background-color: #666;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  width: 8px;
}
.p-top-chat .typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.p-top-chat .typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes typing-dot {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.p-top-chat .send-btn {
  background-color: #6e3925;
}
.p-top-to-top.js-to-top--up {
  bottom: 6rem;
}
.p-top-to-top.js-to-top--stay {
  bottom: calc(var(--footer_height) + 6rem);
}

/* -------------------------------------------*/
.p-test-api {
  align-items: start;
  column-gap: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: calc(100vh - var(--header_height) - var(--footer_height));
  justify-content: center;
  padding: 1rem 5rem 2rem;
}
.p-test-api__body {
  align-items: start;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: start;
}

/* -------------------------------------------*/
.p-property-top {
  background-color: #fff;
  padding-top: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-property-top {
    padding-top: 5.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-top {
    padding-top: 3rem;
  }
}
.p-property-top__ttl {
  color: #1a1a1a;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
  margin: 0 auto;
  max-width: 85.6rem;
  padding: 0 1.5rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-property-top__ttl {
    font-size: 2.4rem;
    padding: 0;
    text-align: left;
    width: 33.5rem;
  }
}
.p-property-top__content {
  padding: 2.4rem 1.5rem 0;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-top__content {
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-top__content {
    padding-top: 4rem;
  }
}
.p-property-top__link {
  align-items: start;
  column-gap: 7.6rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  margin: 0 auto;
  max-width: 86.4rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-top__link {
    max-width: 53.8rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-top__link {
    column-gap: 2.4rem;
  }
}
.p-property-top__link a, .p-property-top__link form {
  color: #773333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
  padding-left: 2.4rem;
  position: relative;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.p-property-top__link a:hover, .p-property-top__link form:hover {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .p-property-top__link a, .p-property-top__link form {
    font-size: 1.3rem;
    line-height: 1.5384615385;
    padding-left: 1.8rem;
  }
}
.p-property-top__link a button, .p-property-top__link form button {
  color: #773333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
}
.p-property-top__link a button:hover, .p-property-top__link form button:hover {
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .p-property-top__link a button, .p-property-top__link form button {
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}
.p-property-top__link a::before, .p-property-top__link form::before {
  background: url(../img/common/arrow_down-brown-circle.svg) no-repeat center center/cover;
  content: "";
  display: block;
  height: 2rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
}
@media screen and (max-width: 480px) {
  .p-property-top__link a::before, .p-property-top__link form::before {
    background: url(../img/common/arrow_down-brown-head-circle.svg) no-repeat center center/cover;
    height: 1.4rem;
    width: 1.4rem;
  }
}
.p-property-top__link-list {
  align-items: start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem 4.8rem;
  justify-content: start;
}
@media screen and (max-width: 1000px) {
  .p-property-top__link-list {
    align-items: start;
    gap: 0.7rem 4.6rem;
    justify-content: start;
  }
}
@media screen and (max-width: 480px) {
  .p-property-top__link-list {
    column-gap: 1rem;
  }
}
.p-property-top__slide {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 1.6rem auto 0;
  max-width: 55.2rem;
  width: 100%;
}
@media not all and (max-width: 1000px) {
  .p-property-top__slide {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .p-property-top__slide {
    margin-top: 2rem;
    max-width: 29rem;
  }
}
.p-property-top__slide button {
  display: block;
  flex-shrink: 0;
  height: 7rem;
  position: relative;
  width: 3.6rem;
}
@media screen and (max-width: 480px) {
  .p-property-top__slide button {
    width: 2.5rem;
  }
}
.p-property-top__slide button:first-of-type::before {
  background: url(../img/common/arrow_black-left-naked.svg) center center/cover;
  content: "";
  display: block;
  height: 2.4rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 0.5rem));
  width: 1.2rem;
}
@media screen and (max-width: 480px) {
  .p-property-top__slide button:first-of-type::before {
    background: url(../img/common/arrow_brown-left-naked.svg) center center/cover;
  }
}
.p-property-top__slide button:last-of-type::before {
  background: url(../img/common/arrow_black-right-naked.svg) no-repeat center center/cover;
  content: "";
  display: block;
  height: 2.4rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 0.5rem));
  width: 1.2rem;
}
@media screen and (max-width: 480px) {
  .p-property-top__slide button:last-of-type::before {
    background: url(../img/common/arrow_brown-right-naked.svg) no-repeat center center/cover;
  }
}
.p-property-top__slide-inner {
  height: 7rem;
  max-width: 48rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-property-top__slide-inner {
    max-width: 24rem;
  }
}
.p-property-top__slide-body {
  align-items: center;
  column-gap: 4.8rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
  left: 0;
  position: absolute;
  top: 0;
  transition: left 0.8s ease-in-out;
}
.p-property-top__slide-list {
  align-items: center;
  column-gap: 4.8rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
}
.p-property-top__slide-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
@media screen and (max-width: 480px) {
  .p-property-top__slide-list {
    column-gap: 2.4rem;
  }
}
.p-property-top__slide-link {
  box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.25);
  display: block;
  height: 6rem;
  width: 6rem;
}
@media screen and (max-width: 480px) {
  .p-property-top__slide-link {
    height: 5.6rem;
    width: 5.6rem;
  }
}
.p-property-top__slide-img {
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.p-property-top__slide-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-property-primary {
  padding: 7rem 3rem;
}
@media screen and (max-width: 480px) {
  .p-property-primary {
    padding: 4rem 1.5rem;
  }
}
.p-property-primary__form {
  align-items: end;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  margin: 0 auto;
  max-width: 85.6rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-primary__form {
    max-width: 56rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-primary__form {
    max-width: 33.6rem;
  }
}
.p-property-primary__tag-list {
  align-items: start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  padding-top: 2rem;
  row-gap: 6.4rem;
  width: 100%;
}
.p-property-primary__tag-item {
  width: 100%;
}
.p-property-primary__ttl {
  color: #555555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.0833333333;
}
@media screen and (max-width: 480px) {
  .p-property-primary__ttl {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-property-primary__list {
  -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 4rem 1.6rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1000px) {
  .p-property-primary__list {
    -ms-grid-columns: 1fr 5.5rem 1fr;
    gap: 4rem 5.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-property-primary__list {
    gap: 2.7rem 3.4rem;
  }
}
.p-property-primary__no-exam {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
  margin-top: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-property-primary__no-exam {
    margin-top: 3.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-primary__no-exam {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-top: 1.2rem;
  }
}
.p-property-primary__check {
  border: 0.1rem solid #555555;
  border-radius: 0.2rem;
  display: block;
  height: 1.6rem;
  position: relative;
  width: 1.6rem;
}
.p-property-primary__check.js-selected-request::before {
  border-bottom: 2px solid #773333;
  border-left: 2px solid #773333;
  content: "";
  display: block;
  height: 5px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
}
.p-property-primary__check + * {
  margin-top: 1rem;
}
.p-property-primary__link {
  display: block;
  height: fit-content;
  width: 100%;
}
.p-property-primary__img {
  aspect-ratio: 192/129;
  box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.25);
  height: auto;
  width: 100%;
}
.p-property-primary__img--no-image {
  background-color: #e2e1e1;
}
.p-property-primary__img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-property-primary__content {
  padding-top: 1.2rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .p-property-primary__content {
    padding-top: 0.6rem;
  }
}
.p-property-primary__content p {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.125;
}
@media screen and (max-width: 480px) {
  .p-property-primary__content p {
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
}
.p-property-primary__content p:first-of-type {
  padding-top: 0.4rem;
}
@media screen and (max-width: 1000px) {
  .p-property-primary__content p:first-of-type {
    padding-top: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-primary__content p:first-of-type {
    padding-top: 0.8rem;
  }
}
.p-property-primary__detail {
  position: absolute;
  right: 0;
  top: 1.3rem;
}
@media screen and (max-width: 480px) {
  .p-property-primary__detail {
    top: 1rem;
  }
}
.p-property-year {
  padding: 6.4rem 1.5rem 32.3rem;
}
@media screen and (max-width: 1000px) {
  .p-property-year {
    padding-bottom: 9rem;
  }
}
.p-property-year__inner {
  margin: 0 auto;
  max-width: 85.6rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-year__inner {
    max-width: 56rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-year__inner {
    max-width: 33.6rem;
  }
}
.p-property-year__ttl {
  color: #555555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.0833333333;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-property-year__ttl {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-property-year__list {
  align-items: start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  margin-top: 3rem;
  row-gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-year__list {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-year__list {
    margin-top: 1.6rem;
  }
}
.p-property-year__item {
  width: 100%;
}
.p-property-year__year {
  color: #555555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .p-property-year__year {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-top: 0.5rem;
  }
}
.p-property-year__sublist {
  align-items: start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  margin-top: 3.5rem;
  row-gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-year__sublist {
    margin-top: 2.7rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-year__sublist {
    margin-top: 1.6rem;
  }
}
.p-property-year__subitem {
  width: 100%;
}
.p-property-year__link {
  display: block;
  height: fit-content;
  width: 100%;
}
.p-property-year__upper {
  align-items: center;
  border-bottom: 0.1rem solid #000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 1000px) {
  .p-property-year__upper {
    padding-bottom: 0.4rem;
  }
}
.p-property-year__top {
  align-items: start;
  column-gap: 2.3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
}
.p-property-year__name {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.0833333333;
}
@media screen and (max-width: 480px) {
  .p-property-year__name {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-property-year__purpose {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .p-property-year__purpose {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-property-year__lower {
  align-items: start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: end;
  padding-top: 1.1rem;
}
@media screen and (max-width: 1000px) {
  .p-property-year__lower {
    flex-wrap: wrap;
    padding-left: 9rem;
    padding-top: 1rem;
    row-gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-year__lower {
    padding-left: 2.7rem;
    padding-top: 0.5rem;
    row-gap: 0.6rem;
  }
}
.p-property-year__lower p {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 1000px) {
  .p-property-year__lower p {
    font-size: 2rem;
    line-height: 1;
    padding: 0;
  }
  .p-property-year__lower p:nth-child(3n+1) {
    text-align: left;
    width: 20.5rem;
  }
  .p-property-year__lower p:nth-child(3n+2) {
    text-align: left;
    width: 14rem;
  }
  .p-property-year__lower p:nth-child(3n) {
    text-align: right;
    width: 12.3rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-year__lower p {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .p-property-year__lower p:nth-child(3n+1) {
    text-align: left;
    width: 12.3rem;
  }
  .p-property-year__lower p:nth-child(3n+2) {
    text-align: left;
    width: 7.8rem;
  }
  .p-property-year__lower p:nth-child(3n) {
    text-align: right;
    width: 8rem;
  }
}
.p-property-year__floor {
  width: 7rem;
}
.p-property-year__area {
  text-align: right;
  width: 10rem;
}
.p-property-year__structure {
  padding-right: 5.9rem;
  text-align: right;
  width: 16.8rem;
}
.p-property-year__way {
  width: 17.1rem;
}
.p-property-year__scope {
  width: 10.7rem;
}
.p-property-year__site {
  text-align: right;
  width: 8rem;
}
.p-property-single {
  padding: 7rem 1.5rem 32.3rem;
  z-index: 70;
}
@media screen and (max-width: 1000px) {
  .p-property-single {
    padding: 5.9rem 1.5rem 9rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single {
    padding-top: 2.1rem;
  }
}
.p-property-single__inner {
  margin: 0 auto;
  max-width: 86.4rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-single__inner {
    max-width: 56rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__inner {
    max-width: 33.6rem;
  }
}
.p-property-single__form {
  align-items: end;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  margin: 0 auto;
  max-width: 85.6rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-single__form {
    max-width: 56rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__form {
    max-width: 33.6rem;
  }
}
.p-property-single__check {
  display: none;
}
.p-property-single__ttl {
  color: #555555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-property-single__ttl {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-property-single__info {
  align-items: start;
  column-gap: 7.2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 7.3rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-single__info {
    column-gap: 5.6rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__info {
    flex-direction: column;
    margin-top: 1.6rem;
    row-gap: 2.4rem;
  }
}
.p-property-single__topic {
  width: 39.2rem;
}
@media screen and (max-width: 1000px) {
  .p-property-single__topic {
    width: 25.2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__topic {
    width: 100%;
  }
}
.p-property-single__topic-head {
  align-items: center;
  border-bottom: 0.1rem solid #000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 1000px) {
  .p-property-single__topic-head {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__topic-head {
    padding-bottom: 1.2rem;
  }
}
.p-property-single__topic-list {
  align-items: start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  padding: 1.3rem 0 0 6.2rem;
}
@media screen and (max-width: 1000px) {
  .p-property-single__topic-list {
    padding: 2rem 0 0 0;
    row-gap: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__topic-list {
    padding: 1.2rem 0 0 6.8rem;
    row-gap: 0.8rem;
  }
}
.p-property-single__topic-item {
  align-items: start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
}
.p-property-single__topic-item span {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .p-property-single__topic-item span {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-property-single__topic-item span:first-child {
  min-width: 14.5rem;
}
@media screen and (max-width: 1000px) {
  .p-property-single__topic-item span:first-child {
    min-width: 12rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__topic-item span:first-child {
    min-width: 9rem;
  }
}
.p-property-single__name {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1666666667;
}
.p-property-single__tag {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
}
.p-property-single__txt {
  color: #000;
  flex: 1;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .p-property-single__txt {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-property-single__picture-list {
  -ms-grid-columns: 1fr 7.2rem 1fr;
  align-items: start;
  display: -ms-grid;
  display: grid;
  gap: 8rem 7.2rem;
  grid-template-columns: repeat(2, 1fr);
  justify-content: start;
  margin-top: 7.4rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-single__picture-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    margin-top: 9rem;
    row-gap: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__picture-list {
    margin-top: 2.6rem;
    row-gap: 1.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-property-single__picture-item {
    height: 36.3rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__picture-item {
    height: 22.5rem;
  }
}
.p-property-single__picture-img {
  box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.p-property-single__picture-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-property-single__link {
  color: #773333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5555555556;
  padding: 4.6rem 0 0 2.4rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-property-single__link {
    padding: 2.5rem 0 0 3rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__link {
    font-size: 1.3rem;
    line-height: 1.5384615385;
    padding: 1.5rem 0 0 1.7rem;
  }
}
.p-property-single__link::before {
  background: url(../img/common/arrow_right-brown-circle.svg) no-repeat center center/cover;
  bottom: 0.4rem;
  content: "";
  display: block;
  height: 2rem;
  left: 0;
  position: absolute;
  width: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-property-single__link::before {
    bottom: 0.5rem;
    height: 2.3rem;
    width: 2.3rem;
  }
}
@media screen and (max-width: 480px) {
  .p-property-single__link::before {
    bottom: 0.3rem;
    height: 1.4rem;
    width: 1.4rem;
  }
}

/* -------------------------------------------*/
.u-db {
  display: block;
}

.u-dn {
  display: none;
}

@media screen and (max-width: 1000px) {
  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .u-pt {
    display: none !important;
  }
}

@media not all and (max-width: 1000px) {
  .u-st {
    display: none !important;
  }
}

@media not all and (max-width: 600px) {
  .u-sp {
    display: none !important;
  }
}

.u-mask--c-black {
  filter: brightness(0);
}

.u-mask--c-white {
  filter: brightness(0) invert(1);
}

.u-con--md {
  margin: 0 auto;
  max-width: var(--content_width);
  padding: 0 var(--content-both_space);
}

.u-con--lg {
  margin: 0 auto;
  max-width: 90%;
}

.u-c-white {
  color: #fff;
}

.u-c--b-white {
  color: #fff;
}

.u-z-1 {
  z-index: -1;
}

.u-z1 {
  z-index: 1;
}

.u-z2 {
  z-index: 2;
}

.u-z3 {
  z-index: 3;
}

.u-z10 {
  z-index: 10;
}

.u-z50 {
  z-index: 50;
}

.u-z100 {
  z-index: 100;
}

.u-z999 {
  z-index: 999;
}

.hyphen {
  position: relative;
  top: -0.08em;
}

@media not all and (max-width: 1000px) {
  .u-br--tb {
    display: none;
  }
}
@media not all and (max-width: 480px) {
  .u-br--sp {
    display: none;
  }
}

.js-fuwatto {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/*# sourceMappingURL=sourcemaps/style.css.map */