@charset "UTF-8";
@font-face {
  font-family: "sabon-lt-std"; /* 自分で決めるフォント名（任意の名前でOK） */
  src: url("../fonts/SabonLTStd-Roman.otf") format("opentype"); /* 第一候補（推奨） */
  font-display: swap; /* フォント読み込み中もテキストを消さずに代替フォントで表示 */
}
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

* {
  box-sizing: border-box;
  outline: none;
  backface-visibility: hidden;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  line-height: 1.6;
}

body {
  position: relative;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.container {
  min-height: 100vh;
  min-height: 100dvh;
  opacity: 0;
  pointer-events: none;
}
.loaded .container {
  opacity: 1;
  transition: opacity 1s;
  pointer-events: auto;
}

main {
  position: relative;
}
main > *:not(.fv) {
  margin-top: 200px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s;
}
a:hover {
  opacity: 0.5;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.inview:not(.view) {
  opacity: 0.01;
}
.inview.view {
  opacity: 1;
  animation: view 0.5s backwards;
}
@keyframes view {
  0% {
    opacity: 0.01;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.inview2:not(.view) {
  opacity: 0.01;
  transition: opacity 0.25s;
}
.inview2.view {
  opacity: 1;
  transition: opacity 0.25s;
}

.inviews:not(.view) > * {
  opacity: 0.01;
}
.inviews.view > * {
  opacity: 1;
  animation: views 0.5s backwards;
}
@keyframes views {
  0% {
    opacity: 0.01;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.inviewParent {
  position: relative;
}
.inviewTrigger {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (min-width: 769px) {
  .inviewTrigger {
    top: 40%;
  }
}
.inviewChild:not(.view) {
  opacity: 0.001;
  transition: opacity 0.25s;
}
.inviewChild.view {
  opacity: 1;
  transition: opacity 0.25s;
}

.header {
  padding: 57px 96px 46px 55px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header__logo {
  max-width: 258px;
  width: 100%;
}
.header__menuList ul {
  display: flex;
  gap: min(60 / 2000 * 100vw, 60px);
}
.header__menuList ul li a {
  font-family: "sabon-lt-std", serif;
  font-size: 19px;
  letter-spacing: 0.16em;
  position: relative;
  text-decoration: none;
}
.header__menuList ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #d9d324;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__menuList ul li a:hover, .header__menuList ul li a.-current {
  opacity: 1;
}
.header__menuList ul li a:hover::after, .header__menuList ul li a.-current::after {
  width: 100%;
}

.footer {
  padding-top: 200px;
  padding-bottom: 100px;
}
.footer__cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__logo {
  max-width: 258px;
  width: 100%;
}
.footer__list ul {
  display: flex;
  gap: min(60 / 2000 * 100vw, 60px);
}
.footer__list ul li a {
  font-family: "sabon-lt-std", serif;
  font-size: 19px;
  letter-spacing: 0.16em;
  position: relative;
  text-decoration: none;
}
.footer__list ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #d9d324;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__list ul li a:hover, .footer__list ul li a.-current {
  opacity: 1;
}
.footer__list ul li a:hover::after, .footer__list ul li a.-current::after {
  width: 100%;
}
.footer__copy {
  margin-top: 80px;
}
.footer__copy p {
  font-size: 19px;
  letter-spacing: 0.16em;
  text-align: center;
}

.floating {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 100;
}
.floating ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.floating ul li {
  width: 50px;
  aspect-ratio: 1/1;
}

.inner {
  max-width: 1680px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

.button {
  max-width: 670px;
  min-height: 95px;
  margin-left: auto;
  margin-right: auto;
}
.button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: inherit;
  font-size: 27px;
  letter-spacing: 0.36em;
  text-align: center;
  background-color: #d9d324;
}

.title + * {
  margin-top: 70px;
}
.title__en {
  font-family: "sabon-lt-std", serif;
  font-size: 90px;
  letter-spacing: 0.22em;
  text-align: center;
  line-height: 1;
}
.title__ja {
  font-size: 27px;
  letter-spacing: 0.265em;
  text-align: center;
}

.about {
  padding-top: 130px;
}
.about__intro {
  font-size: 24px;
  letter-spacing: 0.19em;
}
.about__vision {
  margin-top: 200px;
}
.about__visionTit {
  font-family: "sabon-lt-std", serif;
  font-size: 36px;
  letter-spacing: 0.4em;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.about__visionEn {
  font-family: "sabon-lt-std", serif;
  font-size: 110px;
  letter-spacing: 0.25em;
  text-align: center;
}
.about__visionSub {
  font-size: 48px;
  letter-spacing: 0.325em;
  text-align: center;
}
.about__visionSub::before, .about__visionSub::after {
  content: "―";
  display: inline-block;
}
.about__visionBtn {
  margin-top: 120px;
}
.about__detail {
  display: flex;
  justify-content: space-between;
  gap: 50px 120px;
  margin-top: 250px;
}
.about__detail.-column {
  flex-direction: column;
  justify-content: flex-start;
}
.about__detailTit {
  flex: none;
  font-family: "sabon-lt-std", serif;
  font-size: 36px;
  letter-spacing: 0.3em;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.-column .about__detailTit {
  text-align: left;
}
.about__detailCont {
  width: min(1343 / 2000 * 100vw, 1343px);
}
.-column .about__detailCont {
  width: calc(100% - min(100 / 2000 * 100vw, 100px));
  margin-left: auto;
}
.about__detailCont .vision dl dt {
  font-family: "sabon-lt-std", serif;
  font-size: min(110 / 2000 * 100vw, 110px);
  letter-spacing: 0.25em;
  text-align: center;
}
.about__detailCont .vision dl dd {
  font-size: min(48 / 2000 * 100vw, 48px);
  font-weight: bold;
  letter-spacing: 0.325em;
  text-align: center;
}
.about__detailCont .vision dl dd::before, .about__detailCont .vision dl dd::after {
  content: "―";
  display: inline-block;
}
.about__detailCont .guideline ul {
  display: flex;
  justify-content: space-between;
  gap: min(60 / 2000 * 100vw, 60px);
}
.about__detailCont .guideline ul li {
  position: relative;
  width: min(406 / 2000 * 100vw, 406px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__detailCont .guideline ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: min(317 / 2000 * 100vw, 317px);
  aspect-ratio: 1/1;
  background-color: rgba(217, 211, 36, 0.4);
  border-radius: min(58 / 2000 * 100vw, 58px);
  transform: translate(-50%, -50%) rotate(45deg);
}
.about__detailCont .guideline ul li dl {
  position: relative;
  z-index: 1;
}
.about__detailCont .guideline ul li dl dt {
  font-family: "sabon-lt-std", serif;
  font-size: min(60 / 2000 * 100vw, 60px);
  text-align: center;
}
.about__detailCont .guideline ul li dl dd {
  font-size: min(22 / 2000 * 100vw, 22px);
  text-align: center;
}
.about__detailCont .guideline p {
  font-size: min(48 / 2000 * 100vw, 48px);
  font-weight: bold;
  letter-spacing: 0.325em;
  line-height: 1.8;
  text-align: center;
  margin-top: min(90 / 2000 * 100vw, 90px);
}
.about__detail .meaning > ul {
  display: flex;
  justify-content: center;
  gap: min(150 / 2000 * 100vw, 150px);
}
.about__detail .meaning > ul li dl dt .meaning__en {
  font-family: "sabon-lt-std", serif;
  font-size: min(60 / 2000 * 100vw, 60px);
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1;
}
.about__detail .meaning > ul li dl dt .meaning__en::first-letter {
  font-size: min(187 / 2000 * 100vw, 187px);
  color: #d9d324;
}
.about__detail .meaning > ul li dl dt .meaning__ja {
  font-size: min(22 / 2000 * 100vw, 22px);
  font-weight: bold;
  letter-spacing: 0.25em;
  text-align: center;
  line-height: 1;
}
.about__detail .meaning > ul li dl dd {
  font-size: min(37 / 2000 * 100vw, 37px);
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  margin-top: min(60 / 2000 * 100vw, 60px);
}
.about__detail .meaning > p {
  font-size: min(48 / 2000 * 100vw, 48px);
  font-weight: bold;
  letter-spacing: 0.325em;
  line-height: 1.8;
  text-align: center;
  margin-top: min(90 / 2000 * 100vw, 90px);
}
.about__detail .image > p {
  font-size: min(24 / 2000 * 100vw, 24px);
  letter-spacing: 0.19em;
}
.about__detail .image > img {
  display: block;
  margin-top: 30px;
}
.about__detail .history > ul li {
  display: flex;
  font-size: 24px;
}
.about__detail .history > ul li + li {
  margin-top: 1em;
}
.about__detail .history > ul li .date {
  width: 300px;
}
.about__detail .history > ul li .content {
  flex: 1;
}
.about__detail .summary > ul li + li {
  margin-top: 1em;
}
.about__detail .summary > ul li dl {
  display: flex;
  gap: 20px;
  font-size: 24px;
}
.about__detail .summary > ul li dl dt {
  width: 160px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.about__detail .summary > ul li dl dd {
  flex: 1;
}
.about__img {
  display: grid;
  width: calc(100% - min(100 / 2000 * 100vw, 100px));
  margin-left: auto;
  margin-top: 100px;
}
.about__img img {
  width: min(800 / 2000 * 100vw, 800px);
}
.about__img img:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
.about__img img:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.about__img img:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: auto;
}
.about__btn {
  margin-top: 100px;
}

.about + .news {
  margin-top: 200px;
}
.news__cont {
  display: flex;
  gap: min(200 / 2000 * 100vw, 200px);
}
.news__contLeft {
  flex: 1;
}
.news__contRight {
  width: 500px;
}
.news__contRight .fb-page,
.news__contRight .fb-page span,
.news__contRight .fb-page iframe {
  display: block;
  width: 100% !important;
  height: 500px !important;
}
.news__detail > ul > li + li {
  margin-top: 40px;
}
.news__list > ul > li + li {
  margin-top: 60px;
}
.news__itemDate {
  font-family: "sabon-lt-std", serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.14em;
}
.news__itemDate.-new {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news__itemDate.-new::after {
  content: "NEW";
  display: inline-block;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1;
  background-color: #d9d324;
  padding: 6px 6px 4px;
}
.news__itemTit {
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 28px;
  letter-spacing: 0.19em;
  margin-top: 20px;
}
.news__detail .news__itemTit {
  margin-top: 0;
}
.news__detail .news__item {
  display: flex;
  align-items: baseline;
  gap: 50px;
  border-bottom: 3px solid #d9d324;
  padding-bottom: 40px;
}
.news__btn {
  margin-top: 95px;
}

.development {
  padding-bottom: 200px;
}
.news + .development {
  margin-top: 400px;
}
.development__search {
  position: relative;
  max-width: 990px;
  padding: 20px;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
}
.development__search::before, .development__search::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.development__search::before {
  width: calc(100% - 20px);
  height: 100%;
  border-top: 3px solid #d9d324;
  border-bottom: 3px solid #d9d324;
}
.development__search::after {
  width: 100%;
  height: calc(100% - 4px);
  border-left: 3px solid #d9d324;
  border-right: 3px solid #d9d324;
}
.development__searchList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.development__searchList li {
  font-size: 24px;
}
.development__list {
  margin-top: 200px;
}
.development__list > ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(100 / 2000 * 100vw, 100px) min(80 / 2000 * 100vw, 80px);
}
.development__list > ul > li {
  width: calc((100% - min(100 / 2000 * 100vw, 100px) * 2) / 3);
}
.development__itemDetail {
  margin-top: 20px;
}
.development__itemTag {
  width: -moz-max-content;
  width: max-content;
  font-size: 18px;
  border: 1px solid #222;
  padding: 2px 10px;
}
.development__itemTag span + span::before {
  content: "／";
}
.development__itemTit {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.7;
  margin-top: 10px;
}
.development__itemText {
  font-size: 16px;
  letter-spacing: 0.2em;
}
.development__btn {
  margin-top: 150px;
}

.development + .business {
  margin-top: 400px;
}
.business__intro {
  font-size: 24px;
  letter-spacing: 0.19em;
}
.business__cont.-bg::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 2936/663;
  background-image: url("/img/business_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 100px;
}
.business__list {
  margin-top: 120px;
}
.business__list ul {
  display: flex;
  justify-content: center;
  gap: min(80 / 2000 * 100vw, 80px);
}
.business__list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(304 / 2000 * 100vw, 304px);
  aspect-ratio: 1/1;
  font-size: min(27 / 2000 * 100vw, 27px);
  text-align: center;
  background-color: rgba(217, 211, 36, 0.3);
  border-radius: 50%;
}
.business__btn {
  margin-top: 150px;
}
.business__detail {
  background-color: rgba(217, 211, 36, 0.3);
  padding: 50px;
  margin-top: 75px;
}
.business__detailTit {
  font-size: 36px;
  text-align: center;
  font-weight: bold;
}
.business__detailSub {
  font-size: 30px;
  letter-spacing: 0.2em;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 10px;
  margin-top: 90px;
}
.business__detailCont {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.business__detailLeft {
  display: flex;
  align-items: center;
  width: min(570 / 2000 * 100vw, 570px);
  background-color: #fff;
  padding: 30px 20px;
}
.business__detailLeft ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: center;
}
.business__detailLeft ul li {
  font-size: 24px;
  letter-spacing: 0.2em;
}
.business__detailRight {
  flex: 1;
  background-color: #fff;
  padding: 30px 20px;
}
.business__detailRight p {
  font-size: 24px;
  letter-spacing: 0.19em;
  line-height: 2;
}
.business__detailList {
  margin-top: 30px;
}
.business__detailList > ul {
  display: flex;
  gap: min(60 / 2000 * 100vw, 60px);
}
.business__detailList > ul > li {
  flex: 1;
}
.business__detailList > ul > li .itemDetail {
  margin-top: 20px;
}
.business__detailList > ul > li .itemTag {
  font-size: 22px;
}
.business__detailList > ul > li .itemTit {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.7;
}
.business__detailList > ul > li .itemText {
  font-size: 17px;
  letter-spacing: 0.2em;
}
.business__detailFlow {
  margin-top: 30px;
}
.business__detailFlow > ul {
  display: flex;
  gap: 20px;
}
.business__detailFlow > ul > li {
  flex: 1;
}
.business__detailFlow .flowCont {
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
}
.business__detailFlow .flowCont > ul {
  position: relative;
}
.business__detailFlow .flowCont > ul::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 424/45;
  background-image: url("/img/business_arr.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.business__detailFlow .flowCont > ul > li {
  font-size: 24px;
}
.business__detailFlow .flowCont > ul > li::before {
  content: "●";
  display: inline-block;
  color: #d9d324;
}
.business__detailFlow .flowCont > ul > li + li {
  margin-top: 1em;
}
.business__detailFlow .flowCont > p {
  font-size: 24px;
  letter-spacing: 0.19em;
  line-height: 2;
}

.business + .access {
  margin-top: 400px;
}
.access__cont {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.access__contLeft {
  flex: 1;
}
.access__contLeft h3,
.access__contLeft p {
  font-size: 24px;
  letter-spacing: 0.19em;
}
.access__contLeft p + p {
  margin-top: 1em;
}
.access__contRight {
  width: min(980 / 2000 * 100vw, 980px);
}
.access__map {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access + .contact {
  margin-top: 400px;
}
.contact__contLeft h3 {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #222;
  padding-bottom: 5px;
}
.contact__contLeft p.number {
  font-family: "sabon-lt-std", serif;
  font-size: 52px;
}
.contact__contLeft p.info {
  font-size: 24px;
}
.contact__contLeft p + h3 {
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */