@charset "UTF-8";
/* ------------------------------------------------
 * Mixin for center - 要素中央配置する
 * @include f.center(xy); // 中央
 * @include f.center(x);  // 横中央
 * @include f.center(y);  // 縦中央
 ------------------------------------------------ */
/* ------------------------------------------------

 * transition - フェードイン効果を追加する
 * @include f.transition;
 * @include f.transition-slow;

 ------------------------------------------------ */
/* ------------------------------------------------

 * opacity - 透過効果を追加する
 * @include f.opacity;

 ------------------------------------------------ */
/* ------------------------------------------------

 * font-family - フォントの指定をする
 * @include f.font(jp); // ヒラギノ角ゴ ProN W3
 * @include f.font(jp-b); // ヒラギノ角ゴ ProN W6
 * @include f.font(jp); // ヒラギノ角ゴ ProN W6
 * @include f.font(en); // Open Sans Medium 500
 * @include f.font(en-ita); // Open Sans Medium 500 italic

 ------------------------------------------------ */
/* font */
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/earlyaccess/hannari.css");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
code, img, small, strong, var,
b, i, dl, dt, dd, ol, ul, li,
form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure,
footer, header, menu, nav, section,
audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  -webkit-text-size-adjust: none;
}

footer, header, menu, nav, section, aside, figure {
  display: block;
}

.ul,
.ol {
  list-style: none;
  list-style-type: none;
}

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

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

a {
  text-decoration: none;
  word-break: break-all;
}

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

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

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

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

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

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

html {
  font-size: 16px;
  scroll-padding-top: 110px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

body {
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  display: none;
}

/* -----------------------------------
 * 共通パーツ
 ----------------------------------- */
* {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

ul {
  list-style: none;
}

/* 改行切り替え */
br.sp--block {
  display: none;
}
@media only screen and (max-width: 767px) {
  br.sp--block {
    display: block;
  }
}
br.ipad--block {
  display: none;
}
@media only screen and (max-width: 1024px) {
  br.ipad--block {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  br.ipad--block {
    display: none;
  }
}
br.pc--block {
  display: block;
}
@media only screen and (max-width: 767px) {
  br.pc--block {
    display: none;
  }
}

/* -----------------------------------
 * 表示制御
 ----------------------------------- */
@media only screen and (max-width: 1024px) {
  .hide-sp {
    display: none !important;
  }
}

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

.hide-pc {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  .hide-pc {
    display: inline-block !important;
  }
}

/* -----------------------------------
 * 投稿0件
 ----------------------------------- */
.empty {
  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: 100px;
  padding-top: 48px;
}

/* -----------------------------------
 * リンク
 ----------------------------------- */
/* -----------------------------------
 * コンテナ
 ----------------------------------- */
.container {
  width: 100%;
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1024px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.liquid-container {
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1024px) {
  .liquid-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.liquid-container.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .liquid-container.grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------
 * 見出し
 ----------------------------------- */
.heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.heading-wrap.common {
  margin-top: 160px;
  margin-bottom: 72px;
}
@media only screen and (max-width: 1024px) {
  .heading-wrap.common {
    margin-top: 108px;
    margin-bottom: 48px;
  }
}
.heading-wrap.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .heading-wrap.sp\:center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.heading-wrap .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .heading-wrap .heading {
    -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;
    row-gap: 12px;
  }
}
.heading-wrap .heading.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .heading-wrap .heading.vertical {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 12px;
  }
}
.heading-wrap .heading .main-heading {
  position: relative;
  font-family: "ivyora-display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
}
@media only screen and (max-width: 1024px) {
  .heading-wrap .heading .main-heading {
    font-size: 24px;
  }
}
.heading-wrap .heading .sub-heading {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
}

/* -----------------------------------
 * タイトル
 ----------------------------------- */
.title__block .titlesub img[src$=".svg"] {
  width: 100%;
  height: auto;
}
.title__block .title {
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  .title__block .title {
    font-size: 16px;
  }
}
.title__block.title-top-concept .titlesub {
  max-width: 388px;
  width: 100%;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 1024px) {
  .title__block.title-top-concept .titlesub {
    max-width: 194px;
    margin: 0 auto 20px;
  }
}
.title__block.title-top-concept .title {
  text-align: center;
}
.title__block.title-top-works .titlesub {
  max-width: 624px;
  width: 100%;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .title__block.title-top-works .titlesub {
    max-width: 184px;
    margin: 0 auto 20px;
    padding: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .title__block.title-top-works .title {
    text-align: center;
  }
}
.title__block.title-top-news .titlesub {
  max-width: 145px;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .title__block.title-top-news .titlesub {
    max-width: 116px;
    margin: 0 auto 20px;
    padding: 0;
  }
}
.title__block.title-top-news .title {
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .title__block.title-top-news .title {
    text-align: center;
  }
}
.title__block.title-top-recruit .titlesub {
  max-width: 783px;
  width: 100%;
  margin: 0 0 50px auto;
}
@media only screen and (max-width: 1024px) {
  .title__block.title-top-recruit .titlesub {
    max-width: 175px;
    margin: 0 auto 20px;
    padding: 0;
  }
}
.title__block.title-top-recruit .title {
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .title__block.title-top-recruit .title {
    text-align: center;
  }
}

.pages-title__block {
  padding: 100px 50px 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block {
    padding: 40px 20px;
  }
}
.pages-title__block .titlesub img[src$=".svg"] {
  width: 100%;
  height: auto;
}
.pages-title__block .title {
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block .title {
    font-size: 16px;
  }
}
.pages-title__block.title-pages-about .titlesub {
  max-width: 616px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-about .titlesub {
    max-width: 172px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-about .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-business .titlesub {
  max-width: 890px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-business .titlesub {
    max-width: 248px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-business .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-safety .titlesub {
  max-width: 692px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-safety .titlesub {
    max-width: 193px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-safety .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-works .titlesub {
  max-width: 669px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-works .titlesub {
    max-width: 187px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-works .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-news .titlesub {
  max-width: 519px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-news .titlesub {
    max-width: 146px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-news .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-recruit .titlesub {
  max-width: 783px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-recruit .titlesub {
    max-width: 218px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-recruit .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-contact .titlesub {
  max-width: 847px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-contact .titlesub {
    max-width: 235px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-contact .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-pp .titlesub {
  max-width: 1469px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-pp .titlesub {
    max-width: 211px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-pp .title {
    text-align: center;
  }
}
.pages-title__block.title-pages-pnf .titlesub {
  max-width: 1580px;
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-pnf .titlesub {
    max-width: 172px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-title__block.title-pages-pnf .title {
    text-align: center;
  }
}

.pages-subtitle__block {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-subtitle__block {
    margin-bottom: 50px;
  }
}
.pages-subtitle__block .titlesub {
  margin-bottom: 20px;
  font-family: "ivyora-display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 50px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .pages-subtitle__block .titlesub {
    font-size: 28px;
  }
}
.pages-subtitle__block .title {
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .pages-subtitle__block .title {
    font-size: 18px;
  }
}

/* -----------------------------------
 * テキスト
 ----------------------------------- */
.text__block .heading p,
.text__block .heading h3 {
  color: #0b5a94;
  letter-spacing: 0.1em;
}
.text__block .text p {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .text__block .text p {
    font-size: 18px;
  }
}

.hissu {
  color: #ff4500;
}

.pre-wrap {
  white-space: pre-wrap;
}

/* -----------------------------------
 * ボタン
 ----------------------------------- */
.rounded-btn {
  position: relative;
  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;
  width: 190px;
  min-height: 56px;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 9999px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .rounded-btn {
    width: 180px;
    min-height: 48px;
  }
}
.rounded-btn * {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.rounded-btn:hover {
  background-color: #000;
  color: #fff;
}
.rounded-btn:hover .text {
  color: #fff;
}
.rounded-btn:hover .arrow {
  color: #fff;
}
.rounded-btn .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.rounded-btn.wide {
  width: 290px;
}
@media only screen and (max-width: 1024px) {
  .rounded-btn.wide {
    width: 270px;
  }
}
.rounded-btn.full {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .rounded-btn.sp\:wide {
    width: 270px;
  }
}
.rounded-btn.white {
  color: #fff;
  border-color: #fff;
}
.rounded-btn.white .text {
  color: #fff;
}
.rounded-btn.white .arrow {
  color: #fff;
}
.rounded-btn.white:hover {
  background-color: #fff;
  color: #000;
}
.rounded-btn.white:hover .text {
  color: #000;
}
.rounded-btn.white:hover .arrow {
  color: #000;
}
.rounded-btn.orange {
  color: #fca517;
  border-color: #fca517;
}
.rounded-btn.orange .text {
  color: #fca517;
}
.rounded-btn.orange .arrow {
  color: #fca517;
}
.rounded-btn.orange:hover {
  background-color: #fca517;
  color: #fff;
}
.rounded-btn.orange:hover .text {
  color: #fff;
}
.rounded-btn.orange:hover .arrow {
  color: #fff;
}
.rounded-btn.fill.white {
  background-color: #fff;
}
.rounded-btn.fill.orange {
  background-color: #fca517;
  color: #fff;
}
.rounded-btn.fill.orange .text {
  color: #fff;
}
.rounded-btn.fill.orange .arrow {
  color: #fff;
}
.rounded-btn.fill.orange:hover .text {
  color: #fca517;
}
.rounded-btn.fill.orange:hover .arrow {
  color: #fca517;
}
.rounded-btn.fill:hover {
  background: transparent;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

/* -----------------------------------
 * リスト
 ----------------------------------- */
.dot-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dot-list > li::before {
  content: "・";
}

/* -----------------------------------
 * hover
 ----------------------------------- */
/* hover: 半透明 */
.hover-translucent {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .hover-translucent:hover {
    opacity: 0.5;
  }
}
.hover-translucent.is-hover {
  opacity: 0.5;
}

.hover-underline .hover-underline-target {
  display: inline;
  background: -o-linear-gradient(bottom, currentColor 2px, transparent 99%) no-repeat;
  background: linear-gradient(to top, currentColor 2px, transparent 99%) no-repeat;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-position: 0% 100%;
  background-size: 0% 2px;
}
@media (hover: hover) and (pointer: fine) {
  .hover-underline:hover .hover-underline-target {
    background-size: 200% 2px;
  }
}
.hover-underline:focus .hover-underline-target, .hover-underline.is-hover .hover-underline-target {
  background-size: 200% 2px;
}

.hover-img-zoomup .thumbnail,
.hover-img-zoomup .image {
  overflow: hidden;
}
.hover-img-zoomup .thumbnail img,
.hover-img-zoomup .image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .hover-img-zoomup:hover .thumbnail img,
.hover-img-zoomup:hover .image img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.hover-img-zoomup.is-hover .thumbnail img,
.hover-img-zoomup.is-hover .image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* -----------------------------------
 * display
 ----------------------------------- */
.hidden {
  display: none;
}

.minimum-hidden {
  display: block !important;
  overflow: hidden;
  width: 0;
  height: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}

/* -----------------------------------
 * マージン
 ----------------------------------- */
.mb-25 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .mb-25 {
    margin-bottom: 32px;
  }
}

.mb-37 {
  margin-bottom: 148px;
}
@media only screen and (max-width: 1024px) {
  .mb-37 {
    margin-bottom: 48px;
  }
}

@media only screen and (max-width: 1024px) {
  .sp\:mb-12 {
    margin-bottom: 48px;
  }
}

#menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 245px;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #000;
  color: #fff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  #menu {
    width: 100%;
  }
}
#menu .menu__inner {
  padding: 40px 16px 54px 54px;
}
@media only screen and (max-width: 1024px) {
  #menu .menu__inner {
    padding: 16px 16px;
  }
}
#menu .menu__inner .logo-close-menu-btn__wrap {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  #menu .menu__inner .logo-close-menu-btn__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;
  }
}
#menu .menu__inner .logo-close-menu-btn__wrap .logo {
  display: none;
}
@media only screen and (max-width: 1024px) {
  #menu .menu__inner .logo-close-menu-btn__wrap .logo {
    display: block;
  }
}
#menu .menu__inner .logo-close-menu-btn__wrap .logo a svg {
  width: 160px;
}
#menu .menu__inner .logo-close-menu-btn__wrap .logo a svg path {
  color: #fff;
}
#menu .menu__inner .logo-close-menu-btn__wrap button img {
  width: 22px;
}
@media only screen and (max-width: 1024px) {
  #menu .menu__inner .logo-close-menu-btn__wrap button img {
    width: 20px;
  }
}
#menu .menu__inner > nav {
  margin-bottom: 48px;
}
#menu .menu__inner > nav > ul {
  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: 24px;
}
#menu .menu__inner > nav > ul > li a {
  color: #fff;
}
#menu .menu__inner > nav > ul > li .works-categories__wrap {
  display: none;
  padding: 0 24px;
  margin-top: 16px;
}
@media only screen and (max-width: 1024px) {
  #menu .menu__inner > nav > ul > li .works-categories__wrap {
    display: block;
  }
}
#menu .menu__inner > nav > ul > li .works-categories__wrap .works-nav {
  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: 16px;
}
#menu .menu__inner > nav > ul > li .works-categories__wrap .works-nav p {
  color: #fff;
}
#menu .menu__inner > nav > ul > li .works-categories__wrap .works-nav > nav {
  max-width: 280px;
  padding-left: 24px;
}
#menu .menu__inner > nav > ul > li .works-categories__wrap .works-nav > nav > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
#menu .menu__inner .sns-link__wrap {
  margin-bottom: 24px;
}
#menu .menu__inner .sns-link__wrap a svg {
  width: 20px;
}
#menu .menu__inner .sns-link__wrap a svg path {
  color: #fff;
}
#menu .menu__inner .privacy-policy-link__wrap a {
  color: #8d8b8c;
  font-size: 12px;
}

body.is-open-menu #menu, body.is-open-menu-fv #menu {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (max-width: 1024px) {
  body.is-open-menu-fv #menu {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/* -----------------------------------
 * header
 ----------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 24px 32px;
}
.header .header-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #302d2c;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.header .header__inner {
  position: relative;
  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;
  width: 100%;
}
.header .header__inner h1 a {
  position: relative;
  display: block;
}
.header .header__inner h1 a img {
  width: 240px;
}
@media only screen and (max-width: 1024px) {
  .header .header__inner h1 a img {
    width: 160px;
  }
}
.header .header__inner h1 a img.logo-black {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.header .header__inner .nav-menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
}
.header .header__inner .nav-menu-wrap .nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media only screen and (max-width: 1024px) {
  .header .header__inner .nav-menu-wrap .nav-wrap {
    display: none;
  }
}
.header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 24px;
}
.header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar {
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 1px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar.top {
  top: 0;
}
.header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar.middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar.bottom {
  bottom: 0;
}

.pages-top .header {
  background-color: transparent;
}
.pages-top .header .header-bg {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.pages-top .header .header__inner h1 a img.logo-black {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow-y: auto;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  padding: 105px 0 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .menu-container {
    padding: 80px 0 0;
  }
}
.menu-container .menu-container__inner {
  width: 100%;
  height: 100%;
}
.menu-container .menu-container__inner .container {
  min-height: 680px;
  padding-top: 105px;
  padding-bottom: 105px;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.menu-container .menu-container__inner .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  padding: 40px 0;
  border-top: 1px solid #302d2c;
  border-bottom: 1px solid #302d2c;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
    padding: 24px 0;
  }
}
.menu-container .menu-container__inner .link-list ul {
  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: 40px;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .link-list ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .link-list ul li {
    width: calc((100% - 16px) / 2);
  }
}
.menu-container .menu-container__inner .link-list ul li a {
  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: 12px;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .link-list ul li a {
    row-gap: 8px;
  }
}
.menu-container .menu-container__inner .link-list ul li a span.jp {
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .link-list ul li a span.jp {
    font-size: 14px;
  }
}
.menu-container .menu-container__inner .link-list ul li a span.en {
  font-family: "ivyora-display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .link-list ul li a span.en {
    font-size: 12px;
  }
}
.menu-container .menu-container__inner .contact-other-links-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .contact-other-links-grid {
    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: 48px;
  }
}
.menu-container .menu-container__inner .contact-other-links-grid .contact-panel {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
  padding: 0;
  border: none;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .contact-other-links-grid .contact-panel {
    max-width: auto;
    margin: 0;
  }
}
.menu-container .menu-container__inner .contact-other-links-grid .contact-panel .contact__heading {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .contact-other-links-grid .contact-panel .contact__heading .heading {
    margin-bottom: 0;
  }
}
.menu-container .menu-container__inner .contact-other-links-grid .contact-panel .tel-link-wrap {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .contact-other-links-grid .contact-panel .tel-link-wrap .tel-box {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .contact-other-links-grid .contact-panel .tel-link-wrap .tel-box .tel {
    text-align: left;
  }
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .contact-other-links-grid .contact-panel .tel-link-wrap .tel-box .info {
    text-align: left;
  }
}
.menu-container .menu-container__inner .contact-other-links-grid .other-links {
  -ms-grid-column-span: 1;
  grid-column: span 1/span 1;
}
.menu-container .menu-container__inner .contact-other-links-grid .other-links ul {
  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: 24px;
  width: 285px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .menu-container .menu-container__inner .contact-other-links-grid .other-links ul {
    margin-left: 0;
  }
}

body.is-open-menu .header .header-bg {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0) !important;
          clip-path: inset(0 0 0 0) !important;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1;
}
body.is-open-menu .header .header__inner {
  z-index: 2;
}
body.is-open-menu .header .header__inner h1 a img.logo-black {
  -webkit-clip-path: inset(0 0 0 0) !important;
          clip-path: inset(0 0 0 0) !important;
}
body.is-open-menu .header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar {
  background-color: #000;
}
body.is-open-menu .header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar.top {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(32deg);
      -ms-transform: translate(-50%, -50%) rotate(32deg);
          transform: translate(-50%, -50%) rotateZ(32deg);
  width: 114%;
}
body.is-open-menu .header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar.middle {
  opacity: 0;
}
body.is-open-menu .header .header__inner .nav-menu-wrap .menu-toggle-wrap .menu-toggle .bar.bottom {
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-32deg);
      -ms-transform: translate(-50%, -50%) rotate(-32deg);
          transform: translate(-50%, -50%) rotateZ(-32deg);
  width: 114%;
}
body.is-open-menu .menu-container {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.footer .official-sns {
  background-color: #fca517;
  padding: 48px 20px 64px;
}
.footer .official-sns * {
  color: #fff;
}
.footer .official-sns .official-sns__heading {
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .footer .official-sns .official-sns__heading {
    margin-bottom: 24px;
  }
}
.footer .official-sns .sns-links {
  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: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.footer .official-sns .sns-links .link-instagram img {
  width: 60px;
}
@media only screen and (max-width: 1024px) {
  .footer .official-sns .sns-links .link-instagram img {
    width: 40px;
  }
}
.footer .official-sns .sns-links .vertical-bar {
  background-color: #fff;
  width: 1px;
  height: 100px;
}
@media only screen and (max-width: 1024px) {
  .footer .official-sns .sns-links .vertical-bar {
    height: 60px;
  }
}
.footer .official-sns .sns-links .link-facebook img {
  width: 28px;
}
@media only screen and (max-width: 1024px) {
  .footer .official-sns .sns-links .link-facebook img {
    width: 18px;
  }
}
.footer .official-sns .sns-links .link-youtube img {
  width: 75px;
}
@media only screen and (max-width: 1024px) {
  .footer .official-sns .sns-links .link-youtube img {
    width: 50px;
  }
}
.footer .contact {
  background-color: #8d8b8c;
  padding-top: 100px;
  padding-bottom: 140px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .footer .contact {
    padding-top: 48px;
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}
.footer .contact * {
  color: #fff;
}
.footer .contact .contact__heading {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .footer .contact .contact__heading {
    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;
    row-gap: 24px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer .contact .contact__heading .heading {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .contact .contact__heading .description {
  line-height: 2.8;
}
@media only screen and (max-width: 1024px) {
  .footer .contact .contact__heading .description {
    text-align: center;
    line-height: 2;
  }
}
.footer .contact .tel-wrap {
  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;
  row-gap: 20px;
  padding: 48px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .footer .contact .tel-wrap {
    row-gap: 16px;
    padding: 24px 0;
  }
}
.footer .contact .tel-wrap p,
.footer .contact .tel-wrap p a {
  text-align: center;
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 48px;
}
@media only screen and (max-width: 1024px) {
  .footer .contact .tel-wrap p,
.footer .contact .tel-wrap p a {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer .contact .tel-wrap small {
    font-size: 12px;
  }
}
.footer .contact .contact-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media only screen and (max-width: 1024px) {
  .footer .contact .contact-list {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.footer .contact .contact-list .contact-item .thumbnail img {
  aspect-ratio: 1.4/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.footer .contact .contact-list .contact-item .title-wrap {
  position: relative;
  padding-top: 36px;
}
@media only screen and (max-width: 1024px) {
  .footer .contact .contact-list .contact-item .title-wrap {
    padding-top: 24px;
  }
}
.footer .contact .contact-list .contact-item .title-wrap .vertical-bar {
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  width: 1px;
  height: 36px;
}
.footer .contact .contact-list .contact-item .title-wrap .title {
  text-align: center;
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer .contact .contact-list .contact-item .title-wrap .title {
    font-size: 14px;
  }
}
.footer .studio-model-house-service-area {
  margin-bottom: 140px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area {
    margin-bottom: 80px;
  }
}
.footer .studio-model-house-service-area .content-left {
  padding-right: 84px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left {
    padding-right: 0;
    margin-bottom: 48px;
  }
}
.footer .studio-model-house-service-area .content-left .studio-model-house__heading {
  margin-bottom: 48px;
}
.footer .studio-model-house-service-area .content-left > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left > ul {
    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: 48px;
  }
}
.footer .studio-model-house-service-area .content-left > ul > li {
  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: 24px;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left > ul > li {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 160px 16px 1fr;
    grid-template-columns: 160px 1fr;
    row-gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.footer .studio-model-house-service-area .content-left > ul > li .thumbnail img {
  aspect-ratio: 1.7/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left > ul > li .thumbnail img {
    max-width: 160px;
  }
}
.footer .studio-model-house-service-area .content-left > ul > li .overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.footer .studio-model-house-service-area .content-left > ul > li .overview .title {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left > ul > li .overview .title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.footer .studio-model-house-service-area .content-left > ul > li .overview .tel,
.footer .studio-model-house-service-area .content-left > ul > li .overview .tel a {
  font-size: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left > ul > li .overview .tel,
.footer .studio-model-house-service-area .content-left > ul > li .overview .tel a {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.footer .studio-model-house-service-area .content-left > ul > li .overview .info {
  line-height: 1.9;
  margin-top: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left > ul > li .overview .info {
    margin-bottom: 0;
  }
}
.footer .studio-model-house-service-area .content-left > ul > li .link-box {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-left > ul > li .link-box {
    grid-column: 1/-1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .studio-model-house-service-area .content-right .service-area__heading {
  margin-bottom: 40px;
}
.footer .studio-model-house-service-area .content-right .overview {
  padding-top: 40px;
}
.footer .studio-model-house-service-area .content-right .overview.bg-area {
  background: url(./img/footer/area.png) 30% 0%/contain no-repeat;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-right .overview.bg-area {
    background: url(./img/footer/area.png) 50% 0%/contain no-repeat;
  }
}
.footer .studio-model-house-service-area .content-right .overview p.area {
  font-size: 20px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-right .overview p.area {
    font-size: 18px;
    margin-bottom: 48px;
  }
}
.footer .studio-model-house-service-area .content-right .overview p.cities {
  line-height: 3.1;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-right .overview p.cities {
    line-height: 2;
    margin-bottom: 64px;
  }
}
.footer .studio-model-house-service-area .content-right .overview p.description {
  line-height: 2.5;
}
@media only screen and (max-width: 1024px) {
  .footer .studio-model-house-service-area .content-right .overview p.description {
    font-size: 12px;
    line-height: 2;
  }
}
.footer .copyright {
  background-color: #302d2c;
  padding: 24px 10px;
}
@media only screen and (max-width: 1024px) {
  .footer .copyright {
    padding: 16px 10px;
  }
}
.footer .copyright p {
  color: #fff;
  text-align: center;
  font-family: "ivyora-display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* -----------------------------------
 * information-list
 ----------------------------------- */
.information .information-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: 28px;
}
.information .information-list .information-item {
  padding-bottom: 28px;
  border-bottom: 1px solid #000;
}
.information .information-list .information-item .information-list-item {
  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: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.information .information-list .information-item .information-list-item .overview {
  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: 16px;
}
.information .information-list .information-item .information-list-item .overview .title {
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .information .information-list .information-item .information-list-item .overview .title {
    font-size: 16px;
  }
}
.information .information-panel-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 48px;
}
@media only screen and (max-width: 1024px) {
  .information .information-panel-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .information .information-panel-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.information .information-panel-list .information-panel-item a {
  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: 20px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .information .information-panel-list .information-panel-item a {
    row-gap: 12px;
  }
}
.information .information-panel-list .information-panel-item a .thumbnail {
  position: relative;
}
.information .information-panel-list .information-panel-item a .thumbnail img {
  aspect-ratio: 380/230;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.information .information-panel-list .information-panel-item a .thumbnail .address {
  position: absolute;
  bottom: 0;
  right: 0;
  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: rgba(255, 255, 255, 0.8);
  min-width: 140px;
  min-height: 42px;
  padding: 12px;
}
@media only screen and (max-width: 1024px) {
  .information .information-panel-list .information-panel-item a .thumbnail .address {
    min-width: 120px;
    min-height: 34px;
    padding: 8px;
  }
}
.information .information-panel-list .information-panel-item a .description {
  line-height: 1.6;
}
.information .information-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 72px 200px;
  grid-template-columns: 1fr 200px;
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
}
@media only screen and (max-width: 1024px) {
  .information .information-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 32px;
    margin-bottom: 48px;
  }
}
.information .information-grid .filter-lists {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .information .information-grid .filter-lists {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.information .information-grid .filter-lists .filter-lists__inner {
  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: 40px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
@media only screen and (max-width: 1024px) {
  .information .information-grid .filter-lists .filter-lists__inner {
    row-gap: 32px;
  }
}
.information .information-grid .filter-lists .filter-lists__inner .filter-list-wrap .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  background-color: #f1f2f1;
  width: 100%;
  margin-bottom: 16px;
}
.information .information-grid .filter-lists .filter-lists__inner .filter-list-wrap .title::before {
  content: "";
  display: block;
  background-color: #707070;
  width: 8px;
  height: 36px;
}
.information .information-grid .filter-lists .filter-lists__inner .filter-list-wrap .filter-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: 20px;
  padding-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .information .information-grid .filter-lists .filter-lists__inner .filter-list-wrap .filter-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .information .information-grid .filter-lists .filter-lists__inner .filter-list-wrap .filter-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -----------------------------------
 * works-list
 ----------------------------------- */
.works .works-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  row-gap: 48px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .works .works-list {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 24px;
  }
}
.works .works-list .post-works-item {
  height: 100%;
}
.works .works-list .post-works-item a {
  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: 16px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .works .works-list .post-works-item a {
    row-gap: 8px;
  }
}
.works .works-list .post-works-item a .thumbnail img {
  aspect-ratio: 530/570;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.works .works-list .post-works-item a .overview {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.works .works-list .post-works-item a .overview .title {
  line-height: 1.6;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .works .works-list .post-works-item a .overview .title {
    margin-bottom: 8px;
  }
}
.works .works-list .post-works-item a .overview .address {
  padding-top: 12px;
  border-top: 1px solid #707070;
  margin-top: auto;
}
@media only screen and (max-width: 1024px) {
  .works .works-list .post-works-item a .overview .address {
    padding-top: 8px;
  }
}

/* -----------------------------------
 * interview-list
 ----------------------------------- */
.interview .interview-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 56px;
}
@media only screen and (max-width: 1024px) {
  .interview .interview-list {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 24px;
  }
}
.interview .interview-list .post-interview-item a {
  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: 20px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .interview .interview-list .post-interview-item a {
    row-gap: 12px;
  }
}
.interview .interview-list .post-interview-item a .thumbnail {
  position: relative;
}
.interview .interview-list .post-interview-item a .thumbnail img {
  aspect-ratio: 380/230;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.interview .interview-list .post-interview-item a .thumbnail .address {
  position: absolute;
  bottom: 0;
  right: 0;
  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: rgba(255, 255, 255, 0.8);
  min-width: 140px;
  min-height: 42px;
  padding: 12px;
}
@media only screen and (max-width: 1024px) {
  .interview .interview-list .post-interview-item a .thumbnail .address {
    min-width: 120px;
    min-height: 34px;
    padding: 8px;
  }
}
.interview .interview-list .post-interview-item a .description {
  line-height: 1.5;
}

/* -----------------------------------
 * about-us-list
 ----------------------------------- */
.about-us .about-us-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  row-gap: 64px;
}
@media only screen and (max-width: 1024px) {
  .about-us .about-us-list {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 24px;
  }
}
.about-us .about-us-list .about-us-item a {
  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: 24px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .about-us .about-us-list .about-us-item a {
    row-gap: 12px;
  }
}
.about-us .about-us-list .about-us-item a .thumbnail {
  position: relative;
}
.about-us .about-us-list .about-us-item a .thumbnail img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.about-us .about-us-list .about-us-item a .title {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .about-us .about-us-list .about-us-item a .title {
    font-size: 14px;
  }
}

/* -----------------------------------
 * staff-blog-list / staff-blog-detail
 ----------------------------------- */
.staff-blog .staff-blog-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: 28px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .staff-blog .staff-blog-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.staff-blog .staff-blog-list .staff-blog-item {
  padding-bottom: 28px;
  border-bottom: 1px solid #707070;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list .staff-blog-item {
    padding-bottom: 24px;
  }
}
.staff-blog .staff-blog-list .staff-blog-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list .staff-blog-item a {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.staff-blog .staff-blog-list .staff-blog-item a .thumbnail img {
  aspect-ratio: 22/14;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 220px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list .staff-blog-item a .thumbnail img {
    max-width: 160px;
  }
}
.staff-blog .staff-blog-list .staff-blog-item a .overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.staff-blog .staff-blog-list .staff-blog-item a .overview .date {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list .staff-blog-item a .overview .date {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.staff-blog .staff-blog-list .staff-blog-item a .overview .title {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list .staff-blog-item a .overview .title {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.staff-blog .staff-blog-list .staff-blog-item a .overview .category-writer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 8px;
  padding-bottom: 8px;
  margin-top: auto;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list .staff-blog-item a .overview .category-writer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-list .staff-blog-item a .overview .category-writer .category,
.staff-blog .staff-blog-list .staff-blog-item a .overview .category-writer .writer {
    font-size: 12px;
  }
}
.staff-blog .staff-blog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 72px 200px;
  grid-template-columns: 1fr 200px;
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 32px;
    margin-bottom: 48px;
  }
}
.staff-blog .staff-blog-grid .filter-lists {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-grid .filter-lists {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.staff-blog .staff-blog-grid .filter-lists .filter-lists__inner {
  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: 40px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-grid .filter-lists .filter-lists__inner {
    row-gap: 32px;
  }
}
.staff-blog .staff-blog-grid .filter-lists .filter-lists__inner .filter-list-wrap .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  background-color: #f1f2f1;
  width: 100%;
  margin-bottom: 16px;
}
.staff-blog .staff-blog-grid .filter-lists .filter-lists__inner .filter-list-wrap .title::before {
  content: "";
  display: block;
  background-color: #707070;
  width: 8px;
  height: 36px;
}
.staff-blog .staff-blog-grid .filter-lists .filter-lists__inner .filter-list-wrap .filter-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: 20px;
  padding-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog .staff-blog-grid .filter-lists .filter-lists__inner .filter-list-wrap .filter-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .staff-blog .staff-blog-grid .filter-lists .filter-lists__inner .filter-list-wrap .filter-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

body.is-open-menu {
  overflow: hidden;
}

/* -----------------------------------
 * 注意書き
 ----------------------------------- */
.warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
}
.warning .warning--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .warning .warning--item {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .warning .warning--item {
    width: 80%;
  }
}
.warning .warning--item .text__block p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .warning .warning--item .text__block p {
    font-size: 14px;
  }
}
.warning .warning--item img {
  display: block;
  margin: 0 40px 0 0;
  width: 130px;
}
.warning.is-show {
  display: block;
}

.fv-wrap {
  position: relative;
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100);
  margin-bottom: 40px;
}
.fv-wrap > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv-wrap .lead-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fv-wrap .lead-box .lead {
  text-align: center;
  color: #fff;
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 40px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .fv-wrap .lead-box .lead {
    font-size: 32px;
  }
}

.concept {
  background-color: #f1f2f1;
  padding-top: 96px;
  padding-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .concept {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.concept .concept__heading {
  margin-bottom: 40px;
}
.concept .lead-box {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .concept .lead-box {
    margin-bottom: 48px;
  }
}
.concept .lead-box .lead {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  min-width: 750px;
  padding-bottom: 40px;
  border-bottom: 1px solid #707070;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .concept .lead-box .lead {
    font-size: 28px;
    min-width: auto;
    margin-bottom: 32px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.concept .lead-box .sub-lead {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 28px;
}
@media only screen and (max-width: 1024px) {
  .concept .lead-box .sub-lead {
    font-size: 20px;
  }
}
.concept .description {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .concept .description {
    margin-bottom: 48px;
  }
}
.concept .description p {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
  .concept .description p {
    font-size: 14px;
  }
}
.concept .concept-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .concept .concept-list {
    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;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .concept .concept-list li {
    width: calc((100% - 24px) / 3);
  }
}
.concept .concept-list li .thumbnail {
  position: relative;
  z-index: 1;
}
.concept .concept-list li .thumbnail img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.concept .concept-list li .title-box {
  position: relative;
  padding-top: 36px;
}
@media only screen and (max-width: 1024px) {
  .concept .concept-list li .title-box {
    padding-top: 24px;
  }
}
.concept .concept-list li .title-box .vertical-bar {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #302d2c;
  width: 1px;
  height: 32px;
}
@media only screen and (max-width: 1024px) {
  .concept .concept-list li .title-box .vertical-bar {
    height: 20px;
  }
}
.concept .concept-list li .title-box .title {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .concept .concept-list li .title-box .title {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
}

.pagination {
  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: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.pagination .number {
  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;
  min-width: 36px;
  min-height: 36px;
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pagination .number.current {
  background-color: #000;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .pagination .number:hover {
    background-color: #000;
    color: #fff;
  }
}
.pagination .prev {
  margin-right: 8px;
}
.pagination .next {
  margin-left: 8px;
}

.article-body {
  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: 28px;
}
@media only screen and (max-width: 1024px) {
  .article-body {
    row-gap: 20px;
  }
}
.article-body .title {
  font-size: 24px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .article-body .title {
    font-size: 20px;
  }
}
.article-body .text,
.article-body .text p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .article-body .text,
.article-body .text p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.article-body .text {
  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: 8px;
}
.article-body .text p {
  margin-bottom: 0;
}
.article-body .text a {
  color: #0b5a94;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .article-body .text a:hover {
    opacity: 0.5;
  }
}
.article-body .text a > span {
  color: #0b5a94;
  text-decoration: underline;
}
.article-body .text p a > img {
  max-width: 240px;
}
.article-body .text p > img,
.article-body .text p strong img {
  -o-object-fit: contain;
     object-fit: contain;
  text-align: left;
  max-height: 800px;
}
.article-body .image {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .article-body .image {
    margin-bottom: 0px;
  }
}
.article-body .image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.article-body .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .article-body .grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.article-body .grid .col {
  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: 32px;
}
.article-body p:empty {
  display: none;
}
.article-body dl.qa {
  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: 20px;
}
@media only screen and (max-width: 1024px) {
  .article-body dl.qa {
    row-gap: 16px;
  }
}
.article-body dl.qa dt,
.article-body dl.qa dd {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 48px 1fr;
  grid-template-columns: 48px 1fr;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media only screen and (max-width: 1024px) {
  .article-body dl.qa dt,
.article-body dl.qa dd {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.article-body dl.qa dt .icon-question {
  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: #8d8b8c;
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
}
@media only screen and (max-width: 1024px) {
  .article-body dl.qa dt .icon-question {
    font-size: 20px;
  }
}
.article-body dl.qa dt .question {
  font-size: 24px;
  line-height: 1.6;
  padding-top: 4px;
}
@media only screen and (max-width: 1024px) {
  .article-body dl.qa dt .question {
    font-size: 20px;
    padding-top: 8px;
  }
}
.article-body dl.qa dd .icon-answer {
  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: #8d8b8c;
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
}
@media only screen and (max-width: 1024px) {
  .article-body dl.qa dd .icon-answer {
    font-size: 20px;
  }
}
.article-body dl.qa dd .answer,
.article-body dl.qa dd .answer * {
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .article-body dl.qa dd .answer,
.article-body dl.qa dd .answer * {
    font-size: 16px;
  }
}
.article-body dl.qa dd .answer {
  padding-top: 8px;
}
.article-body .link-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 36px 0;
}
@media only screen and (max-width: 1024px) {
  .article-body .link-btn-wrap {
    padding: 20px 0;
  }
}
.article-body .link-btn-wrap .rounded-btn .text {
  font-size: 16px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .article-body .link-btn-wrap .rounded-btn .text {
    font-size: 14px;
  }
}

.navigation {
  padding: 32px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.navigation ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 56px 48px 1fr 48px 120px 48px 1fr 48px 56px;
  grid-template-columns: 56px 1fr 120px 1fr 56px;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media only screen and (max-width: 1024px) {
  .navigation ul {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 16px auto 16px auto;
    grid-template-rows: auto auto auto;
    row-gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .navigation ul > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .navigation ul > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .navigation ul > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .navigation ul > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .navigation ul > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .navigation ul > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation ul .prev-text-link-box {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.navigation ul .prev-text-link-box .prev {
  display: block;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .navigation ul .prev-panel-link-box {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
.navigation ul .prev-panel-link-box .prev {
  display: block;
  width: 100%;
  max-width: 380px;
}
@media only screen and (max-width: 1024px) {
  .navigation ul .back-to-list-box {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/span 2;
    -ms-grid-row: 1;
    grid-row: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.navigation ul .back-to-list-box .back-to-list {
  display: block;
  height: 100%;
}
.navigation ul .back-to-list-box .back-to-list .text-box p {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .navigation ul .next-panel-link-box {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
.navigation ul .next-panel-link-box .next {
  display: block;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .navigation ul .next-text-link-box {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.navigation ul .next-text-link-box .next {
  display: block;
  height: 100%;
}
.navigation ul .text-box {
  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: 24px;
  padding-top: min(5vw, 80px);
}
@media only screen and (max-width: 1024px) {
  .navigation ul .text-box {
    row-gap: 8px;
    padding-top: 0;
  }
}
.navigation ul .text-box p {
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .navigation ul .text-box p {
    text-align: center;
    font-size: 16px;
  }
}
.navigation ul .panel .panel__inner {
  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: 20px;
}
@media only screen and (max-width: 1024px) {
  .navigation ul .panel .panel__inner {
    row-gap: 8px;
  }
}
.navigation ul .panel .panel__inner .thumbnail img {
  aspect-ratio: 1.65/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.navigation ul .panel .panel__inner .title {
  line-height: 1.6;
}

.detail-container .detail-content {
  display: none;
  overflow: hidden;
}

.accordion-container .accordion-toggle {
  width: 100%;
}
.accordion-container .accordion-toggle > button {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 24px;
  grid-template-columns: 1fr 24px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .accordion-container .accordion-toggle > button {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.accordion-container .accordion-toggle > button .icon-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 24px;
}
@media only screen and (max-width: 1024px) {
  .accordion-container .accordion-toggle > button .icon-toggle {
    margin-right: 0;
  }
}
.accordion-container .accordion-toggle > button .icon-toggle::before, .accordion-container .accordion-toggle > button .icon-toggle::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #000;
}
.accordion-container .accordion-toggle > button .icon-toggle::before {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100%;
}
.accordion-container .accordion-toggle > button .icon-toggle::after {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
}
.accordion-container .accordion-content {
  display: none;
}
.accordion-container.is-open .accordion-toggle .icon-toggle::before {
  display: none;
}
.accordion-container.is-open .accordion-content {
  display: block;
}

.form {
  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: 40px;
}
@media only screen and (max-width: 1024px) {
  .form {
    row-gap: 48px;
  }
}
.form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  /* 枠線を消す */
  min-width: 0;
  /* Safari などでのはみ出し防止 */
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 48px 1fr;
  grid-template-columns: 300px 1fr;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .form fieldset {
    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: 12px;
  }
}
.form fieldset > div {
  height: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #302d2c;
}
@media only screen and (max-width: 1024px) {
  .form fieldset > div {
    padding-bottom: 12px;
  }
}
.form fieldset.textarea-wrap > div {
  padding-bottom: 8px;
}
@media only screen and (max-width: 1024px) {
  .form fieldset.textarea-wrap > div {
    padding-bottom: 12px;
  }
}
.form fieldset legend {
  margin: 0;
  padding: 0;
  border: 0;
  /* 枠線を消す */
  float: none;
  /* デフォルトでfloatされるブラウザ対策 */
  width: auto;
  /* IEなどでの強制幅を防ぐ */
  max-width: 100%;
  /* はみ出し防止 */
  white-space: normal;
  /* 改行可にする */
}
.form fieldset input[type=text]:not(.datetimepicker),
.form fieldset input[type=email]:not(.datetimepicker),
.form fieldset input[type=password]:not(.datetimepicker) {
  line-height: 1.3;
  width: 100%;
}
.form fieldset textarea {
  resize: vertical;
  line-height: 1.9;
  width: 100%;
  min-height: calc(1em * 1.9);
}
.form fieldset .radio-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
}
@media only screen and (max-width: 1024px) {
  .form fieldset .radio-btns {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
.form fieldset .radio-btns label {
  cursor: pointer;
}
.form fieldset .radio-btns label input {
  display: none;
}
.form fieldset .radio-btns label > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.form fieldset .radio-btns label > span::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid #302d2c;
  border-radius: 9999px;
}
.form fieldset .radio-btns label input[type=radio]:checked ~ span::before {
  background-color: #302d2c;
}
.form fieldset .checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  row-gap: 12px;
}
@media only screen and (max-width: 1024px) {
  .form fieldset .checkboxes {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
.form fieldset .checkboxes label {
  cursor: pointer;
}
.form fieldset .checkboxes label input {
  display: none;
}
.form fieldset .checkboxes label > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.form fieldset .checkboxes label > span::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid #302d2c;
}
.form fieldset .checkboxes label input[type=checkbox]:checked ~ span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.15em;
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
  width: 0.7em;
  height: 0.3em;
  border-left: 2px solid #302d2c;
  border-bottom: 2px solid #302d2c;
}
.form fieldset .checkboxes .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.form fieldset .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  row-gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .form fieldset .dates {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 16px;
  }
}
.form fieldset .dates .date-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.form fieldset .dates .date-item .hasDatepicker {
  width: auto !important;
}
.form .submit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  padding-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .form .submit-box {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    padding-top: 0;
  }
}

.pages-request .form-step2,
.pages-reservation-model-house .form-step2,
.pages-reservation .form-step2,
.pages-recruit .form-step2 {
  display: none;
}

.pages-confirmation .description {
  margin-bottom: 100px;
}
.pages-confirmation .description p {
  line-height: 1.9;
}
.pages-confirmation .form fieldset.textarea-wrap > div {
  padding-bottom: 16px;
}
.pages-confirmation .form-step1 {
  display: none;
}

.pages-send .description {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-send .description {
    margin-bottom: 48px;
  }
}
.pages-send .description p {
  line-height: 1.9;
}
.pages-send .link-box {
  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;
}

.contact-panel {
  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: 48px;
  padding: 48px 72px;
  border: 1px solid #302d2c;
}
@media only screen and (max-width: 1024px) {
  .contact-panel {
    row-gap: 24px;
    max-width: 500px;
    padding: 24px;
    margin: 0 auto;
  }
}
.contact-panel .contact__heading {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  .contact-panel .contact__heading {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .contact-panel .contact__heading .heading {
    margin-bottom: 24px;
  }
}
.contact-panel .contact__heading .description {
  line-height: 2.8;
}
@media only screen and (max-width: 1024px) {
  .contact-panel .contact__heading .description {
    line-height: 2;
  }
}
.contact-panel .tel-link-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .contact-panel .tel-link-wrap {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-panel .tel-link-wrap .tel-box {
  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: 20px;
}
@media only screen and (max-width: 1024px) {
  .contact-panel .tel-link-wrap .tel-box {
    row-gap: 16px;
    margin-bottom: 24px;
  }
}
.contact-panel .tel-link-wrap .tel-box .tel,
.contact-panel .tel-link-wrap .tel-box .tel a {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 56px;
}
@media only screen and (max-width: 1024px) {
  .contact-panel .tel-link-wrap .tel-box .tel,
.contact-panel .tel-link-wrap .tel-box .tel a {
    text-align: center;
    font-size: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-panel .tel-link-wrap .tel-box .info {
    text-align: center;
    font-size: 12px;
  }
}
.contact-panel .tel-link-wrap .link-box {
  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;
}

.flows {
  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: 80px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .flows {
    row-gap: 48px;
    margin-bottom: 48px;
  }
}
.flows .flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  width: 100%;
}
.flows .flow-item .overview {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .overview {
    width: 100%;
  }
}
.flows .flow-item .overview dl {
  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: 24px;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .overview dl {
    row-gap: 20px;
    max-width: 750px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .flows .flow-item .overview dl {
    row-gap: 16px;
  }
}
.flows .flow-item .overview dl dt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 56px 16px 1fr;
  grid-template-columns: 56px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.flows .flow-item .overview dl dt .point {
  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: #eae8e5;
  font-size: 20px;
  width: 56px;
  height: 56px;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .overview dl dt .point {
    font-size: 16px;
  }
}
.flows .flow-item .overview dl dt .title {
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .overview dl dt .title {
    font-size: 16px;
  }
}
.flows .flow-item .overview dl dd {
  line-height: 2;
  padding-left: 72px;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .overview dl dd {
    padding-left: 0;
  }
}
.flows .flow-item .overview dl dd p {
  line-height: 2;
}
.flows .flow-item .overview dl dd .link-box {
  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: 28px;
  margin-top: 64px;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .overview dl dd .link-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 24px;
  }
}
.flows .flow-item .image {
  width: 45%;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .image {
    width: 100%;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .flows .flow-item .image {
    margin-bottom: 8px;
  }
}
.flows .flow-item .image img {
  display: block;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .flows .flow-item .image img {
    margin-right: auto;
  }
}

.access-map .access-map__heading {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .access-map .access-map__heading {
    margin-bottom: 48px;
  }
}
.access-map .maps {
  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: 48px;
}
.access-map .maps .map-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 48px 1fr;
  grid-template-columns: 400px 1fr;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media only screen and (max-width: 1024px) {
  .access-map .maps .map-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}
.access-map .maps .map-item .overview {
  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: 12px;
}
.access-map .maps .map-item .overview .title {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .access-map .maps .map-item .overview .title {
    font-size: 20px;
  }
}
.access-map .maps .map-item .overview .thumbnail img {
  aspect-ratio: 1.42/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.access-map .maps .map-item .overview .tel {
  font-size: 20px;
  padding-top: 8px;
}
@media only screen and (max-width: 1024px) {
  .access-map .maps .map-item .overview .tel {
    font-size: 16px;
    padding-top: 0;
  }
}
.access-map .maps .map-item .overview .info {
  line-height: 2;
}
.access-map .maps .map-item .map iframe {
  aspect-ratio: 1.9/1;
  width: 100%;
}

.check-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: 48px;
  max-width: 700px;
  margin: 0 auto 80px;
}
@media only screen and (max-width: 1024px) {
  .check-list {
    row-gap: 32px;
    margin: 0 auto 48px;
  }
}
.check-list .check-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 16px 1fr;
  grid-template-columns: 24px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media only screen and (max-width: 1024px) {
  .check-list .check-item {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
.check-list .check-item img {
  width: 24px;
}
.check-list .check-item .title {
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .check-list .check-item .title {
    font-size: 16px;
  }
}

/* -----------------------------------
 * switch-box
 ----------------------------------- */
.switch-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .switch-box.pc {
    display: none;
  }
}
.switch-box.sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .switch-box.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/**
 * TOP
 */
.pages-top .information {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .information {
    margin-bottom: 48px;
  }
}
.pages-top .information .information__heading {
  margin-bottom: 48px;
}
.pages-top .works {
  margin-top: 100px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .works {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.pages-top .works .works__heading {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .works .works__heading {
    margin-bottom: 48px;
  }
}
.pages-top .model-house {
  background: url("./img/top/model-house/model-house-bg.png") center center/cover;
  padding-top: 48px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .model-house {
    padding-bottom: 48px;
  }
}
.pages-top .model-house .container.grid {
  -webkit-column-gap: 130px;
     -moz-column-gap: 130px;
          column-gap: 130px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .model-house .container.grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
}
.pages-top .model-house .container.grid .content-left {
  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: 32px;
}
.pages-top .model-house .container.grid .content-left .overview p {
  line-height: 2.5;
}
@media only screen and (max-width: 1024px) {
  .pages-top .model-house .container.grid .content-left .overview p {
    text-align: center;
    line-height: 2;
  }
}
.pages-top .model-house .container.grid .content-right {
  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: 16px;
}
.pages-top .model-house .container.grid .content-right .thumbnail img {
  aspect-ratio: 585/309;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-top .model-house .container.grid .content-right .overview-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pages-top .model-house .container.grid .content-right .overview-link-box .overview .address {
  font-size: 20px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .model-house .container.grid .content-right .overview-link-box .overview .address {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.pages-top .model-house .container.grid .content-right .overview-link-box .overview .title {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .model-house .container.grid .content-right .overview-link-box .overview .title {
    font-size: 16px;
  }
}
.pages-top .interview {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .interview {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.pages-top .interview .interview__heading {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .interview .interview__heading {
    margin-bottom: 48px;
  }
}
.pages-top .about-us {
  background-color: #707070;
  padding-top: 48px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .about-us {
    padding-bottom: 48px;
  }
}
.pages-top .about-us * {
  color: #fff;
}
.pages-top .about-us .about-us__heading {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .about-us .about-us__heading {
    margin-bottom: 48px;
  }
}
.pages-top .muryou-soudan {
  padding: 100px 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .muryou-soudan {
    padding: 48px 0;
  }
}
.pages-top .muryou-soudan .muryou-soudan__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: url(./img/top/muryou-soudan/muryou-soudan-kv.png) center center/cover;
  width: 100%;
  max-width: 1500px;
  padding: 64px 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .pages-top .muryou-soudan .muryou-soudan__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 48px 16px;
  }
}
.pages-top .muryou-soudan .muryou-soudan__inner .panel {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 600px;
  padding: 80px 20px 56px;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .muryou-soudan .muryou-soudan__inner .panel {
    padding: 48px 16px;
  }
}
.pages-top .muryou-soudan .muryou-soudan__inner .panel .lead {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 24px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .muryou-soudan .muryou-soudan__inner .panel .lead {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.pages-top .muryou-soudan .muryou-soudan__inner .panel .title {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .muryou-soudan .muryou-soudan__inner .panel .title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.pages-top .muryou-soudan .muryou-soudan__inner .panel .link-box {
  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;
  row-gap: 16px;
}
.pages-top .muryou-soudan .muryou-soudan__inner .panel .link-box small {
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .muryou-soudan .muryou-soudan__inner .panel .link-box small {
    font-size: 18px;
  }
}
.pages-top .staff-blog {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .pages-top .staff-blog {
    margin-bottom: 48px;
  }
}
.pages-top .staff-blog .staff-blog__heading {
  margin-bottom: 48px;
}

.pages-concept .fv-wrap {
  margin-bottom: 0;
}
.pages-concept .concept {
  padding-bottom: 120px;
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept {
    padding-bottom: 48px;
    margin-bottom: 0px;
  }
}
.pages-concept .concept .description {
  margin-bottom: 0;
}
.pages-concept .concept-section {
  margin-bottom: 148px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section {
    margin-bottom: 48px;
  }
}
.pages-concept .concept-section .overview {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 48px;
    margin-bottom: 0;
  }
}
.pages-concept .concept-section .overview .content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pages-concept .concept-section .overview .content-left .content-left__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.pages-concept .concept-section .overview .content-left .content-left__inner .point {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 28px;
  margin-bottom: 36px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-left .content-left__inner .point {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.pages-concept .concept-section .overview .content-left .content-left__inner .title-box {
  width: 100%;
  padding-bottom: 32px;
  border-bottom: 1px solid #302d2c;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-left .content-left__inner .title-box {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.pages-concept .concept-section .overview .content-left .content-left__inner .title-box .title {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-right: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-left .content-left__inner .title-box .title {
    font-size: 24px;
    padding-right: 0;
  }
}
.pages-concept .concept-section .overview .content-left .content-left__inner .description {
  line-height: 2.5;
  padding-right: 32px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-left .content-left__inner .description {
    line-height: 2;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-left .content-left__inner .link-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pages-concept .concept-section .overview .content-right {
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.pages-concept .concept-section .overview .content-right .kv {
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .overview .content-right .kv {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.pages-concept .concept-section .overview .content-right .kv img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.pages-concept .concept-section .details {
  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: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .details {
    row-gap: 48px;
    padding-top: 48px;
  }
}
.pages-concept .concept-section .details .detail-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  row-gap: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .details .detail-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 48px;
  }
}
.pages-concept .concept-section .details .detail-list .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.pages-concept .concept-section .details .detail-list .detail-item .thumbnail {
  margin-bottom: 12px;
}
.pages-concept .concept-section .details .detail-list .detail-item .thumbnail img {
  aspect-ratio: 1.44/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-concept .concept-section .details .detail-list .detail-item .title {
  font-size: 20px;
  line-height: 1.5;
  min-height: 48px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .concept-section .details .detail-list .detail-item .title {
    font-size: 16px;
    min-height: auto;
    margin-bottom: 12px;
  }
}
.pages-concept .concept-section .details .detail-list .detail-item .description {
  line-height: 1.75;
}
.pages-concept .concept-section .details .close-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pages-concept .lv-wrap {
  position: relative;
  aspect-ratio: 192/93;
  background: url(./img/concept/concept-lv-kv.png) center center/cover;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .lv-wrap {
    aspect-ratio: auto;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 600px;
  }
}
.pages-concept .lv-wrap .overview {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(248, 246, 241, 0.74);
  width: 80%;
  max-width: 1578px;
  padding: min(5vw, 100px);
}
@media only screen and (max-width: 1024px) {
  .pages-concept .lv-wrap .overview {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    padding: 48px 32px;
  }
}
.pages-concept .lv-wrap .overview .title {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: min(2vw, 32px);
  line-height: 1.6;
  margin-bottom: min(2vw, 40px);
}
@media only screen and (max-width: 1024px) {
  .pages-concept .lv-wrap .overview .title {
    font-size: 20px;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto 24px;
  }
}
.pages-concept .lv-wrap .overview .description {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: min(1.5vw, 24px);
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-concept .lv-wrap .overview .description {
    font-size: 16px;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto;
  }
}

.pages-single-works .heading-wrap ~ .thumbnail {
  margin-bottom: 32px;
}
.pages-single-works article h3 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-single-works article h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.pages-single-works article .address {
  font-size: 24px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-single-works article .address {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.pages-single-interview .heading-wrap ~ .thumbnail {
  margin-bottom: 32px;
}
.pages-single-interview article h3 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-single-interview article h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.pages-single-interview article .address {
  font-size: 24px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-single-interview article .address {
    font-size: 16px;
    margin-bottom: 48px;
  }
}
.pages-single-interview article .article-body {
  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: 48px;
}

.pages-about .fv-wrap {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .fv-wrap {
    margin-bottom: 48px;
  }
}
.pages-about .message {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .message {
    margin-bottom: 48px;
  }
}
.pages-about .message .message__heading {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .message .message__heading {
    margin-bottom: 48px;
  }
}
.pages-about .message .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .pages-about .message .grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 48px;
  }
}
.pages-about .message .grid .col .lead {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .message .grid .col .lead {
    font-size: 20px;
  }
}
.pages-about .message .grid .col .description {
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .pages-about .message .grid .col .description {
    font-size: 14px;
    line-height: 1.8;
  }
}
.pages-about .message .grid .col .image {
  margin-bottom: 12px;
}
.pages-about .message .grid .col .image img {
  aspect-ratio: 1/1.18;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 480px;
}
.pages-about .message .grid .col .profile .position {
  text-align: right;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .message .grid .col .profile .position {
    text-align: center;
    line-height: 1.8;
  }
}
.pages-about .message .grid .col .profile .name {
  text-align: right;
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .message .grid .col .profile .name {
    text-align: center;
    font-size: 20px;
  }
}
.pages-about .message .grid .col:last-of-type {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .message .grid .col:last-of-type {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}
.pages-about .company-overview {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .company-overview {
    margin-bottom: 48px;
  }
}
.pages-about .company-overview .company-overview__heading {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .company-overview .company-overview__heading {
    margin-bottom: 48px;
  }
}
.pages-about .company-overview .details {
  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: 32px;
  width: 100%;
}
.pages-about .company-overview .details dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 48px 1fr;
  grid-template-columns: 200px 1fr;
  width: 100%;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .company-overview .details dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}
.pages-about .company-overview .details dl dt,
.pages-about .company-overview .details dl dd {
  position: relative;
  height: 100%;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .company-overview .details dl dt,
.pages-about .company-overview .details dl dd {
    padding-bottom: 12px;
  }
}
.pages-about .company-overview .details dl dt::after,
.pages-about .company-overview .details dl dd::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 1px;
}
.pages-about .company-overview .details dl dd .text-box {
  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: 12px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .company-overview .details dl dd .text-box p {
    line-height: 1.5;
  }
}
.pages-about .company-overview .details dl dd .address-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
}
.pages-about .company-overview .details dl dd .address-wrap .map-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.pages-about .company-overview .details dl dd .address-wrap .map-link-box .horizontal-bar {
  background-color: #000;
  width: 48px;
  height: 1px;
  margin-top: 10px;
}
.pages-about .company-overview .details dl dd .address-wrap .map-link-box a img {
  width: 18px;
}
.pages-about .staff {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .staff {
    margin-bottom: 48px;
  }
}
.pages-about .staff .staff__heading {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .staff .staff__heading {
    margin-bottom: 48px;
  }
}
.pages-about .staff .staff-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-about .staff .staff-list {
    margin: 0 -16px 48px;
  }
}
.pages-about .staff .staff-list li img {
  aspect-ratio: 1/1.3;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-about .staff .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pages-staff-introduction .staff .staff-details {
  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: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details {
    row-gap: 48px;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail {
  width: 100%;
  padding: 48px 0;
  border: 1px solid #707070;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details .staff-detail {
    padding: 16px 0;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail .staff-detail__inner {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details .staff-detail .staff-detail__inner {
    padding: 0 16px;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 48px 1fr;
  grid-template-columns: 280px 1fr;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details .staff-detail .profile {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile .thumbnail img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile .overview {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile .overview .overview__inner .position {
  margin-bottom: 12px;
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile .overview .overview__inner .name-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 12px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details .staff-detail .profile .overview .overview__inner .name-box {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-bottom: 24px;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile .overview .overview__inner .name-box .name {
  font-size: 24px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details .staff-detail .profile .overview .overview__inner .name-box .name {
    font-size: 20px;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile .overview .overview__inner .name-box .name-kana {
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details .staff-detail .profile .overview .overview__inner .content-toggle-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile-detail {
  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: 20px;
  padding-top: 48px;
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile-detail dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 48px 1fr;
  grid-template-columns: 280px 1fr;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  padding-top: 20px;
  border-top: 1px solid #707070;
}
@media only screen and (max-width: 1024px) {
  .pages-staff-introduction .staff .staff-details .staff-detail .profile-detail dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
.pages-staff-introduction .staff .staff-details .staff-detail .profile-detail dl dt,
.pages-staff-introduction .staff .staff-details .staff-detail .profile-detail dl dd {
  line-height: 1.9;
}

.pages-after-maintenance .lead-box {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .lead-box {
    margin-bottom: 48px;
  }
}
.pages-after-maintenance .lead-box .lead {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 72px;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .lead-box .lead {
    font-size: 28px;
    margin-bottom: 48px;
  }
}
.pages-after-maintenance .lead-box .image img {
  aspect-ratio: 17/6;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .lead-box .image img {
    aspect-ratio: 3/2;
  }
}
.pages-after-maintenance .guarantees {
  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: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees {
    row-gap: 48px;
  }
}
.pages-after-maintenance .guarantees .guarantee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  width: 100%;
  padding-bottom: 80px;
  border-bottom: 1px solid #dcdedf;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding-bottom: 24px;
  }
}
.pages-after-maintenance .guarantees .guarantee-item .overview {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item .overview {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.pages-after-maintenance .guarantees .guarantee-item .overview dl {
  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: 24px;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item .overview dl {
    row-gap: 16px;
  }
}
.pages-after-maintenance .guarantees .guarantee-item .overview dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.pages-after-maintenance .guarantees .guarantee-item .overview dl dt .point {
  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: #eae8e5;
  font-size: 20px;
  width: 56px;
  height: 56px;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item .overview dl dt .point {
    font-size: 18px;
  }
}
.pages-after-maintenance .guarantees .guarantee-item .overview dl dt .title {
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item .overview dl dt .title {
    font-size: 18px;
  }
}
.pages-after-maintenance .guarantees .guarantee-item .overview dl dd {
  line-height: 2;
}
.pages-after-maintenance .guarantees .guarantee-item .image {
  width: 45%;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.pages-after-maintenance .guarantees .guarantee-item .image img {
  display: block;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item .image img {
    margin: 0;
  }
}
.pages-after-maintenance .guarantees .guarantee-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.pages-after-maintenance .guarantees .guarantee-item:nth-of-type(even) .image img {
  margin-left: 0;
  margin-right: auto;
}
@media only screen and (max-width: 1024px) {
  .pages-after-maintenance .guarantees .guarantee-item:nth-of-type(even) .image img {
    margin: 0;
  }
}

.pages-flow .annotation {
  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: #8d8b8c;
  width: 100%;
  height: 240px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-flow .annotation {
    height: 160px;
    margin-bottom: 48px;
  }
}
.pages-flow .annotation p {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  color: #fff;
  text-align: center;
  font-size: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-flow .annotation p {
    font-size: 24px;
  }
}
.pages-flow .annotation.reverse {
  background-color: #f1f2f1;
}
.pages-flow .annotation.reverse p {
  color: #000;
}

.pages-qa .qas {
  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: 40px;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas {
    row-gap: 32px;
  }
}
.pages-qa .qas .qa-item {
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid #707070;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas .qa-item {
    padding-bottom: 32px;
  }
}
.pages-qa .qas .qa-item .question-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 32px 1fr;
  grid-template-columns: 40px 1fr;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas .qa-item .question-wrap {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.pages-qa .qas .qa-item .question-wrap .icon-question {
  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: #8d8b8c;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas .qa-item .question-wrap .icon-question {
    font-size: 16px;
  }
}
.pages-qa .qas .qa-item .question-wrap .question {
  font-size: 16px;
  line-height: 1.9;
  padding-top: 7px;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas .qa-item .question-wrap .question {
    font-size: 14px;
    padding-top: 9px;
  }
}
.pages-qa .qas .qa-item .icon-toggle {
  margin-top: 8px;
}
.pages-qa .qas .qa-item .answer-wrap {
  padding-top: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas .qa-item .answer-wrap {
    padding-top: 24px;
  }
}
.pages-qa .qas .qa-item .answer-wrap .answer__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 32px 1fr;
  grid-template-columns: 40px 1fr;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  background-color: #fee4b9;
  padding: 24px;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas .qa-item .answer-wrap .answer__inner {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    padding: 16px;
  }
}
.pages-qa .qas .qa-item .answer-wrap .answer__inner .icon-answer {
  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: #8d8b8c;
  font-size: 20px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border: 1px solid #8d8b8c;
}
@media only screen and (max-width: 1024px) {
  .pages-qa .qas .qa-item .answer-wrap .answer__inner .icon-answer {
    font-size: 16px;
  }
}
.pages-qa .qas .qa-item .answer-wrap .answer__inner .answer {
  line-height: 1.9;
  padding-top: 8px;
}

.pages-recruit .fv-lead {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .fv-lead {
    margin-bottom: 48px;
  }
}
.pages-recruit .fv-lead .title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .fv-lead .title {
    margin-bottom: 24px;
  }
}
.pages-recruit .fv-lead .title h2 {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .fv-lead .title h2 {
    font-size: 28px;
  }
}
.pages-recruit .fv-lead .description {
  text-align: center;
  font-size: 20px;
  line-height: 1.9;
  max-width: 750px;
  margin: 0 auto 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .fv-lead .description {
    text-align: left;
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.pages-recruit .fv-lead .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .fv-lead .link-box {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .fv-lead .images {
    margin: 0 -16px;
  }
}
.pages-recruit .fv-lead .images img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-recruit header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit header {
    margin-bottom: 48px;
  }
}
.pages-recruit header.title h2 {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  min-width: 750px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit header.title h2 {
    font-size: 24px;
    min-width: auto;
  }
}
.pages-recruit header.underline {
  position: relative;
  text-decoration: none;
}
.pages-recruit header.underline h2 {
  position: relative;
  padding-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit header.underline h2 {
    padding-bottom: 12px;
  }
}
.pages-recruit header.underline h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #302d2c;
  width: 100%;
  height: 1px;
}
.pages-recruit header.underline.wide h2::after {
  width: 120%;
}
.pages-recruit .about-company {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .about-company {
    margin-bottom: 48px;
  }
}
.pages-recruit .about-company .points {
  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: 40px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .about-company .points {
    row-gap: 32px;
  }
}
.pages-recruit .about-company .points .point-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .about-company .points .point-item {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.pages-recruit .about-company .points .point-item .thumbnail {
  padding-right: 80px;
}
.pages-recruit .about-company .points .point-item .thumbnail img {
  aspect-ratio: 1.64/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 740px;
}
.pages-recruit .about-company .points .point-item .overview .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin-bottom: 16px;
}
.pages-recruit .about-company .points .point-item .overview .title-box .number {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 72px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .about-company .points .point-item .overview .title-box .number {
    font-size: 48px;
  }
}
.pages-recruit .about-company .points .point-item .overview .title-box .title {
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .about-company .points .point-item .overview .title-box .title {
    font-size: 16px;
  }
}
.pages-recruit .about-company .points .point-item .overview .thumbnail {
  padding-right: 0;
  margin-bottom: 16px;
}
.pages-recruit .about-company .points .point-item .overview .description {
  line-height: 1.9;
}
.pages-recruit .message {
  background-color: #f1f2f1;
  padding: 80px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message {
    padding: 48px 0;
    margin-bottom: 48px;
  }
}
.pages-recruit .message .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 24px;
  }
}
.pages-recruit .message .grid .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid .col:first-of-type {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pages-recruit .message .grid .col:last-of-type {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid .col:last-of-type {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}
.pages-recruit .message .grid .col .lead {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid .col .lead {
    font-size: 20px;
  }
}
.pages-recruit .message .grid .col .description {
  font-size: 16px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid .col .description {
    font-size: 14px;
    line-height: 1.8;
  }
}
.pages-recruit .message .grid .col .image {
  margin-bottom: 12px;
}
.pages-recruit .message .grid .col .image img {
  aspect-ratio: 1/1.18;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 480px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid .col .profile {
    margin-bottom: 32px;
  }
}
.pages-recruit .message .grid .col .profile .position {
  text-align: right;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid .col .profile .position {
    text-align: center;
    line-height: 1.8;
  }
}
.pages-recruit .message .grid .col .profile .name {
  text-align: right;
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .message .grid .col .profile .name {
    text-align: center;
    font-size: 20px;
  }
}
.pages-recruit .message .grid .col header {
  margin-bottom: 0;
}
.pages-recruit .message .grid .col header h2::after {
  display: none;
}
.pages-recruit .skills {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .skills {
    margin-bottom: 48px;
  }
}
.pages-recruit .skills .skill-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: 40px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .skills .skill-list {
    row-gap: 32px;
  }
}
.pages-recruit .skills .skill-list .skill-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 56px 16px 1fr;
  grid-template-columns: 56px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .skills .skill-list .skill-item {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
.pages-recruit .skills .skill-list .skill-item .number {
  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: #eae8e5;
  font-size: 20px;
  width: 56px;
  height: 56px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .skills .skill-list .skill-item .number {
    font-size: 16px;
  }
}
.pages-recruit .skills .skill-list .skill-item .description {
  font-size: 20px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .skills .skill-list .skill-item .description {
    font-size: 16px;
  }
}
.pages-recruit .voice {
  background: url(./img/recruit/recruit-bg.png) center center/cover;
  padding: 80px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .voice {
    padding: 48px 0;
    margin-bottom: 48px;
  }
}
.pages-recruit .voice .voice-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  row-gap: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .voice .voice-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
  }
}
.pages-recruit .voice .voice-list .voice-item {
  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: 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .voice .voice-list .voice-item {
    row-gap: 16px;
  }
}
.pages-recruit .voice .voice-list .voice-item .image img {
  aspect-ratio: 1.64/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-recruit .voice .voice-list .voice-item .overview {
  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: 24px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .voice .voice-list .voice-item .overview {
    row-gap: 16px;
  }
}
.pages-recruit .voice .voice-list .voice-item .overview .title {
  font-size: 20px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .voice .voice-list .voice-item .overview .title {
    font-size: 16px;
    line-height: 1.6;
  }
}
.pages-recruit .voice .voice-list .voice-item .overview .info {
  font-size: 20px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .voice .voice-list .voice-item .overview .info {
    font-size: 16px;
    line-height: 1.6;
  }
}
.pages-recruit .voice .voice-list .voice-item .overview .description {
  line-height: 1.9;
}
.pages-recruit .job {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .job {
    margin-bottom: 48px;
  }
}
.pages-recruit .job .jobs {
  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: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .job .jobs {
    row-gap: 32px;
  }
}
.pages-recruit .job .jobs .job-item {
  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: 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .job .jobs .job-item {
    row-gap: 14px;
  }
}
.pages-recruit .job .jobs .job-item dt {
  font-size: 20px;
  width: 50%;
  padding-bottom: 20px;
  border-bottom: 1px dashed #302d2c;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .job .jobs .job-item dt {
    font-size: 16px;
    width: 100%;
    padding-bottom: 16px;
  }
}
.pages-recruit .job .jobs .job-item dd {
  line-height: 1.9;
}
.pages-recruit .process {
  background: url(./img/recruit/recruit-bg.png) center center/cover;
  padding: 80px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .process {
    padding: 48px 0;
    margin-bottom: 48px;
  }
}
.pages-recruit .process .process-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: 120px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .process .process-list {
    row-gap: 64px;
  }
}
.pages-recruit .process .process-list .process-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 64px 56px 1fr;
  grid-template-columns: 64px 1fr;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  border: 1px solid #302d2c;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .process .process-list .process-item {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.pages-recruit .process .process-list .process-item .number {
  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;
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 72px;
  padding-left: 8px;
  border-right: 1px solid #302d2c;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .process .process-list .process-item .number {
    font-size: 48px;
  }
}
.pages-recruit .process .process-list .process-item .description {
  font-size: 20px;
  padding-right: 16px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .process .process-list .process-item .description {
    font-size: 16px;
  }
}
.pages-recruit .process .process-list .process-item:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 40px solid #fca517;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .process .process-list .process-item:not(:last-of-type)::after {
    top: calc(100% + 25px);
    border-top: 20px solid #fca517;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
  }
}
.pages-recruit .entry .entry__heading {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .entry .entry__heading {
    margin-bottom: 48px;
  }
}
.pages-recruit .entry .annotations {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-recruit .entry .annotations {
    margin-bottom: 48px;
  }
}
.pages-recruit .entry .annotations li {
  line-height: 1.9;
}

.staff-blog-detail article .date {
  margin-bottom: 20px;
}
.staff-blog-detail article h3 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail article h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.staff-blog-detail article .category-writer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail article .category-writer {
    margin-bottom: 48px;
  }
}
.staff-blog-detail .writer-blogs {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail .writer-blogs {
    margin-bottom: 0;
  }
}
.staff-blog-detail .writer-blogs header {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail .writer-blogs header {
    margin-bottom: 16px;
  }
}
.staff-blog-detail .writer-blogs header h4 {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail .writer-blogs header h4 {
    font-size: 16px;
  }
}
.staff-blog-detail .writer-blogs .writer-blog-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  padding: 48px;
  border-top: 1px solid #302d2c;
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail .writer-blogs .writer-blog-list {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    padding: 32px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail .writer-blogs .writer-blog-list .writer-blog-item:nth-of-type(3) {
    display: none;
  }
}
.staff-blog-detail .writer-blogs .writer-blog-list .writer-blog-item .thumbnail {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .staff-blog-detail .writer-blogs .writer-blog-list .writer-blog-item .thumbnail {
    margin-bottom: 8px;
  }
}
.staff-blog-detail .writer-blogs .writer-blog-list .writer-blog-item .thumbnail img {
  aspect-ratio: 1.65/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.staff-blog-detail .writer-blogs .writer-blog-list .writer-blog-item .title {
  line-height: 1.6;
}

.pages-single-news article .date {
  margin-bottom: 20px;
}
.pages-single-news article h3 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .pages-single-news article h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.pages-single-news article .category-writer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-single-news article .category-writer {
    margin-bottom: 48px;
  }
}
.pages-single-news .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 148px;
}
.pages-single-news .writer-blogs {
  margin-bottom: 80px;
}
.pages-single-news .writer-blogs header {
  margin-bottom: 24px;
}
.pages-single-news .writer-blogs header h4 {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .pages-single-news .writer-blogs header h4 {
    font-size: 20px;
  }
}
.pages-single-news .writer-blogs .writer-blog-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  padding: 48px;
  border-top: 1px solid #302d2c;
}
.pages-single-news .writer-blogs .writer-blog-list .writer-blog-item .thumbnail {
  margin-bottom: 20px;
}
.pages-single-news .writer-blogs .writer-blog-list .writer-blog-item .thumbnail img {
  aspect-ratio: 1.65/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.pages-request .fv-lead {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .fv-lead {
    margin-bottom: 48px;
  }
}
.pages-request .fv-lead .title {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .fv-lead .title {
    margin-bottom: 48px;
  }
}
.pages-request .fv-lead .title h2 {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-request .fv-lead .title h2 {
    font-size: 28px;
  }
}
.pages-request header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-request header {
    margin-bottom: 48px;
  }
}
.pages-request header.title h2 {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  min-width: 750px;
}
@media only screen and (max-width: 1024px) {
  .pages-request header.title h2 {
    font-size: 28px;
    min-width: auto;
  }
}
.pages-request header.underline {
  position: relative;
  text-decoration: none;
}
.pages-request header.underline h2 {
  position: relative;
  padding-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .pages-request header.underline h2 {
    padding-bottom: 20px;
  }
}
.pages-request header.underline h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #302d2c;
  width: 100%;
  height: 1px;
}
.pages-request header.underline.wide h2::after {
  width: 120%;
}
.pages-request .catalog-voices {
  margin-bottom: 148px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .catalog-voices {
    margin-bottom: 48px;
  }
}
.pages-request .catalog-voices header {
  margin-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .catalog-voices header {
    margin-bottom: 24px;
  }
}
.pages-request .catalog-voices .lead {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .catalog-voices .lead {
    text-align: left;
    margin-bottom: 24px;
  }
}
.pages-request .catalog-voices .voices {
  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: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .catalog-voices .voices {
    row-gap: 32px;
  }
}
.pages-request .catalog-voices .voices .voice-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .pages-request .catalog-voices .voices .voice-item {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.pages-request .catalog-voices .voices .voice-item .image {
  padding-right: 110px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .catalog-voices .voices .voice-item .image {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.pages-request .catalog-voices .voices .voice-item .image img {
  aspect-ratio: 1.64/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-request .catalog-voices .voices .voice-item .overview .title {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 72px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .catalog-voices .voices .voice-item .overview .title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.pages-request .catalog-voices .voices .voice-item .overview .description {
  line-height: 1.6;
}
.pages-request .request .request__heading {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .request .request__heading {
    margin-bottom: 48px;
  }
}
.pages-request .request .annotations {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-request .request .annotations {
    margin-bottom: 48px;
  }
}
.pages-request .request .annotations li {
  line-height: 1.9;
}

.pages-privacy .privacy-policy .lead {
  line-height: 1.9;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-privacy .privacy-policy .lead {
    margin-bottom: 24px;
  }
}
.pages-privacy .privacy-policy .policies {
  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: 32px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-privacy .privacy-policy .policies {
    row-gap: 24px;
    margin-bottom: 48px;
  }
}
.pages-privacy .privacy-policy .policies .policy dt,
.pages-privacy .privacy-policy .policies .policy dd {
  line-height: 1.9;
}
.pages-privacy .privacy-policy .policies .policy ul li {
  line-height: 1.9;
}
.pages-privacy .privacy-policy .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pages-reservation .secondary-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .secondary-heading {
    margin-bottom: 48px;
  }
}
.pages-reservation .secondary-heading.title h2 {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  min-width: 750px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .secondary-heading.title h2 {
    font-size: 28px;
    min-width: auto;
  }
}
.pages-reservation .secondary-heading.underline {
  position: relative;
  text-decoration: none;
}
.pages-reservation .secondary-heading.underline h2 {
  position: relative;
  padding-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .secondary-heading.underline h2 {
    padding-bottom: 20px;
  }
}
.pages-reservation .secondary-heading.underline h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #302d2c;
  width: 100%;
  height: 1px;
}
.pages-reservation .secondary-heading.underline.wide h2::after {
  width: 120%;
}
.pages-reservation .fv-wrap {
  margin-bottom: 0;
}
.pages-reservation .guide {
  background-color: #f1f2f1;
  padding: 80px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .guide {
    padding: 48px 0;
    margin-bottom: 48px;
  }
}
.pages-reservation .guide header {
  margin-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .guide header {
    margin-bottom: 24px;
  }
}
.pages-reservation .guide .annotation {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .guide .annotation {
    font-size: 28px;
  }
}
.pages-reservation .contact-wrap {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .contact-wrap {
    margin-bottom: 48px;
  }
}
.pages-reservation .lv-wrap {
  position: relative;
  aspect-ratio: 192/93;
  background: url(./img/reservation/reservation-lv.png) center center/cover;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .lv-wrap {
    aspect-ratio: auto;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 600px;
    margin-bottom: 48px;
  }
}
.pages-reservation .lv-wrap .overview {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(248, 246, 241, 0.74);
  width: 80%;
  max-width: 1578px;
  padding: min(5vw, 100px);
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .lv-wrap .overview {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    padding: 48px 32px;
  }
}
.pages-reservation .lv-wrap .overview .title {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: min(2vw, 32px);
  line-height: 1.6;
  margin-bottom: min(2vw, 40px);
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .lv-wrap .overview .title {
    font-size: 20px;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto 24px;
  }
}
.pages-reservation .lv-wrap .overview .description {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: min(1.5vw, 24px);
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .lv-wrap .overview .description {
    font-size: 16px;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto;
  }
}
.pages-reservation .check-list-wrap {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .check-list-wrap {
    margin-bottom: 48px;
  }
}
.pages-reservation .check-list-wrap .caret-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .check-list-wrap .caret-box {
    margin-bottom: 48px;
  }
}
.pages-reservation .check-list-wrap .caret-box .icon-caret-down {
  border-top: 40px solid #fca517;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .check-list-wrap .caret-box .icon-caret-down {
    border-top: 20px solid #fca517;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
  }
}
.pages-reservation .make-house {
  background: url(./img/reservation/make-house-bg.png) center center/cover;
  padding: 80px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .make-house {
    padding: 48px 0;
    margin-bottom: 48px;
  }
}
.pages-reservation .make-house .make-house-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  row-gap: 64px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .make-house .make-house-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
  }
}
.pages-reservation .make-house .make-house-list .make-house-item {
  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: 20px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .make-house .make-house-list .make-house-item {
    row-gap: 16px;
  }
}
.pages-reservation .make-house .make-house-list .make-house-item .image img {
  aspect-ratio: 1.64/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-reservation .make-house .make-house-list .make-house-item .overview {
  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: 24px;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .make-house .make-house-list .make-house-item .overview {
    row-gap: 16px;
  }
}
.pages-reservation .make-house .make-house-list .make-house-item .overview .point {
  font-size: 20px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .make-house .make-house-list .make-house-item .overview .point {
    font-size: 16px;
  }
}
.pages-reservation .make-house .make-house-list .make-house-item .overview .title {
  font-size: 20px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .make-house .make-house-list .make-house-item .overview .title {
    font-size: 16px;
    line-height: 1.6;
  }
}
.pages-reservation .make-house .make-house-list .make-house-item .overview .description {
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .make-house .make-house-list .make-house-item .overview .description {
    line-height: 1.6;
  }
}
.pages-reservation .flow .heading-wrap {
  margin: 0 0 48px;
}
.pages-reservation .reservation .reservation__heading {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .reservation .reservation__heading {
    margin-bottom: 48px;
  }
}
.pages-reservation .reservation .annotations {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .reservation .annotations {
    margin-bottom: 48px;
  }
}
.pages-reservation .reservation .annotations li {
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation .reservation .annotations li {
    line-height: 1.6;
  }
}

.pages-reservation-model-house .secondary-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
.pages-reservation-model-house .secondary-heading.title h2 {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  min-width: 750px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation-model-house .secondary-heading.title h2 {
    font-size: 28px;
    min-width: auto;
  }
}
.pages-reservation-model-house .secondary-heading.underline {
  position: relative;
  text-decoration: none;
}
.pages-reservation-model-house .secondary-heading.underline h2 {
  position: relative;
  padding-bottom: 28px;
}
.pages-reservation-model-house .secondary-heading.underline h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #302d2c;
  width: 100%;
  height: 1px;
}
.pages-reservation-model-house .secondary-heading.underline.wide h2::after {
  width: 120%;
}
.pages-reservation-model-house .fv-wrap {
  margin-bottom: 0;
}
.pages-reservation-model-house .guide {
  background-color: #f1f2f1;
  padding: 80px 0;
  margin-bottom: 80px;
}
.pages-reservation-model-house .guide header {
  margin-bottom: 28px;
}
.pages-reservation-model-house .guide .annotation {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  text-align: center;
  font-size: 32px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation-model-house .guide .annotation {
    font-size: 28px;
  }
}
.pages-reservation-model-house .contact-wrap {
  margin-bottom: 80px;
}
.pages-reservation-model-house .lv-wrap {
  position: relative;
  aspect-ratio: 192/93;
  background: url(./img/reservation/reservation-lv.png) center center/cover;
  margin-bottom: 80px;
}
.pages-reservation-model-house .lv-wrap .overview {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(248, 246, 241, 0.74);
  width: 80%;
  max-width: 1578px;
  padding: 100px;
}
.pages-reservation-model-house .lv-wrap .overview .title {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation-model-house .lv-wrap .overview .title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
.pages-reservation-model-house .lv-wrap .overview .description {
  font-family: "Hannari", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size-adjust: 0.55;
  font-size: 24px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation-model-house .lv-wrap .overview .description {
    font-size: 20px;
  }
}
.pages-reservation-model-house .check-list-wrap {
  margin-bottom: 80px;
}
.pages-reservation-model-house .check-list-wrap .caret-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
.pages-reservation-model-house .check-list-wrap .caret-box .icon-caret-down {
  border-top: 40px solid #fca517;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
}
.pages-reservation-model-house .make-house {
  background: url(./img/reservation/make-house-bg.png) center center/cover;
  padding: 80px 0;
  margin-bottom: 80px;
}
.pages-reservation-model-house .make-house .make-house-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  row-gap: 64px;
}
.pages-reservation-model-house .make-house .make-house-list .make-house-item {
  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: 20px;
}
.pages-reservation-model-house .make-house .make-house-list .make-house-item .image img {
  aspect-ratio: 1.64/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pages-reservation-model-house .make-house .make-house-list .make-house-item .overview {
  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: 24px;
  height: 100%;
}
.pages-reservation-model-house .make-house .make-house-list .make-house-item .overview .point {
  font-size: 20px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation-model-house .make-house .make-house-list .make-house-item .overview .point {
    font-size: 18px;
  }
}
.pages-reservation-model-house .make-house .make-house-list .make-house-item .overview .title {
  font-size: 20px;
  line-height: 1.9;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation-model-house .make-house .make-house-list .make-house-item .overview .title {
    font-size: 18px;
  }
}
.pages-reservation-model-house .make-house .make-house-list .make-house-item .overview .description {
  line-height: 1.9;
  margin-top: auto;
}
.pages-reservation-model-house .reservation .reservation__heading {
  margin-bottom: 80px;
}
.pages-reservation-model-house .reservation .annotations {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pages-reservation-model-house .reservation .annotations {
    margin-bottom: 48px;
  }
}
.pages-reservation-model-house .reservation .annotations li {
  line-height: 1.9;
}

.pages-download form {
  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: 40px;
}
@media only screen and (max-width: 1024px) {
  .pages-download form {
    row-gap: 32px;
  }
}
.pages-download form p.password-message {
  line-height: 1.6;
}
.pages-download form .input-box {
  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: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
.pages-download form .input-box label {
  width: 100px;
  padding-bottom: 8px;
  border-bottom: 1px solid #302d2c;
}
.pages-download .download-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: 28px;
}
.pages-download .download-list .download-item {
  padding-bottom: 28px;
  border-bottom: 1px solid #000;
}
.pages-download .download-list .download-item a {
  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: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.pages-download .download-list .download-item a p {
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-download .download-list .download-item a p {
    font-size: 16px;
  }
}
.pages-download .download-list .download-item a .btn-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;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media only screen and (max-width: 1024px) {
  .pages-download .download-list .download-item a .btn-wrap {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
.pages-download .download-list .download-item a .btn-wrap .text,
.pages-download .download-list .download-item a .btn-wrap .arrow {
  font-family: "ivyora-display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .pages-download .download-list .download-item a .btn-wrap .text,
.pages-download .download-list .download-item a .btn-wrap .arrow {
    font-size: 16px;
  }
}

/* -----------------------------------
 * 404
 ----------------------------------- */
.pages-404 .description {
  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: 32px;
}
.pages-404 .description p {
  line-height: 1.9;
}
.pages-404 .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* -----------------------------------
 * RECRUIT / CONTACT
 ----------------------------------- */
/* RECRUIT / CONTACT */
.pages-contact *,
.pages-confirm * {
  line-height: 25px;
  letter-spacing: 1.4px;
}
.pages-contact .lead,
.pages-confirm .lead {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .lead,
.pages-confirm .lead {
    margin-bottom: 24px;
  }
}
.pages-contact .recruit .positions,
.pages-confirm .recruit .positions {
  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: 48px;
  padding-bottom: 96px;
  border-bottom: 1px solid #707070;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .recruit .positions,
.pages-confirm .recruit .positions {
    row-gap: 32px;
    padding-bottom: 64px;
    margin-bottom: 32px;
  }
}
.pages-contact .recruit .positions dl,
.pages-confirm .recruit .positions dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 114px 56px 1fr;
  grid-template-columns: 114px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .recruit .positions dl,
.pages-confirm .recruit .positions dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
.pages-contact .recruit .positions dl dt,
.pages-confirm .recruit .positions dl dt {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .recruit .positions dl dt,
.pages-confirm .recruit .positions dl dt {
    font-size: 18px;
  }
}
.pages-contact .contact,
.pages-contact .confirm,
.pages-confirm .contact,
.pages-confirm .confirm {
  margin-bottom: 120px;
}
.pages-contact .contact:target,
.pages-contact .confirm:target,
.pages-confirm .contact:target,
.pages-confirm .confirm:target {
  scroll-margin-top: 100px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact:target,
.pages-contact .confirm:target,
.pages-confirm .contact:target,
.pages-confirm .confirm:target {
    scroll-margin-top: 72px;
  }
}
.pages-contact .contact .annotation,
.pages-contact .confirm .annotation,
.pages-confirm .contact .annotation,
.pages-confirm .confirm .annotation {
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact .annotation,
.pages-contact .confirm .annotation,
.pages-confirm .contact .annotation,
.pages-confirm .confirm .annotation {
    margin-bottom: 64px;
  }
}
.pages-contact .contact .contactform__block,
.pages-contact .confirm .contactform__block,
.pages-confirm .contact .contactform__block,
.pages-confirm .confirm .contactform__block {
  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: 40px;
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact .contactform__block,
.pages-contact .confirm .contactform__block,
.pages-confirm .contact .contactform__block,
.pages-confirm .confirm .contactform__block {
    margin-bottom: 64px;
  }
}
.pages-contact .contact .contactform__block dl,
.pages-contact .confirm .contactform__block dl,
.pages-confirm .contact .contactform__block dl,
.pages-confirm .confirm .contactform__block dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(16vw, 180px) min(2vw, 32px) 1fr;
  grid-template-columns: min(16vw, 180px) 1fr;
  -webkit-column-gap: min(2vw, 32px);
     -moz-column-gap: min(2vw, 32px);
          column-gap: min(2vw, 32px);
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact .contactform__block dl,
.pages-contact .confirm .contactform__block dl,
.pages-confirm .contact .contactform__block dl,
.pages-confirm .confirm .contactform__block dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
.pages-contact .contact .contactform__block dl.contact-contacts,
.pages-contact .confirm .contactform__block dl.contact-contacts,
.pages-confirm .contact .contactform__block dl.contact-contacts,
.pages-confirm .confirm .contactform__block dl.contact-contacts {
  width: 100%;
  min-height: 142px;
}
.pages-contact .contact .contactform__block dl dt,
.pages-contact .confirm .contactform__block dl dt,
.pages-confirm .contact .contactform__block dl dt,
.pages-confirm .confirm .contactform__block dl dt {
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact .contactform__block dl dt,
.pages-contact .confirm .contactform__block dl dt,
.pages-confirm .contact .contactform__block dl dt,
.pages-confirm .confirm .contactform__block dl dt {
    padding-bottom: 8px;
  }
}
.pages-contact .contact .contactform__block dl dd,
.pages-contact .confirm .contactform__block dl dd,
.pages-confirm .contact .contactform__block dl dd,
.pages-confirm .confirm .contactform__block dl dd {
  padding-bottom: 16px;
  border-bottom: 1px solid #8d8b8c;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact .contactform__block dl dd,
.pages-contact .confirm .contactform__block dl dd,
.pages-confirm .contact .contactform__block dl dd,
.pages-confirm .confirm .contactform__block dl dd {
    padding-bottom: 8px;
  }
}
.pages-contact .contact .contactform__block dl dd input[type=text],
.pages-contact .confirm .contactform__block dl dd input[type=text],
.pages-confirm .contact .contactform__block dl dd input[type=text],
.pages-confirm .confirm .contactform__block dl dd input[type=text] {
  width: 100%;
}
.pages-contact .contact .contactform__block dl dd input[type=email],
.pages-contact .confirm .contactform__block dl dd input[type=email],
.pages-confirm .contact .contactform__block dl dd input[type=email],
.pages-confirm .confirm .contactform__block dl dd input[type=email] {
  width: 100%;
}
.pages-contact .contact .contactform__block dl dd textarea,
.pages-contact .confirm .contactform__block dl dd textarea,
.pages-confirm .contact .contactform__block dl dd textarea,
.pages-confirm .confirm .contactform__block dl dd textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
}
.pages-contact .contact .contactform__block dl dd .koumoku-item__block,
.pages-contact .contact .contactform__block dl dd .koumoku-item__block,
.pages-contact .confirm .contactform__block dl dd .koumoku-item__block,
.pages-contact .confirm .contactform__block dl dd .koumoku-item__block,
.pages-confirm .contact .contactform__block dl dd .koumoku-item__block,
.pages-confirm .contact .contactform__block dl dd .koumoku-item__block,
.pages-confirm .confirm .contactform__block dl dd .koumoku-item__block,
.pages-confirm .confirm .contactform__block dl dd .koumoku-item__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: min(2vw, 24px);
     -moz-column-gap: min(2vw, 24px);
          column-gap: min(2vw, 24px);
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact .contactform__block dl dd .koumoku-item__block,
.pages-contact .contact .contactform__block dl dd .koumoku-item__block,
.pages-contact .confirm .contactform__block dl dd .koumoku-item__block,
.pages-contact .confirm .contactform__block dl dd .koumoku-item__block,
.pages-confirm .contact .contactform__block dl dd .koumoku-item__block,
.pages-confirm .contact .contactform__block dl dd .koumoku-item__block,
.pages-confirm .confirm .contactform__block dl dd .koumoku-item__block,
.pages-confirm .confirm .contactform__block dl dd .koumoku-item__block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
  }
}
.pages-contact .contact .contactform__block dl dd .mwform-radio-field,
.pages-contact .confirm .contactform__block dl dd .mwform-radio-field,
.pages-confirm .contact .contactform__block dl dd .mwform-radio-field,
.pages-confirm .confirm .contactform__block dl dd .mwform-radio-field {
  margin: 0;
}
.pages-contact .contact .contactform__block dl dd .mwform-radio-field label,
.pages-contact .confirm .contactform__block dl dd .mwform-radio-field label,
.pages-confirm .contact .contactform__block dl dd .mwform-radio-field label,
.pages-confirm .confirm .contactform__block dl dd .mwform-radio-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  cursor: pointer;
}
.pages-contact .contact .contactform__block dl dd .mwform-radio-field label input[type=radio],
.pages-contact .confirm .contactform__block dl dd .mwform-radio-field label input[type=radio],
.pages-confirm .contact .contactform__block dl dd .mwform-radio-field label input[type=radio],
.pages-confirm .confirm .contactform__block dl dd .mwform-radio-field label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  margin: 0;
}
.pages-contact .contact .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked,
.pages-contact .confirm .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked,
.pages-confirm .contact .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked,
.pages-confirm .confirm .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked {
  position: relative;
}
.pages-contact .contact .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked::before,
.pages-contact .confirm .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked::before,
.pages-confirm .contact .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked::before,
.pages-confirm .confirm .contactform__block dl dd .mwform-radio-field label input[type=radio]:checked::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.1em;
  left: 0.07em;
  width: 0.6em;
  height: 0.3em;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
}
.pages-contact .contact .contactform__block dl dd .validation-error p,
.pages-contact .confirm .contactform__block dl dd .validation-error p,
.pages-confirm .contact .contactform__block dl dd .validation-error p,
.pages-confirm .confirm .contactform__block dl dd .validation-error p {
  color: #ff4500;
}
.pages-contact .contact .link__wrap,
.pages-contact .confirm .link__wrap,
.pages-confirm .contact .link__wrap,
.pages-confirm .confirm .link__wrap {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .contact .link__wrap,
.pages-contact .confirm .link__wrap,
.pages-confirm .contact .link__wrap,
.pages-confirm .confirm .link__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pages-contact .confirm .lead,
.pages-confirm .confirm .lead {
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .pages-contact .confirm .lead,
.pages-confirm .confirm .lead {
    margin-bottom: 64px;
  }
}
.pages-contact .confirm .link__wrap,
.pages-confirm .confirm .link__wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .pages-contact .confirm .link__wrap,
.pages-confirm .confirm .link__wrap {
    -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;
    row-gap: 24px;
  }
}

/* THANK YOU */
.pages-thanks .thanks {
  margin: 0 auto;
}
.pages-thanks .thanks .contents {
  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: 28px;
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .pages-thanks .thanks .contents {
    row-gap: 24px;
    margin-bottom: 64px;
  }
}
.pages-thanks .thanks .contents p {
  font-weight: 600;
  line-height: 25px;
}

@media only screen and (max-width: 767px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}