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

body {
  color: #000;
  line-height: 1.4;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  background-color: #efd4bd;
}
body.sec {
  background-color: #fff;
}

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

main {
  overflow-x: hidden;
}

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

.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 {
  display: none;
  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 ul {
  display: none;
}

nav.globalMenuSp.active {
  z-index: 200;
  display: block;
  width: 100%;
}
nav.globalMenuSp.active ul {
  display: block;
  width: 100%;
  padding: 50px 0;
}
nav.globalMenuSp.active ul li {
  width: 100%;
  text-align: left;
}
nav.globalMenuSp.active ul li a {
  display: block;
  position: relative;
  padding: 10px 0 10px 10px;
  font-size: 2rem;
  border-bottom: 1px solid #8c8c8c;
  color: #000;
}
nav.globalMenuSp.active ul li a::after {
  content: "";
  display: block;
  background-image: url(../img/common/sp_arrow01.png);
  position: absolute;
  right: 10px;
  top: 13px;
  width: 10px;
  height: 18px;
  background-size: cover;
}

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.active {
  opacity: 100;
}

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

.pc_header {
  position: fixed;
  width: 100%;
  z-index: 9999;
}
.pc_header.sec {
  background-color: #fff;
}
@media (max-width: 750px) {
  .pc_header {
    position: fixed;
    background-color: #fff;
  }
}
.pc_header .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pc_header .inner .top_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc_header .inner .top_box .header_flex {
  display: flex;
  padding: 20px 0px;
  border-radius: 50px;
}
@media (max-width: 750px) {
  .pc_header .inner .top_box .header_flex {
    background-color: transparent;
    padding: 0 0 0 10px;
  }
}
@media (max-width: 750px) {
  .pc_header .inner .top_box {
    padding: 5px 0;
  }
  .pc_header .inner .top_box .logo {
    padding: 5px 10px 5px 10px;
    display: inline-block;
    width: 60%;
  }
}
.pc_header .inner .top_box ul {
  display: flex;
  align-items: center;
}
.pc_header .inner .top_box ul li:nth-child(1) {
  margin-right: 10px;
}

nav.pc_nav {
  margin-left: auto;
  background-size: cover;
  padding: 20px 0;
}
nav.pc_nav.sec {
  background-image: url(../img/common/nav_bk.png);
}
nav.pc_nav ul {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}
nav.pc_nav ul li {
  margin-left: 30px;
  font-size: 2rem;
  font-weight: bold;
}
nav.pc_nav ul li:last-child a {
  border: 1px solid #2d2d2d;
  border-radius: 20px;
  padding: 0 10px;
  transition: background-color 1s ease, color 1s ease;
}
nav.pc_nav ul li:last-child a:hover {
  background-color: #2d2d2d;
  color: #fff;
}
nav.pc_nav ul li a {
  color: #2d2d2d;
}
nav.pc_nav ul li ul {
  flex-direction: column;
  justify-content: center;
}
nav.pc_nav ul li ul li {
  margin-left: 0;
  margin-bottom: 20px;
}
nav.pc_nav ul li ul li a {
  color: #2d2d2d;
}

.mv {
  position: relative;
  padding-top: 100px;
}
@media (max-width: 750px) {
  .mv {
    padding-top: 80px;
  }
}
.mv .txt_box {
  position: absolute;
  background-color: #efd4bd;
  right: 10%;
  top: 10%;
  z-index: 99;
  padding: 40px;
}
@media (max-width: 750px) {
  .mv .txt_box {
    padding: 20px;
    right: 3%;
    top: 14%;
  }
}
.mv .txt_box h2 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media (max-width: 750px) {
  .mv .txt_box h2 {
    height: 30%;
  }
}
.mv .txt_box h2 img {
  height: 90%;
}
@media (max-width: 750px) {
  .mv .txt_box h2 img {
    height: 100%;
  }
}

.mv_txt {
  text-align: center;
  font-size: 3.6rem;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .mv_txt {
    font-size: 1.4rem;
  }
}

.top_box01 {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_box01 {
    margin-top: 30px;
  }
}
.top_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top_box01 .inner h2 {
  font-size: 4rem;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box01 .inner h2 {
    font-size: 2.6rem;
  }
}
.top_box01 .inner h2 span {
  color: #fff;
  display: block;
  font-size: 2rem;
}
.top_box01 .inner02 {
  margin-top: 50px;
  max-width: 90%;
  background-image: url(../img/top/box01bk.png);
  padding: 20px;
}
@media (max-width: 750px) {
  .top_box01 .inner02 {
    max-width: 100%;
    background-size: cover;
  }
}
.top_box01 .inner02 .flex_box {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .top_box01 .inner02 .flex_box {
    flex-direction: column;
  }
}
.top_box01 .inner02 .flex_box .imgbox {
  width: 60%;
}
@media (max-width: 750px) {
  .top_box01 .inner02 .flex_box .imgbox {
    width: 100%;
  }
}
.top_box01 .inner02 .flex_box .txt_box {
  width: 40%;
  padding: 30px;
}
@media (max-width: 750px) {
  .top_box01 .inner02 .flex_box .txt_box {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .top_box01 .inner02 .flex_box .txt_box p {
    font-size: 1.2rem;
  }
}
.top_box01 .inner02 .flex_box .txt_box h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.top_box02 {
  margin-top: 50px;
}
.top_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top_box02 .inner h2 {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .top_box02 .inner h2 {
    font-size: 2.3rem;
  }
}
.top_box02 .inner .txt {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .top_box02 .inner .txt {
    font-size: 1.1rem;
    margin-top: 20px;
  }
}
.top_box02 .inner .list {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .top_box02 .inner .list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 750px) {
  .top_box02 .inner .list li {
    width: 48%;
    margin: 0 1%;
  }
}
.top_box02 .inner .list li:nth-child(2) {
  margin: 0 30px;
}
@media (max-width: 750px) {
  .top_box02 .inner .list li:nth-child(2) {
    margin: 0 0px;
  }
}
.top_box02 .inner02 {
  margin-left: auto;
  max-width: 90%;
  background-image: url(../img/top/top_box02bk.png);
  background-size: cover;
  padding: 100px 30px 50px;
  margin-top: -50px;
}
@media (max-width: 750px) {
  .top_box02 .inner02 {
    max-width: 100%;
    margin-top: 20px;
    padding: 30px 20px 30px;
  }
}
.top_box02 .inner02 .ttl {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .top_box02 .inner02 .ttl {
    font-size: 1.7rem;
  }
}
.top_box02 .inner02 .ttl span {
  background-image: url(../img/top/top_box02ttl.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  display: inline-block;
  padding-bottom: 20px;
}
@media (max-width: 750px) {
  .top_box02 .inner02 .ttl span {
    padding-bottom: 5px;
    background-size: 240px;
  }
}
.top_box02 .inner02 .flex_box {
  display: flex;
  max-width: 1200px;
  margin: 40px auto 0;
}
@media (max-width: 750px) {
  .top_box02 .inner02 .flex_box {
    flex-direction: column;
  }
}
.top_box02 .inner02 .flex_box .img_box {
  width: 60%;
}
@media (max-width: 750px) {
  .top_box02 .inner02 .flex_box .img_box {
    width: 100%;
  }
}
.top_box02 .inner02 .flex_box .txt_box {
  width: 40%;
  padding: 30px;
}
@media (max-width: 750px) {
  .top_box02 .inner02 .flex_box .txt_box {
    width: 100%;
    padding: 0px;
    margin-top: 20px;
  }
  .top_box02 .inner02 .flex_box .txt_box p {
    font-size: 1rem;
  }
}
.top_box02 .inner02 .flex_box .txt_box h4 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .top_box02 .inner02 .flex_box .txt_box h4 {
    margin-bottom: 10px;
  }
}
.top_box02 .btn {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box02 .btn {
    margin-top: 20px;
  }
}
.top_box02 .btn a {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  transition: background-color 1s ease, color 1s ease;
}
@media (max-width: 750px) {
  .top_box02 .btn a {
    font-size: 1.4rem;
    max-width: 200px;
    padding: 10px 10px;
  }
}
.top_box02 .btn a:hover {
  background-color: #fff;
  color: #2d2d2d;
}
.top_box02 .btn a:hover::after {
  background-image: url(../img/common/arrow02.svg);
  opacity: 0.5; /* 透明度を調整して滑らかに変える */
}
.top_box02 .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/common/arrow.svg);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 5px;
  transition: opacity 1s ease, background-image 1s ease;
  opacity: 1;
}

.top_box01-2 {
  position: relative;
  background-color: rgba(251, 235, 113, 0.2);
  padding: 10px 0 0 0;
}
.top_box01-2 .inner {
  max-width: 1200px;
  margin: 0px auto 0;
  position: relative;
}
.top_box01-2 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_box {
    flex-direction: column;
  }
}
.top_box01-2 .inner .flex_box::before {
  content: "MESSAGE";
  display: block;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20rem;
  z-index: 1;
  line-height: 1;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_box::before {
    font-size: 8rem;
  }
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_box {
    padding: 50px 20px;
    flex-direction: column;
  }
}
.top_box01-2 .inner .left_box {
  width: 50%;
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .left_box {
    width: 100%;
  }
}
.top_box01-2 .inner .left_box h2 {
  font-size: 5.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 20px;
  color: #0c0a69;
}
.top_box01-2 .inner .left_box h2 .mini {
  font-size: 2rem;
  display: block;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .left_box h2 {
    font-size: 3rem;
    margin-top: 10px;
  }
}
.top_box01-2 .inner .left_box p {
  font-size: 2rem;
  line-height: 1.8;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .left_box p {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
.top_box01-2 .inner .right_box {
  width: 48%;
  padding-top: 180px;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .right_box {
    width: 100%;
  }
}
.top_box01-2 .inner .flex_ttl {
  display: flex;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_ttl {
    flex-direction: column;
    padding: 0 20px;
  }
}
.top_box01-2 .inner .flex_ttl h2 {
  color: #0c0a69;
  width: 40%;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_ttl h2 {
    width: 100%;
  }
}
.top_box01-2 .inner .flex_ttl h2 .ttl01 {
  font-size: 6rem;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_ttl h2 .ttl01 {
    font-size: 4rem;
  }
}
.top_box01-2 .inner .flex_ttl h2 .ttl02 {
  display: block;
  font-size: 3rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_ttl h2 .ttl02 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top_box01-2 .inner .flex_ttl .ttlbox02 h3 {
  color: #0c0a69;
  font-size: 5.4rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_ttl .ttlbox02 h3 {
    font-size: 2.1rem;
    letter-spacing: 0.2em;
  }
}
.top_box01-2 .inner .flex_ttl .ttlbox02 .txt01 {
  line-height: 2;
  margin-top: 20px;
}
.top_box01-2 .inner .box01_list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .box01_list {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .top_box01-2 .inner .box01_list li {
    width: 40%;
  }
  .top_box01-2 .inner .box01_list li:nth-child(1) {
    margin: 0 30% 20px;
  }
  .top_box01-2 .inner .box01_list li:nth-child(3) {
    margin: 0 30% 20px;
  }
}
.top_box01-2 .inner .box01_list li:nth-child(2) {
  margin: 0 50px;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .box01_list li:nth-child(2) {
    margin: 0 30% 20px;
  }
}
.top_box01-2 .inner .btn {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .btn {
    padding: 0 30px;
  }
}

.top_news {
  margin-top: 100px;
}
.top_news .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_news .inner {
    flex-direction: column;
    padding: 0 20px;
  }
}
.top_news .inner .left_box {
  width: 55%;
  display: flex;
}
@media (max-width: 750px) {
  .top_news .inner .left_box {
    width: 100%;
    margin-bottom: 50px;
  }
}
.top_news .inner .left_box .news_box {
  margin-left: 20px;
}
.top_news .inner .left_box .news_box .txt_box {
  border-bottom: 1px solid #232323;
  padding-bottom: 5px;
}
.top_news .inner .left_box .news_box .txt_box .day {
  color: #0c0a69;
  margin-bottom: 5px;
}
.top_news .inner .right_box {
  width: 40%;
  text-align: center;
}
@media (max-width: 750px) {
  .top_news .inner .right_box {
    width: 100%;
    margin-bottom: 40px;
  }
}

.top_voice {
  padding: 50px 0 0px;
  position: relative;
}
.top_voice::before {
  content: "";
  width: 500px;
  height: 340px;
  background-image: url(../img/top/faq_bk.png);
  background-size: cover;
  position: absolute;
  left: 0;
  top: -50px;
}
.top_voice::after {
  content: "";
  width: 80%;
  height: 400px;
  background-image: url(../img/top/voice_bk.png);
  display: block;
  position: absolute;
  bottom: 100px;
  right: 0;
  z-index: -1;
}
@media (max-width: 750px) {
  .top_voice::after {
    background-image: url(../img/top/sp_voice_bk.png);
    height: 1000px;
    bottom: 400px;
  }
}
.top_voice .inner {
  max-width: 900px;
  margin: 0 auto;
}
.top_voice .inner h2 {
  text-align: center;
  color: #0c0a69;
  font-size: 3rem;
}
.top_voice .inner h2 span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  margin-top: 10px;
}
@media (max-width: 750px) {
  .top_voice .inner h2 span {
    margin-top: 20px;
  }
}
.top_voice .inner h2 span::before {
  display: block;
  content: "";
  width: 50px;
  height: 5px;
  background-color: #ffdf22;
  margin-bottom: 10px;
}
.top_voice .inner .voice_flex {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_voice .inner .voice_flex {
    flex-direction: column;
  }
}
.top_voice .inner .voice_flex li {
  width: 31%;
  background-color: #ffdf22;
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 750px) {
  .top_voice .inner .voice_flex li {
    width: 80%;
    margin: 0 auto 20px;
  }
}
.top_voice .inner .voice_flex li figure {
  display: block;
  text-align: center;
}
.top_voice .inner .voice_flex li .txt_box {
  margin-top: 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  line-height: 2;
  min-height: 160px;
}
.top_voice .inner .btn {
  text-align: center;
  margin-top: 100px;
}

.top_box03 {
  margin-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 750px) {
  .top_box03 {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}
.top_box03::before {
  content: "";
  display: block;
  width: 70%;
  height: 70%;
  background-image: url(../img/top/top_box03bk.jpg);
  z-index: 0;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 750px) {
  .top_box03::before {
    width: 100%;
    height: 81%;
  }
}
.top_box03 .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .top_box03 .inner {
    padding: 0 10px;
  }
}
.top_box03 .inner h2 {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .top_box03 .inner h2 {
    font-size: 2.4rem;
  }
}
.top_box03 .inner h2 span {
  display: block;
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .top_box03 .inner h2 span {
    font-size: 1.6rem;
  }
}
.top_box03 .inner .top_case {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_case {
    margin-top: 20px;
  }
}
.top_box03 .inner .top_case li {
  width: 46%;
  margin: 0 1% 30px;
}
.top_box03 .inner .top_case li .case_img {
  position: relative;
  transition: opacity 1s ease;
  opacity: 1;
}
.top_box03 .inner .top_case li .case_img:hover {
  opacity: 0.6;
}
.top_box03 .inner .top_case li .case_img::before {
  content: "";
  display: block;
  position: absolute;
  top: 42%;
  left: 5%;
  background-image: url(../img/top/before_after.svg);
  width: 70px;
  height: 100px;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_case li .case_img::before {
    width: 30px;
    height: 40px;
    top: 39%;
  }
}
.top_box03 .inner .top_case li .case_img figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.top_box03 .inner .top_case li .ttl {
  font-size: 2rem;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b3b3b3;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_case li .ttl {
    font-size: 1.4rem;
  }
}
.top_box03 .inner .top_case li .txt {
  margin-top: 10px;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_case li .txt {
    font-size: 1rem;
  }
}
.top_box03 .inner .btn {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn {
    margin-top: 0px;
  }
}
.top_box03 .inner .btn a {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  transition: background-color 1s ease, color 1s ease;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn a {
    font-size: 1.4rem;
    max-width: 200px;
    padding: 10px 10px;
  }
}
.top_box03 .inner .btn a:hover {
  background-color: #fff;
  color: #2d2d2d;
}
.top_box03 .inner .btn a:hover::after {
  background-image: url(../img/common/arrow02.svg);
  opacity: 0.5; /* 透明度を調整して滑らかに変える */
}
.top_box03 .inner .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/common/arrow.svg);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 5px;
  transition: opacity 1s ease, background-image 1s ease;
  opacity: 1;
}

.top_box04 {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 750px) {
  .top_box04 {
    padding: 30px 0;
  }
}
.top_box04::before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background-image: url(../img/top/top_box04bk.png);
  position: absolute;
  top: 0;
  left: 0;
}
.top_box04 .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.top_box04 .inner h2 {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .top_box04 .inner h2 {
    font-size: 2rem;
  }
}
.top_box04 .inner h2 span {
  display: block;
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .top_box04 .inner h2 span {
    font-size: 1.6rem;
  }
}
.top_box04 .inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .top_box04 .inner ul {
    margin-top: 20px;
    flex-direction: column;
  }
}
.top_box04 .inner ul li {
  width: 48%;
  margin: 20px 1%;
}
@media (max-width: 750px) {
  .top_box04 .inner ul li {
    width: 70%;
    margin: 20px auto 0;
  }
}
.top_box04 .inner .btn {
  margin-top: 50px;
  text-align: center;
}
.top_box04 .inner .btn a {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  transition: background-color 1s ease, color 1s ease;
}
@media (max-width: 750px) {
  .top_box04 .inner .btn a {
    font-size: 1.4rem;
    max-width: 230px;
    padding: 10px 10px;
  }
}
.top_box04 .inner .btn a:hover {
  background-color: #fff;
  color: #2d2d2d;
}
.top_box04 .inner .btn a:hover::after {
  background-image: url(../img/common/arrow02.svg);
  opacity: 0.5; /* 透明度を調整して滑らかに変える */
}
.top_box04 .inner .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/common/arrow.svg);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 5px;
  transition: opacity 1s ease, background-image 1s ease;
  opacity: 1;
}

.top_box05 {
  display: flex;
}
.top_box05 figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}
@media (max-width: 750px) {
  .top_box05 figure {
    display: none;
  }
}
.top_box05 .txt_box {
  background-color: #fff;
  padding: 25px;
  width: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 750px) {
  .top_box05 .txt_box {
    width: 100%;
    padding: 25px 0;
  }
}
.top_box05 .txt_box h2 {
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .top_box05 .txt_box h2 {
    font-size: 2rem;
  }
}
.top_box05 .txt_box .txt {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .top_box05 .txt_box .txt {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.top_box05 .txt_box .btn {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box05 .txt_box .btn {
    margin-top: 20px;
  }
}
.top_box05 .txt_box .btn a {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  transition: background-color 1s ease, color 1s ease;
}
@media (max-width: 750px) {
  .top_box05 .txt_box .btn a {
    font-size: 1.4rem;
    max-width: 200px;
    padding: 10px 10px;
  }
}
.top_box05 .txt_box .btn a:hover {
  background-color: #fff;
  color: #2d2d2d;
}
.top_box05 .txt_box .btn a:hover::after {
  background-image: url(../img/common/arrow02.svg);
  opacity: 0.5; /* 透明度を調整して滑らかに変える */
}
.top_box05 .txt_box .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/common/arrow.svg);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 5px;
  transition: opacity 1s ease, background-image 1s ease;
  opacity: 1;
}

.top_box06 {
  padding: 100px;
  position: relative;
}
@media (max-width: 750px) {
  .top_box06 {
    padding: 50px 30px;
  }
}
.top_box06::after {
  content: "";
  display: block;
  width: 80%;
  height: 70%;
  background-image: url(../img/top/top_box06bk.png);
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 750px) {
  .top_box06::after {
    width: 100%;
  }
}
.top_box06 .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.top_box06 .inner .flex_box {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 750px) {
  .top_box06 .inner .flex_box {
    flex-direction: column;
  }
}
.top_box06 .inner .flex_box figure {
  display: block;
  width: 60%;
}
@media (max-width: 750px) {
  .top_box06 .inner .flex_box figure {
    width: 100%;
  }
}
.top_box06 .inner .flex_box .txt_box {
  padding: 20px;
}
@media (max-width: 750px) {
  .top_box06 .inner .flex_box .txt_box {
    width: 100%;
  }
  .top_box06 .inner .flex_box .txt_box p {
    font-size: 1rem;
  }
  .top_box06 .inner .flex_box .txt_box p br {
    display: none;
  }
}
.top_box06 .inner .flex_box .txt_box h3 {
  font-size: 3rem;
}
@media (max-width: 750px) {
  .top_box06 .inner .flex_box .txt_box h3 {
    font-size: 2rem;
  }
}
.top_box06 .inner .btn {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box06 .inner .btn {
    margin-top: 20px;
  }
}
.top_box06 .inner .btn a {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  transition: background-color 1s ease, color 1s ease;
}
@media (max-width: 750px) {
  .top_box06 .inner .btn a {
    font-size: 1.4rem;
    max-width: 200px;
    padding: 10px 10px;
  }
}
.top_box06 .inner .btn a:hover {
  background-color: #fff;
  color: #2d2d2d;
}
.top_box06 .inner .btn a:hover::after {
  background-image: url(../img/common/arrow02.svg);
  opacity: 0.5; /* 透明度を調整して滑らかに変える */
}
.top_box06 .inner .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/common/arrow.svg);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 5px;
  transition: opacity 1s ease, background-image 1s ease;
  opacity: 1;
}

.top_faq {
  background-image: url(../img/top/faqq_bk.png);
  padding: 50px 0;
  background-size: cover;
  margin: 100px 0 0;
}
.top_faq.sec {
  background-image: none;
  background-color: #f0f0f0;
}
@media (max-width: 750px) {
  .top_faq {
    padding: 20px 0;
    background-size: cover;
  }
}
.top_faq .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 750px) {
  .top_faq .inner {
    overflow-x: hidden;
  }
}
.top_faq .inner .ttl {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .top_faq .inner .ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top_faq .inner .ttl span {
  display: block;
  color: #d64b36;
}
.top_faq .inner .sub_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #2d2d2d;
  margin-top: 10px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .top_faq .inner .sub_ttl {
    margin-bottom: 30px;
  }
}
.top_faq .inner .faq_list {
  margin-top: 40px;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list {
    padding: 0 20px;
  }
}
.top_faq .inner .faq_list dt {
  background-color: #0d3d01;
  padding: 20px;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dt {
    padding: 20px 10px;
  }
}
.top_faq .inner .faq_list dt::before {
  content: "";
  display: block;
  width: 22px;
  height: 46px;
  background-image: url(../img/top/faq_q.png);
  margin-right: 30px;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dt::before {
    width: 20px;
    height: 37px;
    background-size: cover;
  }
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dt p {
    width: calc(100% - 20px);
  }
}
.top_faq .inner .faq_list dd {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  padding: 20px;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dd {
    align-items: flex-start;
    padding: 20px 0 20px 10px;
  }
}
.top_faq .inner .faq_list dd::before {
  content: "";
  display: block;
  width: 33px;
  height: 43px;
  background-image: url(../img/top/faq_a.png);
  margin-right: 30px;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dd::before {
    width: 20px;
    height: 36px;
    background-size: cover;
    margin-right: 10px;
  }
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dd p {
    width: calc(100% - 50px);
  }
}
.top_faq .inner .btn {
  text-align: right;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_faq .inner .btn {
    margin-top: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 750px) {
  .sp_icon {
    position: fixed;
    right: 45px;
    top: 12px;
    z-index: 99999;
    display: flex;
    justify-content: flex-end;
  }
  .sp_icon li {
    width: 30%;
    margin-right: 20px;
  }
}

footer .footer_waooer {
  background-image: url(../img/common/footer_bk.png);
  background-size: cover;
  padding: 100px;
}
@media (max-width: 750px) {
  footer .footer_waooer {
    padding: 50px 20px;
  }
}
footer .footer_top {
  background-color: rgba(0, 127, 72, 0.5);
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  footer .footer_top {
    padding: 30px 10px;
  }
}
footer .footer_top h2 {
  text-align: center;
  color: #fff;
  font-size: 5rem;
  margin-top: -60px;
}
footer .footer_top .txt {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  margin: 20px 0 0;
}
@media (max-width: 750px) {
  footer .footer_top .txt {
    font-size: 1.6rem;
  }
}
footer .footer_top ul {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  footer .footer_top ul {
    flex-direction: column;
  }
}
footer .footer_top ul li {
  color: #fff;
}
@media (max-width: 750px) {
  footer .footer_top ul li {
    width: 100%;
  }
}
footer .footer_top ul li p {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
footer .footer_top ul li:first-child {
  margin-right: 30px;
}
@media (max-width: 750px) {
  footer .footer_top ul li:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
footer .footer_center {
  background-color: #fff;
  padding: 50px 0;
}
@media (max-width: 750px) {
  footer .footer_center {
    padding: 50px 20px;
  }
}
footer .footer_center .inner {
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer_center .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  footer .footer_center .inner .flex_box {
    align-items: flex-start;
  }
}
footer .footer_center .inner .flex_box .left_box {
  width: 48%;
}
@media (max-width: 750px) {
  footer .footer_center .inner .flex_box .left_box {
    width: 58%;
  }
}
footer .footer_center .inner .flex_box .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  footer .footer_center .inner .flex_box .right_box {
    width: 40%;
  }
}
footer .footer_center .inner .flex_box h2 {
  border-bottom: 1px solid #b3b3b3;
}
footer .footer_center .inner .flex_box .add {
  display: flex;
  margin-top: 20px;
}
footer .footer_center .inner .flex_box .add dt {
  width: 20%;
}
@media (max-width: 750px) {
  footer .footer_center .inner .flex_box .add dt {
    font-size: 1rem;
    width: 20%;
  }
}
footer .footer_center .inner .flex_box .add dd {
  margin-left: 20px;
}
@media (max-width: 750px) {
  footer .footer_center .inner .flex_box .add dd {
    font-size: 1rem;
    width: 78%;
    margin-left: 3px;
  }
}
footer .footer_center .inner .flex_box .map {
  width: 100%;
}
footer .footer_center .inner .flex_box .map iframe {
  width: 100%;
  height: 350px;
}
@media (max-width: 750px) {
  footer .footer_center .inner .flex_box .map iframe {
    height: 150px;
  }
}
footer .footer_bottom {
  background-color: #2d2d2d;
  padding: 30px 0;
  margin-top: 100px;
}
@media (max-width: 750px) {
  footer .footer_bottom {
    margin-top: 30px;
    padding-bottom: 0;
  }
}
footer .footer_bottom .inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner {
    flex-direction: column;
    padding: 0 20px;
  }
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box {
    padding: 0;
  }
}
footer .footer_bottom .inner .left_box p {
  color: #b3b3b3;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box p {
    font-size: 1rem;
  }
}
footer .footer_bottom .inner .left_box p a {
  color: #fff;
}
footer .footer_bottom .inner .left_box p:last-of-type {
  margin-top: 45px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box p:last-of-type {
    margin-top: 0;
  }
}
footer .footer_bottom .inner .right_box .flex_box {
  display: flex;
}
footer .footer_bottom .inner .right_box .flex_box div {
  margin-left: 100px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box .flex_box div {
    margin-left: 0px;
    margin-right: 15px;
  }
}
footer .footer_bottom .inner .right_box .flex_box p {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b3b3b3;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box .flex_box p {
    font-size: 1.2rem;
  }
}
footer .footer_bottom .inner .right_box .flex_box p a {
  color: #fff;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box {
    padding: 0 20px;
  }
}
footer .footer_bottom .inner .mbox {
  margin: 20px 0;
}
footer .copy {
  background-color: #2d2d2d;
  padding: 10px 0;
  color: #fff;
  text-align: center;
}
@media (max-width: 750px) {
  footer .copy small {
    font-size: 1rem;
  }
}

.sec_mv_wapper {
  padding-top: 175px;
}
@media (max-width: 750px) {
  .sec_mv_wapper {
    padding-top: 0;
  }
}

.sec_mv {
  padding-top: 100px;
}
@media (max-width: 750px) {
  .sec_mv {
    padding-top: 60px;
  }
}
.sec_mv img {
  width: 100%;
}

.sec_ttl {
  text-align: center;
  font-size: 5rem;
  margin-top: 50px;
  font-weight: normal;
}
@media (max-width: 750px) {
  .sec_ttl {
    font-size: 3rem;
    margin-top: 20px;
  }
}
.sec_ttl span {
  font-size: 3rem;
  display: block;
  color: #fdc088;
}

.sec_mv_img {
  text-align: center;
}

.sec_txt {
  text-align: center;
  padding: 50px 0;
  line-height: 2;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .sec_txt {
    padding: 30px 20px;
  }
}

.service_box01 .inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.service_box01 .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 366px;
  height: 301px;
  background-image: url(../img/service/service_box01bk.png);
  right: 0;
}
@media (max-width: 750px) {
  .service_box01 .inner::before {
    background-size: 182px 150px;
    background-position: right top;
  }
}
.service_box01 .inner h2 {
  font-size: 3rem;
  position: relative;
}
@media (max-width: 750px) {
  .service_box01 .inner h2 {
    font-size: 2rem;
  }
}
.service_box01 .inner h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.service_box01 .inner .txt {
  margin-top: 60px;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .service_box01 .inner .txt {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.service_box01 .inner .btn {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .service_box01 .inner .btn {
    padding: 0 20px;
  }
}

.service_box02 {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .service_box02 {
    margin-top: 50px;
  }
}
.service_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.service_box02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box {
    flex-direction: column;
  }
  .service_box02 .inner .flex_box.flex_re {
    flex-direction: column-reverse;
  }
}
.service_box02 .inner .flex_box .txt_box {
  width: 48%;
  padding: 30px;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box {
    width: 100%;
    padding: 20px;
  }
}
.service_box02 .inner .flex_box .txt_box h2 {
  font-size: 5rem;
  display: flex;
  align-items: center;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2 {
    font-size: 2.5rem;
  }
}
.service_box02 .inner .flex_box .txt_box h2::before {
  margin-right: 20px;
}
.service_box02 .inner .flex_box .txt_box h2.non01::before {
  content: url(../img/service/icon01.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non01::before {
    display: block;
    width: 57px;
    height: 42px;
    content: "";
    background-image: url(../img/service/icon01.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box h2.non02::before {
  content: url(../img/service/icon02.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non02::before {
    display: block;
    width: 57px;
    height: 40px;
    content: "";
    background-image: url(../img/service/icon02.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box h2.non03::before {
  content: url(../img/service/icon03.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non03::before {
    display: block;
    width: 57px;
    height: 39px;
    content: "";
    background-image: url(../img/service/icon03.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box h2.non04::before {
  content: url(../img/service/icon04.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non04::before {
    display: block;
    width: 57px;
    height: 38px;
    content: "";
    background-image: url(../img/service/icon04.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box .txt {
  line-height: 1.8;
  margin-top: 20px;
}
.service_box02 .inner .flex_box .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .img_box {
    width: 100%;
  }
}

.top_news_box {
  margin: 50px 0;
}
@media (max-width: 750px) {
  .top_news_box {
    padding: 50px 0;
  }
}
.top_news_box .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .top_news_box .inner {
    flex-direction: column;
  }
}
.top_news_box .inner .left_box {
  width: 30%;
  text-align: center;
}
@media (max-width: 750px) {
  .top_news_box .inner .left_box {
    width: 100%;
    text-align: center;
  }
}
.top_news_box .inner .left_box .btn {
  margin-top: 20px;
}
.top_news_box .inner .right_box {
  width: 70%;
}
@media (max-width: 750px) {
  .top_news_box .inner .right_box {
    width: 100%;
  }
}
.top_news_box .inner .right_box ul {
  display: flex;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.top_news_box .inner .right_box ul a {
  display: flex;
  width: 100%;
}
.top_news_box .inner .right_box ul a li {
  color: #000;
}
.top_news_box .inner .right_box ul a li.day {
  color: #005bac;
}
@media (max-width: 750px) {
  .top_news_box .inner .right_box ul {
    padding: 0 20px;
    flex-direction: column;
  }
}
.top_news_box .inner .right_box ul .day {
  color: #005bac;
  width: 15%;
}
@media (max-width: 750px) {
  .top_news_box .inner .right_box ul .day {
    width: 100%;
  }
}

.footer_contact {
  display: flex;
}
@media (max-width: 750px) {
  .footer_contact {
    flex-direction: column;
  }
}
.footer_contact .left_box {
  width: 50%;
  background-image: url(../img/common/footer_contact_bk.png);
  background-size: cover;
  text-align: center;
  padding: 100px;
}
@media (max-width: 750px) {
  .footer_contact .left_box {
    width: 100%;
    padding: 50px;
  }
}
.footer_contact .left_box .btn {
  margin-top: 50px;
}
.footer_contact .right_box {
  width: 50%;
  background-color: #005bac;
  padding: 100px;
  text-align: center;
}
@media (max-width: 750px) {
  .footer_contact .right_box {
    width: 100%;
    padding: 30px;
  }
}
.footer_contact .right_box .btn01 {
  margin: 30px 0;
}

.service_box03 {
  margin-top: 200px;
  margin-bottom: 200px;
}
@media (max-width: 750px) {
  .service_box03 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.service_box03 .inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.service_box03 .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 366px;
  height: 301px;
  background-image: url(../img/service/service_box03bk.png);
  left: 0;
}
@media (max-width: 750px) {
  .service_box03 .inner::before {
    width: 183px;
    height: 150px;
    background-size: cover;
    left: -5%;
    top: 20%;
  }
}
.service_box03 .inner h2 {
  font-size: 3rem;
  position: relative;
}
.service_box03 .inner h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.service_box03 .inner .txt {
  margin-top: 60px;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .service_box03 .inner .txt {
    padding: 0 20px;
  }
}
.service_box03 .inner .btn {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .service_box03 .inner .btn {
    padding: 0 20px;
  }
}

.recruit_box02 {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .recruit_box02 {
    font-size: 30px;
  }
}
.recruit_box02 .ttl {
  font-size: 3rem;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .recruit_box02 .ttl {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
.recruit_box02 .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.recruit_box02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box {
    flex-direction: column;
  }
  .recruit_box02 .inner .flex_box.flex_re {
    flex-direction: column-reverse;
  }
}
.recruit_box02 .inner .flex_box .txt_box {
  width: 48%;
  padding: 0 30px 30px 30px;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box {
    width: 100%;
    padding: 20px 20px 0px;
  }
}
.recruit_box02 .inner .flex_box .txt_box h2 {
  font-size: 5rem;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box h2 {
    font-size: 2rem;
  }
}
.recruit_box02 .inner .flex_box .txt_box h2 span {
  display: block;
  color: #007f48;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box h2 span {
    font-size: 1.8rem;
  }
}
.recruit_box02 .inner .flex_box .txt_box .txt {
  line-height: 1.8;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box .txt {
    font-size: 1.6rem;
  }
}
.recruit_box02 .inner .flex_box .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .img_box {
    width: 100%;
    padding: 0 20px;
  }
}

.recruit_box03 {
  margin-top: 100px;
}
.recruit_box03 .ttl {
  font-size: 3rem;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .recruit_box03 .ttl {
    font-size: 2rem;
  }
}
.recruit_box03 .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.recruit_box03 .inner::before {
  content: "";
  height: 70%;
  width: 5px;
  background-color: #000;
  position: absolute;
  left: 6.5%;
  top: 17%;
  z-index: -1;
}
@media (max-width: 750px) {
  .recruit_box03 .inner::before {
    display: none;
  }
}
.recruit_box03 .inner .img_box02 {
  text-align: center;
}
.recruit_box03 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .recruit_box03 .inner .flex_box {
    align-items: center;
    padding: 0 20px;
  }
}
.recruit_box03 .inner .flex_box .icon_box {
  width: 15%;
}
@media (max-width: 750px) {
  .recruit_box03 .inner .flex_box .icon_box {
    width: 25%;
  }
}
.recruit_box03 .inner .flex_box .txt_box {
  width: 60%;
  padding: 0 30px 30px 30px;
}
@media (max-width: 750px) {
  .recruit_box03 .inner .flex_box .txt_box {
    width: 75%;
    padding: 0 0px 30px 10px;
  }
}
.recruit_box03 .inner .flex_box .txt_box h2 {
  font-size: 5rem;
  line-height: 1.6;
}
.recruit_box03 .inner .flex_box .txt_box h2 span {
  display: block;
  color: #007f48;
  font-size: 3rem;
}
.recruit_box03 .inner .flex_box .txt_box .txt {
  line-height: 1.8;
  margin-top: 20px;
  font-size: 1.6rem;
}
.recruit_box03 .inner .flex_box .img_box {
  width: 25%;
}

.recruit_box04 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.recruit_box04 .ttl {
  font-size: 3rem;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .recruit_box04 .ttl {
    font-size: 2rem;
  }
}
.recruit_box04 .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit_box04 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.recruit_box04 .inner .table01 {
  max-width: 600px;
  margin: 0 auto;
  border-spacing: 0;
}
@media (max-width: 750px) {
  .recruit_box04 .inner .table01 {
    max-width: 92%;
  }
}
.recruit_box04 .inner .table01 th {
  background-color: #e6e6e6;
  padding: 30px 20px;
  border: 1px solid #b3b3b3;
  line-height: 1.8;
  width: 20%;
}
.recruit_box04 .inner .table01 td {
  padding: 30px;
  border: 1px solid #b3b3b3;
  line-height: 1.8;
}

.company_box01 {
  background-image: url(../img/company/bk.png);
  background-position: top center;
  padding: 50px 0;
}
.company_box01 .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.company_box01 .inner h2 {
  font-size: 4rem;
  text-align: center;
}
.company_box01 .inner h2 span {
  border-bottom: 2px solid #b3b3b3;
}
.company_box01 .inner table {
  width: 100%;
  border-spacing: 0;
  padding: 50px;
}
@media (max-width: 750px) {
  .company_box01 .inner table {
    padding: 50px 20px;
  }
}
.company_box01 .inner table th {
  padding: 20px;
  border-bottom: 2px solid #b3b3b3;
}
.company_box01 .inner table th.boeder_none {
  border-bottom: none;
}
@media (max-width: 750px) {
  .company_box01 .inner table th {
    padding: 20px 0;
    width: 30%;
  }
}
.company_box01 .inner table td {
  padding: 20px;
  border-bottom: 2px solid #b3b3b3;
}
.company_box01 .inner table td.boeder_none {
  border-bottom: none;
}
@media (max-width: 750px) {
  .company_box01 .inner table td {
    padding: 20px 0;
  }
}

@media (max-width: 750px) {
  .privacypolicy_box {
    padding: 0 20px;
  }
}
.privacypolicy_box .inner {
  max-width: 1200px;
  margin: 100px auto;
}
@media (max-width: 750px) {
  .privacypolicy_box .inner {
    margin: 50px auto;
  }
}
.privacypolicy_box .inner .txt01 {
  line-height: 1.8;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .privacypolicy_box .inner .txt01 {
    font-size: 1.2rem;
  }
}
.privacypolicy_box .inner .ttl {
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 20px;
  margin-top: 50px;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .privacypolicy_box .inner .ttl {
    font-size: 1.4rem;
    padding-bottom: 5px;
    margin-top: 20px;
  }
}

.advantage_box01 .inner {
  max-width: 1200px;
  margin: 50px auto;
  position: relative;
}
@media (max-width: 750px) {
  .advantage_box01 .inner {
    overflow-x: hidden;
    margin: 50px auto;
  }
}
.advantage_box01 .inner .ttl {
  font-size: 3rem;
  position: relative;
  text-align: center;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .ttl {
    font-size: 2rem;
  }
}
.advantage_box01 .inner .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.advantage_box01 .inner .txt01 {
  text-align: center;
  line-height: 2;
  margin-top: 50px;
}
.advantage_box01 .inner .list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list {
    flex-wrap: wrap;
  }
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list li {
    width: 33%;
  }
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list li:nth-child(1) {
    margin: 0 30% 20px;
  }
}
.advantage_box01 .inner .list li:nth-child(2) {
  margin: 0 50px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list li:nth-child(2) {
    margin: 0 20px 0 0;
  }
}
.advantage_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  align-items: center;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box {
    flex-direction: column;
  }
  .advantage_box01 .inner .flex_box.flex_re {
    flex-direction: column-reverse;
  }
}
.advantage_box01 .inner .flex_box .txt_box {
  width: 48%;
  position: relative;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box {
    width: 100%;
    padding: 0 20px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non01 {
  background-image: url(../img/advantage/icon01.png);
  background-position: right top;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non01 {
    background-position: right 30px top 0px;
    background-size: 100px 100px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non02 {
  background-image: url(../img/advantage/icon02.png);
  background-position: right top;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non02 {
    background-position: right 30px top 0px;
    background-size: 100px 100px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non03 {
  background-image: url(../img/advantage/icon03.png);
  background-position: right top;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non03 {
    background-position: right 30px top 0px;
    background-size: 100px 100px;
  }
}
.advantage_box01 .inner .flex_box .txt_box h3 {
  text-align: left;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box h3 {
    font-size: 3rem;
  }
}
.advantage_box01 .inner .flex_box .txt_box h3 span {
  color: #007f48;
}
.advantage_box01 .inner .flex_box .txt_box .txt {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 2rem;
  padding: 0 30px 0 0;
}
.advantage_box01 .inner .flex_box .img_box {
  width: 48%;
}

.voice_box01 .inner {
  max-width: 1200px;
  margin: 100px auto;
  position: relative;
}
@media (max-width: 750px) {
  .voice_box01 .inner {
    margin: 50px auto;
  }
}
.voice_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box {
    flex-direction: column;
  }
  .voice_box01 .inner .flex_box.sp_re {
    flex-direction: column-reverse;
  }
}
.voice_box01 .inner .flex_box .txt_box {
  width: 48%;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box {
    width: 100%;
    padding: 0 20px;
  }
}
.voice_box01 .inner .flex_box .txt_box.non01 {
  background-image: url(../img/voice/non01.png);
  background-position: right 0px top 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box.non01 {
    background-position: right 0px top 70px;
    background-size: 182px 84px;
  }
}
.voice_box01 .inner .flex_box .txt_box.non02 {
  background-image: url(../img/voice/non02.png);
  background-position: right 0px top 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box.non02 {
    background-position: right 0px top 70px;
    background-size: 182px 84px;
  }
}
.voice_box01 .inner .flex_box .txt_box.non03 {
  background-image: url(../img/voice/non03.png);
  background-position: right 0px top 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box.non03 {
    background-position: right 0px top 70px;
    background-size: 182px 84px;
  }
}
.voice_box01 .inner .flex_box .txt_box h3 {
  text-align: left;
  font-size: 4rem;
  padding-top: 50px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box h3 {
    font-size: 2.6rem;
  }
}
.voice_box01 .inner .flex_box .txt_box h3 span {
  color: #fff;
  display: block;
  background-color: #007f48;
  margin-bottom: 20px;
  padding: 10px;
  display: inline-block;
}
.voice_box01 .inner .flex_box .txt_box h3 span.top {
  padding-left: 130px;
  margin-left: -130px;
}
.voice_box01 .inner .flex_box .txt_box .txt {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 2rem;
  padding: 0 30px 0 0;
}
.voice_box01 .inner .flex_box .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .img_box {
    width: 80%;
    margin: 0 auto;
  }
}

.btnwapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .btnwapper {
    flex-direction: column;
    padding: 0 20px;
  }
}
.btnwapper li {
  width: 50%;
}
@media (max-width: 750px) {
  .btnwapper li {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .contact_box01 {
    padding: 0 20px;
  }
}
.contact_box01 .inner_wapper {
  max-width: 800px;
  margin: 100px auto 0;
  border: 1px solid #b3b3b3;
  padding: 30px 50px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 750px) {
  .contact_box01 .inner_wapper {
    padding: 20px 20px;
    margin: 30px auto 0;
  }
}
.contact_box01 .inner_wapper::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/conatact/bk01.png);
  width: 57px;
  height: 56px;
}
@media (max-width: 750px) {
  .contact_box01 .inner_wapper::before {
    width: 26px;
    height: 26px;
    background-size: cover;
  }
}
.contact_box01 .inner_wapper .txt {
  text-align: left;
  line-height: 2;
  font-weight: bold;
}
@media (max-width: 750px) {
  .contact_box01 .inner_wapper .txt {
    font-size: 1.2rem;
  }
}
.contact_box01 .inner_wapper .txt span {
  color: #ed1c24;
}
.contact_box01 .tel_txt {
  text-align: center;
  margin: 50px 0;
}
.contact_box01 .form_box {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .contact_box01 .form_box {
    padding: 0 20px;
  }
}
.contact_box01 .form_box .contact_box03 {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .contact_box03 {
    margin-top: 10px;
  }
}
.contact_box01 .form_box .contact_box03 .name {
  font-size: 2rem;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .contact_box03 .name {
    font-size: 1.4rem;
  }
}
.contact_box01 .form_box .contact_box03 .name .hissu {
  font-size: 1.6rem;
  background-color: #d64b36;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  padding: 5px 20px;
  margin-left: 30px;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .contact_box03 .name .hissu {
    font-size: 1.2rem;
    padding: 3px 10px;
  }
}
.contact_box01 .form_box .contact_box03 .form_box {
  padding: 20px 0;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .contact_box03 .form_box {
    padding: 5px 0;
  }
}
.contact_box01 .form_box .contact_box03 .form_box input {
  padding: 10px;
  background-color: #f0f0f0;
  width: 100%;
  border-radius: 3px;
}
.contact_box01 .form_box .contact_box03 .form_box select {
  background-color: #f0f0f0;
  padding: 10px;
}
.contact_box01 .form_box .contact_box03 .form_box textarea {
  padding: 10px;
  background-color: #f0f0f0;
  width: 100%;
  margin-top: 30px;
}
.contact_box01 .form_box .contact_box03 .form_box input[type=radio i] {
  width: auto;
}
.contact_box01 .form_box .sub_center {
  text-align: center;
  margin: 100px 0;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .sub_center {
    margin: 30px 0;
  }
}
.contact_box01 .form_box .sub_center input {
  background-color: #2d2d2d;
  color: #fff;
  display: inline-block;
  padding: 30px 100px;
  border-radius: 0px;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .sub_center input {
    max-width: 76%;
    text-align: center;
    display: block;
    padding: 10px 0px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact_box01 .form_box .check_box {
  max-width: 1000px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.contact_box01 .form_box .check_box p {
  font-size: 2rem;
}
.contact_box01 .form_box .check_box p .hissu {
  font-size: 1.6rem;
  background-color: #d64b36;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  padding: 5px 20px;
  margin-left: 10px;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .check_box p .hissu {
    font-size: 1.2rem;
    padding: 3px 10px;
    margin-left: 10px;
  }
}
@media (max-width: 750px) {
  .contact_box01 .form_box .check_box p {
    font-size: 1.6rem;
  }
}
.contact_box01 .form_box .check_box p a {
  color: #472821;
}

.contact_box02 .inner {
  max-width: 1000px;
  margin: 40px auto 0;
}
.contact_box02 h2 {
  text-align: center;
  font-size: 2rem;
  color: #221815;
  margin-bottom: 30px;
}
.contact_box02 .top_privacy {
  padding: 20px;
  height: 200px;
  margin: 0 auto;
  overflow-y: scroll;
  border: 3px solid #ccc;
  color: #221815;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .contact_box02 .top_privacy {
    margin-top: 30px;
    max-width: 96%;
  }
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 100;
}
@media (max-width: 750px) {
  .pagetop {
    display: none;
  }
}

.pagetop a {
  display: block;
  text-align: center;
  color: #222;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 10px;
}

.pagetop a:hover {
  display: block;
  text-decoration: none;
  padding: 5px 10px;
}

@media (max-width: 750px) {
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}
video {
  max-width: 900px;
  width: 100%;
}

.move_box {
  background-image: url(../img/top/move_box.png);
  background-size: cover;
  background-position: center;
  padding: 200px 0;
}
@media (max-width: 750px) {
  .move_box {
    background-image: url(../img/top/sp_move_box.png);
    padding: 100px 20px 50px;
  }
}
.move_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.move_box .inner h2 {
  text-align: center;
}
.move_box .inner .txt {
  line-height: 1.6;
  text-align: center;
  margin-top: 30px;
}
.move_box .inner .move {
  text-align: center;
  margin-top: 30px;
}
.move_box .inner .move iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.houdai {
  background-image: url(../img/top/houdaibk.png);
  background-size: cover;
  padding: 50px 0;
}
@media (max-width: 750px) {
  .houdai {
    background-image: url(../img/top/sp_houdaibk.png);
    padding: 30px 20px;
  }
}
.houdai .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.houdai .inner h2 {
  text-align: center;
}
.houdai .inner .txt {
  text-align: center;
  margin-top: 20px;
}
.houdai .inner ul {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .houdai .inner ul {
    flex-direction: column;
  }
}
.houdai .inner ul li {
  width: 31%;
}
@media (max-width: 750px) {
  .houdai .inner ul li {
    width: 100%;
  }
}

.goukaku {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 750px) {
  .goukaku {
    padding: 50px 0;
  }
}
.goukaku .img_box {
  margin-left: auto;
  text-align: right;
}
.goukaku .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.goukaku .inner .txt_box {
  top: 33%;
  left: 18%;
  min-width: 420px;
  position: absolute;
  background-color: #fff;
  padding: 30px 80px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 750px) {
  .goukaku .inner .txt_box {
    padding: 30px 30px;
    min-width: auto;
  }
}
.goukaku .inner .txt_box .flex {
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .goukaku .inner .txt_box .flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.goukaku .inner .txt_box .flex .btn {
  margin-left: 30px;
}
@media (max-width: 750px) {
  .goukaku .inner .txt_box .flex .btn {
    margin-top: 20px;
    width: 100%;
    text-align: right;
    padding-right: 30px;
  }
  .goukaku .inner .txt_box .flex .btn img {
    width: 40px;
  }
}
@media (max-width: 750px) {
  .goukaku .inner .txt_box {
    padding: 15px;
  }
}
.goukaku .inner .txt_box h2 {
  font-size: 6.5rem;
  color: #e50016;
  font-weight: normal;
}
@media (max-width: 750px) {
  .goukaku .inner .txt_box h2 {
    font-size: 3rem;
  }
}
.goukaku .inner .txt_box .txt {
  line-height: 1.6;
  margin-top: 20px;
  font-weight: normal;
}
@media (max-width: 750px) {
  .goukaku .inner .txt_box .txt {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.goukaku .inner .txt_box .btn {
  text-align: right;
}
@media (max-width: 750px) {
  .goukaku .inner .txt_box .btn img {
    width: 25%;
  }
}

.corse_box {
  padding-top: 100px;
  position: relative;
  background-image: url(../img/top/corse_box_bk.png);
  background-position: top right;
  background-repeat: no-repeat;
}
@media (max-width: 750px) {
  .corse_box {
    padding-top: 30px;
  }
}
.corse_box .center {
  text-align: center;
}
.corse_box .inner {
  max-width: 1200px;
  margin: 0 auto 30px;
  position: relative;
}
@media (max-width: 750px) {
  .corse_box .inner {
    overflow-x: hidden;
    margin: 0 auto -100px;
  }
}
.corse_box .inner .ttl {
  text-align: center;
  position: relative;
  padding-bottom: 0px;
}
.corse_box .inner .sub_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #2d2d2d;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .corse_box .inner .sub_ttl {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
.corse_box .btn {
  position: absolute;
  right: 3%;
  bottom: -15%;
}
.corse_box .btn a {
  display: block;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .corse_box .btn {
    bottom: -35%;
  }
}

.feture_box {
  position: relative;
}
@media (max-width: 750px) {
  .feture_box {
    margin-top: 50px;
  }
}
.feture_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feture_box .inner .txt_box {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-30%);
  background-color: #fff;
  padding: 30px 150px;
}
@media (max-width: 750px) {
  .feture_box .inner .txt_box {
    padding: 15px;
  }
}
.feture_box .inner .txt_box h2 {
  color: #005bac;
  font-weight: normal;
}
.feture_box .inner .txt_box h2 span {
  font-size: 3.6rem;
}
.feture_box .inner .txt_box .txt {
  margin: 20px 0;
  font-weight: normal;
}
@media (max-width: 750px) {
  .feture_box .inner .txt_box .txt {
    margin: 10px 0;
  }
}
.feture_box .inner .txt_box .btn {
  text-align: right;
}
@media (max-width: 750px) {
  .feture_box .inner .txt_box .btn img {
    width: 25%;
  }
}

.messegebox .inner {
  max-width: 1400px;
  margin: 0 auto;
  background-image: url(../img/top/messegebk.png);
  background-size: cover;
  background-position: right;
  padding: 50px;
}
@media (max-width: 750px) {
  .messegebox .inner {
    background-image: url(../img/top/sp_messegebk.png);
    max-width: 92%;
    margin: 0 auto;
    padding: 30px 20px;
    background-position: right top;
  }
}
.messegebox .inner .flex_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .messegebox .inner .flex_box {
    flex-direction: column;
  }
}
.messegebox .inner .flex_box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .messegebox .inner .flex_box h2 {
    font-size: 2rem;
  }
}
.messegebox .inner .flex_box .txt {
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  .messegebox .inner .flex_box .txt {
    font-size: 1.2rem;
  }
}
.messegebox .inner .flex_box .txt2 {
  text-align: right;
}
@media (max-width: 750px) {
  .messegebox .inner .flex_box .txt2 {
    font-size: 1.2rem;
  }
}
.messegebox .inner .flex_box .btn {
  margin-top: 20px;
  text-align: right;
}
.messegebox .inner .flex_box .left_box {
  width: 40%;
}
@media (max-width: 750px) {
  .messegebox .inner .flex_box .left_box {
    width: 100%;
  }
}
.messegebox .inner .flex_box .right_box {
  width: 60%;
  padding-right: 6%;
  line-height: 2;
}
@media (max-width: 750px) {
  .messegebox .inner .flex_box .right_box {
    width: 100%;
  }
}

.flow_box {
  background-image: url(../img/top/flowbk.png);
  background-position: top;
  padding: 100px 0;
}
.flow_box .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 750px) {
  .flow_box .inner {
    overflow-x: hidden;
  }
}
.flow_box .inner .ttl {
  text-align: center;
  position: relative;
  padding-bottom: 0px;
}
.flow_box .inner .sub_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #2d2d2d;
  margin-top: 10px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .flow_box .inner .sub_ttl {
    margin-bottom: 30px;
    margin-top: -60px;
    font-size: 1.4rem;
  }
}
.flow_box .inner .list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .flow_box .inner .list {
    flex-direction: column;
    padding: 0 20px;
  }
}
.flow_box .inner .list li {
  position: relative;
}
@media (max-width: 750px) {
  .flow_box .inner .list li {
    text-align: center;
    margin-bottom: 30px;
  }
}
.flow_box .inner .list li::after {
  content: "";
  display: block;
  width: 20px;
  height: 30px;
  background-image: url(../img/top/arrow.png);
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  .flow_box .inner .list li::after {
    background-image: url(../img/top/sp_arrow.png);
    top: auto;
    bottom: -10%;
    transform: translateY(0%);
    transform: translateX(-50%);
    background-size: cover;
    width: 40px;
    height: 14px;
    z-index: 2;
    left: 50%;
  }
}
.flow_box .inner .list li:last-child::after {
  display: none;
}
.flow_box .inner .btn {
  margin-top: 50px;
  text-align: center;
}

.top_box07 {
  padding: 100px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  .top_box07 {
    padding: 0px 0 0;
    margin-top: 20px;
  }
}
.top_box07::before {
  content: "";
  display: block;
  width: 90%;
  height: 65%;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 750px) {
  .top_box07::before {
    bottom: auto;
    top: 0;
    width: 100%;
    height: 53%;
  }
}
.top_box07 .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.top_box07 .inner .flex_box {
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_box07 .inner .flex_box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top_box07 .inner .flex_box .txt_box {
  padding-top: 120px;
}
@media (max-width: 750px) {
  .top_box07 .inner .flex_box .txt_box {
    padding-top: 0px;
    margin-bottom: 20px;
  }
}
.top_box07 .inner .flex_box h3 {
  font-size: 3rem;
}
@media (max-width: 750px) {
  .top_box07 .inner .flex_box h3 {
    font-size: 2rem;
  }
}
.top_box07 .inner .flex_box .txt {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .top_box07 .inner .flex_box .txt {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.footer_contact_box {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .footer_contact_box {
    margin-top: 30px;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer_contact_box .inner {
  max-width: 1000px;
  margin: 0 auto;
  background-image: url(../img/common/contact_bk.png);
  padding: 30px;
}
.footer_contact_box .inner .flex_box {
  display: flex;
  margin-top: 50px;
  justify-content: center;
}
@media (max-width: 750px) {
  .footer_contact_box .inner .flex_box {
    flex-direction: column;
    margin-top: 20px;
  }
}
.footer_contact_box .inner .flex_box .txt01 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.footer_contact_box .inner .flex_box .right_box {
  margin-left: 30px;
}
@media (max-width: 750px) {
  .footer_contact_box .inner .flex_box .right_box {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.footer_contact_box .inner .flex_box .right_box a {
  transition: opacity 1s ease;
  opacity: 1;
}
.footer_contact_box .inner .flex_box .right_box a:hover {
  opacity: 0.6;
}
.footer_contact_box .inner .flex_box .left_box .btn {
  text-align: center;
}
.footer_contact_box .inner .flex_box .left_box .btn a {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  transition: background-color 1s ease, color 1s ease;
}
@media (max-width: 750px) {
  .footer_contact_box .inner .flex_box .left_box .btn a {
    font-size: 1.4rem;
    padding: 20px 10px;
    max-width: 300px;
  }
}
.footer_contact_box .inner .flex_box .left_box .btn a:hover {
  background-color: #fff;
  color: #2d2d2d;
}
.footer_contact_box .inner .flex_box .left_box .btn a:hover::after {
  background-image: url(../img/common/arrow02.svg);
  opacity: 0.5; /* 透明度を調整して滑らかに変える */
}
.footer_contact_box .inner .flex_box .left_box .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/common/arrow.svg);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 5px;
  transition: opacity 1s ease, background-image 1s ease;
  opacity: 1;
}
.footer_contact_box .inner h2 {
  text-align: center;
}
@media (max-width: 750px) {
  .footer_contact_box .inner h2 img {
    width: 60%;
  }
}

/*=========
accordion
=========*/
@media (max-width: 750px) {
  .accordion_area {
    padding: 0 20px;
  }
}

.accordion_area .accordion_one {
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto 20px;
}

.accordion_area .accordion_one .ac_header {
  background-color: #2d2d2d;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
  color: #fff;
}

.accordion_area .accordion_one .ac_header.open {
  border-radius: 0;
}

.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #fff;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #fff;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: 0.3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}

.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 0rem 2rem 1.5rem 2rem;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}

@media screen and (max-width: 736px) {
  .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 2rem 1.5rem 1rem;
  }
  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 0rem 1.5rem 1.5rem 1.5rem;
  }
}
/*=========
faq
=========*/
.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}

.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q.";
  font-size: 2.3rem;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 20px;
}

@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }
  .p-faq__headinner::before {
    font-size: 14px;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 14px;
  }
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
  padding-top: 20px;
}
.p-faq__bodyinner::before {
  content: "";
  width: 20px;
  height: 37px;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}

.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 20px;
  font-weight: bold;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.p-faq__bodyinner p.p-faq__a-txt span {
  color: #d64b36;
}
.p-faq__bodyinner p.p-faq__a-txt a {
  color: #d64b36;
  border-bottom: 1px solid #d64b36;
  padding-bottom: 3px;
}

@media screen and (max-width: 736px) {
  .p-faq__bodyinner {
    padding-left: 0px;
    padding-top: 10px;
  }
  .p-faq__bodyinner::before {
    font-size: 14px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 11px;
  }
}
.footer_btn02 {
  background-color: #0c0a69;
  text-align: center;
}

#content {
  display: none;
  position: absolute;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 10px;
  background-color: #fff;
  margin-top: -3px;
}
#content ul {
  text-align: left;
  display: flex;
  justify-content: flex-start;
}
#content ul li {
  width: auto;
  text-align: left;
}

.chiyoda_box {
  background-image: url(../img/advantage/bk.png);
  background-position: top center;
}
@media (max-width: 750px) {
  .chiyoda_box {
    background-position: bottom center;
  }
}
.chiyoda_box .top_ttl {
  font-size: 3rem;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .chiyoda_box .top_ttl {
    margin-bottom: 50px;
    margin-top: 30px;
  }
}
.chiyoda_box .top_ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.chiyoda_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.chiyoda_box .inner h2 {
  font-size: 4rem;
  line-height: 2;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .chiyoda_box .inner h2 {
    font-size: 3rem;
  }
}
.chiyoda_box .inner .txt01 {
  line-height: 1.5;
  margin-bottom: 30px;
}
.chiyoda_box .inner .txt01.right {
  text-align: right;
}
.chiyoda_box .inner .felx_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .chiyoda_box .inner .felx_box {
    padding: 0 20px;
    flex-direction: column;
  }
  .chiyoda_box .inner .felx_box.reverse {
    flex-direction: column-reverse;
  }
}
.chiyoda_box .inner .felx_box .txt_box {
  width: 60%;
}
@media (max-width: 750px) {
  .chiyoda_box .inner .felx_box .txt_box {
    width: 100%;
  }
}
.chiyoda_box .inner .felx_box .img_box {
  width: 35%;
}
@media (max-width: 750px) {
  .chiyoda_box .inner .felx_box .img_box {
    width: 100%;
  }
}

.fee_box {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .fee_box {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.fee_box h3 {
  text-align: center;
  background-color: #0c0a69;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
.fee_box h3.green {
  background-color: #28680b;
}
.fee_box h3.red {
  background-color: #840909;
}
.fee_box ul {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  align-items: flex-end;
}
@media (max-width: 750px) {
  .fee_box ul {
    flex-direction: column;
  }
}
.fee_box ul li {
  width: 47%;
  font-size: 2rem;
}
@media (max-width: 750px) {
  .fee_box ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.fee_box ul li dl {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #0c0a69;
  padding-bottom: 10px;
  align-items: flex-end;
}
.fee_box ul li dl dt {
  line-height: 1.6;
}
.fee_box ul li dl dd {
  line-height: 1.6;
}

.vehicle_box {
  position: relative;
  padding-bottom: 100px;
}
.vehicle_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background-image: url(../img/vehicle/bk01.png);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.vehicle_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vehicle_box .inner h2 {
  border-bottom: 2px solid #b3b3b3;
  padding-bottom: 10px;
}
@media (max-width: 750px) {
  .vehicle_box .inner h2 {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.vehicle_box .inner .flex_box {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 0;
}
@media (max-width: 750px) {
  .vehicle_box .inner .flex_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.vehicle_box .inner .flex_box .txt_box {
  width: 60%;
  font-weight: bold;
}
@media (max-width: 750px) {
  .vehicle_box .inner .flex_box .txt_box {
    width: 100%;
  }
}
.vehicle_box .inner .flex_box .img_box {
  width: 35%;
}
@media (max-width: 750px) {
  .vehicle_box .inner .flex_box .img_box {
    width: 100%;
  }
}
.vehicle_box .inner .flex_box h3 {
  font-size: 4rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .vehicle_box .inner .flex_box h3 {
    font-size: 3rem;
  }
}

.vehicle_box02 {
  background-color: rgba(251, 235, 113, 0.2);
}
.vehicle_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vehicle_box02 .inner h2 {
  text-align: center;
}
.vehicle_box02 .inner h2 span {
  background-color: #0c0a69;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
  padding: 10px 50px;
}
.vehicle_box02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .vehicle_box02 .inner .flex_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.vehicle_box02 .inner .flex_box .left_box {
  width: 55%;
}
@media (max-width: 750px) {
  .vehicle_box02 .inner .flex_box .left_box {
    width: 100%;
  }
}
.vehicle_box02 .inner .flex_box .left_box p {
  line-height: 1.8;
  font-size: 2rem;
  font-weight: bold;
}
.vehicle_box02 .inner .flex_box .left_box p span {
  color: #ed1c24;
}
.vehicle_box02 .inner .flex_box .right_box {
  width: 40%;
}
@media (max-width: 750px) {
  .vehicle_box02 .inner .flex_box .right_box {
    width: 100%;
  }
}

.vehicle_box03 {
  background-color: rgba(251, 235, 113, 0.2);
  padding-bottom: 50px;
}
@media (max-width: 750px) {
  .vehicle_box03 {
    padding-top: 30px;
  }
}
.vehicle_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vehicle_box03 .inner h2 {
  text-align: center;
}
.vehicle_box03 .inner h2 span {
  border-bottom: 2px solid #b3b3b3;
}
.vehicle_box03 .inner .img {
  display: block;
  text-align: center;
  margin-top: 50px;
}

.vehicle_box04 {
  padding: 50px 0 0;
}
.vehicle_box04 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vehicle_box04 .inner ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .vehicle_box04 .inner ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.vehicle_box04 .inner ul li {
  width: 45%;
}
@media (max-width: 750px) {
  .vehicle_box04 .inner ul li {
    width: 100%;
  }
}
.vehicle_box04 .inner ul li p {
  min-height: 90px;
  line-height: 2;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .vehicle_box04 .inner ul li p {
    min-height: auto;
  }
}
.vehicle_box04 .inner ul li h2 {
  border-bottom: 2px solid #b3b3b3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 3rem;
}

.clause_box .inner {
  max-width: 1200px;
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  .clause_box .inner {
    padding: 0 20px;
  }
}
.clause_box .inner h2 {
  padding-bottom: 10px;
  border-bottom: 2px solid #b3b3b3;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .clause_box .inner h2 {
    font-size: 2rem;
  }
}
.clause_box .inner .clause_box_txt {
  margin-top: 40px;
}
.clause_box .inner .clause_box_txt h3 {
  font-weight: bold;
  margin-bottom: 5px;
}
.clause_box .inner .clause_box_txt p {
  line-height: 1.6;
}

.reservation_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reservation_box .inner h2 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 50px;
  font-size: 4rem;
}
.reservation_box .inner h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: #b3b3b3;
  margin-top: 20px;
}
.reservation_box .inner .flex_box {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.reservation_box .inner .flex_box .img_box {
  width: 30%;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .img_box {
    width: 100%;
    text-align: center;
  }
}
.reservation_box .inner .flex_box .txt_box {
  width: 60%;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .txt_box {
    width: 100%;
  }
}
.reservation_box .inner .flex_box .txt_box h3 {
  display: inline-block;
  background-color: #0c0a69;
  border-radius: 30px;
  padding: 5px 50px;
  color: #fff;
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .txt_box h3 {
    margin: 0 auto 30px;
    max-width: 200px;
    display: block;
    text-align: center;
  }
}
.reservation_box .inner .flex_box .txt_box .ttl {
  border-bottom: 1px dashed #b3b3b3;
  font-size: 3rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
  font-weight: bold;
}
.reservation_box .inner .flex_box .txt_box .txt {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
.reservation_box .inner .flex_box .txt_box figure {
  margin-bottom: 20px;
}
.reservation_box .inner .arrow {
  margin: 50px 0;
}
@media (max-width: 750px) {
  .reservation_box .inner .arrow {
    padding: 0 20px;
  }
}

.rec_ttl {
  text-align: center;
}
.rec_ttl.mt100 {
  margin-top: 100px;
}
.rec_ttl span {
  border-bottom: 2px solid #b3b3b3;
}

.rec_img {
  max-width: 1000px;
  margin: 100px auto;
  text-align: center;
}
@media (max-width: 750px) {
  .rec_img {
    padding: 0 20px;
  }
}

.recruit_box01 {
  position: relative;
  background-color: rgba(251, 235, 113, 0.2);
  margin: 150px 0;
}
@media (max-width: 750px) {
  .recruit_box01 {
    margin: 100px 0;
  }
}
.recruit_box01.after_no {
  margin: 200px 0 0;
}
.recruit_box01.after_no::after {
  display: none;
}
@media (max-width: 750px) {
  .recruit_box01.after_no {
    margin: 100px 0;
  }
}
.recruit_box01.none {
  background-color: transparent;
}
.recruit_box01.none::before {
  display: none;
}
.recruit_box01.none::after {
  display: none;
}
.recruit_box01::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-image: url(../img/recruit/before.png);
  transform: translateY(-100%);
  background-position: top;
}
@media (max-width: 750px) {
  .recruit_box01::before {
    height: 50px;
    background-image: url(../img/recruit/sp_before.png);
  }
}
.recruit_box01::after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-image: url(../img/recruit/after.png);
  transform: translateY(100%);
  background-position: bottom;
}
@media (max-width: 750px) {
  .recruit_box01::after {
    height: 50px;
    background-image: url(../img/recruit/sp_after.png);
  }
}
.recruit_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .recruit_box01 .inner {
    padding: 0 20px;
  }
}
.recruit_box01 .inner table {
  border-spacing: 0;
  width: 100%;
  margin-top: 50px;
}
.recruit_box01 .inner table th {
  background-color: #eaeaea;
  padding: 20px;
  border: 1px solid #b3b3b3;
  text-align: left;
}
.recruit_box01 .inner table td {
  padding: 20px;
  border: 1px solid #b3b3b3;
  text-align: left;
  background-color: #fff;
}
.recruit_box01 .inner .flex_box01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit_box01 .inner .flex_box01.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.recruit_box01 .inner .flex_box01.start div:nth-of-type(2) {
  margin-left: 50px;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01.start div:nth-of-type(2) {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 {
    flex-direction: column-reverse;
  }
  .recruit_box01 .inner .flex_box01.reverse {
    flex-direction: column;
  }
}
.recruit_box01 .inner .flex_box01 .big_ttl {
  text-align: left;
  font-size: 4.5rem;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .big_ttl {
    font-size: 3rem;
  }
}
.recruit_box01 .inner .flex_box01 .txt_box {
  width: 50%;
  text-align: left;
  line-height: 2;
  margin-top: 30px;
  padding-left: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .txt_box {
    width: 100%;
    padding-left: 0px;
  }
}
.recruit_box01 .inner .flex_box01 .txt_box.border {
  border-right: 2px dashed #b3b3b3;
  padding-right: 20px;
  padding-left: 0;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .txt_box.border {
    border-right: none;
    padding-right: 0px;
  }
}
.recruit_box01 .inner .flex_box01 .left_box {
  width: 48%;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .left_box {
    width: 100%;
  }
}
.recruit_box01 .inner .flex_box01 .left_box.txt_new {
  text-align: left;
}
.recruit_box01 .inner .flex_box01 .left_box.txt_new h3 {
  font-size: 4rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .left_box.txt_new h3 {
    margin-top: 20px;
    font-size: 3rem;
  }
}
.recruit_box01 .inner .flex_box01 .left_box.txt_new .txt01 {
  line-height: 2;
  margin-bottom: 20px;
  font-weight: bold;
}
.recruit_box01 .inner .flex_box01 .left_box.txt_new .txt02 {
  text-align: right;
}
.recruit_box01 .inner .flex_box01 .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .right_box {
    width: 100%;
  }
}
.recruit_box01 .inner .flex_box01 .flex_box02 {
  display: flex;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .flex_box02 {
    width: 100%;
  }
}
.recruit_box01 .inner .flex_box01 .flex_box02 .name_box {
  text-align: left;
  margin-left: 10px;
  font-feature-settings: "palt";
}
.recruit_box01 .inner .flex_box01 .flex_box02 .name_box .ttl01 {
  font-weight: bold;
  margin-bottom: 20px;
}
.recruit_box01 .inner .flex_box01 .flex_box02 .name_box .txt01 {
  line-height: 2;
}

.fix_btn {
  position: fixed;
  bottom: 5%;
  right: 20px;
  z-index: 10;
  text-align: right;
  display: flex;
}
.fix_btn .txt {
  padding-right: 5px;
}
@media (max-width: 750px) {
  .fix_btn {
    top: auto;
    bottom: 10%;
    width: 20%;
  }
}

.sec_btn {
  display: flex;
  padding: 50px 0;
  justify-content: center;
}
@media (max-width: 750px) {
  .sec_btn {
    flex-direction: column;
    padding: 30px 20px;
  }
}
.sec_btn p:nth-child(2) {
  margin-left: 30px;
}
@media (max-width: 750px) {
  .sec_btn p:nth-child(2) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.achievement {
  background-color: #f0f0f0;
  padding: 100px 0 0;
}
.achievement .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.achievement .inner .achievement_box01 {
  background-color: #fff;
  padding: 50px 100px;
}
@media (max-width: 750px) {
  .achievement .inner .achievement_box01 {
    padding: 30px 20px;
    max-width: 92%;
    margin: 0 auto;
  }
}
.achievement .inner .achievement_box01 h2 {
  background-color: #ff8c2e;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 750px) {
  .achievement .inner .achievement_box01 h2 {
    padding: 10px 0;
  }
}
.achievement .inner .achievement_box01 .txt {
  margin-top: 40px;
  font-size: 1.8rem;
}
@media (max-width: 750px) {
  .achievement .inner .achievement_box01 .txt {
    margin-top: 20px;
  }
}
.achievement .inner .achievement_box02 {
  background-color: #fff;
  padding: 50px 100px;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .achievement .inner .achievement_box02 {
    padding: 30px 20px;
    max-width: 92%;
    margin: 50px auto 0;
  }
}
.achievement .inner .achievement_box02 h2 {
  background-color: #005bac;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 750px) {
  .achievement .inner .achievement_box02 h2 {
    padding: 10px 0;
  }
}
.achievement .inner .achievement_box02 .flex_box {
  display: flex;
  justify-content: space-around;
}
.achievement .inner .achievement_box02 .txt {
  margin-top: 40px;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .achievement .inner .achievement_box02 .txt {
    margin-top: 20px;
    font-size: 1rem;
  }
}
.achievement .inner .achievement_box02 .txt02 {
  margin-left: 50px;
  margin-top: 40px;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .achievement .inner .achievement_box02 .txt02 {
    margin-top: 20px;
    font-size: 1rem;
    margin-left: 20px;
  }
}

.course {
  background-color: #f0f0f0;
  padding: 100px 0 0;
}
@media (max-width: 750px) {
  .course {
    padding: 50px 0 0;
  }
}
.course .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.course .inner .imgbox {
  text-align: center;
}
.course .inner .sub_ttl01 {
  text-align: center;
  line-height: 1.4;
  margin-top: 100px;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .course .inner .sub_ttl01 {
    font-size: 3rem;
    margin-top: 50px;
  }
}
.course .inner .sub_ttl01::after {
  content: url(../img/course/line.png);
  display: block;
  margin-top: -10px;
}
.course .inner .course_box01 {
  background-color: #fff;
  padding: 50px 100px;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .course .inner .course_box01 {
    padding: 30px 20px;
    max-width: 90%;
    margin: 30px auto 0;
  }
}
.course .inner .course_box01 .course_ttl01 {
  margin-top: 50px;
  text-align: center;
  color: #005bac;
  font-size: 4rem;
}
.course .inner .course_box01 .course_ttl01 span {
  font-size: 2rem;
}
.course .inner .course_box01 .course_day {
  border-bottom: 1px solid #005bac;
  text-align: right;
}
.course .inner .course_box01 .course_price {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .course_price {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .course .inner .course_box01 .course_price img {
    min-width: 500px;
  }
}
.course .inner .course_box01 .course_txt {
  margin-top: 10px;
  font-size: 1.4rem;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .course_txt {
    font-size: 1.2rem;
    min-width: 500px;
  }
}
.course .inner .course_box01 .tokubetu {
  text-align: center;
  border: 1px solid #ff8c2e;
  border-radius: 5px;
  color: #005bac;
  padding: 5px 0;
  margin-bottom: 20px;
}
.course .inner .course_box01 .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box {
    flex-direction: column;
  }
}
.course .inner .course_box01 .flex_box .ttl {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box .ttl {
    font-size: 2rem;
    padding: 10px 0;
  }
}
.course .inner .course_box01 .flex_box .txt {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.6rem;
}
.course .inner .course_box01 .flex_box .txt.mb30 {
  margin-bottom: 50px;
}
.course .inner .course_box01 .flex_box .txt.border {
  border-bottom: 1px solid #005bac;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box .txt {
    font-size: 1.4rem;
  }
}
.course .inner .course_box01 .flex_box .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.course .inner .course_box01 .flex_box .list li {
  width: 48%;
  border: 1px solid #ff8c2e;
  color: #005bac;
  padding: 5px;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 5px;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box .list li {
    font-size: 1.2rem;
  }
}
.course .inner .course_box01 .flex_box .txt03 {
  padding: 0 30px 30px;
  font-size: 1.4rem;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box .txt03 {
    font-size: 1.2rem;
  }
}
.course .inner .course_box01 .flex_box .list_box02 {
  border: 1px solid #ff8c2e;
  border-radius: 5px;
}
.course .inner .course_box01 .flex_box .list_box02.minheight {
  min-height: 154px;
}
.course .inner .course_box01 .flex_box .list_box02 h3 {
  color: #fff;
  text-align: center;
  background-color: #005bac;
  border: 1px solid #ff8c2e;
  border-radius: 10px;
  max-width: 63%;
  margin: -15px auto 0px;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box .list_box02 h3 {
    max-width: 90%;
    font-size: 1.6rem;
  }
}
.course .inner .course_box01 .flex_box .list_box02 ol {
  padding: 10px 0px;
  max-width: 84%;
  margin: 0 auto;
}
.course .inner .course_box01 .flex_box .list_box02 ol.flex {
  display: flex;
  flex-wrap: wrap;
}
.course .inner .course_box01 .flex_box .list_box02 ol.flex li {
  width: 50%;
}
.course .inner .course_box01 .flex_box .list_box02 ol li {
  color: #005bac;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.course .inner .course_box01 .flex_box .txt_box {
  border-top: 1px solid #005bac;
  margin-top: 30px;
  padding-top: 20px;
}
.course .inner .course_box01 .flex_box .txt_box.mt74 {
  margin-top: 74px;
}
.course .inner .course_box01 .flex_box .txt_box h3 {
  text-align: center;
  font-weight: bold;
  color: #005bac;
  font-size: 2rem;
}
.course .inner .course_box01 .flex_box .txt_box .list02 {
  text-align: center;
  margin-top: 20px;
}
.course .inner .course_box01 .flex_box .left_box {
  width: 48%;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box .left_box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.course .inner .course_box01 .flex_box .left_box .ttl {
  background-color: #ff8c2e;
}
.course .inner .course_box01 .flex_box .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .course .inner .course_box01 .flex_box .right_box {
    width: 100%;
  }
}
.course .inner .course_box01 .flex_box .right_box .ttl {
  background-color: #005bac;
}

.feature_box {
  padding: 100px 0;
  position: relative;
  background-color: #f0f0f0;
}
@media (max-width: 750px) {
  .feature_box {
    padding: 50px 0;
  }
}
.feature_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  background-color: #f0f0f0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.feature_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature_box .inner .main_ttl {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .feature_box .inner .main_ttl {
    font-size: 2rem;
  }
}
.feature_box .inner .main_ttl::after {
  content: url(../img/feature/line.png);
  display: block;
  margin-top: -20px;
}
@media (max-width: 750px) {
  .feature_box .inner .main_ttl::after {
    margin-top: -10px;
  }
}
.feature_box .inner .feature_txt_box {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .feature_box .inner .feature_txt_box {
    padding: 0 20px;
    flex-direction: column;
  }
}
.feature_box .inner .feature_txt_box .left_box {
  width: 48%;
}
.feature_box .inner .feature_txt_box .left_box.pd30 {
  padding-top: 30px;
}
@media (max-width: 750px) {
  .feature_box .inner .feature_txt_box .left_box {
    width: 100%;
  }
}
.feature_box .inner .feature_txt_box .left_box h2 {
  text-align: left;
}
.feature_box .inner .feature_txt_box .left_box .txt01 {
  font-size: 2rem;
  text-align: left;
  margin-top: 30px;
  line-height: 2;
}
@media (max-width: 750px) {
  .feature_box .inner .feature_txt_box .left_box .txt01 {
    font-size: 1.6;
  }
}
.feature_box .inner .feature_txt_box .left_box .txt01 span {
  color: #e50016;
}
.feature_box .inner .feature_txt_box .left_box .txt02 {
  margin-top: 20px;
  font-size: 2rem;
  text-align: left;
  line-height: 2;
}
@media (max-width: 750px) {
  .feature_box .inner .feature_txt_box .left_box .txt02 {
    font-size: 1.6;
  }
}
.feature_box .inner .feature_txt_box .left_box .txt02 span {
  color: #e50016;
}
.feature_box .inner .feature_txt_box .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .feature_box .inner .feature_txt_box .right_box {
    width: 100%;
  }
}

.feature_box_list {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .feature_box_list {
    flex-wrap: wrap;
    padding: 50px 0 0;
    background-color: #f0f0f0;
  }
}
@media (max-width: 750px) {
  .feature_box_list li:nth-child(1) {
    width: 40%;
    margin: 0 30%;
  }
}
.feature_box_list li:nth-child(2) {
  margin: 0 5%;
}
@media (max-width: 750px) {
  .feature_box_list li:nth-child(2) {
    width: 40%;
  }
}
@media (max-width: 750px) {
  .feature_box_list li:nth-child(3) {
    margin: 0 5%;
    width: 40%;
  }
}

.feature_box02 {
  padding: 100px 0 0px;
  position: relative;
}
@media (max-width: 750px) {
  .feature_box02 {
    background-color: #F0F0EC;
  }
}
.feature_box02::before {
  content: "";
  display: block;
  width: 100%;
  height: 450px;
  background-color: #f0f0f0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.feature_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature_box02 .inner .main_ttl {
  text-align: center;
  font-size: 3rem;
}
.feature_box02 .inner .main_ttl::after {
  content: url(../img/feature/line.png);
  display: block;
  margin-top: -20px;
}
.feature_box02 .inner .feature_txt_box {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .feature_box02 .inner .feature_txt_box {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.feature_box02 .inner .feature_txt_box .left_box {
  width: 48%;
}
.feature_box02 .inner .feature_txt_box .left_box.pt30 {
  padding-top: 30px;
}
@media (max-width: 750px) {
  .feature_box02 .inner .feature_txt_box .left_box {
    width: 100%;
  }
}
.feature_box02 .inner .feature_txt_box .left_box h2 {
  text-align: left;
}
.feature_box02 .inner .feature_txt_box .left_box .txt01 {
  font-size: 2rem;
  text-align: left;
  margin-top: 30px;
  line-height: 2;
}
@media (max-width: 750px) {
  .feature_box02 .inner .feature_txt_box .left_box .txt01 {
    font-size: 1.6rem;
  }
}
.feature_box02 .inner .feature_txt_box .left_box .txt01 span {
  color: #e50016;
}
.feature_box02 .inner .feature_txt_box .left_box .txt02 {
  margin-top: 20px;
  font-size: 2rem;
  text-align: left;
  line-height: 2;
}
@media (max-width: 750px) {
  .feature_box02 .inner .feature_txt_box .left_box .txt02 {
    font-size: 1.6rem;
  }
}
.feature_box02 .inner .feature_txt_box .left_box .txt02 span {
  color: #e50016;
}
.feature_box02 .inner .feature_txt_box .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .feature_box02 .inner .feature_txt_box .right_box {
    width: 100%;
  }
}

.feature_box03 {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 750px) {
  .feature_box03 {
    background-color: #F0F0EC;
  }
}
.feature_box03::before {
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.feature_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature_box03 .inner .main_ttl {
  text-align: center;
  font-size: 3rem;
}
.feature_box03 .inner .main_ttl::after {
  content: url(../img/feature/line.png);
  display: block;
  margin-top: -20px;
}
.feature_box03 .inner .feature_txt_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .feature_box03 .inner .feature_txt_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.feature_box03 .inner .feature_txt_box .left_box {
  width: 48%;
}
.feature_box03 .inner .feature_txt_box .left_box.pt30 {
  padding-top: 30px;
}
@media (max-width: 750px) {
  .feature_box03 .inner .feature_txt_box .left_box {
    width: 100%;
  }
}
.feature_box03 .inner .feature_txt_box .left_box h2 {
  text-align: left;
}
.feature_box03 .inner .feature_txt_box .left_box .txt01 {
  font-size: 2rem;
  text-align: left;
  margin-top: 30px;
  line-height: 2;
}
@media (max-width: 750px) {
  .feature_box03 .inner .feature_txt_box .left_box .txt01 {
    font-size: 1.6rem;
  }
}
.feature_box03 .inner .feature_txt_box .left_box .txt01 span {
  color: #e50016;
}
.feature_box03 .inner .feature_txt_box .left_box .txt02 {
  margin-top: 20px;
  font-size: 2rem;
  text-align: left;
  line-height: 2;
}
.feature_box03 .inner .feature_txt_box .left_box .txt02 span {
  color: #e50016;
}
.feature_box03 .inner .feature_txt_box .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .feature_box03 .inner .feature_txt_box .right_box {
    width: 100%;
  }
}

.flow_box_sec {
  background-color: #f0f0f0;
  padding: 100px 0;
}
.flow_box_sec .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.flow_box_sec .inner .top_ttl {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .top_ttl {
    font-size: 2rem;
  }
}
.flow_box_sec .inner .top_ttl::after {
  content: url(../img/flow/line.png);
  display: block;
  margin-top: -10px;
}
.flow_box_sec .inner .arrow_img {
  text-align: center;
  margin: 50px 0;
}
.flow_box_sec .inner .flow_box_inner {
  background-color: #fff;
  padding: 50px;
  margin-top: 100px;
  position: relative;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner {
    padding: 50px 20px;
  }
}
.flow_box_sec .inner .flow_box_inner .nonimg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .nonimg img {
    width: 60%;
    display: block;
    margin: 0 auto;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .flex_box {
    flex-direction: column;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box .ttl {
  font-size: 3rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .flex_box .ttl {
    font-size: 2rem;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box .txt {
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: normal;
}
.flow_box_sec .inner .flow_box_inner .flex_box .txt span.bk {
  color: #000;
  font-weight: bold;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .flex_box .txt {
    font-size: 1.4rem;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box .txt span {
  color: #e50016;
}
.flow_box_sec .inner .flow_box_inner .flex_box .tel_txt {
  margin-top: 50px;
  text-align: center;
  font-size: 3rem;
  border-bottom: 1px solid #005bac;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .flex_box .tel_txt {
    font-size: 2rem;
    margin-top: 30px;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box .telnote {
  color: #005bac;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .flex_box .telnote {
    text-align: left;
    margin-bottom: 20px;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box .left_box {
  width: 58%;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .flex_box .left_box {
    width: 100%;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box .right_box {
  width: 42%;
  text-align: center;
}
@media (max-width: 750px) {
  .flow_box_sec .inner .flow_box_inner .flex_box .right_box {
    width: 100%;
  }
}
.flow_box_sec .inner .flow_box_inner .flex_box .right_box .btn_list {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.flow_box_sec .inner .flow_box_inner .flex_box .right_box .btn_list li:nth-child(2) {
  margin-left: 5px;
}

.intoroduction_box {
  padding: 100px 0 0;
}
.intoroduction_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.intoroduction_box .inner .ttl {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 30px;
}
.intoroduction_box .inner .ttl::after {
  content: url(../img/intoroduction/line.png);
  display: block;
  margin: -20px auto 0;
}
.intoroduction_box .inner .acc_box {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .intoroduction_box .inner .acc_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.intoroduction_box .inner .acc_box .left_box {
  width: 46%;
}
.intoroduction_box .inner .acc_box .left_box h3 {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: normal;
}
@media (max-width: 750px) {
  .intoroduction_box .inner .acc_box .left_box {
    width: 100%;
  }
}
.intoroduction_box .inner .acc_box .left_box dl {
  padding: 20px 0;
  border-top: 1px solid #005bac;
  display: flex;
}
.intoroduction_box .inner .acc_box .left_box dl:last-of-type {
  border-bottom: 1px solid #005bac;
}
.intoroduction_box .inner .acc_box .left_box dl dt {
  width: 30%;
}
.intoroduction_box .inner .acc_box .left_box dl dd {
  width: 70%;
}
.intoroduction_box .inner .acc_box .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .intoroduction_box .inner .acc_box .right_box {
    width: 100%;
  }
}
.intoroduction_box .inner .acc_box .right_box .map iframe {
  width: 100%;
  height: 200px;
}
.intoroduction_box .inner .acc_box .right_box figure {
  margin: 0;
  padding: 0;
}
.intoroduction_box .inner .acc_box .right_box figure img {
  width: 100%;
}

.news_box {
  padding: 100px 0 100px;
}
.news_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.news_box .inner .ttl {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
}
.news_box .inner .ttl::after {
  content: url(../img/intoroduction/line.png);
  display: block;
  margin: -20px auto 0;
}
.news_box .inner .news_list {
  display: flex;
}
@media (max-width: 750px) {
  .news_box .inner .news_list {
    flex-direction: column;
    padding: 0 20px;
  }
}
.news_box .inner .news_list li {
  width: 31%;
  margin: 0 1%;
}
@media (max-width: 750px) {
  .news_box .inner .news_list li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.news_box .inner .news_list li a {
  color: #000;
}
.news_box .inner .news_list li .day {
  color: #005bac;
  margin: 10px 0;
}
.news_box .inner .news_list li .txt {
  font-size: 2rem;
}

.news_box_dete {
  padding: 100px 0 100px;
}
@media (max-width: 750px) {
  .news_box_dete {
    padding: 30px 20px 30px;
  }
}
.news_box_dete .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.news_box_dete .inner a {
  color: #005bac;
}
.news_box_dete .inner .ttl {
  font-size: 3rem;
  margin-bottom: 30px;
  border-bottom: 1px solid #005bac;
  padding-bottom: 5;
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .news_box_dete .inner .ttl {
    font-size: 2rem;
  }
}
.news_box_dete .inner .day {
  text-align: right;
  color: #005bac;
  margin-top: 10px;
}
.news_box_dete .inner .txt_box {
  line-height: 1.8;
}
.news_box_dete .inner .txt_box p {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.news_box_dete .inner .list {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.news_box_dete .inner .list li {
  font-size: 2rem;
}
.news_box_dete .inner .list li a {
  color: #005bac;
}
.news_box_dete .inner .list li:nth-child(2) {
  margin-left: 100px;
}

.nomal {
  font-weight: normal !important;
}

.pan {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.pan li {
  background-color: #005bac;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 3rem;
  font-family: "Bahnschrift";
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}

.thanks_box01 {
  margin: 100px auto;
}
.thanks_box01 .txt_box {
  text-align: center;
}

.wp-pagenavi {
  text-align: center;
  margin-top: 30px;
}

.wp-pagenavi span.current {
  background-color: #005bac;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 3rem;
  font-family: "Bahnschrift";
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  border: none;
  margin: auto;
}

.image-container {
  overflow: hidden;
  width: 100%;
  height: 100%; /* 画像の高さに合わせて調整 */
  position: relative;
}

.image-wrapper {
  display: flex;
  width: 200%; /* 画像2枚分の幅 */
  -webkit-animation: slide 10s linear infinite;
          animation: slide 35s linear infinite;
}

.image-wrapper img {
  width: 66%; /* 画像2枚分の幅に合わせるため50%に設定 */
}

@-webkit-keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-68%);
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-68%);
  }
}
.advantage_box {
  max-width: 1000px;
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .advantage_box {
    flex-direction: column;
    padding: 0 30px;
    margin: 30px auto 0;
  }
}
@media (max-width: 750px) {
  .advantage_box .txt_box figure {
    text-align: center;
  }
  .advantage_box .txt_box figure.icon {
    text-align: center;
    margin-bottom: 20px;
  }
  .advantage_box .txt_box figure.icon img {
    width: 30%;
  }
}
.advantage_box .txt_box h2 {
  font-size: 3rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .advantage_box .txt_box h2 {
    font-size: 2rem;
  }
}
.advantage_box .txt_box .txt {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .advantage_box .txt_box .txt {
    font-size: 1.2rem;
  }
  .advantage_box .txt_box .txt br {
    display: none;
  }
}

.sec_footer_btn {
  max-width: 1000px;
  margin: 200px auto 0;
}
@media (max-width: 750px) {
  .sec_footer_btn {
    margin: 30px auto 0;
    max-width: 76%;
  }
}
.sec_footer_btn ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .sec_footer_btn ul {
    flex-direction: column;
  }
}
.sec_footer_btn ul li {
  width: 48%;
}
@media (max-width: 750px) {
  .sec_footer_btn ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.works_list {
  max-width: 500px;
  margin: 50px auto 0;
  position: relative;
  z-index: 99;
}
@media (max-width: 750px) {
  .works_list {
    margin: 30px auto 0;
  }
}
.works_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .works_list ul {
    padding: 0 20px;
  }
}
.works_list ul li {
  width: 48%;
  text-align: center;
  margin-bottom: 20px;
}
.works_list ul li a {
  display: block;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
  padding: 5px 20px;
  border-radius: 20px;
  transition: background-color 1s ease, color 1s ease;
}
@media (max-width: 750px) {
  .works_list ul li a {
    font-size: 1.2rem;
    padding: 5px 10px;
  }
}
.works_list ul li a:hover {
  background-color: #2d2d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works_list ul li a:hover::after {
  background-image: url(../img/works/arrow02.png);
  opacity: 1; /* 透明度を調整して滑らかに変える */
  line-height: 1;
  margin-left: 5px;
  margin-top: 4px;
}
.works_list ul li a::after {
  content: url(../img/works/arrow.png);
  transition: opacity 1s ease, background-image 1s ease;
  opacity: 1;
}

.sec_works {
  margin-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 750px) {
  .sec_works {
    margin-top: 30px;
    padding-bottom: 0px;
  }
}
.sec_works.pbnon {
  padding-bottom: 0;
}
.sec_works .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sec_works .inner h2 {
  text-align: center;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 750px) {
  .sec_works .inner h2 {
    font-size: 2.3rem;
  }
}
.sec_works .inner h2::after {
  margin-top: 30px;
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  background-color: #2d2d2d;
}
.sec_works .inner .top_case {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.sec_works .inner .top_case li {
  width: 46%;
  margin: 0 1% 30px;
}
.sec_works .inner .top_case li .case_img {
  position: relative;
  transition: opacity 1s ease;
  opacity: 1;
}
.sec_works .inner .top_case li .case_img:hover {
  opacity: 0.6;
}
.sec_works .inner .top_case li .case_img.before_non::before {
  display: none;
}
.sec_works .inner .top_case li .case_img::before {
  content: "";
  display: block;
  position: absolute;
  top: 42%;
  left: 5%;
  background-image: url(../img/top/before_after.svg);
  width: 70px;
  height: 100px;
}
@media (max-width: 750px) {
  .sec_works .inner .top_case li .case_img::before {
    height: 60px;
    width: 70px;
    top: 38%;
  }
}
.sec_works .inner .top_case li .case_img figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.sec_works .inner .top_case li .ttl {
  font-size: 2rem;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b3b3b3;
}
@media (max-width: 750px) {
  .sec_works .inner .top_case li .ttl {
    font-size: 1.4rem;
  }
}
.sec_works .inner .top_case li .txt {
  margin-top: 10px;
}
@media (max-width: 750px) {
  .sec_works .inner .top_case li .txt {
    font-size: 1.2rem;
  }
}
.sec_works .inner .btn {
  margin-top: 50px;
  text-align: center;
}
.sec_works .inner .btn a {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
}
.sec_works .inner .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/common/arrow.svg);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 5px;
}

.sec_works02 {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 750px) {
  .sec_works02 {
    margin-top: 30px;
  }
}
.sec_works02 .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sec_works02 .inner h2 {
  text-align: center;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sec_works02 .inner h2::after {
  margin-top: 30px;
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  background-color: #2d2d2d;
}
.sec_works02 .inner .txt01 {
  margin-top: 100px;
  text-align: center;
}
.sec_works02 .inner .ttl02 {
  text-align: center;
  margin-top: 100px;
}
.sec_works02 .inner .list01 {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 100px;
}
.sec_works02 .inner .list01 li:nth-child(2) {
  margin: 0 30px;
}
.sec_works02 .inner .list02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
}
.sec_works02 .inner .list02 li {
  width: 48%;
  text-align: center;
  margin-bottom: 20px;
}
.sec_works02 .inner h3 {
  font-size: 4rem;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 10px;
  text-align: center;
}

.sec_servise {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 750px) {
  .sec_servise {
    margin-top: 30px;
  }
}
.sec_servise .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sec_servise .inner h2 {
  text-align: center;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 750px) {
  .sec_servise .inner h2 {
    font-size: 2.3rem;
  }
}
.sec_servise .inner h2::after {
  margin-top: 30px;
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  background-color: #2d2d2d;
}
@media (max-width: 750px) {
  .sec_servise .inner h2::after {
    margin-top: 15px;
    height: 4px;
    width: 30px;
  }
}
.sec_servise .inner .list01 {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 750px) {
  .sec_servise .inner .list01 {
    flex-direction: column;
    padding: 0 40px;
    align-items: flex-start;
    margin-top: 30px;
  }
}
.sec_servise .inner .list01 .txt_box {
  padding: 20px;
}
@media (max-width: 750px) {
  .sec_servise .inner .list01 .txt_box {
    padding: 20px 0px;
  }
}
.sec_servise .inner .list01 .txt_box h3 {
  font-size: 4rem;
}
@media (max-width: 750px) {
  .sec_servise .inner .list01 .txt_box h3 {
    font-size: 2.3rem;
  }
}
.sec_servise .inner .list01 .txt_box .txt {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .sec_servise .inner .list01 .txt_box .txt {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
.sec_servise .inner .list02 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .sec_servise .inner .list02 {
    margin-top: 0px;
    padding: 0 40px;
  }
}
.sec_servise .inner .list02 li {
  width: 31%;
  margin: 10px 1%;
  display: flex;
  align-items: center;
  font-size: 2.3rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .sec_servise .inner .list02 li {
    width: 48%;
    font-size: 1.1rem;
  }
}
.sec_servise .inner .list02 li figure {
  margin-right: 10px;
}
@media (max-width: 750px) {
  .sec_servise .inner .list02 li figure {
    width: 20%;
  }
}

.sec_price {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 750px) {
  .sec_price {
    margin-top: 30px;
  }
}
.sec_price .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sec_price .inner h2 {
  text-align: center;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 750px) {
  .sec_price .inner h2 {
    font-size: 3rem;
  }
}
.sec_price .inner h2::after {
  margin-top: 30px;
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  background-color: #2d2d2d;
}
@media (max-width: 750px) {
  .sec_price .inner h2::after {
    margin-top: 20px;
  }
}
.sec_price .inner .list01 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .sec_price .inner .list01 {
    padding: 0 20px;
  }
}
.sec_price .inner .list01 li {
  width: 46%;
  margin: 0 0 30px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 20px;
  align-items: center;
}
@media (max-width: 750px) {
  .sec_price .inner .list01 li {
    width: 100%;
  }
}
.sec_price .inner .list01 li .ttl {
  font-size: 2rem;
}
@media (max-width: 750px) {
  .sec_price .inner .list01 li .ttl {
    font-size: 1.4rem;
  }
}
.sec_price .inner .list01 li .price {
  color: #d64b36;
  font-size: 2.4rem;
}
@media (max-width: 750px) {
  .sec_price .inner .list01 li .price {
    font-size: 1.4rem;
  }
}
.sec_price .inner .list01 li.right_box {
  margin-left: 8%;
}
@media (max-width: 750px) {
  .sec_price .inner .list01 li.right_box {
    margin-left: 0;
  }
}

.sec_company {
  max-width: 800px;
  margin: 50px auto 0;
}
.sec_company dl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .sec_company dl {
    padding: 0 30px;
  }
}
.sec_company dl dt {
  width: 30%;
  padding-bottom: 30px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 30px;
  font-size: 2rem;
}
@media (max-width: 750px) {
  .sec_company dl dt {
    padding-bottom: 10px;
    font-size: 1.2rem;
  }
}
.sec_company dl dd {
  font-size: 2rem;
  width: 70%;
  padding-bottom: 30px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .sec_company dl dd {
    padding-bottom: 10px;
    font-size: 1.2rem;
  }
}

#contant01,
#contant02,
#contant03,
#contant04 {
  margin-top: -50px;
  padding-top: 50px;
}/*# sourceMappingURL=style.css.map */