@charset "UTF-8";
.ac-btn {
  position: relative;
  width: 16px;
  height: 1px;
}
.ac-btn span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.3s;
}
.ac-btn span:nth-child(2) {
  transform: rotate(90deg);
}

.ac-btn.active span:nth-child(2) {
  transform: rotate(0);
}

/* 2等分カラムレイアウト $m2に余白を指定する 初期値は0 */
/* 3等分カラムレイアウト $m3に余白を指定する 初期値は0 */
/* 4等分カラムレイアウト $m4に余白を指定する 初期値は0 */
/* common */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #312d21;
  text-align: center;
  font-size: clamp(1.4rem, 1.5vw, 2.2rem);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.75;
  letter-spacing: 0.2em;
  overflow-x: hidden;
}

body.open {
  overflow-y: hidden;
}

a {
  color: #312d21;
}

img {
  width: 100%;
}

hr {
  background-color: #312d21;
  width: 100%;
  height: 1px;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

*:focus {
  outline: none;
}

.u-line {
  text-decoration: underline;
}

.xl-con {
  width: 90%;
  max-width: 1720px;
  margin-right: auto;
  margin-left: auto;
}
.xl-con .l-con,
.xl-con .con {
  width: 100%;
}

.l-con {
  width: 90%;
  max-width: 1650px;
  margin-right: auto;
  margin-left: auto;
}
.l-con .con {
  width: 100%;
}

.con {
  width: 90%;
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
}

.m-con {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.fs-75 {
  font-size: clamp(3.8rem, 4vw, 7.5rem);
}

.fs-57 {
  font-size: clamp(3.4rem, 4vw, 5.7rem);
}

.fs-50 {
  font-size: clamp(3rem, 4vw, 5rem);
}

.fs-44 {
  font-size: clamp(2.6rem, 3vw, 4.4rem);
}

.fs-36 {
  font-size: clamp(2.4rem, 2vw, 3.6rem);
}

.fs-33 {
  font-size: clamp(2.2rem, 2vw, 3.3rem);
}

.fs-30 {
  font-size: clamp(2rem, 2vw, 3rem);
}

.fs-28 {
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
}

.fs-26 {
  font-size: clamp(1.6rem, 1.5vw, 2.6rem);
}

.fw-b {
  font-weight: bold;
}

.w-b {
  background-color: #fff;
}

.b-b {
  background-color: #312d21;
}

.be-b {
  background-color: #ded3c7;
}

.g-b {
  background-color: #eaeae9;
}

.bl-b {
  background-color: #1d678a;
}

.w-t {
  color: #fff;
}

.g-t {
  color: #d6e000;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.res-on {
  display: none;
}

.phone-on {
  display: none;
}

.ham-wr {
  position: fixed;
  top: 20px;
  right: 10px;
  width: 120px;
  height: 70px;
  background-color: #312d21;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
.ham-wr.active {
  opacity: 1;
  z-index: 6000;
}

.menu {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1;
  width: 100%;
  padding-left: 3px;
  margin-bottom: 10px;
  opacity: 1;
  transition: 0.3;
}

.ham {
  position: relative;
  display: block;
  width: 70%;
  height: 18%;
}
.ham span {
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 1px;
  transition: 0.3s;
}
.ham span:first-child {
  top: 0;
}
.ham span:nth-child(2) {
  top: calc(50% - 1px / 2);
}
.ham span:nth-child(3) {
  bottom: 0;
}

.ham-wr.open .menu {
  opacity: 0;
}
.ham-wr.open span {
  background-color: #fff;
}
.ham-wr.open span:first-child {
  top: 40%;
  transform: rotate(-45deg);
}
.ham-wr.open span:nth-child(2) {
  opacity: 0;
}
.ham-wr.open span:nth-child(3) {
  top: 40%;
  bottom: auto;
  transform: rotate(45deg);
}

.g-nav-wr {
  display: block;
  text-align: left;
  width: 0%;
  max-width: 400px;
  height: auto;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: -10;
  opacity: 0;
  background-color: #312d21;
  transition: 0.5s;
}

.g-nav-wr.open {
  display: block;
  height: auto;
  z-index: 5000;
  opacity: 1;
  width: 40%;
}

.g-nav {
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-45%);
  display: block;
}
.g-nav ul li {
  margin-bottom: 25px;
}
.g-nav ul li a {
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: flex-end;
}
.g-nav ul li a .h-en {
  font-size: 2.8rem;
  width: 130px;
}
.g-nav ul li a .h-jp {
  font-size: 1.7rem;
  padding-bottom: 1px;
}
.g-nav ul li:last-child {
  margin-bottom: 0;
}

.g-nav.open {
  opacity: 1;
  transform: translateY(-50%);
}

.g-logo {
  width: 100%;
  max-width: 210px;
  margin-left: 0;
  margin-bottom: 50px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-right: 5%;
  text-align: right;
  z-index: 5000;
}

.h-wr {
  padding-top: 70px;
}

.h-logo {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  max-width: 610px;
  width: 85%;
}

.h-nav {
  margin-top: 60px;
}
.h-nav li .h-jp {
  display: none;
}

.footer {
  margin-top: 350px;
  padding-bottom: 60px;
}

.copyright {
  margin-top: 60px;
}

.tate {
  text-align: left;
  writing-mode: vertical-rl;
}

.flex-wr {
  display: flex;
}

/* ページ毎のstyle */
.lr-list li {
  display: flex;
  justify-content: space-between;
}

.ml-c {
  margin-left: 200px;
}

.t-con {
  top: 50px;
  z-index: 2000;
}

.sectitle {
  z-index: 9000;
  transform: translateX(-15px);
  width: 140px;
  height: 140px;
}

.kv-list-wr {
  height: 95vh;
  max-height: 1500px;
}

.kv-list {
  width: 100%;
  height: 95vh;
  max-height: 1500px;
}
.kv-list li {
  position: relative;
  width: 100%;
  height: 95vh;
  max-height: 1500px;
}
.kv-list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.kv-text {
  top: 14%;
  left: 10%;
  z-index: 1;
}
.kv-text .kv-span {
  margin-top: 100px;
}

.kv-anime {
  opacity: 0;
  transition: 1s;
}

.kv-anime.active {
  opacity: 1;
}

.aboutbox1 {
  padding-left: 5%;
}

.about-img {
  width: 62vw;
  max-height: 800px;
}

.about-text {
  margin-top: 250px;
  margin-right: 4%;
  max-width: 580px;
  width: calc(38vw - 4%);
}

.about-text2 {
  margin-left: 4%;
  margin-right: auto;
}

.aboutlist li {
  padding: 40px 0;
  border-top: 1px solid #312d21;
}
.aboutlist li:nth-child(2) {
  padding-left: 7%;
}
.aboutlist li:nth-child(3) {
  padding-left: 14%;
}
.aboutlist li:nth-child(4) {
  padding-left: 21%;
}
.aboutlist li:last-child {
  border-bottom: 1px solid #312d21;
}
.aboutlist li .l-con {
  display: flex;
  align-items: center;
}

.about-number {
  width: 130px;
  margin-right: 40px;
}

.aboutlist-text {
  display: flex;
  align-items: center;
}

.about-slash {
  width: 100px;
  margin-right: 20px;
}

.servicebox {
  padding-left: 5%;
}

.service-img {
  width: 56vw;
  max-height: 800px;
}

.service-text {
  margin-top: 250px;
  margin-right: 5%;
  max-width: 500px;
  width: calc(44vw - 5%);
}

.servicelist li {
  padding: 90px 0;
  border-top: 1px solid #fff;
}
.servicelist li:last-child {
  border-bottom: 1px solid #fff;
}
.servicelist li .l {
  width: 20%;
}
.servicelist li .r {
  width: 80%;
}
.servicelist li .l-con {
  display: flex;
  align-items: center;
}

.servicelist-text p {
  display: flex;
}
.servicelist-text p span {
  display: block;
}

.shape-wr {
  top: -85px;
  left: -22%;
}

.shape {
  max-width: 570px;
  max-height: 570px;
  width: 42vw;
  height: 42vw;
  background-image: conic-gradient(#fff 0deg, #312d21 0deg);
  -webkit-clip-path: circle();
          clip-path: circle();
  display: grid;
  place-items: center;
}

.shape::before {
  content: "";
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  background-color: #312d21;
  -webkit-clip-path: circle();
          clip-path: circle();
}

.slide-sec {
  padding: 80px 0;
}

.slidelist li {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
}

.slidelist-img {
  width: 92%;
}
.slidelist-img img {
  height: 77vh;
  max-height: 840px;
}

.smallbox-wr {
  width: 6%;
  height: 77vh;
  max-height: 840px;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
}
.smallbox-wr .smallbox {
  width: 100%;
  margin-bottom: 20px;
}
.smallbox-wr .smallbox:last-child {
  margin-bottom: 0;
}

.slide-text {
  width: 100%;
  margin-top: 45px;
  margin-right: 8%;
}

.slide-arrow {
  bottom: 0;
  width: 100px;
  z-index: 3;
  transition: 0.3s;
  border-radius: 50%;
}
.slide-arrow polyline {
  transition: 0.3s;
}
.slide-arrow:hover {
  background-color: #fff;
}
.slide-arrow:hover polyline {
  stroke: #312d21 !important;
}

.slide-arrow-b:hover {
  background-color: #312d21;
}
.slide-arrow-b:hover polyline {
  stroke: #fff !important;
}

.slide-arrow-w:hover {
  background-color: #fff;
}
.slide-arrow-w:hover g polyline {
  stroke: #312d21 !important;
}

.slide-arrow-l {
  left: 0%;
}

.slide-arrow-r {
  left: auto;
  right: 8%;
}

.slick-slider {
  touch-action: auto !important;
}

.flowlist li {
  padding: 60px 0;
}
.flowlist li:hover .flowlist-arrow {
  transform: translateY(15px);
}
.flowlist li:nth-child(2n) {
  background-color: #eaeae9;
}
.flowlist li:nth-child(4) {
  background-color: #f3f6b2;
}
.flowlist li:nth-child(6) {
  background-color: #f3f6b2;
}
.flowlist li .xl-con {
  display: flex;
  align-items: center;
}

.flowlist2 li:nth-child(4) {
  background-color: #eaeae9;
}

.flowlist-img {
  width: 12%;
}

.flowlist-title {
  width: 22%;
  margin-right: 2%;
}
.flowlist-title h4 {
  letter-spacing: 0.01em;
  max-width: 300px;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.flowlist-text {
  width: 64%;
  letter-spacing: 0.05em;
}

.flowlist-arrow {
  margin-right: 20px;
  width: auto;
  height: 16px;
  transition: 0.3s;
}
.flowlist-arrow img {
  width: auto;
  height: 16px;
}

.flowlist-number {
  width: auto;
  height: 2.5vw;
  max-height: 40px;
  min-height: 20px;
}
.flowlist-number img {
  width: auto;
  height: 2.5vw;
  max-height: 40px;
  min-height: 20px;
}

.flowbox {
  padding: 10px 0;
}

.qalist li {
  position: relative;
  padding: 35px 80px;
  border-top: 2px solid #312d21;
}
.qalist li:last-child {
  border-bottom: 2px solid #312d21;
}

.cross {
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 0;
  transition: 0.3s;
  transform-origin: center center;
}

.qa-title {
  display: block;
  cursor: pointer;
}
.qa-title.active .cross {
  transform: translateY(-50%) rotateZ(45deg);
}

.qa-dot {
  top: 0;
  width: calc(100% + 160px);
  height: 2px;
  background-image: linear-gradient(to right, #312d21, #312d21 2px, transparent 2px, transparent 6px);
  background-size: 6px 2px;
  background-position: left 0;
  background-repeat: repeat-x;
}

.qa-box-wr {
  margin-top: 35px;
  display: none;
}

.qa-box {
  padding: 50px 0;
  position: relative;
}
.qa-box:last-child {
  padding-bottom: 15px;
}

.qa-img {
  width: 45px;
}

.qa-text {
  width: calc(100% - 60px);
}

.answer {
  margin-top: 30px;
  padding-left: 120px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #77746c;
  background-color: #77746c;
  color: #fff;
  transition: 0.3s;
  width: 45%;
  max-width: 500px;
  height: 110px;
}
.btn p {
  width: 58%;
}

.accesslist li {
  padding: 20px 10%;
  border-top: 1px solid #fff;
  color: #fff !important;
  text-decoration: none !important;
}
.accesslist li a {
  text-decoration: none !important;
  color: #fff !important;
}
.accesslist li:last-child {
  border-bottom: 1px solid #fff;
}
.accesslist li .l {
  width: 20%;
}
.accesslist li .r {
  width: 80%;
}

.map-con {
  bottom: 270px;
}

.mapbox {
  width: 48%;
}

.map {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 1000px;
  position: relative;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.map-text-wr {
  margin-top: 180px;
}

.map-text {
  display: flex;
  justify-content: center;
}

.map-icon {
  margin-right: 7px;
  width: auto;
  height: 35px;
}
.map-icon img {
  width: auto;
  height: 35px;
}

.fadein-t {
  opacity: 0;
}

.fadein-t span {
  position: relative;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.fadein-t.active {
  opacity: 1;
}

.fadein-n {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transform: translateY(15px);
}
.fadein-n .sectitle {
  opacity: 1 !important;
}

.fadein-n.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(0);
}

@keyframes fadebg2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes fadebg3 {
  0% {
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.fadein-w {
  position: relative;
  z-index: 1;
}
.fadein-w::before, .fadein-w::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fadein-w::before {
  transform: scaleX(1);
  background-color: #fff;
  z-index: 9000;
}
.fadein-w::after {
  transform: scaleX(0);
  background-color: #1d678a;
  z-index: 8000;
}
.fadein-w.active::before {
  transform: scaleX(0);
  animation-name: fadebg2;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.fadein-w.active::after {
  transform: scaleX(0);
  animation-name: fadebg3;
  animation-duration: 0.1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.fadein-b {
  position: relative;
  z-index: 1;
}
.fadein-b::before, .fadein-b::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fadein-b::before {
  transform: scaleX(1);
  background-color: #312d21;
  z-index: 9000;
}
.fadein-b::after {
  transform: scaleX(0);
  background-color: #1d678a;
  z-index: 8000;
}
.fadein-b.active::before {
  transform: scaleX(0);
  animation-name: fadebg2;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.fadein-b.active::after {
  transform: scaleX(0);
  animation-name: fadebg3;
  animation-duration: 0.1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.fadein-b::after {
  transform: scaleX(0);
  background-color: #fff;
}

.policy-list {
  margin-top: 50px;
}
.policy-list li {
  margin-bottom: 40px;
}
.policy-list li:last-child {
  margin-bottom: 0;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 80px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 9999;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1200px;
  width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close-wr {
  display: inline-block;
  position: absolute;
  bottom: 40px;
  cursor: pointer;
  text-align: center;
}

.modal-arrow {
  margin: 0 auto;
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
}
.modal-arrow span {
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #312d21;
  width: 100%;
  height: 3px;
}
.modal-arrow span:first-child {
  top: 40%;
  transform: rotate(-45deg);
}
.modal-arrow span:nth-child(2) {
  top: 40%;
  transform: rotate(45deg);
}

.modal-close {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  position: relative;
  background: #fff;
  text-align: left;
  padding: 70px 5% 160px;
}

.illust {
  right: -4%;
  z-index: 1;
}

.illust1 {
  max-width: 385px;
  bottom: 80px;
  width: 20%;
}

.illust2 {
  max-width: 335px;
  bottom: 40px;
  width: 20%;
}

.illust3 {
  max-width: 420px;
  bottom: -50px;
  width: 25%;
}

.illust4 {
  max-width: 485px;
  bottom: -120px;
  width: 25%;
}

.illust5 {
  max-width: 545px;
  bottom: -250px;
  width: 30%;
}/*# sourceMappingURL=style.css.map */