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

a {
  cursor: pointer !important;
}

body {
  color: #000;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  background-color: #fff;
  font-weight: bold;
}
@media (max-width: 750px) {
  body {
    padding-top: 68px;
  }
}

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

main {
  overflow-x: hidden;
}

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

.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: 90px 0 50px;
}
nav.globalMenuSp.active ul li {
  width: 100%;
  text-align: left;
}
nav.globalMenuSp.active ul li a {
  display: block;
  background-color: #fff;
  display: block !important;
  position: relative;
  padding: 10px 0 10px 10px;
  font-size: 2rem;
  border-bottom: 1px solid #8c8c8c;
  color: #0c0a69;
}
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 {
  width: 100%;
  z-index: 9999;
}
@media (max-width: 750px) {
  .pc_header {
    position: initial;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  }
}
.pc_header .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pc_header .inner div:nth-of-type(2) a {
  margin-top: 10px;
  width: 80%;
  display: block;
}
.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 40px;
  border-radius: 50px;
  background-color: #fff;
}
@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: 13px 0;
  }
  .pc_header .inner .top_box .logo {
    padding: 0 10px 10px 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;
}
.pc_header .inner nav {
  margin-left: auto;
}
.pc_header .inner nav ul {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.pc_header .inner nav ul li {
  margin-left: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #0c0a69;
}
.pc_header .inner nav ul li a {
  color: #0c0a69;
}

.mv {
  text-align: center;
  position: relative;
  z-index: 3;
  padding-top: 30px;
}
.mv .btn {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 100;
}
@media (max-width: 750px) {
  .mv .btn {
    width: 48%;
    bottom: 0%;
  }
}
.mv .slick-next {
  right: 0;
}
.mv .slick-slide img {
  margin: 0 auto;
}
.mv .pore {
  position: relative;
}
@media (max-width: 750px) {
  .mv {
    padding-top: 10px;
  }
}
.mv .poji_btn {
  position: absolute;
}
@media (max-width: 750px) {
  .mv .poji_btn {
    bottom: 10%;
    right: 0;
    width: 70%;
  }
}

.top_box01 {
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 750px) {
  .top_box01 {
    overflow: hidden;
  }
}
.top_box01 .inner {
  max-width: 1200px;
  margin: 50px auto 0;
  position: relative;
}
.top_box01 .inner::before {
  content: "";
  background-image: url(../img/top/txt01.png);
  background-size: cover;
  width: 100%;
  height: 430px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-20%, -60%);
}
@media (max-width: 750px) {
  .top_box01 .inner::before {
    width: 230px;
    height: 150px;
    right: 0;
    top: -2%;
    z-index: -2;
    background-size: contain;
    transform: translate(0%, -44%);
  }
}
.top_box01 .inner .flex_ttl {
  display: flex;
}
.top_box01 .inner .flex_ttl h2 {
  color: #0c0a69;
  width: 40%;
}
.top_box01 .inner .flex_ttl h2 .ttl01 {
  font-size: 6rem;
}
.top_box01 .inner .flex_ttl h2 .ttl02 {
  display: block;
  font-size: 3rem;
  margin-top: 20px;
}
.top_box01 .inner .flex_ttl .ttlbox02 h3 {
  color: #0c0a69;
  font-size: 4rem;
  letter-spacing: 0.2em;
}
.top_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_box01 .inner .flex_box {
    flex-direction: column;
  }
}
.top_box01 .inner .flex_box::after {
  content: "";
  background-image: url(../img/top/txt01_2.png);
  background-size: cover;
  width: 100%;
  height: 670px;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 20%);
}
@media (max-width: 750px) {
  .top_box01 .inner .flex_box::after {
    transform: translate(50%, 20%);
  }
}
@media (max-width: 750px) {
  .top_box01 .inner .flex_box {
    padding: 0 20px;
    flex-direction: column;
  }
}
.top_box01 .inner .left_box {
  width: 50%;
}
@media (max-width: 750px) {
  .top_box01 .inner .left_box {
    width: 100%;
  }
}
.top_box01 .inner .left_box h2 {
  font-size: 5.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 20px;
  color: #0c0a69;
}
@media (max-width: 750px) {
  .top_box01 .inner .left_box h2 {
    font-size: 3rem;
    margin-top: 10px;
  }
}
.top_box01 .inner .left_box p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box01 .inner .left_box p {
    margin-top: 10px;
  }
  .top_box01 .inner .left_box p a {
    width: 60%;
    display: block;
    margin: 0 auto;
  }
}
.top_box01 .inner .right_box {
  width: 48%;
  padding-top: 100px;
  position: relative;
  z-index: 6;
}
.top_box01 .inner .right_box iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  aspect-ratio: 16/9;
}
@media (max-width: 750px) {
  .top_box01 .inner .right_box {
    width: 100%;
    padding-top: 30px;
  }
}
.top_box01 .inner .box01_list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box01 .inner .box01_list {
    flex-wrap: wrap;
  }
}
@media (max-width: 750px) {
  .top_box01 .inner .box01_list li {
    width: 33%;
  }
  .top_box01 .inner .box01_list li:nth-child(1) {
    margin: 0 30% 20px;
  }
}
.top_box01 .inner .box01_list li:nth-child(2) {
  margin: 0 50px;
}
@media (max-width: 750px) {
  .top_box01 .inner .box01_list li:nth-child(2) {
    margin: 0 50px 0 0;
  }
}
.top_box01 .inner .btn {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .top_box01 .inner .btn {
    padding: 0 30px;
  }
}

.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;
    padding-top: 0;
  }
}
.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;
    top: 12%;
  }
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_box {
    padding: 0px 20px 50px;
    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.1rem;
  }
}
.top_box01-2 .inner .left_box .btn {
  max-width: 80%;
  margin: 30px auto 0;
}
.top_box01-2 .inner .right_box {
  width: 48%;
  padding-top: 195px;
}
@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: 8rem;
}
@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 {
  width: 100%;
  padding-left: 5%;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_ttl .ttlbox02 {
    padding-left: 0;
  }
}
.top_box01-2 .inner .flex_ttl .ttlbox02 h3 {
  font-feature-settings: "palt";
  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;
}
@media (max-width: 750px) {
  .top_box01-2 .inner .flex_ttl .ttlbox02 .txt01 {
    font-size: 1.2rem;
  }
}
.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: 80%;
  }
  .top_box01-2 .inner .box01_list li:nth-child(1) {
    margin: 0 10% 20px;
  }
  .top_box01-2 .inner .box01_list li:nth-child(3) {
    margin: 0 10% 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 10% 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;
    margin-top: 20px;
    max-width: 70%;
    margin: 20px auto 0;
  }
}

.top_news {
  margin-top: 50px;
}
.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;
}
@media (max-width: 750px) {
  .top_voice .slick-initialized .slick-slide {
    padding: 0 50px;
  }
  .top_voice .slick-initialized .slick-slide figure img {
    display: block;
    margin: 0 auto;
  }
}
.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;
}
@media (max-width: 750px) {
  .top_voice::before {
    width: 200px;
    height: 140px;
    background-size: cover;
  }
}
.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: none;
    height: 1000px;
    bottom: 400px;
  }
}
.top_voice .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top_voice .inner h2 {
  text-align: center;
  color: #0c0a69;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .top_voice .inner h2 {
    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: 60%;
    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;
}
@media (max-width: 750px) {
  .top_voice .inner .btn {
    max-width: 70%;
    margin: 20px auto 0;
  }
}

.sec_voice {
  padding: 50px 0 0px;
  position: relative;
  background-image: url(../img/voice/bk.png);
  background-size: cover;
}
.sec_voice .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec_voice .inner .voice_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .sec_voice .inner .voice_flex {
    flex-direction: column;
    padding: 0 20px;
    display: block;
  }
}
.sec_voice .inner .voice_flex li {
  width: 31%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  margin-bottom: 200px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 750px) {
  .sec_voice .inner .voice_flex li {
    width: 100%;
  }
}
.sec_voice .inner .voice_flex li .poji {
  position: absolute;
  top: 0;
  width: 80%;
  background-color: #ffdf22;
  padding: 30px;
  font-size: 2rem;
  border-radius: 10px;
  left: 50%;
  transform: translate(-50%, -98%);
  text-align: center;
}
@media (max-width: 750px) {
  .sec_voice .inner .voice_flex li .poji {
    position: initial;
    transform: translate(0%, 0%);
  }
}
.sec_voice .inner .voice_flex li .poji::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ffdf22;
}
.sec_voice .inner .voice_flex li figure {
  display: block;
  text-align: center;
}
.sec_voice .inner .voice_flex li .txt_box {
  margin-top: 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  line-height: 2;
  min-height: 200px;
}

.top_box02 {
  margin-top: 100px;
}
.top_box02 .inner .ttl {
  text-align: center;
  color: #0d3d01;
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 750px) {
  .top_box02 .inner .ttl {
    font-size: 3rem;
  }
}
.top_box02 .inner .ttl::after {
  content: "";
  width: 86px;
  height: 6px;
  border-radius: 10px;
  background-color: #b3b3b3;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_box02 .inner ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box02 .inner ul {
    flex-direction: column;
  }
}
.top_box02 .inner ul li img {
  width: 100%;
}
.top_box02 .inner ul li:nth-child(1) {
  width: 66.6%;
}
@media (max-width: 750px) {
  .top_box02 .inner ul li:nth-child(1) {
    width: 100%;
  }
}
.top_box02 .inner ul li:nth-child(2) {
  width: 33.4%;
}
@media (max-width: 750px) {
  .top_box02 .inner ul li:nth-child(2) {
    width: 100%;
  }
}

.top_box03 {
  position: relative;
  background-color: rgba(251, 235, 113, 0.2);
}
.top_box03::before {
  content: "";
  display: block;
  background-image: url(../img/top/box03bk01.png);
  background-size: cover;
  width: 30%;
  height: 100%;
  background-position: right;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 750px) {
  .top_box03::before {
    width: 100px;
    height: 150px;
    background-size: cover;
    background-image: url(../img/top/sp_box03bk01.png);
  }
}
.top_box03::after {
  content: "";
  display: block;
  background-image: url(../img/top/box03bk02.png);
  background-size: cover;
  width: 30%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 750px) {
  .top_box03::after {
    width: 90px;
    height: 170px;
    background-size: cover;
    background-image: url(../img/top/sp_box03bk02.png);
  }
}
.top_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  z-index: 20;
}
.top_box03 .inner .ttl {
  text-align: center;
  color: #0c0a69;
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 750px) {
  .top_box03 .inner .ttl {
    font-size: 3rem;
  }
}
.top_box03 .inner .ttl::after {
  content: "";
  width: 86px;
  height: 6px;
  border-radius: 10px;
  background-color: #ffdf22;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_box03 .inner .sub_ttl {
  text-align: center;
  font-size: 3rem;
  color: #afafaf;
  margin-top: 30px;
}
.top_box03 .inner .txt {
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .top_box03 .inner .txt {
    font-size: 1.4rem;
  }
}
.top_box03 .inner .btn01 {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn01 {
    padding: 0 20px;
  }
}
.top_box03 .inner .btn02 {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn02 {
    padding: 0 20px;
  }
}
.top_box03 .inner .btn03 {
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn03 {
    padding: 0 20px;
    margin-top: 30px;
  }
}
.top_box03 .inner .list {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_box03 .inner .list {
    flex-direction: column;
    padding: 0 20px;
  }
}
@media (max-width: 750px) {
  .top_box03 .inner .list li {
    width: 55%;
  }
}
.top_box03 .inner .list li:nth-child(2) {
  margin: 0 30px;
}
@media (max-width: 750px) {
  .top_box03 .inner .list li:nth-child(2) {
    margin: -20px 0 -20px auto;
  }
}

.top_faq {
  padding: 50px 0;
}
.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;
  color: #0c0a69;
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 750px) {
  .top_faq .inner .ttl {
    font-size: 3rem;
  }
}
.top_faq .inner .ttl::after {
  content: "";
  width: 86px;
  height: 6px;
  border-radius: 10px;
  background-color: #ffdf22;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_faq .inner .sub_ttl {
  text-align: center;
  font-size: 3rem;
  color: #afafaf;
  margin-top: 30px;
  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: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .top_faq .inner .btn {
    margin-top: 30px;
    padding: 0 20px;
    max-width: 70%;
    margin: 30px auto 0;
  }
}

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

footer {
  background-color: #0c0a69;
}
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 {
  text-align: center;
  background-color: #0c0a69;
  padding: 50px 0;
}
@media (max-width: 750px) {
  footer .footer_center {
    padding: 50px 0px;
  }
}
footer .footer_center .inner {
  max-width: 500px;
  margin: 0 auto;
}
footer .footer_center h2 {
  font-size: 4rem;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
footer .footer_center .add {
  text-align: center;
  color: #fff;
}
@media (max-width: 750px) {
  footer .footer_center .add {
    font-size: 1.4rem;
  }
}
footer .footer_center .map {
  margin-top: 50px;
}
@media (max-width: 750px) {
  footer .footer_center .map iframe {
    height: 350px;
  }
}
footer .footer_bottom {
  background-color: #0c0a69;
  padding: 30px 0 10px;
  background-image: url(../img/common/footer_bottom_bk.jpg);
  background-size: cover;
  background-position: center bottom;
}
@media (max-width: 750px) {
  footer .footer_bottom {
    background-image: url(../img/common/footer_bottom_bk_sp.png);
  }
}
footer .footer_bottom .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
footer .footer_bottom .inner .left_box p:last-of-type {
  margin-top: 45px;
}
footer .footer_bottom .inner .left_box p:last-of-type a {
  display: block;
}
@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: 30px;
  position: relative;
  z-index: 10;
}
@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;
}
@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;
  cursor: pointer !important;
  position: relative;
  z-index: 10;
  display: block;
}
footer .footer_bottom .inner .right_box .flex_box p a:hover {
  cursor: pointer;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box {
    padding: 0 20px;
  }
}
footer .footer_bottom .inner .mbox {
  margin: 20px 0;
}
footer .copy {
  padding: 10px 0 0;
  margin-top: 100px;
  color: #fff;
  text-align: center;
}
.sec_mv {
  margin: 0px 0;
}
.sec_mv .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec_mv .inner h2 {
  font-size: 6rem;
  color: #0c0a69;
}
@media (max-width: 750px) {
  .sec_mv .inner h2 {
    font-size: 3rem;
  }
}
.sec_mv .inner h2 span {
  font-size: 3rem;
  padding-top: 10px;
  margin-top: 10px;
  color: #b3b3b3;
}
@media (max-width: 750px) {
  .sec_mv .inner h2 span {
    font-size: 2rem;
  }
}

.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 10px;
    font-size: 1.2rem;
  }
}

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

.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%;
  }
}

.footer_contact {
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .footer_contact {
    padding-bottom: 30px;
  }
}
.footer_contact.sec {
  margin-top: 50px;
  margin-bottom: 0;
}
.footer_contact .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 750px) {
  .footer_contact .inner {
    flex-direction: column;
    padding: 0 0px !important;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer_contact .inner .left_box {
  background-color: #ffdf22;
  color: #0c0a69;
  padding: 30px;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .footer_contact .inner .left_box {
    width: 100%;
    padding: 20px 30px;
  }
}
.footer_contact .inner .left_box .txt_box {
  text-align: center;
}
.footer_contact .inner .left_box .txt_box .ttl {
  font-size: 3rem;
}
@media (max-width: 750px) {
  .footer_contact .inner .left_box .txt_box .ttl {
    font-size: 2rem;
  }
}
.footer_contact .inner .left_box .txt_box .txt {
  font-size: 2rem;
  margin-top: 10px;
}
.footer_contact .inner .right_box {
  padding: 30px;
  width: 70%;
  background-color: #fff;
}
@media (max-width: 750px) {
  .footer_contact .inner .right_box {
    width: 100%;
    padding: 40px 30px;
  }
}
.footer_contact .inner .right_box ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 750px) {
  .footer_contact .inner .right_box ul {
    flex-direction: column;
  }
  .footer_contact .inner .right_box ul li {
    width: 100%;
  }
  .footer_contact .inner .right_box ul li img {
    width: 100%;
  }
}

.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;
  background-size: cover;
  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;
  padding-bottom: 10px;
}
.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;
  font-size: 2rem;
}
.company_box01 .inner table th.boeder_none {
  border-bottom: none;
}
@media (max-width: 750px) {
  .company_box01 .inner table th {
    padding: 20px 0;
    width: 30%;
    font-size: 1.2rem;
  }
}
.company_box01 .inner table td {
  padding: 20px;
  border-bottom: 2px solid #b3b3b3;
  font-size: 2rem;
}
.company_box01 .inner table td.boeder_none {
  border-bottom: none;
}
@media (max-width: 750px) {
  .company_box01 .inner table td {
    padding: 20px 0;
    font-size: 1.2rem;
  }
}

@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;
}
.privacypolicy_box .inner .ttl {
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 20px;
  margin-top: 50px;
  line-height: 1.7;
}

.advantage_box01.chiyoda {
  margin-top: 50px;
}
.advantage_box01 .inner {
  max-width: 1200px;
  margin: 0px auto 50px;
  position: relative;
}
@media (max-width: 750px) {
  .advantage_box01 .inner {
    overflow-x: hidden;
    margin: 0px auto 50px;
  }
}
.advantage_box01 .inner .ttl {
  font-size: 4rem;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .ttl {
    font-size: 3rem;
  }
}
.advantage_box01 .inner .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  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;
}
@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;
  padding-top: 50px;
  background-size: 200px 200px;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non01 {
    background-position: right 30px top 0px;
    background-size: 100px 100px;
    padding-top: 20px;
    margin-top: 0px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non02 {
  background-image: url(../img/advantage/icon02.png);
  background-position: right top;
  padding-top: 50px;
  background-size: 200px 200px;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non02 {
    background-position: right 30px top 0px;
    background-size: 100px 100px;
    padding-top: 20px;
    margin-top: 0px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non03 {
  background-image: url(../img/advantage/icon03.png);
  background-position: right top;
  padding-top: 50px;
  background-size: 200px 200px;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non03 {
    background-position: right 30px top 0px;
    background-size: 100px 100px;
    padding-top: 20px;
    margin-top: 0px;
  }
}
.advantage_box01 .inner .flex_box .txt_box h3 {
  text-align: left;
  font-size: 6rem;
}
@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: 2.4rem;
  padding: 0 30px 0 0;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box .txt {
    font-size: 1.4rem;
    padding: 0 0px 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 30px;
  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;
  font-size: 2rem;
}
@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: 1000px;
  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.text_center {
    text-align: center;
  }
}
.contact_box01 .form_box .contact_box03 .name .hissu {
  font-size: 1.6rem;
  background-color: #ed1c24;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  padding: 5px 20px;
  margin-left: 30px;
}
.contact_box01 .form_box .contact_box03 .form_box {
  padding: 20px 0;
}
.contact_box01 .form_box .contact_box03 .form_box.min {
  font-size: 1.2rem;
}
.contact_box01 .form_box .contact_box03 .form_box input {
  padding: 15px;
  background-color: #f0f0f0;
  width: 100%;
  border-radius: 3px;
}
.contact_box01 .form_box .contact_box03 .form_box textarea {
  padding: 10px;
  background-color: #f0f0f0;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .contact_box03 .form_box textarea {
    margin-top: 10px;
  }
}
.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;
}
.contact_box01 .form_box .sub_center input {
  background-color: #0c0a69;
  color: #fff;
  display: inline-block;
  padding: 30px 100px;
  border-radius: 50px;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .sub_center input {
    max-width: 96%;
    text-align: center;
    display: block;
    padding: 30px 0px;
    width: 100%;
  }
}
.contact_box01 .form_box .check_box {
  max-width: 1000px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.contact_box01 .form_box .check_box p {
  font-size: 2rem;
}
@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 {
  width: 75%;
  margin: auto;
}

/*=========
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: #0c0a69;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 30px;
  color: #fff;
}

.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;
  background: #fff;
  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;
}

.open .p-faq__headinner {
  padding-bottom: 0px;
}

.p-faq__headinner::before {
  position: absolute;
  left: 0;
  top: -5px;
  content: "";
  background-image: url(../img/top/faq_f.png);
  width: 20px;
  height: 38px;
  background-size: cover;
}
@media (max-width: 750px) {
  .p-faq__headinner::before {
    width: 16px;
    height: 32px;
  }
}

.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;
  margin-top: 10px;
}
.p-faq__bodyinner::before {
  content: "";
  background-image: url(../img/top/faq_a.png);
  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;
}
.p-faq__bodyinner p.p-faq__a-txt a {
  color: #0c0a69;
  border-bottom: 1px solid #ddd;
}
.p-faq__bodyinner p.p-faq__a-txt a::after {
  content: ">";
}

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

#content {
  display: none;
  position: absolute;
  transform: translateX(-40%);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 5px 5px 20px 5px;
  background-color: #fff;
  margin-top: -3px;
  z-index: 99999;
  border-radius: 10px;
  width: 18%;
  min-width: 350px;
}
#content ul {
  text-align: left;
  display: flex;
  justify-content: flex-start;
}
#content ul li {
  width: auto;
  text-align: left;
  width: 50%;
  margin-left: 10px;
  font-size: 1.8rem;
}
#content ul li a {
  text-align: left;
  display: flex;
  border-bottom: 1px solid #ccc;
}
#content ul li a::after {
  content: ">";
  color: #ccc;
  margin-left: 10px;
}

.chiyoda_box {
  background-image: url(../img/advantage/bk.png);
  background-position: top center;
  background-size: cover;
}
@media (max-width: 750px) {
  .chiyoda_box {
    background-position: bottom center;
  }
}
.chiyoda_box .top_ttl {
  font-size: 4rem;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
.chiyoda_box .top_ttl.mt50 {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .chiyoda_box .top_ttl.mt50 {
    margin-top: 20px;
  }
}
@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: 5rem;
  line-height: 2;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .chiyoda_box .inner h2 {
    font-size: 2.8rem;
  }
}
.chiyoda_box .inner .txt01 {
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 2.1rem;
}
@media (max-width: 750px) {
  .chiyoda_box .inner .txt01 {
    font-size: 1.4rem;
  }
}
.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: 80%;
    margin: 0 auto 20px;
  }
  .chiyoda_box .inner .felx_box .img_box img {
    border-radius: 10px;
  }
}

.fee_box {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .fee_box {
    margin-top: 30px;
    padding: 0 40px;
  }
}
.fee_box h3 {
  text-align: center;
  background-color: #0c0a69;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  padding: 0px 0;
}
@media (max-width: 750px) {
  .fee_box h3 {
    font-size: 1.8rem;
  }
}
.fee_box h3.green {
  background-color: #28680b;
}
.fee_box h3.red {
  background-color: #840909;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .fee_box h3.red {
    font-size: 2rem;
  }
}
.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: 3rem;
}
@media (max-width: 750px) {
  .fee_box ul li {
    width: 100%;
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.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;
}
@media (max-width: 750px) {
  .fee_box ul li dl dt {
    font-size: 1.4rem;
  }
}
.fee_box ul li dl dd {
  line-height: 1.6;
}
@media (max-width: 750px) {
  .fee_box ul li dl dd {
    font-size: 1.4rem;
  }
}

.vehicle_box {
  position: relative;
  padding-bottom: 100px;
}
.vehicle_box iframe {
  border-radius: 10px;
}
@media (max-width: 750px) {
  .vehicle_box iframe {
    width: 100%;
    height: 350px;
    margin-top: 20px;
  }
}
.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;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .vehicle_box .inner h2 {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
  }
}
.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: 6rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .vehicle_box .inner .flex_box h3 {
    font-size: 3rem;
    margin-top: 30px;
  }
}
.vehicle_box .inner .flex_box .txt {
  font-size: 3rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .vehicle_box .inner .flex_box .txt {
    font-size: 1.4rem;
  }
}

.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;
    margin-top: 30px;
  }
}
.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;
}
@media (max-width: 750px) {
  .vehicle_box02 .inner .flex_box .left_box p {
    font-size: 1rem;
  }
}
.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: 70%;
    margin: 0 auto;
  }
}

.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;
}
@media (max-width: 750px) {
  .vehicle_box03 .inner .img {
    overflow-x: scroll;
    display: block;
  }
  .vehicle_box03 .inner .img img {
    width: 600px;
    display: block;
    max-width: 600px;
  }
}

.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;
  flex-direction: column;
}
@media (max-width: 750px) {
  .vehicle_box04 .inner ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.vehicle_box04 .inner ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 750px) {
  .vehicle_box04 .inner ul li {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
.vehicle_box04 .inner ul li.end {
  align-items: flex-end;
}
.vehicle_box04 .inner ul li .left_box {
  width: 53%;
}
@media (max-width: 750px) {
  .vehicle_box04 .inner ul li .left_box {
    width: 100%;
  }
}
.vehicle_box04 .inner ul li .right_box {
  padding-top: 30px;
  width: 45%;
}
@media (max-width: 750px) {
  .vehicle_box04 .inner ul li .right_box {
    padding-top: 0px;
    width: 100%;
    margin-bottom: 10px;
    display: none;
  }
}
@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: 150px;
  height: 5px;
  background-color: #b3b3b3;
  margin-top: 20px;
}
.reservation_box .inner .flex_box {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  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: 40%;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .img_box {
    width: 60%;
    text-align: center;
    margin: 0 auto;
  }
}
.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 100px;
  color: #fff;
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .txt_box h3 {
    margin: 0 auto 30px;
    padding: 5px 0px;
    max-width: 250px;
    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;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .txt_box .ttl {
    font-size: 2rem;
  }
}
.reservation_box .inner .flex_box .txt_box .txt01 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .txt_box .txt01 {
    font-size: 1.5rem;
  }
}
.reservation_box .inner .flex_box .txt_box .txt {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .txt_box .txt {
    font-size: 1.5rem;
  }
}
.reservation_box .inner .flex_box .txt_box .txt a {
  color: #0c0a69;
  border-bottom: 1px solid #0c0a69;
}
.reservation_box .inner .flex_box .txt_box figure {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 750px) {
  .reservation_box .inner .flex_box .txt_box figure {
    padding: 0 30px;
  }
}
.reservation_box .inner .arrow {
  margin: 50px 0;
}
@media (max-width: 750px) {
  .reservation_box .inner .arrow {
    padding: 0 20px;
  }
}

.rec_ttl {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .rec_ttl {
    font-size: 3rem;
  }
}
.rec_ttl.mt100 {
  margin-top: 50px;
}
.rec_ttl span {
  border-bottom: 2px solid #b3b3b3;
  padding-bottom: 10px;
}

.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: 70px 0;
  }
}
.recruit_box01.after_no {
  margin: 100px 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-size: cover;
  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: -50px auto 0;
}
@media (max-width: 750px) {
  .recruit_box01 .inner {
    padding: 0 20px;
  }
}
.recruit_box01 .inner table {
  border-spacing: 0;
  width: 100%;
  margin-top: 50px;
  border-radius: 20px;
}
.recruit_box01 .inner table th {
  background-color: #eaeaea;
  padding: 20px;
  border: 1px solid #b3b3b3;
  text-align: left;
}
.recruit_box01 .inner table th.radius01 {
  border-radius: 10px 0 0 0;
}
.recruit_box01 .inner table th.radius02 {
  border-radius: 0px 0 0 10px;
}
.recruit_box01 .inner table td {
  padding: 20px;
  border: 1px solid #b3b3b3;
  text-align: left;
  background-color: #fff;
}
.recruit_box01 .inner table td.radius01 {
  border-radius: 0px 10px 0 0;
}
.recruit_box01 .inner table td.radius02 {
  border-radius: 0px 0px 10px 0;
}
.recruit_box01 .inner .flex_box01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit_box01 .inner .flex_box01.start02 {
  align-items: flex-start;
}
.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;
    max-width: 97%;
    margin: 0 auto;
  }
  .recruit_box01 .inner .flex_box01.reverse {
    flex-direction: column;
  }
}
.recruit_box01 .inner .flex_box01 .big_ttl {
  text-align: left;
  font-size: 5rem;
}
.recruit_box01 .inner .flex_box01 .big_ttl.min {
  font-size: 4.5rem;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .big_ttl.min {
    font-size: 2.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: 2.4rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .txt_box {
    width: 100%;
    padding-left: 0px;
    font-size: 1.2rem;
  }
}
.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: 2.8rem;
  }
}
.recruit_box01 .inner .flex_box01 .left_box.txt_new .txt01 {
  line-height: 2;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2.1rem;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .left_box.txt_new .txt01 {
    font-size: 1.2rem;
  }
}
.recruit_box01 .inner .flex_box01 .left_box.txt_new .txt02 {
  text-align: right;
  font-size: 2.1rem;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .left_box.txt_new .txt02 {
    font-size: 1.2rem;
  }
}
.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: 20px;
  font-feature-settings: "palt";
  font-size: 2.2rem;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .flex_box01 .flex_box02 .name_box {
    font-size: 1.2rem;
    width: 80%;
  }
}
.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;
  top: 13%;
  right: 0;
  z-index: 10;
  text-align: right;
}
@media (max-width: 750px) {
  .fix_btn {
    display: none;
  }
}
.fix_btn p:nth-child(1) {
  position: relative;
  right: -230px; /* バナーの初期位置を親要素の右外に配置 */
  transition: right 1s; /* アニメーションの時間を2秒に設定 */
}
.fix_btn p:nth-child(1):hover {
  right: 0px; /* マウスオーバー時にバナーが右からスライドイン */
}
.fix_btn p:nth-child(2) {
  position: relative;
  right: -140px; /* バナーの初期位置を親要素の右外に配置 */
  transition: right 1s; /* アニメーションの時間を2秒に設定 */
}
.fix_btn p:nth-child(2) a {
  display: block;
  text-align: left;
}
.fix_btn p:nth-child(2):hover {
  right: 0px; /* マウスオーバー時にバナーが右からスライドイン */
}
.fix_btn p:hover {
  right: -100px; /* マウスオーバー時にバナーが右からスライドイン */
}
@media (max-width: 750px) {
  .fix_btn {
    top: auto;
    bottom: 0;
  }
  .fix_btn p {
    width: 50%;
    margin-left: auto;
  }
  .fix_btn p:nth-child(2) {
    width: 30%;
  }
}

.slick-slider .slick-list iframe {
  width: 80%;
  height: 80%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}

@media (max-width: 750px) {
  .footer_btn02_img {
    max-width: 70%;
    margin: 0 auto 20px;
  }
}

.news_box {
  margin: 100px 0;
}
.news_box .inner {
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
}
.news_box .inner dl {
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding: 20px 0;
}
.news_box .inner dl dt {
  display: flex;
}
.news_box .inner dl dt .day {
  color: #0c0a69;
}

.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;
}

.move {
  max-width: 1000px;
  margin: 50px auto 50px;
}
@media (max-width: 750px) {
  .move {
    padding: 0 20px;
  }
}
.move iframe {
  border-radius: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.fee_newbaan {
  text-align: center;
}

@media (max-width: 750px) {
  video {
    width: 100%;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */