@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

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

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

small {
  font-size: inherit;
}

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

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
  padding: 0;
  border: none;
  background-color: transparent;
}

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

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

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.gothic {
  font-family: "Zen Kaku Gothic Antique", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.en {
  font-family: "Open Sans", sans-serif;
}

:root {
  --extend: min(calc(( 50vw - 50% ) * -1), 0px);
  --sideW: min(4.66vw, 70px);
  --headerHeight: 105px;
  --contentsWideS: 1080px;
  --contentsWideM: 1220px;
  --contentsWideL: 1360px;
}

@media screen and (max-width: 767px) {
  :root {
    --sideW: 6.6vw;
    --headerHeight: 118px;
    --sectionWrap: 3.75em;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
}
body {
  font: 400 16px/1.8 "Zen Kaku Gothic Antique", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.06em;
  color: #292929;
  text-align: left;
  counter-reset: number 0;
}

.l_container_wrap {
  position: relative;
  padding-top: var(--headerHeight);
}

.section_wrap {
  padding: 5em 0 7.5em;
}
@media screen and (max-width: 767px) {
  .section_wrap {
    padding: 3.75rem 0 5rem;
  }
}

.inner, .inner_l, .inner_m, .inner_s {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}

.inner_s {
  max-width: calc(var(--contentsWideS) + var(--sideW) * 2);
}

.inner_m {
  max-width: calc(var(--contentsWideM) + var(--sideW) * 2);
}

.inner_l {
  max-width: calc(var(--contentsWideL) + var(--sideW) * 2);
}

.add_ttl {
  border-left: 3px solid #282828;
  margin-bottom: 1em;
  padding-left: 0.5em;
  line-height: 1.6;
  font-size: 1.5em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.3em;
  }
}

.add_ttl_02 {
  border-left: 2px solid #707070;
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding-left: 0.75em;
  line-height: 1.5;
  font-size: 1.25em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .add_ttl_02 {
    font-size: 1.125em;
  }
}

.add_ttl_03 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.75em;
  margin-top: 1.5em;
  margin-bottom: 1em !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .add_ttl_03 {
    font-size: 1.3rem;
    padding-bottom: 1em;
  }
}
.add_ttl_03:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(40, 40, 40) 0%, rgb(40, 40, 40) 36px, rgb(239, 239, 239) 36px, rgb(239, 239, 239) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

a.add_link {
  text-decoration: underline;
}
a.add_link:hover {
  opacity: 0.7;
}

.login h1 a {
  width: 100px !important;
  height: 100px !important;
  background: url(../images/login_logo.png) no-repeat center/contain !important;
}

@media screen and (max-width: 767px) {
  .post_content {
    font-size: 0.9375rem;
  }
}
.post_content > * {
  margin-bottom: 1.5em;
}
.post_content > *:first-child {
  margin-top: 0 !important;
}
.post_content p {
  line-height: 2;
}

.voice_label {
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 30px;
  background-color: #242424;
  color: #fff;
  text-align: center;
  font-size: 13px;
  border-radius: 100px;
  margin-top: 2rem;
}

section,
.section {
  margin-bottom: 7.5em;
}
@media screen and (max-width: 767px) {
  section,
  .section {
    margin-bottom: 5em;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-weight: inherit;
  line-height: 1.5;
}

label {
  cursor: pointer;
}

button {
  padding: 0;
  border: none;
  color: inherit;
}

picture {
  display: contents;
}
picture img {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
  width: auto;
}

.opacity, .re_hero .re_sec_link ul li a, .dlist_contact.line .box_flex .link, .company_nav li a, .about01_sec_05 .button, .card_voice, .top_hero .inner_m .left a, .footer__gnavi a, .sec_instagram__link, .single_pagination a, .cmn_link_cta > li a, .btn_cmn_01, .list_lineup_nav > li .text a {
  transition: 0.5s;
}
@media (hover: hover) {
  .opacity:hover, .re_hero .re_sec_link ul li a:hover, .dlist_contact.line .box_flex .link:hover, .company_nav li a:hover, .about01_sec_05 .button:hover, .card_voice:hover, .top_hero .inner_m .left a:hover, .footer__gnavi a:hover, .sec_instagram__link:hover, .single_pagination a:hover, .cmn_link_cta > li a:hover, .btn_cmn_01:hover, .list_lineup_nav > li .text a:hover {
    opacity: 0.5;
  }
}

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

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.img_only {
  display: block;
}
.img_only img {
  display: block;
  width: 100%;
}

.text_link {
  text-decoration: underline !important;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 1em;
  border-radius: 0;
  border: 1px solid #A3A3A3;
  background: #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
  border-radius: 5px;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 1em 2em 1em 1em;
  border-radius: 5px;
  border: 1px solid #A3A3A3;
  background: url(../images/icon_tri_select.svg) no-repeat center right 10px/10px 8px #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
}

textarea {
  height: 15em;
}

input[type=checkbox] {
  accent-color: #282828;
  inline-size: 1.2em;
  block-size: 1.2em;
}

input[type=radio] {
  accent-color: #282828;
  inline-size: 1.2em;
  block-size: 1.2em;
}

.wpcf7-form-control-wrap[data-name=your-zip] {
  max-width: 310px;
  display: inline-block;
  margin: 0 32px 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-zip] {
    max-width: unset;
    margin: 0;
  }
}
.wpcf7-form-control-wrap[data-name=your-zip]:before {
  content: "〒";
  display: block;
  position: absolute;
  top: 1em;
  left: 20px;
}
.wpcf7-form-control-wrap[data-name=your-zip] input {
  padding-left: 56px;
}
.wpcf7-form-control-wrap[data-name=your-zip] + span {
  display: inline-block;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-zip] + span {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 0.875rem;
  }
}

.wpcf7-form-control-wrap[data-name=your-agreement] {
  margin-top: 50px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-agreement] {
    margin-top: 30px;
  }
}
.wpcf7-form-control-wrap[data-name=your-agreement] .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form-control-wrap[data-name=your-agreement] label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-agreement] label {
    font-size: 1rem;
  }
}
.wpcf7-form-control-wrap[data-name=your-agreement] label input {
  inline-size: 1.9em;
  block-size: 1.9em;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-agreement] label input {
    inline-size: 1.2em;
    block-size: 1.2em;
  }
}

.dlist_form > .group {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .dlist_form > .group {
    margin-bottom: 36px;
  }
}
.dlist_form > .group:last-child {
  margin-bottom: 0;
}
.dlist_form > .group > dt {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .dlist_form > .group > dt {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}
.dlist_form > .group > dt.require:after {
  content: "必須";
  font-size: 0.72em;
  font-weight: 700;
  color: #ED0000;
  margin-left: 17px;
}
@media screen and (max-width: 767px) {
  .dlist_form > .group > dt.require:after {
    margin-left: 12px;
    font-size: 0.75em;
  }
}
.dlist_form > .group > dd {
  flex-grow: 1;
}
.dlist_form > .group > dd .list_kome {
  font-size: 0.875em;
  padding-top: 1em;
}
.dlist_form > .group > dd.policy {
  font-size: 0.9375rem;
  line-height: 2;
}
.dlist_form > .group > dd.policy a {
  text-decoration: underline;
}
.dlist_form .zip {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .dlist_form .zip {
    margin-bottom: 12px;
  }
}

.container_checkbox {
  background-color: #F8F8F8;
  height: 100px;
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.container_checkbox input[type=checkbox] {
  width: 30px;
  background-image: url(../images/icon_checkbox_02.svg);
}
.container_checkbox input[type=checkbox]:checked {
  background-image: url(../images/icon_checkbox_checked_02.svg);
}

.wpcf7-response-output,
.wpcf7-spinner {
  display: none !important;
}

.list_date > li {
  width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .list_date > li {
    flex-direction: column;
    gap: 10px;
  }
}
.list_date > li .head {
  font-size: 0.875rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .list_date > li .head {
    width: 68px;
  }
}
.list_date > li .date,
.list_date > li .time {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .list_date > li .date,
  .list_date > li .time {
    gap: 10px;
  }
}
.list_date > li .date > span,
.list_date > li .time > span {
  flex-grow: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes fade_in {
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
[class^=fade_anim] {
  opacity: 0;
}
[class^=fade_anim].js-active {
  animation: fade_in 1s ease-out forwards;
}

.fade_anim.js-active {
  animation: fade_in 1s ease-in forwards;
}

.fade_anim_bottom {
  transform: translate(0, 60px);
}

.fade_anim_left {
  transform: translate(-40px, 0);
}

.fade_anim_right {
  transform: translate(60px, 0);
}

.ttl_cmn_01 {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.ttl_cmn_01:before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01:before {
    font-size: 2.375rem;
    margin-bottom: 6px;
  }
}
.ttl_cmn_01.text_center {
  text-align: center;
}
.ttl_cmn_01.text_bold:after {
  font-weight: 700;
}

.ttl_cmn_02 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 1.625rem;
    margin-bottom: 40px;
  }
}
.ttl_cmn_02 span:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #292929;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 span:after {
    margin-top: 18px;
  }
}
.ttl_cmn_02:after {
  margin-top: 22px;
  content: attr(data-en);
  display: block;
  color: #D5D5D5;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02:after {
    font-size: 0.75rem;
    margin-top: 20px;
  }
}

.ttl_cmn_03 {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.ttl_cmn_03:before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_03:before {
    font-size: 2.375rem;
    margin-bottom: 6px;
  }
}
.ttl_cmn_03.text_center {
  text-align: center;
}

.ttl_cmn_04, .dlist_policy_inner dt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.75em;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_04, .dlist_policy_inner dt {
    font-size: 1.2rem;
    padding-bottom: 1em;
    margin-bottom: 30px;
  }
}
.ttl_cmn_04:after, .dlist_policy_inner dt:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(40, 40, 40) 0%, rgb(40, 40, 40) 36px, rgb(239, 239, 239) 36px, rgb(239, 239, 239) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.ttl_cmn_05 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_05 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.ttl_cmn_05:after {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_05:after {
    font-size: 0.75rem;
  }
}

.ttl_cmn_06 {
  text-align: center;
}
.ttl_cmn_06 span {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_06 span {
    font-size: 1.6rem;
  }
}
.ttl_cmn_06 span:after {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_06 span:after {
    margin-top: 10px;
    font-size: 0.75rem;
  }
}
.ttl_cmn_06:after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  border: 1px solid #242424;
  background-color: #fff;
  margin-top: 24px;
}

.ttl_cmn_07 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_07 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.ttl_cmn_07:after {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_07:after {
    font-size: 0.8125rem;
    margin-top: 8px;
  }
}

.ttl_voice {
  position: absolute;
  top: -54px;
  right: 100%;
  writing-mode: vertical-rl;
  color: #696969;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .ttl_voice {
    font-size: 0.875rem;
    gap: 10px;
  }
}
.ttl_voice:before {
  content: "";
  display: block;
  width: 46px;
  aspect-ratio: 46/41;
  background: url(../images/ico_voice_01_gray.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ttl_voice:before {
    width: 34px;
  }
}

.ttl_standard_01 {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ttl_standard_01:before {
  content: attr(data-num);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3625;
  width: 128px;
  text-align: center;
  background: url(../images/text_standard.svg) no-repeat center bottom/100%;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .ttl_standard_01:before {
    width: 96px;
    font-size: 3.75rem;
  }
}
.ttl_standard_01 span {
  display: block;
  border: 1px solid #292929;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 53px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ttl_standard_01 span {
    font-size: 0.9375rem;
    padding: 8px 40px;
  }
}

.ttl_standard_02, .concept_grid_01 .texts h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ttl_standard_02, .concept_grid_01 .texts h2 {
    font-size: 1.4rem;
  }
}

.btn_cmn_01, .list_lineup_nav > li .text a {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
}
.btn_cmn_01:after, .list_lineup_nav > li .text a:after {
  content: "";
  display: block;
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F8F8F8 url(../images/ico_arrow_right_01_black.svg) no-repeat center/8px;
  transition: 0.3s;
}
@media (hover: hover) {
  .btn_cmn_01:hover:after, .list_lineup_nav > li .text a:hover:after {
    transform: translateX(10px);
  }
}

.btn_cmn_02, .btn_cmn_05, .btn_cmn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  height: 65px;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02, .btn_cmn_05, .btn_cmn_03 {
    max-width: 275px;
    font-size: 1rem;
  }
}
.btn_cmn_02:after, .btn_cmn_05:after, .btn_cmn_03:after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/11;
  background: url(../images/ico_arrow_right_01_black.svg) no-repeat center/contain;
  position: absolute;
  top: calc(50% - 5.5px);
  right: 13px;
}

.btn_cmn_03 {
  background-color: #696969;
  color: #fff;
}
.btn_cmn_03:after {
  background: url(../images/ico_arrow_right_01_white.svg) no-repeat center/contain;
}

.btn_cmn_05 {
  background-color: #282828;
  color: #fff;
}
.btn_cmn_05:after {
  background: url(../images/ico_arrow_right_01_white.svg) no-repeat center/contain;
}

.btn_cmn_04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  height: 80px;
  border-radius: 50px;
  background-color: #242424;
  border: 2px solid #242424;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 50px auto 0;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_cmn_04 {
    max-width: 300px;
    height: 64px;
    margin: 40px auto 0;
  }
}
.btn_cmn_04:after {
  content: "";
  display: block;
  width: 38px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_cmn_04:after {
    width: 26px;
    background-size: 5px;
  }
}
@media (hover: hover) {
  .btn_cmn_04:hover {
    background-color: #fff;
    color: #292929;
  }
  .btn_cmn_04:hover:after {
    right: 8px;
  }
}

.cmn_link_cta {
  width: 100%;
  max-width: 360px;
}
.cmn_link_cta > li {
  margin-top: 30px;
}
.cmn_link_cta > li:first-child {
  margin-top: 0;
}
.cmn_link_cta > li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 75px;
  background-color: #EFEFEF;
  color: #292929;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 88px;
  position: relative;
}
.cmn_link_cta > li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
}
.cmn_link_cta > li a:after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/11;
  background: url(../images/ico_arrow_right_01_black.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.cmn_link_cta > li a[data-type=来場予約]:before {
  width: 30px;
  aspect-ratio: 30/27;
  background: url(../images/ico_calendar_01_black.svg) no-repeat center/contain;
}
.cmn_link_cta > li a[data-type=資料請求]:before {
  width: 35px;
  aspect-ratio: 35/25;
  background: url(../images/ico_book_01_black.svg) no-repeat center/contain;
}
.cmn_link_cta > li a[data-type=お問い合わせ]:before {
  width: 33px;
  aspect-ratio: 33/23;
  background: url(../images/ico_mail_01_black.svg) no-repeat center/contain;
}

.footer .cmn_link_cta li:has(a[data-type=お問い合わせ]) {
  display: none;
}

.cmn_link_sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cmn_link_sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.list_kome > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_kome > li:before {
  content: "※";
}

.list_dot > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_dot > li:before {
  content: "・";
}

.list_ast > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_ast > li:before {
  content: "＊";
}

.list_maru > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_maru > li:before {
  content: "●";
}

.list_number {
  counter-reset: number 0;
}
.list_number > li {
  counter-increment: number 1;
}
.list_number > li:before {
  content: counter(number);
}

.breadcrumb {
  font-size: 0.9375rem;
  padding: 2em 0;
}
.breadcrumb br {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 0.875rem;
  }
}

.navigation.pagination {
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .navigation.pagination {
    margin-top: 3.75em;
  }
}
.navigation.pagination .nav-links {
  font-size: 0;
  text-align: center;
}
.navigation.pagination .nav-links .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ACACAC;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .navigation.pagination .nav-links .page-numbers {
    width: 36px;
    margin-right: 8px;
    font-size: 0.875rem;
  }
}
.navigation.pagination .nav-links .page-numbers:last-child {
  margin-right: 0;
}
.navigation.pagination .nav-links .page-numbers.current {
  background-color: #282828;
}
@media (hover: hover) {
  .navigation.pagination .nav-links .page-numbers:hover {
    background-color: #282828;
  }
}
.navigation.pagination .nav-links .page-numbers.dots {
  pointer-events: none;
}

.single_pagination {
  margin-top: 5rem;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  display: flex;
  align-items: center;
  padding: 1.75em 0;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .single_pagination {
    position: relative;
    flex-direction: column;
    gap: 0.75em;
    padding: 1.25em 0;
    margin-bottom: 8.75em;
  }
}
.single_pagination li.prev {
  width: 100%;
  flex-grow: 1;
}
.single_pagination li.prev a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.single_pagination li.prev a:before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #242424 url(../images/ico_arrow_right_01_white.svg) no-repeat center/6px;
  transform: rotate(180deg);
}
.single_pagination li.prev a span {
  font-size: 0.9375rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.single_pagination li.archive {
  flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single_pagination li.archive {
    position: absolute;
    top: calc(100% + 1.5em);
    left: 50%;
    transform: translateX(-50%);
  }
}
.single_pagination li.archive a {
  font-size: 0.9375rem;
}
.single_pagination li.archive a:before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../images/ico_pagination.svg) no-repeat center/contain;
  margin: 0 auto 8px;
}
.single_pagination li.next {
  text-align: right;
  width: 100%;
  flex-grow: 1;
}
.single_pagination li.next a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.single_pagination li.next a:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #242424 url(../images/ico_arrow_right_01_white.svg) no-repeat center/6px;
}
.single_pagination li.next a span {
  font-size: 0.9375rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.loading.end {
  opacity: 0;
  visibility: hidden;
}

.hbm_btn {
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  aspect-ratio: 1/1;
  position: fixed;
  z-index: 3;
  top: 22.5px;
  right: min(6vw, 60px);
}
@media screen and (max-width: 767px) {
  .hbm_btn {
    top: 18px;
    right: calc(var(--sideW) - 10px);
  }
}
.hbm_btn .box {
  display: block;
  width: 66%;
  position: relative;
}
.hbm_btn .box .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #282828;
  position: absolute;
  left: 0;
  transition: 0.5s;
}

.hbm_content {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.hbm_content.js-active {
  opacity: 1;
  visibility: visible;
}

[data-hbm-bar="3"] .box {
  aspect-ratio: 40/28;
  margin: 15% 0;
}
[data-hbm-bar="3"] .bar:nth-child(1) {
  top: 0;
}
[data-hbm-bar="3"] .bar:nth-child(2) {
  top: 50%;
}
[data-hbm-bar="3"] .bar:nth-child(3) {
  top: 100%;
}
[data-hbm-bar="3"].js-active .bar {
  background: #fff;
}
[data-hbm-bar="3"].js-active .bar:nth-child(1) {
  top: 50%;
  transform: rotate(135deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(2) {
  top: 50%;
  transform: rotateY(90deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(3) {
  top: 50%;
  transform: rotate(-135deg);
}

.parent {
  line-height: 1.5;
}
.parent > li {
  margin-bottom: 30px;
}
.parent > li:last-child {
  margin-bottom: 0;
}
.parent > li > a,
.parent > li > span {
  font-size: 1.125rem;
  font-weight: 700;
}

.child {
  padding-top: 11px;
}
.child > li {
  margin-top: 11px;
}

.grandchild {
  padding-left: 1em;
}
.grandchild > li {
  margin-top: 11px;
}
.grandchild > li a {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
.grandchild > li a:before {
  content: "＋";
  text-indent: 0em;
}

.list_lineup_nav {
  display: flex;
  gap: 3.275%;
}
@media screen and (max-width: 1023px) {
  .list_lineup_nav {
    flex-direction: column;
    gap: 20px;
  }
}
.list_lineup_nav > li {
  width: 100%;
  color: #fff;
}
.list_lineup_nav > li .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 380/180;
}
.list_lineup_nav > li .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_lineup_nav > li .text {
  padding: 24px 8% 32px;
  text-align: center;
}
.list_lineup_nav > li .text .name {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .list_lineup_nav > li .text .name {
    font-size: 1.25rem;
  }
}
.list_lineup_nav > li .text .price {
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .list_lineup_nav > li .text .price {
    font-size: 0.8125rem;
  }
}
.list_lineup_nav > li .text .price .grid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list_lineup_nav > li .text .price .grid .head {
  margin-right: 20px;
}
.list_lineup_nav > li .text .price .grid .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .list_lineup_nav > li .text .price .grid .num {
    font-size: 2.25rem;
  }
}
.list_lineup_nav > li .text .price .grid .init {
  display: flex;
  flex-direction: column-reverse;
}
.list_lineup_nav > li .text .price .grid .init .tax {
  font-size: 0.8125rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .list_lineup_nav > li .text .price .grid .init .tax {
    font-size: 11px;
  }
}
.list_lineup_nav > li .text .price > p span {
  display: inline-block;
  font-size: 0.75em;
}
.list_lineup_nav > li .text a {
  display: inline-flex;
  font-size: 0.875rem;
  gap: 15px;
  margin: 16px 0 0;
}
@media screen and (max-width: 767px) {
  .list_lineup_nav > li .text a {
    font-size: 0.75rem;
    gap: 13px;
  }
}
.list_lineup_nav > li .text a:after {
  width: 40px;
  background-size: 5px;
}
@media screen and (max-width: 767px) {
  .list_lineup_nav > li .text a:after {
    width: 34px;
    background-size: 4px;
  }
}
.list_lineup_nav > li[data-type=standard] {
  background-color: #282828;
}
.list_lineup_nav > li[data-type=premium] {
  background-color: #4F6073;
}
.list_lineup_nav > li[data-type=highgrade] {
  background-color: #696969;
}

.cmn_content_grid {
  margin-top: 50px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cmn_content_grid {
    font-size: 0.9375rem;
    text-align: left;
  }
}
.cmn_content_grid .large {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .cmn_content_grid .large {
    font-size: 1.5rem;
    text-align: center;
  }
}

.header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
}
.header__inner {
  width: 100%;
  height: var(--headerHeight);
  padding: 0 var(--sideW);
  display: flex;
  align-items: center;
}

.header_nav {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #282828;
  display: flex;
  color: #fff;
}
.header_nav:before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: calc(100% - 980px);
  height: 100%;
  background: url(../images/header_hbm_bg.jpg) no-repeat center left/cover;
}
@media screen and (max-width: 1279px) {
  .header_nav:before {
    content: none;
  }
}
.header_nav__inner {
  flex-grow: 1;
  padding: var(--headerHeight) var(--sideW) 5rem;
  height: 100%;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .header_nav__inner {
    padding: 5rem calc(var(--sideW) * 2) 3.75rem;
  }
}
.header_nav__main {
  display: flex;
  gap: 62px;
  justify-content: space-between;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .header_nav__main {
    flex-direction: column-reverse;
  }
}
.header_nav__main .cmn_gnavi {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header_nav__main .cmn_gnavi {
    flex-direction: column;
  }
}
.header_nav__main .cmn_link_cta {
  flex-shrink: 0;
  max-width: 307px;
}
@media screen and (max-width: 1279px) {
  .header_nav__main {
    max-width: 840px;
    margin: 0 auto 3.75em;
  }
}
.header_nav__sub {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1279px) {
  .header_nav__sub {
    max-width: 840px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .header_nav__sub {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header_nav .has_child > a, .header_nav .has_child span {
    display: block;
    position: relative;
  }
  .header_nav .has_child > a:after, .header_nav .has_child span:after {
    content: "";
    display: block;
    width: 33px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/6px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
  }
  .header_nav .child {
    display: none;
  }
}

.cmn_tel {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cmn_tel {
    width: auto;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.cmn_tel .call {
  text-align: center;
  margin-bottom: 0.5em;
}
.cmn_tel .call:before {
  content: "＼";
}
.cmn_tel .call:after {
  content: "／";
}
.cmn_tel a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .cmn_tel a {
    font-size: 2.25rem;
    gap: 8px;
  }
}
.cmn_tel a:before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 35px;
  aspect-ratio: 35/59;
  background: url(../images/ico_device_01_white.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cmn_tel a:before {
    width: 27px;
  }
}
.cmn_tel .info {
  padding-left: 50px;
  text-align: center;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .cmn_tel .info {
    font-size: 0.75rem;
    padding-left: 35px;
  }
}

.nav_cmn_01 {
  display: flex;
}
@media screen and (max-width: 767px) {
  .nav_cmn_01 {
    flex-direction: column;
  }
}
.nav_cmn_01 > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 625px;
  background: no-repeat center/cover;
  position: relative;
  padding: 4.5% 3.6%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .nav_cmn_01 > a {
    height: 315px;
  }
}
.nav_cmn_01 > a[data-type=無料相談会] {
  background-image: url(../images/nav_cmn_01_01.jpg);
}
.nav_cmn_01 > a[data-type=モデルハウス見学] {
  background-image: url(../images/nav_cmn_01_02.jpg);
}
.nav_cmn_01 > a[data-type=資料請求] {
  background-image: url(../images/nav_cmn_01_03.jpg);
}
.nav_cmn_01 > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 41, 41, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.nav_cmn_01 > a:after {
  content: "";
  width: 89.2%;
  height: 89.28%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .nav_cmn_01 > a:after {
    width: calc(100% - var(--sideW) * 2);
    height: calc(100% - var(--sideW) * 2);
  }
}
.nav_cmn_01 > a .ja {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .nav_cmn_01 > a .ja {
    font-size: 1.75rem;
    margin-top: 10px;
  }
}
.nav_cmn_01 > a .en {
  position: relative;
  z-index: 1;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .nav_cmn_01 > a .en {
    font-size: 0.75rem;
  }
}
.nav_cmn_01 > a .en:after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/5px;
  margin: 15px auto 0;
}
@media screen and (max-width: 767px) {
  .nav_cmn_01 > a .en:after {
    width: 35px;
    margin: 10px auto 0;
  }
}
@media (hover: hover) {
  .nav_cmn_01 > a:hover:before {
    background-color: rgba(41, 41, 41, 0.9);
  }
  .nav_cmn_01 > a:hover:after {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

.sec_instagram {
  margin: 0;
  padding: 7.5em 0;
}
@media screen and (max-width: 767px) {
  .sec_instagram {
    padding: 3.75em 0;
  }
}
.sec_instagram h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sec_instagram h2 {
    margin-bottom: 30px;
  }
}
.sec_instagram__link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sec_instagram__link:before {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  background: url(../images/ico_instagram_01_black.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .sec_instagram__link {
    font-size: 1rem;
    margin-top: 30px;
  }
  .sec_instagram__link:before {
    width: 27px;
  }
}

.footer {
  padding: 7.5em 0;
  background-color: #282828;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .footer {
    padding: 3.75em 0;
  }
}
.footer .logo {
  display: block;
  margin-top: 5rem;
}
.footer__text {
  margin-top: 28px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 11.3%;
}
.footer__main .box_left {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer__main .box_left {
    flex-shrink: unset;
  }
}
.footer__main .box_right {
  flex-grow: 1;
}
.footer__gnavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1264px) {
  .footer__gnavi {
    max-width: 500px;
  }
}
@media screen and (max-width: 1023px) {
  .footer__gnavi {
    display: none !important;
  }
}
.footer__sub {
  margin-top: 5rem;
  color: #9D9D9D;
  font-size: 0.975rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}
.footer .grecaptcha_text {
  color: #9D9D9D;
  text-align: center;
  font-size: 0.875em;
  margin-top: 1.875rem;
}

.follow_link_cta {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}
.follow_link_cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 138px;
  height: 62px;
  background-color: #282828;
  color: #fff;
  font-size: 0.9375em;
  font-weight: 700;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.follow_link_cta a[data-type=reserve] {
  border-radius: 40px 0 0 0;
  gap: 9px;
}
.follow_link_cta a[data-type=reserve]:before {
  content: "";
  display: block;
  width: 27px;
  aspect-ratio: 27/25;
  background: url(../images/ico_calender_01_white.svg) no-repeat center/contain;
}
.follow_link_cta a[data-type=request] {
  border-radius: 0 40px 0 0;
  gap: 7px;
}
.follow_link_cta a[data-type=request]:before {
  content: "";
  display: block;
  width: 31px;
  aspect-ratio: 31/22;
  background: url(../images/ico_book_01_white.svg) no-repeat center/contain;
}

.home .l_container_wrap {
  padding-top: 0;
}
.home .section_wrap {
  padding-bottom: 0;
}

.top_hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(../images/top_hero_01.jpg) no-repeat center/cover;
}
.top_hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_hero {
    background: none;
  }
  .top_hero:before {
    content: none;
  }
}
.top_hero .inner_m {
  position: relative;
  height: 100%;
  display: flex;
}
.top_hero .inner_m .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top_hero .inner_m .left {
    position: relative;
    z-index: 1;
  }
  .top_hero .inner_m .left .text {
    width: 90%;
    margin: 0 auto;
  }
}
.top_hero .inner_m .left a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 0 50px 5%;
}
@media screen and (max-width: 767px) {
  .top_hero .inner_m .left a {
    width: 216px;
    margin: 35px auto 0;
  }
}
.top_hero .inner_m .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_hero .inner_m .right {
    display: contents;
  }
}
.top_hero .inner_m .right .movie {
  height: 82.25%;
  display: block;
  overflow: hidden;
  aspect-ratio: 1280/2274;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_hero .inner_m .right .movie {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.top_hero .inner_m .right .movie:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/top_hero_04.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
.top_hero .inner_m .right .movie video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_banner {
  margin-bottom: 7.5em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_banner {
    margin-bottom: 5.625em;
  }
}
.top_banner .splide {
  margin: 0 auto;
  width: 43.53%;
}
@media screen and (max-width: 767px) {
  .top_banner .splide {
    width: 78.93%;
  }
}
.top_banner .splide__track {
  overflow: visible;
}
.top_banner .splide__pagination {
  position: static;
  margin: 30px var(--extend) 0;
}
.top_banner .splide__pagination li button {
  display: block;
  opacity: 1;
  width: 50px;
  height: 3px;
  background-color: #D5D5D5;
  border-radius: 0;
}
.top_banner .splide__pagination li button.is-active {
  transform: none;
  background-color: #282828;
}
.top_banner .splide__slide {
  display: block;
}
.top_banner .splide__slide.is-active .card_top_banner {
  transform: scale(1);
}

.card_top_banner {
  transform: scale(0.8);
  transform-origin: bottom center;
  display: block;
  overflow: hidden;
  position: relative;
}
.card_top_banner:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 61.25%;
}
@media screen and (max-width: 767px) {
  .card_top_banner:after {
    padding-top: 125%;
  }
}
.card_top_banner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.top_concept {
  background: url(../images/top_concept_01.jpg) no-repeat center/cover;
  position: relative;
  padding: 7.5em 0;
}
@media screen and (max-width: 767px) {
  .top_concept {
    padding: 3.75em 0;
  }
}
.top_concept:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, 0.68);
  position: absolute;
  top: 0;
  left: 0;
}
.top_concept .inner_m {
  position: relative;
}
.top_concept h2 {
  color: #fff;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top_concept h2 {
    font-size: 1.25em;
  }
}
.top_concept h2 + p {
  color: #fff;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top_concept h2 + p {
    font-size: 1.5em;
    margin: 0 calc(var(--sideW) * -1) 30px;
  }
}
.top_concept ul {
  counter-reset: number 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4.92%;
}
@media screen and (max-width: 767px) {
  .top_concept ul {
    gap: 14px 3%;
    margin: 0 -6px;
  }
}
.top_concept ul li {
  width: 30.0533333333%;
  counter-increment: number 1;
}
@media screen and (max-width: 1179px) {
  .top_concept ul li {
    width: 47.54%;
  }
}
@media screen and (max-width: 767px) {
  .top_concept ul li {
    width: 48.5%;
  }
}
.top_concept ul li a {
  display: flex;
  gap: 8px;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 32px 16px 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_concept ul li a {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 13px 0;
  }
}
.top_concept ul li a:before {
  content: "";
  display: block;
  width: 76px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background: no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top_concept ul li a:before {
    width: 65px;
  }
}
.top_concept ul li a:after {
  content: "";
  display: block;
  width: 3px;
  height: 62px;
  background: #282828;
  position: absolute;
  top: calc(50% - 31px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_concept ul li a:after {
    content: none;
  }
}
.top_concept ul li a span {
  display: block;
  flex-grow: 1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_concept ul li a span {
    font-size: 0.9375rem;
    position: static;
  }
}
.top_concept ul li a span:before {
  content: "0" counter(number);
  display: block;
  color: #D5D5D5;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top_concept ul li a span:before {
    content: none;
  }
}
.top_concept ul li a span:after {
  content: "";
  display: block;
  width: 13px;
  aspect-ratio: 13/10;
  background: url(../images/ico_arrow_right_02_black.svg) no-repeat center/contain;
  position: absolute;
  top: 36px;
  left: calc(100% + 2px);
}
@media screen and (max-width: 767px) {
  .top_concept ul li a span:after {
    top: calc(50% - 5px);
    left: unset;
    right: 10px;
  }
}
.top_concept ul li a[data-type=about01]:before {
  background-image: url(../images/top_concept_03.jpg);
}
.top_concept ul li a[data-type=about02]:before {
  background-image: url(../images/top_concept_04.jpg);
}
.top_concept ul li a[data-type=about03]:before {
  background-image: url(../images/top_concept_05.jpg);
}
.top_concept ul li a[data-type=about04]:before {
  background-image: url(../images/top_concept_06.jpg);
}
.top_concept ul li a[data-type=about05]:before {
  background-image: url(../images/top_concept_07.jpg);
}
.top_concept ul li a[data-type=about06]:before {
  background-image: url(../images/top_concept_08.jpg);
}
@media (hover: hover) {
  .top_concept ul li a:hover {
    transform: scale(1.05);
  }
}

.top_event .btn_cmn_01, .top_event .list_lineup_nav > li .text a, .list_lineup_nav > li .text .top_event a {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top_event .btn_cmn_01, .top_event .list_lineup_nav > li .text a, .list_lineup_nav > li .text .top_event a {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .top_event .splide__list {
    display: flex !important;
    gap: 4.75%;
  }
  .top_event .splide__list > div {
    width: 21.4375%;
  }
}
.top_event .splide__arrow {
  opacity: 1;
  width: 54px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/7px;
  top: 32%;
}
.top_event .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_event .splide__arrow {
    width: 40px;
  }
}
.top_event .splide__arrow--prev {
  left: 0;
  transform: translateX(-50%) rotateY(180deg);
}
.top_event .splide__arrow--next {
  right: 0;
  transform: translateX(50%);
}

.card_event {
  display: block;
}
.card_event:hover img {
  transform: scale(1.05);
}
.card_event .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 262/327;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
  transition: 0.3s;
}
.card_event .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.card_event .ttl {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 14px;
}
.card_event dl {
  font-size: 0.875em;
  line-height: 1.5;
}
.card_event dl .item {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5em;
}
.card_event dl .item:last-child {
  margin-bottom: 0;
}
.card_event dl .item dt {
  flex-shrink: 0;
}
.card_event dl .item dt:after {
  content: "：";
}
.card_event.is-end {
  pointer-events: none;
}
.card_event.is-end .image:after {
  content: "終了しました";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.7);
}

.top_lineup h2 {
  text-align: center;
}
.top_lineup h2 + p {
  text-align: center;
  margin-bottom: 50px;
}

.top_modelhouse {
  padding: 140px 0 106px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_modelhouse {
    padding: 180px 0 0;
  }
}
.top_modelhouse .wrapper {
  background-color: #696969;
}
.top_modelhouse .inner_m {
  color: #fff;
  display: flex;
  gap: 8.11%;
}
@media screen and (max-width: 767px) {
  .top_modelhouse .inner_m {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.top_modelhouse .inner_m .texts {
  flex-grow: 1;
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .top_modelhouse .inner_m .texts {
    padding: 0 0 60px;
  }
}
.top_modelhouse .inner_m .texts h2 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_modelhouse .inner_m .texts h2 {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.top_modelhouse .inner_m .texts h2:before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 2.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top_modelhouse .inner_m .texts h2:before {
    font-size: 2rem;
  }
}
.top_modelhouse .inner_m .texts p {
  font-size: 0.9375rem;
}
.top_modelhouse .inner_m .texts .btn_cmn_01, .top_modelhouse .inner_m .texts .list_lineup_nav > li .text a, .list_lineup_nav > li .text .top_modelhouse .inner_m .texts a {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top_modelhouse .inner_m .texts .btn_cmn_01, .top_modelhouse .inner_m .texts .list_lineup_nav > li .text a, .list_lineup_nav > li .text .top_modelhouse .inner_m .texts a {
    margin-top: 20px;
  }
}
.top_modelhouse .inner_m .image {
  flex-shrink: 0;
  width: 41.89%;
  margin: -140px 0 -106px;
}
@media screen and (max-width: 767px) {
  .top_modelhouse .inner_m .image {
    width: 100%;
    margin: 0;
    margin: -180px 0 0;
  }
}
.top_modelhouse .inner_m .image .splide__track {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .top_modelhouse .inner_m .image .splide__track {
    overflow: hidden;
  }
}
.top_modelhouse .inner_m .image .splide__slide {
  max-width: 100%;
  display: block;
  overflow: hidden;
  aspect-ratio: 511/195;
}
.top_modelhouse .inner_m .image .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .top_voice {
    padding-top: 54px;
  }
  .top_voice .inner_l {
    padding: 0;
  }
}
.top_voice .content {
  position: relative;
  background-color: #F8F8F8;
  border-radius: 20px 20px 0 0;
  padding: 100px var(--sideW);
}
@media screen and (max-width: 767px) {
  .top_voice .content {
    padding: 44px var(--sideW) 60px;
  }
}
.top_voice .content .ttl_voice {
  position: absolute;
  top: -54px;
  right: 100%;
}
@media screen and (max-width: 767px) {
  .top_voice .content .ttl_voice {
    right: unset;
    left: var(--sideW);
  }
}
.top_voice .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top_voice .content h3 {
    font-size: 1.5rem;
    margin-left: var(--sideW);
  }
}
.top_voice .content h3 + p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_voice .content h3 + p {
    text-align: left;
    font-size: 0.9375rem;
  }
}
.top_voice .splide__arrow {
  opacity: 1;
  width: 54px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/7px;
  top: 32%;
}
.top_voice .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_voice .splide__arrow {
    width: 40px;
  }
}
.top_voice .splide__arrow--prev {
  left: 0;
  transform: translateX(-50%) rotateY(180deg);
}
.top_voice .splide__arrow--next {
  right: 0;
  transform: translateX(50%);
}
.top_voice .splide__pagination {
  position: static;
  margin: 30px var(--extend) 0;
}
.top_voice .splide__pagination li button {
  display: block;
  opacity: 1;
  width: 50px;
  height: 3px;
  background-color: #D5D5D5;
  border-radius: 0;
}
.top_voice .splide__pagination li button.is-active {
  transform: none;
  background-color: #134A97;
}
@media screen and (max-width: 767px) {
  .top_voice .splide__pagination li button {
    width: 28px;
  }
}

.card_voice .image {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 310/200;
}
.card_voice .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_voice .ttl {
  margin-top: 1em;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.top_banner_02 {
  margin-bottom: 7.5em;
}
@media screen and (max-width: 767px) {
  .top_banner_02 {
    margin-bottom: 5em;
  }
}
.top_banner_02 .inner_m {
  display: flex;
  gap: 25px 5.74%;
}
@media screen and (max-width: 767px) {
  .top_banner_02 .inner_m {
    flex-direction: column;
  }
}
.top_banner_02 a {
  width: 100%;
  display: block;
  overflow: hidden;
  aspect-ratio: 360/450;
  position: relative;
}
.top_banner_02 a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.top_banner_02 a:after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: rgba(248, 248, 248, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .top_banner_02 a:hover img {
    transform: scale(1.05);
  }
  .top_banner_02 a:hover:after {
    width: 100%;
    left: 0;
    right: unset;
  }
}

.top_column {
  padding-bottom: 6.25em;
  background: linear-gradient(0deg, rgb(105, 105, 105) 0%, rgb(105, 105, 105) 380px, rgba(105, 105, 105, 0) 380px, rgba(105, 105, 105, 0) 100%);
}
.top_column .card_blog {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top_column .splide__list {
    display: flex !important;
    gap: 5%;
  }
  .top_column .splide__list > div {
    width: 30%;
  }
}
.top_column .splide__arrow {
  opacity: 1;
  width: 54px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/7px;
  top: 32%;
}
.top_column .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_column .splide__arrow {
    width: 40px;
  }
}
.top_column .splide__arrow--prev {
  left: 0;
  transform: translateX(-50%) rotateY(180deg);
}
.top_column .splide__arrow--next {
  right: 0;
  transform: translateX(50%);
}

.top_blog {
  margin-bottom: 0;
  padding-bottom: 6.25em;
  background: linear-gradient(0deg, #242424 0%, #242424 380px, rgba(105, 105, 105, 0) 380px, rgba(105, 105, 105, 0) 100%);
}
.top_blog .card_blog {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top_blog .splide__list {
    display: flex !important;
    gap: 5%;
  }
  .top_blog .splide__list > div {
    width: 30%;
  }
}
.top_blog .splide__arrow {
  opacity: 1;
  width: 54px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/7px;
  top: 32%;
}
.top_blog .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_blog .splide__arrow {
    width: 40px;
  }
}
.top_blog .splide__arrow--prev {
  left: 0;
  transform: translateX(-50%) rotateY(180deg);
}
.top_blog .splide__arrow--next {
  right: 0;
  transform: translateX(50%);
}

.card_blog {
  position: relative;
}
.card_blog .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 364/234;
  border-radius: 5px;
  margin-bottom: 20px;
}
.card_blog .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.card_blog .cat {
  position: absolute;
  top: 11px;
  right: 11px;
  display: block;
  background-color: #fff;
  border-radius: 5px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 8px 20px;
  color: #292929;
}
.card_blog .date {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875em;
  margin-bottom: 8px;
}
.card_blog .ttl {
  font-weight: 700;
}
@media (hover: hover) {
  .card_blog:hover {
    filter: brightness(1.2);
  }
  .card_blog:hover .image img {
    transform: scale(1.05);
  }
}

.page_hero .inner_l {
  display: flex;
  align-items: center;
  gap: 3.94%;
}
@media screen and (max-width: 767px) {
  .page_hero .inner_l {
    flex-direction: column-reverse;
    gap: 1.5em;
  }
}
.page_hero .inner_l .texts {
  flex-shrink: 0;
  width: 34.92%;
}
@media screen and (max-width: 767px) {
  .page_hero .inner_l .texts {
    width: 100%;
  }
}
.page_hero .inner_l .image {
  flex-grow: 1;
  display: block;
  overflow: hidden;
  height: 483px;
  margin: 0 var(--extend) 0 0;
  border-radius: 500px 0 0 500px;
}
@media screen and (max-width: 767px) {
  .page_hero .inner_l .image {
    height: 200px;
  }
}
.page_hero .inner_l .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_hero .ttl_cmn_03:before {
  font-weight: 700;
}
.page_hero h1 {
  margin-top: 36px;
  font-size: 1.75rem;
  font-weight: 700;
  padding: 0 0 0 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_hero h1 {
    font-size: 1.4rem;
    margin-top: 22px;
    padding: 0 0 0 50px;
  }
}
.page_hero h1:before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #292929;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_hero h1:before {
    width: 35px;
  }
}

.page-concept .l_container_wrap {
  padding-top: 0;
}
.page-concept .section_wrap {
  padding-top: 0;
}

.concept_hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.75rem;
}
.concept_hero video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept_hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(40, 40, 40, 0.17);
  position: absolute;
  top: 0;
  left: 0;
}
.concept_hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 600;
}
.concept_hero h1:before {
  font-weight: inherit;
}

.concept_sec_01 p {
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.04;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 p {
    font-size: 1rem;
  }
}
.concept_sec_01 .text_01 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 .text_01 {
    margin-bottom: 60px;
  }
}
.concept_sec_01 .text_01:before {
  content: "";
  display: block;
  width: 124px;
  aspect-ratio: 1/1;
  background: url(../images/concept_01.svg) no-repeat center/contain;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 .text_01:before {
    width: 100px;
  }
}
.concept_sec_01 .image {
  margin: 0 var(--extend) 60px;
  background: #D5D5D5;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 .image {
    height: 200px;
    display: block;
    overflow: hidden;
  }
  .concept_sec_01 .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.concept_sec_01 .text_02 {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 .text_02 {
    margin-bottom: 6rem;
  }
}
.concept_sec_01 .text_02:before {
  content: "";
  display: block;
  width: 124px;
  aspect-ratio: 1/1;
  background: url(../images/concept_03.svg) no-repeat center/contain;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 .text_02:before {
    width: 100px;
  }
}
.concept_sec_01 .text_02 p {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 .text_02 p {
    margin-bottom: 40px;
  }
}
.concept_sec_01 .text_02 p:last-child {
  margin-bottom: 0;
}
.concept_sec_01 .text_03 {
  text-align: center;
}
.concept_sec_01 .text_03 img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .concept_sec_01 .text_03 img {
    width: 70%;
    max-width: 100%;
    margin: 0 auto 40px;
  }
}

.concept_sec_02 {
  position: relative;
}
.concept_sec_02 .image {
  margin: 0 0 60px var(--extend);
  display: block;
  overflow: hidden;
  height: 440px;
  border-radius: 0 220px 220px 0;
}
@media screen and (max-width: 767px) {
  .concept_sec_02 .image {
    height: 220px;
  }
}
.concept_sec_02 .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept_sec_02 .box_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .concept_sec_02 .box_flex {
    gap: 40px;
    justify-content: center;
  }
}
.concept_sec_02 h2 {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .concept_sec_02 h2 {
    font-size: 1.5rem;
    width: 100%;
  }
}
.concept_sec_02 h2:before {
  content: "";
  display: block;
  width: 207px;
  aspect-ratio: 207/51;
  background: url(../images/concept_06.svg) no-repeat left bottom/contain;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .concept_sec_02 h2:before {
    width: 160px;
    margin-bottom: 20px;
  }
}
.concept_sec_02 .list_spec {
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .concept_sec_02 .list_spec {
    flex-direction: column;
  }
}
.concept_sec_02 .list_spec li {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 220px;
  aspect-ratio: 220/195;
  border-radius: 5px;
  text-align: center;
  padding: 20px 0 22px;
}
.concept_sec_02 .list_spec li h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.concept_sec_02 .list_spec li h3:after {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 5px;
  color: #D5D5D5;
}
.concept_sec_02 .list_spec li p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.concept_sec_02 .list_spec li p.bold {
  font-weight: 700;
}
.concept_sec_02 .list_spec li p.num {
  font-family: "Open Sans", sans-serif;
  font-size: 43px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.concept_sec_02 .list_spec li p.num span {
  font-size: 17px;
  margin-left: 8px;
}
.concept_sec_02 .list_spec li p.num span.ja {
  font-family: "Zen Kaku Gothic Antique", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.concept_sec_02 .lead {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .concept_sec_02 .lead {
    text-align: left;
  }
}

.list_about_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 3%;
}
@media screen and (max-width: 767px) {
  .list_about_nav {
    margin: 0 var(--extend);
    gap: 0;
  }
}
.list_about_nav > li {
  width: 31.3333333333%;
}
@media screen and (max-width: 767px) {
  .list_about_nav > li {
    width: 100%;
  }
}
.list_about_nav a {
  display: block;
  background: no-repeat center/cover;
  position: relative;
  color: #fff;
}
.list_about_nav a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 41, 41, 0.51);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.list_about_nav a:after {
  content: "";
  width: 93%;
  height: 93%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .list_about_nav a:after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.list_about_nav a[data-type=about01] {
  background-image: url(../images/anout_nav_01.jpg);
}
.list_about_nav a[data-type=about02] {
  background-image: url(../images/anout_nav_02.jpg);
}
.list_about_nav a[data-type=about03] {
  background-image: url(../images/anout_nav_03.jpg);
}
.list_about_nav a[data-type=about04] {
  background-image: url(../images/anout_nav_04.jpg);
}
.list_about_nav a[data-type=about05] {
  background-image: url(../images/anout_nav_05.jpg);
}
.list_about_nav a[data-type=about06] {
  background-image: url(../images/anout_nav_06.jpg);
}
.list_about_nav a .text {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 478px;
  padding: 7%;
}
@media screen and (max-width: 767px) {
  .list_about_nav a .text {
    height: 162px;
    padding: 20px;
    font-size: 1.2rem;
  }
}
.list_about_nav a .text:after {
  content: "";
  display: block;
  width: 72px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/9px;
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .list_about_nav a .text:after {
    width: 28px;
    left: unset;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    background-size: 6px;
  }
}
@media (hover: hover) {
  .list_about_nav a:hover:before {
    background-color: rgba(41, 41, 41, 0.9);
  }
  .list_about_nav a:hover:after {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

.concept_sec_03 {
  overflow: hidden;
}
.concept_sec_03 h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.66;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .concept_sec_03 h2 {
    font-size: 1.5rem;
    margin: 0 0 30px;
  }
}
.concept_sec_03 h2:before {
  content: "";
  display: block;
  width: 390px;
  aspect-ratio: 390/57;
  background: url(../images/concept_07.svg) no-repeat left bottom/contain;
  margin: 0 auto 14px;
}
@media screen and (max-width: 767px) {
  .concept_sec_03 h2:before {
    width: 280px;
  }
}
.concept_sec_03 .splide {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.concept_sec_03 .splide__track {
  overflow: visible;
}
.concept_sec_03 .splide__pagination {
  position: static;
  margin: 30px var(--extend) 0;
}
.concept_sec_03 .splide__pagination li button {
  display: block;
  opacity: 1;
  width: 50px;
  height: 3px;
  background-color: #D5D5D5;
  border-radius: 0;
}
.concept_sec_03 .splide__pagination li button.is-active {
  transform: none;
  background-color: #282828;
}
.concept_sec_03 .card_questionnaire {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}

.card_award {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 13px 44px 38px;
}
@media screen and (max-width: 767px) {
  .card_award {
    padding: 20px var(--sideW) 38px;
  }
}
.card_award .ttl {
  border-bottom: 1px solid #292929;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .card_award .ttl {
    flex-direction: column;
    gap: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.card_award .ttl .num {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3625;
  background: url(../images/ico_crown.svg) no-repeat top 30px left/41px;
}
@media screen and (max-width: 767px) {
  .card_award .ttl .num {
    font-size: 1.5rem;
    background: url(../images/ico_crown.svg) no-repeat top 24px left/36px;
  }
}
.card_award .ttl .num span {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .card_award .ttl .num span {
    font-size: 4rem;
  }
}
.card_award .ttl h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.card_award .comment {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.card_award .comment:before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 133px;
  aspect-ratio: 133/120;
  background: url(../images/concept_08.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .card_award .comment:before {
    display: none;
  }
}
.card_award .comment p {
  font-size: 0.875em;
  letter-spacing: 0.04em;
}
.card_award .label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 38px;
  border-radius: 50px;
  background-color: #242424;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.card_award .label + p {
  font-size: 0.875em;
  letter-spacing: 0.04em;
}

.concept_sec_04 {
  margin-bottom: 0;
}
.concept_sec_04 h2 {
  text-align: center;
}

.concept_sec_05 {
  margin-top: -220px;
  padding: 180px 0 100px;
  background: #F8F8F8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .concept_sec_05 {
    margin-top: -5rem;
    padding: 5rem 0;
  }
}
.concept_sec_05 h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .concept_sec_05 h2 {
    font-size: 1.5rem;
  }
}
.concept_sec_05 p {
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 40px;
}
.concept_sec_05 figure {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.about_lead {
  margin-bottom: 3.75rem;
}
.about_lead .inner_s {
  display: flex;
  gap: 2.9%;
}
@media screen and (max-width: 767px) {
  .about_lead .inner_s {
    flex-direction: column;
    gap: 1.5em;
  }
}
.about_lead .inner_s > p,
.about_lead .inner_s .texts {
  padding: 0.65% 0 0;
  flex-shrink: 0;
  width: 54.63%;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about_lead .inner_s > p,
  .about_lead .inner_s .texts {
    width: 100%;
  }
}
.about_lead h2 {
  flex-grow: 1;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .about_lead h2 {
    font-size: 1.6875rem;
  }
}
.about_lead .links {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .about_lead .links {
    text-align: center;
  }
}
.about_lead .links li {
  display: inline-block;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .about_lead .links li {
    margin-bottom: 1.5em;
    margin-right: 0px;
  }
}
.about_lead .links li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.about_lead .links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-weight: 700;
}
.about_lead .links li a:after {
  content: "";
  display: block;
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #292929 url(../images/ico_arrow_right_01_white.svg) no-repeat center/7px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .about_lead .links li a:after {
    width: 40px;
    background-size: 5px;
  }
}
@media (hover: hover) {
  .about_lead .links li a:hover:after {
    transform: rotate(90deg);
  }
}

.concept_layout_01 > section {
  border-top: 1px dashed #D5D5D5;
  padding: 5rem 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .concept_layout_01 > section {
    padding: 2.5rem 0;
  }
}

.concept_grid_01 {
  display: flex;
  align-items: flex-start;
  gap: 5.84%;
}
@media screen and (max-width: 767px) {
  .concept_grid_01 {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.concept_grid_01 .texts {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .concept_grid_01 .texts {
    width: 100%;
  }
}
.concept_grid_01 .texts .ttl_standard_01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .concept_grid_01 .texts .ttl_standard_01 {
    margin-bottom: 24px;
  }
}
.concept_grid_01 .texts h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .concept_grid_01 .texts h2 {
    margin-bottom: 24px;
  }
}
.concept_grid_01 .texts .para {
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept_grid_01 .texts .para {
    font-size: 0.9375rem;
  }
}
.concept_grid_01 .texts .para p {
  margin-bottom: 1.5rem;
}
.concept_grid_01 .texts .para p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .concept_grid_01 .texts .para p {
    margin-bottom: 1.2rem;
  }
}
.concept_grid_01 .image {
  width: 44.16%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .concept_grid_01 .image {
    width: 100%;
  }
}

.concept_grid_02 > li {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .concept_grid_02 > li {
    margin-bottom: 30px;
  }
}
.concept_grid_02 > li:last-child {
  margin-bottom: 0;
}
.concept_grid_02 > li h3 {
  padding: 15px var(--sideW);
  background: #292929;
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .concept_grid_02 > li h3 {
    margin-bottom: 20px;
  }
}
.concept_grid_02 > li h3 + p {
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept_grid_02 > li h3 + p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
}
.concept_grid_02 > li ul {
  width: 100%;
  max-width: 94.44%;
  margin: 0 auto;
  display: flex;
  gap: 2.45%;
}
@media screen and (max-width: 767px) {
  .concept_grid_02 > li ul {
    flex-direction: column;
    gap: 1rem;
  }
}
.concept_grid_02 > li ul li {
  width: 100%;
}
.concept_grid_02 > li ul li h4 {
  background-color: #EFEFEF;
  border-radius: 50px;
  text-align: center;
  padding: 6.5px 5%;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.concept_grid_02 > li ul li p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.71;
}

.concept_grid_03 {
  margin-top: 3.75rem;
}
.concept_grid_03 > li {
  padding: 40px 0;
  border-top: 1px dashed #D5D5D5;
  display: flex;
  align-items: flex-start;
  gap: 4.82%;
}
@media screen and (max-width: 767px) {
  .concept_grid_03 > li {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.concept_grid_03 > li:last-child {
  padding-bottom: 0;
}
.concept_grid_03 > li .image {
  flex-shrink: 0;
  width: 30.28%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .concept_grid_03 > li .image {
    width: 100%;
  }
}
.concept_grid_03 > li .texts {
  flex-grow: 1;
  padding: 2.77% 0 0;
}
@media screen and (max-width: 767px) {
  .concept_grid_03 > li .texts {
    padding: 0;
  }
}
.concept_grid_03 > li h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .concept_grid_03 > li h3 {
    font-size: 1.25rem;
  }
}
.concept_grid_03 > li p {
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept_grid_03 > li p {
    font-size: 0.9375rem;
  }
}

.concept_child_nav {
  margin-top: 3.75rem;
}
.concept_child_nav__text {
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .concept_child_nav__text {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }
}
.concept_child_nav .inner_m {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .concept_child_nav .inner_m {
    gap: 8px;
  }
}
.concept_child_nav .inner_m > li {
  width: calc((100% - 2rem) / 3);
}
@media screen and (max-width: 767px) {
  .concept_child_nav .inner_m > li {
    width: 100%;
  }
}
.concept_child_nav .inner_m > li a {
  display: block;
  background: no-repeat center/cover;
  position: relative;
  padding: 11px 14px;
  height: 100%;
}
.concept_child_nav .inner_m > li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(40, 40, 40, 0.51);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.concept_child_nav .inner_m > li a:after {
  content: "";
  display: block;
  width: calc(100% - 28px);
  height: calc(100% - 22px);
  position: absolute;
  top: 11px;
  left: 14px;
  border: 1px solid #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .concept_child_nav .inner_m > li a:after {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    top: 7px;
    left: 7px;
  }
}
.concept_child_nav .inner_m > li a span {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 52px 22px;
}
@media screen and (max-width: 767px) {
  .concept_child_nav .inner_m > li a span {
    font-size: 1.2rem;
    padding: 30px 14px;
  }
}
.concept_child_nav .inner_m > li a span:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 36px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff url(../images/ico_arrow_right_01_black.svg) no-repeat center/5px;
}
@media (hover: hover) {
  .concept_child_nav .inner_m > li a:hover:before {
    background: rgba(40, 40, 40, 0.9);
  }
  .concept_child_nav .inner_m > li a:hover:after {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
.concept_child_nav .inner_m > li a.current {
  pointer-events: none;
}
.concept_child_nav .inner_m > li a.current:before {
  background: rgba(40, 40, 40, 0.9);
}
.concept_child_nav .inner_m > li a.current:after {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.concept_child_nav .inner_m > li a.current span:after {
  content: none;
}
.concept_child_nav .inner_m > li:nth-child(1) a {
  background-image: url(../images/concept_child_nav_01.jpg);
}
.concept_child_nav .inner_m > li:nth-child(2) a {
  background-image: url(../images/concept_child_nav_02.jpg);
}
.concept_child_nav .inner_m > li:nth-child(3) a {
  background-image: url(../images/concept_child_nav_03.jpg);
}
.concept_child_nav .inner_m > li:nth-child(4) a {
  background-image: url(../images/concept_child_nav_04.jpg);
}
.concept_child_nav .inner_m > li:nth-child(5) a {
  background-image: url(../images/concept_child_nav_05.jpg);
}
.concept_child_nav .inner_m > li:nth-child(6) a {
  background-image: url(../images/concept_child_nav_06.jpg);
}

.about01_sec_02 .content {
  width: 100%;
  max-width: 926px;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 27px 5.4%;
}
.about01_sec_02 .content .box {
  width: 47.3%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 25px 3% 20px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .about01_sec_02 .content .box {
    width: 100%;
    padding: 25px 6% 20px;
  }
}
.about01_sec_02 .content .box h3 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .about01_sec_02 .content .box h3 {
    font-size: 1.3125rem;
  }
}
.about01_sec_02 .content .box .value {
  border-bottom: 1px solid #292929;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 5px 0 10px;
}
.about01_sec_02 .content .box .value span {
  font-family: "Open Sans", sans-serif;
  font-size: 43px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about01_sec_02 .content .box .value span {
    font-size: 34.4px;
  }
}
.about01_sec_02 .content .box .result {
  font-size: 0.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .about01_sec_02 .content .box .result {
    margin-top: 10px;
    font-size: 0.8125rem;
  }
}
.about01_sec_02 .content .box .result span {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about01_sec_02 .content .box .result span {
    font-size: 0.9375rem;
  }
}
.about01_sec_02 .content .box .result span span {
  font-family: "Open Sans", sans-serif;
  font-size: 43px;
  font-weight: 600;
  margin-right: 10px;
}
.about01_sec_02 .content .box .result span span.c_red {
  color: #D50F35;
}
@media screen and (max-width: 767px) {
  .about01_sec_02 .content .box .result span span {
    font-size: 34.4px;
  }
}
.about01_sec_02 .content > p {
  width: 100%;
  text-align: center;
  padding: 20px var(--sideW);
  background-color: #282828;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about01_sec_02 .content > p {
    font-size: 1.3125rem;
  }
}

.about01_sec_03 .ttl_standard_01 {
  margin-bottom: 30px;
}
.about01_sec_03 .ttl_standard_02, .about01_sec_03 .concept_grid_01 .texts h2, .concept_grid_01 .texts .about01_sec_03 h2 {
  margin-bottom: 30px;
}

.about01_sec_04 .concept_grid_01 {
  margin-bottom: 50px;
}
.about01_sec_04 .content {
  display: flex;
  gap: 3.7%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.about01_sec_04 .content .head {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #292929;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content .head {
    flex-direction: column;
    align-items: unset;
    gap: 0.5rem;
  }
}
.about01_sec_04 .content .head span {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content .head span {
    font-size: 0.8125rem;
  }
}
.about01_sec_04 .content .box_01 {
  flex-grow: 1;
}
.about01_sec_04 .content .box_01 .value {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #292929;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content .box_01 .value {
    justify-content: center;
    padding: 15px 0;
  }
}
.about01_sec_04 .content .box_01 .value .v_head {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content .box_01 .value .v_head {
    font-size: 1.375rem;
  }
}
.about01_sec_04 .content .box_01 .value .v_head span {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content .box_01 .value .v_head span {
    font-size: 1rem;
  }
}
.about01_sec_04 .content .box_01 .value .v_head .label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78px;
  aspect-ratio: 78/24;
  border-radius: 50px;
  background-color: #292929;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.about01_sec_04 .content .box_01 .value .num {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content .box_01 .value .num {
    font-size: 0.9375rem;
  }
}
.about01_sec_04 .content .box_01 .value .num span {
  font-size: 43px;
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .about01_sec_04 .content .box_01 .value .num span {
    font-size: 34.4px;
  }
}
.about01_sec_04 .content .box_01 .value_01 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about01_sec_04 .content .box_01 .value_02 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about01_sec_04 .content .box_01 .value + p {
  font-size: 0.8125rem;
}
.about01_sec_04 .content .box_02 {
  flex-shrink: 0;
  width: 100%;
  max-width: 396px;
}
.about01_sec_04 .content .box_02 .head + p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.about01_sec_05 dl {
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .about01_sec_05 dl {
    flex-direction: column;
    padding: 1.25rem 0;
    margin-top: 1.5rem;
  }
}
.about01_sec_05 dl dt {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 62px;
}
@media screen and (max-width: 767px) {
  .about01_sec_05 dl dt {
    font-size: 1.25rem;
    margin-right: 0;
  }
}
.about01_sec_05 dl dd {
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.about01_sec_05 dl dd span {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-left: 8px;
  padding-bottom: 0.125em;
}
@media screen and (max-width: 767px) {
  .about01_sec_05 dl dd span {
    font-size: 1rem;
    line-height: 1.3;
  }
}
.about01_sec_05 dl dd span span {
  font-size: 43px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .about01_sec_05 dl dd span span {
    font-size: 34.4px;
  }
}
.about01_sec_05 dl + small {
  margin-top: 1em;
  display: block;
  font-size: 0.875rem;
  text-align: right;
}
.about01_sec_05 .list_kome {
  margin-top: 20px;
  font-size: 0.8125rem;
}
.about01_sec_05 .button {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 65px;
  border-radius: 50px;
  background-color: #292929;
  color: #fff;
  position: relative;
}
.about01_sec_05 .button:after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/11;
  background: url(../images/ico_arrow_right_01_white.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .about01_sec_05 .button {
    margin: 1.5rem auto;
  }
}

.about02_sec_05 .content {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  gap: 4.17%;
}
@media screen and (max-width: 767px) {
  .about02_sec_05 .content {
    flex-direction: column-reverse;
    gap: 2rem;
    margin-top: 2.5rem;
  }
}
.about02_sec_05 .content .image {
  flex-shrink: 0;
  width: 52.13%;
}
@media screen and (max-width: 767px) {
  .about02_sec_05 .content .image {
    width: 100%;
  }
}
.about02_sec_05 .content .texts {
  padding-top: 5%;
  flex-grow: 1;
}
.about02_sec_05 .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .about02_sec_05 .content h3 {
    font-size: 1.25rem;
  }
}
.about02_sec_05 .content p {
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about02_sec_05 .content p {
    font-size: 0.9375rem;
  }
}
.about02_sec_05 .content + .concept_grid_03 {
  margin-top: 5rem;
}

.page-about03 .about_lead {
  margin-bottom: 6rem;
}
.page-about03 .ttl_cmn_06 {
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .page-about03 .ttl_cmn_06 {
    margin-bottom: 40px;
  }
}
.page-about03 .concept_child_nav {
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .page-about03 .concept_child_nav {
    margin-top: 80px;
  }
}

.article_link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .article_link {
    gap: 0.75em 2em;
  }
}
.article_link li:first-child:before {
  content: "｜";
}
@media screen and (max-width: 767px) {
  .article_link li:first-child:before {
    content: none;
  }
}
.article_link li:after {
  content: "｜";
}
@media screen and (max-width: 767px) {
  .article_link li:after {
    content: none;
  }
}
.article_link li a {
  padding: 0 1em;
  display: inline-block;
  position: relative;
}
.article_link li a:before {
  content: "";
  display: block;
  width: 11px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media (hover: hover) {
  .article_link li a:hover:before {
    background-color: #242424;
  }
}
@media screen and (max-width: 767px) {
  .article_link li a {
    padding: 0 1.25em 0 0;
    position: relative;
  }
  .article_link li a:after {
    content: "";
    display: block;
    width: 10px;
    aspect-ratio: 1/1;
    border-right: 1px solid #292929;
    border-bottom: 1px solid #292929;
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    right: 0;
  }
}

.about03_sec_02 {
  margin-bottom: 0;
}

.about03_contents .ttl_standard_01 span {
  padding: 8px 30px;
}
.about03_contents > li {
  padding: 3.75rem 0 5rem;
  border-bottom: 1px dashed #D5D5D5;
}
@media screen and (max-width: 767px) {
  .about03_contents > li {
    padding: 2.5rem 0 3.75rem;
  }
}
.about03_contents > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about03_contents > li .ttl_standard_01 {
  margin-bottom: 22px;
}
.about03_contents > li h3 {
  padding: 1.3em 5%;
  background-color: #292929;
  color: #fff;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .about03_contents > li h3 {
    font-size: 1.5rem;
    padding: 1.1em 5%;
    margin-bottom: 24px;
  }
}
.about03_contents > li h3 span {
  display: block;
  font-size: 0.66em;
  margin-bottom: 3px;
}
.about03_contents > li h3 + p {
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .about03_contents > li h3 + p {
    font-size: 0.9375rem;
    text-align: left;
    margin-bottom: 24px;
  }
}
.about03_contents .js-scrollable {
  margin: 0 var(--extend);
  padding: 0 var(--sideW) 5px;
}

.about03_fukidashi {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75em 1.5em;
  border: 1px dashed #292929;
  margin: 0 auto;
  border-radius: 200px;
  position: relative;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .about03_fukidashi {
    font-size: 1.125rem;
    padding: 1.25em 2em;
    text-align: center;
  }
}
.about03_fukidashi:before {
  content: "";
  display: block;
  height: 21px;
  aspect-ratio: 50/21;
  background: #fff url(../images/ico_fukidashi.svg) no-repeat center bottom/contain;
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
}

.about03_contents_01 figure {
  width: 100%;
  max-width: 710px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about03_contents_01 figure {
    width: 566px;
  }
}
.about03_contents_01 .list_kome {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}

.about03_contents_02 .js-scrollable {
  margin-bottom: 45px;
}
.about03_contents_02 figure {
  width: 100%;
  max-width: 796px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about03_contents_02 figure {
    width: 636px;
  }
}

.about03_contents_03 ul {
  width: 100%;
  max-width: 845px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4.7%;
}
@media screen and (max-width: 767px) {
  .about03_contents_03 ul {
    flex-direction: column;
    width: 80%;
    gap: 1.25rem;
  }
}
.about03_contents_03 ul li {
  width: 100%;
}
.about03_contents_03 ul li .image {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about03_contents_03 ul li .image {
    margin-bottom: 8px;
    border-radius: 6px;
  }
}
.about03_contents_03 ul li p {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about03_contents_03 ul li p {
    font-size: 0.9375rem;
  }
}

.about03_contents_04 ul {
  display: flex;
  align-items: flex-start;
  gap: 3.7%;
}
@media screen and (max-width: 767px) {
  .about03_contents_04 ul {
    flex-direction: column;
    gap: 3.125rem;
  }
}
.about03_contents_04 ul li {
  width: 100%;
}
.about03_contents_04 ul li:nth-child(1) {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.about03_contents_04 ul li:nth-child(1) .image {
  border-radius: 10px;
  overflow: hidden;
}
.about03_contents_04 ul li:nth-child(1) p {
  margin-top: 1.25em;
}
.about03_contents_04 ul li:nth-child(2) {
  text-align: center;
}

.about03_sec_02_descr {
  width: 100%;
  max-width: 942px;
  margin: 80px auto 20px;
}
.about03_sec_02_descr .detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4.24%;
  padding: 0 var(--sideW);
}
.about03_sec_02_descr .detail li {
  width: 30.5066666667%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  padding: 25px 3%;
}
@media screen and (max-width: 767px) {
  .about03_sec_02_descr .detail li {
    width: 100%;
    padding: 25px var(--sideW);
  }
}
.about03_sec_02_descr .detail li .label {
  width: 100%;
  padding: 0.4em;
  border-radius: 50px;
  text-align: center;
  background-color: #292929;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.about03_sec_02_descr .detail li .image {
  width: 40%;
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
  margin: 10px auto 0;
}
.about03_sec_02_descr .detail li .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about03_sec_02_descr .detail li .text {
  line-height: 1.1;
}
.about03_sec_02_descr .detail li .text p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 700;
}
.about03_sec_02_descr .detail li .text p span {
  font-family: "Open Sans", sans-serif;
  font-size: 59px;
  font-weight: 600;
  margin: 0 9px;
}
.about03_sec_02_descr .detail li .text p.has_kome {
  position: relative;
}
.about03_sec_02_descr .detail li .text p.has_kome:after {
  display: block;
  content: "※" attr(data-num);
  font-size: 0.75rem;
  font-weight: 400;
  position: absolute;
  bottom: 32px;
  right: 0;
}
.about03_sec_02_descr .detail li .text small {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.about03_sec_02_descr .notice {
  margin-top: 40px;
  font-size: 0.75rem;
}
.about03_sec_02_descr .notice ul {
  counter-reset: number 0;
}
.about03_sec_02_descr .notice ul li {
  counter-increment: number 1;
  padding-left: 26px;
  text-indent: -26px;
}
.about03_sec_02_descr .notice ul li:before {
  content: "※" counter(number);
  display: inline-block;
  width: 26px;
  text-indent: 0;
}

.about03_contents_05 > ul {
  display: flex;
  gap: 3.7%;
}
@media screen and (max-width: 767px) {
  .about03_contents_05 > ul {
    flex-direction: column;
    gap: 2em;
  }
}
.about03_contents_05 > ul > li {
  width: 100%;
  background: #EFEFEF;
  border-radius: 10px;
  padding: 45px 2.73%;
}
@media screen and (max-width: 767px) {
  .about03_contents_05 > ul > li {
    padding: 36px var(--sideW);
  }
}
.about03_contents_05 > ul > li h4 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .about03_contents_05 > ul > li h4 {
    font-size: 1.25rem;
  }
}
.about03_contents_05 > ul > li p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about03_contents_05 > ul > li p {
    font-size: 0.8125rem;
  }
}
.about03_contents_05 > ul > li:nth-child(1) .image {
  width: 100%;
  max-width: 386px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.about03_contents_05 > ul > li:nth-child(2) ul li {
  margin-bottom: 15px;
  padding: 1.25em 5%;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.about03_contents_05 > ul > li:nth-child(2) ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .about03_contents_05 > ul > li:nth-child(2) ul li {
    font-size: 1rem;
    padding: 1em var(--sideW);
  }
}

.about03_contents_06 figure {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about03_contents_06 figure {
    width: 820px;
  }
}

.about03_contents_07 figure {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about03_contents_07 figure {
    width: 740px;
  }
}

.about03_contents_08 h4 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .about03_contents_08 h4 {
    font-size: 1.2rem;
  }
}
.about03_contents_08 dl {
  width: 100%;
  max-width: 994px;
  margin: 0 auto;
}
.about03_contents_08 dl .item {
  display: flex;
  gap: 0 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .about03_contents_08 dl .item {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.about03_contents_08 dl .item:last-child {
  margin-bottom: 0;
}
.about03_contents_08 dl .item dt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: 41%;
  padding: 11px 1.6%;
  background: #777777;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about03_contents_08 dl .item dt {
    width: 100%;
    padding: 1em var(--sideW);
  }
}
.about03_contents_08 dl .item dd {
  flex-grow: 1;
  font-size: 0.9375rem;
  padding: 11px 16px;
  background: #E8E8E8;
}
@media screen and (max-width: 767px) {
  .about03_contents_08 dl .item dd {
    padding: 1.25em var(--sideW);
  }
}
.about03_contents_08 dl .item dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.about03_contents_08 dl .item dd ul li:before {
  content: attr(data-mark);
}

.about03_contents_09 figure {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about03_contents_09 figure {
    width: 648px;
  }
}
.about03_contents_09 .list_kome {
  width: 100%;
  max-width: 906px;
  margin: 0 auto;
  font-size: 0.75rem;
}
.about03_contents_09 .list_kome > li {
  margin-bottom: 3px;
}

.about04_sec_01 > ul > li {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li {
    margin-bottom: 3.75rem;
  }
}
.about04_sec_01 > ul > li:last-child {
  margin-bottom: 0;
}
.about04_sec_01 > ul > li .main {
  display: flex;
  align-items: flex-start;
  gap: 5.4%;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li .main {
    flex-direction: column-reverse;
  }
}
.about04_sec_01 > ul > li .main .texts {
  flex-shrink: 0;
  width: 44.6%;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li .main .texts {
    width: 100%;
  }
}
.about04_sec_01 > ul > li .main .texts h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li .main .texts h2 {
    margin-top: -40px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
}
.about04_sec_01 > ul > li .main .texts h2:before {
  content: attr(data-num);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3625;
  width: 128px;
  text-align: center;
  background: url(../images/text_standard.svg) no-repeat center bottom/100%;
  padding-bottom: 3px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li .main .texts h2:before {
    width: 96px;
    font-size: 3.75rem;
    margin-bottom: 20px;
  }
}
.about04_sec_01 > ul > li .main .texts p {
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li .main .texts p {
    font-size: 0.9375rem;
  }
}
.about04_sec_01 > ul > li .main .image {
  flex-grow: 1;
  margin: 0 var(--extend) 0 0;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li .main .image {
    margin: 0 var(--extend);
  }
}
.about04_sec_01 > ul > li .sub {
  max-width: 1080px;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li .sub {
    margin-top: 3.75rem;
  }
}
.about04_sec_01 > ul > li:nth-child(odd) .main {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li:nth-child(odd) .main {
    flex-direction: column-reverse;
  }
}
.about04_sec_01 > ul > li:nth-child(odd) .main .image {
  margin: 0 0 0 var(--extend);
}
@media screen and (max-width: 767px) {
  .about04_sec_01 > ul > li:nth-child(odd) .main .image {
    margin: 0 var(--extend);
  }
}
.about04_sec_01 .content_01 {
  display: flex;
  align-items: flex-start;
  gap: 6.3%;
  padding: 5rem 0;
  border-top: 1px dashed #D5D5D5;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 .content_01 {
    padding: 3.75rem 0;
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
}
.about04_sec_01 .content_01 .texts {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 .content_01 .texts {
    width: 100%;
  }
}
.about04_sec_01 .content_01 .texts .label {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 3px solid #292929;
  padding-bottom: 3px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 .content_01 .texts .label {
    font-size: 1rem;
  }
}
.about04_sec_01 .content_01 .texts h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 .content_01 .texts h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.about04_sec_01 .content_01 .texts .para {
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about04_sec_01 .content_01 .texts .para {
    font-size: 0.9375rem;
  }
}
.about04_sec_01 .content_01 .texts .para p {
  margin-bottom: 1.5em;
}
.about04_sec_01 .content_01 .texts .para p:last-child {
  margin-bottom: 0;
}
.about04_sec_01 .content_01 .image {
  flex-grow: 1;
}
.about04_sec_01 .concept_grid_03 {
  margin-top: 0;
}
.about04_sec_01 .concept_grid_03 > li:last-child {
  padding-bottom: 40px;
  border-bottom: 1px dashed #D5D5D5;
}

.about05_sec_03 .content {
  background: #FDF3EC;
  border-radius: 5px;
  padding: 60px 4.72%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about05_sec_03 .content {
    padding: 50px var(--sideW);
    font-size: 0.9375rem;
    text-align: left;
  }
}
.about05_sec_03 h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about05_sec_03 h2 {
    font-size: 1.3125rem;
  }
}
.about05_sec_03 .white {
  border-radius: 100px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about05_sec_03 .white {
    flex-direction: column;
    border-radius: 5px;
    padding: 1.5em;
    font-size: 1.125rem;
  }
}
.about05_sec_03 .white.white_01 .ja_l {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .about05_sec_03 .white.white_01 .ja_l {
    font-size: 1.25rem;
  }
}
.about05_sec_03 .white.white_01 .num {
  font-family: "Open Sans", sans-serif;
  font-size: 70px;
  font-weight: 600;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .about05_sec_03 .white.white_01 .num {
    font-size: 3.5rem;
    line-height: 1.35;
  }
}
.about05_sec_03 .white.white_01 + .text {
  margin-bottom: 40px;
}
.about05_sec_03 .white.white_02 {
  text-align: center;
}
.about05_sec_03 .white.white_02 .num {
  margin-left: 20px;
}
.about05_sec_03 .white.white_02 .num span {
  font-family: "Open Sans", sans-serif;
  font-size: 70px;
  font-weight: 600;
  margin: 0 8px 0 0;
}
@media screen and (max-width: 767px) {
  .about05_sec_03 .white.white_02 .num span {
    font-size: 4rem;
    line-height: 1.35;
  }
}

.about06_sec_02 .ttl_standard_01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .ttl_standard_01 {
    margin-bottom: 24px;
  }
}
.about06_sec_02 .content_01 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_01 {
    flex-direction: column;
  }
}
.about06_sec_02 .content_01 h2 {
  flex-grow: 1;
}
.about06_sec_02 .content_01 p {
  flex-shrink: 0;
  width: 62.87%;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_01 p {
    width: 100%;
    font-size: 0.9375rem;
  }
}
.about06_sec_02 .content_02 {
  margin-top: 44px;
  background-color: #F8F8F8;
  padding: 42px 5.92% 30px;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_02 {
    padding: 36px var(--sideW) 30px;
  }
}
.about06_sec_02 .content_02 p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.66;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_02 p {
    font-size: 1.25rem;
  }
}
.about06_sec_02 .content_02 .image {
  mix-blend-mode: multiply;
  min-width: 900px;
}
.about06_sec_02 .content_03 {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_03 {
    margin-top: 60px;
  }
}
.about06_sec_02 .content_03 > p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.66;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_03 > p {
    font-size: 1.25rem;
  }
}
.about06_sec_02 .content_03 ul {
  display: flex;
  gap: 4.3%;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_03 ul {
    flex-direction: column;
    gap: 2rem;
  }
}
.about06_sec_02 .content_03 ul li {
  width: 100%;
}
.about06_sec_02 .content_03 ul li .logo {
  padding: 0 0 18px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #D5D5D5;
}
.about06_sec_02 .content_03 ul li .logo img {
  margin: 0 auto;
  display: block;
  height: 50px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_03 ul li .logo img {
    height: 40px;
  }
}
.about06_sec_02 .content_03 ul li p {
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.about06_sec_02 .content_03 .image_item {
  width: 100%;
  max-width: 786px;
  margin: 30px auto 0;
}
.about06_sec_02 .content_03 .text_orange {
  margin: 20px auto 0;
  text-align: center;
  background-color: #FDF3EC;
  border-radius: 5px;
  color: #EA5E00;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1em 5%;
}
@media screen and (max-width: 767px) {
  .about06_sec_02 .content_03 .text_orange {
    font-size: 1.125rem;
    padding: 1.25em var(--sideW);
  }
}

.about06_sec_03 {
  padding-top: 0 !important;
  border-top: none !important;
}
.about06_sec_03 .ttl_standard_01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about06_sec_03 .ttl_standard_01 {
    margin-bottom: 24px;
  }
}

.page-lineup .l_container_wrap {
  padding-top: 0;
}
.page-lineup .section_wrap {
  padding-top: 0;
}

.lineup_hero {
  width: 100%;
  height: 100vh;
  background: url(../images/lineup_hero.jpg) no-repeat center/cover;
  position: relative;
}
.lineup_hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(41, 41, 41, 0.68);
  position: absolute;
  top: 0;
  left: 0;
}
.lineup_hero .inner_m {
  position: relative;
  color: #fff;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
}
.lineup_hero h1 {
  margin-bottom: 40px;
}
.lineup_hero p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lineup_hero p {
    font-size: 0.9375rem;
  }
}
.lineup_hero p.large {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.66;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .lineup_hero p.large {
    font-size: 1.8rem;
  }
}

.lineup_nav {
  position: relative;
  margin: -140px auto 5em;
}
@media screen and (max-width: 767px) {
  .lineup_nav {
    margin: 5em 0;
  }
}

.lineup_sec_01 .inner {
  max-width: calc(1013px + var(--sideW) * 2);
}
@media screen and (max-width: 767px) {
  .lineup_sec_01 .js-scrollable {
    margin: 0 calc(var(--sideW) * -1);
    padding: 0 var(--sideW);
  }
}
.lineup_sec_01 table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .lineup_sec_01 table {
    min-width: 800px;
  }
}
.lineup_sec_01 table th {
  background-color: #777777;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .lineup_sec_01 table th {
    font-size: 1rem;
  }
}
.lineup_sec_01 table td {
  background-color: #E8E8E8;
  font-size: 0.9375rem;
  line-height: 1.33;
  text-align: center;
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .lineup_sec_01 table td {
    font-size: 0.875rem;
    padding: 10px;
  }
}
.lineup_sec_01 table tr {
  width: 100%;
}
.lineup_sec_01 table tr:nth-child(1) th:nth-child(1) {
  background-color: #fff;
  color: #292929;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lineup_sec_01 table tr:nth-child(1) th:nth-child(1) {
    font-size: 1.25rem;
  }
}
.lineup_sec_01 table tr:nth-child(1) th:nth-child(2) {
  background: #282828;
}
.lineup_sec_01 table tr:nth-child(1) th:nth-child(3) {
  background: #4F6073;
}
.lineup_sec_01 table tr:nth-child(1) th:nth-child(4) {
  background: #39624A;
}
.lineup_sec_01 dl {
  margin: 30px 5px 0;
}
.lineup_sec_01 dl dt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .lineup_sec_01 dl dt {
    font-size: 1.25rem;
  }
}
.lineup_sec_01 dl dd {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .lineup_sec_01 dl dd {
    font-size: 0.875rem;
  }
}
.lineup_sec_01 dl dd ul li {
  display: inline;
}
.lineup_sec_01 dl dd ul li:before {
  content: "●";
}

.card_lineup__hero {
  color: #fff;
  padding-bottom: 60px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .card_lineup__hero {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
}
.card_lineup__hero .inner_m {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.card_lineup__hero .inner_m .box_left {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .card_lineup__hero .inner_m .box_left {
    margin-bottom: 1.25em;
  }
}
.card_lineup__hero .inner_m .box_left p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .card_lineup__hero .inner_m .box_left p {
    font-size: 1.375em;
  }
}
.card_lineup__hero .inner_m .box_left .tag {
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .card_lineup__hero .inner_m .box_left .tag {
    margin-top: 16px;
    font-size: 0.875rem;
  }
}
.card_lineup__hero .inner_m .box_right {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .card_lineup__hero .inner_m .box_right {
    width: 100%;
  }
}
.card_lineup__ttl {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 7.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.36;
  margin-top: -0.68em;
}
@media screen and (max-width: 767px) {
  .card_lineup__ttl {
    font-size: clamp(47px, 14.66vw, 7.5rem);
    margin-bottom: 20px;
  }
}
.card_lineup__lead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .card_lineup__lead {
    margin-bottom: 50px;
  }
}
.card_lineup__lead h3 {
  flex-shrink: 0;
  padding: 1em 0 1em 1em;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  border-left: 5px solid #242424;
}
@media screen and (max-width: 767px) {
  .card_lineup__lead h3 {
    flex-shrink: unset;
    font-size: 1.6rem;
    padding: 0.5em 0 0.5em 0.5em;
  }
}
.card_lineup__lead p {
  width: 45.25%;
  padding: 2em 0 0;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .card_lineup__lead p {
    width: 100%;
    padding: 1.5em 0 0;
    font-size: 0.9375rem;
  }
}

.price_main {
  display: flex;
  align-items: center;
}
.price_main > div {
  display: inline;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .price_main > div {
    font-size: 1.125em;
  }
}
.price_main > div:nth-child(1) {
  margin-right: 34px;
}
@media screen and (max-width: 767px) {
  .price_main > div:nth-child(1) {
    margin-right: 16px;
  }
}
.price_main > div:nth-child(2) {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.75rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .price_main > div:nth-child(2) {
    font-size: 4em;
  }
}
.price_main > div:nth-child(3) {
  margin-left: 25px;
  display: inline-flex;
  flex-direction: column-reverse;
}
.price_main > div:nth-child(3) small {
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .price_main > div:nth-child(3) {
    margin-left: 16px;
  }
}

.price_sub {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .price_sub {
    font-size: 1.25rem;
    justify-content: flex-start;
  }
}
.price_sub small {
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .price_sub small {
    font-size: 0.75rem;
  }
}

.list_point {
  counter-reset: number 0;
}
.list_point > li {
  counter-increment: number 1;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5%;
  margin-bottom: 5rem;
}
.list_point > li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .list_point > li {
    flex-direction: column;
    align-items: unset;
    margin-bottom: 3.125rem;
  }
}
.list_point > li .texts {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .list_point > li .texts {
    order: 1;
    width: 100%;
    margin-top: 0px;
    position: relative;
    z-index: 1;
  }
}
.list_point > li .texts h2,
.list_point > li .texts h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .list_point > li .texts h2,
  .list_point > li .texts h3 {
    margin-bottom: 14px;
  }
}
.list_point > li .texts h2:before,
.list_point > li .texts h3:before {
  content: counter(number, decimal-leading-zero);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3625;
  background: url(../images/text_point_01_black.svg) no-repeat top left/auto;
  padding: 16px 0 0 32px;
  margin-left: -32px;
}
@media screen and (max-width: 767px) {
  .list_point > li .texts h2:before,
  .list_point > li .texts h3:before {
    font-size: 2.5rem;
    background-size: 60px;
    padding: 16px 0 0 20px;
    margin-left: -20px;
    margin-bottom: 6px;
  }
}
.list_point > li .texts h2 span,
.list_point > li .texts h3 span {
  display: block;
  position: relative;
  padding: 32px 0 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .list_point > li .texts h2 span,
  .list_point > li .texts h3 span {
    padding: 20px 0 0;
  }
}
.list_point > li .texts h2 span:before,
.list_point > li .texts h3 span:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 120%;
  border-top: 1px dashed #242424;
}
@media screen and (max-width: 767px) {
  .list_point > li .texts h2 span:before,
  .list_point > li .texts h3 span:before {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .list_point > li .texts h2 span,
  .list_point > li .texts h3 span {
    font-size: 1.4rem;
  }
}
.list_point > li .texts .para {
  line-height: 2;
  letter-spacing: 0.04;
}
@media screen and (max-width: 767px) {
  .list_point > li .texts .para {
    font-size: 0.9375rem;
  }
}
.list_point > li .image {
  position: relative;
  flex-grow: 1;
  display: block;
  width: 45%;
}
@media screen and (max-width: 767px) {
  .list_point > li .image {
    width: 100%;
    margin-top: 20px;
    order: 3;
  }
}
@media screen and (min-width: 768px) {
  .list_point > li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .list_point > li:nth-child(even) .texts h2 span:before,
  .list_point > li:nth-child(even) .texts h3 span:before {
    left: unset;
    right: 0;
  }
  .list_point > li:nth-child(even) .texts .para {
    line-height: 2;
    letter-spacing: 0.04;
  }
}
.list_point .content {
  margin-top: 50px;
  width: 100%;
  display: flex;
  gap: 3.7%;
}
@media screen and (max-width: 767px) {
  .list_point .content {
    flex-direction: column;
    gap: 2.5rem;
    order: 2;
    margin-bottom: 0;
  }
}
.list_point .content .head {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #292929;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .list_point .content .head {
    flex-direction: column;
    align-items: unset;
    gap: 0.5rem;
  }
}
.list_point .content .head span {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .list_point .content .head span {
    font-size: 0.8125rem;
  }
}
.list_point .content .box_01 {
  flex-grow: 1;
}
.list_point .content .box_01 .value {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #292929;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .list_point .content .box_01 .value {
    justify-content: center;
    padding: 15px 0;
  }
}
.list_point .content .box_01 .value .v_head {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .list_point .content .box_01 .value .v_head {
    font-size: 1.375rem;
  }
}
.list_point .content .box_01 .value .v_head span {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .list_point .content .box_01 .value .v_head span {
    font-size: 1rem;
  }
}
.list_point .content .box_01 .value .v_head .label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78px;
  aspect-ratio: 78/24;
  border-radius: 50px;
  background-color: #292929;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.list_point .content .box_01 .value .num {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .list_point .content .box_01 .value .num {
    font-size: 0.9375rem;
  }
}
.list_point .content .box_01 .value .num span {
  font-size: 43px;
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .list_point .content .box_01 .value .num span {
    font-size: 34.4px;
  }
}
.list_point .content .box_01 .value_01 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.list_point .content .box_01 .value_02 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.list_point .content .box_01 .value + p {
  font-size: 0.8125rem;
}
.list_point .content .box_02 {
  flex-shrink: 0;
  width: 100%;
  max-width: 396px;
}
.list_point .content .box_02 .head + p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.lineup_sec_02 .card_lineup__hero {
  background: #282828;
}
.lineup_sec_02 .card_lineup__lead h3 {
  border-color: #282828;
}

.lineup_sec_03 .card_lineup__hero {
  background: #4F6073;
}
.lineup_sec_03 .card_lineup__lead h3 {
  border-color: #4F6073;
}
.lineup_sec_03 h3:before {
  color: #4F6073;
  background-image: url(../images/text_point_01_navy.svg) !important;
}

.lineup_sec_04 {
  margin-bottom: 0;
}
.lineup_sec_04 .card_lineup__hero {
  background: #696969;
}
.lineup_sec_04 .card_lineup__lead h3 {
  border-color: #696969;
}
.lineup_sec_04 h3:before {
  color: #696969;
  background-image: url(../images/text_point_01_gray.svg) !important;
}

.case_hero {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .case_hero {
    padding-top: 30px;
  }
}
.case_hero .inner_m {
  display: flex;
  gap: 4.1%;
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m {
    flex-direction: column;
    gap: 40px;
  }
}
.case_hero .inner_m .texts {
  flex-shrink: 0;
  width: max(36.64%, 348px);
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m .texts {
    width: 100%;
  }
}
.case_hero .inner_m .texts .ttl_cmn_03 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m .texts .ttl_cmn_03 {
    margin-bottom: 40px;
  }
}
.case_hero .inner_m .texts h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m .texts h1 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.case_hero .inner_m .texts p {
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m .texts p {
    margin-bottom: 30px;
  }
}
.case_hero .inner_m .texts dl dt {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m .texts dl dt {
    font-size: 0.8125rem;
    margin-bottom: 5px;
  }
}
.case_hero .inner_m .texts dl dt:before {
  content: "about";
  font-family: "Open Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 0 5px;
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m .texts dl dt:before {
    font-size: 1.5rem;
    padding: 0;
  }
}
.case_hero .inner_m .texts dl dd {
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .case_hero .inner_m .texts dl dd {
    font-size: 0.875rem;
  }
}
.case_hero .inner_m .image {
  flex-grow: 1;
}

.list_case_nav {
  margin: 5rem 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .list_case_nav {
    margin: 3.75rem 0 0;
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
}
.list_case_nav > li {
  width: 100%;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .list_case_nav > li {
    max-width: 275px;
  }
}
.list_case_nav > li a {
  margin: 0;
}

.section_case {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .section_case {
    margin-bottom: 3.75rem;
  }
}

.case-c_sec_01 .box {
  padding: 64px 6.4% 20%;
  background-color: #EFEFEF;
}
@media screen and (max-width: 767px) {
  .case-c_sec_01 .box {
    padding: 40px 8% 20%;
  }
}
.case-c_sec_01 .descr {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 24px;
}
.case-c_sec_01 .descr:before {
  content: "＼ ";
}
.case-c_sec_01 .descr:after {
  content: " ／";
}
@media screen and (max-width: 767px) {
  .case-c_sec_01 .descr {
    font-size: 1.4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.25em;
  }
}
.case-c_sec_01 .value {
  background-color: #fff;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .case-c_sec_01 .value {
    flex-wrap: wrap;
    align-items: baseline;
    font-size: 1rem;
    padding: 30px 20px 20px;
  }
}
.case-c_sec_01 .value .head {
  font-size: 1.2em;
  margin-right: 23px;
}
@media screen and (max-width: 767px) {
  .case-c_sec_01 .value .head {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin-right: 0px;
    padding: 0.25em 1em;
    background: #292929;
    color: #fff;
    margin-bottom: 0.5em;
  }
}
.case-c_sec_01 .value .num {
  font-family: "Open Sans", sans-serif;
  font-size: 3.5em;
  font-weight: 600;
  margin-right: 9px;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .case-c_sec_01 .value .num {
    font-weight: 700;
  }
}
.case-c_sec_01 figure {
  margin: -23% 0 0;
}
.case-c_sec_01 figure img {
  display: block;
  width: 67.44%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .case-c_sec_01 figure img {
    width: 84%;
  }
}
.case-c_sec_01 figure figcaption {
  margin-top: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case-c_sec_01 figure figcaption {
    font-size: 0.875rem;
  }
}

.tbl_cmn_01 {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 2px;
}
@media screen and (max-width: 767px) {
  .tbl_cmn_01 tr {
    font-size: 0.9375rem;
  }
}
.tbl_cmn_01 tr th {
  width: 160px;
  background: #696969;
  color: #fff;
  text-align: center;
  font-weight: 400;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  .tbl_cmn_01 tr th {
    width: 120px;
    padding: 0.75em;
  }
}
.tbl_cmn_01 tr td {
  background: #F5F5F5;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .tbl_cmn_01 tr td {
    text-align: center;
    padding: 0.75em 1em;
  }
}

.tbl_cmn_02 {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tbl_cmn_02 tr {
    font-size: 0.9375rem;
  }
}
.tbl_cmn_02 tr th {
  background: #696969;
  color: #fff;
  text-align: center;
  font-weight: 400;
  padding: 0.75em;
}
.tbl_cmn_02 tr td {
  background: #F5F5F5;
  padding: 0.75em;
}

.list_youtube {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 3.66%;
}
.list_youtube li {
  width: 48.17%;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .list_youtube li {
    width: 100%;
  }
}
.list_youtube li iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .case-c_sec_03 .js-scrollable {
    margin: 0 calc(var(--sideW) * -1);
    padding: 0 var(--sideW);
  }
  .case-c_sec_03 .tbl_cmn_02 {
    width: 500px;
  }
}

.questionnaire_hero {
  margin-bottom: 50px;
}
.questionnaire_hero .image {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .questionnaire_hero .image {
    margin: 0 var(--extend) 2.5rem;
  }
}
.questionnaire_hero h1 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.questionnaire_hero h1:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 390/57;
  background: url(../images/questionnaire_01.svg) no-repeat center/contain;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .questionnaire_hero h1 {
    font-size: 1.8rem;
  }
  .questionnaire_hero h1:before {
    width: 312px;
  }
}

.list_questionnaire > li {
  margin-bottom: 50px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.list_questionnaire > li:last-child {
  margin-bottom: 0;
}

.card_questionnaire {
  padding: 45px var(--sideW) 80px;
}
@media screen and (max-width: 767px) {
  .card_questionnaire {
    padding: 40px var(--sideW) 60px;
  }
}
.card_questionnaire .ttl {
  border-bottom: 1px solid #292929;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .ttl {
    flex-direction: column;
    gap: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.card_questionnaire .ttl .num {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3625;
  background: url(../images/ico_crown.svg) no-repeat top 30px left/41px;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .ttl .num {
    font-size: 1.5rem;
    background: url(../images/ico_crown.svg) no-repeat top 24px left/36px;
  }
}
.card_questionnaire .ttl .num span {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .ttl .num span {
    font-size: 4rem;
  }
}
.card_questionnaire .ttl h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
.card_questionnaire .comment {
  display: flex;
  gap: 32px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .comment {
    margin: 0 0 2rem;
    flex-direction: column;
    gap: 0px;
  }
}
.card_questionnaire .comment:before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 180px;
  aspect-ratio: 1/1;
  background: no-repeat center top/contain;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .comment:before {
    margin: 0 auto;
  }
}
.card_questionnaire .comment p {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .comment p {
    font-size: 1rem;
  }
}
.card_questionnaire .point {
  display: flex;
  gap: 5.2%;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .point {
    flex-direction: column;
    gap: 20px;
  }
}
.card_questionnaire .point dl {
  flex-grow: 1;
}
.card_questionnaire .point dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 38px;
  border-radius: 50px;
  background-color: #292929;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.card_questionnaire .point dl dd {
  font-size: 0.9375rem;
}
.card_questionnaire .point .image {
  flex-shrink: 0;
  width: 37.11%;
}
@media screen and (max-width: 767px) {
  .card_questionnaire .point .image {
    width: 100%;
  }
}
.card_questionnaire:nth-child(1) .comment:before {
  background-image: url(../images/questionnaire_02.svg);
}
.card_questionnaire:nth-child(2) .comment:before {
  background-image: url(../images/questionnaire_04.svg);
}
.card_questionnaire:nth-child(3) .comment:before {
  background-image: url(../images/questionnaire_06.svg);
}
.card_questionnaire:nth-child(4) .comment:before {
  background-image: url(../images/questionnaire_08.svg);
}
.card_questionnaire:nth-child(5) .comment:before {
  background-image: url(../images/questionnaire_10.svg);
}
.card_questionnaire:nth-child(6) .comment:before {
  background-image: url(../images/questionnaire_12.svg);
}

.company_sec_01 .inner_s {
  display: flex;
  gap: 8.44%;
}
@media screen and (max-width: 767px) {
  .company_sec_01 .inner_s {
    flex-direction: column;
    gap: 1.5em;
  }
}
.company_sec_01 .inner_s .left {
  flex-shrink: 0;
  width: 100%;
  max-width: 395px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .company_sec_01 .inner_s .left {
    font-size: 1.8rem;
    width: auto;
    margin-right: calc(var(--sideW) * -1);
  }
}
.company_sec_01 .inner_s .right {
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .company_sec_01 .inner_s .right {
    font-size: 0.9375rem;
  }
}
.company_sec_01 .inner_s .right p {
  margin-bottom: 1.5em;
}
.company_sec_01 .inner_s .right p:last-child {
  margin-bottom: 0;
}

.company_sec_02 h2 {
  text-align: center;
}
.company_sec_02 dl .item {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
  padding: 0 0 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company_sec_02 dl .item {
    flex-direction: column;
    gap: 0.375em;
  }
}
.company_sec_02 dl .item:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(40, 40, 40) 0%, rgb(40, 40, 40) 245px, rgb(239, 239, 239) 245px, rgb(239, 239, 239) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .company_sec_02 dl .item:after {
    background: linear-gradient(90deg, rgb(40, 40, 40) 0%, rgb(40, 40, 40) 25%, rgb(239, 239, 239) 25%, rgb(239, 239, 239) 100%);
  }
}
.company_sec_02 dl .item:last-child {
  margin-bottom: 0;
}
.company_sec_02 dl dt {
  flex-shrink: 0;
  width: 245px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .company_sec_02 dl dt {
    padding: 0;
    width: 100%;
    font-size: 1rem;
  }
}
.company_sec_02 dl dd {
  flex-grow: 1;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .company_sec_02 dl dd {
    padding: 0;
    font-size: 0.9375rem;
  }
}

.company_sec_03 h2 {
  text-align: center;
}
.company_sec_03 .map {
  display: block;
  overflow: hidden;
  height: 330px;
}
@media screen and (max-width: 767px) {
  .company_sec_03 .map {
    margin: 0 var(--extend);
    height: 280px;
  }
}
.company_sec_03 .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.company_nav li {
  border-bottom: 1px dashed #D5D5D5;
}
.company_nav li:first-child {
  border-top: 1px dashed #D5D5D5;
}
.company_nav li a {
  display: flex;
  align-items: center;
  gap: 4.26%;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company_nav li a {
    flex-direction: column;
    gap: 1em;
    padding: 30px 0 50px;
  }
}
.company_nav li a:after {
  content: "";
  display: block;
  width: 54px;
  aspect-ratio: 1/1;
  background: #242424 url(../images/ico_arrow_right_01_white.svg) no-repeat center/7px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .company_nav li a:after {
    width: 36px;
    background-size: 5px;
    top: calc(100% - 25px);
    right: 0;
  }
}
.company_nav li a .image {
  flex-shrink: 0;
  width: 30.28%;
}
@media screen and (max-width: 767px) {
  .company_nav li a .image {
    width: 100%;
  }
}
.company_nav li a .texts {
  flex-grow: 1;
  width: 100%;
  padding-right: 13.52%;
}
@media screen and (max-width: 767px) {
  .company_nav li a .texts {
    padding-right: 0;
  }
}
.company_nav li a .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .company_nav li a .ttl {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }
}
.company_nav li a .descr {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .company_nav li a .descr {
    font-size: 0.875rem;
  }
}

.staff_sec_01 .inner_s {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .staff_sec_01 .inner_s {
    flex-direction: column;
  }
}
.staff_sec_01 .inner_s h2 {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .staff_sec_01 .inner_s h2 {
    margin-bottom: 40px;
  }
}
.staff_sec_01 .inner_s .texts {
  width: 54.63%;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .staff_sec_01 .inner_s .texts {
    width: 100%;
    margin-bottom: 2.5em;
  }
}
.staff_sec_01 .inner_s .texts p {
  margin-bottom: 1.5rem;
}
.staff_sec_01 .inner_s .texts p:last-child {
  margin-bottom: 0;
}
.staff_sec_01 .inner_s .image {
  width: 35.37%;
}
@media screen and (max-width: 767px) {
  .staff_sec_01 .inner_s .image {
    width: 100%;
  }
}
.staff_sec_01 .inner_s .image img:nth-child(1) {
  display: block;
  margin-bottom: 15px;
}

.staff_sec_02 .inner_s {
  display: flex;
  flex-direction: row-reverse;
  gap: 6.7%;
}
@media screen and (max-width: 767px) {
  .staff_sec_02 .inner_s {
    flex-direction: column;
    gap: 2.5em;
  }
}
.staff_sec_02 .inner_s .texts {
  width: 46.3%;
  padding: 8.24% 0 0;
}
@media screen and (max-width: 767px) {
  .staff_sec_02 .inner_s .texts {
    width: 100%;
    padding: 0;
  }
}
.staff_sec_02 .inner_s .texts h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .staff_sec_02 .inner_s .texts h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.staff_sec_02 .inner_s .texts h2:before {
  content: "";
  display: block;
  width: 196px;
  aspect-ratio: 196/48;
  background: url(../images/staff_08.svg) no-repeat center left/contain;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .staff_sec_02 .inner_s .texts h2:before {
    width: 156px;
  }
}
.staff_sec_02 .inner_s .texts p {
  letter-spacing: 0.04em;
  line-height: 2;
}

.staff_sec_03 li {
  margin-bottom: 60px;
  display: flex;
  gap: 5.18%;
}
.staff_sec_03 li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .staff_sec_03 li {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.staff_sec_03 .image {
  width: 33.33%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .staff_sec_03 .image {
    width: 100%;
    margin-bottom: 14px;
  }
}
.staff_sec_03 .texts {
  flex-grow: 1;
  padding: 3.44% 0 0;
}
@media screen and (max-width: 767px) {
  .staff_sec_03 .texts {
    font-size: 0.875rem;
  }
}
.staff_sec_03 .position {
  line-height: 1.5;
  margin-bottom: 10px;
}
.staff_sec_03 .name {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .staff_sec_03 .name {
    font-size: 1.4rem;
  }
}
.staff_sec_03 .name:after {
  content: "";
  display: block;
  width: 245px;
  height: 1px;
  background: #292929;
  position: absolute;
  bottom: 0;
  left: 0;
}
.staff_sec_03 .comment {
  line-height: 2;
}

.company_lead {
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .company_lead {
    margin-bottom: 3.75rem;
  }
}
.company_lead .inner_s {
  display: flex;
  align-items: flex-start;
  gap: 7.13%;
}
@media screen and (max-width: 767px) {
  .company_lead .inner_s {
    flex-direction: column;
  }
}
.company_lead .inner_s h2 {
  flex-shrink: 0;
  width: 420px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .company_lead .inner_s h2 {
    width: 100%;
    font-size: 1.6rem;
  }
}
.company_lead .inner_s p {
  padding-top: 1.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .company_lead .inner_s p {
    padding-top: 1.1em;
    font-size: 0.9375rem;
  }
}

.business_sec_01 li {
  padding: 50px 0 80px;
  display: flex;
  align-items: flex-start;
  gap: 5.57%;
  border-top: 1px dashed #D5D5D5;
  border-bottom: 1px dashed #D5D5D5;
}
@media screen and (max-width: 767px) {
  .business_sec_01 li {
    flex-direction: column;
    padding: 40px 0;
  }
}
.business_sec_01 .texts {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .business_sec_01 .texts {
    width: 100%;
  }
}
.business_sec_01 .image {
  margin-top: 3.15%;
  flex-grow: 1;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .business_sec_01 .image {
    margin-top: 2rem;
  }
}
.business_sec_01 h2 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .business_sec_01 h2 {
    font-size: 1rem;
  }
}
.business_sec_01 h2:before {
  content: attr(data-num);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
  background: url(../images/business_01.svg) no-repeat bottom center;
  padding-bottom: 20px;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .business_sec_01 h2:before {
    font-size: 2.5rem;
    font-weight: 700;
    background-position: top left;
    background-size: 100%;
    padding: 20px 0 0 10px;
  }
}
.business_sec_01 h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .business_sec_01 h3 {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.business_sec_01 .para {
  margin-top: 28px;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .business_sec_01 .para {
    font-size: 0.9375rem;
  }
}
.business_sec_01 .para p {
  margin-bottom: 1.5em;
}
.business_sec_01 .para p:last-child {
  margin-bottom: 0;
}

.business_sec_02 h2 {
  text-align: center;
}
.business_sec_02 ul {
  display: flex;
  gap: 4.25%;
}
@media screen and (max-width: 767px) {
  .business_sec_02 ul {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.business_sec_02 ul li {
  width: 100%;
}
.business_sec_02 ul li .image {
  margin-bottom: 18px;
}
.business_sec_02 ul li h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .business_sec_02 ul li h3 {
    font-size: 1.25rem;
  }
}
.business_sec_02 ul li p {
  font-size: 0.875rem;
}

.business_sec_03 h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .business_sec_03 h2 {
    margin-bottom: 30px;
  }
}
.business_sec_03 h2 + p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .business_sec_03 h2 + p {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }
}
.business_sec_03 .box {
  padding: 45px var(--sideW);
  background: #F8F8F8;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business_sec_03 .box {
    font-size: 0.9375rem;
    padding: 30px var(--sideW);
  }
}

.business_sec_04 {
  margin-bottom: 0;
}
.business_sec_04 h2 {
  text-align: center;
  margin-bottom: 40px;
}

.recruit_sec_01 h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recruit_sec_01 h2 {
    font-size: 1.4rem;
  }
}
.recruit_sec_01 h2:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 438px;
  aspect-ratio: 438/125;
  background: url(../images/recruit_04.svg) no-repeat center/contain;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .recruit_sec_01 h2:before {
    max-width: 220px;
    margin: 0 auto 30px;
  }
}
.recruit_sec_01 p {
  line-height: 2;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit_sec_01 p {
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }
}
.recruit_sec_01 .movie {
  margin: 60px auto 0;
  width: 100%;
  max-width: 727px;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .recruit_sec_01 .movie {
    margin-top: 40px;
  }
}
.recruit_sec_01 .movie iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.recruit_sec_02 h2 {
  text-align: center;
}
.recruit_sec_02 ul {
  display: flex;
  gap: 4.25%;
}
@media screen and (max-width: 767px) {
  .recruit_sec_02 ul {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.recruit_sec_02 ul li {
  width: 100%;
}
.recruit_sec_02 ul li .image {
  margin-bottom: 18px;
}
.recruit_sec_02 ul li h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .recruit_sec_02 ul li h3 {
    font-size: 1.25rem;
  }
}
.recruit_sec_02 ul li p {
  font-size: 0.875rem;
}

.recruit_sec_03 {
  margin-bottom: 0;
}
.recruit_sec_03 h2 {
  text-align: center;
}
.recruit_sec_03 dl .item {
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .recruit_sec_03 dl .item {
    flex-direction: column;
    margin-top: 20px;
  }
}
.recruit_sec_03 dl .item dt {
  width: 60%;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #292929;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .recruit_sec_03 dl .item dt {
    width: 100%;
    font-size: 1rem;
    padding: 1em;
    text-align: center;
  }
}
.recruit_sec_03 dl .item dd {
  width: 40%;
  border-bottom: 1px solid #EFEFEF;
  line-height: 1.5;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit_sec_03 dl .item dd {
    width: 100%;
    font-size: 0.9375rem;
    padding: 1em;
    text-align: center;
  }
}
.recruit_sec_03 .btn_cmn_05 {
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .recruit_sec_03 .btn_cmn_05 {
    margin-top: 3.75rem;
  }
}

.page-contact .ttl_cmn_03 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page-contact .contact_lead .large {
    font-size: 1.25rem;
  }
}

.content_900 {
  max-width: 900px;
  margin: 0 auto;
}

.content_1220 {
  max-width: 1220px;
  margin: 0 auto;
}

.contact_lead {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact_lead {
    font-size: 0.9375rem;
    margin-bottom: 50px;
  }
}
.contact_lead .large {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact_lead .large {
    font-size: 1.25rem;
  }
}

.contact_nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contact_nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.contact_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  height: 65px;
  border-radius: 5px;
  background: #242424 url(../images/ico_arrow_right_01_white.svg) no-repeat center right 13px/7px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (hover: hover) {
  .contact_nav a:hover {
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.8);
  }
}
@media screen and (max-width: 767px) {
  .contact_nav a {
    background-image: url(../images/ico_arrow_bottom_01_white.svg);
    background-size: 11px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact_nav a {
    font-size: 1rem;
    max-width: 300px;
    height: 56px;
  }
}

.dlist_contact {
  margin-bottom: 5em;
}
.dlist_contact:last-child {
  margin-bottom: 0;
}
.dlist_contact > dt {
  text-align: center;
  border-bottom: 1px dashed #D5D5D5;
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.375;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .dlist_contact > dt {
    font-size: 1.8rem;
  }
}
.dlist_contact > dd .descr {
  text-align: center;
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .dlist_contact > dd .descr {
    font-size: 0.9375rem;
  }
}
.dlist_contact > dd .caution {
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .dlist_contact > dd .caution {
    font-size: 0.8 0.125rem;
  }
}
.dlist_contact.line .box_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .dlist_contact.line .box_flex {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.dlist_contact.line .box_flex .link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 5px;
  background: #009B01 url(../images/ico_arrow_right_01_white.svg) no-repeat center right 13px/7px;
  color: #fff;
  font-weight: 700;
}
.dlist_contact.line .box_flex .link:before {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 28/27;
  background: url(../images/ico_line_01_white.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .dlist_contact.line .box_flex .link {
    max-width: 260px;
    height: 58px;
  }
}
.dlist_contact.line .box_flex .qr {
  flex-shrink: 0;
  display: block;
  width: 110px;
}
.dlist_contact.form .descr {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .dlist_contact.form .descr {
    margin-bottom: 40px;
  }
}

.page-request .ttl_cmn_03 {
  margin-bottom: 60px;
}

.wpcf7-form-control-wrap[data-name=your-catalog] {
  display: block;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-catalog] {
    margin-bottom: 3.75rem;
  }
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-not-valid-tip {
  display: block;
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-not-valid-tip {
    margin-top: 1.25em;
  }
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 10%;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control {
    gap: 30px 6%;
  }
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item {
  margin: 0;
  display: block;
  width: 26.6666666667%;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item {
    width: 47%;
  }
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item .text {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item .text input {
  flex-shrink: 0;
  inline-size: 1.5em;
  block-size: 1.5em;
  border: 3px solid #282828;
  position: absolute;
  top: 1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item .text input {
    inline-size: 1.2em;
    block-size: 1.2em;
    top: 3px;
  }
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item .text span {
  padding-left: 2.375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item .text span {
    padding-left: 1.75rem;
  }
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item label:before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 240/339;
  background: no-repeat center/contain;
  margin-bottom: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(1) label:before {
  background-image: url(../images/request_01.jpg);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(2) label:before {
  background-image: url(../images/request_02.jpg);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(3) label:before {
  background-image: url(../images/request_03.jpg);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(4) label:before {
  background-image: url(../images/request_04.jpg);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(5) label:before {
  background-image: url(../images/request_05.jpg);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(6) label:before {
  background-image: url(../images/request_06.jpg);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(7) label:before {
  background-image: url(../images/request_07.jpg);
}
.wpcf7-form-control-wrap[data-name=your-catalog] .wpcf7-form-control .wpcf7-list-item:nth-child(8) label:before {
  background-image: url(../images/request_08.jpg);
}

.page-privacy-policy .ttl_cmn_03 {
  margin-bottom: 60px;
}

.txt_policy {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .txt_policy {
    font-size: 0.9375rem;
  }
}

.dlist_policy_inner {
  margin-bottom: 60px;
}
.dlist_policy_inner dt {
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .dlist_policy_inner dd {
    font-size: 0.9375rem;
  }
}
.dlist_policy_inner ul {
  margin-top: 1.8em;
}
.dlist_policy_inner ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.dlist_policy_inner ul li:before {
  content: "・";
}
.dlist_policy_inner a {
  text-decoration: underline;
}

.post-type-archive-model-house h1 {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .post-type-archive-model-house h1 {
    margin-bottom: 3.75rem;
  }
}

.list_model-house {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 6.56%;
}
@media screen and (max-width: 767px) {
  .list_model-house {
    gap: 3.75rem;
  }
}
.list_model-house > li {
  width: 46.72%;
}
@media screen and (max-width: 767px) {
  .list_model-house > li {
    width: 100%;
  }
}

.card_model-house {
  display: block;
}
.card_model-house .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 570/402;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .card_model-house .image {
    margin-bottom: 20px;
  }
}
.card_model-house .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.card_model-house .image:after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: rgba(248, 248, 248, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .card_model-house .image:hover img {
    transform: scale(1.05);
  }
  .card_model-house .image:hover:after {
    width: 100%;
    left: 0;
    right: unset;
  }
}
.card_model-house .ttl {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .card_model-house .ttl {
    font-size: 1.4rem;
  }
}
.card_model-house .tags {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .card_model-house .tags {
    margin-top: 5px;
  }
}
.card_model-house .tags > li {
  display: inline;
  font-size: 0.875rem;
  margin: 0 1em 0.5em 0;
}
.card_model-house .tags > li:before {
  content: "#";
}
@media screen and (max-width: 767px) {
  .card_model-house .tags > li {
    font-size: 0.8125rem;
  }
}

.mh_area {
  background-color: #242424;
  color: #fff;
  padding: 9px 1em;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 167px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mh_area {
    font-size: 0.8125rem;
    min-width: 120px;
    padding: 7px 1em;
    margin-bottom: 16px;
  }
}

.single-model-house .post_content {
  margin-bottom: 60px;
}

.mh_hero {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .mh_hero {
    margin-bottom: 3.125rem;
  }
}
.mh_hero .inner {
  display: flex;
  align-items: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .mh_hero .inner {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.mh_hero .texts {
  flex-grow: 1;
}
.mh_hero .texts h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .mh_hero .texts h1 {
    font-size: 1.8rem;
  }
}
.mh_hero .texts h1:before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .mh_hero .texts h1:before {
    font-size: 0.875rem;
  }
}
.mh_hero .texts .mh_area {
  margin-bottom: 0;
}
.mh_hero .image {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .mh_hero .image {
    width: auto;
    margin: 0 var(--extend);
  }
}

.mh_youtube {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .mh_youtube {
    margin: 0 var(--extend) 60px;
    width: auto;
  }
}
.mh_youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.mh_links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .mh_links {
    flex-direction: column;
    align-items: center;
  }
}
.mh_links > li {
  width: 100%;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .mh_links > li {
    max-width: 275px;
  }
}
.mh_links > li a {
  margin: 0;
}

.mh_points {
  margin-top: 6.25rem;
}

.mh_sec_02 {
  margin-left: var(--extend);
  margin-right: var(--extend);
  background: #F8F8F8;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .mh_sec_02 {
    padding: 3.75rem 0;
  }
}
.mh_sec_02 .box {
  background-color: #fff;
  padding: 50px var(--sideW);
}
@media screen and (max-width: 767px) {
  .mh_sec_02 .box {
    padding: 40px var(--sideW);
  }
}
.mh_sec_02 .box figure img {
  display: block;
  width: 100%;
  max-width: 688px;
  margin: 0 auto 30px;
}
.mh_sec_02 .box figure figcaption {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mh_sec_02 .box figure figcaption {
    font-size: 0.8125rem;
  }
}

.mh_sec_03 {
  text-align: center;
}
.mh_sec_03 h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .mh_sec_03 h2 {
    margin-bottom: 30px;
  }
}
.mh_sec_03 .gmap {
  margin: 0 var(--extend) 40px;
  display: block;
  overflow: hidden;
  height: 406px;
}
@media screen and (max-width: 767px) {
  .mh_sec_03 .gmap {
    height: 250px;
    margin-bottom: 28px;
  }
}
.mh_sec_03 .gmap iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.mh_sec_03 address {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .mh_sec_03 address {
    font-size: 0.9375rem;
  }
}
.mh_sec_03 .tel {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mh_sec_03 .tel {
    font-size: 40px;
  }
}
.mh_sec_03 .tel:before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 24/43;
  background: url(../images/ico_device_01_black.svg) no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 8px;
}

.mh_sec_04 {
  margin-bottom: 0;
}
.mh_sec_04 h2 {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mh_sec_04 h2 {
    margin-bottom: 40px;
  }
}
.mh_sec_04 h2:before {
  font-weight: 600;
}

.page-real-estate h1 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.real-estate_sec:last-of-type {
  margin-bottom: 0;
}
.real-estate_sec h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 0.8125em;
  border-left: 5px solid #292929;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .real-estate_sec h2 {
    padding: 0.75em;
    font-size: 1.5rem;
    margin-bottom: 36px;
  }
}

.list_real-estate {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem 5%;
}
.list_real-estate > li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .list_real-estate > li {
    width: 100%;
  }
}

.card_real-estate {
  display: block;
}
.card_real-estate .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 364/234;
  margin-bottom: 22px;
}
.card_real-estate .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .card_real-estate .image {
    margin-bottom: 20px;
  }
}
.card_real-estate .catch {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .card_real-estate .catch {
    font-size: 0.8125rem;
    margin-bottom: 8px;
  }
}
.card_real-estate .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .card_real-estate .ttl {
    font-size: 1.125rem;
  }
}

.re_hero {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .re_hero {
    margin-top: 3.125rem;
  }
}
.re_hero .box_01 {
  display: flex;
  align-items: center;
  gap: 10%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .re_hero .box_01 {
    flex-direction: column;
    align-items: unset;
    gap: 30px;
  }
}
.re_hero .box_01 .texts {
  flex-grow: 1;
}
.re_hero .box_01 .btn_cmn_05 {
  flex-shrink: 0;
  margin: 0;
}
.re_hero .box_01 .cat {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .re_hero .box_01 .cat {
    font-size: 0.9375rem;
  }
}
.re_hero .box_01 .ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .re_hero .box_01 .ttl {
    font-size: 1.8rem;
  }
}
.re_hero .box_01 .lead {
  margin-top: 10px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.re_hero .box_01 .price {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .re_hero .box_01 .price {
    font-size: 1.125rem;
  }
}
.re_hero .box_01 .price span {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  margin: 0 10px;
}
.re_hero .box_02 {
  margin-bottom: 5em;
  display: flex;
  align-items: flex-start;
  gap: 4.2%;
}
@media screen and (max-width: 767px) {
  .re_hero .box_02 {
    flex-direction: column;
    gap: 30px;
  }
}
.re_hero .box_02 .image {
  width: 51.8%;
}
.re_hero .box_02 .image .splide__slide {
  display: block;
  overflow: hidden;
  position: relative;
}
.re_hero .box_02 .image .splide__slide:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 60%;
}
.re_hero .box_02 .image .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .re_hero .box_02 .image {
    width: 100%;
  }
}
.re_hero .box_02 .pickup {
  width: 45%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .re_hero .box_02 .pickup {
    width: 100%;
  }
}
.re_hero .box_02 .pickup .item {
  display: flex;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .re_hero .box_02 .pickup .item {
    font-size: 0.9375rem;
  }
}
.re_hero .box_02 .pickup .item:last-child {
  margin-bottom: 0;
}
.re_hero .box_02 .pickup .item dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #696969;
  color: #fff;
  padding: 1.2em 2%;
  width: 31%;
  text-align: center;
  flex-shrink: 0;
}
.re_hero .box_02 .pickup .item dd {
  flex-grow: 1;
  background-color: #F5F5F5;
  padding: 1.2em 5%;
}
.re_hero .re_sec_link {
  width: 100%;
  max-width: 1148px;
  margin: 0 auto;
}
.re_hero .re_sec_link ul {
  display: flex;
  gap: 1.74%;
}
@media screen and (max-width: 767px) {
  .re_hero .re_sec_link ul {
    flex-wrap: wrap;
    gap: 24px 5%;
  }
}
.re_hero .re_sec_link ul li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .re_hero .re_sec_link ul li {
    width: 47.5%;
  }
}
.re_hero .re_sec_link ul li a {
  background-color: #F8F8F8;
  padding: 26px 2.6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .re_hero .re_sec_link ul li a {
    padding: 20px 2.6%;
    font-size: 1.2rem;
  }
}
.re_hero .re_sec_link ul li a:before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #292929 url(../images/ico_arrow_bottom_01_white.svg) no-repeat center/6px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .re_hero .re_sec_link ul li a:before {
    width: 26px;
  }
}
.re_hero .re_sec_link ul li a:after {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

.bg_gray {
  background-color: #F8F8F8;
  padding: 100px 0;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .bg_gray {
    padding: 5rem 0;
    margin-bottom: 5rem;
  }
}
.bg_gray section {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .bg_gray section {
    margin-bottom: 5rem;
  }
}
.bg_gray section:last-child {
  margin-bottom: 0;
}

.sec_plan .box_white {
  background-color: #fff;
  padding: 50px var(--sideW) 80px;
}
.sec_plan .box_white .image {
  width: 100%;
  max-width: 714px;
  margin: 0 auto;
}
.sec_plan .box_white table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.sec_plan .box_white table th {
  background-color: #696969;
  color: #fff;
  font-weight: 400;
  text-align: center;
  padding: 1em 0.25em;
  border-right: 2px solid #fff;
}
.sec_plan .box_white table th:nth-child(1) {
  width: 18.66%;
}
.sec_plan .box_white table th:nth-child(2) {
  width: 40.67%;
}
.sec_plan .box_white table th:nth-child(3) {
  width: 40.67%;
}
.sec_plan .box_white table td {
  background-color: #EFEFEF;
  text-align: center;
  padding: 1em 0.25em;
  border-right: 2px solid #fff;
}
.sec_plan .box_white .image + table {
  margin-top: 40px;
}

.sec_location ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.1%;
}
.sec_location ul > li {
  width: 22.675%;
}
@media screen and (max-width: 767px) {
  .sec_location ul > li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sec_location ul > li:nth-child(1), .sec_location ul > li:nth-child(2) {
    width: 48.45%;
  }
  .sec_location ul > li:nth-child(1) .ttl, .sec_location ul > li:nth-child(2) .ttl {
    margin-top: 18px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .sec_location ul > li:nth-child(1) .text, .sec_location ul > li:nth-child(2) .text {
    margin-top: 10px;
  }
}
.sec_location ul .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 570/345;
}
.sec_location ul .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_location ul .ttl {
  margin-top: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.sec_location ul .text {
  margin-top: 6px;
  font-size: 0.8125rem;
}

.sec_access .map {
  display: block;
  overflow: hidden;
  height: 328px;
}
.sec_access .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.dlist_overview {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.dlist_overview .item {
  width: calc((100% - 2px) / 2);
  display: flex;
}
@media screen and (max-width: 767px) {
  .dlist_overview .item {
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
  }
  .dlist_overview .item:last-child {
    margin-bottom: 0;
  }
}
.dlist_overview .item dt {
  width: 180px;
  flex-shrink: 0;
  background-color: #696969;
  color: #fff;
  line-height: 1.5;
  padding: 1em 0.25em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .dlist_overview .item dt {
    width: 100%;
    padding: 1em 1.5em;
    text-align: left;
  }
}
.dlist_overview .item dd {
  flex-grow: 1;
  background-color: #FFFFFF;
  padding: 1em 1.5em;
}

.single-land .dlist_overview .item:nth-child(n+17) {
  width: 100%;
}

.single-house .dlist_overview .item:nth-child(n+21) {
  width: 100%;
}

.sec_contact {
  margin-bottom: 0;
}
.sec_contact h2 {
  text-align: center;
}
.sec_contact h2:before {
  font-weight: 600;
}

.post-type-archive-works h1,
.archive.tax-works_cat h1 {
  text-align: center;
  margin-bottom: 40px;
}

.works_search {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .works_search {
    margin-bottom: 5rem;
  }
}
.works_search .dlist_cat {
  padding: 30px;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
  display: flex;
  align-items: baseline;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .works_search .dlist_cat {
    padding: 20px 0;
    flex-direction: column;
    gap: 20px;
  }
}
.works_search .dlist_cat dt {
  flex-shrink: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .works_search .dlist_cat dt {
    width: 100%;
    text-align: center;
  }
}
.works_search .dlist_cat dd {
  flex-grow: 1;
}
.works_search .dlist_cat dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 2.32%;
}
.works_search .dlist_cat dd ul li {
  width: 18.144%;
}
@media screen and (max-width: 767px) {
  .works_search .dlist_cat dd ul li {
    width: 48.84%;
  }
}
.works_search .dlist_cat dd ul li a {
  display: block;
  width: 100%;
  border: 1px solid #292929;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  padding: 8px 20px;
}
@media (hover: hover) {
  .works_search .dlist_cat dd ul li a:hover {
    background-color: #292929;
    color: #fff;
  }
}
.works_search .dlist_cat dd ul li a.current {
  background-color: #292929;
  color: #fff;
}
.works_search .dlist_keyword dt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: #292929;
  color: #fff;
  font-weight: 700;
  padding: 18px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works_search .dlist_keyword dt {
    font-size: 0.9375rem;
    gap: 13px;
    padding: 16px;
  }
}
.works_search .dlist_keyword dt:before {
  content: "";
  display: block;
  width: 36px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/ico_search.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .works_search .dlist_keyword dt:before {
    width: 32px;
  }
}
.works_search .dlist_keyword dt:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 26px solid transparent;
  border-left: 26px solid transparent;
  border-top: 20px solid #242424;
  border-bottom: 0;
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .works_search .dlist_keyword dt:after {
    top: calc(100% - 8px);
  }
}
.works_search .dlist_keyword dd ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .works_search .dlist_keyword dd ul {
    justify-content: flex-start;
  }
}
.works_search .dlist_keyword dd ul li input {
  display: none;
}
.works_search .dlist_keyword dd ul li input:checked + label {
  background-color: #292929;
  color: #fff;
}
.works_search .dlist_keyword dd ul li label {
  display: block;
  width: 100%;
  border: 1px solid #292929;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  padding: 8px 20px;
}
@media (hover: hover) {
  .works_search .dlist_keyword dd ul li label:hover {
    background-color: #292929;
    color: #fff;
  }
}
.works_search .dlist_keyword dd ul li label.current {
  background-color: #292929;
  color: #fff;
}

.search_submit {
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 65px;
  border-radius: 50px;
  background-color: #292929;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.search_submit:after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/11;
  background: url(../images/ico_arrow_right_01_white.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.list_works {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem 5%;
}
@media screen and (max-width: 767px) {
  .list_works {
    gap: 50px;
  }
}
.list_works > li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .list_works > li {
    width: 100%;
  }
}

.card_works {
  display: block;
  position: relative;
}
.card_works.is-new:after {
  content: "NEW";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFF500;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  position: absolute;
  top: -40px;
  right: -33px;
}
@media screen and (max-width: 767px) {
  .card_works.is-new:after {
    width: 60px;
    font-size: 0.875rem;
    top: -20px;
    right: -10px;
  }
}
.card_works .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 364/234;
  margin-bottom: 20px;
}
.card_works .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .card_works .image {
    margin-bottom: 15px;
  }
}
.card_works .attr {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.card_works .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .card_works .ttl {
    font-size: 1.125rem;
  }
}
@media (hover: hover) {
  .card_works:hover .image img {
    transform: scale(1.05);
  }
}

.works_hero {
  padding: 5rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .works_hero {
    padding: 2.5rem 0 1.5rem;
  }
}
.works_hero .box_01 {
  display: flex;
  gap: 4.1%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .works_hero .box_01 {
    flex-direction: column;
    gap: 2em;
  }
}
.works_hero .box_01 .texts {
  flex-shrink: 0;
  width: max(36.72%, 350px);
}
@media screen and (max-width: 767px) {
  .works_hero .box_01 .texts {
    width: 100%;
  }
}
.works_hero .ttl_cmn_03 {
  margin-bottom: 60px;
}
.works_hero .ttl_cmn_03:before {
  font-weight: 700;
}
.works_hero .attr {
  margin-bottom: 1em;
}
.works_hero .ttl {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .works_hero .ttl {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.works_hero .descr {
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}
.works_hero .box_02 {
  display: flex;
  gap: 3.28%;
}
@media screen and (max-width: 767px) {
  .works_hero .box_02 {
    flex-direction: column;
    gap: 2.5em;
  }
}
.works_hero .box_02 h2 {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #696969;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .works_hero .box_02 h2 {
    margin-bottom: 12px;
  }
}
.works_hero .box_02 h2:before {
  content: attr(data-en);
  color: #292929;
  font-family: "Open Sans", sans-serif;
  font-size: 1.875rem;
  padding-bottom: 5px;
}
.works_hero .box_02 .data {
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .works_hero .box_02 .data {
    width: 100%;
  }
}
.works_hero .box_02 .data dl .item {
  display: flex;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .works_hero .box_02 .data dl .item {
    font-size: 0.9375rem;
  }
}
.works_hero .box_02 .data dl .item:last-child {
  margin-bottom: 0;
}
.works_hero .box_02 .data dl .item dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #696969;
  color: #fff;
  padding: 1.2em 2%;
  width: 160px;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .works_hero .box_02 .data dl .item dt {
    width: 120px;
  }
}
.works_hero .box_02 .data dl .item dd {
  flex-grow: 1;
  background-color: #F5F5F5;
  padding: 1.2em 5%;
}
.works_hero .box_02 .keyword {
  flex-grow: 1;
}
.works_hero .box_02 .keyword ul {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 20px;
}
@media screen and (max-width: 767px) {
  .works_hero .box_02 .keyword ul {
    gap: 10px;
  }
}
.works_hero .box_02 .keyword ul li {
  font-size: 0.8125rem;
  padding: 7px 20px;
  border: 1px solid #292929;
}

.works_brand {
  margin-top: 5rem;
  border: 1px solid #292929;
  padding: 50px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .works_brand {
    flex-direction: column;
    padding: 30px var(--sideW);
    gap: 1em;
  }
}
.works_brand .btn_cmn_05 {
  max-width: 240px;
  margin: 0;
}

.list_works_action {
  margin-top: 60px;
}
.list_works_action > li {
  margin-bottom: 40px;
}
.list_works_action > li:last-child {
  margin-bottom: 0;
}
.list_works_action a {
  display: flex;
  gap: 5.78%;
  border: 1px solid #292929;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list_works_action a {
    flex-direction: column;
  }
}
.list_works_action a:after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #292929 url(../images/ico_arrow_right_01_white.svg) no-repeat center/7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
@media screen and (max-width: 767px) {
  .list_works_action a:after {
    width: 32px;
    top: unset;
    bottom: 15px;
    right: 15px;
    transform: none;
  }
}
.list_works_action a .image {
  display: block;
  overflow: hidden;
  width: 40%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .list_works_action a .image {
    width: 100%;
  }
}
.list_works_action a .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_works_action a dl {
  flex-grow: 1;
  padding: 50px 100px 50px 0;
}
@media screen and (max-width: 767px) {
  .list_works_action a dl {
    padding: 30px var(--sideW);
  }
}
.list_works_action a dl dt {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .list_works_action a dl dt {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.list_works_action a dl dd {
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media (hover: hover) {
  .list_works_action a:hover {
    background-color: #292929;
    color: #fff;
  }
}

.other_post {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .other_post {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .post-type-archive-voice .section_wrap .inner_l,
  .post-type-archive-voice .section_wrap .inner_m {
    padding: 0;
  }
}
.post-type-archive-voice h1 {
  text-align: center;
  margin-bottom: 5rem;
}
.post-type-archive-voice .content {
  position: relative;
  background-color: #F8F8F8;
  border-radius: 20px;
  padding: 100px var(--sideW);
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .content {
    padding: 44px var(--sideW) 60px;
  }
}
.post-type-archive-voice .content .ttl_voice {
  position: absolute;
  top: -54px;
  right: 100%;
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .content .ttl_voice {
    right: unset;
    left: var(--sideW);
  }
}
.post-type-archive-voice .content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .content h2 {
    font-size: 1.5rem;
    margin-left: var(--sideW);
  }
}
.post-type-archive-voice .content h2 + p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .content h2 + p {
    text-align: left;
    font-size: 0.9375rem;
  }
}

.list_voice_archive {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 5%;
}
@media screen and (max-width: 767px) {
  .list_voice_archive {
    gap: 40px 5%;
  }
}
.list_voice_archive > li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .list_voice_archive > li {
    width: 100%;
  }
}

.link_voice_award {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #282828;
  padding: 47.66% 0 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.66;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.link_voice_award__wrap {
  width: 235px;
  position: absolute;
  top: -80px;
  right: -26px;
}
@media screen and (max-width: 767px) {
  .link_voice_award__wrap {
    width: 180px;
    position: static;
    margin: 3.75em auto 0;
  }
}
@media screen and (max-width: 767px) {
  .link_voice_award {
    font-size: 0.875rem;
  }
}
.link_voice_award:before {
  content: "";
  display: block;
  width: 56.6%;
  aspect-ratio: 1/1;
  background: url(../images/voice_arward.png) no-repeat center/contain;
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}
.link_voice_award:after {
  content: "";
  display: block;
  margin: 8% auto 0;
  width: 10px;
  aspect-ratio: 10/18;
  background: url(../images/ico_arrow_right_01_white.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .link_voice_award:after {
    width: 8px;
  }
}
@media (hover: hover) {
  .link_voice_award:hover {
    transform: scale(1.05);
  }
}

.single-voice .single_pagination {
  margin-bottom: 5em;
}

.voice_hero {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .voice_hero {
    margin-bottom: 3.75rem;
  }
}
.voice_hero .inner {
  display: flex;
  gap: 4.1%;
}
@media screen and (max-width: 767px) {
  .voice_hero .inner {
    flex-direction: column;
    gap: 30px;
  }
}
.voice_hero .texts {
  flex-shrink: 0;
  width: 36.64%;
}
@media screen and (max-width: 767px) {
  .voice_hero .texts {
    width: 100%;
  }
}
.voice_hero .image {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .voice_hero .image {
    margin: 0 var(--extend);
  }
}
.voice_hero .ttl_cmn_03 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .voice_hero .ttl_cmn_03 {
    margin-bottom: 40px;
  }
}
.voice_hero .ttl_cmn_03:before {
  font-weight: 700;
}
.voice_hero .attr {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .voice_hero .attr {
    font-size: 0.9375rem;
  }
}
.voice_hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .voice_hero h1 {
    font-size: 1.4em;
  }
}

.post-type-archive-event h1 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.list_event_archive {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem 4.75%;
}
@media screen and (max-width: 767px) {
  .list_event_archive {
    gap: 50px;
  }
}
.list_event_archive > li {
  width: 21.4375%;
}
@media screen and (max-width: 767px) {
  .list_event_archive > li {
    width: 100%;
  }
}

.single-event .event_layout {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10%;
  padding: var(--headerHeight) var(--sideW);
  overflow: hidden;
}
.single-event .event_layout .content {
  height: 100%;
  width: 100%;
  max-width: 375px;
  padding: 25px;
  background-color: #fff;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .single-event .event_layout .content {
    max-width: unset;
    padding: 0 var(--sideW);
  }
}
.single-event .event_layout .content img {
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .single-event .event_layout .content img {
    display: block;
    margin-left: var(--extend);
    margin-right: var(--extend);
    width: calc(100% + var(--sideW) * 2);
  }
}
@media screen and (max-width: 767px) {
  .single-event .event_layout {
    display: contents;
  }
  .single-event .event_layout .catch {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .single-event .l_container_wrap {
    padding-top: 0;
    overflow: hidden;
  }
  .single-event .l_container {
    background: url(../images/event_bg.jpg) no-repeat center/cover;
  }
}
.single-event .reserve {
  margin-top: 5rem;
}
.single-event .reserve h2 {
  text-align: center;
}
.single-event #wpcf7-f10149-o1 .list_date > li,
.single-event #wpcf7-f10147-o1 .list_date > li {
  flex-direction: column;
  gap: 10px;
}
.single-event #wpcf7-f10149-o1 .list_date > li .head,
.single-event #wpcf7-f10147-o1 .list_date > li .head {
  width: 68px;
}

.event_content .iframe_wrapper {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.event_content .iframe_wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.post_hero .ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .post_hero .ttl {
    font-size: 1.25rem;
  }
}
.post_hero .ttl:before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #EFEFEF;
}
@media screen and (max-width: 767px) {
  .post_hero .ttl:before {
    font-size: 3.75rem;
  }
}
.post_hero .ttl span {
  display: block;
  margin: -1.5em 0 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .post_hero .ttl span {
    margin-left: 0;
  }
}

.category_nav {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .category_nav {
    flex-direction: column;
    gap: 20px;
  }
}
.category_nav dt {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
.category_nav dd {
  flex-grow: 1;
}
.category_nav dd ul {
  font-size: 0;
}
.category_nav dd ul li {
  display: inline-block;
  margin: 0 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .category_nav dd ul li {
    margin: 0 8px 8px 0;
  }
}
.category_nav dd ul li a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 9px 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #696969;
}
@media screen and (max-width: 767px) {
  .category_nav dd ul li a {
    font-size: 0.8125rem;
    padding: 7px 14px;
  }
}
.category_nav dd ul li a.current {
  background-color: #696969;
  color: #fff;
}
@media (hover: hover) {
  .category_nav dd ul li a:hover {
    background-color: #696969;
    color: #fff;
  }
}

.list_post_archive {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 5%;
}
@media screen and (max-width: 767px) {
  .list_post_archive {
    gap: 40px;
  }
}
.list_post_archive > li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .list_post_archive > li {
    width: 100%;
  }
}

.list_cat {
  font-size: 0;
}
.list_cat li {
  display: inline-block;
  margin: 0 20px 20px 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #696969;
}
@media screen and (max-width: 767px) {
  .list_cat li {
    font-size: 0.8125rem;
    padding: 7px 14px;
  }
}

.single .post_hero .attr {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  gap: 4.1%;
}
@media screen and (max-width: 767px) {
  .single .post_hero .attr {
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 1rem;
  }
}
.single .post_hero .attr .texts {
  flex-shrink: 0;
  width: 36.72%;
}
@media screen and (max-width: 767px) {
  .single .post_hero .attr .texts {
    width: 100%;
  }
}
.single .post_hero .attr .texts .date {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5em;
}
.single .post_hero .attr .texts .ttl {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.single .post_hero .attr .image {
  width: 100%;
}
.single aside {
  margin-top: 5rem;
}

.other_post {
  margin-bottom: 0;
}
.other_post h2 {
  text-align: center;
}