@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-margin-top: 120px;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}

h2, h3, h4, h5 {
  font-weight: 400;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #707070;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #707070;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.98);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
}

nav.globalMenuSp.active {
  z-index: 2;
}

nav.globalMenuSp .txt_box {
  padding: 10% 0 0 10%;
}
nav.globalMenuSp .txt_box .globalMenu_flex {
  display: flex;
  align-items: center;
}
nav.globalMenuSp .txt_box .globalMenu_flex .btn_list {
  margin-left: 40px;
}
nav.globalMenuSp .txt_box .menu_list {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 30px;
}
nav.globalMenuSp .txt_box .menu_list li {
  width: 48%;
  text-align: left;
  margin-bottom: 20px;
}
nav.globalMenuSp .txt_box .menu_list li a {
  display: block;
  color: #292925;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 10px;
}
nav.globalMenuSp .txt_box .btn a {
  margin-left: 0;
  background-color: #4D4D4D;
  color: #fff;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp {
  display: none;
}

nav.globalMenuSp.active {
  opacity: 100;
  display: block;
}
nav.globalMenuSp.active .sp_nav_list {
  width: 100%;
  padding: 50px 0;
}
nav.globalMenuSp.active .sp_nav_list li a {
  color: #000;
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 15px 0;
  text-align: center;
  justify-content: center;
}
nav.globalMenuSp.active .sp_nav_list li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/nav_top.svg);
  background-size: cover;
  margin-right: 10px;
}
nav.globalMenuSp.active .sp_nav_list li .sp_nav_list_inner li:first-child a {
  background-color: #000;
  color: #fff;
  display: block;
  padding: 20px 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
nav.globalMenuSp.active .sp_nav_list li .sp_nav_list_inner li:last-child a {
  border-bottom: none;
  display: flex;
}
nav.globalMenuSp.active .sp_nav_list li .sp_nav_list_inner li:last-child a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/nav_tel.svg);
  background-size: cover;
  margin-right: 5px;
}

.thnks_txt {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}

