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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

th, td {
  text-align: left;
  vertical-align: top;
}

img {
  border: none;
  vertical-align: top;
}

/*----------------------------------------
	Colors
----------------------------------------*/
/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Base
----------------------------------------*/
html {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  color: #2B1405;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

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

a {
  text-decoration: none;
  transition: opacity 0.4s ease;
}
a:link, a:visited {
  color: #000000;
}

a:hover {
  opacity: 0.7;
}

a[data-rel=external]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  background: transparent url("../image/icon-external.png") no-repeat scroll center center;
  background-size: contain;
  margin-right: 0.5em;
}

/*----------------------------------------
	Setting
----------------------------------------*/
/* font family */
/*----------------------------------------
	Layout
----------------------------------------*/
.l-limit {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-limit {
    box-sizing: border-box;
    max-width: 1400px;
  }
}

.l-frame {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-frame {
    width: 89.0625%;
  }
}

@media screen and (min-width: 769px) {
  .l-column {
    display: flex;
    justify-content: space-between;
  }
}
.l-column-both {
  display: flex;
  justify-content: space-between;
}
.l-column--wrap {
  flex-wrap: wrap;
}
.l-column--reverse {
  flex-direction: row-reverse;
}

/*----------------------------------------
	Header
----------------------------------------*/
.l-header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .l-header {
    padding: 28px 2.34375%;
  }
}
.l-headerLimit {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.36s ease 0s;
}
.l-headerLogo {
  width: 170px;
  transition: width 0.36s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerLogo {
    width: 260px;
  }
}
.l-headerLogo .c-logo path {
  fill: #2B1405;
}
.l-headerGnav {
  display: none;
}
@media screen and (min-width: 769px) {
  .l-headerGnav {
    flex: 1;
    display: block;
  }
}
.l-headerContact {
  margin-right: 6px;
  margin-left: auto;
}
.l-headerContact a {
  padding: 9px 12px 9px;
  border-radius: 6px;
  background-color: #E8792F;
  color: #ffffff;
  transition: all 0.66s ease 0s;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .l-headerContact a {
    padding: 13px 30px 13px;
    font-size: 15px;
  }
}
.l-headerContact a:hover {
  opacity: 1;
  background-color: #ffffff;
  color: #E8792F;
}
.l-headerButton {
  z-index: 15;
  position: relative;
  width: 35px;
  aspect-ratio: 1/1;
  background-color: #2B1405;
  border-radius: 6px;
  transition: background-color 0.32s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButton {
    width: 44px;
    cursor: pointer;
  }
}
.l-headerButton span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 1px;
  background-color: #ffffff;
  transition: background-color 0.22s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButton span {
    width: 20px;
  }
}
.l-headerButton span::before {
  content: "";
  position: absolute;
  top: -5px;
  width: 16px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.32s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButton span::before {
    top: -6px;
    width: 20px;
  }
}
.l-headerButton span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 16px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.32s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButton span::after {
    top: 6px;
    width: 20px;
  }
}
.l-headerMenu {
  opacity: 0;
  pointer-events: none;
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #2B1405;
  padding: 90px 5.3333333333% 130px;
  box-sizing: border-box;
  overflow-y: scroll;
  transition: opacity 0.32s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerMenu {
    padding: 110px 4.6875%;
  }
}
@media screen and (min-width: 769px) {
  .l-headerMenu__limit {
    max-width: 1280px;
    margin: 0 auto;
  }
}
.l-headerMenu__wrap {
  position: relative;
  margin-bottom: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
}
.l-headerMenu__list {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  position: relative;
  transition: opacity 0.32s ease 0.5s;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__list {
    width: 62.0689655172%;
    transition: opacity 0.32s ease 0s;
  }
}
.l-headerMenu__list *, .l-headerMenu__list a {
  color: #ffffff;
}
.l-headerMenu__item:not(.-contact) {
  border-bottom: 1px solid #ffffff;
}
.l-headerMenu__item:not(.-contact):first-of-type {
  border-top: 1px solid #ffffff;
}
.l-headerMenu__item:not(.-contact) a {
  display: block;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__item:not(.-contact) a {
    padding: 18px 40px;
    font-size: 44px;
  }
}
.l-headerMenu__item.-contact {
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  border-radius: 6px;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__item.-contact {
    margin-top: 20px;
    font-size: 36px;
  }
}
.l-headerMenu__item.-contact a {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background-color: #E8792F;
  border-radius: 6px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__item.-contact a {
    padding: 18px 40px;
  }
}
.l-headerMenu__next {
  display: flex;
}
.l-headerMenu__next__item .c-page-category {
  margin-bottom: 10px;
  padding-left: 18px;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__next__item .c-page-category {
    padding-left: 22px;
    font-size: 14px;
  }
}
.l-headerMenu__next__item .c-page-category::before {
  width: 8px;
}
.l-headerMenu__next__heading {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__next__heading {
    display: flex;
    align-items: flex-end;
    font-size: 32px;
  }
}
.l-headerMenu__next__heading span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__next__heading span {
    margin: 0;
    padding-bottom: 3px;
    font-size: 16px;
  }
}
.l-headerMenu__image {
  opacity: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  width: 89.3333333333%;
  transition: opacity 0.32s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__image {
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0);
    width: 34.4827586207%;
    transition: opacity 0.32s ease 0s;
  }
}
.l-headerMenu__bottom {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.32s ease 0s;
  }
}
.l-headerMenu__logo {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__logo {
    width: 56.5517241379%;
    margin: 0;
  }
}
.l-headerMenu__logo .c-logo path {
  fill: #ffffff;
}
.l-headerMenu__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__social {
    gap: 20px;
    padding-right: 10px;
  }
}
.l-headerMenu__social__item a {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__social__item a {
    font-size: 16px;
  }
}
.l-headerMenu__social__item.-note {
  width: 46px;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__social__item.-note {
    width: 52px;
  }
}
.l-headerMenu__social__item.-youtube {
  width: 18px;
}
@media screen and (min-width: 769px) {
  .l-headerMenu__social__item.-youtube {
    width: 20px;
  }
}

@media screen and (min-width: 769px) {
  .l-navigation {
    display: flex;
    justify-content: center;
    gap: 0 min(2.03125vw, 26px);
  }
}
@media screen and (min-width: 769px) {
  .l-navigation__item a {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    color: #2B1405;
    transition: color 0.32s ease 0s;
  }
}
.l-navigation__item a:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .l-navigation__item a:hover {
    color: #E8792F;
  }
}

.l-header--page .l-headerLogo .c-logo path {
  fill: #ffffff;
  transition: fill 0.32s ease 0s;
}
.l-header--page .l-navigation__item a {
  color: #ffffff;
  transition: color 0.32s ease 0s;
}
.l-header--page .l-headerButton {
  background-color: #ffffff;
  transition: background-color 0.32s ease 0s;
}
.l-header--page .l-headerButton span {
  background-color: #2B1405;
  transition: background-color 0.32s ease 0s;
}
.l-header--page .l-headerButton span::before, .l-header--page .l-headerButton span::after {
  background-color: #2B1405;
  transition: background-color 0.32s ease 0s;
}

.l-header.is-fixed .l-headerLimit {
  width: 100%;
  margin: 0 auto;
  padding: 8px 2.9850746269%;
  background-color: #ffffff;
  border-radius: 6px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .l-header.is-fixed .l-headerLimit {
    width: 96.7213114754%;
    padding: 10px 0.8474576271% 10px 2.5423728814%;
  }
}
.l-header.is-fixed .l-headerLogo {
  width: 160px;
}
@media screen and (min-width: 769px) {
  .l-header.is-fixed .l-headerLogo {
    width: 190px;
  }
}
.l-header.is-fixed .l-headerLogo .c-logo path {
  fill: #2B1405;
}
.l-header.is-fixed .l-navigation__item a {
  color: #2B1405;
}
.l-header.is-fixed .l-headerButton {
  background-color: #2B1405;
}
.l-header.is-fixed .l-headerButton span {
  background-color: #ffffff;
}
.l-header.is-fixed .l-headerButton span::before, .l-header.is-fixed .l-headerButton span::after {
  background-color: #ffffff;
}

.l-header.is-open .l-headerButton {
  background-color: #ffffff;
}
.l-header.is-open .l-headerButton span {
  background-color: #ffffff;
}
.l-header.is-open .l-headerButton span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #2B1405;
}
.l-header.is-open .l-headerButton span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #2B1405;
}
.l-header.is-open .l-headerMenu {
  opacity: 1;
  pointer-events: auto;
}
.l-header.is-open .l-headerMenu__list {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .l-header.is-open .l-headerMenu__list {
    transition-delay: 1s;
  }
}
@media screen and (max-width: 768px) {
  .l-header.is-open .l-headerMenu__image {
    transition-delay: 1s;
    opacity: 0.2;
  }
}
.l-header.is-open .l-headerMenu__bottom {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .l-header.is-open .l-headerMenu__bottom {
    transition-delay: 1s;
  }
}

.l-header.is-fixed.is-open .l-headerButton span {
  background-color: #ffffff;
}

.about .l-navigation__item:nth-of-type(1) a {
  color: #E8792F;
}

.service .l-navigation__item:nth-of-type(2) a {
  color: #E8792F;
}

.team .l-navigation__item:nth-of-type(3) a {
  color: #E8792F;
}

.news .l-navigation__item:nth-of-type(4) a {
  color: #E8792F;
}

.error404 .l-header .l-headerLogo .c-logo path, .thanks .l-header .l-headerLogo .c-logo path {
  fill: #2B1405;
  transition: fill 0.32s ease 0s;
}
.error404 .l-header .l-navigation__item a, .thanks .l-header .l-navigation__item a {
  color: #2B1405;
  transition: color 0.32s ease 0s;
}
.error404 .l-header .l-headerButton, .thanks .l-header .l-headerButton {
  background-color: #2B1405;
  transition: background-color 0.32s ease 0s;
}
.error404 .l-header .l-headerButton span, .thanks .l-header .l-headerButton span {
  background-color: #ffffff;
  transition: background-color 0.32s ease 0s;
}
.error404 .l-header .l-headerButton span::before, .error404 .l-header .l-headerButton span::after, .thanks .l-header .l-headerButton span::before, .thanks .l-header .l-headerButton span::after {
  background-color: #ffffff;
  transition: background-color 0.32s ease 0s;
}
.error404 .l-container, .thanks .l-container {
  background-color: #F5F2E9;
}

/*----------------------------------------
	Footer
----------------------------------------*/
.l-footer {
  padding: 60px 5.3333333333% 28px;
  background-color: #2B1405;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .l-footer {
    padding: 80px 3.125% 40px;
  }
}
.l-footer *, .l-footer a {
  color: #ffffff;
}
.l-footer__maskWrap {
  position: absolute;
  top: 58px;
  width: 100%;
  aspect-ratio: 650/500;
}
@media screen and (min-width: 769px) {
  .l-footer__maskWrap {
    top: -35px;
    left: 32.75%;
    width: 66.25%;
  }
}
.l-footerContact {
  position: relative;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .l-footerContact {
    margin-bottom: 80px;
    padding-bottom: 120px;
  }
}
.l-footerContact .c-page-category {
  margin-bottom: 44px;
}
@media screen and (min-width: 769px) {
  .l-footerContact .c-page-category {
    margin-bottom: 60px;
  }
}
.l-footerContact__wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .l-footerContact__wrap {
    flex-direction: row;
    align-items: flex-start;
  }
}
.l-footerContact__wrap__contents {
  margin-bottom: 54px;
}
@media screen and (min-width: 769px) {
  .l-footerContact__wrap__contents {
    width: 60.8333333333%;
    margin: 0;
  }
}
.l-footerContact__heading {
  text-align: center;
  margin-bottom: 24px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .l-footerContact__heading {
    text-align: left;
    margin-bottom: 20px;
    font-size: 62px;
  }
}
.l-footerContact__text {
  text-align: center;
  width: 230px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .l-footerContact__text {
    text-align: left;
    width: auto;
    font-size: 16px;
    line-height: 1.8;
  }
}
.l-footerInfo__menu {
  display: flex;
  flex-direction: column;
  gap: 28px 0;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__menu {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 170px;
  }
}
.l-footerInfo__list {
  display: flex;
  gap: 0 3.5820895522%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__list {
    width: -moz-fit-content;
    width: fit-content;
    gap: 0 18px;
  }
}
.l-footerInfo__list__item a {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__list__item a {
    font-size: 16px;
  }
}
.l-footerInfo__list__item span {
  font-size: 12px;
}
.l-footerInfo__social {
  display: flex;
  align-items: center;
  gap: 0 3.5820895522%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__social {
    width: -moz-fit-content;
    width: fit-content;
    gap: 0 18px;
  }
}
.l-footerInfo__social__item a {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__social__item a {
    font-size: 16px;
  }
}
.l-footerInfo__social__item.-note {
  width: 46px;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__social__item.-note {
    width: 52px;
  }
}
.l-footerInfo__social__item.-youtube {
  width: 18px;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__social__item.-youtube {
    width: 20px;
  }
}
.l-footerInfo__main {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width: 769px) {
  .l-footerInfo__logo {
    width: 56.6666666667%;
  }
}
.l-footerInfo__logo .c-logo path {
  fill: #ffffff;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__meta {
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 14px;
  }
}
.l-footerInfo__meta__text {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .l-footerInfo__meta__text {
    font-size: 14px;
  }
}
.l-footerInfo__meta__copyright {
  margin-top: 3px;
  opacity: 0.6;
  font-size: 11px;
  letter-spacing: -0.019em;
}

/*----------------------------------------
	Component
----------------------------------------*/
.c-h1 {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .c-h1 {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-page {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .c-page {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 769px) {
  .c-page-wrap {
    width: 50.8620689655%;
  }
}
.c-page-category {
  position: relative;
  margin-bottom: 32px;
  padding-left: 30px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .c-page-category {
    margin-bottom: 0;
    font-size: 20px;
  }
}
.c-page-category::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #E57838;
}
@media screen and (min-width: 769px) {
  .c-page-category::before {
    top: 4px;
    width: 12px;
  }
}
.c-page-category:has(+ .c-page-wrap) {
  margin-bottom: 0;
}
.c-page-heading {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-page-heading {
    font-size: 54px;
  }
}
.c-page-heading:has(+ .c-page-text) {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .c-page-heading:has(+ .c-page-text) {
    margin-bottom: 20px;
  }
}
.c-page-title {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-page-title {
    font-size: 46px;
  }
}
.c-page-text {
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .c-page-text {
    font-size: 15px;
  }
}
.c-page--sm {
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .c-page--sm {
    margin-bottom: 60px;
  }
}
.c-page--sm .c-page-category {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .c-page--sm .c-page-category {
    padding-left: 22px;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .c-page--sm .c-page-category::before {
    top: 3px;
    width: 8px;
  }
}

.c-button {
  width: 212px;
}
@media screen and (min-width: 769px) {
  .c-button {
    width: 274px;
  }
}
.c-button a {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  padding: 20px 0;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .c-button a {
    align-items: center;
    gap: 0 16px;
  }
}
.c-button a:hover {
  opacity: 1;
}
.c-button a:hover span::before {
  transform: scaleX(1);
  transform-origin: left;
}
.c-button a:hover .c-arrow {
  animation: 0.82s cubic-bezier(0.16, 0.88, 0.25, 1) 0s 1 normal none running hoverArrowMotion;
}
.c-button span {
  display: inline-block;
  position: relative;
}
.c-button span::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.16, 0.88, 0.25, 1) 0s;
}
.c-button__heading {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-button__heading {
    font-size: 20px;
  }
}
.c-button__heading span {
  display: block;
  margin-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .c-button__heading span {
    margin-bottom: 8px;
  }
}
.c-button .c-arrow {
  display: block;
  width: 16px;
}
@media screen and (min-width: 769px) {
  .c-button .c-arrow {
    margin-left: auto;
  }
}
.c-button .c-arrow path {
  fill: #ffffff;
}

.c-button-contact {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .c-button-contact {
    justify-content: flex-start;
    padding-top: 90px;
  }
}
.c-button-contact a {
  text-align: center;
  display: block;
  width: 210px;
  padding: 10px 0 10px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 2;
  background-color: #E8792F;
  border: 1px solid #ffffff;
  border-radius: 200px;
  transition: all 0.66s ease 0s;
}
@media screen and (min-width: 769px) {
  .c-button-contact a {
    width: 320px;
    padding: 20px 0 21px;
    font-size: 20px;
  }
}
.c-button-contact a:hover {
  opacity: 1;
  background-color: #ffffff;
  border: 1px solid #E8792F;
  color: #E8792F;
}

@media screen and (min-width: 769px) {
  .c-button-wide {
    max-width: 590px;
  }
}
.c-button-wide a {
  display: flex;
  gap: 0 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .c-button-wide a {
    align-items: center;
    gap: 0 16px;
  }
}
.c-button-wide a:hover {
  opacity: 1;
}
.c-button-wide a:hover .c-button-wide__image img {
  transform: scale(1.06);
}
.c-button-wide a:hover .c-button-wide__heading::before {
  transform: scaleX(1);
  transform-origin: left;
}
.c-button-wide a:hover .c-arrow {
  animation: 0.82s cubic-bezier(0.16, 0.88, 0.25, 1) 0s 1 normal none running hoverArrowMotion;
}
.c-button-wide__image {
  width: 17.9104477612%;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-button-wide__image {
    width: 84px;
  }
}
.c-button-wide__image img {
  display: block;
  transition: transform 0.82s cubic-bezier(0.16, 0.88, 0.25, 1) 0s;
}
.c-button-wide__heading {
  position: relative;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-button-wide__heading {
    font-size: 20px;
  }
}
.c-button-wide__heading span {
  display: block;
  margin-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .c-button-wide__heading span {
    margin-bottom: 8px;
  }
}
.c-button-wide__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.16, 0.88, 0.25, 1) 0s;
}
.c-button-wide .c-arrow {
  display: block;
  width: 16px;
}
@media screen and (min-width: 769px) {
  .c-button-wide .c-arrow {
    margin-left: auto;
  }
}
.c-button-wide .c-arrow path {
  fill: #ffffff;
}
.c-section--bg .c-button-wide .c-button-wide__heading::before {
  background-color: #2B1405;
}

@keyframes hoverArrowMotion {
  0% {
    clip-path: inset(0px);
  }
  40% {
    transform: translate(8px);
    clip-path: inset(0px 0px 0px 100%);
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  49% {
    opacity: 0;
    transform: translate(-8px);
    clip-path: inset(0px 100% 0% 0%);
  }
  50% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0px 0% 0%);
  }
}
.c-button-more a {
  text-align: center;
  display: block;
  padding: 12px 0;
  border-radius: 6px;
  border: 1px solid #D1C4AD;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 2;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-button-more a {
    padding: 14px 0;
    font-size: 18px;
  }
}
.c-button-more a span {
  position: relative;
}
.c-button-more a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2B1405;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.16, 0.88, 0.25, 1) 0s;
}
.c-button-more a span::after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  background: transparent url(../image/common/icon_external.svg) no-repeat scroll center center/cover;
  transform: translate(6px, -1px);
}
.c-button-more a:hover {
  opacity: 1;
}
.c-button-more a:hover span::before {
  transform: scaleX(1);
  transform-origin: left;
}
.c-button-more.-no-external a span::after {
  display: none;
}

.c-arrowBottom {
  display: block;
  width: 19px;
  aspect-ratio: 19/10;
}
.c-arrowBottom path {
  fill: #ffffff;
}

.c-section *, .c-section a {
  color: #ffffff;
}
.c-section--bg {
  background-color: #F5F2E9;
}
.c-section--bg *, .c-section--bg a {
  color: #2B1405;
}
.c-section--bg2 {
  background-color: #F0EBDE;
}
.c-section--bg2 *, .c-section--bg2 a {
  color: #2B1405;
}
.c-section--about {
  background-color: #93250E;
}
.c-section--service {
  background-color: #214C18;
}
.c-section--team {
  background-color: #082F47;
}
.c-section--news {
  background-color: #00484D;
}

.c-head {
  overflow: hidden;
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-head {
    min-height: 420px;
    padding: 0 4.6875%;
  }
}
.c-head * {
  color: #ffffff;
}
.c-head .l-limit {
  z-index: 1;
  position: relative;
}
.c-head__inner {
  padding: 125px 0 41px;
}
@media screen and (min-width: 769px) {
  .c-head__inner {
    padding: 160px 0 80px;
  }
}
.c-head[data-color=about] {
  background-color: #93250E;
}
.c-head[data-color=service] {
  background-color: #214C18;
}
.c-head[data-color=team] {
  background-color: #082F47;
}
.c-head[data-color=news] {
  background-color: #00484D;
}
.c-head[data-color=contact] {
  background-color: #2B1405;
}
.c-head[data-color=sub] {
  background-color: #F5F2E9;
}
.c-head__wrap {
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-head__wrap {
    display: flex;
  }
}
.c-head__page {
  position: relative;
  margin-bottom: 57px;
  padding-left: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .c-head__page {
    width: 49.3103448276%;
    margin-bottom: 0;
    padding-left: 60px;
    font-size: 96px;
    letter-spacing: -0.01em;
  }
}
.c-head__page::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E57838;
}
@media screen and (min-width: 769px) {
  .c-head__page::before {
    top: 56px;
    width: 20px;
    height: 20px;
  }
}
.c-head__page:has(+ .c-head__intro) {
  margin-bottom: 57px;
}
@media screen and (min-width: 769px) {
  .c-head__page:has(+ .c-head__intro) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .c-head__intro {
    flex: 1;
    padding-top: 24px;
  }
}
.c-head__intro__title {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .c-head__intro__title {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }
}
.c-head__intro__title:has(+ .c-head__intro__text) {
  margin-bottom: 20px;
}
.c-head__intro__text {
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .c-head__intro__text {
    font-size: 15px;
    line-height: 1.66;
    letter-spacing: -0.02em;
  }
}

.c-sub .l-limit {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-sub .l-limit {
    padding: 220px 0 100px;
  }
}
.c-sub__heading {
  z-index: 1;
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .c-sub__heading {
    margin-bottom: 40px;
    font-size: 44px;
  }
}
.c-sub__image {
  z-index: 0;
  position: absolute;
  top: 80px;
  left: 46.6666666667%;
  width: 58.6666666667%;
}
@media screen and (min-width: 769px) {
  .c-sub__image {
    top: 60px;
    left: 57.8125%;
    width: 46.875%;
  }
}
.c-sub .c-page-text {
  z-index: 1;
  position: relative;
  text-align: center;
}
.c-sub .c-button-contact {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .c-sub .c-button-contact {
    margin: 40px auto 0;
  }
}
.c-sub .c-button-contact a {
  width: 218px;
  padding: 16px 0;
  font-size: 16px;
  background-color: #2B1405;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-sub .c-button-contact a {
    width: 375px;
    padding: 26px 0;
    font-size: 18px;
  }
}

.c-maskWrap {
  position: relative;
}

.c-maskArea {
  pointer-events: none;
}

.c-maskMotif {
  --mask-x: 50%;
  --mask-y: 50%;
  position: absolute;
  overflow: hidden;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: var(--mask-x) var(--mask-y);
  mask-position: var(--mask-x) var(--mask-y);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-maskMotif.-motif1, .c-maskMotif.-motif4, .c-maskMotif.-motif6, .c-maskMotif.-motif8 {
  width: 44.6153846154%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
}
.c-maskMotif.-motif2 {
  top: 7%;
  left: 0;
  width: 23.0769230769%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif02.png");
  mask-image: url("../image/common/motif02.png");
}
.c-maskMotif.-motif3, .c-maskMotif.-motif5, .c-maskMotif.-motif7 {
  top: 7%;
  right: 0;
  width: 23.0769230769%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
}
.c-maskMotif.-motif1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.c-maskMotif.-motif4 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.c-maskMotif.-motif5 {
  top: -70px;
  left: 48%;
}
.c-maskMotif.-motif6 {
  top: 80px;
  left: -26%;
}
.c-maskMotif.-motif7 {
  top: 80px;
  right: -14%;
}
.c-maskMotif.-motif8 {
  bottom: 120px;
  left: 12%;
  transform: rotate(180deg);
}
.c-maskMotif.-motif-hero-service1 {
  width: 12%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 79px;
  left: 32.8%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-service1 {
    width: 7.65625%;
    top: 154px;
    left: 44.140625%;
  }
}
.c-maskMotif.-motif-hero-service2 {
  width: 22.4%;
  aspect-ratio: 290/150;
  transform: rotate(-45deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 74px;
  left: 61.8666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-service2 {
    width: 14.0625%;
    top: 16px;
    left: 69.0625%;
  }
}
.c-maskMotif.-motif-hero-service3 {
  width: 11.4666666667%;
  aspect-ratio: 150/290;
  transform: rotate(-45deg);
  -webkit-mask-image: url("../image/common/motif02.png");
  mask-image: url("../image/common/motif02.png");
  top: 160px;
  left: 78.9333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-service3 {
    width: 7.265625%;
    top: 210px;
    left: 81.484375%;
  }
}
.c-maskMotif.-motif-hero-service4 {
  width: 11.4666666667%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif02.png");
  mask-image: url("../image/common/motif02.png");
  top: 211px;
  left: 55.2%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-service4 {
    width: 7.265625%;
    top: 285px;
    left: 60%;
  }
}
.c-maskMotif.-motif-hero-about1 {
  width: 29.3333333333%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: -8px;
  left: 46.9333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-about1 {
    width: 14.140625%;
    top: -11px;
    left: 67.1875%;
  }
}
.c-maskMotif.-motif-hero-about2 {
  width: 28.8%;
  aspect-ratio: 290/150;
  transform: rotate(180deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 161px;
  left: 19.2%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-about2 {
    width: 14.0625%;
    top: 249px;
    left: 9.375%;
  }
}
.c-maskMotif.-motif-hero-about3 {
  width: 14.9333333333%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif02.png");
  mask-image: url("../image/common/motif02.png");
  top: 77px;
  left: 77.0666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-about3 {
    width: 7.34375%;
    top: 129px;
    left: 37.265625%;
  }
}
.c-maskMotif.-motif-hero-about4 {
  width: 15.2%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 372px;
  left: 66.6666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-about4 {
    width: 7.265625%;
    top: 264px;
    left: 90.46875%;
  }
}
.c-maskMotif.-motif-hero-news1 {
  width: 13.8666666667%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 21px;
  left: 45.3333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-news1 {
    width: 7.265625%;
    top: 186px;
    left: 38.203125%;
  }
}
.c-maskMotif.-motif-hero-news2 {
  width: 14.1333333333%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 156px;
  left: 28.5333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-news2 {
    width: 7.265625%;
    top: 60px;
    left: 66.953125%;
  }
}
.c-maskMotif.-motif-hero-news3 {
  width: 27.2%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 117px;
  left: 68.8%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-news3 {
    width: 14.0625%;
    top: 230px;
    left: 82.65625%;
  }
}
.c-maskMotif.-motif-hero-news4 {
  width: 13.8666666667%;
  aspect-ratio: 150/290;
  transform: rotate(-45deg);
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 222px;
  left: 63.4666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-news4 {
    width: 7.265625%;
    top: 282px;
    left: 56.25%;
  }
}
.c-maskMotif.-motif-hero-team1 {
  width: 14.6666666667%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 30px;
  left: 43.2%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-team1 {
    width: 7.265625%;
    top: 91px;
    left: 40.078125%;
  }
}
.c-maskMotif.-motif-hero-team2 {
  width: 28.2666666667%;
  aspect-ratio: 290/150;
  transform: rotate(-45deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 101px;
  left: 71.4666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-team2 {
    width: 14.0625%;
    top: 67px;
    left: 85.390625%;
  }
}
.c-maskMotif.-motif-hero-team3 {
  width: 14.6666666667%;
  aspect-ratio: 150/290;
  transform: rotate(45deg);
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 154px;
  left: 22.9333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-team3 {
    width: 7.265625%;
    top: 241px;
    left: 18.4375%;
  }
}
.c-maskMotif.-motif-hero-team4 {
  width: 28.2666666667%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 320px;
  left: 56.8%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-team4 {
    width: 13.984375%;
    top: 342px;
    left: 60.78125%;
  }
}
.c-maskMotif.-motif-hero-contact1 {
  width: 13.3333333333%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 67px;
  left: 36.8%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-contact1 {
    width: 7.265625%;
    top: 140px;
    left: 48.75%;
  }
}
.c-maskMotif.-motif-hero-contact2 {
  width: 13.3333333333%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 67px;
  left: 59.2%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-contact2 {
    width: 7.265625%;
    top: 140px;
    left: 63.828125%;
  }
}
.c-maskMotif.-motif-hero-contact3 {
  width: 13.3333333333%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 176px;
  left: 68%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-contact3 {
    width: 7.265625%;
    top: 140px;
    left: 78.90625%;
  }
}
.c-maskMotif.-motif-hero-contact4 {
  width: 13.3333333333%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 176px;
  left: 90.4%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-hero-contact4 {
    width: 7.265625%;
    top: 140px;
    left: 93.984375%;
  }
}
.c-maskMotif.-motif-about1 {
  width: 30.4%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 44.5333333333vw;
  left: 5.3333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about1 {
    width: 8.1034482759%;
    top: 264px;
    left: 90.46875%;
  }
}
.c-maskMotif.-motif-about2 {
  width: 27.4666666667%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 81.8666666667vw;
  left: 66.9333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about2 {
    width: 15.1724137931%;
    top: 551px;
    left: 35.3125%;
  }
}
.c-maskMotif.-motif-team1 {
  width: 31.4666666667%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 42px;
  left: 54.9333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-team1 {
    width: 24.1379310345%;
    top: 59px;
    left: 68.75%;
  }
}
.c-maskMotif.-motif-team2 {
  width: 9.0666666667%;
  aspect-ratio: 290/150;
  transform: rotate(45deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 100px;
  left: 36%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-team2 {
    width: 6.8965517241%;
    top: 246px;
    left: 35.15625%;
  }
}
.c-maskMotif.-motif-news1 {
  width: 16.5333333333%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 26px;
  left: 64.2666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-news1 {
    width: 10.6034482759%;
    top: 215px;
    left: 13.4375%;
  }
}
.c-maskMotif.-motif-news2 {
  width: 16%;
  aspect-ratio: 290/150;
  transform: rotate(45deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  bottom: 30px;
  left: 14.6666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-news2 {
    width: 10.3448275862%;
    bottom: 36px;
    left: 20.546875%;
  }
}
.c-maskMotif.-motif-about-catch1 {
  width: 25.8666666667%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 28px;
  left: 14.1333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch1 {
    width: 16.724137931%;
    top: 79px;
    left: 9.921875%;
  }
}
.c-maskMotif.-motif-about-catch2 {
  width: 21.8666666667%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  bottom: 11px;
  left: 75.2%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch2 {
    width: 11.8103448276%;
    bottom: 71px;
    left: 86.40625%;
  }
}
.c-maskMotif.-motif-about-catch3 {
  width: 16.2666666667%;
  aspect-ratio: 290/150;
  transform: rotate(135deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 19px;
  left: 7.7333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch3 {
    width: 9.6551724138%;
    top: 36px;
    left: 3.28125%;
  }
}
.c-maskMotif.-motif-about-catch4 {
  width: 5.8666666667%;
  aspect-ratio: 150/290;
  -webkit-mask-image: url("../image/common/motif03.png");
  mask-image: url("../image/common/motif03.png");
  top: 73px;
  left: 32.2666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch4 {
    width: 3.4482758621%;
    top: 213px;
    left: 20.3125%;
  }
}
.c-maskMotif.-motif-about-catch5 {
  width: 36%;
  aspect-ratio: 290/150;
  transform: rotate(45deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 50px;
  left: 55.4666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch5 {
    width: 18.8793103448%;
    top: 90px;
    left: 67.265625%;
  }
}
.c-maskMotif.-motif-about-catch6 {
  width: 38.6666666667%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  bottom: 14px;
  left: 5.0666666667%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch6 {
    width: 18.9655172414%;
    bottom: 45px;
    left: 7.96875%;
  }
}
.c-maskMotif.-motif-about-catch7 {
  width: 8%;
  aspect-ratio: 150/290;
  transform: rotate(-45deg);
  -webkit-mask-image: url("../image/common/motif02.png");
  mask-image: url("../image/common/motif02.png");
  bottom: 43px;
  left: 74.9333333333%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch7 {
    width: 4.7413793103%;
    bottom: 56px;
    left: 82.8125%;
  }
}
.c-maskMotif.-motif-about-catch8 {
  width: 24.5333333333%;
  aspect-ratio: 290/150;
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  bottom: 148px;
  left: 79.2%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch8 {
    width: 14.3965517241%;
    bottom: 220px;
    left: 90.078125%;
  }
}
.c-maskMotif.-motif-about-catch9 {
  width: 17.0666666667%;
  aspect-ratio: 290/150;
  transform: rotate(45deg);
  -webkit-mask-image: url("../image/common/motif01.png");
  mask-image: url("../image/common/motif01.png");
  top: 50px;
  left: 53.6%;
}
@media screen and (min-width: 769px) {
  .c-maskMotif.-motif-about-catch9 {
    width: 8.0172413793%;
    top: 80px;
    left: 36.015625%;
  }
}
.c-maskMotif__layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  inset: -2%;
  height: 80dvh;
  aspect-ratio: 1280/800;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .c-maskMotif__layer {
    inset: -1%;
    width: 100vw;
    height: auto;
  }
}
.c-maskMotif__layer.-bg1 {
  z-index: 1;
  background-image: url("../image/home/bg_layer01.png");
}
.c-maskMotif__layer.-bg2 {
  z-index: 2;
  background-image: url("../image/home/bg_layer02.png");
}
.c-maskMotif.-white .-bg1 {
  z-index: 1;
  background-image: url("../image/common/bg_layer01_white.png");
}
.c-maskMotif.-white .-bg2 {
  z-index: 2;
  background-image: url("../image/common/bg_layer02_white.png");
}

.c-team--page {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-team--page {
    padding: 0 4.6875%;
  }
}
.c-team--page .l-limit {
  padding: 56px 0 20px;
}
@media screen and (min-width: 769px) {
  .c-team--page .l-limit {
    padding: 80px 0 80px;
  }
}
.c-teamImage {
  margin-top: 80px;
}
@media screen and (min-width: 769px) {
  .c-teamImage {
    margin-top: 80px;
  }
}
.c-teamImage::last-of-type {
  padding-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .c-teamImage::last-of-type {
    padding-bottom: 0;
  }
}

.c-teamWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .c-teamWrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
  }
}
.c-teamWrap .c-teamCard__driven {
  color: #ffffff;
}
.c-teamWrap .c-teamCard__name, .c-teamWrap .c-teamCard__name span {
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-teamWrap .c-teamCard {
    width: 31.8965517241%;
  }
}
@media screen and (min-width: 769px) {
  .c-teamWrap::after {
    content: "";
    display: block;
    width: 31.8965517241%;
  }
}

.c-teamCard {
  --team-card-thumb-blur: 6px;
  display: flex;
}
.c-teamCard a:hover .c-teamCard__driven span.-line {
  background-position: left bottom;
  background-size: 100% 1px;
}
.c-teamCard__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.c-teamCard__thumb picture {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  will-change: transform, filter;
  filter: blur(var(--team-card-thumb-blur));
}
.c-teamCard__thumb .-blur {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.c-teamCard__thumb .-blur picture,
.c-teamCard__thumb .-blur img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-teamCard__thumb .-blur img {
  -o-object-fit: cover;
  object-fit: cover;
}
.c-teamCard__thumb .-img {
  position: relative;
  z-index: 1;
  margin: -6px;
}
.c-teamCard__thumb .-img picture {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  will-change: filter;
  filter: blur(var(--team-card-thumb-blur));
}
.c-teamCard__thumb .-img img {
  display: block;
  width: 100%;
  height: auto;
}
.c-teamCard__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.c-teamCard.is-hover .c-teamCard__thumb .-blur {
  opacity: 0;
}
.c-teamCard.is-hover .c-teamCard__thumb .-img picture {
  filter: url("#teamCardThumbDistortion") blur(var(--team-card-thumb-blur)) saturate(1.08) contrast(1.04);
}
.c-teamCard a {
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  background-color: #052335;
  border-radius: 6px;
}
@media screen and (min-width: 769px) {
  .c-teamCard a {
    padding: 30px;
  }
}
.c-teamCard a:hover {
  opacity: 1;
}
.c-teamCard__contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .c-teamCard__contents {
    margin-top: 20px;
  }
}
.c-teamCard__driven {
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .c-teamCard__driven {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.c-teamCard__driven span:not(.-line) {
  display: block;
  margin-bottom: 4px;
  color: #E57838;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .c-teamCard__driven span:not(.-line) {
    font-size: 16px;
  }
}
.c-teamCard__driven span.-line {
  display: inline;
  color: #ffffff !important;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  transition-property: background-size;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}
.c-teamCard__name {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-teamCard__name {
    font-size: 20px;
    line-height: 2;
    letter-spacing: -0.02em;
  }
}
.c-teamCard__name span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.c-popup {
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.16, 0.88, 0.25, 1) 0s;
}
.c-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-popupWrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  width: 89.3333333333%;
  max-height: calc(100dvh - 40px);
}
@media screen and (min-width: 769px) {
  .c-popupWrap {
    top: 20px;
    width: 62.65625%;
    max-height: calc(100dvh - 40px);
  }
}
.c-popupWrap__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
}
@media screen and (min-width: 769px) {
  .c-popupWrap__close {
    top: 0;
    right: -70px;
    width: 60px;
  }
}
.c-popupItem {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  max-height: inherit;
  padding: 32px 20px;
  border-radius: 6px;
  background-color: #082F47;
  overflow-y: scroll;
  box-sizing: border-box;
  transition: opacity 0.4s cubic-bezier(0.16, 0.88, 0.25, 1) 0s;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.c-popupItem::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 769px) {
  .c-popupItem {
    padding: 60px;
  }
}
.c-popupItem.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-popupItem__head {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .c-popupItem__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.c-popupItem__thumb {
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-popupItem__thumb {
    width: 45.4545454545%;
  }
}
.c-popupItem__contents {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .c-popupItem__contents {
    width: 48.6803519062%;
    margin-top: 0;
  }
}
.c-popupItem__contents * {
  color: #ffffff;
}
.c-popupItem__name {
  margin-bottom: 20px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-popupItem__name {
    font-size: 26px;
  }
}
.c-popupItem__pos {
  font-size: 12px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .c-popupItem__pos {
    font-size: 12px;
  }
}
.c-popupItem__social {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin-top: 20px;
}
.c-popupItem__social__item.-x {
  width: 18px;
  aspect-ratio: 18/18;
}
.c-popupItem__social__item.-linkedin {
  width: 20px;
  aspect-ratio: 20/18;
}
.c-popupItem__social__item.-facebook {
  width: 20px;
  aspect-ratio: 20/20;
}
.c-popupItem__social__item.-instagram {
  width: 20px;
  aspect-ratio: 20/19;
}
.c-popupItem__social__item.-note {
  width: 56px;
  aspect-ratio: 56/12;
}
.c-popupItem__social__item.-other a {
  display: inline-block;
  font-size: 12px;
  line-height: 1.66;
  letter-spacing: -0.02em;
  color: #ffffff;
  transform: translateY(-1px);
}
.c-popupItem__social__item.-other a::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 10px;
  aspect-ratio: 1/1;
  background: transparent url(../image/common/icon_external-w.svg) no-repeat scroll center center/cover;
}
.c-popupItem__detail {
  margin-bottom: 40px;
}
.c-popupItem__detail * {
  color: #ffffff;
}
.c-popupItem__message {
  padding: 30px 20px;
  border-radius: 6px;
  background-color: #031F31;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-popupItem__message {
    padding: 50px 40px;
  }
}
.c-popupItem__message * {
  color: #ffffff;
}
.c-popupItem__message__title {
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .c-popupItem__message__title {
    margin-bottom: 40px;
    font-size: 35px;
  }
}
.c-popupItem__message__title span {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #E8792F;
}
@media screen and (min-width: 769px) {
  .c-popupItem__message__title span {
    margin-bottom: 4px;
    font-size: 16px;
  }
}

.c-news {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-news {
    padding: 0 4.6875%;
  }
}
.c-news .l-limit {
  padding: 120px 0 80px;
}
@media screen and (min-width: 769px) {
  .c-news .l-limit {
    padding: 120px 0 120px;
  }
}
.c-news--page .l-limit {
  padding: 56px 0 56px;
}
@media screen and (min-width: 769px) {
  .c-news--page .l-limit {
    padding: 80px 0 80px;
  }
}
@media screen and (min-width: 769px) {
  .c-news--page .c-newsWrap {
    width: 70%;
    margin: 0 auto;
  }
}
.c-news--page .c-button-more {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .c-news--page .c-button-more {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .c-newsWrap {
    width: 74.4827586207%;
  }
}
.c-newsWrap__item a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .c-newsWrap__item a {
    gap: 0 30px;
    padding: 30px 0;
  }
}
.c-newsWrap__item:not(:has(> a)) {
  padding: 20px 0;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .c-newsWrap__item:not(:has(> a)) {
    padding: 30px 0;
  }
}
.c-newsWrap__item:not(:has(> a)) .c-newsWrap__contents__heading {
  text-decoration: none;
}
.c-newsWrap__item:first-of-type a {
  border-top: 1px solid #D1C4AD;
}
.c-newsWrap__item:has(+ .c-button) {
  margin-bottom: 24px;
}
.c-newsWrap__thumb {
  width: 23.8805970149%;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-newsWrap__thumb {
    width: 134px;
  }
}
.c-newsWrap__contents {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .c-newsWrap__contents {
    flex: 1;
    width: auto;
  }
}
.c-newsWrap__contents__data {
  display: flex;
  gap: 0 8px;
  margin-bottom: 6px;
}
@media screen and (min-width: 769px) {
  .c-newsWrap__contents__data {
    margin-bottom: 8px;
  }
}
.c-newsWrap__contents__data time {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #E8792F;
}
.c-newsWrap__contents__data span {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.019em;
  background-color: #E7E1D0;
  color: #2B1405;
  border-radius: 4px;
  transform: translateY(-2px);
}
.c-newsWrap__contents__heading {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.04em;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .c-newsWrap__contents__heading {
    font-size: 16px;
    line-height: 1.4;
  }
}
.c-newsWrap .c-button {
  margin-left: auto;
}
.c-singleHead {
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .c-singleHead {
    margin-bottom: 40px;
  }
}
.c-singleHead__info {
  display: flex;
  align-items: center;
  gap: 0 8px;
  margin-bottom: 8px;
}
.c-singleHead__info time {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #E8792F;
}
.c-singleHead__info span {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.019em;
  background-color: #E7E1D0;
}
.c-singleHead__heading {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .c-singleHead__heading {
    font-size: 38px;
  }
}
.c-singleThumb {
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .c-singleThumb {
    margin-bottom: 40px;
  }
}
.c-singleBody {
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .c-singleBody {
    margin-bottom: 40px;
  }
}
.c-singleBody p {
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .c-singleBody p {
    font-size: 15px;
  }
}

.c-filter {
  margin-bottom: 40px;
}
.c-filter__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.c-filter__btn {
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  background-color: #E7E1D0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.019em;
  cursor: pointer;
}
.c-filter__btn.is-active {
  color: #ffffff;
  background-color: #2B1405;
}

.c-pagination {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .c-pagination {
    width: 70%;
    margin: 32px auto 0;
  }
}
.c-pagination .page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0 6px;
}
.c-pagination .page-numbers span.current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1/1;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.04em;
  border: 1px solid #2B1405;
  background-color: #2B1405;
  color: #ffffff;
  border-radius: 4px;
}
@media screen and (min-width: 769px) {
  .c-pagination .page-numbers span.current {
    width: 40px;
  }
}
.c-pagination .page-numbers a.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1/1;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  letter-spacing: -0.04em;
  border: 1px solid #D1C4AD;
  border-radius: 4px;
}
@media screen and (min-width: 769px) {
  .c-pagination .page-numbers a.page-numbers {
    width: 40px;
    font-size: 16px;
  }
}
.c-pagination .page-numbers a.prev,
.c-pagination .page-numbers a.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  aspect-ratio: 44/34;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  background-color: #E7E1D0;
  border: 1px solid #E7E1D0;
}
@media screen and (min-width: 769px) {
  .c-pagination .page-numbers a.prev,
  .c-pagination .page-numbers a.next {
    width: 60px;
  }
}
.c-pagination .page-numbers li:has(a.prev) {
  position: absolute;
  left: 0;
}
.c-pagination .page-numbers li:has(a.next) {
  position: absolute;
  right: 0;
}

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

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-left {
  text-align: left;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-red {
  color: red;
}

.u-bg-red {
  background-color: red;
}

/* 
* 余白打ち消しクラス
*/
.u-noRadius {
  border-radius: 0 !important;
}

.u-noMargin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-noMargin-top {
  margin-top: 0 !important;
}

.u-noMargin-bottom {
  margin-bottom: 0 !important;
}

.u-noPadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-noPadding-top {
  padding-top: 0 !important;
}

.u-noPadding-bottom {
  padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
  padding-top: 10px;
}
.-padding-t.-x2 {
  padding-top: 20px;
}
.-padding-t.-x4 {
  padding-top: 40px;
}
.-padding-t.-x6 {
  padding-top: 60px;
}
.-padding-t.-x8 {
  padding-top: 80px;
}
.-padding-t.-x10 {
  padding-top: 100px;
}

.-padding-b {
  padding-bottom: 10px;
}
.-padding-b.-x2 {
  padding-bottom: 20px;
}
.-padding-b.-x4 {
  padding-bottom: 40px;
}
.-padding-b.-x6 {
  padding-bottom: 60px;
}
.-padding-b.-x8 {
  padding-bottom: 80px;
}
.-padding-b.-x10 {
  padding-bottom: 100px;
}

.-margin-t {
  margin-top: 10px;
}
.-margin-t.-x2 {
  margin-top: 20px;
}
.-margin-t.-x4 {
  margin-top: 40px;
}
.-margin-t.-x6 {
  margin-top: 60px;
}
.-margin-t.-x8 {
  margin-top: 80px;
}
.-margin-t.-x10 {
  margin-top: 100px;
}

.-margin-b {
  margin-bottom: 10px;
}
.-margin-b.-x2 {
  margin-bottom: 20px;
}
.-margin-b.-x4 {
  margin-bottom: 40px;
}
.-margin-b.-x6 {
  margin-bottom: 60px;
}
.-margin-b.-x8 {
  margin-bottom: 80px;
}
.-margin-b.-x10 {
  margin-bottom: 100px;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
.t-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #F5F1E6;
}
.t-hero__maskWrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30vh;
  width: 89.3333333333%;
  aspect-ratio: 650/500;
}
@media screen and (min-width: 769px) {
  .t-hero__maskWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50.78125%;
  }
}
.t-hero__bg {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  --hero-mouse-x: 0px;
  --hero-mouse-y: 0px;
  transform: translate3d(var(--hero-mouse-x), var(--hero-mouse-y), 0);
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .t-hero__bg {
    width: 100%;
    height: auto;
  }
}
.t-hero__bg picture, .t-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .t-hero__bg picture, .t-hero__bg img {
    width: 100%;
    height: auto;
  }
}
.t-hero__bg--1 {
  z-index: 1;
}
.t-hero__bg--2 {
  z-index: 0;
}
.t-hero__canvas {
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 769px) {
  .t-hero__canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: auto;
  }
}
.t-hero__canvas #animation_container,
.t-hero__canvas #canvas,
.t-hero__canvas #dom_overlay_container {
  width: 100% !important;
  height: 100% !important;
}
.t-hero__title {
  z-index: 3;
  position: absolute;
  top: 57vh;
  left: 5.3333333333%;
  width: 89.3333333333%;
}
@media screen and (min-width: 769px) {
  .t-hero__title {
    display: flex;
    flex-direction: column-reverse;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    width: 95.546875%;
  }
}
.t-hero__title h1 {
  width: 79.7014925373%;
}
@media screen and (min-width: 769px) {
  .t-hero__title h1 {
    width: 100%;
  }
}
.t-hero__title__text {
  width: 173px;
  margin-top: 30px;
  margin-left: auto;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-hero__title__text {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    margin-bottom: 60px;
    font-size: 16px;
  }
}

.t-about {
  position: relative;
  padding: 0 5.3333333333% 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .t-about {
    padding: 0 4.6875% 0;
  }
}
.t-about .l-limit {
  padding: 80px 0 40px;
}
@media screen and (min-width: 769px) {
  .t-about .l-limit {
    padding: 140px 0 187px;
  }
}
.t-aboutContents {
  padding-top: 84vw;
}
@media screen and (min-width: 769px) {
  .t-aboutContents {
    width: min(54.1379310345%, 628px);
    margin-left: auto;
    padding-top: 0;
  }
}
.t-aboutContents__heading {
  margin-bottom: 24px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-aboutContents__heading {
    margin-bottom: 60px;
    font-size: 54px;
  }
}
.t-aboutContents__text {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-aboutContents__text {
    width: 84.3949044586%;
    margin-left: auto;
    margin-bottom: 60px;
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) {
  .t-aboutContents .c-button-wide {
    width: 84.3949044586%;
    margin-left: auto;
  }
}
.t-aboutImages {
  position: absolute;
}
.t-aboutImages--1 {
  width: 29.8507462687%;
  top: 13.8666666667vw;
  left: 23.7333333333%;
}
@media screen and (min-width: 769px) {
  .t-aboutImages--1 {
    width: 14.7413793103%;
    top: 80px;
    left: 13.0172413793%;
  }
}
.t-aboutImages--2 {
  width: 59.7014925373%;
  top: 39.4666666667vw;
  left: 21.3333333333%;
}
@media screen and (min-width: 769px) {
  .t-aboutImages--2 {
    width: 29.4827586207%;
    top: 268px;
    left: 11.724137931%;
  }
}
.t-aboutImages--3 {
  width: 22.0895522388%;
  top: 68vw;
  left: 12.2666666667%;
}
@media screen and (min-width: 769px) {
  .t-aboutImages--3 {
    width: 10.8620689655%;
    top: 449px;
    left: 6.8103448276%;
  }
}
.t-aboutImages--4 {
  width: 31.0447761194%;
  top: 105.0666666667vw;
  left: 43.4666666667%;
}
@media screen and (min-width: 769px) {
  .t-aboutImages--4 {
    width: 15.2586206897%;
    top: 716px;
    left: 22.4137931034%;
  }
}

.t-service {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-service {
    padding: 0 4.6875%;
  }
}
.t-service .l-limit {
  padding: 100px 0 40px;
}
@media screen and (min-width: 769px) {
  .t-service .l-limit {
    padding: 100px 0 120px;
  }
}
.t-serviceWrap {
  display: flex;
  flex-direction: column;
  gap: 44px 0;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 6.8965517241%;
  }
}
.t-serviceWrap__image {
  position: relative;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__image {
    position: sticky;
    top: 120px;
    width: 39.6551724138%;
  }
}
.t-serviceWrap__image__img {
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__image__img {
    width: auto;
    height: 100%;
  }
}
.t-serviceWrap__image__img:not(:first-child) {
  position: absolute;
  inset: 0;
}
.t-serviceWrap__image__img.is-active {
  opacity: 1;
}
.t-serviceWrap__image__obj {
  z-index: 2;
  opacity: 0;
  position: absolute;
  width: 29.304029304%;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__image__obj {
    width: 28.9205702648%;
  }
}
.t-serviceWrap__image__obj--1 {
  top: 78.8%;
  right: 0;
  transform-origin: right;
}
.t-serviceWrap__image__obj--2 {
  top: 55%;
  left: 0;
  transform-origin: left;
}
.t-serviceWrap__inner {
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__inner {
    gap: 10px 0;
    width: 50.8620689655%;
  }
}
.t-serviceWrap__inner .c-button-wide {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__inner .c-button-wide {
    margin-top: 50px;
  }
}
.t-serviceWrap__inner .c-button-wide .c-arrow path {
  fill: #2B1405;
}
.t-serviceWrap__block {
  padding: 30px 20px;
  background-color: #214C18;
  border-radius: 6px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__block {
    padding: 30px 40px;
  }
}
.t-serviceWrap__block *, .t-serviceWrap__block a {
  color: #ffffff;
}
.t-serviceWrap__heading {
  margin-bottom: 16px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__heading {
    margin-bottom: 30px;
    font-size: 46px;
  }
}
.t-serviceWrap__heading span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__heading span {
    margin-left: 4px;
    font-size: 16px;
  }
}
.t-serviceWrap__text {
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__text {
    font-size: 15px;
  }
}
.t-serviceWrap__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 6px;
  margin: 12px 0;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__list {
    gap: 10px;
    margin: 20px 0;
  }
}
.t-serviceWrap__list__item {
  padding: 4px 16px;
  background-color: #14360D;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__list__item {
    padding: 8px 20px;
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__button {
    max-width: 337px;
  }
}
.t-serviceWrap__button a {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .t-serviceWrap__button a {
    font-size: 20px;
  }
}
.t-serviceWrap__button a:hover {
  opacity: 1;
}
.t-serviceWrap__button a:hover span::before {
  transform: scaleX(1);
  transform-origin: left;
}
.t-serviceWrap__button a:hover .c-arrow {
  animation: 0.82s cubic-bezier(0.16, 0.88, 0.25, 1) 0s 1 normal none running hoverArrowMotion;
}
.t-serviceWrap__button span {
  display: inline-block;
  position: relative;
}
.t-serviceWrap__button span::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.16, 0.88, 0.25, 1) 0s;
}
.t-serviceWrap__button .c-arrow {
  width: 16px;
}
.t-serviceWrap__button .c-arrow path {
  fill: #ffffff;
}

.t-team {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .t-team {
    padding: 0 4.6875%;
  }
}
.t-team .l-limit {
  padding: 100px 0 80px;
}
@media screen and (min-width: 769px) {
  .t-team .l-limit {
    padding: 240px 0 100px;
  }
}
.t-teamMain {
  --team-card-thumb-blur: 6px;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .t-teamMain {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 769px) {
  .t-teamMain a {
    display: flex;
  }
}
.t-teamMain a:hover {
  opacity: 1;
}
.t-teamMain__thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .t-teamMain__thumb {
    width: 32.0689655172%;
    min-width: 350px;
  }
}
.t-teamMain__thumb .-img {
  position: relative;
  z-index: 1;
  margin: -6px;
}
.t-teamMain__thumb .-img picture {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  will-change: filter;
  filter: blur(var(--team-card-thumb-blur));
}
.t-teamMain__thumb .-img img {
  display: block;
  width: 100%;
  height: auto;
}
.t-teamMain__thumb .-blur {
  position: absolute;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.t-teamMain__thumb .-blur picture,
.t-teamMain__thumb .-blur img {
  display: block;
  width: 100%;
  height: 100%;
}
.t-teamMain__thumb .-blur img {
  -o-object-fit: cover;
  object-fit: cover;
}
.t-teamMain.is-hover .c-teamCard__thumb .-blur,
.t-teamMain.is-hover .t-teamMain__thumb .-blur {
  opacity: 0;
}
.t-teamMain.is-hover .c-teamCard__thumb .-img picture,
.t-teamMain.is-hover .t-teamMain__thumb .-img picture {
  filter: url("#teamCardThumbDistortion") blur(var(--team-card-thumb-blur)) saturate(1.08) contrast(1.04);
}
.t-teamMain__contents {
  padding: 32px 20px;
  background-color: #052335;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-teamMain__contents {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
  }
}
.t-teamMain__driven {
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .t-teamMain__driven {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
.t-teamMain__driven span {
  display: block;
  margin-bottom: 4px;
  color: #E57838;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .t-teamMain__driven span {
    font-size: 16px;
  }
}
.t-teamMain__name {
  margin-bottom: 30px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-teamMain__name {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 2;
    letter-spacing: -0.02em;
  }
}
.t-teamMain__name span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: -0.02em;
}
.t-teamMain__text {
  opacity: 0.4;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-teamMain__text {
    margin-top: auto;
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .t-teamMain__text {
    font-size: 26px;
  }
}
.t-teamSlider {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .t-teamSlider {
    width: 86.2068965517%;
    margin: 0 auto 60px;
    padding-bottom: 40px;
    overflow: hidden;
  }
}
.t-teamSlider .swiper-wrapper {
  align-items: stretch;
}
.t-teamSlider .swiper-slide {
  height: auto;
  display: flex;
}
.t-teamSlider .swiper-pagination {
  bottom: 0 !important;
}
.t-teamSlider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 0.4;
  margin: 0 7px !important;
}
.t-teamSlider .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .t-team .c-button-wide {
    margin: 0 auto;
  }
}

.t-loop {
  overflow: hidden;
  padding: 40px 0 56px;
  background-color: #F0EBDE;
}
@media screen and (min-width: 769px) {
  .t-loop {
    padding: 60px 0 100px;
  }
}
.t-loop *, .t-loop a {
  color: #2B1405;
}
.t-loop__heading {
  text-align: center;
  margin-bottom: 16px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-loop__heading {
    margin-bottom: 50px;
    font-size: 38px;
  }
}
.t-loop__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  margin-bottom: 10px;
}
.t-loop__list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 10px;
}
.t-loop__list__item {
  white-space: nowrap;
  padding: 14px 18px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: -0.019em;
  background-color: #ffffff;
  border-radius: 6px;
}
@media screen and (min-width: 769px) {
  .t-loop__list__item {
    padding: 24px 30px;
  }
}

@keyframes loop-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes loop-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.t-info {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .t-info {
    padding: 0 4.6875%;
  }
}
.t-info .l-limit {
  padding: 100px 0 40px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .t-info .l-limit {
    padding: 120px 0 100px;
  }
}
.t-infoWrap:has(+ .t-infoWrap) {
  margin-bottom: 56px;
}
@media screen and (min-width: 769px) {
  .t-infoWrap:has(+ .t-infoWrap) {
    margin-bottom: 20px;
  }
}
.t-infoWrap__heading {
  margin-bottom: 16px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-infoWrap__heading {
    margin-bottom: 20px;
    font-size: 46px;
  }
}
.t-infoWrap__list {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .t-infoWrap__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) {
  .t-infoWrap__item {
    width: 23.7068965517%;
  }
}
.t-infoWrap__item a:hover {
  opacity: 1;
}
.t-infoWrap__item a:hover .t-infoWrap__item__thumb img {
  transform: scale(1.06);
}
.t-infoWrap__item a:hover .t-infoWrap__item__heading {
  background-position: left bottom;
  background-size: 100% 1px;
}
.t-infoWrap__item__thumb {
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .t-infoWrap__item__thumb {
    margin-bottom: 18px;
  }
}
.t-infoWrap__item__thumb img {
  display: block;
  transition: transform 0.82s ease 0s;
  will-change: transform;
}
.t-infoWrap__item__heading {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  transition-property: background-size;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}
@media screen and (min-width: 769px) {
  .t-infoWrap__item__heading {
    font-size: 16px;
  }
}
.t-infoWrap__item__heading::after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  background: transparent url(../image/common/icon_external.svg) no-repeat scroll center center/cover;
  transform: translate(6px, -1px);
}
.t-infoWrap--youtube .t-infoWrap__item__thumb {
  position: relative;
}
.t-infoWrap--youtube .t-infoWrap__item__thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  aspect-ratio: 80/48;
  background: transparent url(../image/common/icon_youtube.png) no-repeat scroll center center/cover;
}

/*----------------------------------------
	Page About
----------------------------------------*/
.t-vision {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-vision {
    padding: 0 4.6875%;
  }
}
.t-vision .l-limit {
  padding: 56px 0 40px;
}
@media screen and (min-width: 769px) {
  .t-vision .l-limit {
    padding: 80px 0;
  }
}
.t-visionWrap {
  padding-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .t-visionWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.t-visionWrap:last-of-type {
  padding: 0;
}
.t-visionWrap__images {
  position: relative;
  width: 51.9402985075%;
  margin: 0 auto 70px;
}
@media screen and (min-width: 769px) {
  .t-visionWrap__images {
    width: 25.3448275862%;
    margin: 0;
  }
}
.t-visionWrap__images__item {
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 64.367816092%;
}
@media screen and (min-width: 769px) {
  .t-visionWrap__images__item {
    bottom: -110px;
    right: -30px;
    width: 53.0612244898%;
  }
}
@media screen and (min-width: 769px) {
  .t-visionWrap__images--2 {
    padding-left: 30px;
  }
}
.t-visionWrap__images--2 .t-visionWrap__images__item {
  bottom: -50px;
  right: auto;
  left: -20px;
}
@media screen and (min-width: 769px) {
  .t-visionWrap__images--2 .t-visionWrap__images__item {
    bottom: -110px;
    left: -30px;
  }
}
.t-visionWrap__images img {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.t-visionWrap:nth-child(n+2) {
  padding-top: 56px;
  border-top: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .t-visionWrap__contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 62.5862068966%;
  }
}
.t-visionWrap__heading {
  margin-bottom: 16px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-visionWrap__heading {
    flex: 1;
    position: sticky;
    top: 140px;
    margin-bottom: 0;
    font-size: 38px;
  }
}
@media screen and (min-width: 769px) {
  .t-visionWrap__inner {
    width: 51.2396694215%;
  }
}
.t-visionWrap__list {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .t-visionWrap__list {
    margin-top: 60px;
  }
}
.t-visionWrap__item {
  padding: 24px 0;
  border-top: 1px solid #D1C4AD;
}
.t-visionWrap__item__title {
  margin-bottom: 8px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-visionWrap__item__title {
    margin-bottom: 16px;
    font-size: 26px;
  }
}
.t-visionBlock {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding: 40px 30px;
  background-color: #93250E;
  border-radius: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-visionBlock {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 86.5517241379%;
    margin: 0 auto;
    padding: 40px 60px 50px;
  }
}
.t-visionBlock *, .t-visionBlock a {
  color: #ffffff;
}
.t-visionBlock__heading {
  margin-bottom: 16px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-visionBlock__heading {
    margin-bottom: 30px;
    font-size: 38px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) {
  .t-visionBlock__image {
    width: 52.036199095%;
  }
}

.t-catch {
  box-sizing: border-box;
  overflow: hidden;
}
.t-catch--1 .l-limit {
  padding: 60px 0 0;
}
@media screen and (min-width: 769px) {
  .t-catch--1 .l-limit {
    padding: 100px 0 0;
  }
}
.t-catch--2 .l-limit {
  position: relative;
  padding: 191px 0 183px;
}
@media screen and (min-width: 769px) {
  .t-catch--2 .l-limit {
    padding: 191px 0 135px;
  }
}
.t-catch--3 .l-limit {
  padding: 130px 0 120px;
}
@media screen and (min-width: 769px) {
  .t-catch--3 .l-limit {
    padding: 140px 0 100px;
  }
}
.t-catchWrap {
  z-index: 1;
  position: relative;
}
.t-catchWrap__text {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__text {
    font-size: 18px;
  }
}
.t-catchWrap__text:has(+ *) {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__text:has(+ *) {
    margin-bottom: 28px;
  }
}
.t-catchWrap__text:has(+ .t-catchWrap__blocks) {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__text:has(+ .t-catchWrap__blocks) {
    margin-bottom: 30px;
  }
}
.t-catchWrap__lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__lead {
    font-size: 18px;
  }
}
.t-catchWrap__lead:has(+ *) {
  margin-bottom: 17px;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__lead:has(+ *) {
    margin-bottom: 30px;
  }
}
.t-catchWrap__heading {
  text-align: center;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__heading {
    font-size: 42px;
  }
}
.t-catchWrap__heading:has(+ *) {
  margin-bottom: 16px;
}
.t-catchWrap__subheading {
  text-align: center;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__subheading {
    font-size: 38px;
  }
}
.t-catchWrap__subheading:has(+ *) {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__subheading:has(+ *) {
    margin-bottom: 30px;
  }
}
.t-catchWrap__title {
  text-align: center;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__title {
    font-size: 54px;
  }
}
.t-catchWrap__title:has(+ *) {
  margin-bottom: 17px;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__title:has(+ *) {
    margin-bottom: 30px;
  }
}
.t-catchWrap__blocks {
  text-align: center;
  padding: 30px 0;
  width: 89.3333333333%;
  margin: 0 auto;
  background-color: #801C08;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__blocks {
    width: 60.15625%;
  }
}
.t-catchWrap__blocks:has(+ .t-catchWrap__blocks) {
  margin-bottom: 10px;
}
.t-catchWrap__blocks__text {
  margin-bottom: 10px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__blocks__text {
    font-size: 16px;
  }
}
.t-catchWrap__blocks__title {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-catchWrap__blocks__title {
    font-size: 26px;
  }
}
.t-catchWrap .c-button-contact {
  display: flex;
  justify-content: center;
  margin-top: 33px;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .t-catchWrap .c-button-contact {
    margin-top: 40px;
  }
}
.t-catchWrap .c-button-contact a {
  width: 237px;
  padding: 10px;
  font-size: 18px;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .t-catchWrap .c-button-contact a {
    width: 300px;
    padding: 22px 0;
    font-size: 18px;
  }
}
.t-catchImages {
  position: absolute;
}
.t-catchImages--1 {
  width: 34.0298507463%;
  top: 15.7333333333vw;
  left: 5.3333333333%;
}
@media screen and (min-width: 769px) {
  .t-catchImages--1 {
    width: 17.890625%;
    top: 122px;
    left: 4.609375%;
  }
}
.t-catchImages--2 {
  width: 41.7910447761%;
  bottom: 80px;
  left: 50.4%;
}
@media screen and (min-width: 769px) {
  .t-catchImages--2 {
    width: 21.953125%;
    top: 136px;
    bottom: auto;
    left: 72.8125%;
  }
}
.t-catchImages--3 {
  width: 19.4029850746%;
  top: 32.2666666667vw;
  left: 45.3333333333%;
}
@media screen and (min-width: 769px) {
  .t-catchImages--3 {
    width: 10.15625%;
    top: 460px;
    left: 12.421875%;
  }
}
.t-catchImages--4 {
  width: 17.9104477612%;
  bottom: 58px;
  left: 14.4%;
}
@media screen and (min-width: 769px) {
  .t-catchImages--4 {
    width: 9.375%;
    top: 493px;
    bottom: auto;
    left: 67.96875%;
  }
}

.t-pageService {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-pageService {
    padding: 0 4.6875%;
  }
}
.t-pageService .l-limit {
  padding: 100px 0 80px;
}
@media screen and (min-width: 769px) {
  .t-pageService .l-limit {
    padding: 140px 0 80px;
  }
}
.t-pageService__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin-bottom: 48px;
}
@media screen and (min-width: 769px) {
  .t-pageService__wrap {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 769px) {
  .t-pageService__wrap .c-page-title {
    flex: 1;
  }
}
@media screen and (min-width: 769px) {
  .t-pageService__wrap .c-page-text {
    width: 50.8620689655%;
  }
}
.t-pageService__head {
  padding-bottom: 32px;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .t-pageService__head {
    padding-bottom: 50px;
  }
}
.t-pageService__head__catch {
  text-align: center;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2B1405;
}
@media screen and (min-width: 769px) {
  .t-pageService__head__catch {
    margin-bottom: 40px;
    font-size: 68px;
  }
}
.t-pageService__head__text {
  text-align: center;
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
  color: #2B1405;
}
@media screen and (min-width: 769px) {
  .t-pageService__head__text {
    font-size: 16px;
  }
}
.t-pageService__inner {
  padding: 40px 20px;
  border-radius: 6px;
  background-color: #F0EBDE;
}
@media screen and (min-width: 769px) {
  .t-pageService__inner {
    padding: 80px 60px 100px;
  }
}
.t-pageService__inner .t-serviceWrap {
  padding-top: 30px;
}
@media screen and (min-width: 769px) {
  .t-pageService__inner .t-serviceWrap {
    padding-top: 60px;
  }
}
.t-pageService__inner .t-serviceWrap__image {
  transform: translateX(0);
}
.t-pageService__inner .t-serviceWrap__inner {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.t-pageService__inner .c-button-wide__heading {
  color: #2B1405;
}
.t-pageService__inner .c-button-wide__heading span {
  color: #2B1405;
}
.t-pageService__inner .c-button-wide .c-arrow path {
  fill: #2B1405;
}

/*----------------------------------------
	Page Service
----------------------------------------*/
.t-intro {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-intro {
    padding: 0 4.6875%;
  }
}
.t-intro .l-limit {
  padding: 56px 0 40px;
}
@media screen and (min-width: 769px) {
  .t-intro .l-limit {
    padding: 100px 0 60px;
  }
}
.t-introWrap {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 769px) {
  .t-introWrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 75.8620689655%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .t-introWrap__contents {
    flex: 1;
  }
}
.t-introWrap__heading {
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .t-introWrap__heading {
    margin-bottom: 27px;
    font-size: 70px;
  }
}
.t-introWrap__block {
  position: relative;
  padding: 18px 20px;
  border-radius: 6px;
  background-color: #214C18;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-introWrap__block {
    width: 90.3361344538%;
    padding: 26px 30px 20px;
  }
}
.t-introWrap__block * {
  color: #ffffff;
}
.t-introWrap__block:first-of-type {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .t-introWrap__block:first-of-type {
    margin-top: 27px;
  }
}
.t-introWrap__block:has(+ .t-introWrap__block) {
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .t-introWrap__block:has(+ .t-introWrap__block) {
    margin-bottom: 10px;
  }
}
.t-introWrap__block .c-page-category {
  margin-bottom: 10px;
}
.t-introWrap__block__heading {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 2;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .t-introWrap__block__heading {
    font-size: 35px;
  }
}
.t-introWrap__block__heading span {
  display: inline-block;
  margin-left: 4px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .t-introWrap__block__heading span {
    font-size: 14px;
  }
}
.t-introWrap__block .c-arrowBottom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media screen and (min-width: 769px) {
  .t-introWrap__block .c-arrowBottom {
    right: 30px;
  }
}
.t-introWrap__image {
  position: relative;
  width: 81.4925373134%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .t-introWrap__image {
    width: 46.1363636364%;
    margin: 0;
  }
}
.t-introWrap__image .-obj {
  opacity: 0;
  position: absolute;
  width: 24.6305418719%;
}
.t-introWrap__image .-obj1 {
  right: 0;
  bottom: 10.2990033223%;
}
.t-introWrap__image .-obj2 {
  left: 0;
  bottom: 33.7209302326%;
}

.t-approach {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-approach {
    padding: 0 4.6875%;
  }
}
.t-approach .l-limit {
  padding: 64px 0 80px;
}
@media screen and (min-width: 769px) {
  .t-approach .l-limit {
    padding: 120px 0 100px;
  }
}
.t-approachWrap:has(+ .t-approachWrap) {
  margin-bottom: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .t-approachWrap:has(+ .t-approachWrap) {
    margin-bottom: 80px;
    padding-bottom: 100px;
  }
}
.t-approachWrapHead {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
@media screen and (min-width: 769px) {
  .t-approachWrapHead {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 8.6206896552%;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 769px) {
  .t-approachWrapHead__main {
    flex: 1;
  }
}
.t-approachWrapHead__main .c-page-category {
  margin-bottom: 36px;
}
@media screen and (min-width: 769px) {
  .t-approachWrapHead__main .c-page-category {
    margin-bottom: 112px;
  }
}
.t-approachWrapHead__main__heading {
  margin-bottom: 16px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-approachWrapHead__main__heading {
    margin-bottom: 20px;
    font-size: 56px;
  }
}
.t-approachWrapHead__main__heading span {
  font-size: 14px;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-approachWrapHead__main__heading span {
    font-size: 18px;
  }
}
.t-approachWrapHead__image {
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .t-approachWrapHead__image {
    width: 50.8620689655%;
  }
}
.t-approachWrapService {
  display: flex;
  flex-direction: column;
  gap: 36px 0;
}
@media screen and (min-width: 769px) {
  .t-approachWrapService {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
@media screen and (min-width: 769px) {
  .t-approachAc {
    width: 74.4827586207%;
  }
}
.t-approachAc__item {
  border-bottom: 1px solid #D1C4AD;
}
.t-approachAc__item:first-of-type {
  border-top: 1px solid #D1C4AD;
}
.t-approachAc__item.is-open .t-approachAc__head__wrap::after {
  transform: rotate(90deg);
}
.t-approachAc__head {
  padding: 26px 0;
}
@media screen and (min-width: 769px) {
  .t-approachAc__head {
    padding: 30px 0;
    cursor: pointer;
  }
}
.t-approachAc__head:hover .t-approachAc__heading span {
  background-position: left bottom;
  background-size: 100% 1px;
}
.t-approachAc__head__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 16px;
}
@media screen and (min-width: 769px) {
  .t-approachAc__head__wrap {
    align-items: flex-start;
    gap: 0 30px;
  }
}
.t-approachAc__head__wrap span:not(.t-approachAc__heading span) {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .t-approachAc__head__wrap span:not(.t-approachAc__heading span) {
    transform: translateY(12px);
    font-size: 14px;
  }
}
.t-approachAc__head__wrap::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 16px;
  height: 2px;
  background-color: #2B1405;
}
@media screen and (min-width: 769px) {
  .t-approachAc__head__wrap::before {
    top: 20px;
    width: 22px;
  }
}
.t-approachAc__head__wrap::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 7px;
  width: 2px;
  height: 17px;
  background-color: #2B1405;
  transition: transform 0.32s ease 0s;
}
@media screen and (min-width: 769px) {
  .t-approachAc__head__wrap::after {
    top: 10px;
    right: 10px;
    width: 2px;
    height: 22px;
  }
}
.t-approachAc__category {
  display: flex;
  align-items: flex-end;
  gap: 0 6px;
  margin-bottom: 12px;
  padding-left: 31px;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category {
    gap: 0 13px;
    margin-bottom: 14px;
    padding-left: 48px;
  }
}
.t-approachAc__category__item {
  display: flex;
  align-items: flex-end;
  gap: 0 6px;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item {
    gap: 0 12px;
  }
}
.t-approachAc__category__item .-icon--work {
  width: 25px;
  aspect-ratio: 32/34;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--work {
    width: 32px;
  }
}
.t-approachAc__category__item .-icon--story {
  width: 19px;
  aspect-ratio: 24/33;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--story {
    width: 24px;
  }
}
.t-approachAc__category__item .-icon--team {
  width: 42px;
  aspect-ratio: 42/30;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--team {
    width: 42px;
  }
}
.t-approachAc__category__item .-icon--language {
  width: 42px;
  aspect-ratio: 42/35;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--language {
    width: 42px;
  }
}
.t-approachAc__category__item .-icon--company {
  width: 23px;
  aspect-ratio: 23/36;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--company {
    width: 23px;
  }
}
.t-approachAc__category__item .-icon--identity {
  width: 41px;
  aspect-ratio: 41/34;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--identity {
    width: 41px;
  }
}
.t-approachAc__category__item .-icon--society {
  width: 31px;
  aspect-ratio: 31/31;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--society {
    width: 31px;
  }
}
.t-approachAc__category__item .-icon--gift {
  width: 29px;
  aspect-ratio: 29/31;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--gift {
    width: 29px;
  }
}
.t-approachAc__category__item .-icon--person {
  width: 18px;
  aspect-ratio: 18/33;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--person {
    width: 18px;
  }
}
.t-approachAc__category__item .-icon--heart {
  width: 24px;
  aspect-ratio: 24/31;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-icon--heart {
    width: 24px;
  }
}
.t-approachAc__category__item .-text {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-approachAc__category__item .-text {
    font-size: 14px;
    line-height: 2;
  }
}
.t-approachAc__heading {
  position: relative;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-approachAc__heading {
    font-size: 32px;
  }
}
.t-approachAc__heading span {
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  transition-property: background-size;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}
.t-approachAc__inner {
  display: none;
  padding: 8px 29px 32px 29px;
}
@media screen and (min-width: 769px) {
  .t-approachAc__inner {
    padding: 20px 46px 40px 46px;
  }
}
.t-approachAc__inner .c-page-text:has(+ .t-approachAc__list) {
  margin-bottom: 16px;
}
.t-approachAc__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 769px) {
  .t-approachAc__list {
    flex-direction: row;
    gap: 10px;
  }
}
.t-approachAc__list__item {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: -0.019em;
  color: #ffffff;
  background-color: #214C18;
}
@media screen and (min-width: 769px) {
  .t-approachAc__list__item {
    padding: 8px 20px;
    font-size: 15px;
  }
}
.t-approachDetail {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-top: 10px;
  padding: 20px;
  border-radius: 6px;
  background-color: #E5DFCC;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-approachDetail {
    gap: 21px 0;
    margin-top: 20px;
    padding: 30px 30px 20px 30px;
  }
}
.t-approachDetail__wrap {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 33px;
  }
}
.t-approachDetail__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 26px;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__item {
    flex: 1;
    padding: 30px 0;
  }
}
.t-approachDetail__item .t-approachDetail__heading span {
  opacity: 0.4;
}
.t-approachDetail__item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  width: 20px;
  aspect-ratio: 20/13;
  background: transparent url(../image/common/arrow_triangle.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__item::before {
    transform: translate(0, -50%) rotate(-90deg);
    top: 50%;
    bottom: auto;
    right: -28px;
    left: auto;
    width: 20px;
  }
}
.t-approachDetail__item:last-of-type::before {
  display: none;
}
.t-approachDetail__item.-green {
  background-color: #214C18;
}
.t-approachDetail__item.-green .t-approachDetail__heading,
.t-approachDetail__item.-green .t-approachDetail__subheading {
  color: #ffffff;
}
.t-approachDetail__item.-green .t-approachDetail__heading span,
.t-approachDetail__item.-green .t-approachDetail__subheading span {
  opacity: 0.4;
  color: #ffffff;
}
.t-approachDetail__item.-green .t-approachDetail__text {
  color: #ffffff;
}
.t-approachDetail__item.-red {
  background-color: #2B1405;
}
.t-approachDetail__item.-red .t-approachDetail__heading,
.t-approachDetail__item.-red .t-approachDetail__subheading {
  color: #ffffff;
}
.t-approachDetail__item.-red .t-approachDetail__heading span,
.t-approachDetail__item.-red .t-approachDetail__subheading span {
  opacity: 0.4;
  color: #ffffff;
}
.t-approachDetail__item.-red .t-approachDetail__text {
  color: #ffffff;
}
.t-approachDetail__heading {
  text-align: center;
  margin-bottom: 10px;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__heading {
    margin-bottom: 12px;
    font-size: 26px;
  }
}
.t-approachDetail__heading span {
  display: block;
  margin-bottom: 2px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 8px;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__heading span {
    font-size: 14px;
  }
}
.t-approachDetail__subheading {
  text-align: center;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__subheading {
    font-size: 22px;
  }
}
.t-approachDetail__subheading span {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__subheading span {
    font-size: 16px;
  }
}
.t-approachDetail__subheading:has(+ .t-approachDetail__text) {
  margin-bottom: 12px;
}
.t-approachDetail__text {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__text {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  .t-approachDetail__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    gap: 0 20px;
  }
}
.t-approachDetail__bottom__text {
  flex: 1;
  text-align: center;
  border-radius: 4px;
  padding: 6px 16px;
  background-color: #D1C4AD;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__bottom__text {
    padding: 8px 20px;
    font-size: 15px;
    line-height: 2;
  }
}
.t-approachDetail__title {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.019em;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__title {
    margin-bottom: 0;
    padding-top: 10px;
    font-size: 14px;
  }
}
.t-approachDetail__list {
  display: flex;
  gap: 6px;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__list {
    justify-content: flex-end;
  }
}
.t-approachDetail__list__item {
  border-radius: 4px;
  padding: 6px 16px;
  background-color: #D1C4AD;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 769px) {
  .t-approachDetail__list__item {
    padding: 8px 20px;
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) {
  .t-approachFaq {
    width: 74.4827586207%;
  }
}
.t-approachFaq__item {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  padding: 32px 0;
  border-bottom: 1px solid #D1C4AD;
}
@media screen and (min-width: 769px) {
  .t-approachFaq__item {
    gap: 20px 0;
    padding: 40px 0;
  }
}
.t-approachFaq__item:first-of-type {
  border-top: 1px solid #D1C4AD;
}
.t-approachFaq__q, .t-approachFaq__a {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.t-approachFaq__q span, .t-approachFaq__a span {
  display: block;
  width: 12px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-approachFaq__q span, .t-approachFaq__a span {
    font-size: 20px;
  }
}
.t-approachFaq__q {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-approachFaq__q {
    font-size: 32px;
  }
}
.t-approachFaq__a {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-approachFaq__a {
    font-size: 18px;
  }
}

.t-faq {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-faq {
    padding: 0 4.6875%;
  }
}
.t-faq .l-limit {
  padding: 48px 0 80px;
}
@media screen and (min-width: 769px) {
  .t-faq .l-limit {
    padding: 80px 0 80px;
  }
}

/*----------------------------------------
	Page Contact
----------------------------------------*/
.t-contact {
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-contact {
    padding: 0 4.6875%;
  }
}
.t-contact .l-limit {
  padding: 56px 0;
}
@media screen and (min-width: 769px) {
  .t-contact .l-limit {
    padding: 80px 0;
  }
}
.t-contactWrap {
  margin-bottom: 39px;
}
@media screen and (min-width: 769px) {
  .t-contactWrap {
    margin-bottom: 60px;
  }
}
.t-contactWrap__text {
  text-align: center;
  width: 242px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.66;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .t-contactWrap__text {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    line-height: 1.8;
  }
}
.t-contactTab {
  display: flex;
  justify-content: space-between;
  gap: 0 2px;
}
@media screen and (min-width: 769px) {
  .t-contactTab {
    gap: 0 4px;
    width: 83.1034482759%;
    margin: 0 auto;
  }
}
.t-contactTab__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D1C4AD;
  border-radius: 6px 6px 0 0;
}
.t-contactTab__item.is-active {
  background-color: #F0EBDE;
}
.t-contactTab__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .t-contactTab__item a {
    min-height: 80px;
    font-size: 20px;
  }
}
.t-contactInner {
  padding: 30px 20px;
  background-color: #F0EBDE;
  box-sizing: border-box;
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 769px) {
  .t-contactInner {
    width: 83.1034482759%;
    margin: 0 auto;
    padding: 50px 78px;
  }
}
.t-contactInner__item {
  margin-bottom: 17px;
}
@media screen and (min-width: 769px) {
  .t-contactInner__item {
    margin-bottom: 27px;
  }
}
.t-contactInner__item iframe {
  display: flex;
  justify-content: center;
}
.t-contactInner__head {
  display: flex;
  align-items: center;
  gap: 0 6px;
}
@media screen and (min-width: 769px) {
  .t-contactInner__head {
    margin-bottom: 4px;
  }
}
.t-contactInner__head label {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 40px;
}
@media screen and (min-width: 769px) {
  .t-contactInner__head label {
    font-size: 16px;
  }
}
.t-contactInner__head span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #ffffff;
  background-color: #C02809;
}
@media screen and (min-width: 769px) {
  .t-contactInner__head span {
    padding: 8px 10px;
    font-size: 14px;
  }
}
.t-contactInner__body {
  display: flex;
  justify-content: space-between;
  gap: 0 8px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .t-contactInner__body {
    gap: 0 20px;
  }
}
.t-contactInner__body .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.t-contactInner__body .wpcf7-form-control-wrap input {
  width: 100%;
}
.t-contactInner__body--name input {
  width: 50%;
}
.t-contactInner__body--select {
  position: relative;
}
@media screen and (min-width: 769px) {
  .t-contactInner__body--select {
    max-width: 374px;
  }
}
.t-contactInner__body--select::before {
  content: "";
  z-index: 1;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 8px;
  aspect-ratio: 8/6;
  background: transparent url(../image/common/arrow_triangle02.svg) no-repeat scroll center center/contain;
}
.t-contactInner__body input {
  flex: 1;
  display: inline-block;
  padding: 5px 16px;
  background-color: #ffffff;
  border: 1px solid #D1C4AD;
  border-radius: 6px;
  font-size: 15px;
  line-height: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-contactInner__body input {
    padding: 10px 16px;
    font-size: 16px;
  }
}
.t-contactInner__body textarea {
  flex: 1;
  display: inline-block;
  width: 100%;
  padding: 5px 16px;
  background-color: #ffffff;
  border: 1px solid #D1C4AD;
  border-radius: 6px;
  font-size: 15px;
  line-height: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-contactInner__body textarea {
    padding: 10px 16px;
    font-size: 16px;
  }
}
.t-contactInner__body select {
  flex: 1;
  display: inline-block;
  width: 100%;
  padding: 16px 16px;
  background-color: #ffffff;
  border: 1px solid #D1C4AD;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 769px) {
  .t-contactInner__body select {
    padding: 16px 16px;
    font-size: 16px;
  }
}
.t-contactInner__button {
  width: 218px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .t-contactInner__button {
    width: 374px;
  }
}
.t-contactInner__button input {
  display: block;
  width: 100%;
  padding: 11px 0;
  border-radius: 200px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.04em;
  background-color: #E8792F;
  color: #ffffff;
  border: none;
}
@media screen and (min-width: 769px) {
  .t-contactInner__button input {
    padding: 14px 0;
    font-size: 18px;
    cursor: pointer;
  }
}
.t-contactInner__button input + span {
  width: 0;
  margin: 0;
}