@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 {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

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

.c_red {
  color: #FF3425;
}

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

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

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

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

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  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 {
  --headerHeight: 100px;
  --activeHeaderHeight: 80px;
  --minWidth: 1000px;
  --sideW: min(6.66vw, 100px);
}
@media screen and (max-width: 767px) {
  :root {
    --headerHeight: 80px;
    --activeHeaderHeight: 60px;
    --minWidth: 1px;
    --sideW: min(9.3vw, 35px);
  }
}

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

body {
  font: 400 16px/2 "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #1A1A1A;
  text-align: left;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.8;
  }
}

.win body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

a {
  text-decoration: none;
  color: #1A1A1A;
  transition: 0.5s;
}
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: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.5s;
}
.opacity:hover {
  opacity: 0.6;
}

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

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

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

#container_wrap {
  position: relative;
  overflow: hidden;
  min-width: var(--minWidth);
  padding-top: var(--headerHeight);
}
@media screen and (max-width: 767px) {
  #container_wrap {
    padding-top: calc(var(--headerHeight) * 1.5);
  }
}

.home #container_wrap {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .home #container_wrap {
    padding-top: 0;
  }
}
.home .header {
  height: 90px;
  padding-block: 0;
}
@media screen and (max-width: 767px) {
  .home .header {
    height: var(--headerHeight);
  }
}

.inner, .inner_sm, .inner_min, .inner_lg {
  max-width: calc(1300px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_lg {
  max-width: calc(1400px + var(--sideW) * 2);
}
.inner_min {
  max-width: calc(1100px + var(--sideW) * 2);
}
.inner_sm {
  max-width: calc(900px + var(--sideW) * 2);
}
.inner--topics {
  max-width: calc(1000px + var(--sideW) * 2);
}

.section_wrap, .section_wrap_min, .section_wrap_sp_min {
  margin: 0 0 8em;
}
@media screen and (max-width: 767px) {
  .section_wrap, .section_wrap_min, .section_wrap_sp_min {
    margin: 0 0 6em;
  }
}
@media screen and (max-width: 767px) {
  .section_wrap_sp_min {
    margin: 0 0 6em;
  }
}
.section_wrap_min {
  margin: 0 0 6.66em;
}
@media screen and (max-width: 767px) {
  .section_wrap_min {
    margin-bottom: 4em;
  }
}

@media screen and (max-width: 767px) {
  .section_journal .inner, .section_journal .inner_lg, .section_journal .inner_min, .section_journal .inner_sm {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .section_journal .list_category {
    order: 4;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .section_journal .ttl_border {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .section_journal .list_journal,
  .section_journal .list_voice-media {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .section_journal .wp-pagenavi {
    order: 3;
    margin-bottom: 60px;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.midashi {
  margin-bottom: 10px;
}
.midashi span {
  font-weight: 700;
  font-size: 1.125em;
}

.midashi::before {
  content: "●"; /* 表示する文字 */
  color: #1A1A1A; /* 色 */
  margin-right: 0.5em; /* 見出しとの余白 */
  font-size: 1em; /* サイズ調整 */
}

.waku {
  border-top: 1px dotted #b4ada9;
  border-bottom: 1px dotted #b4ada9;
  padding: 25px 0;
  margin-top: 0px;
}
.waku p {
  margin-bottom: 10px;
}

.komidashi {
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 0px;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: var(--minWidth);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
  padding: 0 min(4.46vw, 50px) 0;
}
.header.active .header_ttl a {
  background-image: url(../images/logo_apricot_white.svg);
}
.header.active .header_nav .pc_nav {
  display: none;
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
}
.header.js_scroll .header_nav .pc_nav .mega_menu {
  top: var(--activeHeaderHeight);
}
.header_ttl {
  position: relative;
}
.header_ttl a {
  display: block;
  width: clamp(150px, 15.7vw, 220px);
  aspect-ratio: 221/40;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo_apricot.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .header_ttl a {
    width: min(50vw, 200px);
  }
}
.header_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
  height: 100%;
}
.header_nav {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.header_nav .pc_nav {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  gap: 0 min(2vw, 34px);
}
@media screen and (max-width: 1024px) {
  .header_nav .pc_nav {
    display: none;
  }
}
.header_nav .pc_nav > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.header_nav .pc_nav > li:has(.mega_menu) > a {
  padding-right: 16px;
}
.header_nav .pc_nav > li:has(.mega_menu) > a::before {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1/1;
  border-left: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  right: 0;
  top: calc(50% - 6px);
  transform: rotate(-45deg);
}
.header_nav .pc_nav > li:has(.mega_menu) > a.js-open::before {
  transform: rotate(135deg);
  top: calc(50% - 2px);
}
.header_nav .pc_nav > li:has(.mega_menu) > a.js-open::after {
  transform: scale(1);
}
.header_nav .pc_nav > li > a {
  display: block;
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  letter-spacing: 0.06em;
}
.header_nav .pc_nav > li > a:hover::after {
  transform: scale(1);
}
.header_nav .pc_nav > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1A1A1A;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transition: 0.5s;
}
.header_nav .pc_nav .mega_menu {
  position: absolute;
  top: var(--headerHeight);
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  z-index: 10;
  background-color: #464646;
  color: #FFF;
}
.header_nav .pc_nav .mega_menu__inner {
  display: flex;
  flex-wrap: wrap;
  width: calc(1300px + var(--sideW) * 2);
  max-width: 100%;
  padding: 65px var(--sideW);
  margin: 0 auto;
}
.header_nav .pc_nav .mega_menu__title {
  position: relative;
  width: 270px;
  padding-top: 65px;
}
.header_nav .pc_nav .mega_menu__title::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 109px;
  background-color: #FFF;
  left: 35px;
  bottom: calc(100% - 44px);
}
.header_nav .pc_nav .mega_menu__title a {
  display: block;
  position: relative;
  font-weight: 500;
  color: #FFF;
}
.header_nav .pc_nav .mega_menu__title a:hover::after {
  background-position: center, center left calc(50% + 5px);
}
.header_nav .pc_nav .mega_menu__title a::before {
  content: attr(data-en);
  display: block;
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #FFF;
}
.header_nav .pc_nav .mega_menu__title a::after {
  content: "";
  position: absolute;
  width: 68px;
  aspect-ratio: 1/1;
  color: #FFF;
  top: calc(100% + 35px);
  left: 0;
  background: url(../images/ico_btn_white.svg) no-repeat center/contain, url(../images/ico_arrow_right_white.svg) no-repeat center/22px auto;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .header_nav .pc_nav .mega_menu__title a::after {
    width: 60px;
    background-size: contain, 18px;
  }
}
.header_nav .pc_nav .mega_menu__grid {
  width: calc(100% - 270px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px min(4vw, 56px);
}
.header_nav .pc_nav .mega_menu__grid .item.col2 {
  grid-column: 2/-1;
}
.header_nav .pc_nav .mega_menu__grid .item.col2 ul {
  -moz-columns: 2;
       columns: 2;
}
.header_nav .pc_nav .mega_menu__grid .item.col2 ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.header_nav .pc_nav .mega_menu__grid img {
  display: block;
  width: 100%;
  height: 198px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 23px;
}
.header_nav .pc_nav .mega_menu__grid strong {
  display: block;
  font-size: 1.25em;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
}
.header_nav .pc_nav .mega_menu__grid p {
  margin-bottom: 15px;
}
.header_nav .pc_nav .mega_menu__grid a {
  font-size: 0.875em;
  color: #FFF;
}
.header_nav .pc_nav .mega_menu__grid ul li {
  display: flex;
  gap: 0.5em;
}
.header_nav .pc_nav .mega_menu__grid ul li::before {
  content: "-";
  display: block;
}
.header_nav .pc_nav .mega_menu__grid p {
  font-size: 0.9375em;
}
.header_nav .pc_nav .mega_menu__grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.menu-trigger {
  display: block;
  position: relative;
  width: 60px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    width: 50px;
  }
}
.menu-trigger span {
  position: absolute;
  width: 100%;
  height: 1px;
  transition: 0.5s;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #1A1A1A;
  border-radius: 2px;
  top: -6px;
  right: 0;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: 6px;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  width: 110%;
  transform: rotate(165deg);
  background-color: #fff;
  top: 0;
}
.menu-trigger.active span::after {
  transform: rotate(-165deg);
}

@keyframes openGnav {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes closeGnav {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
}
#gnavi {
  display: none;
  position: fixed;
  padding: 160px 0 120px;
  width: 100%;
  max-width: 100%;
  min-width: var(--minWidth);
  height: 100vh;
  overflow: scroll;
  top: 0;
  left: 0;
  background-color: #464646;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  #gnavi {
    padding: var(--headerHeight) 0;
  }
}
#gnavi.close {
  animation: closeGnav 0.5s ease 0s forwards;
  display: block;
}
#gnavi.active {
  animation: openGnav 0.5s ease 0s forwards;
  display: block;
}
@media screen and (max-width: 767px) {
  #gnavi .inner, #gnavi .inner_lg, #gnavi .inner_min, #gnavi .inner_sm {
    padding-inline: 30px;
    overflow: hidden;
  }
}
#gnavi .service_nav {
  display: grid;
  grid-template-columns: 240px 1fr;
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px dashed #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
#gnavi .service_nav__title {
  display: block;
  position: relative;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav__title {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
#gnavi .service_nav__title:hover::after {
  background-position: center, center left calc(50% + 5px);
}
#gnavi .service_nav__title::before {
  content: attr(data-en);
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
}
#gnavi .service_nav__title::after {
  content: "";
  display: block;
  width: 68px;
  aspect-ratio: 1/1;
  top: calc(100% + 35px);
  left: 0;
  background: url(../images/ico_btn_white.svg) no-repeat center/contain, url(../images/ico_arrow_right_white.svg) no-repeat center/22px auto;
  transition: 0.5s;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav__title::after {
    width: 60px;
    background-size: contain, 18px;
    margin-top: 0;
  }
}
#gnavi .service_nav .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px min(2.66vw, 40px);
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav .grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
#gnavi .service_nav .grid img {
  display: block;
  aspect-ratio: 308/198;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav .grid img {
    margin-bottom: 25px;
  }
}
#gnavi .service_nav .grid strong {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav .grid strong {
    font-size: 1.375em;
    margin-bottom: 5px;
  }
}
#gnavi .service_nav .grid .item > ul {
  color: #fff;
}
#gnavi .service_nav .grid .item > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
}
#gnavi .service_nav .grid .item > ul > li::before {
  content: "-";
  display: block;
}
#gnavi .service_nav .grid .item > ul > li.has_child.open > a::before {
  border: 0 none;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: calc(50% - 2px);
}
#gnavi .service_nav .grid .item > ul > li.has_child > a {
  position: relative;
  padding-right: 16px;
  margin-bottom: 10px;
}
#gnavi .service_nav .grid .item > ul > li.has_child > a::before {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1/1;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  right: 0;
  top: calc(50% - 6px);
  transform: rotate(-45deg);
}
#gnavi .service_nav .grid .item > ul > li > a {
  display: inline-block;
  position: relative;
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 2.3;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav .grid .item > ul > li > a {
    line-height: 2.4;
  }
}
#gnavi .service_nav .grid .item > ul > li > a:hover::after {
  transform: scale(1);
  transform-origin: bottom left;
}
#gnavi .service_nav .grid .item > ul > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: bottom right;
  transition: transform 0.5s;
}
#gnavi .service_nav .grid .item > ul > li ul {
  display: none;
  padding: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav .grid .item > ul > li ul {
    display: none;
  }
}
#gnavi .service_nav .grid .item > ul > li ul li {
  margin-bottom: 10px;
}
#gnavi .service_nav .grid .item > ul > li ul li:last-child {
  margin-bottom: 0;
}
#gnavi .service_nav .grid .item > ul > li ul li a {
  display: flex;
  align-items: baseline;
  position: relative;
  color: #fff;
  font-size: clamp(12px, 0.933vw, 13px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #gnavi .service_nav .grid .item > ul > li ul li a {
    font-size: 0.875em;
  }
}
#gnavi .service_nav .grid .item > ul > li ul li a:hover::before {
  transform: rotate(90deg);
}
#gnavi .service_nav .grid .item > ul > li ul li a::before {
  content: "+";
  display: block;
  color: #fff;
  margin-right: 0.5em;
  transition: 0.5s;
}
#gnavi .branding_menu {
  border-bottom: 1px dashed #fff;
  padding-bottom: 70px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu {
    padding-block: 40px;
    margin-bottom: 40px;
  }
}
#gnavi .branding_menu .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 0;
  margin-bottom: 70px;
}
#gnavi .branding_menu .grid .left {
  width: 48%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu .grid .left {
    width: 100%;
  }
}
#gnavi .branding_menu .grid .left h2 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu .grid .left h2 {
    font-size: 1.875em;
  }
}
#gnavi .branding_menu .grid .left h2::before {
  content: attr(data-en);
  display: block;
  font-family: "Outfit", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu .grid .left h2::before {
    font-size: 0.75em;
  }
}
#gnavi .branding_menu .grid .left p {
  font-size: 0.9375em;
  font-weight: 500;
  margin-bottom: 25px;
}
#gnavi .branding_menu .grid .right {
  width: 52%;
  position: relative;
  aspect-ratio: 670/410;
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu .grid .right {
    width: 100%;
  }
}
#gnavi .branding_menu .grid .right::after {
  content: "";
  position: absolute;
  width: 360px;
  aspect-ratio: 360/53;
  background: url(../images/txt_gnav_01.svg) no-repeat center/contain;
  right: -50px;
  bottom: -20px;
  transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu .grid .right::after {
    width: 300px;
    right: -30px;
  }
}
#gnavi .branding_menu .grid .right img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#gnavi .branding_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 35px;
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu ul {
    gap: 25px 20px;
  }
}
#gnavi .branding_menu ul li {
  width: calc(25% - 26.25px);
}
@media screen and (max-width: 1024px) {
  #gnavi .branding_menu ul li {
    width: calc(33.3333% - 26.25px);
  }
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu ul li {
    width: 100%;
  }
}
#gnavi .branding_menu ul li a {
  display: block;
  position: relative;
  padding: 35px 10px 28px;
  height: 100%;
  text-align: center;
  letter-spacing: 0.06em;
  background-color: #f7f7f7;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #gnavi .branding_menu ul li a {
    padding: 20px 10px;
  }
}
#gnavi .branding_menu ul li a:hover {
  background-color: #1A1A1A;
  color: #fff;
}
#gnavi .branding_menu ul li a:hover::before {
  animation: shine 0.5s ease 0.2s;
}
#gnavi .branding_menu ul li a:hover::after {
  background-image: url(../images/ico_arrow_right_white.svg);
}
#gnavi .branding_menu ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
#gnavi .branding_menu ul li a::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 18/14;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  margin: 0 auto;
}
#gnavi .branding_menu ul li a span {
  display: block;
  font-size: 0.93em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  margin-bottom: 10px;
}
#gnavi .branding_menu ul li a h3 {
  font-size: 1.33em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
#gnavi .branding_menu ul li a p {
  font-size: 0.86em;
  line-height: 1.6;
  margin-bottom: 15px;
}
#gnavi .global_nav {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 30px 68px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-bottom: 1px dashed #fff;
    padding-bottom: 40px;
  }
}
#gnavi .global_nav .left ul {
  display: flex;
  flex-direction: column;
  gap: 15px 23px;
  padding-block: 30px;
  border-bottom: 1px dashed #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .left ul {
    padding: 0;
  }
}
#gnavi .global_nav .left ul:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .left ul:first-child {
    grid-row: 1/3;
    border-bottom: 0 none;
  }
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .left ul:nth-child(2) {
    padding-bottom: 0;
  }
}
#gnavi .global_nav .left ul:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#gnavi .global_nav .left ul a {
  display: inline-block;
  position: relative;
  padding-right: 42px;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .left ul a {
    font-size: 1.125em;
    padding-right: 30px;
  }
}
#gnavi .global_nav .left ul a:hover::after {
  transform: translateX(-5px);
}
#gnavi .global_nav .left ul a::after {
  content: "";
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right_circle.svg) no-repeat center/contain;
  right: 0;
  top: calc(50% - 10px);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .left ul a::after {
    width: 16px;
    top: calc(50% - 8px);
  }
}
#gnavi .global_nav .right h3 {
  width: 163px;
  aspect-ratio: 163/53;
  text-indent: 110%;
  overflow: hidden;
  white-space: nowrap;
  background: url(../images/txt_gnav_02.svg) no-repeat center/contain;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .right h3 {
    margin-bottom: 20px;
  }
}
#gnavi .global_nav .right ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .right ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#gnavi .global_nav .right ul a {
  display: block;
  line-height: 56px;
  text-align: center;
  font-size: 0.9375em;
  font-weight: 500;
  border-radius: 30px;
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .right ul a {
    line-height: 40px;
    font-size: 0.875em;
  }
}
#gnavi .global_nav .right ul a:hover {
  background-color: #1A1A1A;
}
#gnavi .global_nav .village {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 0;
}
#gnavi .global_nav .village .image {
  width: 51%;
  position: relative;
  aspect-ratio: 395/262;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .village .image {
    width: 100%;
  }
}
#gnavi .global_nav .village .image::after {
  content: "";
  position: absolute;
  width: 69%;
  aspect-ratio: 273/53;
  background: url(../images/txt_gnav_03.svg) no-repeat center/contain;
  right: -23px;
  bottom: -15px;
  transform: rotate(-10deg);
}
#gnavi .global_nav .village .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gnavi .global_nav .village .detail {
  width: 49%;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .village .detail {
    width: 100%;
    padding-left: 0;
  }
}
#gnavi .global_nav .village .detail img {
  display: block;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .village .detail img {
    margin-bottom: 20px;
  }
}
#gnavi .global_nav .village .detail h4 {
  font-size: 1.75em;
  color: #fff;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav .village .detail h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
}
#gnavi .global_nav .village .detail p {
  font-size: 1em;
  color: #fff;
  margin-bottom: 20px;
}
#gnavi .global_nav .village .detail a {
  margin-bottom: 15px;
}
#gnavi .global_contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: #fff;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_contact {
    gap: 20px;
  }
}
#gnavi .global_contact:last-of-type {
  margin-bottom: 80px;
}
#gnavi .global_contact .tel a {
  display: block;
  font-size: 2.66em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #gnavi .global_contact .tel a {
    font-size: min(7.4vw, 40px);
    margin-bottom: 10px;
    white-space: nowrap;
  }
}
#gnavi .global_contact .tel p {
  text-align: center;
  font-size: 0.8em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  #gnavi .global_contact .tel p {
    font-size: 0.75em;
  }
}
#gnavi .global_contact .tel p span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #gnavi .global_contact .tel p span {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  #gnavi .global_contact .mail {
    width: 100%;
  }
}
#gnavi .global_contact .mail a {
  display: block;
  background: url(../images/ico_arrow_right.svg) no-repeat center right 17px;
  background-color: #fff;
  width: 400px;
  max-width: 100%;
  color: #1A1A1A;
  text-align: center;
  line-height: 75px;
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  #gnavi .global_contact .mail a {
    margin: 0 auto;
  }
}
#gnavi .global_contact .mail a:hover {
  opacity: 0.7;
}
#gnavi .global_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .global_sns {
    gap: 25px;
  }
}
#gnavi .global_sns li a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  font-size: 0.8em;
}
#gnavi .global_sns li a img {
  display: block;
  margin-right: 7px;
}
#gnavi .global_sns li a:hover {
  text-decoration: underline;
}
#gnavi .global_subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#gnavi .global_subnav li {
  display: flex;
  position: relative;
}
#gnavi .global_subnav li:last-child::after {
  content: none;
}
#gnavi .global_subnav li::after {
  content: "｜";
  display: block;
  color: #fff;
  margin: 0 0.5em;
}
#gnavi .global_subnav li a {
  display: block;
  font-size: 0.93em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .global_subnav li a {
    font-size: min(2.8vw, 14px);
  }
}
#gnavi .global_subnav li a:hover {
  text-decoration: underline;
}
#gnavi .global_subnav li a.ico_blank {
  position: relative;
  padding-right: 16px;
}
#gnavi .global_subnav li a.ico_blank::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../images/ico_blank.svg) no-repeat center/contain;
  right: 0;
  top: calc(50% - 5px);
}

.common_sns {
  position: fixed;
  left: calc(var(--sideW) / 2);
  top: 50vh;
  z-index: 2;
  font-size: 0.8em;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .common_sns {
    display: none;
  }
}
.common_sns ul {
  display: flex;
  width: 220px;
  justify-content: space-between;
  position: absolute;
  transform-origin: left top;
  transform: translate(-50%, -50%);
  rotate: -90deg;
  top: 0;
  left: 0;
}
.common_sns li {
  flex-shrink: 0;
}
.common_sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}
.common_sns li a img {
  display: block;
  margin-right: 7px;
}
.common_sns li a:hover {
  text-decoration: underline;
}

.common_copyright {
  position: fixed;
  font-size: 0.8em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  top: 50vh;
  right: calc(var(--sideW) / 2 - 0.5em);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  z-index: 900;
}
@media screen and (max-width: 767px) {
  .common_copyright {
    display: none;
    right: calc(var(--sideW) / 2 - 1em);
  }
}

.footer {
  padding: 0 0 50px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 80px;
  }
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-bottom: 230px;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    gap: 30px;
    padding-bottom: 120px;
  }
}
.footer__contact h2 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 1.06em;
  font-weight: 700;
  line-height: 1;
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  .footer__contact h2 {
    font-size: 0.8em;
    padding-top: 100px;
  }
}
.footer__contact h2::before {
  content: attr(data-en);
  display: block;
  font-size: 7.5em;
  font-family: "Outfit", sans-serif;
  left: 0.06em;
  color: #F7F7F7;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .footer__contact h2::before {
    font-size: 5em;
    margin-bottom: 20px;
  }
}
.footer__contact h2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 120px;
  background-color: #1A1A1A;
  top: 0;
  left: calc(50% - 0.5px);
}
@media screen and (max-width: 767px) {
  .footer__contact h2::after {
    height: 80px;
  }
}
.footer__contact .tel a {
  display: block;
  font-size: 2.66em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__contact .tel a {
    font-size: 2.1em;
    margin-bottom: 5px;
    white-space: nowrap;
  }
}
.footer__contact .tel p {
  text-align: center;
  font-size: 0.8em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .footer__contact .tel p {
    font-size: 0.66em;
  }
}
.footer__contact .tel p span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__contact .tel p span {
    font-size: 1em;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact .mail {
    width: 100%;
  }
}
.footer__contact .mail .btn_cmn_01 {
  font-size: 1.06em;
}
.footer__catch {
  position: relative;
  padding: 100px 0 80px;
  background: url(../images/bg_footer.jpg) no-repeat center top/cover;
  text-align: center;
  color: #fff;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .footer__catch {
    padding: 70px 0 80px;
    background-size: auto 120%;
    margin-bottom: 60px;
  }
}
.footer__catch::before {
  content: "";
  position: absolute;
  width: min(33.3vw, 460px);
  aspect-ratio: 435/210;
  background: url(../images/ico_footer.svg) no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__catch::before {
    width: 320px;
  }
}
.footer__catch::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.18);
  top: 0;
  left: 0;
}
.footer__catch .inner, .footer__catch .inner_lg, .footer__catch .inner_min, .footer__catch .inner_sm {
  position: relative;
  z-index: 1;
}
.footer__catch strong {
  display: block;
  font-size: 1.06em;
  font-weight: 700;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .footer__catch strong {
    font-size: min(2.4vw, 12px);
    margin-bottom: 35px;
  }
}
.footer__catch h2 {
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .footer__catch h2 {
    font-size: min(6.2vw, 28px);
    margin-bottom: 30px;
  }
}
.footer__catch p {
  font-size: 1.06em;
  font-weight: 500;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .footer__catch p {
    font-size: 1em;
    line-height: 2;
  }
}
.footer__info > img {
  display: block;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .footer__info > img {
    width: 60%;
  }
}
.footer__info > p:not([class]) {
  margin-bottom: 35px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer__info > p:not([class]) {
    font-size: 0.93em;
  }
}
.footer__info .office {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin-bottom: 45px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer__info .office {
    font-size: 0.93em;
  }
}
.footer__info .office strong {
  display: block;
  font-size: 1.33em;
  font-weight: 700;
}
.footer__info .sns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.footer__info .sns li a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  font-size: 0.8em;
}
.footer__info .sns li a img {
  display: block;
  margin-right: 7px;
}
.footer__info .sns li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 0.8em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.main_visual {
  position: relative;
  padding: 0 min(0vw, 0px);
}
@media screen and (max-width: 767px) {
  .main_visual {
    padding: 0;
  }
}
.main_visual .inner, .main_visual .inner_lg, .main_visual .inner_min, .main_visual .inner_sm {
  position: relative;
}
.main_visual__image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .main_visual__image {
    margin-bottom: var(--sideW);
  }
}
.main_visual__image .image {
  height: calc(100vh - 195px);
  height: calc(100svh - 195px);
}
@media screen and (max-width: 767px) {
  .main_visual__image .image {
    height: 100vh;
    height: 100svh;
  }
}
.main_visual__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .main_visual__image img.main_slide_img01 {
    -o-object-position: 75% 100%;
       object-position: 75% 100%;
  }
  .main_visual__image img.main_slide_img02 {
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
  }
  .main_visual__image img.main_slide_img03 {
    -o-object-position: 80% 100%;
       object-position: 80% 100%;
  }
  .main_visual__image img.main_slide_img04 {
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
  }
}
.main_visual__text {
  position: absolute;
  top: 50%;
  left: calc(var(--sideW) + min(0vw, 75px));
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_visual__text {
    top: 70%;
    left: calc(var(--sideW) + min(3vw, -15px));
  }
}
.main_visual__text h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: #1A1A1A;
  background-color: none;
  line-height: 1.7;
  letter-spacing: 0.06em;
  padding: 5px 0px;
}
.main_visual__scroll {
  position: absolute;
  font-size: 0.8em;
  color: #1A1A1A;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  padding-top: 120px;
  right: calc(var(--sideW) + 48px);
  bottom: 50px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_visual__scroll {
    display: none;
  }
}
.main_visual__scroll::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 110px;
  background-color: #1A1A1A;
  top: 0;
  left: calc(50% - 0.5px);
  animation: scrollanim 4s linear infinite;
}

.home_nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: absolute;
  top: 60vh;
  right: 30px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .home_nav {
    gap: 15px;
    top: 70vh;
    right: 15px;
  }
}
.home_nav li {
  position: relative;
}
.home_nav li input {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 30px;
  height: 30px;
  background-color: #464646;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .home_nav li input {
    width: 24px;
    height: 24px;
  }
}
.home_nav li input::before, .home_nav li input::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  top: calc(50% - 1.5px);
  left: 20%;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .home_nav li input::before, .home_nav li input::after {
    height: 2px;
  }
}
.home_nav li input::after {
  transform: rotate(-45deg);
}
.home_nav li input:checked {
  opacity: 0;
  pointer-events: none;
}
.home_nav li input:checked + a {
  opacity: 0;
  pointer-events: none;
}
.home_nav a {
  display: block;
  padding: 20px 65px 20px 30px;
  background: url(../images/ico_arrow_right.svg) no-repeat center right 18px/15px auto;
  background-color: #fff;
  border-radius: 10px;
  font-size: 0.9375em;
  font-weight: 700;
  line-height: 1.53em;
  box-shadow: 0 3px 20px rgba(26, 26, 26, 0.16);
}
@media screen and (max-width: 767px) {
  .home_nav a {
    padding: 10px 35px 10px 10px;
    font-size: 0.875em;
    background-position: center right 10px;
  }
}
.home_nav a:hover {
  box-shadow: 0 3px 30px rgba(26, 26, 26, 0.5);
}

@keyframes scrollanim {
  0% {
    transform: scale(1, 0);
    transform-origin: top left;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: top left;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: bottom left;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: bottom left;
  }
}
.top_news {
  margin-bottom: 6.66em;
}
.top_news .inner, .top_news .inner_lg, .top_news .inner_min, .top_news .inner_sm {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .top_news .inner, .top_news .inner_lg, .top_news .inner_min, .top_news .inner_sm {
    display: block;
    height: auto;
  }
}
.top_news dl {
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
}
@media screen and (max-width: 767px) {
  .top_news dl {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
.top_news dl dt {
  position: relative;
  width: 100px;
  font-size: 1.06em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top_news dl dt {
    width: auto;
    margin-bottom: 10px;
  }
}
.top_news dl dt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 27px;
  background-color: #1A1A1A;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_news dl dt::after {
    content: none;
  }
}
.top_news dl dd {
  width: calc(100% - 100px);
  padding: 0 30px 0 40px;
}
@media screen and (max-width: 767px) {
  .top_news dl dd {
    width: auto;
    padding: 0;
  }
}
.top_news dl dd ul {
  height: 75px;
}
@media screen and (max-width: 767px) {
  .top_news dl dd ul {
    height: auto;
  }
}
.top_news dl dd a {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  font-size: 0.93em;
}
@media screen and (max-width: 767px) {
  .top_news dl dd a {
    display: block;
  }
}
.top_news dl dd a:hover {
  opacity: 0.7;
}
.top_news dl dd a .date {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.top_news dl dd a .title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .top_news dl dd a .title {
    white-space: normal;
    overflow: visible;
  }
}
.top_news .link {
  display: block;
  position: relative;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  white-space: nowrap;
  font-size: 0.75em;
  width: 75px;
}
@media screen and (max-width: 767px) {
  .top_news .link {
    margin-left: auto;
  }
}
.top_news .link:hover::after {
  transform: scale(0.3, 1);
}
.top_news .link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1A1A1A;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}

.top_about .bg {
  background-color: #F7F7F7;
  padding: 110px 0 90px;
}
@media screen and (max-width: 767px) {
  .top_about .bg {
    padding: 60px 20px;
    margin: 0 calc(var(--sideW) * -1 / 2);
  }
}
.top_about h2 {
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.52;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_about h2 {
    font-size: min(5.6vw, 28px);
    letter-spacing: 0.06em;
    line-height: 1.7;
  }
}
.top_about h2::before {
  content: "";
  display: block;
  width: 530px;
  aspect-ratio: 530/49;
  background: url(../images/top_about_txt_01.svg) no-repeat center/contain;
  margin: 0 auto 45px;
  transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .top_about h2::before {
    width: 260px;
  }
}

.top_bnr .inner, .top_bnr .inner_lg, .top_bnr .inner_min, .top_bnr .inner_sm {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_bnr .bnr_slide {
    margin-inline: calc(var(--sideW) * -1);
  }
}
.top_bnr .bnr_slide .swiper-slide a {
  display: block;
  position: relative;
  overflow: hidden;
}
.top_bnr .bnr_slide .swiper-slide a:hover::after {
  animation: shine 0.5s;
}
.top_bnr .bnr_slide .swiper-slide a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.top_bnr .bnr_slide .swiper-slide a img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  margin: 0 auto 15px;
}
.top_bnr .bnr_slide .swiper-slide a p {
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.top_bnr .bnr_slide .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  position: static;
  margin-top: 25px;
}
.top_bnr .bnr_slide .swiper-pagination-bullet {
  display: block;
  width: 100px;
  height: 8px;
  background-color: #F7F4F2;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_bnr .bnr_slide .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
  }
}
.top_bnr .bnr_slide .swiper-pagination-bullet-active {
  background-color: #464646;
}
.top_bnr .swiper-button {
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  margin-top: -25px;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center/18px auto;
  background-color: #464646;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .top_bnr .swiper-button {
    width: 44px;
    margin-top: -40px;
  }
}
.top_bnr .swiper-button::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .top_bnr .swiper-button-next {
    right: 30px;
  }
}
.top_bnr .swiper-button-prev {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .top_bnr .swiper-button-prev {
    left: 30px;
  }
}

.top_brand_menu {
  position: relative;
  background: url(../images/top_brand_menu.jpg) no-repeat center top/cover;
  padding: 120px 0 100px;
}
.top_brand_menu h2 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 var(--sideW);
  font-size: clamp(5.3em, 8vw, 8em);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #F7F7F7;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  width: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_brand_menu h2 {
    font-size: min(16vw, 80px);
    transform: translateY(-25%);
  }
}
.top_brand_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 35px;
}
@media screen and (max-width: 767px) {
  .top_brand_menu ul {
    gap: 25px 20px;
  }
}
.top_brand_menu ul li {
  width: calc(25% - 26.25px);
}
@media screen and (max-width: 1024px) {
  .top_brand_menu ul li {
    width: calc(33.3333% - 26.25px);
  }
}
@media screen and (max-width: 767px) {
  .top_brand_menu ul li {
    width: 100%;
  }
}
.top_brand_menu ul li a {
  display: block;
  position: relative;
  padding: 35px 10px 28px;
  height: 100%;
  text-align: center;
  letter-spacing: 0.06em;
  background-color: #F7F7F7;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_brand_menu ul li a {
    padding: 20px 10px;
  }
}
.top_brand_menu ul li a::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 18/14;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  margin: 0 auto;
}
.top_brand_menu ul li a span {
  display: block;
  font-size: 0.93em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  margin-bottom: 10px;
}
.top_brand_menu ul li a h3 {
  font-size: 1.33em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.top_brand_menu ul li a p {
  font-size: 0.86em;
  line-height: 1.6;
  margin-bottom: 15px;
}
.top_brand_menu ul li a:hover {
  background-color: #1A1A1A;
  color: #fff;
}
.top_brand_menu ul li a:hover::before {
  animation: shine 0.5s ease 0.2s;
}
.top_brand_menu ul li a:hover::after {
  background-image: url(../images/ico_arrow_right_white.svg);
}
.top_brand_menu ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.top_service {
  overflow: hidden;
}
.top_service h2 {
  display: block;
  position: relative;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_service h2 {
    margin-bottom: 40px;
  }
}
.top_service h2::before {
  content: attr(data-en);
  display: block;
  font-size: 4.5em;
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Outfit", sans-serif;
  color: #F7F4F2;
}
@media screen and (max-width: 767px) {
  .top_service h2::before {
    font-size: 2.5em;
  }
}
.top_service h3 {
  position: absolute;
  right: 35px;
  top: 0;
  font-size: 1.125em;
  font-weight: 700;
  writing-mode: vertical-rl;
  border-right: 2px solid #1A1A1A;
}
@media screen and (max-width: 767px) {
  .top_service h3 {
    display: inline-block;
    position: static;
    border: none;
    border-bottom: 2px solid #1A1A1A;
    margin-bottom: 35px;
    font-size: 1.25em;
    writing-mode: horizontal-tb;
  }
}
.top_service h4 {
  position: relative;
  font-size: 5.625em;
  font-weight: 700;
  color: #F7F4F2;
  line-height: 1;
  z-index: 1;
  margin-bottom: -20px;
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  .top_service h4 {
    font-size: 2.5em;
    padding-left: 0;
    margin-bottom: -5px;
  }
}
.top_service h4::first-letter {
  color: #464646;
}
.top_service__image {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_service__image {
    margin-inline: calc(var(--sideW) * -1 / 2);
  }
}
.top_service__image .image {
  position: absolute;
  top: 0;
  right: calc(50% - 7.33vw);
  width: 57.33vw;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top_service__image .image {
    display: none;
  }
}
.top_service__image .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.top_service__image .text {
  position: relative;
  width: 744px;
  margin-left: auto;
  padding: 60px 0 110px;
}
@media screen and (max-width: 767px) {
  .top_service__image .text {
    width: auto;
    padding: 0;
  }
}
.top_service__text {
  position: relative;
  padding-right: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_service__text {
    margin-inline: calc(var(--sideW) * -1 / 2);
    padding-right: 0;
  }
}
.top_service__text:last-child {
  margin-bottom: 0;
}
.top_service__text h3 {
  top: 65px;
  right: 0;
}
.top_service__text h4 {
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .top_service__text h4 {
    padding-left: 0;
  }
}
.top_service__text .top_service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 55px;
  padding: 50px 70px 70px;
}
@media screen and (max-width: 767px) {
  .top_service__text .top_service__list {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}
.top_service__text .top_service__list li:first-child {
  border-top: none;
}
.top_service__list {
  background-color: #F7F7F7;
  padding: 80px 95px;
}
@media screen and (max-width: 767px) {
  .top_service__list {
    padding: 40px 20px;
  }
}
.top_service__list li {
  border-bottom: 1px dashed #1A1A1A;
}
.top_service__list li:first-child {
  border-top: 1px dashed #1A1A1A;
}
.top_service__list li a {
  display: block;
  position: relative;
  background: url(../images/ico_arrow_right.svg) no-repeat center right/14px auto;
  overflow: hidden;
  padding: 25px 25px 25px 0;
}
.top_service__list li a:hover {
  background-color: rgba(255, 255, 255, 0.16);
  padding-left: 20px;
}
.top_service__list li a:hover::after {
  animation: shine 0.5s;
}
.top_service__list li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.top_service__list li strong {
  display: block;
  font-size: 1.25em;
}
@media screen and (max-width: 767px) {
  .top_service__list li strong {
    font-size: 1.25em;
    margin-bottom: 5px;
  }
}
.top_service__list li p {
  font-size: 0.875em;
  font-weight: 500;
}

.top_logic {
  position: relative;
}
.top_logic::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 70, 70, 0.91);
  top: 0;
  left: 0;
  z-index: 1;
}
.top_logic .num_slide {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.top_logic .num_slide .num {
  display: block;
  font-size: 8.75em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_logic .num_slide .num {
    font-size: 6em;
  }
}
.top_logic .num_slide .num::before {
  content: "01234567890123456789012345678901234567890123456789012345678901234567890123456789";
  display: block;
  white-space: nowrap;
  animation: scroll 70s linear infinite;
  opacity: 0.09;
}
.top_logic .num_slide .num.rev::before {
  animation-direction: reverse;
}
.top_logic .inner, .top_logic .inner_lg, .top_logic .inner_min, .top_logic .inner_sm {
  display: grid;
  place-content: center;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.top_logic .inner h2, .top_logic .inner_lg h2, .top_logic .inner_min h2, .top_logic .inner_sm h2 {
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .top_logic .inner h2, .top_logic .inner_lg h2, .top_logic .inner_min h2, .top_logic .inner_sm h2 {
    font-size: 1.875em;
  }
}
.top_logic .inner p, .top_logic .inner_lg p, .top_logic .inner_min p, .top_logic .inner_sm p {
  font-size: 0.9375em;
  font-weight: 500;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.top_post .inner, .top_post .inner_lg, .top_post .inner_min, .top_post .inner_sm {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 70px;
}
.top_post .item {
  position: relative;
  width: calc(50% - 35px);
}
@media screen and (max-width: 767px) {
  .top_post .item {
    width: 100%;
  }
}
.top_post .item h2 {
  font-size: 0.86em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
}
.top_post .item h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3.1em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
}
.top_post .item .txt_link_01 {
  position: absolute;
  top: 8px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .top_post .item .txt_link_01 {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
    font-size: 1.25em;
  }
}
.top_post_01 li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_post_01 li {
    gap: 25px;
    margin-bottom: 35px;
  }
}
.top_post_01 li:last-child {
  margin-bottom: 0;
}
.top_post_01 li.event_end .image {
  position: relative;
}
.top_post_01 li.event_end .image::after {
  content: "It’s over";
  position: absolute;
  display: grid;
  place-content: center;
  font-size: 1.66em;
  color: #fff;
  font-family: "Outfit", sans-serif;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
  top: 0;
  left: 0;
}
.top_post_01 li .image {
  width: 150px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .top_post_01 li .image {
    width: 100%;
    aspect-ratio: 350/180;
  }
}
.top_post_01 li .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_post_01 li .text {
  width: calc(100% - 150px - 40px);
}
@media screen and (max-width: 767px) {
  .top_post_01 li .text {
    width: 100%;
  }
}
.top_post_01 li .text .update {
  font-size: 0.75em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}
.top_post_01 li .text strong {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin-bottom: 15px;
}
.top_post_01 li .text dl {
  display: flex;
}
.top_post_01 li .text dl:last-of-type {
  margin-bottom: 15px;
}
.top_post_01 li .text dl dt,
.top_post_01 li .text dl dd {
  font-size: 0.8em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top_post_01 li .text dl dt,
  .top_post_01 li .text dl dd {
    font-size: 0.86em;
  }
}
.top_post_01 li .text dl dt {
  flex-shrink: 0;
}
.top_post_02 li {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_post_02 li {
    margin-bottom: 35px;
  }
}
.top_post_02 li:last-child {
  margin-bottom: 0;
}
.top_post_02 li a {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .top_post_02 li a {
    gap: 20px;
  }
}
.top_post_02 li a:hover .image::after {
  animation: shine 0.5s;
}
.top_post_02 li a:hover img {
  transform: scale(1.05);
}
.top_post_02 li a .image {
  position: relative;
  width: 150px;
  aspect-ratio: 150/106;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_post_02 li a .image {
    width: 120px;
  }
}
.top_post_02 li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.top_post_02 li a .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.top_post_02 li a .text {
  width: calc(100% - 150px - 40px);
}
@media screen and (max-width: 767px) {
  .top_post_02 li a .text {
    width: calc(100% - 120px - 20px);
  }
}
.top_post_02 li a .text .post_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 15px;
  line-height: 1.5;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .top_post_02 li a .text .post_info {
    margin-bottom: 7px;
  }
}
.top_post_02 li a .text .post_info .date {
  font-size: 0.75em;
}
.top_post_02 li a .text .post_info .reedit {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8em;
}
.top_post_02 li a .text .post_info .reedit::before {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/ico_readit.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top_post_02 li a .text .post_info .reedit::before {
    width: 10px;
  }
}
.top_post_02 li a .text .post_info .write {
  width: 100%;
  font-size: 0.75em;
  letter-spacing: 0.06em;
}
.top_post_02 li a .text strong {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_post_02 li a .text strong {
    font-size: 1.125em;
  }
}
.top_post_02 li a .text .post_text {
  font-size: 0.86em;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .top_post_02 li a .text .post_text {
    display: none;
  }
}

.top_voice ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 65px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .top_voice ul {
    gap: 40px;
  }
}
.top_voice ul::after {
  content: "";
  position: absolute;
  width: 100vw;
  min-width: 1000px;
  height: 71%;
  background-color: #F7F7F7;
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .top_voice ul::after {
    left: calc(var(--sideW) * -1);
  }
}
.top_voice ul li {
  position: relative;
  width: calc(33.333% - 43.3333333333px);
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .top_voice ul li {
    width: 100%;
  }
}
.top_voice ul li img {
  display: block;
  margin: 0 auto 20px;
  aspect-ratio: 3/2;
}
.top_voice ul li .title {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_voice ul li .title {
    font-size: 1em;
  }
}
.top_voice ul li .company {
  font-size: 0.93em;
  font-weight: 700;
  margin-bottom: 15px;
}
.top_voice ul li .date {
  position: absolute;
  top: 0;
  right: 0;
  writing-mode: vertical-rl;
  font-family: "Outfit", sans-serif;
  font-size: 0.75em;
  font-weight: 300;
  line-height: 1;
  padding-top: 77px;
}
.top_voice ul li .date::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 62px;
  background-color: #707070;
  top: 0;
  left: calc(50% - 2px);
}

.top_area .inner, .top_area .inner_lg, .top_area .inner_min, .top_area .inner_sm {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .top_area .inner, .top_area .inner_lg, .top_area .inner_min, .top_area .inner_sm {
    gap: 30px;
  }
}
.top_area .text {
  width: 31.5%;
}
@media screen and (max-width: 767px) {
  .top_area .text {
    width: 100%;
  }
}
.top_area .text h2 {
  position: relative;
  font-size: 1.33em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .top_area .text h2 {
    font-size: min(3.6vw, 18px);
  }
}
.top_area .text h2::before {
  content: attr(data-en);
  display: block;
  font-size: 6em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #F7F7F7;
  margin-bottom: 15px;
}
.top_area .text h2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 70px;
  background-color: #1A1A1A;
  transform: rotate(45deg);
  left: 6em;
  top: calc(100% - 35px);
}
.top_area .text p {
  font-size: 0.93em;
  font-weight: 500;
  line-height: 1.8;
}
.top_area .slide {
  position: relative;
  width: calc(68.5% - 50px);
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .top_area .slide {
    width: calc(100% + var(--sideW));
    padding-left: var(--sideW);
    margin-left: calc(var(--sideW) * -1);
  }
}
.top_area .slide .area_slide {
  margin-right: -50px;
}
@media screen and (max-width: 767px) {
  .top_area .slide .area_slide {
    margin-right: -20px;
  }
}
.top_area .slide .swiper-slide {
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .top_area .slide .swiper-slide {
    padding-right: 20px;
  }
}
.top_area .slide .swiper-slide a {
  display: block;
}
.top_area .slide .swiper-slide a:hover .image img {
  transform: scale(1.03);
}
.top_area .slide .swiper-slide .image {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 30px;
}
.top_area .slide .swiper-slide .image img {
  transition: 0.3s;
}
.top_area .slide .swiper-slide h3 {
  font-size: 1.33em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_area .slide .swiper-slide h3 {
    font-size: 1.125em;
  }
}
.top_area .slide .swiper-slide p {
  font-size: 0.93em;
  line-height: 1.71;
}
.top_area .slide .swiper-pagination {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: auto;
  text-align: left;
  opacity: 1;
  width: 15px;
}
@media screen and (max-width: 767px) {
  .top_area .slide .swiper-pagination {
    width: 13px;
    left: 10px;
  }
}
.top_area .slide .swiper-pagination .swiper-pagination-bullet {
  display: block;
  opacity: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #E2E2E2;
  margin: 0 0 10px;
}
.top_area .slide .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}
.top_area .slide .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #989898;
}

.top_tone h2 {
  font-size: 8em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #F7F7F7;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_tone h2 {
    font-size: min(20vw, 100px);
    line-height: 0.8;
    margin-bottom: 40px;
  }
}
.top_tone .tone_wrap_01 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_wrap_01 {
    display: block;
  }
}
.top_tone .tone_wrap_01 .text_box_01 {
  width: 610px;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_wrap_01 .text_box_01 {
    width: auto;
    margin-bottom: 40px;
  }
}
.top_tone .tone_wrap_01 .text_box_01 img {
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_wrap_01 .text_box_01 img {
    width: 180px;
    margin-bottom: 30px;
  }
}
.top_tone .tone_wrap_01 .text_box_01 h3 {
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_wrap_01 .text_box_01 h3 {
    font-size: min(5.6vw, 28px);
    margin-bottom: 20px;
  }
}
.top_tone .tone_wrap_01 .text_box_01 p {
  font-size: 0.93em;
}
.top_tone .tone_wrap_01 .slide_box_01 {
  position: relative;
  width: 50.5%;
  margin-right: calc(var(--sideW) * -1);
}
@media screen and (max-width: 767px) {
  .top_tone .tone_wrap_01 .slide_box_01 {
    width: 84vw;
    margin-left: auto;
  }
}
.top_tone .tone_wrap_01 .slide_box_01 .swiper {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_wrap_01 .slide_box_01 .swiper {
    margin-left: 20px;
  }
}
.top_tone .tone_wrap_01 .slide_box_01 .swiper-pagination-custom {
  display: flex;
  flex-flow: column;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top_tone .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  opacity: 1;
  width: 15px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #E2E2E2;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top_tone .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 13px;
  }
}
.top_tone .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}
.top_tone .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #989898;
}
.top_tone .tone_box_02 {
  position: relative;
  padding: 80px 27.5% min(12.2vw, 198px) 33.7%;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_box_02 {
    padding: 0;
  }
}
.top_tone .tone_box_02 .image_box {
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 30px;
  width: 25.4%;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_box_02 .image_box {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-left: calc(var(--sideW) * -1);
    margin-bottom: 60px;
  }
}
.top_tone .tone_box_02 .image_box img {
  display: block;
}
.top_tone .tone_box_02 .image_box figcaption {
  position: absolute;
  top: 1px;
  left: 100%;
  white-space: nowrap;
  transform-origin: top left;
  rotate: 90deg;
  font-size: clamp(9px, 0.8vw, 0.8em);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_box_02 .image_box figcaption {
    font-size: 0.8em;
  }
}
.top_tone .tone_box_02 .text_02 {
  font-size: 0.93em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_box_02 .text_02 {
    margin-bottom: 30px;
  }
}
.top_tone .tone_box_02 .slide_box_02 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 19.2%;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_box_02 .slide_box_02 {
    position: relative;
    right: auto;
    bottom: auto;
    width: 45vw;
    margin: 0 auto 50px;
  }
}
.top_tone .tone_box_02 .slide_box_02 .swiper-pagination-custom02 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.top_tone .tone_box_02 .link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media screen and (max-width: 767px) {
  .top_tone .tone_box_02 .link {
    justify-content: center;
  }
}
.top_tone .tone_box_02 .link .btn_more {
  font-size: 0.93em;
}

.top_images .images_slide,
.top_images .images_slide_rev {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .top_images .images_slide,
  .top_images .images_slide_rev {
    margin-bottom: 20px;
  }
}
.top_images .images_slide .swiper-wrapper,
.top_images .images_slide_rev .swiper-wrapper {
  transition-timing-function: linear;
}
.top_images .images_slide .swiper-slide,
.top_images .images_slide_rev .swiper-slide {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .top_images .images_slide .swiper-slide,
  .top_images .images_slide_rev .swiper-slide {
    width: 120px;
  }
}
.top_images .images_slide--logo .swiper-slide,
.top_images .images_slide_rev--logo .swiper-slide {
  padding: 6px 0;
}
.top_images .images_slide--logo img,
.top_images .images_slide_rev--logo img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.top_images .images_slide_rev {
  margin-bottom: 0;
  padding-left: 140px;
}

.about_01 {
  position: relative;
  padding: 100px 15px 140px;
  background: url(../images/bg_about.jpg) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .about_01 {
    margin: 0 calc(var(--sideW) * -1);
    padding: 80px var(--sideW);
  }
}
.about_01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(26, 26, 26, 0.71);
}
.about_01 h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .about_01 h2 {
    font-size: 2em;
  }
}
.about_01 h2::before {
  content: "";
  display: block;
  width: 260px;
  aspect-ratio: 260/75;
  background: url(../images/about_txt_01.svg) no-repeat center/contain;
  margin: 0 auto 45px;
}
@media screen and (max-width: 767px) {
  .about_01 h2::before {
    width: 200px;
  }
}
.about_01 p {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .about_01 p {
    font-size: 0.93em;
    text-align: left;
  }
}
.about_01 p span {
  display: block;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .about_01 p span {
    margin-bottom: 1.5em;
  }
}

.about_02 h2 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 125px;
}
@media screen and (max-width: 767px) {
  .about_02 h2 {
    font-size: 2em;
    margin-bottom: 80px;
  }
}
.about_02 h2::before {
  content: "";
  display: block;
  width: 214px;
  aspect-ratio: 214/75;
  background: url(../images/about_txt_02.svg) no-repeat center/contain;
  margin: 0 auto 25px;
}
@media screen and (max-width: 767px) {
  .about_02 h2::before {
    width: 160px;
  }
}
.about_02 dl {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 78px;
  margin-bottom: 4em;
}
@media screen and (max-width: 767px) {
  .about_02 dl {
    margin-bottom: 40px;
  }
}
.about_02 dl:last-child {
  margin-bottom: 0;
}
.about_02 dl:nth-of-type(even) dt {
  order: 2;
}
@media screen and (max-width: 767px) {
  .about_02 dl:nth-of-type(even) dt {
    order: 1;
  }
}
.about_02 dl:nth-of-type(even) dd {
  order: 1;
}
@media screen and (max-width: 767px) {
  .about_02 dl:nth-of-type(even) dd {
    order: 2;
  }
}
.about_02 dl dt {
  position: relative;
  width: calc(50% - 78px);
  padding-top: 95px;
  padding-left: min(6.66vw, 100px);
}
@media screen and (max-width: 767px) {
  .about_02 dl dt {
    width: 100%;
    padding: 60px 0 0;
  }
}
.about_02 dl dt::before {
  content: attr(data-num);
  position: absolute;
  font-family: "Outfit", sans-serif;
  font-size: 10em;
  line-height: 1;
  font-weight: 700;
  top: 0;
  left: 0;
  color: #F7F7F7;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about_02 dl dt::before {
    font-size: 7em;
  }
}
.about_02 dl dt h3 {
  font-size: 1.46em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about_02 dl dt h3 {
    font-size: 1.13em;
  }
}
.about_02 dl dt h3 span {
  display: block;
  font-size: 1.5em;
}
@media screen and (max-width: 767px) {
  .about_02 dl dt h3 span {
    font-size: 1.6em;
    margin-top: 5px;
  }
}
.about_02 dl dt small {
  display: block;
  font-size: 0.75em;
  color: #E2E2E2;
  font-family: "Outfit", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about_02 dl dt small {
    margin-bottom: 20px;
  }
}
.about_02 dl dt p {
  font-size: 0.93em;
  font-weight: 500;
  margin-bottom: 1.6em;
}
.about_02 dl dt p:last-child {
  margin-bottom: 0;
}
.about_02 dl dd {
  position: relative;
  width: 50%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .about_02 dl dd {
    width: 100%;
  }
}
.about_02 dl dd video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about_03 h2 {
  position: relative;
  font-size: 2.66em;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-top: 76px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about_03 h2 {
    font-size: 1.8em;
  }
}
.about_03 h2::before {
  content: "";
  display: block;
  width: 397px;
  aspect-ratio: 397/142;
  background: url(../images/about_txt_03.svg) no-repeat center/contain;
  margin: 0 auto 0px;
}
@media screen and (max-width: 767px) {
  .about_03 h2::before {
    width: 240px;
  }
}
.about_03 h2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 76px;
  background-color: #1A1A1A;
  top: 0;
  left: calc(50% - 0.5px);
}

.about_04 h2 {
  display: block;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about_04 h2 {
    margin-bottom: 50px;
  }
}
.about_04 h2 img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about_04 h2 img {
    width: 200px;
  }
}
.about_04 dl {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about_04 dl {
    margin-bottom: 50px;
  }
}
.about_04 dl:last-child {
  margin-bottom: 0;
}
.about_04 dl dt {
  background-color: #585453;
  color: #fff;
  text-align: center;
  font-size: 0.93em;
  font-weight: 700;
  padding: 40px 0;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .about_04 dl dt {
    padding: 15px 0;
    margin-bottom: 30px;
  }
}
.about_04 dl dt::before {
  content: attr(data-en);
  display: block;
  font-size: 2.85em;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .about_04 dl dt::before {
    font-size: 2em;
  }
}
.about_04 dl dd h3 {
  font-size: 2.26em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .about_04 dl dd h3 {
    font-size: 1.5em;
  }
}
.about_04 dl dd p {
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about_04 dl dd p {
    font-size: 0.93em;
    text-align: left;
  }
}
.about_04 dl dd p:last-child {
  margin-bottom: 0;
}

.about_05 h2 {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about_05 h2 {
    font-size: 1.5em;
  }
}
.about_05 h2::before {
  content: "Way to think";
  display: block;
  font-size: 3em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #F7F7F7;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .about_05 h2::before {
    font-size: 2em;
  }
}
.about_05 .read {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about_05 .read {
    margin-bottom: 50px;
  }
}

.about_06 h2 {
  font-size: 0.93em;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.about_06 h2::before {
  content: "Outline";
  display: block;
  font-size: 4em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .about_06 h2::before {
    font-size: 4em;
  }
}
.about_06 .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 70px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .about_06 .grid {
    gap: 0 40px;
  }
}
.about_06 .grid table {
  width: calc(50% - 35px);
  border-collapse: separate;
}
@media screen and (max-width: 1024px) {
  .about_06 .grid table {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .about_06 .grid table {
    display: block;
    width: 100%;
  }
  .about_06 .grid table thead,
  .about_06 .grid table tbody,
  .about_06 .grid table tr,
  .about_06 .grid table th,
  .about_06 .grid table td {
    display: block;
    width: 100%;
  }
}
.about_06 .grid table th,
.about_06 .grid table td {
  font-size: 0.93em;
  border-bottom: 1px solid #F7F7F7;
  padding: 20px;
  vertical-align: top;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .about_06 .grid table th,
  .about_06 .grid table td {
    font-size: 0.9em;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .about_06 .grid table th,
  .about_06 .grid table td {
    padding: 0 0 15px;
  }
}
.about_06 .grid table th {
  font-weight: 700;
  white-space: nowrap;
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .about_06 .grid table th {
    padding: 20px 0 5px;
    border-bottom: 0 none;
    font-size: 1.125em;
  }
}
.about_06 dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 50px;
}
.about_06 dl dt {
  position: relative;
  font-size: 1.125em;
  font-weight: 700;
  width: 115px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .about_06 dl dt {
    width: 100%;
    margin-bottom: 15px;
  }
}
.about_06 dl dt::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 1px;
  background-color: #1A1A1A;
  left: 0;
  bottom: 0;
}
.about_06 dl dd {
  width: calc(100% - 115px);
  font-size: 0.93em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about_06 dl dd {
    width: 100%;
  }
}

.about_07 h2 {
  font-size: 0.93em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 50px;
}
.about_07 h2::before {
  content: "";
  display: block;
  width: 292px;
  aspect-ratio: 292/88;
  background: url(../images/logo_tone_branding.svg) no-repeat center/contain;
  margin: 0 auto 25px;
}
@media screen and (max-width: 767px) {
  .about_07 h2::before {
    width: 160px;
  }
}
.about_07 h2 span {
  display: block;
  font-size: 2.8em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .about_07 h2 span {
    font-size: 1.5em;
  }
}
.about_07 h3 {
  text-align: center;
  font-size: 2.57em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .about_07 h3 {
    font-size: 1.6em;
  }
}

.staff_detail {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 80px;
}
.staff_detail .image {
  width: 36.4%;
}
@media screen and (max-width: 767px) {
  .staff_detail .image {
    width: 100%;
  }
}
.staff_detail .image > img {
  display: block;
}
.staff_detail .image .image_slider {
  position: relative;
  margin-top: 35px;
}
.staff_detail .image .image_slider img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff_detail .image .image_slider .swiper {
  opacity: 0;
  transition: 0.5s;
}
.staff_detail .image .image_slider .swiper.swiper-initialized {
  opacity: 1;
}
.staff_detail .image .image_slider .swiper-button {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0;
  top: calc(50% - 20px);
  background: url(../images/ico_btn.svg) no-repeat center/contain, url(../images/ico_arrow_right.svg) no-repeat center/15px auto;
  border-radius: 50%;
  z-index: 1;
  transform: translateX(50%);
}
.staff_detail .image .image_slider .swiper-button::after {
  content: none;
}
.staff_detail .image .image_slider .swiper-button.swiper-button-disabled {
  opacity: 0;
}
.staff_detail .image .image_slider .swiper-button.swiper-button-next {
  right: 0;
}
.staff_detail .image .image_slider .swiper-button.swiper-button-prev {
  left: 0;
  rotate: 180deg;
}
.staff_detail .text {
  width: calc(63.6% - 80px);
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .staff_detail .text {
    width: 100%;
    padding: 0;
  }
}
.staff_detail .text .name {
  font-size: 1.93em;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}
.staff_detail .text .post {
  font-weight: 300;
  letter-spacing: 0.06em;
  font-family: "Outfit", sans-serif;
  color: #918E8B;
  margin-bottom: 40px;
}
.staff_detail .text .catch {
  font-size: 0.93em;
  margin-bottom: 35px;
}
.staff_detail .text .profile {
  position: relative;
  font-size: 1.2em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  padding-left: 35px;
  margin-bottom: 15px;
}
.staff_detail .text .profile::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  background-color: #1A1A1A;
  left: 0;
  top: calc(50% - 0.5px);
}
.staff_detail .text .profile_text {
  font-size: 0.93em;
  letter-spacing: 0.06em;
  line-height: 2.14;
  margin-bottom: 45px;
}

.project_cat {
  font-family: "Outfit", sans-serif;
  font-size: 1.06em;
  font-weight: 300;
  color: #918E8B;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .project_cat {
    font-size: 1em;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .project_main_image {
    margin: 0 calc(var(--sideW) * -1);
  }
}
.project_main_image img {
  display: block;
  margin: 0 auto;
}

.project_content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .project_content {
    gap: 50px;
    margin-bottom: 80px;
  }
}
.project_content h2 {
  position: relative;
  font-size: 1.06em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 47px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .project_content h2 {
    font-size: 1em;
  }
}
.project_content h2::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background-color: #1A1A1A;
  left: 0;
  top: calc(50% - 0.5px);
}
.project_content .concept {
  width: 30.7%;
}
@media screen and (max-width: 1024px) {
  .project_content .concept {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .project_content .concept {
    width: 100%;
  }
}
.project_content .concept p {
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .project_content .concept p {
    font-size: 1.25em;
    margin-bottom: 15px;
  }
}
.project_content .concept table {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .project_content .concept table {
    margin-bottom: 15px;
  }
}
.project_content .concept table th {
  width: 115px;
  white-space: nowrap;
  vertical-align: top;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .project_content .concept table th {
    width: 100px;
  }
}
.project_content .concept table td {
  font-size: 0.93em;
  letter-spacing: 0.06em;
  line-height: 2.14;
  vertical-align: top;
}
.project_content .concept a {
  display: inline-block;
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .project_content .concept a {
    gap: 10px;
  }
}
.project_content .concept a:hover {
  text-decoration: underline;
}
.project_content .concept a::after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../images/ico_blank_black.svg) no-repeat center/contain;
  margin-left: 15px;
}
.project_content .overview {
  width: calc(69.3% - 80px);
}
@media screen and (max-width: 1024px) {
  .project_content .overview {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .project_content .overview {
    width: 100%;
  }
}
.project_content .overview p {
  font-size: 0.93em;
}
@media screen and (max-width: 767px) {
  .project_content .overview p {
    font-size: 1em;
  }
}
.project_content .detail {
  width: 100%;
}
.project_content .detail .contents img {
  display: block;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .project_content .detail .contents img {
    margin-bottom: 30px;
  }
}
.project_content .detail .contents img:last-child {
  margin-bottom: 0;
}
.project_content .detail .contents p {
  font-size: 0.93em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .project_content .detail .contents p {
    font-size: 1em;
    line-height: 2;
    letter-spacing: 0.06em;
    margin-bottom: 30px;
  }
}
.project_content .detail .contents p:last-child {
  margin-bottom: 0;
}
.project_content .detail table {
  margin-top: 45px;
}
.project_content .detail table th,
.project_content .detail table td {
  font-size: 0.86em;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .project_content .detail table th,
  .project_content .detail table td {
    font-size: 1em;
  }
}
.project_content .detail table th {
  width: 100px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .project_content .detail table th {
    width: 90px;
  }
}
.project_content.works_content {
  gap: 0 80px;
}
@media screen and (max-width: 767px) {
  .project_content.works_content {
    gap: 40px;
  }
}
.project_content.works_content h2 {
  width: 100%;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .project_content.works_content h2 {
    margin-bottom: 0;
  }
}
.project_content.works_content .detail {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .project_content.works_content .detail {
    margin-top: 30px;
  }
}

.voice_content {
  display: flex;
  flex-wrap: wrap;
  gap: 100px 55px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .voice_content {
    gap: 50px;
    margin-bottom: 80px;
  }
}
.voice_content .info {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .voice_content .info {
    width: 100%;
  }
}
.voice_content .info .date {
  font-size: 0.75em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .voice_content .info .date {
    margin-bottom: 15px;
  }
}
.voice_content .info h1 {
  font-size: 1.73em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.53;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .voice_content .info h1 {
    font-size: 1.3em;
    margin-bottom: 15px;
  }
}
.voice_content .info .company {
  font-weight: 700;
  line-height: 1.86em;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
.voice_content .info a {
  display: inline-block;
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .voice_content .info a {
    gap: 10px;
  }
}
.voice_content .info a:hover {
  text-decoration: underline;
}
.voice_content .info a::after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../images/ico_blank_black.svg) no-repeat center/contain;
  margin-left: 15px;
}
.voice_content .overview {
  width: calc(50% - 55px);
}
@media screen and (max-width: 767px) {
  .voice_content .overview {
    width: 100%;
  }
}
.voice_content .overview h2 {
  position: relative;
  font-size: 1.06em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 47px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .voice_content .overview h2 {
    font-size: 1em;
    margin-bottom: 20px;
  }
}
.voice_content .overview h2::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background-color: #1A1A1A;
  left: 0;
  top: calc(50% - 0.5px);
}
.voice_content .overview p {
  font-size: 0.93em;
}
.voice_content .detail {
  width: 100%;
}
.voice_content .detail table {
  margin-top: 45px;
}
.voice_content .detail table th,
.voice_content .detail table td {
  font-size: 0.86em;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .voice_content .detail table th,
  .voice_content .detail table td {
    font-size: 0.93em;
  }
}
.voice_content .detail table th {
  width: 100px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .voice_content .detail table th {
    width: 90px;
  }
}

.journal_info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 100px;
}
.journal_info > .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .journal_info > .text {
    width: 100%;
    order: 2;
  }
}
.journal_info > .text h1 {
  font-size: 2.13em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .journal_info > .text h1 {
    font-size: 1.5em;
  }
}
.journal_info > .text .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 19px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .info {
    gap: 8px 15px;
  }
}
.journal_info > .text .info p {
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .info p {
    font-size: 0.86em;
  }
}
.journal_info > .text .info p.reedit {
  display: flex;
  align-items: center;
  gap: 7px;
}
.journal_info > .text .info p.reedit::before {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/ico_readit.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .info p.reedit::before {
    width: 10px;
  }
}
.journal_info > .text .info p.cat {
  width: 100%;
}
.journal_info > .text .info p.cat span {
  font-size: 0.93em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.journal_info > .text .writer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px 30px;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .writer {
    gap: 15px 20px;
    margin-bottom: 40px;
  }
}
.journal_info > .text .writer .image {
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .writer .image {
    width: 90px;
  }
}
.journal_info > .text .writer .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.journal_info > .text .writer .text {
  width: calc(100% - 130px);
}
@media screen and (max-width: 767px) {
  .journal_info > .text .writer .text {
    width: calc(100% - 110px);
  }
}
.journal_info > .text .writer .text strong {
  display: block;
  font-size: 0.93em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .writer .text strong {
    margin-bottom: 5px;
  }
}
.journal_info > .text .writer .text a {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 43px;
  padding-right: 54px;
  font-family: "Outfit", sans-serif;
  font-size: 1.46em;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .writer .text a {
    font-size: 1.13em;
  }
}
.journal_info > .text .writer .text a:hover::after {
  background-position: center, center left calc(50% + 5px);
}
.journal_info > .text .writer .text a::after {
  content: "";
  position: absolute;
  width: 43px;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  background: url(../images/ico_btn.svg) no-repeat center/contain, url(../images/ico_arrow_right.svg) no-repeat center/13px auto;
  transition: 0.5s;
}
.journal_info > .text .writer .text .post {
  font-size: 0.93em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  color: #918E8B;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .writer .text .post {
    font-size: 0.86em;
  }
}
.journal_info > .text .writer .text .intro {
  font-size: 0.86em;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .journal_info > .text .writer .text .intro {
    font-size: 0.8em;
  }
}
.journal_info > .image {
  width: calc(50% - 100px);
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .journal_info > .image {
    width: 100%;
    order: 1;
  }
}
.journal_info > .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice_media_info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px 100px;
}
.voice_media_info > .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text {
    width: 100%;
    order: 2;
  }
}
.voice_media_info > .text h1 {
  font-size: 2.13em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text h1 {
    font-size: 1.5em;
  }
}
.voice_media_info > .text .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 19px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .info {
    gap: 8px 15px;
  }
}
.voice_media_info > .text .info p {
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .info p {
    font-size: 0.86em;
  }
}
.voice_media_info > .text .info p.reedit {
  display: flex;
  align-items: center;
  gap: 7px;
}
.voice_media_info > .text .info p.reedit::before {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/ico_readit.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .info p.reedit::before {
    width: 10px;
  }
}
.voice_media_info > .text .info p.cat {
  width: 100%;
}
.voice_media_info > .text .info p.cat span {
  font-size: 0.93em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.voice_media_info > .text .writer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px 30px;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .writer {
    gap: 15px 20px;
  }
}
.voice_media_info > .text .writer .image {
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .writer .image {
    width: 90px;
  }
}
.voice_media_info > .text .writer .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.voice_media_info > .text .writer .text {
  width: calc(100% - 130px);
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .writer .text {
    width: calc(100% - 110px);
  }
}
.voice_media_info > .text .writer .text strong {
  display: block;
  font-size: 0.93em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 15px;
}
.voice_media_info > .text .writer .text .name {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 43px;
  padding-right: 54px;
  font-family: "Outfit", sans-serif;
  font-size: 1.46em;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  transition: 0.5s;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .writer .text .name {
    font-size: 1.13em;
  }
}
.voice_media_info > .text .writer .text .name:hover::after {
  background-position: center, center left calc(50% + 5px);
}
.voice_media_info > .text .writer .text .name::after {
  content: "";
  position: absolute;
  width: 43px;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  background: url(../images/ico_btn.svg) no-repeat center/contain, url(../images/ico_arrow_right.svg) no-repeat center/13px auto;
  transition: 0.5s;
}
.voice_media_info > .text .writer .text .post {
  font-size: 0.93em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  color: #918E8B;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .writer .text .post {
    font-size: 0.86em;
  }
}
.voice_media_info > .text .writer .text .intro {
  font-size: 0.86em;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .text .writer .text .intro {
    font-size: 0.8em;
  }
}
.voice_media_info > .image {
  width: calc(50% - 100px);
  max-width: 365px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .voice_media_info > .image {
    width: 100%;
    order: 1;
  }
}
.voice_media_info > .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice_media_list {
  margin-top: 60px;
}
.voice_media_list h3 {
  text-align: center;
  font-size: 1.33em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
.voice_media_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .voice_media_list ul {
    gap: 10px;
  }
}
.voice_media_list ul li {
  width: calc(25% - 17.25px);
}
@media screen and (max-width: 767px) {
  .voice_media_list ul li {
    width: calc(50% - 5px);
  }
}
.voice_media_list ul li a {
  display: block;
}
.voice_media_list ul li a:hover img {
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(26, 26, 26, 0.3);
}
.voice_media_list ul li a img {
  display: block;
  width: 100%;
  transition: 0.3s;
}

.event_info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 100px;
}
.event_info > .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .event_info > .text {
    width: 100%;
    order: 2;
  }
}
.event_info > .text h1 {
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .event_info > .text h1 {
    font-size: 1.5em;
  }
}
.event_info > .text dl {
  display: flex;
}
.event_info > .text dl:last-of-type {
  margin-bottom: 40px;
}
.event_info > .text dl dt,
.event_info > .text dl dd {
  font-size: 0.93em;
  letter-spacing: 0.06em;
}
.event_info > .text dl dt {
  flex-shrink: 0;
  white-space: nowrap;
}
.event_info > .text .btn_cmn_01 {
  margin: 0;
}
.event_info > .image {
  width: calc(50% - 100px);
}
@media screen and (max-width: 767px) {
  .event_info > .image {
    width: 100%;
    order: 1;
  }
}
.event_info > .image img {
  display: block;
}

.event_teacher {
  width: 620px;
  max-width: 100%;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .event_teacher {
    margin-bottom: 40px;
  }
}
.event_teacher dl {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 52px;
  margin-bottom: 50px;
}
.event_teacher dl:last-of-type {
  margin-bottom: 0;
}
.event_teacher dl dt {
  width: 40%;
  aspect-ratio: 356/260;
}
@media screen and (max-width: 767px) {
  .event_teacher dl dt {
    width: 100%;
  }
}
.event_teacher dl dt img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.event_teacher dl dd {
  width: calc(60% - 52px);
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .event_teacher dl dd {
    width: 100%;
    padding: 0;
  }
}
.event_teacher dl dd .name {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.7em;
  margin-bottom: 10px;
}
.event_teacher dl dd .link {
  display: inline-block;
  position: relative;
  font-size: 0.93em;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-right: 39px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .event_teacher dl dd .link {
    margin-bottom: 20px;
  }
}
.event_teacher dl dd .link:hover {
  text-decoration: underline;
}
.event_teacher dl dd .link::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/contain;
  top: calc(50% - 15px);
  right: 0;
}
.event_teacher dl dd .intro {
  font-size: 0.93em;
}

.event_outline {
  width: 620px;
  max-width: 100%;
  margin: 0 auto 120px;
}
.event_outline h2 {
  font-size: 1.73em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .event_outline h2 {
    margin-bottom: 1.4em;
    font-size: 1.25em;
  }
}
.event_outline dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0 35px;
  margin-bottom: 20px;
}
.event_outline dl:last-child {
  margin-bottom: 0;
}
.event_outline dl dt {
  display: grid;
  place-content: center;
  width: 157px;
  background-color: #F7F7F7;
  text-align: center;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  padding: 10px 15px;
  min-height: 50px;
}
@media screen and (max-width: 767px) {
  .event_outline dl dt {
    display: block;
    width: 100%;
    min-height: 1px;
    text-align: left;
    font-size: 1em;
  }
}
.event_outline dl dd {
  width: calc(100% - 257px - 35px);
  font-size: 1em;
  letter-spacing: 0.06em;
  line-height: 1.7;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .event_outline dl dd {
    width: 100%;
    padding: 10px 15px;
    font-size: 1em;
  }
}
.event_outline dl dd span {
  display: block;
}

.in_house_01 h2 {
  font-size: 2.66em;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .in_house_01 h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }
}
.in_house_01 h2::before {
  content: "";
  display: block;
  width: 245px;
  aspect-ratio: 245/83;
  background: url(../images/logo_tone-village.svg) no-repeat center/contain;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .in_house_01 h2::before {
    width: 180px;
  }
}
.in_house_01 .read {
  margin-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .in_house_01 .read {
    margin-bottom: 6em;
  }
}
.in_house_01 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 120px 100px;
}
@media screen and (max-width: 767px) {
  .in_house_01 ul {
    gap: 60px 0;
  }
}
.in_house_01 ul li {
  width: calc(50% - 50px);
}
@media screen and (max-width: 767px) {
  .in_house_01 ul li {
    width: 100%;
  }
}
.in_house_01 ul li .image {
  position: relative;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .in_house_01 ul li .image {
    margin-bottom: 30px;
  }
}
.in_house_01 ul li .image figcaption {
  position: absolute;
  font-size: 1.06em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  top: -40px;
  left: calc(100% - 30px);
  transform-origin: top left;
  transform: rotate(90deg);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .in_house_01 ul li .image figcaption {
    font-size: 0.93em;
    top: -20px;
    left: calc(100% - 20px);
  }
}
.in_house_01 ul li .image figcaption::before {
  content: attr(data-en);
  display: block;
  font-size: 2.5em;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.06em;
}
.in_house_01 ul li .text {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.in_house_01 ul li .text .left {
  width: 190px;
  padding-right: 33px;
}
@media screen and (max-width: 767px) {
  .in_house_01 ul li .text .left {
    width: 100px;
    padding-right: 15px;
  }
}
.in_house_01 ul li .text .left img {
  display: block;
  margin: auto;
}
.in_house_01 ul li .text .right {
  width: calc(100% - 190px);
}
@media screen and (max-width: 767px) {
  .in_house_01 ul li .text .right {
    width: calc(100% - 100px);
  }
}
.in_house_01 ul li .text .right p {
  font-size: 0.93em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.in_house_02 h2 {
  font-size: 2.66em;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06;
  line-height: 1.4;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .in_house_02 h2 {
    font-size: 2em;
  }
}
.in_house_02 h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #F7F7F7;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 767px) {
  .in_house_02 h2::before {
    font-size: 1.3em;
  }
}

.page-about-branding #container_wrap {
  padding-top: 0;
  overflow: visible;
}
.page-about-branding #list_breadcrumb {
  position: absolute;
  top: var(--headerHeight);
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-about-branding #list_breadcrumb {
    position: static;
  }
}
.page-about-branding .top_brand_menu {
  background: none;
  padding: 0;
}
.page-about-branding .top_brand_menu h2 {
  position: static;
  transform: none;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .page-about-branding .top_brand_menu h2 {
    margin-bottom: 40px;
  }
}

.about_scroll_container {
  height: 700vh;
}
@media screen and (max-width: 1024px) {
  .about_scroll_container {
    height: auto;
  }
}
.about_scroll_container .about_scroll_sticky {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
}
@media screen and (max-width: 1024px) {
  .about_scroll_container .about_scroll_sticky {
    position: static;
    height: auto;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  width: 700vw;
  height: 100%;
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap {
    display: block;
    position: static;
    width: auto;
    height: auto;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main {
  display: grid;
  place-content: center;
  place-items: center;
  background: url(../images/about_branding_01.jpg) no-repeat center top/cover;
  width: 100vw;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main {
    height: 100vh;
    height: 100svh;
    padding: 0 var(--sideW);
    margin-bottom: 60px;
    background-position: top left 80%;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .title {
  border: 3px solid #1A1A1A;
  padding: 55px 70px 45px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .title {
    padding: 40px 40px 30px;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .title h1 {
  font-size: 0.93em;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .title h1::before {
  content: "About Branding";
  display: block;
  line-height: 1.1;
  font-weight: 700;
  font-size: 2.85em;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .title h1::before {
    font-size: 2em;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .scrollbar {
  position: relative;
  font-size: 1.06em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  padding-right: 156px;
}
@media screen and (max-width: 767px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .scrollbar {
    display: none;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .scrollbar::before, .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .scrollbar::after {
  content: "";
  position: absolute;
  width: 135px;
  height: 1px;
  background-color: #1A1A1A;
  top: calc(50% - 0.5px);
  right: 0;
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_main .scrollbar::before {
  height: 2px;
  top: calc(50% - 1px);
  animation: ab_scrollbar 4s linear infinite;
}
@keyframes ab_scrollbar {
  0% {
    transform: scale(0, 1);
    transform-origin: top left;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: top left;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: top right;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: top right;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  height: 100%;
  background-color: #F7F7F7;
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .image {
  width: 50%;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  width: 50%;
  height: 100%;
  padding: 0 6.66vw;
  overflow-y: scroll;
}
@media screen and (max-width: 1024px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text {
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 0;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text__in {
  padding: 6.66vw 0;
}
@media screen and (max-width: 1024px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text__in {
    padding: 30px var(--sideW) 90px;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2 {
  position: relative;
  font-size: 2.13em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-top: 50px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2 {
    font-size: 1.8em;
    padding-top: 40px;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2::before, .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2::after {
  display: block;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2::before, .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2::after {
    font-size: 0.8em;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2::before {
  content: attr(data-num);
  position: absolute;
  font-size: 0.625em;
  border-bottom: 2px solid #1A1A1A;
  top: 0;
  left: 0;
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text h2::after {
  content: attr(data-en);
  font-size: 0.45em;
  margin-top: 5px;
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text p {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 767px) {
  .about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text p {
    font-size: 1em;
  }
}
.about_scroll_container .about_scroll_sticky .scroll_wrap .scroll_item .text p:last-child {
  margin-bottom: 0;
}

.corporate_issues {
  position: relative;
  background-color: #F7F7F7;
  padding: 105px min(7.2vw, 108px) 110px;
}
@media screen and (max-width: 767px) {
  .corporate_issues {
    padding: 80px var(--sideW) var(--sideW);
  }
}
.corporate_issues::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 120px;
  background-color: #1A1A1A;
  top: 0;
  left: calc(50% - 0.5px);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .corporate_issues::before {
    height: 60px;
  }
}
.corporate_issues h2 {
  font-size: 2em;
  line-height: 1.46;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .corporate_issues h2 {
    font-size: 1.4em;
  }
}
.corporate_issues ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
}
@media screen and (max-width: 767px) {
  .corporate_issues ul {
    gap: 10px;
  }
}
.corporate_issues ul li {
  background-color: #fff;
  padding: 10px 20px;
  font-size: 1.33em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .corporate_issues ul li {
    width: 100%;
    font-size: 1em;
  }
}

.about_branding_01 {
  overflow: hidden;
}
.about_branding_01 .branding_bg {
  height: 453px;
  background: no-repeat center top/cover;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .branding_bg {
    height: 230px;
    margin-bottom: 40px;
    background-size: auto 140%;
  }
}
.about_branding_01 .inner, .about_branding_01 .inner_lg, .about_branding_01 .inner_min, .about_branding_01 .inner_sm {
  position: relative;
}
.about_branding_01 .inner > h2, .about_branding_01 .inner_lg > h2, .about_branding_01 .inner_min > h2, .about_branding_01 .inner_sm > h2 {
  position: absolute;
  font-size: 1.86em;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  background-color: #fff;
  padding: 50px 40px;
  line-height: 1.8;
  right: var(--sideW);
  top: -140px;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .inner > h2, .about_branding_01 .inner_lg > h2, .about_branding_01 .inner_min > h2, .about_branding_01 .inner_sm > h2 {
    position: static;
    font-size: 1.5em;
    writing-mode: horizontal-tb;
    padding: 0;
    margin-bottom: 30px;
  }
}
.about_branding_01 .inner > p, .about_branding_01 .inner_lg > p, .about_branding_01 .inner_min > p, .about_branding_01 .inner_sm > p {
  padding-right: 242px;
  font-size: 0.93em;
  margin-bottom: 240px;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .inner > p, .about_branding_01 .inner_lg > p, .about_branding_01 .inner_min > p, .about_branding_01 .inner_sm > p {
    padding: 0;
    margin-bottom: 80px;
  }
}
.about_branding_01 .inner > p span, .about_branding_01 .inner_lg > p span, .about_branding_01 .inner_min > p span, .about_branding_01 .inner_sm > p span {
  display: block;
  margin-bottom: 0.6em;
}
.about_branding_01 .inner > p span:last-child, .about_branding_01 .inner_lg > p span:last-child, .about_branding_01 .inner_min > p span:last-child, .about_branding_01 .inner_sm > p span:last-child {
  margin-bottom: 0;
}
.about_branding_01 .brand_works {
  position: relative;
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works {
    margin-bottom: 60px;
  }
}
.about_branding_01 .brand_works:last-child {
  margin-bottom: 0;
}
.about_branding_01 .brand_works:nth-of-type(even) .title {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works:nth-of-type(even) .title {
    margin: 0;
  }
}
.about_branding_01 .brand_works:nth-of-type(even) .text {
  right: auto;
  left: 0;
}
.about_branding_01 .brand_works:nth-of-type(even) .bg img {
  right: auto;
  left: 100px;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works:nth-of-type(even) .bg img {
    left: calc(var(--sideW) * -1);
  }
}
.about_branding_01 .brand_works .title {
  position: relative;
  width: 340px;
  order: 1;
  z-index: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works .title {
    margin-bottom: 30px;
  }
}
.about_branding_01 .brand_works .title p {
  display: flex;
  gap: 15px;
  position: absolute;
  align-items: center;
  left: 0;
  bottom: 100%;
  color: #F7F7F7;
  font-size: 2.66em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works .title p {
    position: static;
    font-size: 2em;
    margin-bottom: 15px;
  }
}
.about_branding_01 .brand_works .title p::after {
  content: attr(data-num);
  display: block;
  font-size: 3em;
  font-family: "Outfit", sans-serif;
  font-style: italic;
}
.about_branding_01 .brand_works .title h3 {
  font-size: 2em;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works .title h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}
.about_branding_01 .brand_works .title h3 span {
  padding-bottom: 5px;
  border-bottom: 3px solid #1A1A1A;
}
.about_branding_01 .brand_works .text {
  position: absolute;
  width: 760px;
  max-width: calc(100% - 380px);
  background-color: #fff;
  padding: 70px min(5.33vw, 80px);
  z-index: 1;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works .text {
    position: relative;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }
}
.about_branding_01 .brand_works .text p {
  font-size: 0.93em;
}
.about_branding_01 .brand_works .bg {
  position: relative;
  width: 100%;
  height: 453px;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works .bg {
    height: 300px;
  }
}
.about_branding_01 .brand_works .bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  right: 100px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .about_branding_01 .brand_works .bg img {
    width: calc(100% + var(--sideW) * 2);
    right: auto;
    left: calc(var(--sideW) * -1);
    max-width: none;
  }
}

.service_list li {
  display: flex;
  flex-wrap: wrap;
  gap: 160px 0;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .service_list li {
    gap: 0;
    margin-bottom: 60px;
  }
}
.service_list li:last-child {
  margin-bottom: 0;
}
.service_list li .image {
  position: relative;
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 767px) {
  .service_list li .image {
    height: 250px;
    margin-bottom: 80px;
  }
}
.service_list li .image figure {
  position: absolute;
  width: 100vw;
  min-width: var(--minWidth);
  height: 100%;
  background: no-repeat center top/cover;
  top: 0;
  left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .service_list li .image figure {
    background-size: auto 140%;
  }
}
.service_list li .title {
  position: relative;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .service_list li .title {
    width: 100%;
    margin-bottom: 0px;
  }
}
.service_list li .title::before {
  content: attr(data-num);
  position: absolute;
  font-size: 10em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 0.8;
  color: #F7F7F7;
  top: -0.55em;
  left: -0.66em;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service_list li .title::before {
    font-size: 5em;
    left: -0.3em;
  }
}
.service_list li .title p {
  font-size: 1.46em;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .service_list li .title p {
    font-size: 1.06em;
  }
}
.service_list li .title h2 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .service_list li .title h2 {
    font-size: 2em;
  }
}
.service_list li .title h2::after {
  content: attr(data-en);
  display: block;
  font-size: 0.4em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #E2E2E2;
  letter-spacing: 0.06em;
  margin-top: 10px;
}
.service_list li .text {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .service_list li .text {
    width: 100%;
  }
}
.service_list li .text p {
  font-size: 0.93em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .service_list li .text p {
    font-size: 1em;
  }
}
.service_list li .text p:last-child {
  margin-bottom: 0;
}

.branding_hero {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .branding_hero {
    margin-bottom: 50px;
  }
}
.branding_hero .image {
  position: relative;
  padding-left: min(12.66vw, 190px);
}
@media screen and (max-width: 767px) {
  .branding_hero .image {
    padding: 230px 15px 20px;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.branding_hero .image h2 {
  position: absolute;
  left: 0;
  bottom: 55px;
}
@media screen and (max-width: 767px) {
  .branding_hero .image h2 {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    z-index: 1;
  }
}
.branding_hero .image h2 span {
  display: inline-block;
  background-color: #fff;
  padding: 15px 20px;
  font-size: 1.86em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .branding_hero .image h2 span {
    font-size: 1.5em;
    padding: 10px;
  }
}
.branding_hero .image h2 span:last-child {
  font-size: 2.4em;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .branding_hero .image h2 span:last-child {
    font-size: 1.25em;
    margin-top: 5px;
  }
}
.branding_hero .image img {
  display: block;
}
@media screen and (max-width: 767px) {
  .branding_hero .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.point_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .point_nav {
    gap: 5px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .point_nav li {
    width: calc(50% - 2.5px);
  }
}
.point_nav li:first-child {
  border-left: 1px solid #E2E2E2;
}
@media screen and (max-width: 767px) {
  .point_nav li:first-child {
    border: 0;
  }
}
.point_nav li:nth-child(even) {
  border-left: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
}
@media screen and (max-width: 767px) {
  .point_nav li:nth-child(even) {
    border: 0;
  }
}
.point_nav li a {
  display: block;
  padding: 15px 50px;
  font-size: 1.06em;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point_nav li a {
    display: grid;
    place-content: center;
    height: 100%;
    font-size: 0.8em;
    padding: 15px 10px;
    background-color: #1A1A1A;
    color: #fff;
  }
}
.point_nav li a:hover {
  text-decoration: underline;
}

.point_list li {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .point_list li {
    padding: 50px 0;
  }
}
.point_list li:nth-child(odd)::before {
  content: "";
  position: absolute;
  width: 100vw;
  min-width: var(--minWidth);
  height: 100%;
  background-color: #F7F7F7;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}
.point_list li .text {
  width: 58%;
  padding-right: 4.5%;
}
@media screen and (max-width: 767px) {
  .point_list li .text {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.point_list li .text b {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.13em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #BEBEBE;
  color: #BEBEBE;
  line-height: 1.25;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .point_list li .text b {
    font-size: 0.93em;
  }
}
.point_list li .text b span {
  display: block;
  font-size: 2.35em;
}
@media screen and (max-width: 767px) {
  .point_list li .text b span {
    font-size: 1.8em;
  }
}
.point_list li .text h3 {
  font-size: 2.26em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .point_list li .text h3 {
    font-size: 1.7em;
    margin-bottom: 20px;
  }
}
.point_list li .text p {
  font-size: 0.93em;
  font-weight: 500;
  margin-bottom: 0.8em;
}
.point_list li .text p:last-child {
  margin-bottom: 0;
}
.point_list li .image {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .point_list li .image {
    width: 100%;
  }
}
.point_list li .image img {
  display: block;
  margin: auto;
}

.branding_flow h3 {
  font-size: 0.86em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #BEBEBE;
  margin-bottom: 40px;
}
.branding_flow h3:last-child {
  margin-bottom: 0;
}
.branding_flow h3::before {
  content: attr(data-en);
  display: block;
  font-size: 2.3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1A1A1A;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .branding_flow h3::before {
    font-size: 2em;
  }
}
.branding_flow ul {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .branding_flow ul {
    margin-bottom: 50px;
  }
}
.branding_flow ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 90px;
  margin-bottom: 80px;
}
.branding_flow ul li:last-child {
  margin-bottom: 0;
}
.branding_flow ul li .text {
  width: 50%;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .branding_flow ul li .text {
    width: 100%;
    padding: 0;
  }
}
.branding_flow ul li .text .en {
  display: inline-block;
  font-size: 1.13em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: #BEBEBE;
  font-family: "Outfit", sans-serif;
  border-bottom: 2px solid #BEBEBE;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .branding_flow ul li .text .en {
    font-size: 1em;
  }
}
.branding_flow ul li .text h4 {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .branding_flow ul li .text h4 {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
}
.branding_flow ul li .text p:not([class]) {
  font-size: 0.93em;
  margin-bottom: 1.2em;
}
.branding_flow ul li .image {
  width: calc(50% - 90px);
}
@media screen and (max-width: 767px) {
  .branding_flow ul li .image {
    width: 100%;
  }
}

.flow_num {
  display: flex;
  flex-wrap: wrap;
  gap: 65px 48px;
}
@media screen and (max-width: 767px) {
  .flow_num {
    gap: 50px;
  }
}
.flow_num dl {
  width: calc(33.333% - 32px);
}
@media screen and (max-width: 767px) {
  .flow_num dl {
    width: 100%;
  }
}
.flow_num dl dt {
  position: relative;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 25px 23px;
  color: #fff;
  background-color: #1A1A1A;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .flow_num dl dt {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}
.flow_num dl dt::before {
  content: attr(data-num);
  position: absolute;
  font-size: 2em;
  color: #BEBEBE;
  font-family: "Outfit", sans-serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  left: 23px;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .flow_num dl dt::before {
    font-size: 1.5em;
  }
}
.flow_num dl dt::after {
  content: attr(data-text);
  position: absolute;
  font-size: 0.72em;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.06em;
  color: #1A1A1A;
  line-height: 1.2;
  right: 0;
  bottom: calc(100% + 3px);
}
.flow_num dl dd {
  font-size: 0.93em;
  line-height: 1.7;
}
.flow_num_02 {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
}
.flow_num_02 dl {
  width: calc(25% - 24.75px);
}
@media screen and (max-width: 767px) {
  .flow_num_02 dl {
    width: 100%;
  }
}
.flow_num_02 dl dt {
  position: relative;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 25px 23px;
  color: #fff;
  background-color: #1A1A1A;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .flow_num_02 dl dt {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}
.flow_num_02 dl dt::before {
  content: attr(data-en);
  position: absolute;
  color: #bebebe;
  font-family: "Outfit", sans-serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.66em;
  line-height: 1;
  left: 23px;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .flow_num_02 dl dt::before {
    font-size: 1.5em;
  }
}
.flow_num_02 dl dd {
  font-size: 0.93em;
  line-height: 1.7;
}

.arrow_text {
  width: 100%;
  position: relative;
  text-align: center;
  padding-top: 85px;
  margin: 50px 0 75px;
}
@media screen and (max-width: 767px) {
  .arrow_text {
    margin: 30px 0 60px;
    padding-top: 60px;
    text-align: left;
  }
}
.arrow_text::before {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  border-bottom: 0 none;
  border-top: 34px solid #1A1A1A;
  top: 0;
  left: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .arrow_text::before {
    transform: scale(0.85);
  }
}

.include_voice h2 {
  font-size: min(8vw, 8em);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: center;
  color: #F7F7F7;
  line-height: 1;
  margin-bottom: 40px;
}

.brand_period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  text-align: center;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .brand_period {
    flex-wrap: wrap;
  }
}
.brand_period span {
  display: flex;
  align-items: baseline;
  gap: 0 8px;
  font-size: 1.1em;
}
@media screen and (max-width: 767px) {
  .brand_period span {
    width: 100%;
    justify-content: center;
    gap: 5px;
  }
}
.brand_period span b {
  font-size: 2.7em;
  font-family: "Outfit", sans-serif;
}

.table_case {
  width: 100%;
}
.table_case thead th {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 10px;
  background-color: #1A1A1A;
  border-left: 15px solid #fff;
}
@media screen and (max-width: 767px) {
  .table_case thead th {
    font-size: 1em;
  }
}
.table_case thead th:first-child {
  border-left: 0 none;
  width: 23%;
}
.table_case tbody th,
.table_case tbody td {
  font-size: 1em;
  letter-spacing: 0.06em;
  padding: 15px min(2vw, 30px);
  text-align: center;
  vertical-align: top;
  background-color: #F7F7F7;
  border-top: 15px solid #fff;
}
@media screen and (max-width: 767px) {
  .table_case tbody th,
  .table_case tbody td {
    font-size: 1em;
  }
}
.table_case tbody th {
  font-weight: 700;
}
.table_case tbody td {
  border-left: 15px solid #fff;
  text-align: center;
  padding: 15px min(5vw, 30px);
}
.table_case tbody td:first-child {
  border-left: 0 none;
}
.table_case tbody td.left {
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
}
.table_case--col2 tbody th {
  width: 40%;
}
.table_case--col2 tbody td {
  width: 60%;
}

.table_case2 {
  width: 100%;
}
.table_case2 thead th {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 10px;
  background-color: #1A1A1A;
  border-left: 15px solid #fff;
  width: 33.3%;
}
.table_case2 thead th:first-child {
  border-left: 0 none;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .table_case2 thead th {
    font-size: 1em;
  }
}
.table_case2 tbody th,
.table_case2 tbody td {
  font-size: 1em;
  letter-spacing: 0.06em;
  padding: 15px min(2vw, 30px);
  vertical-align: top;
  background-color: #F7F7F7;
  border-top: 15px solid #fff;
}
@media screen and (max-width: 767px) {
  .table_case2 tbody th,
  .table_case2 tbody td {
    font-size: 1em;
  }
}
.table_case2 tbody th {
  font-weight: 700;
  text-align: center;
}
.table_case2 tbody td {
  border-left: 15px solid #fff;
  text-align: center;
  padding: 15px min(5vw, 30px);
}
.table_case2 tbody td:first-child {
  border-left: 0 none;
}
.table_case2 tbody td.left {
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
}
.table_case2--col2 tbody th {
  width: 40%;
}
.table_case2--col2 tbody td {
  width: 60%;
}

.table_case3 {
  width: 100%;
}
.table_case3 thead th {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 10px;
  background-color: #1A1A1A;
  border-left: 15px solid #fff;
  width: 33.3%;
}
.table_case3 thead th:first-child {
  border-left: 0 none;
  width: 33.3%;
}
@media screen and (max-width: 767px) {
  .table_case3 thead th {
    font-size: 1em;
  }
}
.table_case3 tbody th,
.table_case3 tbody td {
  font-size: 1em;
  letter-spacing: 0.06em;
  padding: 15px min(2vw, 30px);
  vertical-align: top;
  background-color: #F7F7F7;
  border-top: 15px solid #fff;
}
@media screen and (max-width: 767px) {
  .table_case3 tbody th,
  .table_case3 tbody td {
    font-size: 1em;
  }
}
.table_case3 tbody th {
  font-weight: 700;
  text-align: center;
}
.table_case3 tbody td {
  border-left: 15px solid #fff;
  text-align: center;
  padding: 15px min(5vw, 30px);
}
.table_case3 tbody td:first-child {
  border-left: 0 none;
}
.table_case3 tbody td.left {
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
}
.table_case3--col2 tbody th {
  width: 40%;
}
.table_case3--col2 tbody td {
  width: 60%;
}

.dlist_fee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 32px;
  margin-bottom: 30px;
}
.dlist_fee:last-child {
  margin-bottom: 0;
}
.dlist_fee dt {
  display: grid;
  align-content: center;
  width: 248px;
  background-color: #6A6A6A;
  min-height: 60px;
  text-align: center;
  font-size: 1em;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 767px) {
  .dlist_fee dt {
    width: 200px;
    font-size: 1em;
    min-height: 50px;
  }
}
.dlist_fee dd {
  width: calc(100% - 248px - 32px);
  font-size: 0.93em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .dlist_fee dd {
    width: 100%;
  }
}
.dlist_fee dd a {
  display: inline-block;
  border-bottom: 2px solid #1A1A1A;
}

.faq_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.faq_wrap .image {
  width: calc(50% - 60px);
}
@media screen and (max-width: 767px) {
  .faq_wrap .image {
    display: none;
  }
}
.faq_wrap .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .faq_wrap .text {
    width: 100%;
  }
}

.web_create {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.web_create li {
  width: calc(33.333% - 33.3333333333px);
}
@media screen and (max-width: 767px) {
  .web_create li {
    width: 100%;
  }
}
.web_create li.lg {
  width: 100%;
}
.web_create li.lg a .image {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .web_create li.lg a .image {
    aspect-ratio: 800/518;
    margin-bottom: 25px;
  }
}
.web_create li.lg a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.web_create li.lg a h3 {
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .web_create li.lg a h3 {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
  }
}
.web_create li.lg a h3::before {
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  .web_create li.lg a h3::before {
    font-size: 1.8em;
  }
}
.web_create li a {
  display: block;
  position: relative;
}
.web_create li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.web_create li a:hover .image::after {
  animation: shine 0.75s;
}
.web_create li a .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.web_create li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.web_create li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.web_create li a h3 {
  display: inline-block;
  position: relative;
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1.5;
  color: #6A6A6A;
  margin-bottom: 20px;
  padding-right: 60px;
}
.web_create li a h3:last-child {
  margin-bottom: 0;
}
.web_create li a h3::before {
  content: attr(data-en);
  display: block;
  font-size: 2.33em;
  letter-spacing: 0.06em;
  font-family: "Outfit", sans-serif;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .web_create li a h3::before {
    font-size: 1.8em;
  }
}
.web_create li a h3::after {
  content: "";
  position: absolute;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/contain;
  top: 10px;
  right: 0;
}
.web_create li a p {
  font-size: 0.86em;
  line-height: 1.7;
}
.web_create--col2 {
  gap: 76px;
}
.web_create--col2 li {
  width: calc(50% - 38px);
}
@media screen and (max-width: 767px) {
  .web_create--col2 li {
    width: 100%;
  }
}
.web_create--col2 li a .image {
  aspect-ratio: 611/258;
}
@media screen and (max-width: 767px) {
  .web_create--col2 li a .image {
    aspect-ratio: 800/518;
  }
}
.web_create--col2 li a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-stance #container_wrap,
.page-concept #container_wrap,
.page-functionality #container_wrap,
.page-seo #container_wrap,
.page-support #container_wrap,
.page-housing-industry #container_wrap,
.page-pet-industry #container_wrap,
.page-beauty-industry #container_wrap,
.page-restaurant-industry #container_wrap,
.page-agriculture #container_wrap,
.page-ad #container_wrap,
.page-design #container_wrap,
.page-cafe #container_wrap,
.page-beauty #container_wrap,
.page-nursery-school #container_wrap,
.page-animal-hospital #container_wrap,
.page-pet #container_wrap,
.page-manufacturing-industry #container_wrap,
.page-welfare #container_wrap,
.page-clinic #container_wrap,
.page-recruit #container_wrap,
.page-customer-success #container_wrap,
.page-consulting #container_wrap,
.page-spot-consulting #container_wrap,
.page-contents #container_wrap,
.page-advertising-operation #container_wrap,
.page-web-branding #container_wrap,
.page-recruitweb #container_wrap,
.page-recruitment-meeting #container_wrap,
.page-strategy-proposal #container_wrap,
.page-branding #container_wrap,
.page-session #container_wrap,
.page-brand-vision-work #container_wrap,
.page-concept-meeting #container_wrap,
.page-entrepreneurial-branding #container_wrap,
.page-new-business-branding #container_wrap,
.page-employee-branding #container_wrap,
.page-service #container_wrap {
  padding-top: 0;
}
.page-stance #list_breadcrumb,
.page-concept #list_breadcrumb,
.page-functionality #list_breadcrumb,
.page-seo #list_breadcrumb,
.page-support #list_breadcrumb,
.page-housing-industry #list_breadcrumb,
.page-pet-industry #list_breadcrumb,
.page-beauty-industry #list_breadcrumb,
.page-restaurant-industry #list_breadcrumb,
.page-agriculture #list_breadcrumb,
.page-ad #list_breadcrumb,
.page-design #list_breadcrumb,
.page-cafe #list_breadcrumb,
.page-beauty #list_breadcrumb,
.page-nursery-school #list_breadcrumb,
.page-animal-hospital #list_breadcrumb,
.page-pet #list_breadcrumb,
.page-manufacturing-industry #list_breadcrumb,
.page-welfare #list_breadcrumb,
.page-clinic #list_breadcrumb,
.page-recruit #list_breadcrumb,
.page-customer-success #list_breadcrumb,
.page-consulting #list_breadcrumb,
.page-spot-consulting #list_breadcrumb,
.page-contents #list_breadcrumb,
.page-advertising-operation #list_breadcrumb,
.page-web-branding #list_breadcrumb,
.page-recruitweb #list_breadcrumb,
.page-recruitment-meeting #list_breadcrumb,
.page-strategy-proposal #list_breadcrumb,
.page-branding #list_breadcrumb,
.page-session #list_breadcrumb,
.page-brand-vision-work #list_breadcrumb,
.page-concept-meeting #list_breadcrumb,
.page-entrepreneurial-branding #list_breadcrumb,
.page-new-business-branding #list_breadcrumb,
.page-employee-branding #list_breadcrumb,
.page-service #list_breadcrumb {
  position: absolute;
  width: 100%;
  left: 0;
  top: var(--headerHeight);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-stance #list_breadcrumb,
  .page-concept #list_breadcrumb,
  .page-functionality #list_breadcrumb,
  .page-seo #list_breadcrumb,
  .page-support #list_breadcrumb,
  .page-housing-industry #list_breadcrumb,
  .page-pet-industry #list_breadcrumb,
  .page-beauty-industry #list_breadcrumb,
  .page-restaurant-industry #list_breadcrumb,
  .page-agriculture #list_breadcrumb,
  .page-ad #list_breadcrumb,
  .page-design #list_breadcrumb,
  .page-cafe #list_breadcrumb,
  .page-beauty #list_breadcrumb,
  .page-nursery-school #list_breadcrumb,
  .page-animal-hospital #list_breadcrumb,
  .page-pet #list_breadcrumb,
  .page-manufacturing-industry #list_breadcrumb,
  .page-welfare #list_breadcrumb,
  .page-clinic #list_breadcrumb,
  .page-recruit #list_breadcrumb,
  .page-customer-success #list_breadcrumb,
  .page-consulting #list_breadcrumb,
  .page-spot-consulting #list_breadcrumb,
  .page-contents #list_breadcrumb,
  .page-advertising-operation #list_breadcrumb,
  .page-web-branding #list_breadcrumb,
  .page-recruitweb #list_breadcrumb,
  .page-recruitment-meeting #list_breadcrumb,
  .page-strategy-proposal #list_breadcrumb,
  .page-branding #list_breadcrumb,
  .page-session #list_breadcrumb,
  .page-brand-vision-work #list_breadcrumb,
  .page-concept-meeting #list_breadcrumb,
  .page-entrepreneurial-branding #list_breadcrumb,
  .page-new-business-branding #list_breadcrumb,
  .page-employee-branding #list_breadcrumb,
  .page-service #list_breadcrumb {
    position: static;
  }
}

.web_branding_hero {
  display: grid;
  place-content: center;
  place-items: center;
  height: 480px;
  background: no-repeat center/cover;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .web_branding_hero {
    height: 400px;
    margin-bottom: 80px;
  }
}
.web_branding_hero h1 {
  font-size: 0.93em;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
.web_branding_hero h1::before {
  content: attr(data-en);
  display: block;
  font-size: 2.85em;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .web_branding_hero h1::before {
    font-size: 1.8em;
    line-height: 1.2;
    margin-bottom: 15px;
  }
}

.stance_01 .stance_01_bg {
  position: relative;
  height: 453px;
  background: no-repeat center top/cover;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .stance_01 .stance_01_bg {
    height: 230px;
    margin-bottom: 30px;
    background-size: auto 140%;
  }
}
.stance_01 .stance_01_bg::before {
  content: "Build and develop \a a base for attracting customers";
  position: absolute;
  font-size: min(6vw, 6em);
  font-weight: 700;
  line-height: 1.1;
  font-family: "Outfit", sans-serif;
  color: #F7F7F7;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: pre;
}
.stance_01 .inner, .stance_01 .inner_lg, .stance_01 .inner_min, .stance_01 .inner_sm {
  position: relative;
}
.stance_01 .inner > h2, .stance_01 .inner_lg > h2, .stance_01 .inner_min > h2, .stance_01 .inner_sm > h2 {
  position: absolute;
  font-size: 1.86em;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  background-color: #fff;
  white-space: nowrap;
  padding: 50px 40px;
  line-height: 1.8;
  right: var(--sideW);
  top: -140px;
}
@media screen and (max-width: 767px) {
  .stance_01 .inner > h2, .stance_01 .inner_lg > h2, .stance_01 .inner_min > h2, .stance_01 .inner_sm > h2 {
    position: static;
    font-size: 1.5em;
    writing-mode: horizontal-tb;
    padding: 0;
    line-height: 1.7em;
    margin-bottom: 15px;
  }
}
.stance_01 .inner > p, .stance_01 .inner_lg > p, .stance_01 .inner_min > p, .stance_01 .inner_sm > p {
  padding-right: 242px;
  font-size: 0.93em;
}
@media screen and (max-width: 767px) {
  .stance_01 .inner > p, .stance_01 .inner_lg > p, .stance_01 .inner_min > p, .stance_01 .inner_sm > p {
    padding: 0;
  }
}

.branding_area {
  padding: 100px 80px 70px;
  background-color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .branding_area {
    padding: 40px 30px;
  }
}
.branding_area h2 {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .branding_area h2 {
    font-size: 1.75em;
    line-height: 1.6;
  }
}
.branding_area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
@media screen and (max-width: 767px) {
  .branding_area ul {
    justify-content: center;
    gap: 20px;
  }
}
.branding_area ul li {
  width: calc(20% - 24px);
}
@media screen and (max-width: 767px) {
  .branding_area ul li {
    width: calc(50% - 10px);
  }
}
.branding_area ul li img {
  display: block;
  margin: 0 auto 10px;
}
.branding_area ul li figcaption {
  font-size: 0.93em;
  font-weight: 700;
  text-align: center;
}

.concept_point {
  position: relative;
  padding-top: 170px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .concept_point {
    padding-top: 0;
    margin-bottom: 50px;
  }
}
.concept_point:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .concept_point:last-child .text {
    padding-bottom: 0;
  }
}
.concept_point:nth-child(even) .image {
  left: auto;
  right: min((100vw - 100%) / 2 * -1, var(--sideW) * -1);
}
@media screen and (max-width: 767px) {
  .concept_point:nth-child(even) .image {
    right: auto;
  }
}
.concept_point:nth-child(even) .text {
  margin-left: 0;
  padding: 70px min(5.3vw, 80px) 60px 0;
}
@media screen and (max-width: 767px) {
  .concept_point:nth-child(even) .text {
    padding: 40px min(8.3vw, 80px);
  }
}
.concept_point:nth-child(even) .text strong {
  left: 0;
}
@media screen and (max-width: 767px) {
  .concept_point:nth-child(even) .text strong {
    left: min(8.3vw, 80px);
  }
}
.concept_point .image {
  position: absolute;
  width: max(57.1% + (100vw - 100%) / 2, 65.38% - var(--sideW));
  height: 500px;
  top: 0;
  left: min((100vw - 100%) / 2 * -1, var(--sideW) * -1);
}
@media screen and (max-width: 767px) {
  .concept_point .image {
    position: relative;
    width: calc(100% + var(--sideW) * 2);
    height: 300px;
    left: auto;
    margin-left: calc(var(--sideW) * -1);
  }
}
.concept_point .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -40px;
}
.concept_point .text {
  position: relative;
  background-color: #fff;
  padding: 70px 0 60px min(5.3vw, 80px);
  width: 680px;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .concept_point .text {
    width: 100%;
    padding: 40px min(8.3vw, 80px);
    margin-top: -100px;
  }
}
.concept_point .text strong {
  display: flex;
  align-items: center;
  gap: 25px;
  position: absolute;
  top: 0;
  left: min(5.3vw, 80px);
  transform: translateY(-50%);
  font-size: 2.66em;
  color: #F7F7F7;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .concept_point .text strong {
    font-size: 1.25em;
  }
}
.concept_point .text strong span {
  font-size: 3em;
  line-height: 0.8;
}
.concept_point .text h2 {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .concept_point .text h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
  }
}
.concept_point .text h2 span {
  display: inline;
  border-bottom: 3px solid #1A1A1A;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.concept_point .text h2 span:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .concept_point .text p {
    font-size: 1em;
  }
}

.function_list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 76px;
}
@media screen and (max-width: 767px) {
  .function_list {
    gap: 40px;
  }
}
.function_list li {
  width: calc(50% - 38px);
  background-color: #F7F7F7;
  padding: 0 50px 50px;
}
@media screen and (max-width: 767px) {
  .function_list li {
    width: 100%;
    padding: 0 20px 30px;
  }
}
.function_list li img {
  display: block;
  margin: 0 -50px 40px;
  max-width: calc(100% + 100px);
}
@media screen and (max-width: 767px) {
  .function_list li img {
    margin: 0 -20px 20px;
    max-width: calc(100% + 40px);
  }
}
.function_list li h2 {
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .function_list li h2 {
    font-size: 1.33em;
    margin-bottom: 15px;
  }
}
.function_list li h2::before {
  content: attr(data-num);
  display: block;
  font-size: 1.03em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.function_list li p {
  font-size: 0.93em;
}

.support_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .support_menu {
    gap: 20px;
  }
}
.support_menu li {
  width: 380px;
  max-width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .support_menu li {
    max-width: calc(50% - 10px);
  }
}
.support_menu li a {
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
  padding: 40px 15px 50px;
  background-color: #F7F7F7;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .support_menu li a {
    padding: 30px 10px 40px;
    height: 100%;
    border-radius: 15px;
  }
}
.support_menu li a:hover:after {
  bottom: 5px;
}
.support_menu li a::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/contain;
  bottom: -15px;
  left: calc(50% - 15px);
  transform: rotate(90deg);
  transition: 0.5s;
}
.support_menu li a img {
  display: block;
  margin-bottom: 5px;
}
.support_menu li a strong {
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .support_menu li a strong {
    font-size: 1em;
  }
}
.support_menu li a strong::after {
  content: attr(data-en);
  display: block;
  font-size: 0.57em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.support_bg {
  display: grid;
  place-content: center;
  place-items: center;
  background: no-repeat center top/cover;
  height: 453px;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .support_bg {
    height: 300px;
    margin-bottom: 70px;
    background-size: auto 140%;
  }
}
.support_bg h2 {
  text-align: center;
  font-size: 2.13em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .support_bg h2 {
    font-size: 1.8em;
  }
}
.support_bg h2::after {
  content: attr(data-en);
  display: block;
  font-size: 0.4375em;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.support_detail {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .support_detail {
    margin-bottom: 50px;
  }
}
.support_detail:last-child {
  margin-bottom: 0;
}
.support_detail.mb_lg {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .support_detail.mb_lg {
    margin-bottom: 80px;
  }
}
.support_detail dt {
  width: 370px;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .support_detail dt {
    width: 100%;
    font-size: 1.5em;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}
.support_detail dt span {
  display: inline-block;
  border-bottom: 3px solid #1A1A1A;
  margin-bottom: 14px;
}
.support_detail dt span:last-child {
  margin-bottom: 0;
}
.support_detail dd {
  width: calc(100% - 370px);
}
@media screen and (max-width: 767px) {
  .support_detail dd {
    width: 100%;
  }
}
.support_detail dd p {
  font-size: 0.93em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .support_detail dd p {
    font-size: 1em;
  }
}
.support_detail dd p:last-child {
  margin-bottom: 0;
  font-size: 1em;
}

.organization_wrap h2 {
  position: relative;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #6A6A6A;
  padding-top: 220px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .organization_wrap h2 {
    font-size: 0.93em;
    padding-top: 130px;
  }
}
.organization_wrap h2::before {
  content: attr(data-en);
  display: block;
  font-size: 6.66em;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .organization_wrap h2::before {
    font-size: 2.7em;
    margin-bottom: 10px;
  }
}
.organization_wrap h2::after {
  content: "";
  position: absolute;
  width: 300px;
  aspect-ratio: 3/2;
  background: url(../images/organization_icon.png) no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .organization_wrap h2::after {
    width: 180px;
  }
}
.organization_wrap dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .organization_wrap dl {
    margin-bottom: 60px;
  }
}
.organization_wrap dl dt {
  width: 44%;
  font-size: 3.33em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .organization_wrap dl dt {
    width: 100%;
    font-size: 1.8em;
    margin-bottom: 30px;
  }
}
.organization_wrap dl dt span {
  display: inline-block;
  border-bottom: 3px solid #1A1A1A;
  margin-bottom: 17px;
}
.organization_wrap dl dt span:last-child {
  margin-bottom: 0;
}
.organization_wrap dl dd {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .organization_wrap dl dd {
    width: 100%;
  }
}
.organization_wrap ul {
  counter-reset: number 0;
}
.organization_wrap ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  gap: 0 52px;
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .organization_wrap ul li {
    padding: 60px 0;
  }
}
.organization_wrap ul li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  display: block;
  width: 100%;
  text-align: center;
  font-size: 8em;
  line-height: 1;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .organization_wrap ul li::before {
    font-size: 6em;
    margin-bottom: 10px;
  }
}
.organization_wrap ul li::after {
  content: "";
  position: absolute;
  width: 100vw;
  min-width: var(--minWidth);
  height: 100%;
  background-color: #F7F7F7;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}
.organization_wrap ul li:nth-child(2)::after {
  background-color: #EDEDED;
}
.organization_wrap ul li h3 {
  width: 100%;
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6A6A6A;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .organization_wrap ul li h3 {
    font-size: 0.93em;
    margin-bottom: 30px;
  }
}
.organization_wrap ul li h3::before {
  content: attr(data-en);
  display: block;
  font-size: 4.375em;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .organization_wrap ul li h3::before {
    font-size: 3em;
    margin-bottom: 10px;
  }
}
.organization_wrap ul li .image {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .organization_wrap ul li .image {
    width: 100%;
    margin-bottom: 30px;
  }
}
.organization_wrap ul li .text {
  width: calc(58% - 52px);
}
@media screen and (max-width: 767px) {
  .organization_wrap ul li .text {
    width: 100%;
  }
}
.organization_wrap ul li .text p {
  font-size: 0.93em;
}

.special_hero {
  width: 100%;
  background: no-repeat center/cover;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .special_hero {
    margin-bottom: 60px;
  }
}
.special_hero .inner, .special_hero .inner_lg, .special_hero .inner_min, .special_hero .inner_sm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  height: 100vh;
  height: 100svh;
  max-height: 930px;
}
.special_hero .ttl_cmn_01 {
  text-align: left;
  color: #fff;
  margin: 0;
}
.special_hero p {
  position: absolute;
  left: var(--sideW);
  bottom: 70px;
}
@media screen and (max-width: 767px) {
  .special_hero p {
    bottom: 35px;
  }
}
.special_hero p span {
  display: inline-block;
  background-color: #fff;
  padding: 15px 20px;
  font-size: 1.86em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .special_hero p span {
    font-size: 1.25em;
    padding: 10px;
  }
}
.special_hero p span:first-child {
  font-size: 2.4em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .special_hero p span:first-child {
    font-size: 1.5em;
    margin-top: 5px;
  }
}

.brand_design_main {
  position: relative;
  padding-top: 350px;
}
@media screen and (max-width: 767px) {
  .brand_design_main {
    padding-top: 0;
  }
}
.brand_design_main .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 65.4%;
  height: 480px;
}
@media screen and (max-width: 767px) {
  .brand_design_main .image {
    position: static;
    width: auto;
    height: auto;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.brand_design_main .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand_design_main .text {
  position: relative;
  width: 760px;
  max-width: 100%;
  margin-left: auto;
  padding: 60px 0 0 60px;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .brand_design_main .text {
    padding: 20px 20px 0;
    margin-top: -60px;
  }
}
.brand_design_main .text h2 {
  font-size: 1.86em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .brand_design_main .text h2 {
    font-size: 1.36em;
  }
}
.brand_design_main .text p {
  font-size: 0.93em;
  margin-bottom: 30px;
}
.brand_design_main .text .btn_cmn_01 {
  margin: 0;
}

.brand_design_list h2 {
  position: relative;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .brand_design_list h2 {
    font-size: 1.5em;
    padding-top: 0px;
    margin-bottom: 40px;
  }
}
.brand_design_list h2::before {
  content: attr(data-en);
  display: block;
  font-size: 6.66em;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .brand_design_list h2::before {
    font-size: 2.7em;
    margin-bottom: 10px;
  }
}
.brand_design_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.brand_design_list ul li {
  width: calc(33.333% - 33.3333333333px);
}
@media screen and (max-width: 767px) {
  .brand_design_list ul li {
    width: 100%;
  }
}
.brand_design_list ul li a {
  display: block;
  position: relative;
}
.brand_design_list ul li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.brand_design_list ul li a:hover .image::after {
  animation: shine 0.75s;
}
.brand_design_list ul li a .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  aspect-ratio: 400/260;
}
.brand_design_list ul li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.brand_design_list ul li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.brand_design_list ul li a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand_design_list ul li a strong {
  display: inline-block;
  position: relative;
  color: #918E8B;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
.brand_design_list ul li a strong::before {
  content: attr(data-en);
  display: block;
  font-size: 2em;
  font-family: "Outfit", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .brand_design_list ul li a strong::before {
    font-size: 2em;
  }
}
.brand_design_list ul li a strong::after {
  content: "";
  position: absolute;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/cover;
  left: calc(100% + 18px);
  top: 9px;
}
.brand_design_list ul li a p {
  font-size: 0.86em;
  font-weight: 500;
  line-height: 1.8;
}

.branding_design_grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 0;
}
.branding_design_grid .text {
  width: 62%;
  padding-right: 7.2%;
}
@media screen and (max-width: 767px) {
  .branding_design_grid .text {
    width: 100%;
    padding: 0;
  }
}
.branding_design_grid .text h2 {
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.66;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .branding_design_grid .text h2 {
    font-size: 1.65em;
  }
}
.branding_design_grid .text p {
  margin-bottom: 1em;
}
.branding_design_grid .text p:last-of-type {
  margin-bottom: 2.5em;
}
.branding_design_grid .text p:last-child {
  margin-bottom: 0;
}
.branding_design_grid .text .btn_cmn_01 {
  margin-inline: 0;
}
.branding_design_grid .image {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .branding_design_grid .image {
    width: 100%;
  }
}
.branding_design_grid .image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .branding_design_grid .image img {
    aspect-ratio: 400/260;
  }
}

.map {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .map {
    height: auto;
  }
}
.map::before {
  content: "";
  display: block;
  height: 368px;
}
@media screen and (max-width: 767px) {
  .map::before {
    height: 0;
    padding-top: 75%;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map .btn_cmn_01 {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 200px;
  font-family: 1em;
  font-weight: 300;
  line-height: 50px;
  background-size: 15px auto;
  transform: translateY(50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .map .btn_cmn_01 {
    width: 160px;
    transform: translateY(80%);
    right: 15px;
  }
}

.ttl_top_event {
  position: relative;
  text-align: center;
  font-size: 1.06em;
  font-weight: 700;
  line-height: 1;
  padding-top: 130px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .ttl_top_event {
    font-size: 0.8em;
    padding-top: 100px;
    margin-bottom: 50px;
  }
}
.ttl_top_event::before {
  content: attr(data-en);
  display: block;
  font-size: 7.5em;
  font-family: "Outfit", sans-serif;
  left: 0.06em;
  color: #F7F7F7;
  letter-spacing: 0.06em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_top_event::before {
    font-size: 3.5em;
    margin-bottom: 10px;
  }
}
.ttl_top_event::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 120px;
  background-color: #1A1A1A;
  top: 0;
  left: calc(50% - 0.5px);
}
@media screen and (max-width: 767px) {
  .ttl_top_event::after {
    height: 80px;
  }
}

.ttl_border {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .ttl_border {
    margin-bottom: 60px;
  }
}
.ttl_border:last-child {
  margin-bottom: 0;
}
.ttl_border span {
  display: inline-block;
  font-size: 1.6em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  border-bottom: 3px solid #1A1A1A;
}
@media screen and (max-width: 767px) {
  .ttl_border span {
    font-size: min(4.8vw, 24px);
  }
}
.ttl_border::before {
  content: attr(data-ja);
  display: block;
  font-size: 1.33em;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  text-align: center;
  line-height: 2;
}

.ttl_cmn_01 {
  display: block;
  position: relative;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    margin-bottom: 60px;
  }
}
.ttl_cmn_01::before {
  content: attr(data-en);
  display: block;
  font-size: 3.8em;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin-bottom: 5px;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01::before {
    font-size: 3em;
  }
}
.ttl_cmn_01.mb_sm {
  margin-bottom: 40px;
}

.ttl_cmn_02 {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 1em;
  }
}
.ttl_cmn_02::before {
  content: attr(data-en);
  display: block;
  font-size: 6.66em;
  font-family: "Outfit", sans-serif;
  left: 0.06em;
  color: #F7F7F7;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02::before {
    font-size: 4.5em;
    margin-bottom: 20px;
  }
}

.ttl_other {
  position: relative;
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  padding-top: 235px;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .ttl_other {
    font-size: 0.93em;
    padding-top: 215px;
  }
}
.ttl_other::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 185px;
  background-color: #1A1A1A;
  top: 0;
  left: calc(50% - 0.5px);
}
.ttl_other::after {
  content: "";
  position: absolute;
  width: 15px;
  aspect-ratio: 1/1;
  background-color: #1A1A1A;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  animation: ttlOther 3s ease infinite;
}
.ttl_other span {
  display: block;
  font-size: 4.375em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F7F7F7;
  line-height: 0.8;
  border-radius: 0;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_other span {
    font-size: 3em;
    margin-bottom: 20px;
  }
}

@keyframes ttlOther {
  0% {
    top: 0;
  }
  100% {
    top: 170px;
  }
}
.ttl_post_01 {
  position: relative;
  font-size: 0.93em;
  font-weight: 700;
  padding-left: 30px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .ttl_post_01 {
    padding-left: 0;
  }
}
.ttl_post_01::before {
  content: attr(data-en);
  display: block;
  font-size: 3.85em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #1A1A1A;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.ttl_post_01::after {
  content: "";
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  background-color: #1A1A1A;
  border-radius: 50%;
  top: 32px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .ttl_post_01::after {
    content: none;
  }
}
.ttl_post_01--page {
  color: #918E8B;
}
.ttl_post_01--page::before {
  margin-bottom: 10px;
}

.ttl_post_02 {
  display: block;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl_post_02 {
    font-size: 1.25em;
  }
}

.ttl_topics {
  font-size: 2.13em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_topics {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}
.ttl_topics + p {
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .ttl_topics + p {
    margin-bottom: 40px;
  }
}

.ttl_label {
  display: block;
  background-color: #f7f7f7;
  color: #1A1A1A;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 18px 28px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .ttl_label {
    font-size: 1.2em;
    padding: 15px 20px;
    margin-bottom: 30px;
  }
}
.ttl_label:last-child {
  margin-bottom: 0;
}

.ttl_brand_main {
  display: block;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .ttl_brand_main {
    font-size: 1.8em;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.ttl_brand_main::before {
  content: attr(data-en);
  display: block;
  font-size: 2.25em;
  font-weight: 700;
  color: #F7F7F7;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ttl_brand_main::before {
    font-size: 1.4em;
    margin-bottom: 20px;
  }
}

.ttl_image {
  display: block;
  position: relative;
  font-size: 1.06em;
  text-align: center;
  font-weight: 700;
  padding-top: 90px;
  margin-bottom: 80px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .ttl_image {
    padding-top: 80px;
    margin-bottom: 40px;
  }
}
.ttl_image::before {
  content: "";
  display: block;
  width: 100%;
  height: 61px;
  background: no-repeat center/contain;
  transform: rotate(-10deg);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .ttl_image::before {
    height: 50px;
    margin-bottom: 0px;
  }
}
.ttl_image::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 76px;
  background-color: #1A1A1A;
  top: 0;
  left: calc(50% - 0.5px);
}
@media screen and (max-width: 767px) {
  .ttl_image::after {
    height: 65px;
  }
}
.ttl_image.txt_point::before {
  background-image: url(../images/txt_point.svg);
}
.ttl_image.txt_support::before {
  background-image: url(../images/txt_support.svg);
}
.ttl_image.txt_things::before {
  height: 75px;
  background-image: url(../images/txt_things.svg);
}
.ttl_image.txt_recruit {
  padding-top: 0;
}
.ttl_image.txt_recruit::before {
  height: 75px;
  background-image: url(../images/txt_recruit.svg);
}
.ttl_image.txt_recruit::after {
  display: none;
}
.ttl_image.txt_message {
  font-size: 2.25em;
  line-height: 1.375;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ttl_image.txt_message {
    font-size: 1.75em;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.ttl_image.txt_message::before {
  background-image: url(../images/txt_message.svg);
  margin-bottom: 35px;
}
.ttl_image.txt_message_min {
  padding-top: 20px;
  margin-bottom: 30px;
}
.ttl_image.txt_message_min::before {
  background-image: url(../images/txt_message.svg);
  margin-bottom: 25px;
}
.ttl_image.txt_message_min::after {
  content: none;
}
.ttl_image.txt_stance::before {
  height: 51px;
  background-image: url(../images/txt_stance.svg);
}

.ttl_branding_01 {
  display: block;
  text-align: center;
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .ttl_branding_01 {
    margin-bottom: 40px;
  }
}
.ttl_branding_01::before {
  content: attr(data-en);
  display: block;
  font-size: 5em;
  font-weight: 700;
  color: #F7F7F7;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .ttl_branding_01::before {
    font-size: 3em;
  }
}

.ttl_branding_02 {
  display: block;
  position: relative;
  text-align: center;
  font-size: 0.93em;
  font-weight: 700;
  color: #BEBEBE;
  padding-bottom: 25px;
  margin-bottom: 25px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #F7F7F7;
}
.ttl_branding_02::before {
  content: attr(data-en);
  display: block;
  font-size: 2.85em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #1A1A1A;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .ttl_branding_02::before {
    font-size: 3em;
  }
}

.ttl_voice_media {
  display: block;
  font-size: 1.6em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 1px solid #E2E2E2;
}

.ttl_voice_media_02 {
  display: block;
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 70px;
}
.ttl_voice_media_02::before {
  content: attr(data-en);
  display: block;
  font-size: 4.375em;
  font-weight: 700;
  color: #F7F7F7;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .ttl_voice_media_02::before {
    font-size: 2.2em;
  }
}

.list_project {
  margin-bottom: 50px;
}
.list_project:last-child {
  margin-bottom: 0;
}
.list_project li {
  margin-bottom: 30px;
}
.list_project li:last-child {
  margin-bottom: 0;
}
.list_project li a {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  padding: 45px 50px;
  color: #fff;
  height: 488px;
  transition: none;
  background: no-repeat center top/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .list_project li a {
    height: 100%;
    background-size: auto 120%;
    padding: 100px 25px 25px;
  }
}
.list_project li a:hover::before {
  background-color: rgba(26, 26, 26, 0.3);
}
.list_project li a:hover::after {
  animation: shine 0.75s;
}
.list_project li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.5);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.list_project li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_project li a .text {
  position: relative;
  z-index: 1;
}
.list_project li a .text .title {
  font-size: 1.6em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .list_project li a .text .title {
    font-size: 1.25em;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}
.list_project li a .text .title.ja {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 700;
}
.list_project li a .text .sub_title {
  font-size: 0.93em;
  font-weight: 700;
  margin-bottom: 15px;
}
.list_project li a .text dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 0.93em;
}
.list_project li a .text dl dt {
  font-weight: 500;
  letter-spacing: 0.06em;
}
.list_project li a .text dl dd {
  font-weight: 700;
}
.list_project li a .text .cat {
  font-size: 0.93em;
  letter-spacing: 0.06em;
}

.list_works {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .list_works {
    gap: 50px;
  }
}
.list_works:last-child {
  margin-bottom: 0;
}
.list_works li {
  width: calc(33.333% - 33.3333333333px);
}
@media screen and (max-width: 767px) {
  .list_works li {
    width: 100%;
  }
}
.list_works li a:hover .image::after {
  animation: shine 0.75s;
}
.list_works li a .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 20/13;
  margin-bottom: 25px;
}
.list_works li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_works li a .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_works li a .biz {
  font-size: 0.8em;
  font-weight: 500;
}
.list_works li a .biz span {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.list_works li a .title {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .list_works li a .title {
    font-size: 1.1em;
  }
}
.list_works li a .cat {
  font-size: 0.8em;
  letter-spacing: 0.06em;
  color: #918E8B;
}
.list_works li a .cat span {
  font-family: "Outfit", sans-serif;
}

.list_staff {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 60px;
}
@media screen and (max-width: 767px) {
  .list_staff {
    gap: 40px 20px;
  }
}
.list_staff li {
  width: calc(25% - 45px);
}
@media screen and (max-width: 767px) {
  .list_staff li {
    width: calc(50% - 10px);
  }
}
.list_staff li a {
  display: block;
  position: relative;
}
.list_staff li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.list_staff li a:hover .image::after {
  animation: shine 0.75s;
}
.list_staff li a .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.list_staff li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.list_staff li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_staff li a .name {
  font-size: 1.2em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .list_staff li a .name {
    font-size: 1em;
  }
}
.list_staff li a .post {
  font-size: 0.8em;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #918E8B;
  margin-bottom: 1opx;
}

.list_voice {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_voice {
    margin-bottom: 60px;
  }
}
.list_voice:last-child {
  margin-bottom: 0;
}
.list_voice li {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_voice li {
    margin-bottom: 40px;
  }
}
.list_voice li:last-child {
  margin-bottom: 0;
}
.list_voice li a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 20px 68px;
}
.list_voice li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.list_voice li a:hover .image::after {
  animation: shine 0.75s;
}
.list_voice li a .image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .list_voice li a .image {
    width: 100%;
  }
}
.list_voice li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.list_voice li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_voice li a .image img {
  display: block;
  margin: auto;
}
.list_voice li a .text {
  width: calc(50% - 68px);
}
@media screen and (max-width: 767px) {
  .list_voice li a .text {
    width: 100%;
  }
}
.list_voice li a .text .num {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 6.66em;
  line-height: 0.9;
  color: #F7F7F7;
  font-style: italic;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .list_voice li a .text .num {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 5em;
    transform: translateY(-50%);
  }
}
.list_voice li a .text .date {
  font-size: 0.75em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  margin-bottom: 15px;
}
.list_voice li a .text .title {
  font-size: 1.46em;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .list_voice li a .text .title {
    font-size: 1.2em;
  }
}
.list_voice li a .text .company {
  font-size: 0.93em;
  font-weight: 700;
  margin-bottom: 15px;
}
.list_voice02 {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_voice02 {
    gap: 40px;
  }
}
.list_voice02:last-child {
  margin-bottom: 0;
}
.list_voice02 li {
  width: calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .list_voice02 li {
    width: 100%;
  }
}
.list_voice02 li a {
  display: block;
}
.list_voice02 li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.list_voice02 li a:hover .image::after {
  animation: shine 0.75s;
}
.list_voice02 li a .image {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.list_voice02 li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.list_voice02 li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_voice02 li a .image img {
  display: block;
  margin: auto;
}
.list_voice02 li a .title {
  font-size: 1.46em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .list_voice02 li a .title {
    font-size: 1.13em;
  }
}
.list_voice02 li a .company {
  font-size: 0.93em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.list_voice02 li a .text {
  font-size: 0.93em;
  line-height: 1.78;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .list_voice02 li a .text {
    -webkit-line-clamp: 2;
  }
}

.list_category {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 34px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .list_category {
    gap: 20px;
    margin-bottom: 60px;
  }
}
.list_category li {
  position: relative;
}
.list_category li a {
  display: block;
  position: relative;
  min-width: 180px;
  padding: 0 20px;
  background-color: #F7F7F7;
  font-size: 0.93em;
  font-weight: 500;
  line-height: 44px;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .list_category li a {
    min-width: 1px;
    padding: 0 15px;
    font-size: 0.8em;
    line-height: 30px;
  }
}
.list_category li a:hover {
  background-color: #1A1A1A;
  color: #fff;
}
.list_category li a:hover::after {
  animation: shine 0.75s;
}
.list_category li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_category li span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #1A1A1A;
  top: -21px;
  right: -15px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .list_category li span {
    width: 26px;
    top: -15px;
    right: -10px;
    font-size: 0.8em;
  }
}

.list_journal {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 50px;
  margin-bottom: 80px;
}
.list_journal:last-child {
  margin-bottom: 0;
}
.list_journal li {
  width: calc(33.333% - 33.3333333333px);
}
@media screen and (max-width: 767px) {
  .list_journal li {
    width: 100%;
  }
}
.list_journal li a {
  display: block;
}
.list_journal li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.list_journal li a:hover .image::after {
  animation: shine 0.5s;
}
.list_journal li a .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 25px;
}
.list_journal li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.list_journal li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_journal li a .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_journal li a .post_date {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  margin-bottom: 10px;
}
.list_journal li a .post_date p {
  font-size: 0.8em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
}
.list_journal li a .post_date p.reedit {
  display: flex;
  align-items: center;
  gap: 7px;
}
.list_journal li a .post_date p.reedit::before {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/ico_readit.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .list_journal li a .post_date p.reedit::before {
    width: 10px;
  }
}
.list_journal li a .title {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .list_journal li a .title {
    font-size: 1.25em;
  }
}
.list_journal li a .post_text {
  font-size: 0.86em;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 12px;
}
.list_journal li a .post_info {
  font-size: 0.86em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
}
.list_journal li a .post_info span {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.06em;
}

.list_topics {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_topics {
    margin-bottom: 50px;
  }
}
.list_topics:last-child {
  margin-bottom: 0;
}
.list_topics li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: 1px solid #E2E2E2;
  padding: 23px 30px;
}
@media screen and (max-width: 767px) {
  .list_topics li {
    padding: 20px 0;
  }
}
.list_topics li .date {
  width: 100px;
  font-size: 0.75em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .list_topics li .date {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1em;
  }
}
.list_topics li .title {
  max-width: calc(100% - 100px);
  font-size: 0.93em;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .list_topics li .title {
    max-width: 100%;
  }
}

.list_event {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_event {
    margin-bottom: 50px;
  }
}
.list_event:last-child {
  margin-bottom: 0;
}
.list_event li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 65px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_event li {
    gap: 20px;
    margin-bottom: 60px;
  }
}
.list_event li:last-child {
  margin-bottom: 0;
}
.list_event li.event_end .image {
  position: relative;
}
.list_event li.event_end .image::after {
  content: "It’s over";
  position: absolute;
  display: grid;
  place-content: center;
  font-size: 1.66em;
  color: #fff;
  font-family: "Outfit", sans-serif;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
  top: 0;
  left: 0;
}
.list_event li .image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .list_event li .image {
    width: 100%;
  }
}
.list_event li .image img {
  display: block;
}
.list_event li .text {
  width: calc(50% - 65px);
}
@media screen and (max-width: 767px) {
  .list_event li .text {
    width: 100%;
  }
}
.list_event li .text .update {
  font-size: 0.75em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
.list_event li .text strong {
  display: block;
  font-size: 1.46em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .list_event li .text strong {
    font-size: 1.2em;
  }
}
.list_event li .text dl {
  display: flex;
}
.list_event li .text dl:last-of-type {
  margin-bottom: 15px;
}
.list_event li .text dl dt,
.list_event li .text dl dd {
  font-size: 0.93em;
  letter-spacing: 0.06em;
}
.list_event li .text dl dt {
  flex-shrink: 0;
  white-space: nowrap;
}

.list_event_top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_event_top {
    margin-bottom: 50px;
  }
}
.list_event_top:last-child {
  margin-bottom: 0;
}
.list_event_top li {
  width: calc(33.3333% - 33.3333333333px);
}
@media screen and (max-width: 767px) {
  .list_event_top li {
    width: 100%;
  }
}
.list_event_top li.event_end .image {
  position: relative;
}
.list_event_top li.event_end .image::before {
  content: none;
}
.list_event_top li.event_end .image::after {
  content: "It’s over";
  position: absolute;
  display: grid;
  place-content: center;
  font-size: 1.66em;
  color: #fff;
  font-family: "Outfit", sans-serif;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
  top: 0;
  left: 0;
}
.list_event_top li a {
  display: block;
}
.list_event_top li a:hover .image::before {
  animation: shine 0.5s;
}
.list_event_top li .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .list_event_top li .image {
    margin-bottom: 20px;
  }
}
.list_event_top li .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_event_top li .image img {
  display: block;
}
.list_event_top li dl {
  display: flex;
  margin-bottom: 10px;
}
.list_event_top li dl dt,
.list_event_top li dl dd {
  font-size: 0.93em;
  letter-spacing: 0.06em;
}
.list_event_top li dl dt {
  flex-shrink: 0;
  white-space: nowrap;
}
.list_event_top li strong {
  display: block;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .list_event_top li strong {
    font-size: 1.125em;
  }
}

.list_voice-media {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 50px;
  margin-bottom: 80px;
}
.list_voice-media li {
  width: calc(33.333% - 33.3333333333px);
}
@media screen and (max-width: 767px) {
  .list_voice-media li {
    width: 100%;
  }
}
.list_voice-media li a {
  display: block;
}
.list_voice-media li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.list_voice-media li a:hover .image::after {
  animation: shine 0.5s;
}
.list_voice-media li a .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
}
.list_voice-media li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.list_voice-media li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_voice-media li a .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_voice-media li a .date {
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
}
.list_voice-media li a .cat {
  font-size: 0.86em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
}
.list_voice-media li a .cat span {
  letter-spacing: 0.06em;
}
.list_voice-media li a .title {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .list_voice-media li a .title {
    font-size: 1.06em;
  }
}

.list_voice-media_top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.list_voice-media_top li {
  width: 100%;
}
.list_voice-media_top li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px 40px;
}
@media screen and (max-width: 767px) {
  .list_voice-media_top li a {
    gap: 20px;
  }
}
.list_voice-media_top li a:hover .image::before {
  background-color: rgba(26, 26, 26, 0.4);
}
.list_voice-media_top li a:hover .image::after {
  animation: shine 0.5s;
}
.list_voice-media_top li a .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .list_voice-media_top li a .image {
    width: 120px;
  }
}
.list_voice-media_top li a .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0);
  top: 0;
  left: 0;
  transition: 0.5s;
}
.list_voice-media_top li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.list_voice-media_top li a .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_voice-media_top li a .text {
  width: calc(100% - 150px - 40px);
}
@media screen and (max-width: 767px) {
  .list_voice-media_top li a .text {
    width: calc(100% - 120px - 20px);
  }
}
.list_voice-media_top li a .date {
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
}
.list_voice-media_top li a .cat {
  font-size: 0.86em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
}
.list_voice-media_top li a .cat span {
  letter-spacing: 0.06em;
}
.list_voice-media_top li a .title {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .list_voice-media_top li a .title {
    font-size: 1em;
  }
}

.dlist_category {
  margin-bottom: 20px;
}
.dlist_category:last-child {
  margin-bottom: 0;
}
.dlist_category dt {
  position: relative;
  font-size: 1.2em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 66px;
  padding: 0 30px;
  background-color: #F7F7F7;
  cursor: pointer;
}
.dlist_category dt::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/contain;
  top: calc(50% - 15px);
  right: 30px;
  transform: rotate(90deg);
  transition: 0.5s;
}
.dlist_category dt.js_open::after {
  transform: rotate(-90deg);
}
.dlist_category dd {
  display: none;
  padding: 25px 30px 30px;
}
@media screen and (max-width: 767px) {
  .dlist_category dd {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    padding-inline: 0;
  }
}
.dlist_category dd ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86em;
}
@media screen and (max-width: 767px) {
  .dlist_category dd ul {
    gap: 10px;
  }
}
.dlist_category dd ul li::after {
  content: "／";
  display: inline-block;
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .dlist_category dd ul li::after {
    content: none;
  }
}
.dlist_category dd ul li:last-child::after {
  content: none;
}
.dlist_category dd a {
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .dlist_category dd a {
    display: block;
    line-height: 24px;
    text-align: center;
    background-color: #F7F7F7;
    border-radius: 5px;
    padding: 0 15px;
  }
}
.dlist_category dd a:hover {
  text-decoration: underline;
}

.dlist_faq {
  margin-bottom: 30px;
}
.dlist_faq:last-child {
  margin-bottom: 0;
}
.dlist_faq dt {
  display: flex;
  align-items: baseline;
  gap: 0 10px;
  position: relative;
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 0 40px 10px 0;
  border-bottom: 1px solid #1A1A1A;
}
@media screen and (max-width: 767px) {
  .dlist_faq dt {
    font-size: 1em;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .dlist_faq dt.js_open::after {
    transform: rotate(-90deg);
  }
}
.dlist_faq dt::before {
  content: "Q.";
  display: block;
  flex-shrink: 0;
  font-size: 1.5em;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.2;
  transform: translateY(2px);
}
.dlist_faq dt::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/contain;
  right: 0;
  top: 0.2em;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .dlist_faq dt::after {
    width: 20px;
  }
}
.dlist_faq dd {
  display: none;
  align-items: baseline;
  gap: 0 10px;
  position: relative;
  font-size: 0.93em;
  line-height: 1.7;
  padding: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .dlist_faq dd {
    display: none;
  }
}
.dlist_faq dd::before {
  content: "A.";
  display: block;
  flex-shrink: 0;
  font-size: 1.5em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  .dlist_faq dd::before {
    font-size: 2em;
  }
}

.table_parent {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.btn_cmn_01 {
  display: block;
  position: relative;
  overflow: hidden;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center right 17px;
  background-color: #464646;
  width: 400px;
  max-width: 100%;
  color: #fff;
  text-align: center;
  line-height: 75px;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01 {
    line-height: 58px;
  }
}
.btn_cmn_01:last-child {
  margin-bottom: 0;
}
.btn_cmn_01:hover::after {
  animation: shine 0.75s;
}
.btn_cmn_01:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.btn_cmn_01--min {
  width: 150px;
  font-size: 0.86em;
  font-weight: 400;
  line-height: 35px;
  margin-inline: 0;
  background-size: 9px auto;
  background-position: center right 7px;
}
.btn_cmn_01--xlg {
  width: 800px;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.btn_more {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 68px;
  padding-right: 65px;
  font-family: "Outfit", sans-serif;
  font-size: 1em;
  font-weight: 300;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_more {
    height: 60px;
    padding-right: 57px;
  }
}
.btn_more:hover::after {
  background-position: center, center left calc(50% + 5px);
}
.btn_more::after {
  content: "";
  position: absolute;
  width: 68px;
  aspect-ratio: 1/1;
  top: 0;
  right: -15px;
  background: url(../images/ico_btn.svg) no-repeat center/contain, url(../images/ico_arrow_right.svg) no-repeat center/22px auto;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_more::after {
    width: 60px;
    background-size: contain, 18px;
  }
}
.btn_more.ja {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.btn_more--lg {
  height: 99px;
  padding-right: 96px;
}
@media screen and (max-width: 767px) {
  .btn_more--lg {
    height: 74px;
    padding-right: 70px;
  }
}
.btn_more--lg:after {
  width: 99px;
  background-size: contain, 30px auto;
}
@media screen and (max-width: 767px) {
  .btn_more--lg:after {
    width: 74px;
    background-size: contain, 25px;
  }
}
.btn_more--sm {
  height: 40px;
  padding-right: 43px;
  font-size: 0.8em;
  font-weight: 300;
}
.btn_more--sm::after {
  width: 40px;
  background-size: contain, 13px;
}
.btn_more--white {
  color: #fff;
}
.btn_more--white::after {
  background-image: url(../images/ico_btn_white.svg), url(../images/ico_arrow_right_white.svg);
}
.btn_more--bold {
  font-weight: 700;
}
.btn_more.ico_youtube {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.btn_more.ico_youtube::before {
  content: "";
  display: inline-block;
  width: 23px;
  aspect-ratio: 23/18;
  background: url(../images/ico_yt_black.svg) no-repeat center/contain;
  margin-right: 5px;
}

.txt_link_01 {
  display: inline-block;
  position: relative;
  font-size: 0.86em;
  font-weight: 700;
}
.txt_link_01:hover::after {
  transform: scale(0.3, 1);
}
.txt_link_01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1A1A1A;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}

.txt_link_02 {
  display: inline-block;
  position: relative;
  font-size: 0.93em;
  font-weight: 700;
  padding-right: 45px;
}
.txt_link_02:hover {
  text-decoration: underline;
}
.txt_link_02::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/contain;
  right: 0;
  top: calc(50% - 15px);
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
}
@media screen and (max-width: 767px) {
  .list_btns li {
    width: 100%;
  }
}

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

.img_parallax {
  position: relative;
  overflow: hidden;
}
.img_parallax .img_parallax_item {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 8px;
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.93em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  background-color: #F7F7F7;
  border-radius: 50%;
  width: 30px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background-color: #1A1A1A;
  color: #fff;
}

#list_breadcrumb {
  font-size: 0.8em;
  margin-bottom: 65px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb {
    margin-bottom: 80px;
    text-align: left;
    margin-left: 20px;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_lg, #list_breadcrumb .inner_min, #list_breadcrumb .inner_sm {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  width: auto;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb .inner, #list_breadcrumb .inner_lg, #list_breadcrumb .inner_min, #list_breadcrumb .inner_sm {
    flex-wrap: wrap;
    gap: 0.3em;
    padding: 0 calc(var(--sideW) / 2);
  }
}

#toc_container {
  background-color: #F7F7F7;
  padding: 35px 40px 40px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  #toc_container {
    padding: 25px 15px 30px;
    margin-top: 50px;
  }
}
#toc_container:first-child {
  margin-top: 0;
}
#toc_container .toc_title {
  position: relative;
  font-size: 1.2em;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 35px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_title {
    margin-bottom: 15px;
  }
}
#toc_container .toc_title::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  background-color: #1A1A1A;
  left: 0;
  top: calc(50% - 0.5px);
}
#toc_container .toc_list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  position: relative;
  font-size: 0.93em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.14;
}
#toc_container .toc_list li::before {
  content: "";
  display: block;
  width: 11px;
  aspect-ratio: 1/1;
  background-color: #1A1A1A;
  border-radius: 50%;
  flex-shrink: 0;
}
#toc_container .toc_list li ul {
  display: none;
}

.read {
  text-align: center;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 3em;
  font-size: 1em;
}
.read:last-child {
  margin-bottom: 0;
}
.read--left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .read--sp-left {
    text-align: left;
  }
  .read--sp-left br {
    display: none;
  }
}
.read span {
  display: block;
  margin-bottom: 15px;
}
.read span:last-child {
  margin-bottom: 0;
}

.al_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .al_center--sp {
    text-align: center;
  }
}

.nolink {
  pointer-events: none;
}

.disp_ib {
  display: inline-block;
}

.dlist_form {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .dlist_form {
    gap: 10px;
    margin-bottom: 25px;
  }
}
.dlist_form:last-of-type {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .dlist_form:last-of-type {
    margin-bottom: 40px;
  }
}
.dlist_form dt {
  width: 33.3333%;
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .dlist_form dt {
    width: 100%;
  }
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 47px;
  line-height: 23px;
  text-align: center;
  background-color: #1A1A1A;
  color: #fff;
  font-size: 0.83em;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.dlist_form dd {
  width: 66.6666%;
}
@media screen and (max-width: 767px) {
  .dlist_form dd {
    width: 100%;
  }
}
.dlist_form dd.address .wpcf7-form-control-wrap:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.dlist_form dd.address .wpcf7-form-control-wrap:first-child::before {
  content: "〒";
  display: block;
  font-size: 1.06em;
  font-weight: 500;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 20px 23px;
  background-color: #F7F7F7;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    font-size: 1.6rem;
    padding: 15px 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #989898;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #989898;
}

select {
  width: auto;
  min-width: 418px;
  padding-right: 40px;
  background: url(../images/ico_select.svg) no-repeat center right 20px;
  background-color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  select {
    min-width: 1px;
  }
}

textarea {
  height: 190px;
}

#zip {
  width: 230px;
  max-width: 100%;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.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 {
  scale: 1;
}
.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: 40px;
}
.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: 25px;
  aspect-ratio: 1/1;
  background-color: #F7F7F7;
  left: 0;
  top: calc(50% - 12.5px);
}
.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: 15px;
  height: 7px;
  border-left: 2px solid #1A1A1A;
  border-bottom: 2px solid #1A1A1A;
  left: 5px;
  top: 10px;
  transform: rotate(-45deg);
  scale: 0;
  transition: 0.5s;
}

.doui {
  margin-bottom: 60px;
  text-align: center;
}
.doui .wpcf7-acceptance {
  display: inline-block;
}

.wpcf7-submit {
  display: block;
  position: relative;
  overflow: hidden;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center right 17px;
  background-color: #1A1A1A;
  width: 400px;
  max-width: 100%;
  color: #fff;
  text-align: center;
  line-height: 75px;
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 auto;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    line-height: 58px;
  }
}
.wpcf7-submit:hover {
  opacity: 0.7;
}

.btn_back {
  display: block;
  width: 380px;
  max-width: 100%;
  background-color: #1A1A1A;
  border: 1px solid #1A1A1A;
  height: 84px;
  line-height: 82px;
  border-radius: 40px;
  font-size: 1.1em;
  transition: 0.3s;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn_back {
    height: 55px;
    line-height: 53px;
  }
}
.btn_back:hover {
  background-color: #fff;
  color: #1A1A1A;
}

.form_privacy {
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  padding: 28px 0 35px;
  margin-bottom: 40px;
}
.form_privacy strong {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 3px;
}
.form_privacy p {
  font-size: 0.93em;
  font-weight: 500;
}

.mw_wp_form_confirm .privacy_wrap {
  display: none;
}

#autozip {
  pointer-events: none;
}

.m0 {
  margin-bottom: 0;
}

.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F7F7F7;
  border-bottom: 1px solid #F7F7F7;
  padding: 22px 0;
}
@media screen and (max-width: 767px) {
  .list_pagination {
    justify-content: center;
    gap: 20px;
  }
}
.list_pagination li {
  width: calc(50% - 50px);
  font-size: 0.93em;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .list_pagination li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a::before {
  right: auto;
  left: 0;
  transform: rotate(180deg);
}
.list_pagination li.next {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .list_pagination li.next {
    order: 2;
  }
}
.list_pagination li a {
  display: inline-block;
  position: relative;
  padding: 0 45px;
}
@media screen and (max-width: 767px) {
  .list_pagination li a {
    padding: 0 35px;
  }
}
.list_pagination li a::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle_black.svg) no-repeat center/contain;
  right: 0;
  top: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .list_pagination li a::before {
    width: 20px;
    top: calc(50% - 10px);
  }
}
.list_pagination li a:hover {
  text-decoration: underline;
}
.list_pagination li.archive {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .list_pagination li.archive {
    order: 3;
    margin-top: 10px;
  }
}
.list_pagination li.archive a {
  display: block;
  position: relative;
  text-align: center;
  padding: 0;
}
.list_pagination li.archive a::before {
  content: "";
  display: block;
  position: static;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../images/ico_archive.svg) no-repeat center/contain;
  margin: 0 auto 5px;
}

.marker-y {
  background: linear-gradient(to bottom, transparent 80%, yellow 80%);
}

.journal_content {
  width: 620px;
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .journal_content {
    margin-top: -40px;
  }
}
.journal_content h2,
.journal_content h3,
.journal_content h4,
.journal_content h2.add_ttl {
  font-size: 1.73em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .journal_content h2,
  .journal_content h3,
  .journal_content h4,
  .journal_content h2.add_ttl {
    font-size: 1.5em;
    margin-top: 40px;
  }
}
.journal_content h2:first-child,
.journal_content h3:first-child,
.journal_content h4:first-child,
.journal_content h2.add_ttl:first-child {
  margin-top: 0;
}
.journal_content h3,
.journal_content h3.add_ttl_02 {
  font-size: 1.46em;
  border-left: 3px solid #1A1A1A;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .journal_content h3,
  .journal_content h3.add_ttl_02 {
    font-size: 1.2em;
  }
}
.journal_content h4,
.journal_content h4.add_ttl_03 {
  font-size: 1.33em;
}
@media screen and (max-width: 767px) {
  .journal_content h4,
  .journal_content h4.add_ttl_03 {
    font-size: 1.13em;
  }
}

.post_contents {
  width: 620px;
  max-width: 100%;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .post_contents {
    margin-bottom: 60px;
  }
}
.post_contents:last-child {
  margin-bottom: 0;
}
.post_contents .add_ttl {
  display: block;
  background-color: #1A1A1A;
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 18px 28px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .post_contents .add_ttl {
    font-size: 1.2em;
    padding: 15px 20px;
    margin-top: 40px;
  }
}
.post_contents .add_ttl:first-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .post_contents .add_ttl {
    font-size: 1.3em;
  }
}
.post_contents .add_ttl_02 {
  font-size: 1.46em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 45px;
  padding-left: 20px;
  border-left: 3px solid #1A1A1A;
}
@media screen and (max-width: 767px) {
  .post_contents .add_ttl_02 {
    font-size: 1.2em;
  }
}
.post_contents .add_ttl_02:first-child {
  margin-top: 0;
}
.post_contents a.add_link {
  text-decoration: underline;
}
.post_contents a.add_link:hover {
  opacity: 0.5;
}

.voice_contents {
  width: 620px;
  max-width: 100%;
  margin: 0 auto;
}
.voice_contents h2.wp-block-heading,
.voice_contents h2.add_ttl {
  font-size: 1.73em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.53;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .voice_contents h2.wp-block-heading,
  .voice_contents h2.add_ttl {
    font-size: 1.5em;
    margin-top: 40px;
  }
}
.voice_contents h3.wp-block-heading,
.voice_contents p.ques {
  position: relative;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding-left: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .voice_contents h3.wp-block-heading,
  .voice_contents p.ques {
    font-size: 1em;
    padding-left: 30px;
    margin-top: 20px;
  }
}
.voice_contents h3.wp-block-heading::before,
.voice_contents p.ques::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background-color: #1A1A1A;
  left: 0;
  top: 0.7em;
}
@media screen and (max-width: 767px) {
  .voice_contents h3.wp-block-heading::before,
  .voice_contents p.ques::before {
    width: 18px;
  }
}

.journal_content p,
.post_contents p,
.voice_contents p {
  margin-top: 20px;
  font-size: 0.938em;
}
@media screen and (max-width: 767px) {
  .journal_content p,
  .post_contents p,
  .voice_contents p {
    font-size: 1em;
    line-height: 2;
    letter-spacing: 0.06em;
  }
  .journal_content p br,
  .post_contents p br,
  .voice_contents p br {
    display: none;
  }
}
.journal_content p:first-child,
.post_contents p:first-child,
.voice_contents p:first-child {
  margin-top: 0;
}
.journal_content p + p,
.post_contents p + p,
.voice_contents p + p {
  margin-top: 1em;
}
.journal_content p + p .txt_link_02,
.post_contents p + p .txt_link_02,
.voice_contents p + p .txt_link_02 {
  margin-top: 35px;
}
.journal_content p + p .txt_link_02:first-child,
.post_contents p + p .txt_link_02:first-child,
.voice_contents p + p .txt_link_02:first-child {
  margin-top: 35px;
}
.journal_content img,
.post_contents img,
.voice_contents img {
  margin-top: 35px;
}
.journal_content img:first-child,
.post_contents img:first-child,
.voice_contents img:first-child {
  margin-top: 35px;
}
.journal_content .wp-video,
.post_contents .wp-video,
.voice_contents .wp-video {
  margin-top: 50px;
}
.journal_content .wp-video:first-child,
.post_contents .wp-video:first-child,
.voice_contents .wp-video:first-child {
  margin-top: 0;
}
.journal_content .js-scrollable,
.post_contents .js-scrollable,
.voice_contents .js-scrollable {
  margin-top: 45px;
}
.journal_content .js-scrollable:first-child,
.post_contents .js-scrollable:first-child,
.voice_contents .js-scrollable:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .journal_content .js-scrollable table,
  .post_contents .js-scrollable table,
  .voice_contents .js-scrollable table {
    white-space: nowrap !important;
  }
}
.journal_content table,
.post_contents table,
.voice_contents table {
  width: 100%;
}
.journal_content table tr:nth-child(even),
.post_contents table tr:nth-child(even),
.voice_contents table tr:nth-child(even) {
  background-color: #F7F7F7;
}
.journal_content table tr:first-child th,
.journal_content table tr:first-child td,
.post_contents table tr:first-child th,
.post_contents table tr:first-child td,
.voice_contents table tr:first-child th,
.voice_contents table tr:first-child td {
  font-size: 1em;
  color: #fff;
  border-right: 1px solid #fff;
}
.journal_content table tr:first-child th:last-child,
.journal_content table tr:first-child td:last-child,
.post_contents table tr:first-child th:last-child,
.post_contents table tr:first-child td:last-child,
.voice_contents table tr:first-child th:last-child,
.voice_contents table tr:first-child td:last-child {
  border-right: 0 none;
}
.journal_content table th,
.journal_content table td,
.post_contents table th,
.post_contents table td,
.voice_contents table th,
.voice_contents table td {
  font-size: 0.93em;
  padding: 8px 15px;
  line-height: 1.75;
  border-right: 1px solid #787878;
}
.journal_content table th:last-child,
.journal_content table td:last-child,
.post_contents table th:last-child,
.post_contents table td:last-child,
.voice_contents table th:last-child,
.voice_contents table td:last-child {
  border-right: 0 none;
}
.journal_content ul:not(.toc_list),
.post_contents ul:not(.toc_list),
.voice_contents ul:not(.toc_list) {
  margin-top: 35px;
}
.journal_content ul:not(.toc_list):first-child,
.post_contents ul:not(.toc_list):first-child,
.voice_contents ul:not(.toc_list):first-child {
  margin-top: 0;
}
.journal_content ul:not(.toc_list) li,
.post_contents ul:not(.toc_list) li,
.voice_contents ul:not(.toc_list) li {
  position: relative;
  padding-left: 1.2em;
  font-size: 0.93em;
}
.journal_content ul:not(.toc_list) li::before,
.post_contents ul:not(.toc_list) li::before,
.voice_contents ul:not(.toc_list) li::before {
  content: "";
  position: absolute;
  width: 0.8em;
  aspect-ratio: 1/1;
  background-color: #1A1A1A;
  border-radius: 50%;
  top: 1em;
  left: 0;
  transform: translateY(-50%);
}
.journal_content .txt_link_02,
.post_contents .txt_link_02,
.voice_contents .txt_link_02 {
  margin-top: 35px;
}
.journal_content .txt_link_02:first-child,
.post_contents .txt_link_02:first-child,
.voice_contents .txt_link_02:first-child {
  margin-top: 0;
}

@keyframes load_end {
  100% {
    opacity: 0;
  }
}
@keyframes load_view {
  100% {
    opacity: 1;
  }
}
.loading {
  display: grid;
  place-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #1A1A1A;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .loading {
    padding: 0;
  }
}
.loading.js_end {
  animation: load_end 1s ease forwards;
}
.loading.js_anim_end {
  animation: load_end 1s ease 2s forwards;
}
.loading .loading_logo {
  opacity: 0;
  transition: transform 1s;
}
.loading .loading_logo.view {
  transform: translateY(0);
  animation: load_view 1s ease-in forwards;
}
.loading .loading_logo img {
  display: block;
  margin: 0 auto;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .loading .loading_logo img {
    width: 130px;
  }
}

.privacy_text_01 {
  font-size: 1.33em;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .privacy_text_01 {
    font-size: 1.13em;
    margin-bottom: 30px;
  }
}
.privacy_text_01:last-child {
  margin-bottom: 0;
}

.dlist_policy {
  margin-bottom: 20px;
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy dt {
  font-size: 1.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 1.13em;
    margin-bottom: 5px;
  }
}
.dlist_policy dd {
  font-size: 0.93em;
}

/* ADD:2024.05 */
.section_wrap#price, #price.section_wrap_sp_min, #price.section_wrap_min {
  padding-top: 30px;
}

#price .ttl_branding_02 {
  border: none;
}
#price .cs_price_box {
  margin-bottom: 80px;
}
#price .cs_price_box .ttl_border {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #price .cs_price_box .ttl_border {
    margin-bottom: 30px;
  }
}
#price .cs_price_box .cs_case_yen {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 6rem;
}
#price .cs_price_case {
  margin-bottom: 60px;
  padding: 10px 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  background-color: #454545;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  #price .cs_price_case {
    margin-bottom: 30px;
  }
}
#price .table_parent {
  margin-bottom: 80px;
}
#price .table_case {
  width: 100%;
}
#price .table_case thead th {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 15px;
  background-color: #1A1A1A;
  border-left: 15px solid #fff;
}
#price .table_case thead th:first-child {
  border-left: 0 none;
}
@media screen and (max-width: 767px) {
  #price .table_case thead th {
    max-width: 400px;
    font-size: 1.25em;
  }
}
#price .table_case tbody th,
#price .table_case tbody td {
  font-size: 1em;
  letter-spacing: 0.06em;
  vertical-align: top;
  background-color: #F7F7F7;
  border-top: 15px solid #fff;
}
#price .table_case tbody th:first-child,
#price .table_case tbody td:first-child {
  border-left: none;
}
@media screen and (max-width: 767px) {
  #price .table_case tbody th,
  #price .table_case tbody td {
    font-size: 1em;
  }
}
#price .table_case tbody th {
  font-weight: 700;
  text-align: lfet;
}
@media screen and (max-width: 767px) {
  #price .table_case tbody th {
    font-size: 1em;
  }
}
#price .table_case tbody td {
  position: relative;
  border-left: 15px solid #fff;
  padding: 15px min(vw, 10px);
  font-size: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #price .table_case tbody td {
    font-size: 1em;
    padding: 15px min(5vw, 30px) 60px;
    text-align: left;
  }
}
#price .table_case tbody td.left {
  padding: 15px min(5vw, 30px) 60px;
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  #price .table_case tbody td.left {
    white-space: normal;
  }
}
#price .table_case tbody td .yen {
  margin: 0 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 2em;
}
#price .table_case tbody td ul li {
  position: relative;
  padding-left: 20px;
}
#price .table_case tbody td ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
#price .table_case tbody td ul li span {
  display: inline-block;
  line-height: 1.6;
}
#price .table_case tbody td .btn_detail {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-radius: 100px;
  width: 180px;
  padding: 10px 20px;
  text-align: center;
  background-color: #1A1A1A;
  color: #fff;
  font-size: 1em;
}
@media (hover: hover) {
  #price .table_case tbody td .btn_detail {
    transition: opacity 0.3s;
  }
  #price .table_case tbody td .btn_detail:hover {
    opacity: 0.6;
  }
}
#price .table_case tbody td .btn_detail::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center/contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
#price .table_case--col2 tbody th {
  width: 40%;
}
#price .table_case--col2 tbody td {
  width: 60%;
}
#price .table_case3 {
  width: 100%;
}
#price .table_case3 thead th {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 15px;
  background-color: #1A1A1A;
  border-left: 15px solid #fff;
  width: 33.3%;
}
#price .table_case3 thead th:first-child {
  border-left: 0 none;
}
@media screen and (max-width: 767px) {
  #price .table_case3 thead th {
    max-width: 400px;
    font-size: 1.25em;
  }
}
#price .table_case3 tbody th,
#price .table_case3 tbody td {
  font-size: 1em;
  letter-spacing: 0.06em;
  vertical-align: top;
  background-color: #F7F7F7;
  border-top: 15px solid #fff;
}
#price .table_case3 tbody th:first-child,
#price .table_case3 tbody td:first-child {
  border-left: none;
}
@media screen and (max-width: 767px) {
  #price .table_case3 tbody th,
  #price .table_case3 tbody td {
    font-size: 1em;
  }
}
#price .table_case3 tbody th {
  font-weight: 700;
  text-align: lfet;
}
@media screen and (max-width: 767px) {
  #price .table_case3 tbody th {
    font-size: 1em;
  }
}
#price .table_case3 tbody td {
  position: relative;
  border-left: 15px solid #fff;
  padding: 15px min(vw, 10px);
  font-size: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #price .table_case3 tbody td {
    font-size: 1em;
    padding: 15px min(5vw, 30px) 60px;
    text-align: left;
  }
}
#price .table_case3 tbody td.left {
  padding: 15px min(5vw, 30px) 60px;
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  #price .table_case3 tbody td.left {
    white-space: normal;
  }
}
#price .table_case3 tbody td .yen {
  margin: 0 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 2em;
}
#price .table_case3 tbody td ul li {
  position: relative;
  padding-left: 20px;
}
#price .table_case3 tbody td ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
#price .table_case3 tbody td ul li span {
  display: inline-block;
  line-height: 1.6;
}
#price .table_case3 tbody td .btn_detail {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-radius: 100px;
  width: 180px;
  padding: 10px 20px;
  text-align: center;
  background-color: #1A1A1A;
  color: #fff;
  font-size: 1em;
}
@media (hover: hover) {
  #price .table_case3 tbody td .btn_detail {
    transition: opacity 0.3s;
  }
  #price .table_case3 tbody td .btn_detail:hover {
    opacity: 0.6;
  }
}
#price .table_case3 tbody td .btn_detail::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center/contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
#price .table_case3--col2 tbody th {
  width: 40%;
}
#price .table_case3--col2 tbody td {
  width: 60%;
}
#price .cs_popup {
  border: none;
  border-radius: 10px;
  overscroll-behavior-y: contain;
  padding: 60px 40px;
  max-width: 1100px;
  width: 90%;
}
#price .cs_popup * {
  white-space: normal;
}
@media screen and (max-width: 767px) {
  #price .cs_popup {
    padding: 60px 20px;
  }
}
#price .cs_popup::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
#price .cs_popup .close {
  position: absolute;
  width: 45px;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  #price .cs_popup .close {
    width: 30px;
  }
}
#price .cs_popup .popup_txt {
  margin-bottom: 20px;
}
#price .cs_popup .dlist_cs_case dt {
  font-size: 1.8rem;
  font-weight: 700;
}
#price .cs_popup .dlist_cs_case dt.small {
  font-size: 1.6rem;
}
#price .cs_popup .dlist_cs_case dd {
  margin-bottom: 20px;
}

#cs_faq .dlist_faq div {
  box-shadow: 0 3px 20px rgb(226, 226, 226);
  margin-bottom: 40px;
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  #cs_faq .dlist_faq div {
    padding: 20px;
  }
}
@media (hover: hover) {
  #cs_faq .dlist_faq div dt:hover {
    cursor: pointer;
  }
}
#cs_faq .dlist_faq div dd {
  display: none;
}

.btn_doc_dl {
  position: fixed;
  right: 10px;
  bottom: 10%;
  z-index: 1;
  display: inline-block;
  padding: 20px 60px 20px 20px;
  border-radius: 10px;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 640px) {
  .btn_doc_dl {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 15px 60px 15px 30px;
    font-size: 1.2rem;
  }
}
.btn_doc_dl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  width: 18px;
  aspect-ratio: 18/14;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  margin: 0 auto;
}
@media (hover: hover) {
  .btn_doc_dl::after {
    transition: right 0.3s;
  }
}
@media (hover: hover) {
  .btn_doc_dl:hover::after {
    right: 10px;
  }
}

.list_select_support {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .list_select_support {
    flex-wrap: wrap;
  }
}
.list_select_support li {
  width: 48%;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .list_select_support li {
    width: 100%;
    padding: 0 20px;
  }
}
.list_select_support li + li {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .list_select_support li + li {
    margin-left: 0;
    margin-top: 30px;
  }
}
.list_select_support li .btn_support {
  position: relative;
  border: solid 1px #1A1A1A;
  border-radius: 100px;
  display: block;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .list_select_support li .btn_support {
    padding: 10px 0;
  }
}
.list_select_support li .btn_support::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 13px;
  height: 20px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/ico_arrow_down.svg);
}
@media (hover: hover) {
  .list_select_support li .btn_support {
    transition: transform 0.3s;
  }
  .list_select_support li .btn_support:hover {
    transform: scale(1.05, 1.05);
  }
}

.ttl_support_about {
  position: relative;
  border-bottom: solid 1px #1A1A1A;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .ttl_support_about {
    margin-bottom: 40px;
  }
}
.ttl_support_about span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #BEBEBE;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ttl_support_about span {
    position: relative;
    margin-bottom: 20px;
    transform: translateY(0);
    font-size: 1.4rem;
  }
}
.ttl_support_about::before {
  content: attr(data-en);
  display: block;
  font-size: 3.8rem;
  font-family: "Outfit", sans-serif;
  left: 0.06em;
}
@media screen and (max-width: 767px) {
  .ttl_support_about::before {
    line-height: 1.5;
    font-size: 2.5rem;
  }
}

.support_about_box {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .support_about_box {
    margin-bottom: 60px;
  }
}

.support_about_spot {
  display: flex;
  justify-content: space-between;
}
.support_about_spot .txt {
  width: calc(50% + 40px);
  order: 2;
}
.support_about_spot .txt h4 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 25px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .support_about_spot .txt h4 {
    font-size: 2.2rem;
    margin-top: 0px;
  }
}
.support_about_spot .txt p {
  font-size: 1.4rem;
}
.support_about_spot .txt .btn_cmn_01 {
  margin-top: 40px;
  margin-left: 0;
}
.support_about_spot .image {
  width: calc(50% - 90px);
  order: 1;
}
.support_about_spot .image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .support_about_spot {
    flex-wrap: wrap;
  }
  .support_about_spot .txt {
    width: 100%;
    order: 2;
  }
  .support_about_spot .image {
    width: 100%;
    margin-bottom: 30px;
    order: 1;
  }
}

.recruit_01 h2 {
  font-size: 2.66em;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruit_01 h2 {
    font-size: 1.75em;
    margin-bottom: 30px;
    line-height: 1.6;
  }
}
.recruit_01 h2::before {
  display: none;
}
.recruit_01 .read {
  margin-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .recruit_01 .read {
    margin-bottom: 6em;
  }
}

.ttl_recruit {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .ttl_recruit {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.ttl_recruit::before {
  content: attr(data-en);
  display: block;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  left: 0.06em;
  color: #e2e2e2;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_recruit::before {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.requirements_image {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .requirements_image {
    margin-bottom: 30px;
  }
}

.recruit_lead {
  margin-bottom: 70px;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
}
.recruit_lead p {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recruit_lead {
    margin-bottom: 60px;
  }
  .recruit_lead p {
    margin-bottom: 20px;
  }
}

.ttl_requirements {
  border: solid 3px #3c3835;
  border-width: 3px 0;
  padding: 25px;
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .ttl_requirements {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

.table_recruit {
  margin-bottom: 50px;
}
.table_recruit th,
.table_recruit td {
  border-bottom: solid 1px #b4ada9;
  padding: 25px;
  font-size: 1.5rem;
}
.table_recruit th {
  width: 250px;
  vertical-align: top;
  font-weight: 700;
}
.table_recruit td {
  width: calc(100% - 155px);
}
@media screen and (max-width: 767px) {
  .table_recruit {
    margin-bottom: 30px;
  }
  .table_recruit th,
  .table_recruit td {
    display: block;
    width: 100%;
    padding: 15px;
  }
  .table_recruit td {
    margin-bottom: 10px;
    border: none;
  }
}

.grecaptcha-badge {
  display: none;
}/*# sourceMappingURL=layout.css.map */