header {
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  margin: 0 auto;
  align-items: center;
  max-width: 1280px;
}
header h1 {
  font-family: "Jost", sans-serif;
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 4.3rem;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 21.5px;
  text-transform: capitalize;
}
header h1 a {
  color: #000;
}
@media (max-width: 750px) {
  header h1 {
    font-size: 2.6rem;
    letter-spacing: 15px;
    padding-left: 10px;
  }
}
@media (max-width: 750px) {
  header {
    padding: 10px 0;
  }
}
header .pc_nav_wapper .top_nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .pc_nav_wapper .top_nav ul li:first-child {
  margin-right: 20px;
}
header .pc_nav_wapper .top_nav ul li:first-child a {
  background-color: #000;
  color: #fff;
  display: block;
  padding: 12px 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
header .pc_nav_wapper .top_nav ul li:first-child a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/nav_top.svg);
  background-size: cover;
  margin-right: 10px;
}
header .pc_nav_wapper .top_nav ul li:last-child a {
  color: #000;
  display: flex;
  align-items: center;
  font-size: 1.9rem;
}
header .pc_nav_wapper .top_nav ul li:last-child a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/nav_tel.svg);
  background-size: cover;
  margin-right: 5px;
}
header .pc_nav_wapper .bottom_nav {
  margin-top: 30px;
}
header .pc_nav_wapper .bottom_nav ul {
  display: flex;
  justify-content: flex-end;
}
header .pc_nav_wapper .bottom_nav ul li {
  margin-left: 50px;
}
header .pc_nav_wapper .bottom_nav ul li a {
  /* ▼ここが肝心：グリッドで 2 つを同じセルに重ねる
  → コンテナの幅は “大きい方のテキスト” に揃い、以後変わらない */
  display: inline-grid;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  /* 初期：日本語を下に隠す */
  /* ホバー：ふわっと入れ替え */
}
header .pc_nav_wapper .bottom_nav ul li a .en,
header .pc_nav_wapper .bottom_nav ul li a .jp {
  grid-area: 1/1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
header .pc_nav_wapper .bottom_nav ul li a .jp {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}
header .pc_nav_wapper .bottom_nav ul li a .en {
  opacity: 1;
  transform: translateY(0);
}
header .pc_nav_wapper .bottom_nav ul li a:hover .jp {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
header .pc_nav_wapper .bottom_nav ul li a:hover .en {
  opacity: 0;
  transform: translateY(-6px);
}
header .pc_nav_wapper .bottom_nav ul li a {
  color: #000;
}

@media (max-width: 750px) {
  main {
    overflow-x: hidden;
  }
}

.mv {
  background-image: url(../img/top/mv.jpg);
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
  margin: 20px auto 0;
}
@media (max-width: 750px) {
  .mv {
    margin-top: 0px;
  }
}
.mv .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 200px;
}
@media (max-width: 750px) {
  .mv .inner {
    padding: 0 20px 200px 10px;
  }
}
.mv .inner h2 {
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
@media (max-width: 750px) {
  .mv .inner h2 {
    font-size: 2.3rem;
  }
}
.mv .inner p {
  color: #fff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 750px) {
  .mv .inner p {
    font-size: 1.4rem;
  }
}
.mv .container_05 {
  height: 750px;
  background-color: #dad5a4;
  position: relative;
}
.mv .scrollbar-text_05 {
  display: inline-block;
  position: absolute;
  bottom: 30%;
  padding: 10px 10px 110px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  right: 0.5%;
  font-family: "Jost", sans-serif;
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
@media (max-width: 750px) {
  .mv .scrollbar-text_05 {
    font-size: 2rem;
    bottom: 35%;
    right: -0.5%;
    padding: 10px 10px 90px;
  }
}
.mv .scrollbar_05 {
  position: absolute;
  right: 3.5%;
  bottom: 10%;
}
.mv .scrollbar_05::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 1px;
  height: 250px;
  background: #fff;
  -webkit-animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media (max-width: 750px) {
  .mv .scrollbar_05::after {
    left: -25px;
  }
}
@-webkit-keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.box01 {
  background-image: url(../img/top/box01bk.png);
  background-size: cover;
  padding: 80px 0;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .box01 {
    position: relative;
    padding: 50px 0;
  }
}
.box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .box01 .inner {
    flex-direction: column;
    padding: 0 20px;
  }
}
.box01 .inner .left_box {
  max-width: 220px;
}
@media (max-width: 750px) {
  .box01 .inner .left_box {
    width: 100%;
    max-width: 100%;
  }
}
.box01 .inner .left_box h2 {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4px;
  text-transform: capitalize;
  text-align: left;
}
.box01 .inner .left_box h2::before {
  content: "";
  display: block;
  width: 125px;
  height: 3px;
  background-color: #919433;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .box01 .inner .left_box h2::before {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .box01 .inner .left_box h2 {
    text-align: center;
  }
}
@media (max-width: 750px) {
  .box01 .inner .left_box h2 {
    font-size: 3rem;
  }
}
.box01 .inner .left_box h2 span {
  display: block;
  color: #414141;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 750px) {
  .box01 .inner .left_box h2 span {
    font-size: 1.4rem;
  }
}
.box01 .inner .left_box .btn {
  margin-top: 35px;
}
@media (max-width: 750px) {
  .box01 .inner .left_box .btn {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.box01 .inner .left_box .btn a {
  display: inline-block;
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
  background-color: #919433;
  padding: 12px 40px;
  position: relative;
}
@media (max-width: 750px) {
  .box01 .inner .left_box .btn a {
    width: 90%;
    display: block;
    padding: 10px 0;
    left: 0;
  }
}
.box01 .inner .left_box .btn a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 10px;
  background-image: url(../img/top/box01arrow.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-40%);
}
.box01 .inner .right_box {
  width: 60%;
}
@media (max-width: 750px) {
  .box01 .inner .right_box {
    width: 100%;
    padding-bottom: 50px;
  }
}
.box01 .inner .right_box dl {
  display: flex;
  color: #414141;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .box01 .inner .right_box dl {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }
}
.box01 .inner .right_box dl dt {
  width: 20%;
}
@media (max-width: 750px) {
  .box01 .inner .right_box dl dt {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
}
.box01 .inner .right_box dl dd {
  width: 80%;
  text-align: left;
}
.box01 .inner .right_box dl dd a {
  color: #414141;
}
@media (max-width: 750px) {
  .box01 .inner .right_box dl dd {
    width: 100%;
    text-align: left;
  }
}

.box02 {
  padding: 150px 0;
}
@media (max-width: 750px) {
  .box02 {
    padding: 50px 0;
  }
}
.box02 .inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .box02 .inner {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.box02 .inner .left_box {
  width: 45%;
}
@media (max-width: 750px) {
  .box02 .inner .left_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
.box02 .inner .left_box h2 {
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .box02 .inner .left_box h2 {
    font-size: 3rem;
  }
}
.box02 .inner .left_box h2 span {
  display: block;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .box02 .inner .left_box h2 span {
    font-size: 1.4rem;
  }
}
.box02 .inner .left_box h3 {
  margin-top: 60px;
  color: #666918;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .box02 .inner .left_box h3 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 2rem;
  }
}
.box02 .inner .left_box .txt {
  padding-right: 160px;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
@media (max-width: 750px) {
  .box02 .inner .left_box .txt {
    padding-right: 0px;
  }
}
.box02 .inner .left_box .btn {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .box02 .inner .left_box .btn {
    width: 100%;
    order: 5;
  }
}
.box02 .inner .left_box .btn a {
  display: block;
  border: 1px solid #000;
  max-width: 220px;
  text-align: center;
  color: #000;
  padding: 20px 0;
  position: relative;
}
@media (max-width: 750px) {
  .box02 .inner .left_box .btn a {
    display: block;
    max-width: 100%;
    padding: 15px 0;
  }
}
.box02 .inner .left_box .btn a::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-image: url(../img/top/box02arrow.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 10px;
}
.box02 .inner .left_box .left_img {
  margin-top: 130px;
  text-align: right;
  margin-right: 60px;
  position: relative;
  padding: 0 30px 30px 0;
}
@media (max-width: 750px) {
  .box02 .inner .left_box .left_img {
    margin-right: 0px;
    margin-top: 30px;
  }
}
.box02 .inner .left_box .left_img::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #000;
  width: 70%;
  height: 96%;
  z-index: -1;
}
.box02 .inner .right_box {
  width: 55%;
  position: relative;
  padding: 0 20px 20px 0;
}
@media (max-width: 750px) {
  .box02 .inner .right_box {
    width: 100%;
    padding: 0 10px 10px 0;
    margin-bottom: 30px;
  }
}
.box02 .inner .right_box::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 98%;
  height: 80%;
  background-color: #919433;
  z-index: -1;
}

@media (max-width: 750px) {
  .box03 {
    padding: 0 20px;
  }
}
.box03 .inner h2 {
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Jost", sans-serif;
  font-size: 4.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .box03 .inner h2 {
    font-size: 3rem;
  }
}
.box03 .inner h2 span {
  display: block;
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .box03 .inner h2 span {
    font-size: 1.4rem;
  }
}
.box03 .inner ul {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 120px 0;
}
@media (max-width: 750px) {
  .box03 .inner ul {
    flex-direction: column;
    padding: 40px 0;
  }
}
.box03 .inner ul li {
  width: 32%;
  box-shadow: 0px 34px 34px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 750px) {
  .box03 .inner ul li {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.box03 .inner ul li .img_box {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  padding-bottom: 20px;
}
.box03 .inner ul li .img_box:hover {
  filter: grayscale(0%);
}
.box03 .inner ul li .img_ttl {
  color: #000;
  leading-trim: both;
  font-family: "Jost", sans-serif;
  font-size: 3.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-top: -40px;
  padding: 0 20px;
}
@media (max-width: 750px) {
  .box03 .inner ul li .img_ttl {
    font-size: 2.4rem;
  }
}
.box03 .inner ul li .img_ttl span {
  display: block;
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: capitalize;
}
.box03 .inner ul li .sub_ttl {
  padding: 10px 20px;
  color: #919433;
  font-family: "Jost", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: capitalize;
}
@media (max-width: 750px) {
  .box03 .inner ul li .sub_ttl {
    font-size: 1.4rem;
  }
}
.box03 .inner ul li .txt {
  color: #000;
  font-family: "Noto Sans";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 214.286% */
  letter-spacing: 1.6px;
  text-transform: capitalize;
  padding: 0 20px;
}
@media (max-width: 750px) {
  .box03 .inner ul li .txt {
    font-size: 1.4rem;
    line-height: 2; /* 214.286% */
  }
}
.box03 .inner .btn {
  text-align: center;
}
@media (max-width: 750px) {
  .box03 .inner .btn {
    width: 100%;
  }
}
.box03 .inner .btn a {
  display: block;
  border: 1px solid #000;
  max-width: 220px;
  text-align: center;
  color: #000;
  padding: 20px 0;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .box03 .inner .btn a {
    display: block;
    max-width: 100%;
    padding: 15px 0;
  }
}
.box03 .inner .btn a::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-image: url(../img/top/box02arrow.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 10px;
}

.box04 {
  width: 100%;
  background-color: #B7B7A7;
  padding: 140px 0;
  margin-top: 130px;
}
@media (max-width: 750px) {
  .box04 {
    padding: 40px 20px;
    margin-top: 30px;
  }
}
.box04 .inner {
  max-width: 100%;
}
.box04 .inner h2 {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .box04 .inner h2 {
    font-size: 3rem;
  }
}
.box04 .inner h2 span {
  display: block;
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .box04 .inner h2 span {
    font-size: 1.4rem;
  }
}
.box04 .inner ul {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
@media (max-width: 750px) {
  .box04 .inner ul {
    flex-direction: column;
  }
}
.box04 .inner ul li {
  background-color: #fff;
  width: 23.5%;
}
@media (max-width: 750px) {
  .box04 .inner ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.box04 .inner ul li figure {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  border-bottom: 2px solid #919433;
  line-height: 0;
}
.box04 .inner ul li figure:hover {
  filter: grayscale(0%);
}
.box04 .inner ul li h3 {
  text-align: center;
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 30px;
}
.box04 .inner ul li .txt {
  color: #767676;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 40px;
}
.box04 .inner .btn {
  text-align: center;
}
.box04 .inner .btn a {
  display: block;
  border: 1px solid #000;
  max-width: 220px;
  text-align: center;
  color: #000;
  padding: 20px 0;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .box04 .inner .btn a {
    max-width: 100%;
    padding: 15px 0;
  }
}
.box04 .inner .btn a::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-image: url(../img/top/box02arrow.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 10px;
}

.box05 {
  padding: 150px 0;
}
@media (max-width: 750px) {
  .box05 {
    padding: 30px 0;
  }
}
.box05 .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .box05 .inner {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.box05 .inner .left_box {
  width: 45%;
}
@media (max-width: 750px) {
  .box05 .inner .left_box {
    width: 100%;
  }
}
.box05 .inner .left_box h2 {
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .box05 .inner .left_box h2 {
    font-size: 3rem;
  }
}
.box05 .inner .left_box h2:before {
  content: "";
  display: block;
  width: 125px;
  height: 1px;
  background-color: #919433;
  margin-bottom: 30px;
}
.box05 .inner .left_box h2 span {
  display: block;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .box05 .inner .left_box h2 span {
    font-size: 1.4rem;
  }
}
.box05 .inner .left_box .txt {
  margin-top: 50px;
  padding-right: 160px;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
@media (max-width: 750px) {
  .box05 .inner .left_box .txt {
    padding-right: 0px;
    margin-top: 20px;
  }
}
.box05 .inner .left_box .btn {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .box05 .inner .left_box .btn {
    width: 100%;
    margin-top: 20px;
  }
}
.box05 .inner .left_box .btn a {
  display: block;
  border: 1px solid #000;
  max-width: 220px;
  text-align: center;
  color: #000;
  padding: 20px 0;
  position: relative;
}
@media (max-width: 750px) {
  .box05 .inner .left_box .btn a {
    max-width: 100%;
  }
}
.box05 .inner .left_box .btn a::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-image: url(../img/top/box02arrow.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 10px;
}
.box05 .inner .left_box .left_img {
  margin-top: 130px;
  text-align: right;
  margin-right: 60px;
  position: relative;
  padding: 0 30px 30px 0;
}
.box05 .inner .left_box .left_img::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #000;
  width: 70%;
  height: 96%;
  z-index: -1;
}
.box05 .inner .right_box {
  width: 55%;
  position: relative;
  padding: 0 60px 50px 0;
}
@media (max-width: 750px) {
  .box05 .inner .right_box {
    width: 100%;
    padding: 0 20px 20px 0;
  }
}
.box05 .inner .right_box::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 98%;
  height: 80%;
  background-color: #919433;
  z-index: -1;
}

.swiper {
  background-image: url(../img/top/box01bk.png);
  background-size: cover;
  padding: 100px 0;
}
.swiper.bgnone {
  background-color: transparent;
  padding: 0;
}

/* スライドの動き等速 */
.swiper-slide {
  width: auto !important;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  max-width: initial;
}

.box07_swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 300px;
  margin-right: 20px;
}

.contact {
  background-image: url(../img/common/contactbk.png);
  background-size: cover;
  padding: 120px 0;
  background-position: center;
}
@media (max-width: 750px) {
  .contact {
    padding: 40px 0;
  }
}
.contact .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .contact .inner {
    padding: 0 20px;
  }
}
.contact .inner h2 {
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 98.361% */
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .contact .inner h2 {
    font-size: 3rem;
    line-height: 2;
  }
}
.contact .inner .txt {
  margin-top: 55px;
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .contact .inner .txt {
    font-size: 1.8rem;
  }
}
.contact .inner .txt02 {
  margin-top: 50px;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 225% */
}
@media (max-width: 750px) {
  .contact .inner .txt02 {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}
.contact .inner .btn {
  text-align: center;
  margin-top: 75px;
}
@media (max-width: 750px) {
  .contact .inner .btn {
    margin-top: 50px;
    width: 100%;
  }
}
.contact .inner .btn a {
  display: inline-block;
  background-color: #919433;
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
  padding: 20px 30px;
}
@media (max-width: 750px) {
  .contact .inner .btn a {
    padding: 15px 0px;
    display: block;
  }
}
.contact .inner .btn a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  margin-left: 20px;
  background-image: url(../img/common/arrow.png);
}

footer {
  background-color: #000;
  padding: 100px 0 25px;
}
@media (max-width: 750px) {
  footer {
    padding: 70px 0 65px;
  }
}
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  footer .inner {
    padding: 0 20px;
  }
}
footer .inner ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  footer .inner ul {
    flex-wrap: wrap;
  }
}
footer .inner ul li {
  font-size: 1.6rem;
  margin-right: 20px;
}
@media (max-width: 750px) {
  footer .inner ul li {
    width: 48%;
    margin-right: 0px;
    margin-bottom: 10px;
    text-align: center;
  }
}
footer .inner ul li:last-child {
  margin-right: 0;
}
footer .inner ul li a {
  color: #fff;
  text-transform: uppercase;
}
footer .inner h2 {
  margin: 90px 0;
  text-align: center;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 4.3rem;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 21.5px;
  text-transform: capitalize;
}
@media (max-width: 750px) {
  footer .inner h2 {
    margin: 30px 0;
    line-height: 1.5;
    font-size: 3rem;
  }
}
footer .inner .txt {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  line-height: 36px;
}
footer .inner .instagram {
  text-align: center;
  margin: 25px 0;
}
footer .inner .privacypolicy {
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 276.923% */
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
footer .inner .privacypolicy a {
  color: #fff;
}
footer .copy {
  border-top: 2px solid #fff;
  padding: 15px 0 0;
  margin-top: 25px;
  text-align: center;
}
footer .copy p small {
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 276.923% */
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pan {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .pan {
    margin-top: 10px;
    padding: 0 20px;
  }
}
.pan .inner .list {
  display: flex;
  flex-wrap: wrap;
}
.pan .inner .list li {
  font-size: 1.6rem;
}
@media (max-width: 750px) {
  .pan .inner .list li {
    margin-bottom: 10px;
  }
}
.pan .inner .list li a {
  color: #000;
}
.pan .inner .list li::after {
  content: ">";
  display: inline-block;
  margin: 0 10px;
}
.pan .inner .list li:last-child::after {
  display: none;
}

.sec_mv {
  margin-top: 60px;
  min-height: 330px;
  background-position: right;
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv {
    margin-top: 0px;
    min-height: 200px;
  }
}
.sec_mv.about {
  background-image: url(../img/about/mv.jpg);
}
.sec_mv.contact {
  background-image: url(../img/contact/mv.jpg);
  padding: 0;
}
.sec_mv.service {
  background-image: url(../img/service/mv.jpg);
}
.sec_mv.news {
  background-image: url(../img/news/mv.jpg);
}
.sec_mv.privacy {
  background-image: url(../img/privacy/mv.jpg);
}
.sec_mv .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  min-height: 330px;
}
@media (max-width: 750px) {
  .sec_mv .inner {
    min-height: 200px;
  }
}
.sec_mv .inner h2 {
  padding-bottom: 70px;
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 750px) {
  .sec_mv .inner h2 {
    font-size: 2.6rem;
    padding: 0 20px 30px 20px;
  }
}

.about_box01 {
  background-color: #FCFCFC;
  padding: 70px 0;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .about_box01 {
    padding: 30px 0;
  }
}
.about_box01 .inner h2 {
  color: #000;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .about_box01 .inner h2 {
    font-size: 2rem;
  }
}
.about_box01 .inner .txt {
  color: #000;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
  margin-top: 70px;
}
@media (max-width: 750px) {
  .about_box01 .inner .txt {
    padding: 0 20px;
  }
  .about_box01 .inner .txt br {
    display: none;
  }
}

.about_box02 {
  padding: 150px 0;
}
@media (max-width: 750px) {
  .about_box02 {
    padding: 50px 0;
  }
}
.about_box02 .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .about_box02 .inner {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.about_box02 .inner .left_box {
  width: 45%;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box {
    width: 100%;
    margin-top: 20px;
  }
}
.about_box02 .inner .left_box h2 {
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box h2 {
    font-size: 3rem;
  }
}
.about_box02 .inner .left_box h2 span {
  display: block;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box h2 span {
    font-size: 1.4rem;
  }
}
.about_box02 .inner .left_box h3 {
  margin-top: 60px;
  color: #666918;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box h3 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.about_box02 .inner .left_box .txt {
  padding-right: 160px;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box .txt {
    padding-right: 0px;
  }
}
.about_box02 .inner .left_box .txt02 {
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-top: 85px;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box .txt02 {
    font-size: 3rem;
    margin-top: 35px;
    margin-bottom: 20px;
  }
}
.about_box02 .inner .left_box .txt03 {
  margin-bottom: 25px;
  background-color: #919433;
  padding: 20px 0;
  max-width: 90%;
  text-align: center;
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box .txt03 {
    font-size: 2rem;
    max-width: 100%;
  }
}
.about_box02 .inner .left_box .txt04 {
  margin-bottom: 25px;
  background-color: #848568;
  padding: 20px 0;
  max-width: 90%;
  text-align: center;
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .about_box02 .inner .left_box .txt04 {
    font-size: 2rem;
    max-width: 100%;
  }
}
.about_box02 .inner .left_box .btn {
  margin-top: 50px;
}
.about_box02 .inner .left_box .btn a {
  display: block;
  border: 1px solid #000;
  max-width: 220px;
  text-align: center;
  color: #000;
  padding: 20px 0;
  position: relative;
}
.about_box02 .inner .left_box .btn a::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-image: url(../img/top/box02arrow.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 10px;
}
.about_box02 .inner .left_box .left_img {
  margin-top: 130px;
  text-align: right;
  margin-right: 60px;
  position: relative;
  padding: 0 30px 30px 0;
}
.about_box02 .inner .left_box .left_img::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #000;
  width: 70%;
  height: 96%;
  z-index: -1;
}
.about_box02 .inner .right_box {
  width: 55%;
  position: relative;
  padding: 0 60px 50px 0;
}
@media (max-width: 750px) {
  .about_box02 .inner .right_box {
    width: 100%;
    padding: 0 20px 20px 0;
  }
}
.about_box02 .inner .right_box::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 98%;
  height: 80%;
  background-color: #919433;
  z-index: -1;
}

.about_box03 {
  padding: 150px 0;
  background-color: #FCFCFC;
}
@media (max-width: 750px) {
  .about_box03 {
    padding: 50px 0 0;
  }
}
.about_box03 .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .about_box03 .inner {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.about_box03 .inner .left_box {
  width: 48%;
}
@media (max-width: 750px) {
  .about_box03 .inner .left_box {
    width: 100%;
    margin-top: 20px;
  }
}
.about_box03 .inner .left_box h2 {
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .about_box03 .inner .left_box h2 {
    font-size: 3rem;
  }
}
.about_box03 .inner .left_box h2 span {
  display: block;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .about_box03 .inner .left_box h2 span {
    font-size: 1.4rem;
  }
}
.about_box03 .inner .left_box h3 {
  margin-top: 60px;
  color: #666918;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .about_box03 .inner .left_box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.about_box03 .inner .left_box .txt {
  padding-right: 160px;
  color: #000;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 70px;
}
@media (max-width: 750px) {
  .about_box03 .inner .left_box .txt {
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.about_box03 .inner .left_box .btn {
  margin-top: 50px;
}
.about_box03 .inner .left_box .btn a {
  display: block;
  border: 1px solid #000;
  max-width: 220px;
  text-align: center;
  color: #000;
  padding: 20px 0;
  position: relative;
}
.about_box03 .inner .left_box .btn a::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-image: url(../img/top/box02arrow.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 10px;
}
.about_box03 .inner .left_box .left_img {
  margin-top: 130px;
  text-align: right;
  margin-right: 60px;
  position: relative;
  padding: 0 30px 30px 0;
}
.about_box03 .inner .left_box .left_img::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #000;
  width: 70%;
  height: 96%;
  z-index: -1;
}
.about_box03 .inner .right_box {
  width: 48%;
  position: relative;
  padding: 0 0px 0px 0;
}
@media (max-width: 750px) {
  .about_box03 .inner .right_box {
    width: 100%;
  }
}

.about_box04 {
  margin-top: 150px;
}
@media (max-width: 750px) {
  .about_box04 {
    margin-top: 50px;
  }
}
.about_box04 .inner h2 {
  text-align: center;
  color: #000;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .about_box04 .inner h2 {
    font-size: 3rem;
  }
}
.about_box04 .inner h2 span {
  display: block;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .about_box04 .inner h2 span {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.about_box04 .inner .list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 100px auto;
}
@media (max-width: 750px) {
  .about_box04 .inner .list {
    margin: 30px auto;
    padding: 0 20px;
  }
}
.about_box04 .inner .list dt {
  width: 30%;
  padding: 25px 0 25px 10px;
  border-bottom: 1px solid #919433;
  letter-spacing: 1.4px;
  line-height: 30px; /* 214.286% */
}
.about_box04 .inner .list dd {
  width: 70%;
  padding-bottom: 25px;
  border-bottom: 1px solid #D6D6D6;
  padding: 25px 0 25px 35px;
  line-height: 30px; /* 214.286% */
  letter-spacing: 1.4px;
}

.service_box01 {
  margin-top: 100px;
  overflow-x: hidden;
  width: 100%;
}
@media (max-width: 750px) {
  .service_box01 {
    margin-top: 50px;
  }
}
.service_box01.top {
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .service_box01.top {
    margin-bottom: 50px;
  }
}
.service_box01 .inner {
  margin-left: auto;
}
.service_box01 .inner h2 {
  color: #000;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
}
@media (max-width: 750px) {
  .service_box01 .inner h2 {
    font-size: 3rem;
  }
}
.service_box01 .inner h2 span {
  display: block;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media (max-width: 750px) {
  .service_box01 .inner h2 span {
    font-size: 1.4rem;
  }
}
.service_box01 .slick-initialized .slick-slide {
  padding: 10px;
}
.service_box01 .slick-initialized .slick-slide .txt_box {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  flex-direction: column;
}
.service_box01 .slick-initialized .slick-slide .txt_box .number {
  background-color: #000;
  color: #fff;
  width: 140px;
  padding: 10px;
}
.service_box01 .slick-initialized .slick-slide .txt_box .slid_txt {
  font-size: 1.7rem;
  line-height: 1.4;
  margin-top: 10px;
}
@media (max-width: 750px) {
  .service_box01 .slick-initialized .slick-slide {
    padding: 0;
  }
}
.service_box01 .slick-prev {
  left: auto;
  right: 40%;
  top: auto;
  bottom: -35px;
}
@media (max-width: 750px) {
  .service_box01 .slick-prev {
    right: 20%;
  }
}
.service_box01 .slick-prev::before {
  content: "";
  display: block;
  background-image: url(../img/service/arrow_left.png);
  background-size: cover;
  width: 24px;
  height: 24px;
}
@media (max-width: 750px) {
  .service_box01 .slick-prev::before {
    width: 20px;
    height: 20px;
  }
}
.service_box01 .slick-next {
  left: auto;
  right: 35%;
  top: auto;
  bottom: -35px;
}
@media (max-width: 750px) {
  .service_box01 .slick-next {
    right: 10%;
  }
}
.service_box01 .slick-next::before {
  content: "";
  display: block;
  background-image: url(../img/service/arrow_right.png);
  background-size: cover;
  width: 24px;
  height: 24px;
}
@media (max-width: 750px) {
  .service_box01 .slick-next::before {
    width: 20px;
    height: 20px;
  }
}
.service_box01 .slick-dots {
  left: 0;
  width: auto;
}
.service_box01 .slick-dots li {
  width: 32px;
  height: 10px;
}
.service_box01 .slick-dots li button {
  width: 32px;
  height: 10px;
  padding: 0;
}
.service_box01 .slick-dots li button::before {
  width: 32px;
  height: 10px;
  border-radius: 0;
  line-height: 0;
  content: "";
  display: block;
  background-color: #B7B7A7;
}
.service_box01 .slick-dots li.slick-active button::before {
  background-color: #919433;
}
.service_box01 .flex_box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 150px;
  padding-left: 10%;
}
@media (max-width: 750px) {
  .service_box01 .flex_box {
    flex-direction: column;
    padding-left: 0%;
    padding: 0 20px;
    margin-top: 30px;
  }
}
.service_box01 .flex_box .txt_box {
  width: 26%;
}
@media (max-width: 750px) {
  .service_box01 .flex_box .txt_box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.service_box01 .flex_box .txt_box h3 {
  position: relative;
  color: #000;
  font-family: Inter;
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4px;
}
@media (max-width: 750px) {
  .service_box01 .flex_box .txt_box h3 {
    font-size: 3rem;
  }
}
.service_box01 .flex_box .txt_box h3 span {
  display: block;
  color: #000;
  font-family: Inter;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-top: 10px;
}
@media (max-width: 750px) {
  .service_box01 .flex_box .txt_box h3 span {
    font-size: 1.4rem;
  }
}
.service_box01 .flex_box .txt_box h3:before {
  content: "";
  display: block;
  max-width: 125px;
  height: 3px;
  background-color: #919433;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .service_box01 .flex_box .txt_box h3:before {
    margin-bottom: 20px;
  }
}
.service_box01 .flex_box .txt_box .txt {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 285.714% */
  margin-top: 60px;
}
@media (max-width: 750px) {
  .service_box01 .flex_box .txt_box .txt {
    margin-top: 30px;
  }
}
.service_box01 .flex_box .img_box {
  width: 74%;
  transform: translateX(20%);
}
@media (max-width: 750px) {
  .service_box01 .flex_box .img_box {
    width: 100%;
    transform: translateX(0%);
  }
}
.service_box02 {
  background-color: #000;
  padding: 50px 0;
  margin-top: 60px;
}
.service_box02 .inner {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 0;
}
@media (max-width: 750px) {
  .service_box02 .inner {
    border-radius: 0;
    padding: 20px;
  }
}
.service_box02 .inner h2 {
  text-align: center;
  color: #919433;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
.service_box02 .inner h2 span {
  display: block;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
.service_box02 .inner .list {
  display: flex;
  justify-content: space-between;
  max-width: 80%;
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  .service_box02 .inner .list {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .service_box02 .inner .list li {
    width: 48%;
  }
}
.service_box02 .inner .list p {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}

.contact_box {
  margin: 100px 0;
}
@media (max-width: 750px) {
  .contact_box {
    margin: 50px 0;
  }
}
.contact_box .inner {
  max-width: 520px;
}
@media (max-width: 750px) {
  .contact_box .inner {
    padding: 0 20px;
  }
}
.contact_box .inner dl dt {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .inner dl dt span {
  color: #D32929;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .inner dl dd {
  margin-top: 15px;
  margin-bottom: 35px;
}
.contact_box .inner dl dd input {
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  width: 100%;
  padding: 10px;
}
.contact_box .inner dl dd input::-moz-placeholder {
  color: #B3B3B3;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .inner dl dd input:-ms-input-placeholder {
  color: #B3B3B3;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .inner dl dd input::placeholder {
  color: #B3B3B3;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .inner dl dd textarea {
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  width: 100%;
  padding: 10px;
}
.contact_box .inner dl dd textarea::-moz-placeholder {
  color: #B3B3B3;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .inner dl dd textarea:-ms-input-placeholder {
  color: #B3B3B3;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .inner dl dd textarea::placeholder {
  color: #B3B3B3;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.contact_box .contact_txt {
  color: #919433;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 43.125px; /* 239.583% */
}
@media (max-width: 750px) {
  .contact_box .contact_txt {
    font-size: 1.4rem;
    padding: 0 20px;
    line-height: 1.5;
  }
}
.contact_box .contact_txt_note {
  color: #373737;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 43.125px; /* 431.25% */
}
@media (max-width: 750px) {
  .contact_box .contact_txt_note {
    padding: 0 20px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.contact_box .submit {
  text-align: center;
}
.contact_box .submit input {
  background: #919433;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  width: 330px;
  padding: 10px 30px;
  margin: 40px auto;
}

.news_box {
  margin: 150px 0;
}
@media (max-width: 750px) {
  .news_box {
    margin: 50px 0;
  }
}
.news_box .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.news_box .inner dl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .news_box .inner dl {
    padding: 0 20px;
  }
}
.news_box .inner dl dt {
  max-width: 180px;
  width: 100%;
  border-bottom: 1px solid #919433;
  padding: 20px 0;
}
@media (max-width: 750px) {
  .news_box .inner dl dt {
    width: 100%;
    border-bottom: none;
    padding: 20px 0 0;
  }
}
.news_box .inner dl dd {
  border-bottom: 1px solid #D6D6D6;
  padding: 20px 0;
  width: calc(100% - 180px);
}
.news_box .inner dl dd a {
  color: #000;
}
@media (max-width: 750px) {
  .news_box .inner dl dd {
    width: 100%;
  }
}

.news_box .inner {
  max-width: 980px;
  margin: 0 auto;
}
.news_box .inner p {
  color: #000;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  margin-bottom: 20px;
}

.flow_list {
  position: fixed;
  right: 0;
  top: 40%;
}
@media (max-width: 750px) {
  .flow_list {
    bottom: 0;
    width: 100%;
    top: auto;
  }
}
.flow_list ul {
  display: flex;
  flex-direction: column;
}
@media (max-width: 750px) {
  .flow_list ul {
    flex-direction: row;
  }
}
@media (max-width: 750px) {
  .flow_list ul li {
    width: 33.333%;
    background-color: #919433;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.flow_list ul li a {
  background-color: #919433;
  display: block;
}
@media (max-width: 750px) {
  .flow_list ul li a {
    width: 100%;
    text-align: center;
  }
}
.flow_list ul li:first-child a {
  padding: 30px 15px 20px 20px;
}
@media (max-width: 750px) {
  .flow_list ul li:first-child a {
    padding: 10px;
  }
}
.flow_list ul li:first-child a img {
  width: 39px;
  height: 36px;
}
.flow_list ul li:nth-child(2) a {
  padding: 20px;
}
@media (max-width: 750px) {
  .flow_list ul li:nth-child(2) a {
    padding: 10px;
  }
}
.flow_list ul li:nth-child(2) a img {
  width: 32px;
  height: 32px;
}
.flow_list ul li:last-child a {
  padding: 20px 20px 30px;
}
@media (max-width: 750px) {
  .flow_list ul li:last-child a {
    padding: 10px;
  }
}
.flow_list ul li:last-child a img {
  width: 33px;
  height: 26px;
}

.single_box {
  margin-top: 100px;
}
@media only screen and (max-width: 750px) {
  .single_box {
    padding: 0 25px;
    margin-top: 100px;
  }
}
.single_box .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.single_box .inner .single_box_top {
  display: flex;
  align-items: center;
}
.single_box .inner .single_box_top .category-name {
  display: inline-flex;
  padding: 6px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line-lightbaige, #E5E4D5);
  margin-right: 20px;
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
}
.single_box .inner .single_box_top .day {
  font-family: Termina;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}
.single_box .inner .ttl {
  font-family: YuGothic;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 52.5px */
  letter-spacing: 1.2px;
  margin-top: 12px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .ttl {
    /* jp/sp/title/21 */
    font-family: YuGothic;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 175%; /* 36.75px */
    letter-spacing: 0.84px;
  }
}
.single_box .inner .single_box_content {
  padding-bottom: 80px;
  border-bottom: 1px solid #D4D4D4;
}
.single_box .inner .single_box_content p {
  color: var(--black, #333);
  text-align: justify;
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
  margin: 30px 0;
}
.single_box .inner .single_box_content p.strong {
  font-weight: 700;
}
.single_box .inner .single_box_content h2 {
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 42px */
  letter-spacing: 0.96px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .single_box_content h2 {
    color: var(--text-black, #292929);
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}
.single_box .inner .single_box_content h3 {
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 29.75px */
  letter-spacing: 0.68px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .single_box_content h3 {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.single_box .inner .single_box_content .wp-element-caption {
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 21px */
  letter-spacing: 0.48px;
}
.single_box .inner .supervision {
  margin-top: 45px;
}
.single_box .inner .supervision h2 {
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 42px */
  letter-spacing: 0.96px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision h2 {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}
.single_box .inner .supervision .supervision_inner {
  display: flex;
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision .supervision_inner {
    flex-direction: column;
  }
}
.single_box .inner .supervision .supervision_inner figure {
  width: 40%;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision .supervision_inner figure {
    width: 100%;
  }
}
.single_box .inner .supervision .supervision_inner .txt_box {
  width: 60%;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision .supervision_inner .txt_box {
    width: 100%;
  }
}
.single_box .inner .supervision .supervision_inner .txt_box .name {
  color: var(--black, #333);
  font-family: YuGothic;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 29.75px */
  letter-spacing: 0.68px;
}
.single_box .inner .supervision .supervision_inner .txt_box .job_title {
  color: var(--black, #333);
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
}
.single_box .inner .supervision .supervision_inner .txt_box .txt {
  color: var(--black, #333);
  text-align: justify;
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
}
.single_box .inner .categories {
  background: #F5F3EA;
  padding: 30px 140px;
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .categories {
    padding: 30px 20px;
  }
}
.single_box .inner .categories ul {
  display: flex;
}
.single_box .inner .categories ul li {
  margin: 0 10px 10px;
}
.single_box .inner .categories ul li a {
  display: inline-flex;
  padding: 6px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line-lightbaige, #E5E4D5);
  color: var(--black, #333);
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
}
.single_box .inner .sns_box {
  padding-top: 60px;
  border-top: 1px solid #D4D4D4;
  margin-top: 45px;
}
.single_box .inner .sns_box ul {
  display: flex;
  justify-content: center;
}
.single_box .inner .sns_box ul li:nth-child(2) {
  margin: 0 30px;
}
.single_box .inner .page_list {
  margin-top: 80px;
  position: relative;
}
.single_box .inner .page_list li a {
  color: var(--black, #333);
  font-family: Termina;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 17px */
  letter-spacing: 0.68px;
}
.single_box .inner .page_list .next {
  float: right;
  display: inline-block;
}
.single_box .inner .page_list .next a {
  display: flex;
  align-items: center;
}
.single_box .inner .page_list .next a::after {
  content: "";
  background-image: url(../img/singl/button_small_next.svg);
  width: 19px;
  height: 19px;
  display: block;
  margin-left: 10px;
}
.single_box .inner .page_list .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.single_box .inner .page_list .prev {
  float: left;
  display: inline-block;
}
.single_box .inner .page_list .prev a {
  display: flex;
  align-items: center;
}
.single_box .inner .page_list .prev a::before {
  content: "";
  background-image: url(../img/singl/button_small_prev.svg);
  width: 19px;
  height: 19px;
  display: block;
  margin-right: 10px;
}

@media (max-width: 750px) {
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */