@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-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: 75%;
}

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;
}

input, button, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: 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;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  zoom: 1;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js_active {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --min-with: 1000px;
  --headerHeight: 110px;
  --activeHeaderHeight: 80px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
  --spaceMin: 80px;
}
@media screen and (max-width: 960px) {
  :root {
    --min-with: 1px;
    --headerHeight: 100px;
    --activeHeaderHeight: 80px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 60px;
  }
}

html {
  width: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
  overflow-x: clip;
}

body {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #282828;
  text-align: left;
  letter-spacing: 0.04em;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #282828;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.add_ttl {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 60px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .add_ttl {
    font-size: 1.25rem;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.add_ttl_02 {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding-left: 20px;
  border-left: 4px solid #757B79;
  margin-top: 55px;
}
@media screen and (max-width: 960px) {
  .add_ttl_02 {
    font-size: 1.125rem;
    padding-left: 10px;
  }
}
.add_ttl_02:first-child {
  margin-top: 0;
}

.add_ttl_03 {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .add_ttl_03 {
    font-size: 1rem;
  }
}
.add_ttl_03:first-child {
  margin-top: 0;
}

.add_ques {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 10px;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.3;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .add_ques {
    font-size: 1.25rem;
  }
}
.add_ques:first-child {
  margin-top: 0;
}
.add_ques::before {
  content: "Q.";
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
}

.gray_box {
  padding: 20px 35px;
  background-color: #F8F8F8;
  margin: 55px 0 0;
}
@media screen and (max-width: 960px) {
  .gray_box {
    padding: 15px 20px;
    margin-top: 40px;
  }
}
.gray_box p {
  font-size: 0.875rem;
}

.add_btn {
  display: block;
  position: relative;
  width: 350px;
  max-width: 100%;
  padding: 15px;
  border: 1px solid #757B79;
  background-color: #757B79;
  color: #fff;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  border-radius: 5px;
}
.add_btn:hover {
  background-color: #fff;
  color: #757B79;
}
.add_btn:hover::after {
  background-color: #757B79;
}
.add_btn::after {
  content: "";
  position: absolute;
  width: 14px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.marker_yel {
  background: linear-gradient(to bottom, #F5FF00, #F5FF00);
}

.add_border {
  display: inline-block;
  border-bottom: 1px solid #282828;
}
@media screen and (max-width: 960px) {
  .add_border {
    margin-top: 40px;
  }
}
.add_border:first-child {
  margin-top: 0;
}
.add_border + .add_ttl {
  margin-top: 15px;
}

.txt_quote {
  display: flex;
  justify-content: end;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 10px;
}
@media screen and (max-width: 960px) {
  .txt_quote {
    font-size: 0.75rem;
  }
}
.txt_quote:first-child {
  margin-top: 0;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inherit;
  }
}

#container_wrap {
  position: relative;
  min-width: var(--min-with);
  padding-top: 165px;
}
@media screen and (max-width: 960px) {
  #container_wrap {
    overflow: hidden;
    min-width: 1px;
    padding-top: 130px;
  }
}

.home #container_wrap {
  padding-top: 0;
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}
.section_wrap_sm {
  position: relative;
  margin-bottom: var(--spaceMin);
}
.section_wrap:last-child {
  margin-bottom: 0;
}

.of_hidden {
  overflow: hidden;
}

.inner, .inner_lg, .inner_sm {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_sm {
  max-width: calc(930px + var(--sideW) * 2);
}
.inner_lg {
  max-width: calc(1360px + var(--sideW) * 2);
}
.inner + [class*=inner], .inner_sm + [class*=inner], .inner_lg + [class*=inner] {
  margin-top: var(--space);
}

.split {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 30px min(3.33vw, 50px);
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto var(--space);
  padding: 0 var(--sideW);
}
@media screen and (max-width: 960px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split__page_nav {
  grid-column: 1/-1;
}
.split .sticky {
  position: sticky;
  top: var(--headerHeight);
}
.split .ttl_cmn_01 {
  margin-bottom: 35px;
}
.split .lead {
  margin-bottom: 45px;
}
.split .cat_list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.split .cat_list a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.split .cat_list a::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: var(--min-with);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  transition: 0.5s;
  padding: 0 var(--sideW);
  z-index: 1000;
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
  background-color: rgba(255, 255, 255, 0.8);
}
.header.active .header__logo {
  opacity: 0;
}
.header__logo {
  display: block;
  position: relative;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  width: clamp(150px, 12.46vw, 187px);
  aspect-ratio: 292/51;
  background: url(../images/logo.svg) no-repeat center/contain;
  z-index: 1;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 10px min(2.33vw, 35px);
}
.header .pc_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px min(2.33vw, 35px);
}
@media screen and (max-width: 960px) {
  .header .pc_nav {
    display: none;
  }
}
.header .pc_nav a {
  display: block;
  position: relative;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.5;
  overflow: hidden;
}
.header .pc_nav a:hover::before {
  animation: shine 0.5s ease;
}
.header .pc_nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.home .header {
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.home .header.js_show {
  opacity: 1;
  pointer-events: auto;
}

.global_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-direction: column;
  gap: 0;
  font-size: 1rem;
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #757B79;
  z-index: 2;
  overflow-y: scroll;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .global_nav {
    font-size: 0.9375rem;
  }
}
.global_nav::before {
  content: "";
  display: block;
  background: url(../images/main_visual.jpg) no-repeat center/cover;
}
.global_nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.global_nav.active {
  opacity: 1;
  right: 0;
  pointer-events: auto;
}
.global_nav .nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .global_nav .nav {
    padding: var(--headerHeight) var(--sideW);
  }
}
.global_nav .nav > * {
  position: relative;
  z-index: 1;
}
.global_nav .nav ul:not([class]) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-auto-flow: column;
  gap: 10px 80px;
  margin-bottom: 45px;
}
@media screen and (max-width: 960px) {
  .global_nav .nav ul:not([class]) {
    gap: 10px 30px;
  }
}
.global_nav .nav ul:not([class]) a {
  display: inline-block;
  position: relative;
  font-size: 1.375rem;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.06em;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .global_nav .nav ul:not([class]) a {
    font-size: 1.125rem;
  }
}
.global_nav .nav ul:not([class]) a:hover::before {
  animation: shine 0.5s ease;
}
.global_nav .nav ul:not([class]) a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(117, 123, 121, 0.6), transparent);
  transform: skewX(-20deg);
}
.global_nav .nav .tel {
  text-align: center;
  margin-bottom: 22px;
}
.global_nav .nav .tel a {
  display: inline-flex;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 960px) {
  .global_nav .nav .tel a {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
.global_nav .nav .tel a::before {
  content: "tel.";
}
.global_nav .nav .tel p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .global_nav .nav .tel p {
    font-size: 0.875rem;
  }
}
.global_nav .nav .sns {
  display: flex;
  justify-content: center;
  gap: 25px;
  height: 40px;
}
.global_nav .nav .sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.global_nav .nav .sns a:hover img {
  animation: bounce 0.8s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
.menu-trigger {
  display: grid;
  align-items: center;
  gap: 8px;
  position: relative;
  aspect-ratio: 1/1;
  height: 70px;
  cursor: pointer;
  transition: 0.5s;
  z-index: 3;
}
.menu-trigger::before {
  content: "";
  position: absolute;
  width: 3px;
  aspect-ratio: 1/1;
  background-color: #282828;
  border-radius: 50%;
  right: 0;
  top: calc(50% + 11px);
  transition: 0.5s;
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 100%;
  height: 26px;
  background: linear-gradient(to bottom, transparent calc(50% - 0.5px), #282828 calc(50% - 0.5px), #282828 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  transition: 0.5s;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #282828;
  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: auto;
  bottom: 0;
  width: 88%;
}
.menu-trigger.active::before {
  opacity: 0;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  left: 0;
  opacity: 1;
  rotate: 135deg;
  width: 100%;
  background-color: #fff;
}
.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}

.contact_cmn {
  position: relative;
  background-color: #757B79;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .contact_cmn {
    padding: 60px 0;
  }
}
.contact_cmn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  left: 0;
  top: 0;
  opacity: 0.7;
}
.contact_cmn .inner, .contact_cmn .inner_sm, .contact_cmn .inner_lg {
  position: relative;
  z-index: 1;
}
.contact_cmn .inner > p, .contact_cmn .inner_sm > p, .contact_cmn .inner_lg > p {
  text-align: center;
  color: #fff;
  margin-bottom: 75px;
}
@media screen and (max-width: 960px) {
  .contact_cmn .inner > p, .contact_cmn .inner_sm > p, .contact_cmn .inner_lg > p {
    font-size: 0.875rem;
    margin-bottom: 50px;
  }
}
.contact_cmn .inner > p span, .contact_cmn .inner_sm > p span, .contact_cmn .inner_lg > p span {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .contact_cmn .inner > p span, .contact_cmn .inner_sm > p span, .contact_cmn .inner_lg > p span {
    padding-bottom: 25px;
  }
}
.contact_cmn .inner > p span::after, .contact_cmn .inner_sm > p span::after, .contact_cmn .inner_lg > p span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 35px;
  background-color: #fff;
  top: 100%;
  left: calc(50% - 0.5px);
}
.contact_cmn ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px min(5.33vw, 80px);
}
@media screen and (max-width: 960px) {
  .contact_cmn ul {
    flex-direction: column;
  }
}
.contact_cmn ul .tel {
  text-align: center;
}
.contact_cmn ul .tel a {
  display: inline-flex;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
  color: #fff;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 960px) {
  .contact_cmn ul .tel a {
    font-size: 2rem;
  }
}
.contact_cmn ul .tel a::before {
  content: "tel.";
  display: block;
  letter-spacing: 0.06em;
}
.contact_cmn ul .tel p {
  color: #fff;
  line-height: 1.5;
}
.contact_cmn ul .form a {
  display: block;
  position: relative;
  width: 480px;
  max-width: 100%;
  line-height: 100px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 1.125rem;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .contact_cmn ul .form a {
    width: 320px;
    line-height: 70px;
    font-size: 1rem;
  }
}
.contact_cmn ul .form a::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 10/16;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 0 0 60px;
  }
}
.footer .inner, .footer .inner_sm, .footer .inner_lg {
  display: grid;
  grid-template-columns: 38.2% 1fr;
  gap: 80px 20px;
}
@media screen and (max-width: 960px) {
  .footer .inner, .footer .inner_sm, .footer .inner_lg {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .footer .text {
    order: 2;
  }
}
.footer .text img {
  display: block;
  margin-bottom: 25px;
}
.footer .text img:last-child {
  margin-bottom: 0;
}
.footer .text p:not([class]) {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 35px;
}
.footer .text p:not([class]) span {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
}
.footer .text dl {
  margin-bottom: 30px;
}
.footer .text dl dt {
  width: 120px;
  line-height: 29px;
  text-align: center;
  font-size: 0.8125rem;
  border: 1px solid #282828;
  margin-bottom: 15px;
}
.footer .text dl dd {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .footer .text dl dd {
    font-size: 0.8125rem;
  }
}
.footer .text ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.footer .text .copyright {
  font-size: 0.75rem;
  font-family: "Manrope", sans-serif;
}
@media screen and (max-width: 960px) {
  .footer .map {
    order: 1;
    margin: 0 calc(var(--sideW) * -1);
    width: calc(100% + var(--sideW) * 2);
    max-width: calc(100% + var(--sideW) * 2);
  }
}

.main_visual {
  display: grid;
  grid-template-columns: 1fr 273px;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 960px) {
  .main_visual {
    grid-template-columns: 1fr;
  }
}
.main_visual__img {
  position: relative;
  height: 100%;
}
.main_visual__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(117, 123, 121, 0.3);
  z-index: 1;
  top: 0;
  left: 0;
}
.main_visual__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual__text {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  top: 50%;
  left: calc(var(--sideW) * 2);
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.01em;
  padding-left: 10px;
}
@media screen and (max-width: 960px) {
  .main_visual__text {
    left: 0;
    padding: 0 var(--sideW);
  }
}
.main_visual__text h2 {
  font-size: 1.75rem;
  font-weight: 300;
  margin-left: -10px;
}
@media screen and (max-width: 960px) {
  .main_visual__text h2 {
    font-size: 1.375rem;
  }
}
.main_visual__text p {
  font-size: 1rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .main_visual__text p {
    font-size: 0.875rem;
  }
}
.main_visual__text p:last-child {
  margin-bottom: 0;
}
.main_visual__text .mv_logo {
  font-size: 0.6875rem;
  text-align: center;
}
.main_visual__text .mv_logo::after {
  content: "";
  display: block;
  width: 172px;
  aspect-ratio: 172/31;
  -webkit-mask: url(../images/logo.svg) no-repeat center/contain;
          mask: url(../images/logo.svg) no-repeat center/contain;
  background-color: #fff;
  margin-top: 8px;
}
.main_visual__nav {
  display: grid;
  align-content: center;
  background-color: #757B79;
  padding: 0 min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .main_visual__nav {
    display: none;
  }
}
.main_visual__nav .links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  margin-bottom: 32px;
}
.main_visual__nav .links a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.main_visual__nav .links a:hover::before {
  animation: shine 0.5s ease;
}
.main_visual__nav .links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(117, 123, 121, 0.6), transparent);
  transform: skewX(-20deg);
}
.main_visual__nav .sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main_visual__nav .sns a {
  display: flex;
  justify-content: center;
  gap: 25px;
  height: 40px;
}
.main_visual__nav .sns a:hover img {
  animation: bounce 0.8s ease;
}
.main_visual__nav .sns img {
  display: block;
  margin: auto;
}

.top_lead {
  position: relative;
  padding-top: 150px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .top_lead {
    padding-top: 80px;
  }
}
.top_lead img {
  display: block;
}
.top_lead [class*=image] {
  position: absolute;
  z-index: -1;
}
.top_lead .image01 {
  position: absolute;
  top: -125px;
  width: 454px;
  left: calc(50% + 295px);
}
.top_lead .image01::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.top_lead .image02 {
  width: 428px;
  top: 114px;
  right: calc(50% + 322px);
}
.top_lead .image02::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.top_lead .image03 {
  width: 370px;
  top: 438px;
  left: calc(50% + 318px);
}
.top_lead h2 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 65px;
}
.top_lead h2 span {
  writing-mode: vertical-rl;
  font-size: 2rem;
  font-family: "Noto Serif", serif;
  line-height: 2.2;
}
@media screen and (max-width: 960px) {
  .top_lead h2 span {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.top_lead p {
  text-align: center;
  line-height: 2.2;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .top_lead p {
    text-align: left;
  }
}

.top_story__in {
  width: calc(1290px + var(--sideW) * 2);
  max-width: 100%;
  padding: 0 var(--sideW);
  margin: 0 auto;
}

.story_link {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px min(2.66vw, 40px);
}
.story_link img {
  display: block;
  margin: 0 auto 25px;
}
@media screen and (max-width: 960px) {
  .story_link img {
    max-width: 80%;
  }
}
.story_link p {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .story_link p {
    font-size: 1.125rem;
  }
}
.story_link > a {
  position: relative;
  padding-bottom: 25px;
}
.story_link > a::after {
  content: "";
  position: absolute;
  width: 14px;
  aspect-ratio: 14/25;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #282828;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.top_post {
  position: relative;
  padding: var(--space) 0;
  background: url(../images/top_bg_01.jpg) no-repeat center/cover;
}
.top_post::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.78;
}
.top_post .top_works,
.top_post .top_voice {
  position: relative;
  z-index: 1;
}

.top_works {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 25px;
  margin-bottom: var(--spaceMin);
  padding: 0 0 0 calc(var(--sideW) * 2);
}
@media screen and (max-width: 960px) {
  .top_works {
    padding: 0 0 0 var(--sideW);
  }
}
.top_works .ttl_cmn_01 {
  width: 100%;
  margin-bottom: 0;
}
.top_works__text {
  width: 365px;
}
@media screen and (max-width: 960px) {
  .top_works__text {
    width: 100%;
  }
}
.top_works__text p {
  color: #fff;
  margin-bottom: 40px;
}
.top_works__slide {
  width: calc(100% - 365px - 25px);
}
@media screen and (max-width: 960px) {
  .top_works__slide {
    width: 100%;
  }
}
.top_works .card_works {
  color: #fff;
}
.top_works.under .ttl_cmn_01 {
  margin-bottom: 38px;
}
.top_works.under .top_works__text p {
  color: #282828;
}
.top_works.under .card_works {
  color: #282828;
}
.top_works.under .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: linear-gradient(to bottom, transparent calc(50% - 1.5px), #F8F4EE calc(50% - 1.5px), #F8F4EE calc(50% + 1.5px), transparent calc(50% + 1.5px));
}

.top_voice ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px min(4vw, 60px);
  margin-bottom: 40px;
}
.top_voice ul a {
  display: block;
  background-color: #fff;
  padding: 30px 30px 22px;
  border-radius: 5px;
  line-height: 1.55;
}
@media screen and (max-width: 960px) {
  .top_voice ul a {
    padding: 20px 15px;
  }
}
.top_voice ul a:hover img {
  transform: scale(1.1);
}
.top_voice ul a figure {
  display: block;
  width: 100%;
  aspect-ratio: 298/201;
  overflow: hidden;
  margin-bottom: 15px;
}
.top_voice ul a figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.top_voice ul a .ttl {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 960px) {
  .top_voice ul a .ttl {
    font-size: 1rem;
  }
}
.top_voice ul a .name {
  font-size: 0.875rem;
}

.top_event {
  position: relative;
  padding: var(--space) 0;
  background: url(../images/top_bg_02.jpg) no-repeat center/cover;
}
.top_event::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.78;
}
.top_event .inner, .top_event .inner_sm, .top_event .inner_lg {
  position: relative;
  z-index: 1;
}
.top_event .card_event {
  color: #fff;
}

.staff_slide {
  padding: 0 40px;
  margin-bottom: 40px;
}

.top_column .inner, .top_column .inner_sm, .top_column .inner_lg {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 25px min(3.66vw, 55px);
}
@media screen and (max-width: 960px) {
  .top_column .inner, .top_column .inner_sm, .top_column .inner_lg {
    grid-template-columns: 1fr;
  }
}
.top_column__text h2 {
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .top_column__text h2 {
    margin-bottom: 25px;
  }
}
.top_column__text p {
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .top_column__text p {
    margin-bottom: 30px;
  }
}

.top_instagram {
  text-align: center;
}

.hero {
  margin-bottom: var(--spaceMin);
}
.hero__img {
  height: 310px;
}

.single_staff {
  clip-path: inset(0);
  margin-bottom: 0;
}

.split_staff {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 60px min(5.33vw, 80px);
}
@media screen and (max-width: 960px) {
  .split_staff {
    display: flex;
    flex-direction: column;
  }
}
.split_staff .image figure {
  display: block;
  position: sticky;
  top: var(--activeHeaderHeight);
  aspect-ratio: 487/652;
}
.split_staff .image figure::before, .split_staff .image figure::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 100vh;
  background-color: #757B79;
  top: calc(100% - 80px);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .split_staff .image figure::before, .split_staff .image figure::after {
    height: 20vh;
    top: auto;
    bottom: -5vh;
  }
}
.split_staff .image figure::after {
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  opacity: 0.7;
}
.split_staff .image figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20vw 20vw 0 0;
}
@media screen and (max-width: 960px) {
  .split_staff .image figure img {
    border-radius: 50vw 50vw 0 0;
  }
}
.split_staff .text {
  position: relative;
  padding: 130px 0 var(--space);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .split_staff .text {
    padding-top: 0;
  }
}
.split_staff .text .name_wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .split_staff .text .name_wrap {
    margin-bottom: 30px;
  }
}
.split_staff .text .name_wrap .position {
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .split_staff .text .name_wrap .position {
    font-size: 0.875rem;
  }
}
.split_staff .text .name_wrap .name {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .split_staff .text .name_wrap .name {
    font-size: 1.5rem;
  }
}
.split_staff .text .name_wrap .name:last-child {
  margin-bottom: 0;
}
.split_staff .text .name_wrap .name_en {
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  color: #757B79;
}
@media screen and (max-width: 960px) {
  .split_staff .text .name_wrap .name_en {
    font-size: 0.875rem;
  }
}
.split_staff .text .favorite_wrap {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: start;
  gap: 20px min(2vw, 30px);
  margin-bottom: 170px;
}
@media screen and (max-width: 960px) {
  .split_staff .text .favorite_wrap {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    margin-bottom: var(--spaceMin);
  }
}
.split_staff .text .favorite_wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.split_staff .text .favorite_wrap p {
  line-height: 1.86;
}
@media screen and (max-width: 960px) {
  .split_staff .text .favorite_wrap p {
    font-size: 0.875rem;
  }
}
.split_staff .text .favorite_wrap p::before {
  content: "";
  display: block;
  width: 198px;
  aspect-ratio: 198/66;
  background: url(../images/txt_favorite.svg) no-repeat center/contain;
  transform: rotate(-12deg);
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .split_staff .text .favorite_wrap p::before {
    width: 140px;
  }
}
.split_staff .text .profile_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin);
  margin-bottom: var(--spaceMin);
}
.split_staff .text .profile_wrap .profile_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.split_staff .text .profile_wrap .profile_item dt {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .split_staff .text .profile_wrap .profile_item dt {
    font-size: 1.5rem;
  }
}
.split_staff .text .profile_wrap .profile_item dt::before {
  content: "( " attr(data-en) " )";
  display: block;
  font-size: 1.125rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .split_staff .text .profile_wrap .profile_item dt::before {
    font-size: 1rem;
  }
}
.split_staff .text .profile_wrap .profile_item dd {
  font-size: 0.9375rem;
  line-height: 1.86;
}
@media screen and (max-width: 960px) {
  .split_staff .text .profile_wrap .profile_item dd {
    font-size: 0.875rem;
  }
}

.page-faq #container_wrap {
  padding-top: 220px;
}
@media screen and (max-width: 960px) {
  .page-faq #container_wrap {
    padding-top: 130px;
  }
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin);
}
.faq_list h2 {
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  margin-bottom: 55px;
  border-bottom: 1px solid #282828;
}
@media screen and (max-width: 960px) {
  .faq_list h2 {
    font-size: 1.25rem;
    margin-bottom: 35px;
  }
}

.list_faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.list_faq .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.list_faq dt, .list_faq dd {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .list_faq dt, .list_faq dd {
    gap: 10px;
  }
}
.list_faq dt::before, .list_faq dd::before {
  content: "Q.";
  display: block;
  width: 44px;
  aspect-ratio: 1/1;
  background-color: #5D5D5D;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  line-height: 44px;
  text-align: center;
  letter-spacing: 0.08em;
  border-radius: 50%;
  padding-left: 6px;
}
@media screen and (max-width: 960px) {
  .list_faq dt::before, .list_faq dd::before {
    width: 30px;
    line-height: 30px;
    font-size: 1.125rem;
  }
}
.list_faq dt {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .list_faq dt {
    font-size: 1.125rem;
  }
}
.list_faq dd {
  font-size: 0.9375rem;
  line-height: 1.86;
}
@media screen and (max-width: 960px) {
  .list_faq dd {
    font-size: 0.875rem;
  }
}
.list_faq dd::before {
  content: "A.";
}

.sec_flow {
  counter-reset: flow -1;
}

.flow_wrap {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 35px min(8.66vw, 130px);
  position: relative;
  padding: 120px 50px 70px;
  border-radius: 20px;
  counter-increment: flow;
  overflow: hidden;
  margin-bottom: var(--spaceMin);
}
@media screen and (max-width: 960px) {
  .flow_wrap {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 80px 15px 30px;
  }
}
.flow_wrap:last-child {
  margin-bottom: 0;
}
.flow_wrap::before {
  content: "STEP " counter(flow);
  position: absolute;
  width: 274px;
  line-height: 63px;
  background-color: #757B79;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  color: #fff;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .flow_wrap::before {
    width: 180px;
    line-height: 50px;
    font-size: 1.125rem;
  }
}
.flow_wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.06;
  z-index: -1;
}
.flow_wrap .sub_ttl {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.flow_wrap .ttl {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .flow_wrap .ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
.flow_wrap p:not([class]) {
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .flow_wrap p:not([class]) {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.flow_wrap dl {
  display: grid;
  grid-template-columns: 188px 1fr;
  grid-column: 1/-1;
  border-radius: 20px;
  overflow: hidden;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .flow_wrap dl {
    grid-template-columns: 60px 1fr;
    border-radius: 10px;
  }
}
.flow_wrap dl dt {
  padding: 7px 0;
  background-color: #757B79;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 960px) {
  .flow_wrap dl dt {
    font-size: 0.875rem;
  }
}
.flow_wrap dl dd {
  background-color: #fff;
  font-size: 0.9375rem;
  line-height: 1.86;
  padding: 6px 20px;
}
@media screen and (max-width: 960px) {
  .flow_wrap dl dd {
    font-size: 0.875rem;
    padding: 6px 10px;
    line-height: 1.75;
  }
}

.sec_concept_01 {
  margin-bottom: 0;
  padding-bottom: 190px;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 {
    padding-bottom: 0;
    margin-bottom: 100px;
  }
}
.sec_concept_01 .inner, .sec_concept_01 .inner_sm, .sec_concept_01 .inner_lg {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 30px min(7.33vw, 110px);
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner, .sec_concept_01 .inner_sm, .sec_concept_01 .inner_lg {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
.sec_concept_01 .inner .image01, .sec_concept_01 .inner_sm .image01, .sec_concept_01 .inner_lg .image01 {
  position: relative;
  height: 867px;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .image01, .sec_concept_01 .inner_sm .image01, .sec_concept_01 .inner_lg .image01 {
    height: auto;
    aspect-ratio: 325/218;
    order: 2;
  }
}
.sec_concept_01 .inner .image01 figure, .sec_concept_01 .inner_sm .image01 figure, .sec_concept_01 .inner_lg .image01 figure {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50vw - min(7.33vw, 110px));
  height: 100%;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .image01 figure, .sec_concept_01 .inner_sm .image01 figure, .sec_concept_01 .inner_lg .image01 figure {
    width: 100%;
    right: var(--sideW);
  }
}
.sec_concept_01 .inner .image01 figure img, .sec_concept_01 .inner_sm .image01 figure img, .sec_concept_01 .inner_lg .image01 figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_concept_01 .inner .text, .sec_concept_01 .inner_sm .text, .sec_concept_01 .inner_lg .text {
  padding-top: 55px;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .text, .sec_concept_01 .inner_sm .text, .sec_concept_01 .inner_lg .text {
    display: contents;
  }
}
.sec_concept_01 .inner .text__in, .sec_concept_01 .inner_sm .text__in, .sec_concept_01 .inner_lg .text__in {
  position: relative;
  width: 504px;
  max-width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .text__in, .sec_concept_01 .inner_sm .text__in, .sec_concept_01 .inner_lg .text__in {
    display: contents;
  }
}
.sec_concept_01 .inner .text h2, .sec_concept_01 .inner_sm .text h2, .sec_concept_01 .inner_lg .text h2 {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .text h2, .sec_concept_01 .inner_sm .text h2, .sec_concept_01 .inner_lg .text h2 {
    order: 1;
    margin-bottom: 20px;
  }
}
.sec_concept_01 .inner .text h2::after, .sec_concept_01 .inner_sm .text h2::after, .sec_concept_01 .inner_lg .text h2::after {
  content: "";
  position: absolute;
  width: 422px;
  aspect-ratio: 422/363;
  background: url(../images/concept_bg.svg) no-repeat center/contain;
  left: 45%;
  top: -100px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .text h2::after, .sec_concept_01 .inner_sm .text h2::after, .sec_concept_01 .inner_lg .text h2::after {
    width: 212px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec_concept_01 .inner .text h2 span, .sec_concept_01 .inner_sm .text h2 span, .sec_concept_01 .inner_lg .text h2 span {
  font-size: 1.75rem;
  font-weight: 300;
  font-family: "Noto Serif", serif;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .text h2 span, .sec_concept_01 .inner_sm .text h2 span, .sec_concept_01 .inner_lg .text h2 span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .text p, .sec_concept_01 .inner_sm .text p, .sec_concept_01 .inner_lg .text p {
    font-size: 0.875rem;
    padding: 0 var(--sideW);
    order: 3;
  }
}
.sec_concept_01 .inner .text figure, .sec_concept_01 .inner_sm .text figure, .sec_concept_01 .inner_lg .text figure {
  position: absolute;
  bottom: -190px;
  left: 59%;
  width: 454px;
  aspect-ratio: 454/301;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 .inner .text figure, .sec_concept_01 .inner_sm .text figure, .sec_concept_01 .inner_lg .text figure {
    position: relative;
    left: auto;
    bottom: auto;
    order: 4;
    width: 247px;
    margin-left: auto;
    margin-right: calc(var(--sideW) * -1);
  }
}
.sec_concept_01 .inner .text figure img, .sec_concept_01 .inner_sm .text figure img, .sec_concept_01 .inner_lg .text figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec_concept_01 .bg::after,
.sec_concept_02 .bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(112, 112, 112, 0.3);
}

.sec_concept_02 .inner, .sec_concept_02 .inner_sm, .sec_concept_02 .inner_lg {
  display: grid;
  grid-template-columns: 52.4% 1fr;
  gap: 0 20px;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .inner, .sec_concept_02 .inner_sm, .sec_concept_02 .inner_lg {
    grid-template-columns: 1fr;
  }
}
.sec_concept_02 .text {
  margin-bottom: 155px;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .text {
    margin-bottom: 10px;
  }
}
.sec_concept_02 .text__in {
  width: 504px;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .text__in {
    width: auto;
  }
}
.sec_concept_02 .text h2 {
  position: relative;
  font-size: 1.75rem;
  font-family: "Noto Serif", serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .text h2 {
    font-size: 1.5rem;
  }
}
.sec_concept_02 .text h2::after {
  content: "";
  position: absolute;
  width: 422px;
  aspect-ratio: 422/363;
  background: url(../images/concept_bg.svg) no-repeat center/contain;
  right: 55%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .text h2::after {
    width: 353px;
  }
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .text p {
    font-size: 0.875rem;
  }
}
.sec_concept_02 .image {
  position: relative;
  margin-top: 190px;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .image {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.sec_concept_02 .image figure {
  position: absolute;
  width: 300px;
  aspect-ratio: 1/1;
  right: 0;
  top: 0;
  opacity: 0.37;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .image figure {
    position: relative;
    right: auto;
    top: auto;
    margin-left: auto;
    width: 180px;
    transform: translateX(50%);
  }
}
.sec_concept_02 .image figure + figure {
  width: 236px;
  opacity: 1;
  top: 220px;
  right: 214px;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .image figure + figure {
    width: 141px;
    margin-top: -50px;
    transform: none;
    top: auto;
    right: auto;
  }
}
.sec_concept_02 .text02 {
  grid-column: 1/-1;
}
.sec_concept_02 .text02 p {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .text02 p {
    font-size: 0.875rem;
  }
}

.story_wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 35px min(2.66vw, 40px);
  position: relative;
  padding: 50px 55px 60px;
}
@media screen and (max-width: 960px) {
  .story_wrap {
    grid-template-columns: 1fr;
    padding: 30px 15px;
    gap: 25px;
  }
}
.story_wrap.story_02 .ttl p {
  color: #A19BA4;
}
.story_wrap.story_02 .ttl p::before {
  background-image: url(../images/story_txt_02.svg);
}
.story_wrap.story_02 .ttl h2 {
  color: #A19BA4;
}
.story_wrap.story_03 .ttl p {
  color: #8FA9AE;
}
.story_wrap.story_03 .ttl p::before {
  background-image: url(../images/story_txt_03.svg);
}
.story_wrap.story_03 .ttl h2 {
  color: #8FA9AE;
}
.story_wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: fixed url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.06;
  z-index: -1;
  border-radius: 20px;
}
.story_wrap .ttl {
  grid-column: 1/-1;
}
.story_wrap .ttl p {
  display: flex;
  align-items: center;
  gap: 0 18px;
  color: #9DA886;
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .story_wrap .ttl p {
    flex-direction: column;
    align-items: start;
    gap: 8px;
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
.story_wrap .ttl p::before {
  content: "";
  display: block;
  width: 176px;
  aspect-ratio: 176/92;
  background: url(../images/story_txt_01.svg) no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .story_wrap .ttl p::before {
    width: 120px;
  }
}
.story_wrap .ttl h2 {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid #9DA886;
  color: #9DA886;
  padding-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .story_wrap .ttl h2 {
    font-size: 1.5rem;
  }
}
.story_wrap .text p {
  font-size: 0.9375rem;
  line-height: 2.1;
}
@media screen and (max-width: 960px) {
  .story_wrap .text p {
    font-size: 0.875rem;
  }
}
.story_wrap .image img {
  position: sticky;
  top: var(--activeHeaderHeight);
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_ttl_wrap h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap h1 {
    font-size: 1.5rem;
  }
}
.works_ttl_wrap .cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #5D5D5D;
  font-size: 1.125rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap .cat {
    font-size: 0.875rem;
    margin-bottom: 30px;
  }
}
.works_ttl_wrap .cat span::after {
  content: "、";
}
.works_ttl_wrap .cat span:last-child::after {
  content: "";
}
.works_ttl_wrap .image {
  height: 636px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap .image {
    height: auto;
    aspect-ratio: 1360/636;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.works_ttl_wrap .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_lead {
  display: grid;
  grid-template-columns: 455px 1fr;
  gap: 25px min(3.33vw, 50px);
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .works_lead {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}
.works_lead:not(:has(.image)) {
  grid-template-columns: 960px;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .works_lead:not(:has(.image)) {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
.works_lead .text {
  padding-top: 20px;
}
@media screen and (max-width: 960px) {
  .works_lead .text {
    padding-top: 0;
  }
}
.works_lead .text .name {
  font-size: 1.25rem;
  color: #5D5D5D;
}
@media screen and (max-width: 960px) {
  .works_lead .text .name {
    font-size: 1rem;
  }
}
.works_lead .text h2 {
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .works_lead .text h2 {
    font-size: 1.5rem;
  }
}
.works_lead .text p:not([class]) {
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .works_lead .text p:not([class]) {
    font-size: 0.875rem;
  }
}

.works_ttl_wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap {
    margin-bottom: 60px;
  }
}
.works_ttl_wrap .ttl_works_01 {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.works_ttl_wrap .ttl_works_01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #5D5D5D;
  top: calc(50% - 0.5px);
  left: 0;
  z-index: -1;
}
.works_ttl_wrap .ttl_works_01 span {
  display: inline-block;
  min-width: 300px;
  max-width: 100%;
  line-height: 37px;
  background-color: #5D5D5D;
  text-align: center;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 20px;
  padding: 0 15px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap .ttl_works_01 span {
    min-width: 240px;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 2px 15px;
  }
}
.works_ttl_wrap h2 {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap h2 {
    font-size: 1.5rem;
    text-align: left;
  }
}
.works_ttl_wrap p:not([class]) {
  font-size: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap p:not([class]) {
    font-size: 0.875rem;
    text-align: left;
  }
}

.works_design {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .works_design {
    gap: 40px;
    margin-bottom: 60px;
  }
}
.works_design .item {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 25px min(2.66vw, 40px);
}
@media screen and (max-width: 960px) {
  .works_design .item {
    grid-template-columns: 1fr;
  }
}
.works_design .item .text {
  padding-top: 40px;
  width: 460px;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .works_design .item .text {
    width: auto;
    padding-top: 0;
  }
}
.works_design .item .text h3 {
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .works_design .item .text h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
.works_design .item .text h3::before {
  content: "設計の工夫";
  display: block;
  width: 120px;
  line-height: 31px;
  border: 1px solid #9DA886;
  color: #9DA886;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .works_design .item .text h3::before {
    width: 100px;
    font-size: 0.875rem;
    line-height: 26px;
  }
}
.works_design .item .text p {
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .works_design .item .text p {
    font-size: 0.875rem;
  }
}

.photo_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 45px min(3vw, 45px);
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .photo_gallery {
    gap: 30px;
    margin-bottom: 60px;
  }
}
.photo_gallery figure img {
  display: block;
  margin: 0 auto 10px;
}
.photo_gallery figure img:last-child {
  margin-bottom: 0;
}
.photo_gallery figure figcaption {
  color: #4A4E53;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .photo_gallery figure figcaption {
    font-size: 0.875rem;
  }
}

.sec_event_01 {
  background-color: #757B79;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .sec_event_01 {
    padding: 60px 0;
  }
}
.sec_event_01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.07;
}
.sec_event_01 .inner_sm {
  position: relative;
  z-index: 1;
}

.event_lead {
  position: relative;
  text-align: center;
  padding-bottom: 110px;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .event_lead {
    padding-bottom: 100px;
  }
}
.event_lead::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 70px;
  background-color: #fff;
  left: calc(50% - 0.5px);
  bottom: 0;
}
.event_lead h2 {
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .event_lead h2 {
    font-size: 1.5rem;
  }
}
.event_lead p {
  color: #fff;
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .event_lead p {
    font-size: 0.875rem;
    text-align: left;
  }
}

.event_reco p {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .event_reco p {
    font-size: 1.125rem;
  }
}
.event_reco ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  padding-bottom: 95px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .event_reco ul {
    padding-bottom: 80px;
    margin-bottom: 15px;
  }
}
.event_reco ul::after {
  content: "";
  position: absolute;
  margin-top: 35px;
  width: 80px;
  aspect-ratio: 1/1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  bottom: 20px;
  left: calc(50% - 40px);
}
@media screen and (max-width: 960px) {
  .event_reco ul::after {
    width: 60px;
    left: calc(50% - 30px);
  }
}
.event_reco ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
  position: relative;
  background-color: #fff;
  padding: 15px 28px;
  font-size: 1.125rem;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .event_reco ul li {
    padding: 10px 15px;
    font-size: 1rem;
  }
}
.event_reco ul li::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 30/21;
  background: url(../images/ico_check.svg) no-repeat center/contain;
  transform: translateY(2px);
}
@media screen and (max-width: 960px) {
  .event_reco ul li::before {
    width: 24px;
  }
}
.event_reco strong {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .event_reco strong {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.event_point ul {
  display: flex;
  flex-direction: column;
  gap: var(--space);
  counter-reset: num;
}
.event_point ul li {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-areas: "image text";
  gap: 25px min(3.66vw, 55px);
  counter-increment: num;
}
@media screen and (max-width: 960px) {
  .event_point ul li {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
  }
}
.event_point ul li:nth-child(even) {
  grid-template-columns: 1fr 50%;
  grid-template-areas: "text image";
}
@media screen and (max-width: 960px) {
  .event_point ul li:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
  }
}
.event_point ul li .image {
  grid-area: image;
  height: 400px;
}
@media screen and (max-width: 960px) {
  .event_point ul li .image {
    height: auto;
    aspect-ratio: 610/400;
  }
}
.event_point ul li .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event_point ul li .text {
  grid-area: text;
  padding-top: 65px;
}
@media screen and (max-width: 960px) {
  .event_point ul li .text {
    padding-top: 0;
  }
}
.event_point ul li h3 {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .event_point ul li h3 {
    font-size: 1.25rem;
  }
}
.event_point ul li h3::before {
  content: "#POINT " counter(num);
  display: block;
  font-size: 1.125rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #5D5D5D;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .event_point ul li h3::before {
    font-size: 1rem;
  }
}
.event_point ul li p {
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .event_point ul li p {
    font-size: 0.875rem;
  }
}

.event_outline dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .event_outline dl {
    grid-template-columns: auto 1fr;
    font-size: 0.875rem;
  }
}
.event_outline dl dt, .event_outline dl dd {
  border-bottom: 1px dashed #5D5D5D;
  padding: 10px 0;
}
.event_outline dl dt {
  text-align: center;
}
.event_outline dl dd {
  padding-left: 23px;
}
@media screen and (max-width: 960px) {
  .event_outline dl dd {
    padding-left: 15px;
  }
}
.event_outline .event_map {
  position: relative;
  height: 400px;
}
@media screen and (max-width: 960px) {
  .event_outline .event_map {
    height: 250px;
  }
}
.event_outline .event_map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sec_company_01 {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
  padding: 100px 0;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .sec_company_01 {
    padding: 80px 0;
  }
}
.sec_company_01#anc02 {
  margin-bottom: var(--space);
}
.sec_company_01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.58;
  z-index: 1;
}
.sec_company_01 .inner, .sec_company_01 .inner_sm, .sec_company_01 .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 25px min(6.66vw, 100px);
  align-items: center;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .sec_company_01 .inner, .sec_company_01 .inner_sm, .sec_company_01 .inner_lg {
    grid-template-columns: 1fr;
  }
}
.sec_company_01 h3 {
  font-size: 2rem;
  font-weight: 300;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .sec_company_01 h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.sec_company_01 h3::after {
  content: attr(data-en);
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .sec_company_01 h3::after {
    margin-top: 10px;
  }
}
.sec_company_01 h4 {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .sec_company_01 h4 {
    font-size: 1.25rem;
  }
}
.sec_company_01 p {
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .sec_company_01 p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.sec_company_01 p:last-child {
  margin-bottom: 0;
}

.concept_point {
  position: relative;
  background: url(../images/bg_concept_point.jpg) no-repeat center/cover;
  padding: 100px 0 160px;
}
@media screen and (max-width: 960px) {
  .concept_point {
    padding: 60px 0 100px;
  }
}
.concept_point::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  opacity: 0.62;
}
.concept_point .inner, .concept_point .inner_sm, .concept_point .inner_lg {
  position: relative;
  z-index: 1;
}
.concept_point .grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  padding-bottom: 200px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .concept_point .grid {
    padding-bottom: 150px;
    gap: 60px;
  }
}
.concept_point .grid::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 130px;
  background-color: #fff;
  left: calc(50% - 0.5px);
  bottom: 0;
}
@media screen and (max-width: 960px) {
  .concept_point .grid::after {
    height: 100px;
  }
}
.concept_point .grid .item {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 25px min(4.66vw, 70px);
}
@media screen and (max-width: 960px) {
  .concept_point .grid .item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.concept_point .grid .item:nth-child(2) .ttl_concept_01::before {
  background-image: url(../images/concept_point_txt_02.svg);
}
.concept_point .grid .item:nth-child(3) .ttl_concept_01::before {
  background-image: url(../images/concept_point_txt_03.svg);
}
@media screen and (max-width: 960px) {
  .concept_point .grid .item img {
    display: block;
    width: 260px;
    margin: 0 auto;
  }
}
.concept_point .grid .item .text {
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .concept_point .grid .item .text {
    padding-top: 0;
  }
}
.concept_point .grid .item .ttl_concept_01::before {
  content: "";
  display: block;
  width: 100%;
  height: 136px;
  background: url(../images/concept_point_txt_01.svg) no-repeat center left/contain;
  margin-bottom: 18px;
  opacity: 0.62;
}
@media screen and (max-width: 960px) {
  .concept_point .grid .item .ttl_concept_01::before {
    height: 90px;
  }
}
.concept_point .grid .item p {
  color: #fff;
}
@media screen and (max-width: 960px) {
  .concept_point .grid .item p {
    font-size: 0.875rem;
  }
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 432px;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .map {
    height: 250px;
    aspect-ratio: 1/1;
  }
}
.map:last-child {
  margin-bottom: 0;
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card_works {
  display: block;
}
.card_works:hover img {
  transform: scale(1.1);
}
.card_works figure {
  width: 100%;
  aspect-ratio: 368/490;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 20px;
}
.card_works figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.card_works .name {
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.card_works .ttl {
  font-size: 1.125rem;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 960px) {
  .card_works .ttl {
    font-size: 1rem;
  }
}

.card_event {
  display: block;
  line-height: 1.55;
}
.card_event:hover img {
  transform: scale(1.1);
}
.card_event figure {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .card_event figure {
    margin-bottom: 15px;
  }
}
.card_event figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.card_event .ttl {
  font-size: 1.125rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .card_event .ttl {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.card_event dl {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 0.875rem;
}

.card_voice {
  display: block;
}
.card_voice:hover img {
  transform: scale(1.1);
}
.card_voice figure {
  display: block;
  aspect-ratio: 365/220;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .card_voice figure {
    margin-bottom: 15px;
  }
}
.card_voice figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.card_voice .ttl {
  font-size: 1.125rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .card_voice .ttl {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.card_voice .name {
  font-size: 0.875rem;
  line-height: 1.5;
}

.card_staff {
  display: block;
  position: relative;
  line-height: 1.55;
  margin-bottom: 15px;
}
.card_staff:hover figure img {
  transform: scale(1.1);
}
.card_staff:last-child {
  margin-bottom: 0;
}
.card_staff figure {
  display: block;
  aspect-ratio: 287/384;
  border-radius: 12vw 12vw 0 0;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .card_staff figure {
    border-radius: 30vw 30vw 0 0;
  }
}
.card_staff figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.card_staff .position {
  font-size: 1.0625rem;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .card_staff .position {
    font-size: 0.9375rem;
    margin-bottom: 15px;
  }
}
.card_staff figure { position: relative; }
.card_staff .name {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 42%;
  margin: 0;
  z-index: 1;
}
.card_staff .name img {
  display: block;
  width: 100%;
  height: auto;
}

.card_column {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 15px min(2.33vw, 35px);
  line-height: 1.55;
}
@media screen and (max-width: 960px) {
  .card_column {
    grid-template-columns: 1fr;
  }
}
.card_column:hover figure img {
  transform: scale(1.1);
}
.card_column figure {
  aspect-ratio: 131/84;
  border-radius: 5px;
  overflow: hidden;
}
.card_column figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.card_column .date {
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.card_column .ttl {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .card_column .ttl {
    font-size: 1rem;
  }
}
.card_column .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  font-size: 0.875rem;
  color: #898989;
}
@media screen and (max-width: 960px) {
  .card_column .cat {
    font-size: 0.8125rem;
  }
}
.card_column .cat span {
  display: flex;
}
.card_column .cat span::before {
  content: "#";
  display: block;
}

.ttl_cmn_01 {
  display: block;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 55px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_01 {
    font-size: 0.875rem;
  }
}
.ttl_cmn_01::before {
  content: attr(data-en);
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 3.625rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_01::before {
    font-size: 2.8125rem;
  }
}
.ttl_cmn_01:last-child {
  margin-bottom: 0;
}
.ttl_cmn_01.left {
  text-align: left;
}
.ttl_cmn_01.wht {
  color: #fff;
}
.ttl_cmn_01.wht::before {
  color: #fff;
}
.ttl_cmn_01.sm::before {
  font-size: 2rem;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_01.sm::before {
    font-size: 1.75rem;
  }
}

.ttl_cmn_02 {
  display: block;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 45px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_02 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.ttl_cmn_02::before {
  content: "(　" attr(data-en) "　)";
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_02::before {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}

.ttl_concept_01 {
  display: block;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .ttl_concept_01 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.ttl_concept_01:last-child {
  margin-bottom: 0;
}
.ttl_concept_01.center {
  text-align: center;
}
.ttl_concept_01.wht {
  color: #fff;
}

.list_event {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px min(4vw, 60px);
  margin-bottom: 40px;
}

.list_column {
  display: flex;
  flex-direction: column;
  gap: 55px;
  margin-bottom: 60px;
}
.list_column:last-child {
  margin-bottom: 0;
}

.list_cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px min(1.33vw, 20px);
  margin-bottom: 60px;
}
.list_cat a {
  display: block;
  position: relative;
  width: 260px;
  max-width: 100%;
  padding: 15px;
  background-color: #F4F4F4;
  text-align: center;
}
.list_cat a::after {
  content: "";
  position: absolute;
  width: 7px;
  aspect-ratio: 7/13;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #282828;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.list_cat a.is_current {
  background-color: #707070;
  color: #fff;
}
.list_cat a.is_current::after {
  background-color: #fff;
}

.list_works {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px min(4vw, 60px);
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .list_works {
    gap: 30px;
  }
}
.list_works:last-child {
  margin-bottom: 0;
}
.list_works li {
  position: relative;
}
.list_works li .cat {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 19px;
  right: 19px;
  z-index: 1;
  border: 1px solid #fff;
  color: #fff;
  padding: 3px 15px 5px;
  font-size: 0.875rem;
  line-height: 1.25;
  border-radius: 30px;
  pointer-events: none;
}
.list_works li .cat span::before {
  content: "／";
}
.list_works li .cat span:first-child::before {
  content: "";
}

.list_voice {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px min(4vw, 60px);
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .list_voice {
    gap: 30px;
  }
}
.list_voice:last-child {
  margin-bottom: 0;
}

.list_anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--spaceMin);
}
.list_anchor li::after {
  content: "　｜　";
}
@media screen and (max-width: 960px) {
  .list_anchor li::after {
    content: " ｜ ";
  }
}
.list_anchor li:last-child::after {
  content: "";
}
.list_anchor li a:hover {
  opacity: 0.7;
}

.list_staff {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 60px min(6vw, 90px);
}
@media screen and (max-width: 960px) {
  .list_staff {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 960px) {
  .list_btns {
    gap: 15px;
  }
}
.list_btns--left {
  justify-content: left;
}
@media screen and (max-width: 960px) {
  .list_btns li {
    width: 100%;
  }
}

.table_parent {
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 20px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.table_cmn_01 {
  width: 100%;
  border-collapse: separate;
}
@media screen and (max-width: 960px) {
  .table_cmn_01 {
    display: block;
    width: 100%;
  }
  .table_cmn_01 thead, .table_cmn_01 tbody, .table_cmn_01 tr, .table_cmn_01 th, .table_cmn_01 td {
    display: block;
    width: 100%;
  }
}
.table_cmn_01 th, .table_cmn_01 td {
  border-bottom: 1px solid #282828;
  line-height: 1.8;
  padding: 15px 0;
  vertical-align: top;
}
.table_cmn_01 th {
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .table_cmn_01 th {
    padding: 10px 0 0;
    border-bottom: none;
  }
}
.table_cmn_01 td {
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .table_cmn_01 td {
    padding: 0 0 10px;
  }
}
.table_cmn_01 td a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.table_cmn_01 td a:hover {
  text-decoration: underline;
}
.table_cmn_01 td a::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../images/ico_blank.svg) no-repeat center/contain;
}

.table_cmn_02 {
  width: 100%;
  border-collapse: separate;
}
@media screen and (max-width: 960px) {
  .table_cmn_02 {
    display: block;
    width: 100%;
  }
  .table_cmn_02 thead, .table_cmn_02 tbody, .table_cmn_02 tr, .table_cmn_02 th, .table_cmn_02 td {
    display: block;
    width: 100%;
  }
}
.table_cmn_02 th, .table_cmn_02 td {
  border-bottom: 1px dashed #757B79;
  line-height: 1.8;
  padding: 15px 0;
  vertical-align: top;
}
.table_cmn_02 th {
  width: 180px;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (max-width: 960px) {
  .table_cmn_02 th {
    padding: 10px 0 0;
    border-bottom: none;
    text-align: left;
  }
}
.table_cmn_02 td {
  font-size: 1rem;
  padding-left: 23px;
}
@media screen and (max-width: 960px) {
  .table_cmn_02 td {
    padding: 0 0 10px;
  }
}

.btn_more {
  text-align: center;
}
.btn_more.left {
  text-align: left;
}
@media screen and (max-width: 960px) {
  .btn_more.sp_center {
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  .btn_more.sp_left {
    text-align: left;
  }
}
.btn_more.wht a {
  color: #fff;
}
.btn_more.wht a::before {
  background: linear-gradient(120deg, transparent, rgba(40, 40, 40, 0.6), transparent);
}
.btn_more.wht a::after {
  background: url(../images/ico_btn_more_wht.svg) no-repeat center/contain;
}
.btn_more a {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
  -webkit-mask-image: linear-gradient(315deg, transparent 30%, #000 50%);
          mask-image: linear-gradient(315deg, transparent 30%, #000 50%);
  -webkit-mask-size: 200% 200%;
          mask-size: 200% 200%;
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}
.btn_more a:hover {
  animation: btnMove 1s ease forwards;
}
.btn_more a::after {
  content: "";
  display: block;
  width: 62px;
  aspect-ratio: 1/1;
  background: url(../images/ico_btn_more.svg) no-repeat center/contain;
  margin-left: -14px;
  transform: translateY(2px);
}

.btn_cmn_01 {
  display: block;
  position: relative;
  width: 480px;
  max-width: 100%;
  line-height: 76px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .btn_cmn_01 {
    width: 300px;
    line-height: 60px;
    font-size: 1rem;
  }
}
.btn_cmn_01:last-child {
  margin-bottom: 0;
}
.btn_cmn_01::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 10/16;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.btn_cmn_01.center {
  margin-inline: auto;
}

.btn_cmn_02 {
  display: block;
  position: relative;
  width: 450px;
  max-width: 100%;
  line-height: 60px;
  background-color: #757B79;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .btn_cmn_02 {
    width: 300px;
    line-height: 60px;
    font-size: 1rem;
  }
}
.btn_cmn_02:last-child {
  margin-bottom: 0;
}
.btn_cmn_02::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 10/16;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.btn_cmn_02.center {
  margin-inline: auto;
}

.btn_cmn_03 {
  display: block;
  position: relative;
  width: 260px;
  max-width: 100%;
  line-height: 60px;
  background-color: #F4F4F4;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .btn_cmn_03 {
    width: 300px;
    line-height: 60px;
    font-size: 1rem;
  }
}
.btn_cmn_03:last-child {
  margin-bottom: 0;
}
.btn_cmn_03::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 10/16;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #282828;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.btn_cmn_03.center {
  margin-inline: auto;
}
.btn_cmn_03.gray {
  background-color: #757B79;
  color: #fff;
}
.btn_cmn_03.gray::after {
  background-color: #fff;
}

.btn_instagram {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.25rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.06em;
  -webkit-mask-image: linear-gradient(315deg, transparent 30%, #000 50%);
          mask-image: linear-gradient(315deg, transparent 30%, #000 50%);
  -webkit-mask-size: 200% 200%;
          mask-size: 200% 200%;
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}
.btn_instagram:hover {
  animation: btnMove 1s ease forwards;
}
.btn_instagram::before {
  content: "";
  display: block;
  width: 31px;
  aspect-ratio: 1/1;
  background: url(../images/ico_instagram.svg) no-repeat center/contain;
}

.btn_submit {
  display: block;
  position: relative;
  width: 450px;
  max-width: 100%;
  font-weight: 500;
  text-align: center;
  padding: 15px;
  color: #fff;
  background-color: #757B79;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #757B79;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .btn_submit {
    font-size: 0.9375em;
    width: 280px;
  }
}
.btn_submit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: right;
  transition: transform 0.3s;
  transform: scaleX(0);
  z-index: -1;
  left: 0;
  top: 0;
}
.btn_submit:hover {
  color: #282828;
}
.btn_submit:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn_submit:hover::after {
  background-color: #282828;
}
.btn_submit:disabled:hover {
  color: #fff;
}
.btn_submit:disabled:hover::before {
  transform: scaleX(0);
}
.btn_submit:disabled:hover::after {
  background-color: #fff;
}
.btn_submit::after {
  content: "";
  position: absolute;
  width: 14px;
  aspect-ratio: 14/8;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.column_ttl_wrap .inner, .column_ttl_wrap .inner_sm, .column_ttl_wrap .inner_lg,
.event_ttl_wrap .inner,
.event_ttl_wrap .inner_sm,
.event_ttl_wrap .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .column_ttl_wrap .inner, .column_ttl_wrap .inner_sm, .column_ttl_wrap .inner_lg,
  .event_ttl_wrap .inner,
  .event_ttl_wrap .inner_sm,
  .event_ttl_wrap .inner_lg {
    grid-template-columns: 1fr;
  }
}
.column_ttl_wrap img,
.event_ttl_wrap img {
  width: 100%;
  height: 436px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .column_ttl_wrap img,
  .event_ttl_wrap img {
    height: auto;
    aspect-ratio: 610/436;
  }
}
.column_ttl_wrap .time,
.event_ttl_wrap .time {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5D5D5D;
  margin-bottom: 10px;
}
.column_ttl_wrap .ttl,
.event_ttl_wrap .ttl {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .column_ttl_wrap .ttl,
  .event_ttl_wrap .ttl {
    font-size: 1.375rem;
  }
}
.column_ttl_wrap .cat,
.event_ttl_wrap .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px min(1.33vw, 20px);
  font-size: 0.875rem;
  color: #898989;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .column_ttl_wrap .cat,
  .event_ttl_wrap .cat {
    font-size: 0.875rem;
  }
}
.column_ttl_wrap .cat span::before,
.event_ttl_wrap .cat span::before {
  content: "#";
}

.event_ttl_wrap .inner, .event_ttl_wrap .inner_sm, .event_ttl_wrap .inner_lg {
  grid-template-columns: 1fr 50%;
  gap: 30px min(4.66vw, 70px);
  align-items: center;
}
@media screen and (max-width: 960px) {
  .event_ttl_wrap .inner, .event_ttl_wrap .inner_sm, .event_ttl_wrap .inner_lg {
    grid-template-columns: 1fr;
  }
}
.event_ttl_wrap img {
  height: auto;
  aspect-ratio: 1/1;
}
.event_ttl_wrap .ttl {
  margin-bottom: 30px;
}
.event_ttl_wrap dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.5;
  margin-bottom: 35px;
}
.event_ttl_wrap dl .item {
  display: grid;
  grid-template-columns: max-content 1fr;
}

.profile {
  display: grid;
  grid-template-columns: 117px 1fr;
  align-items: start;
  gap: 25px;
}
@media screen and (max-width: 960px) {
  .profile {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 15px;
  }
}
.profile__image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .profile__info {
    display: contents;
  }
}
.profile__name {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .profile__name {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.profile__text {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .profile__text {
    grid-column: 1/-1;
    font-size: 0.8125rem;
  }
}
.profile--border {
  border-top: 1px solid #C2C4C6;
  border-bottom: 1px solid #C2C4C6;
  padding: 35px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .profile--border {
    padding: 25px 0;
  }
}
.profile--works {
  width: 970px;
  max-width: 100%;
  margin: 0 auto 100px;
  grid-template-columns: 200px 1fr;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .profile--works {
    grid-template-columns: 100px 1fr;
    margin-bottom: 60px;
  }
}

.single-voice #container_wrap {
  padding-top: 0;
}

.single_voice {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
.single_voice .outline {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .single_voice .outline {
    width: 100%;
  }
}
.single_voice .outline .sticky {
  position: sticky;
  top: 0;
}
.single_voice .outline img {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .single_voice .outline img {
    height: auto;
  }
}
.single_voice .outline__text {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 0 var(--sideW);
  color: #fff;
}
@media screen and (max-width: 960px) {
  .single_voice .outline__text {
    position: static;
    margin-top: 20px;
    color: #282828;
  }
}
.single_voice .outline__text h1 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-bottom: 8px;
}
@media screen and (max-width: 960px) {
  .single_voice .outline__text h1 {
    font-weight: 600;
  }
}
.single_voice .outline__text p {
  font-size: 0.875rem;
}
.single_voice .post_text {
  width: 50%;
  padding-top: 200px;
  padding-left: min(5vw, 75px);
}
@media screen and (max-width: 960px) {
  .single_voice .post_text {
    width: 100%;
    padding: 0;
    padding: 0 var(--sideW);
  }
}
.single_voice .post_text__in {
  width: 605px;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .single_voice .post_text__in {
    width: auto;
  }
}

.post_content {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .post_content {
    margin-bottom: 50px;
  }
}
.post_content p:not([class]) {
  margin-top: 25px;
}
@media screen and (max-width: 960px) {
  .post_content p:not([class]) {
    font-size: 0.875em;
    margin-top: 25px;
  }
}
.post_content p:not([class]):first-child {
  margin-top: 0;
}
.post_content p:not([class]) + p:not([class]) {
  margin-top: 1em;
}
.post_content img {
  display: block;
  margin-top: 25px;
}
.post_content img:first-child {
  margin-top: 0;
}
.post_content .table_parent {
  margin-top: 40px;
}
.post_content .table_parent:first-child {
  margin-top: 0;
}
.post_content hr {
  border-width: 1px;
  border-color: #F5F5F5;
  margin-top: 55px;
}
.post_content table {
  width: 100%;
  border-collapse: separate;
  border: 1px solid #F7F7F7;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .post_content table {
    width: auto;
  }
}
.post_content table:first-child {
  margin-top: 0;
}
.post_content table tr:first-child {
  margin-top: 0;
}
.post_content table tr:first-child td {
  background-color: #5C5C5C;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .post_content table tr:first-child td {
    font-size: 1rem;
  }
}
.post_content table td {
  padding: 15px 25px;
  border: 1px solid #F7F7F7;
}
@media screen and (max-width: 960px) {
  .post_content table td {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}

.list_pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px 25px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F4F4F4;
  border-bottom: 1px solid #F4F4F4;
  padding: 22px 0;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .list_pagination {
    display: flex;
    flex-direction: column;
    font-size: 0.8125rem;
    padding: 20px 0;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  line-height: 1.5;
}
.list_pagination li.prev, .list_pagination li.next {
  display: flex;
}
.list_pagination li.prev a, .list_pagination li.next a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 12px 15px;
  border-radius: 50px;
  line-height: 1.5;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .list_pagination li.prev a, .list_pagination li.next a {
    padding: 8px 12px;
    gap: 10px;
  }
}
.list_pagination li.prev a::before, .list_pagination li.prev a::after, .list_pagination li.next a::before, .list_pagination li.next a::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .list_pagination li.prev a::before, .list_pagination li.prev a::after, .list_pagination li.next a::before, .list_pagination li.next a::after {
    width: 24px;
  }
}
.list_pagination li.prev a::before, .list_pagination li.next a::before {
  transform: rotate(-180deg);
}
@media screen and (max-width: 960px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a::after {
  content: none;
}
.list_pagination li.next {
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .list_pagination li.next {
    order: 2;
  }
}
.list_pagination li.next a {
  grid-template-columns: 1fr auto;
}
.list_pagination li.next a::before {
  content: none;
}
@media screen and (max-width: 960px) {
  .list_pagination li.archive {
    order: 3;
    margin-top: 20px;
    text-align: center;
  }
}
.list_pagination li.archive a {
  display: inline-block;
  border-bottom: 2px solid transparent;
}
@media screen and (max-width: 960px) {
  .list_pagination li.archive a {
    border-bottom-color: #757B79;
  }
}
.list_pagination li.archive a:hover {
  border-bottom-color: #757B79;
}

.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 19px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .wp-pagenavi {
    gap: 5px;
    justify-content: center;
  }
}
.wp-pagenavi:last-child {
  margin-bottom: 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-content: center;
  font-size: 1.125rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-align: center;
  width: 20px;
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1rem;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  border-bottom-color: #282828;
}
.wp-pagenavi a.last, .wp-pagenavi a.first, .wp-pagenavi a.extend,
.wp-pagenavi span.last,
.wp-pagenavi span.first,
.wp-pagenavi span.extend {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  color: #282828;
  font-size: 1.125em;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi a.last, .wp-pagenavi a.first, .wp-pagenavi a.extend,
  .wp-pagenavi span.last,
  .wp-pagenavi span.first,
  .wp-pagenavi span.extend {
    font-size: 0.875em;
  }
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------------------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .bg_parallax {
    background-size: auto 120%;
  }
}

.img_parallax {
  position: relative;
  overflow: hidden;
}
.img_parallax img {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

/* モーダル
---------------------------------------------------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}
@media screen and (max-width: 960px) {
  .modal {
    border-radius: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .modal_close_btn {
    width: 40px;
    right: 0;
    top: 0;
  }
}
.modal_content {
  display: none;
  position: relative;
  width: 1220px;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 75px var(--sideW);
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .modal_content {
    padding-block: 45px 20px;
    border-radius: 20px;
  }
}
.modal_prev, .modal_next {
  position: absolute;
  width: var(--sideW);
  height: 100%;
  left: 0;
  top: 0;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
.modal_prev::after, .modal_next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/30px auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}
.modal_next {
  left: auto;
  right: 0;
}
.modal_next::after {
  transform: rotate(0);
}

.modal_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(40, 40, 40, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

.modal_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .modal_item {
    grid-template-columns: 1fr;
  }
}
.modal_item strong {
  display: block;
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  border-left: 4px solid #757B79;
  padding: 10px 0 10px 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .modal_item strong {
    font-size: 1.375em;
    padding: 5px 0 5px 15px;
  }
}
.modal_item .catch {
  font-size: 2em;
  text-align: left;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .modal_item .catch {
    font-size: 1.25em;
  }
}
.modal_item p:not([class]) {
  font-size: 0.9375em;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .modal_item p:not([class]) {
    font-size: 0.875em;
    margin-bottom: 20px;
  }
}
.modal_item .images {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin);
  grid-column: 1/-1;
}
@media screen and (max-width: 960px) {
  .modal_item .images {
    gap: 20px;
  }
}

/* タブ切り替え
---------------------------------------------------------------------------------------------------------------------- */
.js_tab__panel-item {
  display: none;
}
.js_tab__panel-item.js_active {
  display: block;
}

.tab_style_sales__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 35px;
  margin-bottom: 60px;
}
.tab_style_sales__menu li {
  cursor: pointer;
}
.tab_style_sales__menu li::after {
  width: 15px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/ico_arrow_circle.svg);
          mask-image: url(../images/ico_arrow_circle.svg);
}
.tab_style_sales__menu li.js_active {
  color: #fff;
}
.tab_style_sales__menu li.js_active::before {
  transform: scaleX(1);
}
.tab_style_sales__menu li.js_active::after {
  background-color: #fff;
}

/* パンくず
---------------------------------------------------------------------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.8125em;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  #list_breadcrumb {
    font-size: 0.75em;
    overflow-x: scroll;
    text-align: right;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_sm, #list_breadcrumb .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
}
@media screen and (max-width: 960px) {
  #list_breadcrumb .inner, #list_breadcrumb .inner_sm, #list_breadcrumb .inner_lg {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    width: auto;
    max-width: none;
    margin: 0;
  }
}
#list_breadcrumb .inner a:hover, #list_breadcrumb .inner_sm a:hover, #list_breadcrumb .inner_lg a:hover {
  text-decoration: underline;
}

/* swiper-common
---------------------------------------------------------------------------------------------------------------------- */
.swiper-button {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/swiper_button.svg) no-repeat right/contain;
  margin: 0;
  top: calc(50% - 20px);
}
@media screen and (max-width: 960px) {
  .swiper-button {
    width: 35px;
    top: calc(50% - 15px);
  }
}
.swiper-button::after {
  content: none;
}
.swiper-button-prev {
  transform: rotate(180deg);
  left: -20px;
}
.swiper-button-next {
  right: -20px;
}
.swiper-button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 14px;
  position: static;
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .swiper-pagination {
    gap: 0 10px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 108px;
  height: 30px;
  background: transparent;
  margin: 0 !important;
  border-radius: 0;
  border: none;
  background: linear-gradient(to bottom, transparent calc(50% - 1.5px), #fff calc(50% - 1.5px), #fff calc(50% + 1.5px), transparent calc(50% + 1.5px));
  opacity: 1;
  transition: 0.5s;
}
@media screen and (max-width: 960px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
  }
}
.swiper-pagination .swiper-pagination-bullet:hover, .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(to bottom, transparent calc(50% - 1.5px), #5D5D5D calc(50% - 1.5px), #5D5D5D calc(50% + 1.5px), transparent calc(50% + 1.5px));
}

/* その他
---------------------------------------------------------------------------------------------------------------------- */
.catch {
  display: block;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif", serif;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .catch {
    font-size: 1.5em;
    margin-bottom: 25px;
  }
}
.catch:last-child {
  margin-bottom: 0;
}
.catch.left {
  text-align: left;
}
.catch.sm {
  font-size: 2em;
}
@media screen and (max-width: 960px) {
  .catch.sm {
    font-size: 1.375em;
  }
}
.catch.wht {
  color: #fff;
}

.lead {
  text-align: center;
  line-height: 1.8;
  font-size: 0.9375rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .lead {
    text-align: left;
    line-height: 1.75;
    font-size: 0.875rem;
    margin-bottom: 40px;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead.left {
  text-align: left;
}
@media screen and (max-width: 960px) {
  .lead.sp_center {
    text-align: center;
  }
}
.lead.wht {
  color: #fff;
}
.lead.lg {
  font-size: 1.125em;
}
@media screen and (max-width: 960px) {
  .lead.lg {
    font-size: 1em;
  }
}
.lead.lg small {
  display: block;
  font-size: 0.77em;
}

.shine {
  -webkit-mask-image: linear-gradient(135deg, transparent 30%, #000 50%);
          mask-image: linear-gradient(135deg, transparent 30%, #000 50%);
  -webkit-mask-size: 200% 200%;
          mask-size: 200% 200%;
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}
.shine.js_active {
  animation: maskMove 1s ease forwards;
}

@keyframes maskMove {
  to {
    -webkit-mask-position: 100% 100%;
            mask-position: 100% 100%;
  }
}
.hov_shine, .btn_cmn_01, .btn_cmn_02, .btn_cmn_03 {
  -webkit-mask-image: linear-gradient(315deg, transparent 30%, #000 50%);
          mask-image: linear-gradient(315deg, transparent 30%, #000 50%);
  -webkit-mask-size: 200% 200%;
          mask-size: 200% 200%;
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}
.hov_shine:hover, .btn_cmn_01:hover, .btn_cmn_02:hover, .btn_cmn_03:hover {
  animation: btnMove 1s ease forwards;
}

@keyframes btnMove {
  0% {
    -webkit-mask-position: 100% 100%;
            mask-position: 100% 100%;
  }
  100% {
    -webkit-mask-position: 0% 0%;
            mask-position: 0% 0%;
  }
}
/* フォームパーツ
---------------------------------------------------------------------------------------------------------------------- */
.dlist_form {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 60px;
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: baseline;
  padding: 35px 0;
  border-bottom: 1px dotted #757B79;
}
@media screen and (max-width: 960px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dlist_form dt {
  font-size: 1.125em;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .dlist_form dt {
    font-size: 1em;
  }
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 58px;
  line-height: 30px;
  text-align: center;
  background-color: #757B79;
  font-weight: 400;
  color: #fff;
  font-size: 0.875em;
  border-radius: 15px;
}
@media screen and (max-width: 960px) {
  .dlist_form dt.req::after {
    font-size: 0.75em;
    line-height: 24px;
  }
}
.dlist_form dd p {
  font-size: 0.9375em;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .dlist_form dd p {
    font-size: 0.875em;
    line-height: 1.5;
  }
}
.dlist_form dd p:last-child {
  margin-bottom: 0;
}
.dlist_form dd .wpcf7-form-control-wrap {
  display: block;
}
.dlist_form dd .wpcf7-form-control-wrap:has(.wpcf7-checkbox) .wpcf7-not-valid-tip {
  bottom: -1.8em;
  left: 0;
}
.dlist_form dd .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 5px;
  bottom: -1.4em;
  font-size: 0.75em;
  line-height: 1.5;
  pointer-events: none;
}
.dlist_form .wpcf7-form-control-wrap:has(.zip) {
  display: inline-block;
  margin-right: 10px;
}
.dlist_form .wpcf7-form-control-wrap:has(.zip)::before {
  content: "〒";
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 960px) {
  .dlist_form .wpcf7-form-control-wrap:has(.zip)::before {
    margin-right: 10px;
  }
}
.dlist_form .wpcf7-form-control-wrap:has(.zip) + span {
  display: inline-block;
}
.dlist_form .zip {
  width: 240px;
}
@media screen and (max-width: 960px) {
  .dlist_form .zip {
    width: 150px;
  }
}
.dlist_form .date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px min(2.66vw, 40px);
}
@media screen and (max-width: 960px) {
  .dlist_form .date {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 10px;
  }
}
.dlist_form .date > div {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
@media screen and (max-width: 960px) {
  .dlist_form .date > div {
    display: block;
  }
}
.dlist_form .date > div p {
  margin: 0;
}
@media screen and (max-width: 960px) {
  .dlist_form .date > div p {
    margin-bottom: 5px;
  }
}

.tel_wrap {
  text-align: center;
  margin-bottom: 60px;
}
.tel_wrap a {
  display: inline-flex;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  letter-spacing: 0.06em;
}
.tel_wrap a::before {
  content: "tel.";
}

.privacy_text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .privacy_text {
    font-size: 0.875em;
    text-align: left;
  }
}
.privacy_text a {
  text-decoration: underline;
}
.privacy_text a:hover {
  text-decoration: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=number],
select,
textarea {
  width: 100%;
  max-width: 100%;
  height: 57px;
  padding: 15px;
  border: 1px solid #707070;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: #282828;
  text-align: left;
}
@media screen and (max-width: 960px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  input[type=number],
  select,
  textarea {
    padding: 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=number]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ADADAD;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ADADAD;
}

@media screen and (max-width: 960px) {
  input[type=date] {
    padding-block: 0;
  }
}

textarea {
  height: 245px;
}
@media screen and (max-width: 960px) {
  textarea {
    height: 150px;
  }
}

select {
  width: auto;
  padding-right: 15px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
  width: 230px;
}
@media screen and (max-width: 960px) {
  select {
    width: 100%;
  }
}

#autozip {
  pointer-events: none;
}

.contact_privacy_wrap {
  background-color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .contact_privacy_wrap {
    margin-bottom: 25px;
  }
}
.contact_privacy_wrap strong {
  display: block;
  font-size: 1.125em;
  margin-bottom: 8px;
}
.contact_privacy_wrap p {
  font-size: 0.875em;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox.site_check,
.wpcf7-acceptance.site_check {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
@media screen and (max-width: 960px) {
  .wpcf7-checkbox.site_check,
  .wpcf7-acceptance.site_check {
    gap: 15px 25px;
  }
}
.wpcf7-checkbox.site_check .wpcf7-list-item,
.wpcf7-acceptance.site_check .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 5px;
}
@media screen and (max-width: 960px) {
  .wpcf7-checkbox .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 0;
    padding-bottom: 15px;
  }
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  font-size: 0.9375em;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #757B79;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 1.42em;
  aspect-ratio: 1/1;
  border: 1px solid #282828;
  left: 0;
  top: calc(50% - 0.71em);
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.2em;
  top: calc(50% - 0.3em);
  transform: rotate(-40deg);
  transition: 0.5s;
}
@media screen and (max-width: 960px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    left: 3px;
  }
}

.wpcf7-radio {
  display: block;
}
.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 5px;
}
.wpcf7-radio .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-radio .wpcf7-list-item label input {
  display: none;
}
.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  font-size: 1em;
  padding-left: 28px;
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before, .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 1.25em;
  aspect-ratio: 1/1;
  height: auto;
  border: 1px solid #282828;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  background-color: #282828;
  width: 0.75em;
  left: 0.25em;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
    left: 4px;
  }
}

[data-name=doui] {
  display: block;
  margin-bottom: 60px;
}
[data-name=doui] .wpcf7-acceptance {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 960px) {
  [data-name=doui] .wpcf7-acceptance {
    padding: 20px 15px;
    font-size: 0.9375em;
  }
}
[data-name=doui] .wpcf7-acceptance .wpcf7-list-item {
  padding: 0;
}
[data-name=doui] .wpcf7-acceptance a {
  text-decoration: underline;
  color: #757B79;
}
[data-name=doui] .wpcf7-acceptance a:hover {
  text-decoration: none;
}

.policy_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: var(--space);
}
.policy_wrap:last-child {
  margin-bottom: 0;
}
.policy_wrap__ttl {
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-bottom: 1px dashed #282828;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .policy_wrap__ttl {
    font-size: 1.25rem;
  }
}
.policy_wrap__txt {
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .policy_wrap__txt {
    font-size: 0.875rem;
  }
}
.policy_wrap__txt a {
  text-decoration: underline;
}
.policy_wrap__txt a:hover {
  text-decoration: none;
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha_text {
  font-size: 0.8125rem;
  margin-bottom: 30px;
}
.grecaptcha_text a {
  text-decoration: underline;
}

/* ユーティリティ
mx ＝ "x軸方向のmargin"
---------------------------------------------------------------------------------------------------------------------- */
.u-text-center {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .u-text-left-sp {
    text-align: left;
  }
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .u-mx-right-sp {
    margin-left: auto;
  }
}

.u-mx-left {
  margin-right: auto;
}

@media screen and (max-width: 960px) {
  .u-mx-left-sp {
    margin-right: auto;
  }
}

.u-disp-ib {
  display: inline-block;
}

.u-gap {
  display: block;
  margin-bottom: 0.9em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* photo_gallery 16:9 aspect ratio */
.photo_gallery figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}
.photo_gallery figure a {
  display: block;
  cursor: zoom-in;
}

/* photo_gallery: 画像とキャプションの余白を広げる */
.photo_gallery figure {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.photo_gallery figure img {
  margin: 0 auto;
}
.photo_gallery figure figcaption {
  margin-top: 0;
}

/* GLightbox: ポップアップ画像の上下に余白 */
.glightbox-container .gslide-image img {
  max-height: 85vh !important;
}
.glightbox-container .ginner-container {
  padding-top: 4vh;
  padding-bottom: 4vh;
}

/* 終了イベント：一覧サムネのグレー透過オーバーレイ＋「終了しました」 */
.card_event.is-finished figure {
  position: relative;
}
.card_event.is-finished .event_end {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(51, 51, 51, 0.55);
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.card_event.is-finished:hover img {
  transform: none;
}
@media screen and (max-width: 960px) {
  .card_event.is-finished .event_end {
    font-size: 1rem;
  }
}


/* ============================================================
   コメント反映 2026-06-10（websupport / gimmic-design）追記
   ============================================================ */

/* #775 ハンバーガーボタン（クローズ含む）を約3/4サイズに（SP） */
@media screen and (max-width: 960px) {
  .menu-trigger { transform: scale(.75); transform-origin: top right; }
}

/* #778 お問い合わせ TEL番号 SP 32px→28px */
@media screen and (max-width: 960px) {
  .contact_cmn ul .tel a { font-size: 1.75rem; }
}

/* #748/#815 大画面：ヒーロー画像が枠外へはみ出しコピーに重なるのを防ぐ */
@media screen and (min-width: 961px) {
  .main_visual__img { height: 100vh; overflow: hidden; }
}

/* #774 PCグローバルナビ：hoverで日本語をツールチップ表示
   （global_nav＝グレーメニューは対象外／SPはpc_nav非表示のまま） */
.header .pc_nav li { position: relative; }
.header .pc_nav li:hover::after,
.header .pc_nav li:focus-within::after {
  content: attr(data-ja);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #888;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 2px 0;
  pointer-events: none;
  z-index: 20;
  font-family: "Noto Sans JP", sans-serif;
}

/* #773 フッター MAPリンク（青字＋ピンアイコン） */
.footer_map { margin-top: 14px; }
.footer_map .map_link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #282828;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.9375rem;
}
.footer_map .map_link svg { display: block; }
.footer_map .map_link:hover { text-decoration: underline; }

/* #769 フッターSNSに追加した「私の家工房」ロゴの体裁を他SNSと揃える */
.footer .sns li a img[alt="私の家工房"] { display: block; }

/* #749 ストーリー2：右側の子どもが見切れないようトリミング位置を右寄せに */
#anc02 .story_wrap .image img { object-position: right center; }

/* #750 施工事例（works）：カテゴリーボタンを一旦非表示 */
.post-type-archive-works .list_cat,
.tax-works_cat .list_cat { display: none; }

/* #752 お客様の声 詳細：左の写真が大きすぎるので縮小（PC） */
@media screen and (min-width: 961px) {
  .single_voice .outline img { height: 70vh; }
}

/* #751 お客様の声 本文を読みやすく（文字サイズ・行間・見出し・間隔を統一） */
.single_voice .post_content p { font-size: 1.0625rem; line-height: 2.1; }
.single_voice .post_content p span[style*="font-size"] { font-size: inherit !important; }
.single_voice .post_content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.single_voice .post_content h3:first-child { margin-top: 0; }
@media screen and (max-width: 960px) {
  .single_voice .post_content p { font-size: 1rem; }
  .single_voice .post_content h3 { font-size: 1.125rem; margin-top: 36px; }
}

/* ------- コメント反映 2026-06-10 追補（#787 / #788） ------- */
/* #787 フッター「私の家工房」ロゴをPCで幅120pxに */
.footer .sns li a img[alt="私の家工房"] { width: 120px; height: auto; }
/* #788 電話番号下に移動したMAPリンクの余白 */
.footer .text > p .map_link { margin-top: 0; }

/* #807 フッター電話番号p 下マージン0（PC） */
@media screen and (min-width: 961px) {
  .footer .text > p:nth-of-type(1) { margin-bottom: 0; }
}

/* ------- コメント反映 2026-06-10 追補（#867 / #868 / #869） ------- */
/* #868 イベントカード タイトル：太さ600・下マージン20px（PC） */
@media screen and (min-width: 961px) {
  .card_event .ttl { font-weight: 600; margin-bottom: 20px; }
  /* #867 イベントカード 開催日(dd1)の下に15px余白（PC） */
  .card_event dl dd:nth-of-type(1) { margin-bottom: 15px; }
}
/* #869 見出しの英字（data-en・.sm）をもう少し大きく（全ページ共通） */
.ttl_cmn_01.sm::before { font-size: 2.5rem; }
@media screen and (max-width: 960px) {
  .ttl_cmn_01.sm::before { font-size: 2rem; }
}

/* #865 お客様の声 詳細：写真を小さく＆水平・垂直中央に（PC）／タイトルは画像下 */
@media screen and (min-width: 961px) {
  .single_voice .outline .sticky {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .single_voice .outline img {
    width: 78%;
    height: auto;
    max-height: 58vh;
    object-fit: cover;
  }
  .single_voice .outline__text {
    position: static;
    width: 78%;
    margin-top: 18px;
    padding: 0;
    color: #282828;
  }
}


/* #776/#777/#912/#913 SP：声・コラムを横スライド＋側面矢印（カード/サムネイル垂直中央・半被り） */
.sp_arrow { display: none; }
@media screen and (max-width: 960px) {
  .top_voice .sp_slider .sp_track,
  .top_column__post .sp_slider .sp_track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin: 0;
    scrollbar-width: none;
  }
  .top_voice .sp_slider .sp_track::-webkit-scrollbar,
  .top_column__post .sp_slider .sp_track::-webkit-scrollbar { display: none; }
  .top_voice .sp_slider .sp_track > li,
  .top_column__post .sp_slider .sp_track > li { flex: 0 0 78%; scroll-snap-align: center; }
  .sp_slider { position: relative; }
  .sp_arrow {
    display: grid;
    place-items: center;
    position: absolute;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #282828;
    background: rgba(255, 255, 255, 0.92);
    z-index: 5;
    cursor: pointer;
    padding: 0;
  }
  .sp_arrow.prev { left: -20px; }
  .sp_arrow.next { right: -20px; }
  .sp_arrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #282828;
    border-right: 1.5px solid #282828;
  }
  .sp_arrow.prev::before { transform: rotate(-135deg); margin-left: 4px; }
  .sp_arrow.next::before { transform: rotate(45deg); margin-right: 4px; }
}

/* #915 SP：お問い合わせセクション下に余白80px */
@media screen and (max-width: 960px) {
  .contact_cmn { margin-bottom: 80px; }
}

/* #937 SP：お客様の声「view more」ボタン上に40px余白 */
@media screen and (max-width: 960px) {
  .top_voice .btn_more { margin-top: 40px; }
}
/* #938 SP：イベントカード 開催日を2行（ラベル/値）＋下に10px */
@media screen and (max-width: 960px) {
  .top_event .card_event dl { grid-template-columns: 1fr; }
  .top_event .card_event dl dd:nth-of-type(1) { margin-bottom: 10px; }
}

/* #3567 プロフィール空欄時の（）非表示 */
.split_staff .text .profile_wrap .profile_item dt[data-en=""]::before,.split_staff .text .profile_wrap .profile_item dt:not([data-en])::before{content:none;}

/* #3534 担当複数表示 */
.profile_group{display:flex;flex-direction:column;gap:40px;margin:0 auto 100px;}.profile_group .profile--works{margin:0 auto;}.profile--works.profile--noimg{grid-template-columns:1fr;}@media screen and (max-width:960px){.profile_group{margin-bottom:60px;}}

/* #works リード動画（YouTube）レスポンシブ */
.works_lead .image--video{position:relative;width:100%;aspect-ratio:16/9;}
.works_lead .image--video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}

/* works 物件概要の表（担当者の下） */
.works_spec_wrap { max-width: 680px; margin: 0 auto 100px; }
.works_spec {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 0.9375rem;
}
.works_spec th,
.works_spec td {
  text-align: left;
  vertical-align: top;
  padding: 12px 0;
  border-bottom: 1px solid #E0DAD2;
  line-height: 1.7;
}
.works_spec th {
  width: 36%;
  padding-right: 16px;
  font-weight: 600;
  color: #5D5D5D;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .works_spec_wrap { margin-bottom: 60px; }
  .works_spec {
    margin-top: 20px;
    font-size: 0.875rem;
  }
  .works_spec th {
    width: 34%;
  }
}
