@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:last-child a {
  background-color: #002F7C;
  color: #fff;
}
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 .sp_nav_list_inner li:first-child a {
  background-color: #4CC9F0;
  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 {
  width: 100%;
  position: fixed;
  background-color: #fff;
  padding: 0px 0 20px 0;
  z-index: 2;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
header h1 {
  font-size: 2.4rem;
}
header h1 .mini {
  font-size: 1.6rem;
}
header h1 a {
  padding-top: 10px;
  color: #000;
  display: flex;
}
header h1 a .wapper {
  margin-left: 10px;
  padding-top: 15px;
}
@media (max-width: 750px) {
  header h1 {
    font-size: 2.6rem;
    padding-left: 5px;
  }
}
@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:last-child a {
  background-color: #4CC9F0;
  color: #fff;
  display: block;
  padding: 12px 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
header .pc_nav_wapper .top_nav ul li:last-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:nth-child(2) a {
  background-color: #002F7C;
  color: #fff;
  display: block;
  padding: 12px 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
header .pc_nav_wapper .top_nav ul li:nth-child(2) a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/web_icon.png);
  background-size: cover;
  margin-right: 10px;
}
header .pc_nav_wapper .top_nav ul li:first-child {
  margin-right: 20px;
}
header .pc_nav_wapper .top_nav ul li:first-child a {
  color: #000;
  display: flex;
  align-items: center;
  font-size: 1.9rem;
}
header .pc_nav_wapper .top_nav ul li:first-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: 20px;
}
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: 800px;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin: 0px auto 0;
  padding-top: 150px;
}
@media (max-width: 750px) {
  .mv {
    margin-top: 0px;
    background-size: cover;
  }
}
.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;
}
@media (max-width: 750px) {
  .mv .inner h2 {
    font-size: 2rem;
    line-height: 2;
  }
}
.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.2rem;
  }
}
.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-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%;
  }
}

.btn a {
  background-color: #4CC9F0;
  color: #fff;
  font-size: 1.7rem;
  display: block;
  max-width: 150px;
  margin: 0 0 0 auto;
  padding: 10px;
  position: relative;
}
.btn a::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 10px;
  bottom: 14px;
}
.btn a::before {
  content: "";
  display: block;
  width: 2px;
  height: 7px;
  background-color: #fff;
  transform: skew(45deg);
  position: absolute;
  right: 12px;
  bottom: 14px;
}

.new_box01 {
  padding: 100px 0;
}
@media (max-width: 750px) {
  .new_box01 {
    padding: 30px 0;
  }
}
.new_box01::after {
  content: "Sincerity reaches the heavens";
  font-size: 6.9vw;
  color: rgba(193, 193, 193, 0.2);
}
.new_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .new_box01 .inner {
    flex-direction: column;
  }
}
.new_box01 .inner h2 {
  font-size: 5.5rem;
}
@media (max-width: 750px) {
  .new_box01 .inner h2 {
    font-size: 3rem;
  }
}
.new_box01 .inner .txt_box {
  width: 65%;
}
@media (max-width: 750px) {
  .new_box01 .inner .txt_box {
    width: 94%;
    margin: 0 auto;
  }
}
.new_box01 .inner .txt_box .txt {
  font-size: 2.4rem;
  line-height: 2;
}
@media (max-width: 750px) {
  .new_box01 .inner .txt_box .txt {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
@media (max-width: 750px) {
  .new_box01 .inner .btn a {
    margin: 20px auto 0;
  }
}

.new_box02 {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 750px) {
  .new_box02 {
    padding: 50px 0;
  }
}
.new_box02::before {
  content: "";
  width: 70%;
  height: 100%;
  background-color: #F6F6F6;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}
@media (max-width: 750px) {
  .new_box02::before {
    width: 100%;
  }
}
.new_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.new_box02 .inner h2 {
  font-size: 5.5rem;
}
@media (max-width: 750px) {
  .new_box02 .inner h2 {
    font-size: 3rem;
    text-align: center;
  }
}
.new_box02 .inner h2 .en {
  display: block;
  font-size: 2.4rem;
  color: #6D6D6D;
  margin: 20px 0 0 10px;
}
.new_box02 .inner .list_wapper {
  padding-left: 30%;
}
@media (max-width: 750px) {
  .new_box02 .inner .list_wapper {
    padding-left: 0%;
    padding: 0 20px;
    margin-top: 50px;
  }
}
.new_box02 .inner .list_wapper .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .new_box02 .inner .list_wapper .list {
    flex-direction: column;
  }
}
.new_box02 .inner .list_wapper .list figure {
  width: 190px;
  height: 190px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 750px) {
  .new_box02 .inner .list_wapper .list figure {
    width: 190px;
    height: 190px;
  }
}
.new_box02 .inner .list_wapper .list figure::before {
  font-size: 5rem;
  position: absolute;
  left: -10%;
  top: 0;
}
.new_box02 .inner .list_wapper .list figure::after {
  font-size: 2.1rem;
  position: absolute;
  right: -8%;
  bottom: 10%;
}
.new_box02 .inner .list_wapper .list figure.non01::before {
  content: "01";
}
.new_box02 .inner .list_wapper .list figure.non01::after {
  content: "Purchase";
}
.new_box02 .inner .list_wapper .list figure.non02::before {
  content: "02";
}
.new_box02 .inner .list_wapper .list figure.non02::after {
  content: "Intermediation";
}
.new_box02 .inner .list_wapper .list figure.non03::before {
  content: "03";
}
.new_box02 .inner .list_wapper .list figure.non03::after {
  content: "sale";
}
.new_box02 .inner .list_wapper .list figure.non04::before {
  content: "04";
}
.new_box02 .inner .list_wapper .list figure.non04::after {
  content: "construction";
}
.new_box02 .inner .list_wapper .list .txtbox {
  width: calc(100% - 230px);
}
@media (max-width: 750px) {
  .new_box02 .inner .list_wapper .list .txtbox {
    width: 100%;
    margin-top: 20px;
  }
}
.new_box02 .inner .list_wapper .list .txtbox .ttl {
  font-size: 3.2rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .new_box02 .inner .list_wapper .list .txtbox .ttl {
    font-size: 2.6rem;
    text-align: center;
  }
}
.new_box02 .inner .list_wapper .list .txtbox .subttl {
  font-size: 2.1rem;
  margin-bottom: 15px;
}
@media (max-width: 750px) {
  .new_box02 .inner .list_wapper .list .txtbox .subttl {
    font-size: 1.6rem;
  }
}
.new_box02 .inner .list_wapper .list .txtbox .txt {
  font-size: 1.6rem;
  line-height: 1.8;
}

.box01 {
  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-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  text-align: left;
}
@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 {
  margin: 0;
}
@media (max-width: 750px) {
  .box01 .inner .left_box .btn a {
    width: 90%;
    display: block;
    padding: 10px 10px;
    left: 0;
  }
}
.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: #000;
  text-align: left;
}
@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-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 750px) {
  .box02 .inner .left_box h2 {
    font-size: 3rem;
  }
}
.box02 .inner .left_box h2 .mini {
  font-size: 4rem;
}
@media (max-width: 750px) {
  .box02 .inner .left_box h2 .mini {
    font-size: 2rem;
  }
}
.box02 .inner .left_box h2 .block {
  display: block;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 750px) {
  .box02 .inner .left_box h2 .block {
    font-size: 1.4rem;
  }
}
.box02 .inner .left_box h3 {
  margin-top: 60px;
  color: #4CC9F0;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  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 a {
  margin-left: 0;
  margin-top: 30px;
}
.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: #CAF0F8;
  z-index: -1;
}

@media (max-width: 750px) {
  .box03 {
    padding: 0 20px;
  }
}
.box03 .inner h2 {
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 4.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@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;
}
@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;
}
.box03 .inner ul li .img_box:hover {
  filter: grayscale(0%);
}
.box03 .inner ul li .img_ttl {
  color: #000;
  leading-trim: both;
  font-size: 3.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  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-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.box03 .inner ul li .sub_ttl {
  padding: 10px 20px;
  color: #919433;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  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% */
  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%;
  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-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 .list {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
@media (max-width: 750px) {
  .box04 .inner .list {
    flex-direction: column;
  }
}
.box04 .inner .list li {
  background-color: #fff;
  width: 23.5%;
}
@media (max-width: 750px) {
  .box04 .inner .list li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.box04 .inner .list li .txt_box {
  padding: 20px;
}
.box04 .inner .list li .category {
  display: flex;
}
.box04 .inner .list li .category li {
  background-color: #4CC9F0;
  color: #fff;
  padding: 5px;
  text-align: center;
}
.box04 .inner .list li .category li:first-child {
  margin-right: 5px;
}
.box04 .inner .list li figure {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  border-bottom: 2px solid #919433;
  line-height: 0;
}
.box04 .inner .list li figure:hover {
  filter: grayscale(0%);
}
.box04 .inner .list li .bukken_infos .bukken_info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.box04 .inner .list li .bukken_infos .bukken_info dt {
  width: 20px;
}
.box04 .inner .list li .bukken_infos .bukken_info dd {
  color: #000;
}
.box04 .inner .list li .bukken_info_double {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
}
.box04 .inner .list li .bukken_info_double dt {
  width: 20px;
}
.box04 .inner .list li .bukken_info_double dd {
  color: #000;
}
.box04 .inner .list li h3 {
  color: #000;
  text-align: left;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 10px;
}
@media (max-width: 750px) {
  .box04 .inner .list li h3 {
    font-size: 1.6rem;
  }
}
.box04 .inner .list 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 a {
  margin: 0 auto;
}

.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-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-size: cover;
  padding: 50px 0;
  background-color: #F4F4F2;
}
.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-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: #4CC9F0;
  padding: 10px 0 25px;
}
@media (max-width: 750px) {
  footer {
    padding: 30px 0 25px;
  }
}
footer .inner .footer_btn {
  display: flex;
  justify-content: space-between;
  margin: 0px auto 50px;
  max-width: 1000px;
}
@media (max-width: 750px) {
  footer .inner .footer_btn {
    margin: 30px auto;
    flex-direction: column;
    padding: 0 20px;
  }
}
footer .inner .footer_btn li {
  width: 48%;
}
@media (max-width: 750px) {
  footer .inner .footer_btn li {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .inner .footer_btn li a {
  font-size: 2.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 20px 0;
  background-color: #fff;
  color: #4CC9F0;
}
@media (max-width: 750px) {
  footer .inner .footer_btn li a {
    font-size: 1.6rem;
  }
}
footer .inner .footer_btn li:first-child a {
  padding: 28px 0;
}
@media (max-width: 750px) {
  footer .inner .footer_btn li:first-child a {
    padding: 18px 0;
  }
}
footer .inner .footer_btn li:first-child a::before {
  content: "";
  display: block;
  width: 37.6px;
  height: 25.2px;
  background-image: url(../img/common/mail.svg);
}
@media (max-width: 750px) {
  footer .inner .footer_btn li:first-child a::before {
    width: 27.6px;
    height: 20.2px;
    background-size: cover;
  }
}
footer .inner .footer_btn li:last-child a {
  font-size: 4rem;
}
@media (max-width: 750px) {
  footer .inner .footer_btn li:last-child a {
    padding: 18px 0;
    font-size: 2rem;
  }
}
footer .inner .footer_btn li:last-child a::before {
  content: "";
  display: block;
  width: 39px;
  height: 39px;
  background-image: url(../img/common/tel.svg);
}
@media (max-width: 750px) {
  footer .inner .footer_btn li:last-child a::before {
    width: 20px;
    height: 20px;
    background-size: cover;
    margin-right: 10px;
  }
}
footer h2 {
  font-size: 10rem;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 750px) {
  footer h2 {
    font-size: 4rem;
  }
}
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 {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}
footer .inner ul li:last-child {
  margin-right: 0;
}
footer .inner ul li a {
  color: #fff;
  text-transform: uppercase;
}
footer .inner h2 {
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Zen Kaku Gothic New";
  font-size: 43px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin: 45px auto 25px;
}
@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 .instagram a:first-child {
  margin-right: 5px;
}
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;
}

.sec_mv {
  background: #4CC9F0;
  padding: 100px 0 0px;
  position: relative;
}
@media (max-width: 750px) {
  .sec_mv {
    padding: 150px 20px 0px;
  }
}
.sec_mv .mv_img {
  position: absolute;
  right: 0;
  top: 100px;
}
.sec_mv .txt_box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0 250px;
  position: relative;
}
@media (max-width: 750px) {
  .sec_mv .txt_box {
    padding: 100px 0 50px;
  }
}
.sec_mv .txt_box h2 {
  color: #fff;
  font-size: 3.2rem;
}
@media (max-width: 750px) {
  .sec_mv .txt_box h2 {
    font-size: 2.4rem;
  }
}
.sec_mv .txt_box h2 span {
  color: #DEDDDD;
  display: block;
  font-size: 2.4rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .sec_mv .txt_box h2 span {
    font-size: 1.8rem;
    margin-top: 5px;
  }
}
.sec_mv .txt_box .pan {
  position: absolute;
  bottom: 20px;
  display: flex;
}
@media (max-width: 750px) {
  .sec_mv .txt_box .pan {
    bottom: 10px;
    left: 0;
  }
}
.sec_mv .txt_box .pan li {
  font-size: 1.6rem;
  color: #fff;
}
@media (max-width: 750px) {
  .sec_mv .txt_box .pan li {
    font-size: 1.2rem;
  }
}
.sec_mv .txt_box .pan li a {
  color: #fff;
}
.sec_mv .txt_box .pan li a::after {
  content: ">";
  margin: 0 10px 0;
}

.about_box01 .inner {
  max-width: 1100px;
  margin: 50px auto 300px;
}
@media (max-width: 750px) {
  .about_box01 .inner {
    margin: 50px auto 100px;
  }
}
.about_box01 .inner h2 {
  text-align: center;
  font-size: 2.8rem;
}
@media (max-width: 750px) {
  .about_box01 .inner h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.about_box01 .inner ul {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 0;
}
@media (max-width: 750px) {
  .about_box01 .inner ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.about_box01 .inner ul li {
  width: 14%;
}
@media (max-width: 750px) {
  .about_box01 .inner ul li {
    width: 31%;
  }
}
.about_box01 .inner ul li a {
  font-size: 2.1rem;
  background-color: #4CC9F0;
  border: 1px solid #4CC9F0;
  display: block;
  color: #fff;
  padding: 10px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 750px) {
  .about_box01 .inner ul li a {
    font-size: 1.6rem;
  }
}
.about_box01 .inner ul li a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  position: absolute;
  top: 45%;
  right: 15px;
}
.about_box01 .inner ul li a:hover {
  background-color: #fff;
  color: #4CC9F0;
}
.about_box01 .inner ul li a:hover::after {
  border-top: 8px solid #4CC9F0;
}

.about_box02 {
  position: relative;
  margin-top: 150px;
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .about_box02 {
    margin-bottom: 100px;
    padding-bottom: 30px;
  }
}
.about_box02::after {
  content: "";
  display: block;
  width: 40%;
  height: 250px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #CAF0F8;
  z-index: -1;
}
@media (max-width: 750px) {
  .about_box02::after {
    width: 100%;
    height: 150px;
  }
}
.about_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .about_box02 .inner {
    flex-direction: column-reverse;
  }
}
.about_box02 .inner .txt_box {
  padding: 30px;
  width: 49%;
}
@media (max-width: 750px) {
  .about_box02 .inner .txt_box {
    width: 100%;
    padding: 20px;
  }
}
.about_box02 .inner .txt_box h2 {
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .about_box02 .inner .txt_box h2 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
}
.about_box02 .inner .txt_box h2 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .about_box02 .inner .txt_box h2 span {
    margin-top: 10px;
  }
}
.about_box02 .inner .txt_box h3 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #4CC9F0;
}
@media (max-width: 750px) {
  .about_box02 .inner .txt_box h3 {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.about_box02 .inner .txt_box ul {
  background-color: #F6F6F6;
  padding: 20px;
  margin: 30px 0;
}
@media (max-width: 750px) {
  .about_box02 .inner .txt_box ul {
    padding: 10px;
  }
}
.about_box02 .inner .txt_box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .about_box02 .inner .txt_box ul li {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.about_box02 .inner .txt_box ul li:last-child {
  margin-bottom: 0;
}
.about_box02 .inner .txt_box ul li::before {
  margin-right: 5px;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid #4CC9F0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.about_box02 .inner .txt_box p {
  line-height: 1.4;
}
@media (max-width: 750px) {
  .about_box02 .inner .txt_box p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .about_box02 .inner .txt_box p.center {
    text-align: center;
  }
}
.about_box02 .inner figure {
  width: 49%;
}
@media (max-width: 750px) {
  .about_box02 .inner figure {
    width: 100%;
  }
}

.about_box03 {
  position: relative;
  margin-top: 150px;
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .about_box03 {
    margin-bottom: 100px;
    padding-bottom: 30px;
  }
}
.about_box03::after {
  content: "";
  display: block;
  width: 40%;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #CAF0F8;
  z-index: -1;
}
@media (max-width: 750px) {
  .about_box03::after {
    width: 100%;
    height: 150px;
  }
}
.about_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .about_box03 .inner {
    flex-direction: column-reverse;
  }
}
.about_box03 .inner .txt_box {
  padding: 30px;
  width: 49%;
}
@media (max-width: 750px) {
  .about_box03 .inner .txt_box {
    width: 100%;
    padding: 20px;
  }
}
.about_box03 .inner .txt_box h2 {
  font-size: 3rem;
}
@media (max-width: 750px) {
  .about_box03 .inner .txt_box h2 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
}
.about_box03 .inner .txt_box h2 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .about_box03 .inner .txt_box h2 span {
    margin-top: 10px;
  }
}
.about_box03 .inner .txt_box h3 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #4CC9F0;
}
@media (max-width: 750px) {
  .about_box03 .inner .txt_box h3 {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.about_box03 .inner .txt_box ul {
  background-color: #F6F6F6;
  padding: 20px;
  margin: 30px 0;
}
@media (max-width: 750px) {
  .about_box03 .inner .txt_box ul {
    padding: 10px;
  }
}
.about_box03 .inner .txt_box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .about_box03 .inner .txt_box ul li {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.about_box03 .inner .txt_box ul li:last-child {
  margin-bottom: 0;
}
.about_box03 .inner .txt_box ul li::before {
  margin-right: 5px;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid #4CC9F0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.about_box03 .inner .txt_box p {
  line-height: 1.4;
}
@media (max-width: 750px) {
  .about_box03 .inner .txt_box p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .about_box03 .inner .txt_box p.center {
    text-align: center;
  }
}
.about_box03 .inner figure {
  width: 49%;
}
@media (max-width: 750px) {
  .about_box03 .inner figure {
    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-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%;
}
.service_box01 .slick-list {
  padding: 50px 0 0;
  margin-top: -50px;
}
@media (max-width: 750px) {
  .service_box01 .slick-list {
    margin-top: 30px;
  }
}
.service_box01 .btn {
  margin-top: 40px;
}
.service_box01 .btn a {
  margin-left: 0;
}
@media (max-width: 750px) {
  .service_box01 {
    margin-top: 0px;
  }
}
.service_box01.top {
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .service_box01.top {
    margin-bottom: 0px;
  }
}
.service_box01 .inner {
  margin-left: auto;
}
.service_box01 .inner h2 {
  color: #000;
  text-align: center;
  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-img {
  position: relative;
  background-color: #F4F4F4;
}
.service_box01 .slick-img figure {
  text-align: center;
  display: block;
}
.service_box01 .slick-img figure img {
  margin: 0 auto;
  width: 50%;
}
.service_box01 .slick-img.non01::before {
  content: "01";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non02::before {
  content: "02";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non03::before {
  content: "03";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non04::before {
  content: "04";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non05::before {
  content: "05";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non06::before {
  content: "06";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non07::before {
  content: "07";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non08::before {
  content: "08";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.service_box01 .slick-img.non09::before {
  content: "09";
  position: absolute;
  color: #4CC9F0;
  letter-spacing: 4px;
  font-size: 6rem;
  top: -10%;
}
.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.4rem;
  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: 26%;
  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: 22%;
  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;
}
@media (max-width: 750px) {
  .service_box01 .slick-dots li {
    width: 15px;
    height: 5px;
  }
}
.service_box01 .slick-dots li button {
  width: 32px;
  height: 10px;
  padding: 0;
}
@media (max-width: 750px) {
  .service_box01 .slick-dots li button {
    width: 15px;
    height: 5px;
  }
}
.service_box01 .slick-dots li button::before {
  width: 32px;
  height: 10px;
  border-radius: 0;
  line-height: 0;
  content: "";
  display: block;
  background-color: #B7B7A7;
}
@media (max-width: 750px) {
  .service_box01 .slick-dots li button::before {
    width: 15px;
    height: 5px;
  }
}
.service_box01 .slick-dots li.slick-active button::before {
  background-color: #4CC9F0;
}
.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 .silid_wapper01 .slick-slide {
  margin: 0 50px 0 0; /* 左右に10pxずつスペース */
  min-height: 440px;
}
@media (max-width: 750px) {
  .service_box01 .flex_box .silid_wapper01 .slick-slide {
    margin: 0 0px 0 0; /* 左右に10pxずつスペース */
    min-height: auto;
    padding: 20px;
  }
}
.service_box01 .flex_box .silid_wapper01 .slick-slide .txt_box h3 {
  text-align: center;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}
.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;
}
@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 .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;
    line-height: 1.5;
  }
}
.service_box01 .flex_box .img_box {
  width: 74%;
  transform: translateX(10%);
}
@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-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: #002F7C;
  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: #4CC9F0;
  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: 50px 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 #4CC9F0;
  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;
}

@media (max-width: 750px) {
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}
.recruit_box .inner {
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .recruit_box .inner {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
.recruit_box .inner .txt_box {
  margin-right: -10%;
}
@media (max-width: 750px) {
  .recruit_box .inner .txt_box {
    margin-right: 0%;
    width: 100%;
  }
}
.recruit_box .inner .txt_box h2 {
  font-size: 10rem;
  margin: 0 -400px 0 0;
  padding-left: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .recruit_box .inner .txt_box h2 {
    margin: 0 0px 0 0;
    font-size: 3rem;
    padding-left: 0;
    padding: 0 20px;
  }
}
.recruit_box .inner .txt_box h2 .big {
  background-color: #fff;
  padding: 0 30px 0 0;
}
@media (max-width: 750px) {
  .recruit_box .inner .txt_box h2 .big {
    padding: 0 0px 0 0;
  }
}
.recruit_box .inner .txt_box h2 .mini {
  display: block;
  font-size: 5rem;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .recruit_box .inner .txt_box h2 .mini {
    font-size: 2rem;
    margin-top: 10px;
  }
}
.recruit_box .inner .txt_box .txt {
  font-size: 2.1rem;
  line-height: 2;
  padding-left: 100px;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .recruit_box .inner .txt_box .txt {
    margin-top: 20px;
    padding-left: 0px;
    padding: 0 20px;
    font-size: 1.6rem;
  }
}
.recruit_box .inner .txt_box .btn a {
  margin: 20px 0 0 100px;
}
.recruit_box .inner figure {
  max-width: 70%;
  margin-left: auto;
}
@media (max-width: 750px) {
  .recruit_box .inner figure {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.sec_ttl {
  text-align: center;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sec_ttl::before {
  content: "";
  width: 1px;
  height: 60px;
  display: block;
  background: #002F7C;
  margin-bottom: 20px;
}

.bk_gre {
  background-color: #F6F6F6;
  padding: 50px 0;
}

.company_box01 {
  margin: 80px auto;
}
.company_box01 .flex_box {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  padding: 0 20px;
  margin: 50px auto 0;
  align-items: center;
}
@media (max-width: 750px) {
  .company_box01 .flex_box {
    flex-direction: column-reverse;
  }
}
.company_box01 .flex_box.reverse {
  flex-direction: row-reverse;
}
.company_box01 .flex_box .txt_box {
  width: 53%;
}
@media (max-width: 750px) {
  .company_box01 .flex_box .txt_box {
    width: 100%;
    margin-top: 20px;
  }
}
.company_box01 .flex_box .txt_box dl {
  margin-bottom: 20px;
}
.company_box01 .flex_box .txt_box dl dt {
  display: flex;
  font-size: 2.4rem;
  align-items: baseline;
  border-bottom: 1px solid #002F7C;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.company_box01 .flex_box .txt_box dl dt .en {
  color: #002F7C;
  margin-right: 5px;
}
.company_box01 .flex_box .txt_box dl dd {
  display: flex;
  font-size: 1.8rem;
}
.company_box01 .flex_box .txt_box dl dd .en {
  color: #7C0002;
  margin-right: 5px;
  font-size: 2.4rem;
  padding-top: 5px;
}
.company_box01 .flex_box .txt_box dl dd .txt {
  width: 90%;
}
.company_box01 .flex_box .txt_box h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.company_box01 .flex_box .txt_box h3::after {
  content: "";
  display: block;
  max-width: 170px;
  height: 1px;
  background-color: #002F7C;
  margin-top: 20px;
}
.company_box01 .flex_box .txt_box .txt {
  line-height: 2;
}
.company_box01 .flex_box .img_box {
  width: 45%;
}
@media (max-width: 750px) {
  .company_box01 .flex_box .img_box {
    width: 100%;
  }
}
.company_box01 .flex_box .img_box .name {
  text-align: right;
  margin-top: 20px;
}

.company_box02 {
  margin: 100px auto;
}
.company_box02 h2 {
  color: #002F7C;
  text-align: center;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
  border-top: 1px solid #002F7C;
  border-bottom: 1px solid #002F7C;
}
.company_box02 .inner {
  padding-top: 100px;
}
.company_box02 .inner dl {
  border-bottom: 1px solid #A4A4A4;
  padding-bottom: 20px;
  display: flex;
  padding-top: 20px;
}
.company_box02 .inner dl dt {
  width: 30%;
  line-height: 2;
}
.company_box02 .inner dl dd {
  width: 70%;
  line-height: 2;
}

.recruitment_box01 {
  margin: 50px 0;
}
.recruitment_box01 .time_box {
  max-width: 1100px;
  margin: 50px auto 0;
  border: 1px solid #002F7C;
  padding: 50px;
  border-radius: 20px;
}
.recruitment_box01 .time_box dl {
  display: flex;
  margin-bottom: 50px;
}
.recruitment_box01 .time_box dl dt {
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}
.recruitment_box01 .time_box dl dt::before {
  margin-right: 10px;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/recruitment/time.svg);
}
.recruitment_box01 .time_box dl dd {
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}
.recruitment_box01 .time_box dl dd::before {
  content: "";
  height: 1px;
  width: 330px;
  background-color: #002F7C;
  margin: 0 30px;
}

.faq_box .inner dl {
  max-width: 1050px;
  margin: 50px auto 50px;
}
.faq_box .inner dl dt {
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.faq_box .inner dl dt .en {
  font-size: 2.4rem;
  color: #002F7C;
}
.faq_box .inner dl dt .txt {
  font-size: 2.4rem;
  width: 90%;
}
.faq_box .inner dl dd {
  display: flex;
  line-height: 2;
}
.faq_box .inner dl dd .en {
  font-size: 2.4rem;
  color: #7C0002;
}
.faq_box .inner dl dd .txt {
  padding-top: 5px;
  font-size: 1.8rem;
  width: 90%;
}

.property_box {
  margin-top: 50px;
}
.property_box .box04 {
  max-width: 1200px;
  margin: 0 auto;
}
.property_box .box04 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
}
.property_box .box04 .list li {
  width: 32%;
}
@media (max-width: 750px) {
  .property_box .box04 .list li {
    width: 100%;
  }
}
.property_box .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  .property_box .list {
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
.property_box .list li {
  width: 32%;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .property_box .list li {
    width: 48%;
  }
}
.property_box .list li a .ttl {
  color: #000;
  font-size: 2rem;
  margin: 10px 0;
}
@media (max-width: 750px) {
  .property_box .list li a .ttl {
    font-size: 1.6rem;
  }
}
.property_box .list li a .day {
  color: #000;
}
@media (max-width: 750px) {
  .property_box .list li a .day {
    font-size: 1.2rem;
  }
}
.property_box .number {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 50px;
}
.property_box .number li {
  background-color: #D9D9D9;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.property_box .number li.active {
  background-color: #696666;
  color: #fff;
}

.single_wapper {
  max-width: 1000px;
  margin: 50px auto;
}
.single_wapper .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single_wapper .flex_box.reverse {
  flex-direction: row-reverse;
}
.single_wapper .flex_box figure {
  width: 48%;
}
.single_wapper .flex_box p {
  width: 48%;
  line-height: 2;
}

.new_service_box .inner {
  max-width: 1300px;
}
.new_service_box .list_wapper {
  display: flex;
  gap: 2%;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper {
    padding-left: 0%;
    padding: 0 20px;
    margin-top: 50px;
    flex-direction: column;
  }
}
.new_service_box .list_wapper .list {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
  width: 23%;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list {
    flex-direction: column;
    width: 100%;
  }
}
.new_service_box .list_wapper .list figure {
  width: 190px;
  height: 190px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list figure {
    width: 190px;
    height: 190px;
  }
}
.new_service_box .list_wapper .list figure::before {
  font-size: 5rem;
  position: absolute;
  left: -10%;
  top: 0;
}
.new_service_box .list_wapper .list figure::after {
  font-size: 2.1rem;
  position: absolute;
  right: -8%;
  bottom: 10%;
}
.new_service_box .list_wapper .list figure.non01 {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list figure.non01 {
    margin-top: 30px;
  }
}
.new_service_box .list_wapper .list figure.non01::before {
  content: "01";
}
.new_service_box .list_wapper .list figure.non01::after {
  content: "Purchase";
}
.new_service_box .list_wapper .list figure.non02 {
  margin-top: 150px;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list figure.non02 {
    margin-top: 30px;
  }
}
.new_service_box .list_wapper .list figure.non02::before {
  content: "02";
}
.new_service_box .list_wapper .list figure.non02::after {
  content: "Intermediation";
}
.new_service_box .list_wapper .list figure.non03 {
  margin-top: 250px;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list figure.non03 {
    margin-top: 30px;
  }
}
.new_service_box .list_wapper .list figure.non03::before {
  content: "03";
}
.new_service_box .list_wapper .list figure.non03::after {
  content: "sale";
}
.new_service_box .list_wapper .list figure.non04 {
  margin-top: 350px;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list figure.non04 {
    margin-top: 30px;
  }
}
.new_service_box .list_wapper .list figure.non04::before {
  content: "04";
}
.new_service_box .list_wapper .list figure.non04::after {
  content: "construction";
}
.new_service_box .list_wapper .list .txtbox {
  width: 100%;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list .txtbox {
    width: 100%;
    margin-top: 20px;
  }
}
.new_service_box .list_wapper .list .txtbox .ttl {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list .txtbox .ttl {
    font-size: 2.6rem;
    text-align: center;
  }
}
.new_service_box .list_wapper .list .txtbox .subttl {
  font-size: 2rem;
  margin-bottom: 15px;
}
@media (max-width: 750px) {
  .new_service_box .list_wapper .list .txtbox .subttl {
    font-size: 1.6rem;
  }
}
.new_service_box .list_wapper .list .txtbox .txt {
  font-size: 1.6rem;
  line-height: 1.8;
}

.business_box01 ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .business_box01 ul {
    padding: 0 20px;
  }
}
.business_box01 ul li {
  width: 32%;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .business_box01 ul li {
    width: 100%;
  }
}
.business_box01 ul li h3 {
  text-align: center;
}
.business_box01 ul li figure {
  margin: 20px 0;
}
.business_box01 ul li p {
  line-height: 2;
}

.new_box03 {
  display: flex;
}
@media (max-width: 750px) {
  .new_box03 {
    flex-direction: column;
  }
}
.new_box03 .txt_box {
  padding: 50px;
}
@media (max-width: 750px) {
  .new_box03 .txt_box {
    padding: 20px;
  }
}
.new_box03 .txt_box h2 {
  font-size: 4.8rem;
}
@media (max-width: 750px) {
  .new_box03 .txt_box h2 {
    font-size: 2.8rem;
  }
}
.new_box03 .txt_box h2 .block {
  display: block;
  font-size: 1.6rem;
  margin-top: 25px;
}
@media (max-width: 750px) {
  .new_box03 .txt_box h2 .block {
    margin-top: 15px;
  }
}
.new_box03 .txt_box h3 {
  color: rgba(76, 201, 240, 0.8);
  font-size: 2.4rem;
  margin-top: 35px;
  line-height: 2;
}
@media (max-width: 750px) {
  .new_box03 .txt_box h3 {
    margin-top: 15px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.new_box03 .txt_box p {
  line-height: 35px;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .new_box03 .txt_box p {
    margin-top: 20px;
    line-height: 1.5;
  }
}
.new_box03 .txt_box .btn a {
  margin-left: 0;
}

.new_box04 {
  position: relative;
  background-image: url(../img/common/new_box04bk.jpg);
  background-size: cover;
  padding: 0 0 300px;
	background-position:center;
}
@media (max-width: 750px) {
  .new_box04 {
    background-position: center;
    padding: 0 0 0px;
  }
}
.new_box04::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.new_box04 .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  z-index: 2;
  position: relative;
}
.new_box04 .inner h2 {
  text-align: center;
  color: #fff;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .new_box04 .inner h2 {
    padding: 0 10px;
    font-size: 1.4rem;
  }
}
.new_box04 .inner h3 {
  color: #fff;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .new_box04 .inner h3 {
    padding: 0 10px;
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.new_box04 .inner p {
  text-align: center;
  color: #fff;
  line-height: 1.5;
  margin-top: 20px;
  font-size: 1.6rem;
}
@media (max-width: 750px) {
  .new_box04 .inner p {
    padding: 0 10px;
    font-size: 1.2rem;
  }
}

@media (max-width: 750px) {
  .new_box05 {
    margin-top: 40px;
  }
}
.new_box05 .inner {
  max-width: 1200px;
  margin: 0 auto 100px;
}
.new_box05 .inner .btn {
  margin: 50px auto 0;
}
.new_box05 .inner .btn a {
  margin: 0 auto;
}
.new_box05 .inner h2 {
  font-size: 6rem;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .new_box05 .inner h2 {
    font-size: 4rem;
    margin-bottom: 30px;
  }
}
.new_box05 .inner h2 span {
  display: block;
  font-size: 2rem;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .new_box05 .inner h2 span {
    font-size: 1.6rem;
    margin-top: 15px;
    line-height: 1.5;
  }
}
.new_box05 .inner .list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 750px) {
  .new_box05 .inner .list {
    flex-direction: column;
    padding: 0 20px;
  }
}
.new_box05 .inner .list li {
  width: 32%;
}
.new_box05 .inner .list li a {
  color: #000;
}
.new_box05 .inner .list .txtbox {
  padding: 10px;
}
.new_box05 .inner .list .txtbox h3 {
  font-size: 2rem;
}
@media (max-width: 750px) {
  .new_box05 .inner .list .txtbox h3 {
    font-size: 1.8rem;
  }
}
.new_box05 .inner .list .txtbox .day {
  padding: 15px 0;
}
@media (max-width: 750px) {
  .new_box05 .inner .list .txtbox .day {
    font-size: 1.4rem;
  }
}
.new_box05 .inner .list .txtbox .txt {
  line-height: 1.5;
}
@media (max-width: 750px) {
  .new_box05 .inner .list .txtbox .txt {
    font-size: 1.4rem;
  }
}

#content01,
#content02,
#content03,
#content04,
#content05 {
  padding-top: 100px;
  margin-top: -100px;
}

.first_box01 .inner {
  max-width: 1200px;
  margin: 100px auto;
}
@media (max-width: 750px) {
  .first_box01 .inner {
    margin: 50px auto;
  }
}
.first_box01 .inner h2 {
  text-align: center;
  font-size: 2.4rem;
}
@media (max-width: 750px) {
  .first_box01 .inner h2 {
    font-size: 1.6rem;
  }
}
.first_box01 .inner h2 .big {
  display: block;
  font-size: 3.4rem;
  margin-top: 10px;
}
@media (max-width: 750px) {
  .first_box01 .inner h2 .big {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.first_box01 .inner figure {
  margin: 50px 0;
}
.first_box01 .inner h3 {
  text-align: center;
  font-size: 3.4rem;
  color: #002F7C;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .first_box01 .inner h3 {
    font-size: 1.6rem;
  }
}
.first_box01 .inner p {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.5;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .first_box01 .inner p {
    font-size: 1.6rem;
    padding: 0 20px;
  }
}

.first_box02 {
  background-color: #F5F5F5;
  padding: 100px 0;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .first_box02 {
    padding: 50px 0;
    margin-bottom: 50px;
  }
}
.first_box02 .inner {
  max-width: 1200px;
  margin: 0px auto;
}
.first_box02 .inner h2 {
  text-align: center;
  font-size: 3.4rem;
}
@media (max-width: 750px) {
  .first_box02 .inner h2 {
    font-size: 2.4rem;
  }
}
.first_box02 .inner .sub_txt {
  text-align: center;
  font-size: 2.1rem;
  margin-top: 30px;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .first_box02 .inner .sub_txt {
    font-size: 1.8rem;
  }
}
.first_box02 .inner .table {
  max-width: 80%;
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  .first_box02 .inner .table {
    overflow-x: scroll;
  }
}
.first_box02 .inner .table table {
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 750px) {
  .first_box02 .inner .table table {
    white-space: nowrap;
  }
}
.first_box02 .inner .table table tr {
  box-shadow: 0 -1px 0 0 #E0E0E0 inset;
}
.first_box02 .inner .table table th {
  text-align: center;
  background-color: #F0F0F0;
  color: #818181;
  padding: 20px;
}
.first_box02 .inner .table table th:first-of-type {
  text-align: left;
}
.first_box02 .inner .table table th.color {
  background-color: #3bb8df;
  color: #fff;
}
.first_box02 .inner .table table td {
  padding: 20px;
  text-align: center;
  background-color: #fff;
}
.first_box02 .inner .table table td:first-of-type {
  text-align: left;
}
.first_box02 .inner .table table td.color {
  background-color: #3bb8df;
  color: #fff;
}

.first_box03 {
  position: relative;
  margin-top: 150px;
}
@media (max-width: 750px) {
  .first_box03 {
    margin-bottom: 100px;
    padding-bottom: 30px;
  }
}
.first_box03::after {
  content: "";
  display: block;
  width: 40%;
  height: 250px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #CAF0F8;
  z-index: -1;
}
@media (max-width: 750px) {
  .first_box03::after {
    width: 100%;
    height: 150px;
  }
}
.first_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .first_box03 .inner {
    flex-direction: column-reverse;
  }
}
.first_box03 .inner .txt_box {
  padding: 30px;
  width: 52%;
}
@media (max-width: 750px) {
  .first_box03 .inner .txt_box {
    width: 100%;
    padding: 20px;
  }
}
.first_box03 .inner .txt_box h2 {
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .first_box03 .inner .txt_box h2 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
}
.first_box03 .inner .txt_box h2 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .first_box03 .inner .txt_box h2 span {
    margin-top: 10px;
  }
}
.first_box03 .inner .txt_box h3 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #4CC9F0;
}
@media (max-width: 750px) {
  .first_box03 .inner .txt_box h3 {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.first_box03 .inner .txt_box ul {
  background-color: #F6F6F6;
  padding: 20px;
  margin: 30px 0;
}
@media (max-width: 750px) {
  .first_box03 .inner .txt_box ul {
    padding: 10px;
  }
}
.first_box03 .inner .txt_box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .first_box03 .inner .txt_box ul li {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.first_box03 .inner .txt_box ul li:last-child {
  margin-bottom: 0;
}
.first_box03 .inner .txt_box ul li::before {
  margin-right: 5px;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid #4CC9F0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.first_box03 .inner .txt_box p {
  line-height: 1.4;
}
@media (max-width: 750px) {
  .first_box03 .inner .txt_box p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .first_box03 .inner .txt_box p.center {
    text-align: center;
  }
}
.first_box03 .inner figure {
  width: 46%;
}
@media (max-width: 750px) {
  .first_box03 .inner figure {
    width: 100%;
  }
}

.first_box04 {
  margin: 100px 0;
}
@media (max-width: 750px) {
  .first_box04 {
    margin: 50px 0;
  }
}
.first_box04 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .first_box04 .inner {
    padding: 0 20px;
  }
}
.first_box04 .inner h2 {
  font-size: 3.4rem;
}
@media (max-width: 750px) {
  .first_box04 .inner h2 {
    font-size: 2.4rem;
  }
}
.first_box04 .inner h2 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .first_box04 .inner h2 span {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.first_box04 .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .first_box04 .inner ul {
    margin-top: 60px;
  }
}
.first_box04 .inner ul li {
  width: 32%;
  position: relative;
  background-color: #F4F4F4;
  padding: 30px;
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  .first_box04 .inner ul li {
    width: 100%;
  }
}
.first_box04 .inner ul li.non01::before {
  content: "01";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non02::before {
  content: "02";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non03::before {
  content: "03";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non04::before {
  content: "04";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non04::before {
  content: "04";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non05::before {
  content: "05";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non06::before {
  content: "06";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non07::before {
  content: "07";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non08::before {
  content: "08";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li.non09::before {
  content: "09";
  font-size: 9rem;
  color: #4CC9F0;
  position: absolute;
  left: 5%;
  top: -10%;
}
.first_box04 .inner ul li figure {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.first_box04 .inner ul li h3 {
  text-align: center;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px 0;
}
.first_box04 .inner ul li p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.voice_box {
  margin: 100px 0;
}
.voice_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.voice_box .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .voice_box .inner .flex_box {
    flex-direction: column;
  }
}
.voice_box .inner .flex_box .txt_box {
  width: 48%;
}
@media (max-width: 750px) {
  .voice_box .inner .flex_box .txt_box {
    width: 100%;
    padding: 20px;
  }
}
.voice_box .inner .flex_box .txt_box h2 {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.voice_box .inner .flex_box .txt_box .day {
  text-align: right;
  margin-bottom: 20px;
}
.voice_box .inner .flex_box .txt_box dl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .voice_box .inner .flex_box .txt_box dl {
    flex-direction: column;
  }
}
.voice_box .inner .flex_box .txt_box dl dt {
  width: 30%;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .voice_box .inner .flex_box .txt_box dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.voice_box .inner .flex_box .txt_box dl dd {
  width: 70%;
  margin-bottom: 20px;
}
.voice_box .inner .flex_box .txt_box dl dd::before {
  content: ":";
  margin-right: 5px;
}
@media (max-width: 750px) {
  .voice_box .inner .flex_box .txt_box dl dd {
    width: 100%;
    margin-bottom: 20px;
  }
  .voice_box .inner .flex_box .txt_box dl dd::before {
    display: none;
  }
}
.voice_box .inner .flex_box figure {
  width: 48%;
}
@media (max-width: 750px) {
  .voice_box .inner .flex_box figure {
    width: 100%;
  }
}
.voice_box .inner .voice_txt {
  line-height: 1.6;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .voice_box .inner .voice_txt {
    padding: 0 20px;
  }
}

.contact_box01.pb100 {
  padding-bottom: 100px;
}
.contact_box01 .inner {
  max-width: 1000px;
  margin: 100px auto 0;
}
@media (max-width: 750px) {
  .contact_box01 .inner {
    margin: 30px auto 0;
  }
}
.contact_box01 .inner .txt {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}
@media (max-width: 750px) {
  .contact_box01 .inner .txt {
    font-size: 1.6rem;
    padding: 0 20px;
  }
}

.flow_bana {
  position: fixed;
  top: 40%;
  right: 0;
  background-color: #4CC9ED;
  padding: 15px 10px;
}
@media (max-width: 750px) {
  .flow_bana {
    top: auto;
    bottom: 0;
    width: 100%;
    padding: 5px 10px;
  }
}
.flow_bana img {
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  .flow_bana img {
    margin-bottom: 0;
    margin-right: 5px;
  }
}
@media (min-width: 751px) {
  .flow_bana {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.flow_bana a {
  color: #fff;
  font-size: 2.4rem;
}
@media (max-width: 750px) {
  .flow_bana a {
    display: flex;
    justify-content: center;
  }
}

.deta_txt_box {
  background-color: #CAF0F8;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto 100px;
  line-height: 1.5;
}
.deta_txt_box02 {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto 100px;
  line-height: 1.5;
}

.deta_txt_box02 iframe{
	width:100%;
	height:550px;
}
.single_wapper02 .flex_box {
  display: flex;
  max-width: 1200px;
  margin: 50px auto;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .single_wapper02 .flex_box {
    flex-direction: column;
    padding: 0 20px;
  }
	.deta_txt_box02 iframe{
	width:100%;
	height:350px;
}
}
.single_wapper02 .flex_box .left_box {
  width: 50%;
}
@media (max-width: 750px) {
  .single_wapper02 .flex_box .left_box {
    width: 100%;
  }
}
.single_wapper02 .flex_box .left_box .main-image img {
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 8px;
  display: block;
}
.single_wapper02 .flex_box .left_box .thumbs-bar {
  position: relative;
  margin-top: 12px;
}
.single_wapper02 .flex_box .left_box .thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0px; /* 矢印の重なり分を内側に確保 */
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.single_wapper02 .flex_box .left_box .thumbnails::-webkit-scrollbar {
  height: 6px;
}
.single_wapper02 .flex_box .left_box .thumbnails::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.single_wapper02 .flex_box .left_box .thumb {
  width: 84px;
  height: 84px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  transition: border-color 0.2s, transform 0.2s;
  outline: none;
}
.single_wapper02 .flex_box .left_box .thumb:hover {
  border-color: #666;
}
.single_wapper02 .flex_box .left_box .thumb.active {
  border-color: #0b84ff;
  transform: translateY(-1px);
}
.single_wapper02 .flex_box .left_box .thumbs-arrow {
  position: absolute;
  top: -200%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 750px) {
  .single_wapper02 .flex_box .left_box .thumbs-arrow {
    top: -120%;
  }
}
.single_wapper02 .flex_box .left_box .thumbs-prev {
  left: 6px;
}
.single_wapper02 .flex_box .left_box .thumbs-next {
  right: 6px;
}
.single_wapper02 .flex_box .left_box .thumbs-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}
.single_wapper02 .flex_box .left_box .thumbs-arrow:focus-visible {
  outline: 2px solid #0b84ff;
}
@media (hover: none) {
  .single_wapper02 .flex_box .left_box {
    /* モバイルでの指スワイプを優先 */
  }
  .single_wapper02 .flex_box .left_box .thumb:hover {
    border-color: transparent;
  }
}
.single_wapper02 .flex_box .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .single_wapper02 .flex_box .right_box {
    width: 100%;
    margin-top: 30px;
  }
}
.single_wapper02 .flex_box .right_box .gallery img {
  width: 100%;
}
.single_wapper02 .flex_box .right_box .deta {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  margin-top: 30px;
  align-items: center;
  border-top: 2px solid #CAF0F8;
  border-bottom: 2px solid #CAF0F8;
}
.single_wapper02 .flex_box .right_box .deta dt {
  width: 10%;
  margin-bottom: 15px;
  font-size: 1.8rem;
}
@media (max-width: 750px) {
  .single_wapper02 .flex_box .right_box .deta dt {
    width: 18%;
  }
}
.single_wapper02 .flex_box .right_box .deta dt::after {
  content: ":";
  margin-left: 5px;
}
.single_wapper02 .flex_box .right_box .deta dd {
  width: 90%;
  margin-bottom: 15px;
}
@media (max-width: 750px) {
  .single_wapper02 .flex_box .right_box .deta dd {
    width: 82%;
  }
}
.single_wapper02 .flex_box .right_box .deta dd.price {
  font-size: 3rem;
}
.single_wapper02 .flex_box .right_box .deta dd.price span {
  font-size: 1.4rem;
}

/* ========== News Single ========== */
.news_single {
  /* 本文の横幅や雰囲気は既存に合わせる想定 */
}
@media (max-width: 750px) {
  .news_single {
    padding: 0 20px;
  }
}

/* タイトル：大きめ＋下線 */
.news_single .post_title {
  /* 端末幅で自然に伸縮：16px〜48px想定 */
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75em; /* タイトル直下の余白 */
  padding-bottom: 0.35em; /* 下線と文字の間隔 */
  border-bottom: 3px solid currentColor; /* 下線 */
  word-break: break-word; /* 長いタイトルの折返しケア */
}

/* 日付：右寄せ＋控えめに */
.news_single .post_date {
  text-align: right;
  font-size: 0.95rem;
  color: #666; /* 少しトーンダウン */
  margin: -0.25em 0 1.5em; /* タイトルと本文の間隔を調整 */
}

/* 本文：上にゆとりを持たせる */
.news_single .post_content {
  margin-top: 2rem; /* 本文と日付の間を広げる */
  line-height: 1.9;
}

/* 本文内の要素の読みやすさ（任意） */
.news_single .post_content p + p {
  margin-top: 1em;
}

.news_single .post_content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
}

.news_single .post_content h2,
.news_single .post_content h3 {
  margin: 2em 0 0.75em;
  line-height: 1.4;
}

/* 前後記事ナビ（任意の軽い整形） */
.post_nav ul {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid #e5e5e5;
}

.post_nav a {
  text-decoration: none;
}

.post_nav a:hover {
  text-decoration: underline;
}

/* スマホ微調整（お好みで） */
@media (max-width: 640px) {
  .news_single .post_date {
    font-size: 0.9rem;
    margin-bottom: 1.25em;
  }
  .news_single .post_content {
    margin-top: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */