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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #472821;
}

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

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

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

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

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

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

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

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

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

nav.globalMenuSp.active {
  z-index: 2;
  opacity: 1;
  display: flex;
  width: 100%;
}
nav.globalMenuSp.active ul {
  width: 100%;
  padding-top: 50px;
  position: relative;
  z-index: 100;
}
nav.globalMenuSp.active ul li {
  text-align: left;
  position: relative;
}
nav.globalMenuSp.active ul li .dropdown-btn {
  padding: 20px;
  border-bottom: 2px solid #666666;
  position: relative;
}
nav.globalMenuSp.active ul li .dropdown-btn::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/common/nav_list.png);
  width: 10px;
  height: 20px;
  background-size: cover;
  right: 10px;
  top: 40%;
}
nav.globalMenuSp.active ul li a {
  display: block;
  padding: 20px;
  border-bottom: 2px solid #666666;
  width: 100%;
  color: #472821;
  position: relative;
}
nav.globalMenuSp.active ul li a::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/common/nav_list.png);
  width: 10px;
  height: 20px;
  background-size: cover;
  right: 10px;
  top: 40%;
}

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

header {
  background-color: #00b2db;
  padding: 0 0 20px;
}
header .inner .head_top {
  max-width: 1300px;
  margin: 0 auto;
}
header .inner .head_top ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .inner .head_top ul li {
  font-size: 2.6rem;
  margin-right: 20px;
  position: relative;
}
header .inner .head_top ul li:last-child {
  margin-right: 0;
}
header .inner .head_top ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
header .inner .head_top ul li a.arrow::after {
  content: "";
  width: 13px;
  height: 24px;
  background-image: url(../img/common/arrow_right.png);
  background-size: cover;
  display: block;
  margin-left: 10px;
}
header .inner .head_top ul li .img_tel {
  width: 268px;
  height: 41px;
}
header .inner nav {
  background-color: #fff;
}
header .inner nav ul {
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-between;
}
header .inner nav ul li {
  border-left: 1px solid #cccccc;
  position: relative;
}
header .inner nav ul li:last-child {
  border-right: 1px solid #cccccc;
}
header .inner nav ul li p {
  cursor: pointer;
  font-size: 2rem;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  color: #472821;
}
header .inner nav ul li a {
  font-size: 2rem;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  color: #472821;
}

.mv {
  background-color: #00b2db;
}
@media (max-width: 750px) {
  .mv {
    padding-top: 40px;
  }
}

.top_box01 {
  background-color: #00b2db;
  padding: 60px 0;
}
.top_box01 .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.top_box01 .inner .txt_box01 {
  text-align: center;
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.8;
  padding: 40px 220px 30px;
  position: relative;
  margin: 50px 0 0;
}
@media (max-width: 750px) {
  .top_box01 .inner .txt_box01 {
    padding: 0px 0px 30px;
    margin: 20px 0 0;
    font-size: 1.6rem;
  }
}
.top_box01 .inner .txt_box01::before {
  content: "";
  display: block;
  width: 190px;
  height: 100px;
  display: block;
  background-image: url(../img/top/top_box01_bk01.png);
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 750px) {
  .top_box01 .inner .txt_box01::before {
    display: none;
  }
}
.top_box01 .inner .txt_box01::after {
  content: "";
  display: block;
  width: 180px;
  height: 155px;
  display: block;
  background-image: url(../img/top/top_box01_bk02.png);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 750px) {
  .top_box01 .inner .txt_box01::after {
    display: none;
  }
}
.top_box01 .inner h3 {
  text-align: center;
  font-size: 4rem;
  color: #fff16e;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .top_box01 .inner h3 {
    font-size: 2rem;
  }
}

.top_box02 {
  background-color: #f4ecdf;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 750px) {
  .top_box02 {
    padding: 30px 0;
  }
}
.top_box02::before {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  background-image: url(../img/top/top_box02_wapper_bk.png);
  background-position: right;
  position: absolute;
  top: 50%;
  transform: translateY(-30%);
}
@media (max-width: 750px) {
  .top_box02::before {
    display: none;
  }
}
.top_box02 .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}
.top_box02 .inner h2 {
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .top_box02 .inner h2 {
    max-width: 100%;
  }
}
.top_box02 .inner .move {
  background-image: url(../img/top/top_box02_bk.png);
  background-position: top center;
  text-align: center;
  padding-top: 100px;
}
@media (max-width: 750px) {
  .top_box02 .inner .move {
    padding-top: 20px;
  }
}
.top_box02 .inner .move figure img {
  border: 10px solid #fff;
}
.top_box02 .inner .move iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.top_box02 .inner02 {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 100px;
}
.top_box02 .inner02 h2 {
  max-width: 60%;
  margin: 0 auto;
}
.top_box02 .inner02 .top_box02_inner_wapper {
  padding-top: 50px;
  position: relative;
  background-image: url(../img/top/top_box02_wapper_bk.png);
  background-repeat: no-repeat;
  background-position: top center;
}
.top_box02 .inner02 .top_box02_inner {
  background-image: url(../img/top/top_box02_innerbk01.png);
  background-size: cover;
  display: flex;
  padding: 30px;
  justify-content: space-between;
}
.top_box02 .inner02 .top_box02_inner .img_box {
  width: 48%;
}
.top_box02 .inner02 .top_box02_inner .txtbox {
  padding: 20px;
  display: block;
  width: 48%;
}
.top_box02 .inner02 .top_box02_inner .txtbox .txt {
  font-size: 2.6rem;
  color: #fff;
}

.top_box03 {
  background-color: #f4ecdf;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 750px) {
  .top_box03 {
    padding: 30px 0;
  }
}
.top_box03::before {
  content: "";
  display: block;
  width: 100%;
  height: 930px;
  background-image: url(../img/top/top_box03_wapper_bk.png);
  background-size: cover;
  background-position: right;
  position: absolute;
  top: 50%;
  transform: translateY(-20%);
}
.top_box03 .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 100px;
}
@media (max-width: 750px) {
  .top_box03 .inner {
    padding-top: 0px;
  }
}
.top_box03 .inner h2 {
  max-width: 60%;
  margin: 0 auto;
}
.top_box03 .inner .top_box02_inner_wapper {
  padding-top: 80px;
  position: relative;
  background-image: url(../img/top/top_box02_innerbk01bk.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 80%;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box02_inner_wapper {
    padding-top: 24px;
  }
}
.top_box03 .inner .top_box02_inner {
  background-image: url(../img/top/top_box02_innerbk01.png);
  background-size: cover;
  display: flex;
  padding: 30px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box02_inner {
    flex-direction: column;
    background-position: center;
  }
}
.top_box03 .inner .top_box02_inner .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box02_inner .img_box {
    width: 100%;
  }
}
.top_box03 .inner .top_box02_inner .txtbox {
  padding: 20px;
  display: block;
  width: 48%;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box02_inner .txtbox {
    width: 100%;
    padding: 20px 0;
  }
}
.top_box03 .inner .top_box02_inner .txtbox .txt {
  margin-bottom: 50px;
  font-size: 2.6rem;
  color: #fff;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box02_inner .txtbox .txt {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.top_box03 .inner .top_box03_inner_wapper {
  padding-top: 80px;
  position: relative;
  background-image: url(../img/top/top_box02_innerbk02bk.png);
  background-repeat: no-repeat;
  background-position: top left 100px;
  background-size: 10%;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box03_inner_wapper {
    padding-top: 24px;
  }
}
.top_box03 .inner .top_box03_inner {
  background-image: url(../img/top/top_box102_innerbk02.png);
  background-size: cover;
  display: flex;
  padding: 30px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box03_inner {
    flex-direction: column-reverse;
    background-position: center;
  }
}
.top_box03 .inner .top_box03_inner .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box03_inner .img_box {
    width: 100%;
  }
}
.top_box03 .inner .top_box03_inner .txtbox {
  padding: 20px;
  display: block;
  width: 48%;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box03_inner .txtbox {
    width: 100%;
    padding: 20px 0;
  }
}
.top_box03 .inner .top_box03_inner .txtbox .txt {
  margin-bottom: 50px;
  font-size: 2.6rem;
  color: #fff;
}
@media (max-width: 750px) {
  .top_box03 .inner .top_box03_inner .txtbox .txt {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.top_box04 {
  background-color: #f4ecdf;
  padding: 60px 0;
  position: relative;
}
.top_box04 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top_box04 .inner h2 {
  text-align: center;
}
@media (max-width: 750px) {
  .top_box04 .inner h2 {
    max-width: 70%;
    margin: 0 auto;
  }
}
.top_box04 .inner .slick-list {
  padding: 20px 0 !important;
}
.top_box04 .inner .test__container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.top_box04 .inner .test-slick {
  width: 100%;
  margin: 30px auto;
  padding: 30px 0;
}
@media screen and (max-width: 800px) {
  .top_box04 .inner .test-slick {
    margin: 0% auto;
    padding: 0px 0 10px;
  }
}
.top_box04 .inner .test-slick__item {
  margin-right: 5px;
  margin-left: 5px;
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.35);
  color: #472821;
}
@media screen and (max-width: 800px) {
  .top_box04 .inner .test-slick__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.top_box04 .inner .test-slick__item a {
  color: #000;
}
@media (max-width: 750px) {
  .top_box04 .inner .test-slick__item figure {
    width: 30%;
  }
}
.top_box04 .inner .test-slick__item figure img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_box04 .inner .test-slick__item .txt_box {
  width: 65%;
}
.top_box04 .inner .test-slick__item h3 {
  font-weight: bold;
  margin: 10px 0;
}
.top_box04 .inner .test-slick__item img {
  height: auto;
  width: 100%;
}
.top_box04 .inner .slick-prev {
  left: -30px;
}
@media (max-width: 750px) {
  .top_box04 .inner .slick-prev {
    left: 30px;
    bottom: -10px;
    top: auto;
  }
}
@media (max-width: 750px) {
  .top_box04 .inner .slick-next {
    right: 30px;
    bottom: -10px;
    top: auto;
  }
}
.top_box04 .inner .slick-prev:before {
  content: "";
  background-image: url(../img/top/arrow_left.png);
  display: block;
  width: 30px;
  height: 30px;
  background-size: cover;
}
.top_box04 .inner .slick-next:before {
  content: "";
  background-image: url(../img/top/arrow_right.png);
  display: block;
  width: 30px;
  height: 30px;
  background-size: cover;
}

.top_box05 {
  background-color: #f4ecdf;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 750px) {
  .top_box05 {
    padding: 20px 0;
  }
}
.top_box05 h2 {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .top_box05 h2 {
    max-width: 90%;
  }
}
.top_box05 .inner .test-slick02 {
  width: 100%;
  margin: 30px auto;
}
.top_box05 .inner .test-slick__item {
  margin-right: 15px;
  margin-left: 15px;
}
.top_box05 .inner .test-slick__item img {
  height: auto;
  width: 100%;
}
.top_box05 .btn {
  text-align: center;
}
@media (max-width: 750px) {
  .top_box05 .btn {
    max-width: 80%;
    margin: 0 auto;
  }
}

.top_box06 {
  background-color: #f4ecdf;
  padding: 60px 0;
  position: relative;
}
.top_box06::before {
  content: "";
  display: block;
  width: 100%;
  height: 930px;
  background-image: url(../img/top/top_box03_wapper_bk.png);
  background-size: cover;
  background-position: right;
  position: absolute;
  top: 20%;
  transform: translateY(0%);
}
.top_box06 h2 {
  text-align: center;
}
@media (max-width: 750px) {
  .top_box06 h2 {
    width: 94%;
    margin: 0 auto;
  }
}
.top_box06 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
.top_box06 .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0 0;
}
@media (max-width: 750px) {
  .top_box06 .inner ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.top_box06 .inner ul li {
  width: 31%;
  margin: 0 1%;
}
@media (max-width: 750px) {
  .top_box06 .inner ul li {
    width: 100%;
    margin: 0 0 20px;
  }
}
.top_box06 .inner .btn {
  text-align: center;
  margin: 50px 0 0;
}
@media (max-width: 750px) {
  .top_box06 .inner .btn {
    width: 80%;
    margin: 0 auto;
  }
}

.top_box07 {
  background-color: #f4ecdf;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 750px) {
  .top_box07 {
    padding: 30px 0;
  }
}
.top_box07 h2 {
  text-align: center;
}
@media (max-width: 750px) {
  .top_box07 h2 {
    max-width: 90%;
    margin: 0 auto;
  }
}
.top_box07 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
@media (max-width: 750px) {
  .top_box07 .inner {
    padding: 0 20px;
  }
}
.top_box07 .inner .imgbox {
  margin: 50px 0 0;
}
.top_box07 .inner .btn {
  text-align: center;
  margin: 50px 0 0;
}

.top_box08 {
  background-color: #f4ecdf;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 750px) {
  .top_box08 {
    padding: 0px 0;
  }
}
.top_box08 .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 100px;
}
.top_box08 .inner h2 {
  max-width: 60%;
  margin: 0 auto;
}
.top_box08 .inner .top_box02_inner_wapper {
  padding-top: 80px;
  position: relative;
  background-image: url(../img/top/top_box08_innerbk01bk.png);
  background-repeat: no-repeat;
  background-position: top left 100px;
  background-size: 10%;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_box08 .inner .top_box02_inner_wapper {
    margin-top: 0px;
  }
}
.top_box08 .inner .top_box02_inner {
  background-image: url(../img/top/top_box08bk01.png);
  background-size: cover;
  display: flex;
  padding: 30px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_box08 .inner .top_box02_inner {
    flex-direction: column;
  }
}
.top_box08 .inner .top_box02_inner .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .top_box08 .inner .top_box02_inner .img_box {
    width: 100%;
  }
}
.top_box08 .inner .top_box02_inner .txtbox {
  padding: 20px;
  display: block;
  width: 48%;
}
@media (max-width: 750px) {
  .top_box08 .inner .top_box02_inner .txtbox {
    width: 100%;
  }
}
.top_box08 .inner .top_box02_inner .txtbox .txt {
  margin-bottom: 50px;
  font-size: 2.6rem;
  color: #fff;
}
.top_box08 .inner .top_box03_inner_wapper {
  padding-top: 80px;
  position: relative;
  background-image: url(../img/top/top_box08_innerbk02bk.png);
  background-repeat: no-repeat;
  background-position: top right 100px;
  background-size: 10%;
  margin-top: 100px;
}
.top_box08 .inner .top_box03_inner {
  background-image: url(../img/top/top_box102_innerbk02.png);
  background-size: cover;
  display: flex;
  padding: 30px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_box08 .inner .top_box03_inner {
    flex-direction: column;
  }
}
.top_box08 .inner .top_box03_inner .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .top_box08 .inner .top_box03_inner .img_box {
    width: 100%;
  }
}
.top_box08 .inner .top_box03_inner .txtbox {
  padding: 20px;
  display: block;
  width: 48%;
}
@media (max-width: 750px) {
  .top_box08 .inner .top_box03_inner .txtbox {
    width: 100%;
  }
}
.top_box08 .inner .top_box03_inner .txtbox .txt {
  margin-bottom: 50px;
  font-size: 2.6rem;
  color: #fff;
}

.voice_box {
  background-color: #f4ecdf;
  padding: 100px 0;
}
@media (max-width: 750px) {
  .voice_box {
    padding: 30px 0;
  }
}
.voice_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.voice_box .inner h2 {
  text-align: center;
}
@media (max-width: 750px) {
  .voice_box .inner h2 {
    max-width: 80%;
    margin: 0 auto;
  }
}
.voice_box .inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .voice_box .inner ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.voice_box .inner ul li {
  width: 31%;
  background-image: url(../img/top/voice_bk.png);
  background-size: cover;
  padding: 45px 20px 45px;
}
@media (max-width: 750px) {
  .voice_box .inner ul li {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px 15px;
  }
}
.voice_box .inner ul li figure {
  display: block;
  text-align: center;
  margin: 30px 0;
}
.voice_box .inner ul li .txt_box {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 2rem;
}

.faq_box {
  background-color: #f4ecdf;
  padding: 100px 0;
}
@media (max-width: 750px) {
  .faq_box {
    padding: 30px 0;
  }
}
.faq_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq_box .inner h2 {
  text-align: center;
}
.faq_box .inner dl {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}
.faq_box .inner dl dt {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00b2db;
  padding-left: 5px;
  color: #472821;
  font-size: 2rem;
}
.faq_box .inner dl dt figure {
  margin-right: 20px;
  margin-bottom: -3px;
  line-height: 0;
  margin-left: -5px;
  width: 5%;
  display: block;
}
.faq_box .inner dl dt p {
  width: 95%;
}
.faq_box .inner dl dd {
  font-size: 2rem;
  display: flex;
  margin-top: 30px;
  color: #472821;
}
.faq_box .inner dl dd p {
  width: 95%;
}
.faq_box .inner dl dd figure {
  margin-right: 20px;
  width: 5%;
  display: block;
}

.contact_box {
  background-color: #00b2db;
  padding: 0px 0 100px;
  position: relative;
}
.contact_box::before {
  content: "";
  width: 100%;
  height: 5px;
  display: block;
  background-image: url(../img/common/contact_bk.png);
  position: absolute;
  top: -5px;
}
.contact_box .inner {
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto;
}
.contact_box .inner h2 {
  text-align: center;
  color: #fff;
}
.contact_box .inner h2 span {
  display: block;
  position: relative;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .contact_box .inner h2 span {
    font-size: 2.4rem;
  }
}
.contact_box .inner h2 span::after {
  content: "";
  display: block;
  max-width: 400px;
  height: 2px;
  background-color: #fff;
  margin: 10px auto 0;
}
@media (max-width: 750px) {
  .contact_box .inner h2 span::after {
    max-width: 250px;
  }
}
.contact_box .inner .txt {
  margin-top: 20px;
  text-align: center;
  color: #fff;
}
@media (max-width: 750px) {
  .contact_box .inner .txt {
    padding: 0 30px;
  }
}
.contact_box .inner .contant_box {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 30px;
  padding: 30px 50px;
  position: relative;
}
@media (max-width: 750px) {
  .contact_box .inner .contant_box {
    border-radius: 0;
    padding: 20px 0px;
  }
}
.contact_box .inner .contant_box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -100px;
  right: -270px;
  width: 400px;
  height: 370px;
  background-image: url(../img/common/contact_hito.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .contact_box .inner .contant_box::after {
    display: none;
  }
}
.contact_box .inner .contant_box h3 {
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .contact_box .inner .contant_box h3 {
    font-size: 2.4rem;
  }
}
.contact_box .inner .contant_box .btn01 {
  margin: 20px 0;
}
@media (max-width: 750px) {
  .contact_box .inner .contant_box .btn01 {
    padding: 0 20px;
  }
}

.accc_box {
  background-color: #00b2db;
  padding: 0px 0 100px;
  position: relative;
}
@media (max-width: 750px) {
  .accc_box {
    padding: 0px 0 0px;
  }
}
@media (max-width: 750px) {
  .accc_box::before {
    content: "";
    display: block;
    position: absolute;
    top: -41%;
    right: 1%;
    width: 170px;
    height: 170px;
    background-image: url(../img/common/contact_hito.png);
    background-size: cover;
  }
}
.accc_box .inner {
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .accc_box .inner {
    padding: 30px 0 5px;
  }
}
.accc_box .inner h2 {
  text-align: center;
  margin-top: -100px;
}
@media (max-width: 750px) {
  .accc_box .inner h2 {
    max-width: 40%;
    padding-left: 10px;
  }
}
.accc_box .inner .txt {
  text-align: center;
  color: #fff;
}
@media (max-width: 750px) {
  .accc_box .inner .txt {
    text-align: left;
    max-width: 50%;
    padding-left: 10px;
    font-size: 1.4rem;
  }
}
@media (max-width: 750px) {
  .accc_box iframe {
    height: 300px;
    position: relative;
    z-index: 2;
    line-height: 0;
    margin-bottom: -10px;
  }
}

.footer_menu {
  background-color: #00b2db;
  padding: 0px 0 50px;
}
@media (max-width: 750px) {
  .footer_menu {
    display: none;
  }
}
.footer_menu .inner {
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto;
}
.footer_menu .inner h2 {
  background-image: url(../img/common/footer_bottom.png);
  background-position: bottom;
  padding-bottom: 10px;
}
.footer_menu .inner .footer_menu_txt {
  max-width: 700px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
}
.footer_menu .inner .footer_menu_txt ul li {
  margin-top: 10px;
  color: #fff;
}
.footer_menu .inner .footer_menu_txt ul li.ml10 {
  margin-left: 10px;
}
.footer_menu .inner .footer_menu_txt ul li a {
  color: #fff;
}
.footer_menu .inner .footer_menu_txt02 {
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 20px 10px 0;
}
.footer_menu .inner .footer_menu_txt02 ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #fff;
}
.footer_menu .inner .footer_menu_txt02 ul li .ttl {
  background-color: #fff;
  width: 20%;
  text-align: center;
  margin-right: 20px;
  color: #00b2db;
  border-radius: 20px;
}

footer {
  background-color: #fff;
  padding: 50px 0 0;
}
@media (max-width: 750px) {
  footer {
    padding: 30px 0 0;
  }
}
footer .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  footer .inner {
    max-width: 100%;
    padding: 0px 0 0;
  }
}
@media (max-width: 750px) {
  footer .inner p {
    max-width: 80%;
    margin: 0 auto;
  }
}
footer .inner .copy {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  footer .inner .copy {
    max-width: 100%;
    margin-top: 10px;
  }
}
footer .inner .copy small {
  font-size: 1.2rem;
}

.sec_mv {
  background-color: #00b2db;
  position: relative;
  min-height: 165px;
}
@media (max-width: 750px) {
  .sec_mv {
    margin-top: 30px;
    min-height: 100px;
  }
}
.sec_mv::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  display: block;
  width: 100%;
  height: 5px;
  background-image: url(../img/common/sec_mv_bk.png);
}
@media (max-width: 750px) {
  .sec_mv::after {
    width: 100%;
  }
}
.sec_mv.strengths::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/strengths/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.strengths::before {
    background-image: url(../img/strengths/mv_bk_sp.png);
    width: 40%;
    height: 67px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv.business::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/business/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.business::before {
    background-image: url(../img/business/mv_bk_sp.png);
    width: 40%;
    height: 67px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv.fee::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/fee/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.fee::before {
    background-image: url(../img/fee/mv_bk_sp.png);
    width: 40%;
    height: 67px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv.program::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/program/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.program::before {
    background-image: url(../img/program/mv_bk_sp.png);
    width: 40%;
    height: 67px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv.flow::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/flow/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.flow::before {
    background-image: url(../img/flow/mv_bk_sp.png);
    width: 40%;
    height: 67px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv.dayservice .inner h2 {
  font-size: 1.8rem;
}
.sec_mv.dayservice::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/dayservice/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.dayservice::before {
    background-image: url(../img/dayservice/mv_bk_sp.png);
    width: 33%;
    height: 56px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv.contact::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/contact/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.contact::before {
    background-image: url(../img/contact/mv_bk_sp.png);
    width: 40%;
    height: 67px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv.privacy {
  position: relative;
}
@media (max-width: 750px) {
  .sec_mv.privacy .inner h2 {
    font-size: 1.8rem;
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
}
.sec_mv.privacy::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  width: 400px;
  height: 185px;
  background-image: url(../img/privacy/mv_bk.png);
  background-size: cover;
}
@media (max-width: 750px) {
  .sec_mv.privacy::before {
    background-image: url(../img/privacy/mv_bk_sp.png);
    width: 40%;
    height: 67px;
    top: auto;
    bottom: 0;
  }
}
.sec_mv .inner {
  padding: 30px 0;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .sec_mv .inner {
    padding: 20px;
  }
}
.sec_mv .inner h2 {
  color: #fff;
  font-size: 5rem;
}
@media (max-width: 750px) {
  .sec_mv .inner h2 {
    font-size: 3rem;
  }
}
.sec_mv .inner h2 span {
  font-size: 2rem;
  display: block;
}

.strengths_box01 {
  background-color: #f4ecdf;
  padding: 100px 0;
}
@media (max-width: 750px) {
  .strengths_box01 {
    padding: 30px 0;
  }
}
.strengths_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.strengths_box01 .inner .state_list {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 30px auto;
}
@media (max-width: 750px) {
  .strengths_box01 .inner .state_list {
    flex-direction: column;
    padding: 0 40px;
  }
}
.strengths_box01 .inner .state_list li {
  width: 48%;
}
@media (max-width: 750px) {
  .strengths_box01 .inner .state_list li {
    width: 100%;
  }
}
.strengths_box01 .inner .dayservice_list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .strengths_box01 .inner .dayservice_list {
    flex-direction: column;
    padding: 30px 40px;
  }
}
.strengths_box01 .inner .dayservice_list li {
  width: 32.6%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}
@media (max-width: 750px) {
  .strengths_box01 .inner .dayservice_list li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.strengths_box01 .inner .dayservice_list li .txt {
  padding: 0 30px 0;
}
@media (max-width: 750px) {
  .strengths_box01 .inner .dayservice_list li .txt {
    padding: 0 0px 0;
    font-size: 1.6rem;
  }
}
.strengths_box01 .inner h2 {
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .strengths_box01 .inner h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 750px) {
  .strengths_box01 .inner h2 .sp_txt01 {
    margin-top: 20px;
    display: block;
  }
}
.strengths_box01 .inner h2.sub_ttl02 {
  position: relative;
}
.strengths_box01 .inner h2.sub_ttl02 span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strengths_box01 .inner h2.sub_ttl02 span::after {
  margin-top: 20px;
  content: "";
  width: 30%;
  height: 3px;
  display: inline-block;
  background-color: #00b2db;
}
@media (max-width: 750px) {
  .strengths_box01 .inner h2.sub_ttl02 span::after {
    margin-top: 10px;
  }
}
.strengths_box01 .inner .txt {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .strengths_box01 .inner .txt {
    padding: 0 10px;
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.strengths_box01 .inner .img {
  margin: 30px 0 0;
}

.strengths_box02 {
  background-color: #f4ecdf;
  padding: 50px 0;
}
.strengths_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.strengths_box02 .inner h2 {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .strengths_box02 .inner h2 {
    font-size: 2.4rem;
  }
}
.strengths_box02 .inner h2 span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strengths_box02 .inner h2 span::after {
  content: "";
  margin-top: 10px;
  width: 25%;
  height: 3px;
  background-color: #00b2db;
  display: inline-block;
}
.strengths_box02 .strengths_box02_txt {
  background-color: #00b2db;
  margin: 150px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  .strengths_box02 .strengths_box02_txt {
    margin: 100px 0 0;
  }
}
.strengths_box02 .strengths_box02_txt::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  display: block;
  background-image: url(../img/strengths/line.png);
}
.strengths_box02 .strengths_box02_txt::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  display: block;
  background-image: url(../img/strengths/line.png);
}
.strengths_box02 .strengths_box02_txt .inner {
  padding: 50px 0;
  position: relative;
}
.strengths_box02 .strengths_box02_txt .inner.non01::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/strengths/non01.png);
  background-size: cover;
  width: 300px;
  height: 200px;
  display: block;
}
@media (max-width: 750px) {
  .strengths_box02 .strengths_box02_txt .inner.non01::before {
    width: 220px;
    height: 145px;
    bottom: 10px;
    right: 10px;
  }
}
.strengths_box02 .strengths_box02_txt .flex_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .strengths_box02 .strengths_box02_txt .flex_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.strengths_box02 .strengths_box02_txt .flex_box .img_box {
  margin-top: -100px;
  width: 46%;
}
@media (max-width: 750px) {
  .strengths_box02 .strengths_box02_txt .flex_box .img_box {
    width: 100%;
  }
}
.strengths_box02 .strengths_box02_txt .flex_box .txt_box {
  width: 46%;
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .strengths_box02 .strengths_box02_txt .flex_box .txt_box {
    width: 100%;
  }
}
.strengths_box02 .strengths_box02_txt .flex_box .txt_box .ttl {
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .strengths_box02 .strengths_box02_txt .flex_box .txt_box .ttl {
    font-size: 2.4rem;
  }
}
.strengths_box02 .strengths_box02_txt .flex_box .txt_box .txt {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .strengths_box02 .strengths_box02_txt .flex_box .txt_box .txt {
    font-size: 1.6rem;
  }
}

.strengths_box03 {
  background-color: #f4ecdf;
  padding: 50px 0;
}
.strengths_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.strengths_box03 .strengths_box02_txt {
  background-color: #63c64f;
  margin: 150px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  .strengths_box03 .strengths_box02_txt {
    margin: 0px 0 0;
  }
}
.strengths_box03 .strengths_box02_txt::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 8px;
  display: block;
  background-image: url(../img/strengths/line02.png);
}
.strengths_box03 .strengths_box02_txt::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  display: block;
  background-image: url(../img/strengths/line02.png);
}
.strengths_box03 .strengths_box02_txt .inner {
  padding: 50px 0;
  position: relative;
}
.strengths_box03 .strengths_box02_txt .inner.non01::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/strengths/non02.png);
  background-size: cover;
  width: 340px;
  height: 200px;
  display: block;
}
@media (max-width: 750px) {
  .strengths_box03 .strengths_box02_txt .inner.non01::before {
    width: 240px;
    height: 145px;
    bottom: 10px;
    right: 10px;
    left: auto;
  }
}
.strengths_box03 .strengths_box02_txt .flex_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .strengths_box03 .strengths_box02_txt .flex_box {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.strengths_box03 .strengths_box02_txt .flex_box .img_box {
  margin-top: -100px;
  width: 46%;
}
@media (max-width: 750px) {
  .strengths_box03 .strengths_box02_txt .flex_box .img_box {
    width: 100%;
  }
}
.strengths_box03 .strengths_box02_txt .flex_box .txt_box {
  width: 46%;
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .strengths_box03 .strengths_box02_txt .flex_box .txt_box {
    width: 100%;
  }
}
.strengths_box03 .strengths_box02_txt .flex_box .txt_box .ttl {
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .strengths_box03 .strengths_box02_txt .flex_box .txt_box .ttl {
    font-size: 2.4rem;
  }
}
.strengths_box03 .strengths_box02_txt .flex_box .txt_box .txt {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .strengths_box03 .strengths_box02_txt .flex_box .txt_box .txt {
    font-size: 1.6rem;
  }
}

.strengths_box04 {
  background-color: #f4ecdf;
  padding: 50px 0;
}
.strengths_box04 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.strengths_box04 .inner h2 {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .strengths_box04 .inner h2 {
    font-size: 2.4rem;
  }
}
.strengths_box04 .inner h2 span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strengths_box04 .inner h2 span::after {
  content: "";
  margin-top: 10px;
  width: 25%;
  height: 3px;
  background-color: #00b2db;
  display: inline-block;
}
.strengths_box04 .strengths_box02_txt {
  background-color: #ffa300;
  margin: 150px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  .strengths_box04 .strengths_box02_txt {
    margin: 0px 0 0;
  }
}
.strengths_box04 .strengths_box02_txt::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 8px;
  display: block;
  background-image: url(../img/strengths/line02.png);
}
.strengths_box04 .strengths_box02_txt::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  display: block;
  background-image: url(../img/strengths/line02.png);
}
.strengths_box04 .strengths_box02_txt .inner {
  padding: 50px 0;
  position: relative;
}
.strengths_box04 .strengths_box02_txt .inner.non01::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/strengths/non03.png);
  background-size: cover;
  width: 340px;
  height: 200px;
  display: block;
}
@media (max-width: 750px) {
  .strengths_box04 .strengths_box02_txt .inner.non01::before {
    width: 240px;
    height: 145px;
    bottom: 10px;
    right: 10px;
  }
}
.strengths_box04 .strengths_box02_txt .flex_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .strengths_box04 .strengths_box02_txt .flex_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.strengths_box04 .strengths_box02_txt .flex_box .img_box {
  margin-top: -100px;
  width: 46%;
}
@media (max-width: 750px) {
  .strengths_box04 .strengths_box02_txt .flex_box .img_box {
    width: 100%;
  }
}
.strengths_box04 .strengths_box02_txt .flex_box .txt_box {
  width: 46%;
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .strengths_box04 .strengths_box02_txt .flex_box .txt_box {
    width: 100%;
  }
}
.strengths_box04 .strengths_box02_txt .flex_box .txt_box .ttl {
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .strengths_box04 .strengths_box02_txt .flex_box .txt_box .ttl {
    font-size: 2.4rem;
  }
}
.strengths_box04 .strengths_box02_txt .flex_box .txt_box .txt {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .strengths_box04 .strengths_box02_txt .flex_box .txt_box .txt {
    font-size: 1.6rem;
  }
}

.strengths_box05 {
  background-color: #f4ecdf;
  padding: 50px 0;
}
.strengths_box05 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.strengths_box05 .inner h2 {
  text-align: center;
  font-size: 4rem;
}
.strengths_box05 .inner h2 span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strengths_box05 .inner h2 span::after {
  content: "";
  margin-top: 10px;
  width: 25%;
  height: 3px;
  background-color: #00b2db;
  display: inline-block;
}
.strengths_box05 .strengths_box02_txt {
  background-color: #f24c70;
  margin: 150px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  .strengths_box05 .strengths_box02_txt {
    margin: 0px 0 0;
  }
}
.strengths_box05 .strengths_box02_txt::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 8px;
  display: block;
  background-image: url(../img/strengths/line02.png);
}
.strengths_box05 .strengths_box02_txt::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  display: block;
  background-image: url(../img/strengths/line02.png);
}
.strengths_box05 .strengths_box02_txt .inner {
  padding: 50px 0;
  position: relative;
}
.strengths_box05 .strengths_box02_txt .inner.non01::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/strengths/non04.png);
  background-size: cover;
  width: 340px;
  height: 200px;
  display: block;
}
@media (max-width: 750px) {
  .strengths_box05 .strengths_box02_txt .inner.non01::before {
    width: 240px;
    height: 145px;
    bottom: 10px;
    right: 10px;
    left: auto;
  }
}
.strengths_box05 .strengths_box02_txt .flex_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .strengths_box05 .strengths_box02_txt .flex_box {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.strengths_box05 .strengths_box02_txt .flex_box .img_box {
  margin-top: -100px;
  width: 46%;
}
@media (max-width: 750px) {
  .strengths_box05 .strengths_box02_txt .flex_box .img_box {
    width: 100%;
  }
}
.strengths_box05 .strengths_box02_txt .flex_box .txt_box {
  width: 46%;
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .strengths_box05 .strengths_box02_txt .flex_box .txt_box {
    width: 100%;
  }
}
.strengths_box05 .strengths_box02_txt .flex_box .txt_box .ttl {
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .strengths_box05 .strengths_box02_txt .flex_box .txt_box .ttl {
    font-size: 2.4rem;
  }
}
.strengths_box05 .strengths_box02_txt .flex_box .txt_box .txt {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .strengths_box05 .strengths_box02_txt .flex_box .txt_box .txt {
    font-size: 1.6rem;
  }
}

.strengths_box06 {
  background-color: #f4ecdf;
  padding: 50px 0;
}
.strengths_box06 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.strengths_box06 .inner h2 {
  text-align: center;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .strengths_box06 .inner h2 {
    font-size: 2.4rem;
  }
}
.strengths_box06 .inner h2 span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strengths_box06 .inner h2 span::after {
  content: "";
  margin-top: 10px;
  width: 25%;
  height: 3px;
  background-color: #00b2db;
  display: inline-block;
}
.strengths_box06 .strengths_box02_txt {
  background-color: #00b2db;
  margin: 150px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  .strengths_box06 .strengths_box02_txt {
    margin: 0px 0 0;
  }
}
.strengths_box06 .strengths_box02_txt::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  display: block;
  background-image: url(../img/strengths/line.png);
}
.strengths_box06 .strengths_box02_txt::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  display: block;
  background-image: url(../img/strengths/line.png);
}
.strengths_box06 .strengths_box02_txt .inner {
  padding: 50px 0;
  position: relative;
}
.strengths_box06 .strengths_box02_txt .inner.non01::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/strengths/non05.png);
  background-size: cover;
  width: 330px;
  height: 200px;
  display: block;
}
@media (max-width: 750px) {
  .strengths_box06 .strengths_box02_txt .inner.non01::before {
    width: 240px;
    height: 145px;
    bottom: 10px;
    right: 10px;
  }
}
.strengths_box06 .strengths_box02_txt .flex_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .strengths_box06 .strengths_box02_txt .flex_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.strengths_box06 .strengths_box02_txt .flex_box .img_box {
  margin-top: -100px;
  width: 46%;
}
@media (max-width: 750px) {
  .strengths_box06 .strengths_box02_txt .flex_box .img_box {
    width: 100%;
  }
}
.strengths_box06 .strengths_box02_txt .flex_box .txt_box {
  width: 46%;
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .strengths_box06 .strengths_box02_txt .flex_box .txt_box {
    width: 100%;
  }
}
.strengths_box06 .strengths_box02_txt .flex_box .txt_box .ttl {
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .strengths_box06 .strengths_box02_txt .flex_box .txt_box .ttl {
    font-size: 2.4rem;
  }
}
.strengths_box06 .strengths_box02_txt .flex_box .txt_box .txt {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .strengths_box06 .strengths_box02_txt .flex_box .txt_box .txt {
    font-size: 1.6rem;
  }
}

.business_box01 {
  background-color: #f4ecdf;
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .business_box01 {
    padding-bottom: 30px;
  }
}
.business_box01 .inner {
  max-width: 80%;
  margin-left: auto;
  background-image: url(../img/business/bk01.png);
  background-size: cover;
  padding: 10px 100px 10px 20px;
}
@media (max-width: 750px) {
  .business_box01 .inner {
    max-width: 100%;
    padding: 10px 0px 10px 0px;
  }
}
.business_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .business_box01 .inner .flex_box {
    flex-direction: column;
    padding: 20px;
  }
}
.business_box01 .inner .flex_box .img_box {
  width: 46%;
}
@media (max-width: 750px) {
  .business_box01 .inner .flex_box .img_box {
    width: 100%;
  }
}
.business_box01 .inner .flex_box .txt_box {
  width: 46%;
  color: #fff;
}
@media (max-width: 750px) {
  .business_box01 .inner .flex_box .txt_box {
    width: 100%;
  }
}
.business_box01 .inner .flex_box .txt_box h3 {
  font-size: 3rem;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .business_box01 .inner .flex_box .txt_box h3 {
    margin-bottom: 20px;
  }
}
.business_box01 .inner .flex_box .txt_box p {
  font-size: 1.6rem;
}

.business_box02 {
  background-color: #f4ecdf;
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .business_box02 {
    padding-bottom: 30px;
  }
}
.business_box02 .inner {
  max-width: 80%;
  background-image: url(../img/business/bk02.png);
  background-size: cover;
  background-position: right;
  padding: 10px 20px 10px 100px;
}
@media (max-width: 750px) {
  .business_box02 .inner {
    max-width: 100%;
    padding: 10px 0px 10px 0px;
  }
}
.business_box02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .business_box02 .inner .flex_box {
    flex-direction: column-reverse;
    padding: 20px;
  }
}
.business_box02 .inner .flex_box .img_box {
  width: 46%;
}
@media (max-width: 750px) {
  .business_box02 .inner .flex_box .img_box {
    width: 100%;
  }
}
.business_box02 .inner .flex_box .txt_box {
  width: 46%;
  color: #fff;
}
@media (max-width: 750px) {
  .business_box02 .inner .flex_box .txt_box {
    width: 100%;
  }
}
.business_box02 .inner .flex_box .txt_box h3 {
  font-size: 3rem;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .business_box02 .inner .flex_box .txt_box h3 {
    margin-bottom: 20px;
  }
}
.business_box02 .inner .flex_box .txt_box p {
  font-size: 1.6rem;
}

.fee_box01 {
  background-color: #f4ecdf;
  padding-bottom: 0px;
}
.fee_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 100px;
}
@media (max-width: 750px) {
  .fee_box01 .inner {
    border-radius: 0px;
    padding: 20px 10px;
  }
}
.fee_box01 .inner .top_txt {
  line-height: 1.5;
}
@media (max-width: 750px) {
  .fee_box01 .inner .top_txt {
    font-size: 1.2rem;
  }
}
@media (max-width: 750px) {
  .fee_box01 .inner .note {
    font-size: 1.2rem;
  }
}
.fee_box01 .inner table {
  width: 100%;
  margin: 30px auto 50px;
}
@media (max-width: 750px) {
  .fee_box01 .inner table {
    margin: 20px auto 20px;
  }
}
.fee_box01 .inner table th {
  background-color: #00b2db;
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 2rem;
}
@media (max-width: 750px) {
  .fee_box01 .inner table th {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.fee_box01 .inner table th.rid_left {
  border-radius: 10px 0 0 0;
}
.fee_box01 .inner table th.rid_right {
  border-radius: 0px 10px 0 0;
}
.fee_box01 .inner table td {
  padding: 10px;
  background-color: #f4ecdf;
  text-align: center;
  font-size: 2rem;
}
@media (max-width: 750px) {
  .fee_box01 .inner table td {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.fee_box01 .inner table td.rid_left {
  border-radius: 0px 0 0 10px;
}
.fee_box01 .inner table td.rid_right {
  border-radius: 0px 0px 10px 0;
}
.fee_box01 .inner table td.right {
  text-align: right;
}

.fee_box02 {
  background-color: #f4ecdf;
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .fee_box02 {
    padding-bottom: 30px;
  }
}
.fee_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 70px 200px;
}
@media (max-width: 750px) {
  .fee_box02 .inner {
    padding: 20px;
    border-radius: 0px;
  }
}

.program_box01 {
  background-color: #f4ecdf;
  padding-bottom: 100px;
}
.program_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
  background-size: cover;
  padding: 20px 30px 10px;
}
.program_box01 .inner.box01 {
  background-image: url(../img/program/bkimg01.png);
}
.program_box01 .inner.box02 {
  background-image: url(../img/program/bkimg02.png);
}
.program_box01 .inner.box03 {
  background-image: url(../img/program/bkimg03.png);
}
.program_box01 .inner.box04 {
  background-image: url(../img/program/bkimg04.png);
}
.program_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .program_box01 .inner .flex_box {
    flex-direction: column;
  }
  .program_box01 .inner .flex_box.reverse {
    flex-direction: column-reverse;
  }
}
.program_box01 .inner .flex_box .img_box {
  width: 46%;
}
@media (max-width: 750px) {
  .program_box01 .inner .flex_box .img_box {
    width: 100%;
  }
}
.program_box01 .inner .flex_box .txt_box {
  width: 46%;
  color: #fff;
}
@media (max-width: 750px) {
  .program_box01 .inner .flex_box .txt_box {
    width: 100%;
  }
}
.program_box01 .inner .flex_box .txt_box h3 {
  font-size: 3rem;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .program_box01 .inner .flex_box .txt_box h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.program_box01 .inner .flex_box .txt_box p {
  font-size: 1.8rem;
  line-height: 1.5;
}

.state_box01 {
  background-color: #f4ecdf;
  padding-bottom: 100px;
  padding-top: 50px;
}
@media (max-width: 750px) {
  .state_box01 {
    overflow: hidden;
    padding-bottom: 30px;
  }
}
.state_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.state_box01 .inner .test__container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.state_box01 .inner .test-slick04 {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
}
.state_box01 .inner .test-slick__item {
  margin-right: 5px;
  margin-left: 5px;
}
.state_box01 .inner .test-slick__item img {
  height: auto;
  width: 100%;
}
.state_box01 .inner .test-slick2 {
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.state_box01 .inner .test-slick2__item {
  margin-right: 5px;
  margin-left: 5px;
}
.state_box01 .inner .test-slick2__item img {
  height: auto;
  width: 100%;
}
.state_box01 .inner .slick-prev {
  background-image: url(../img/state/arrow_left.png);
  background-size: cover;
}
.state_box01 .inner .slick-prev:before {
  background-image: url(../img/state/arrow_left.png);
  content: "";
}
.state_box01 .inner .slick-next {
  background-size: cover;
  background-image: url(../img/state/arrow_right.png);
}
@media (max-width: 750px) {
  .state_box01 .inner .slick-next {
    display: none;
  }
}
.state_box01 .inner .slick-next:before {
  background-image: url(../img/state/arrow_right.png);
  content: "";
}

.flow_box {
  background-color: #f4ecdf;
  padding-bottom: 30px;
}
.flow_box .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.flow_box .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
.flow_box .inner .flex_box .img_box {
  width: 28%;
}
@media (max-width: 750px) {
  .flow_box .inner .flex_box .img_box {
    display: none;
  }
}
.flow_box .inner .flex_box .txt_box {
  width: 68%;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}
@media (max-width: 750px) {
  .flow_box .inner .flex_box .txt_box {
    width: 94%;
    margin: 0 auto;
    border-radius: 3px;
    padding: 20px;
  }
}
.flow_box .inner .flex_box .txt_box h3 {
  font-size: 3rem;
  background-image: url(../img/flow/line.png);
  background-position: bottom left;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.flow_box .inner .flex_box .txt_box p {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .flow_box .inner .flex_box .txt_box p {
    font-size: 1.4rem;
  }
}
.flow_box .inner .flex_box .txt_box .btn {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .flow_box .inner .flex_box .txt_box .btn {
    flex-direction: column;
  }
}
.flow_box .inner .flex_box .txt_box .btn li {
  width: 45%;
}
@media (max-width: 750px) {
  .flow_box .inner .flex_box .txt_box .btn li {
    width: 100%;
  }
  .flow_box .inner .flex_box .txt_box .btn li:nth-child(2) {
    margin-top: 20px;
  }
}

.flow_arrow {
  background-color: #f4ecdf;
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 750px) {
  .flow_arrow {
    padding: 0 20px 20px;
  }
}

.dayservice_box01 {
  background-color: #f4ecdf;
}
.dayservice_box01.sp_sec {
  padding-bottom: 50px;
}
@media (max-width: 750px) {
  .dayservice_box01.sp_sec {
    padding: 0 20px 30px;
  }
  .dayservice_box01.sp_sec .inner {
    padding: 20px;
  }
}
.dayservice_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 100px;
  background-color: #fff;
  border-radius: 20px;
}
@media (max-width: 750px) {
  .dayservice_box01 .inner {
    padding: 20px 0;
    border-radius: 3px;
  }
}
.dayservice_box01 .inner h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  background-image: url(../img/dayservice/line.png);
  background-position: bottom left;
}
@media (max-width: 750px) {
  .dayservice_box01 .inner h2 {
    max-width: 90%;
    margin: 0 auto 20px;
  }
}
.dayservice_box01 .inner h2 span {
  color: #00b2db;
}
.dayservice_box01 .inner .txt {
  text-align: center;
}
@media (max-width: 750px) {
  .dayservice_box01 .inner .txt {
    font-size: 1.2rem;
  }
}
.dayservice_box01 .inner .txt.mt10 {
  margin-top: 10px;
}
.dayservice_box01 .inner .img_box {
  margin: 30px 0 0;
}

.company_list_wapper {
  background-color: #f4ecdf;
}
.company_list_wapper .company_list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
}
.company_list_wapper .company_list dt {
  width: 30%;
  border-bottom: 1px solid #472821;
  padding: 20px;
  text-align: center;
}
.company_list_wapper .company_list dd {
  width: 70%;
  border-bottom: 1px solid #472821;
  padding: 20px;
}

.contact_box_wapper {
  background-color: #f4ecdf;
  padding-bottom: 100px;
}
.contact_box_wapper dl {
  max-width: 900px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .contact_box_wapper dl {
    flex-direction: column;
  }
}
.contact_box_wapper dl dt {
  background-color: #472821;
  color: #fff;
  width: 30%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
}
@media (max-width: 750px) {
  .contact_box_wapper dl dt {
    width: 100%;
    background-color: transparent;
    padding: 10px;
    justify-content: flex-start;
    color: #472821;
  }
}
.contact_box_wapper dl dt span {
  background-color: #fff;
  color: #e21000;
  padding: 3px;
}
@media (max-width: 750px) {
  .contact_box_wapper dl dt span {
    font-size: 1.2rem;
    margin-left: 10px;
  }
}
.contact_box_wapper dl dd {
  width: 70%;
  padding: 20px;
}
@media (max-width: 750px) {
  .contact_box_wapper dl dd {
    width: 100%;
    padding: 5px 0 0 10px;
  }
  .contact_box_wapper dl dd.con_flex_wapper {
    display: flex;
    flex-direction: column;
  }
  .contact_box_wapper dl dd.flex_box02 {
    display: flex;
    flex-wrap: wrap;
  }
  .contact_box_wapper dl dd.flex_box02 span {
    width: 50%;
  }
}
.contact_box_wapper dl dd input {
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
.contact_box_wapper dl dd input[type=checkbox i] {
  width: auto;
}
.contact_box_wapper dl dd textarea {
  background-color: #fff;
  width: 100%;
  min-height: 200px;
  padding: 10px;
}

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

form .check_box {
  max-width: 1000px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
form .check_box p {
  font-size: 2rem;
}
@media (max-width: 750px) {
  form .check_box p {
    font-size: 1.6rem;
  }
}
form .check_box p a {
  color: #472821;
}
form .form_submit_btn {
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #333;
  box-shadow: 3px 0px 16px rgba(0, 0, 0, 0.37);
  max-width: 200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
form .form_submit_btn input[type=submit] {
  width: auto;
  color: #333;
  margin-left: 10px;
  font-size: 2rem;
}

.privacy_box {
  padding: 100px 0;
  background-color: #f4ecdf;
}
@media (max-width: 750px) {
  .privacy_box {
    padding: 50px 0;
  }
}
.privacy_box .inner {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .privacy_box .inner {
    padding: 0 10px;
  }
}
.privacy_box .inner .txt01 {
  font-size: 2rem;
}
.privacy_box .inner .txt01.center {
  text-align: center;
}
@media (max-width: 750px) {
  .privacy_box .inner .txt01 {
    font-size: 1.5rem;
  }
}
.privacy_box .inner .txt01::after {
  content: "";
  display: block;
  background-image: url(../img/privacy/ttlbk.png);
  width: 600px;
  height: 10px;
  background-size: cover;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .privacy_box .inner .txt01::after {
    width: auto;
    display: none;
  }
}
.privacy_box .inner h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .privacy_box .inner h3 {
    margin-top: 30px;
    font-size: 1.6rem;
    background-image: url(../img/flow/line.png);
    background-position: bottom;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.privacy_box .inner .txt02 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .privacy_box .inner .txt02 {
    font-size: 1.5rem;
  }
}
.privacy_box .inner .txt03 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .privacy_box .inner .txt03 {
    font-size: 1.2rem;
  }
}
.privacy_box .inner ol {
  margin-top: 20px;
  padding-left: 3%;
}
@media screen and (max-width: 768px) {
  .privacy_box .inner ol {
    font-size: 1.5rem;
    margin-top: 10px;
    padding-left: 0;
  }
}
.privacy_box .inner ol li {
  list-style: disc;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .privacy_box .inner ol li {
    font-size: 1.5rem;
    padding: 0 0 0 0px;
    list-style: none;
    display: flex;
  }
  .privacy_box .inner ol li::before {
    content: "・";
  }
}

.dropdown-btn {
  height: 100%;
}
@media (max-width: 750px) {
  .dropdown-btn {
    color: #472821;
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 180%;
  z-index: 1000;
}
@media (max-width: 750px) {
  .dropdown-content {
    position: initial;
    width: 100%;
  }
}
.dropdown-content a {
  display: flex;
  flex-direction: column;
}
.dropdown-content span {
  background-image: url(../img/flow/line.png);
  background-position: bottom left;
  display: block;
}
@media (max-width: 750px) {
  .dropdown-content span {
    background-image: none;
    display: inline;
  }
}

.footer_btn {
  padding: 100px 0 50px;
  background-color: #f4ecdf;
}
@media (max-width: 750px) {
  .footer_btn {
    padding: 0px 0 50px;
  }
}
.footer_btn ul {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .footer_btn ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.footer_btn ul li {
  width: 48%;
}
@media (max-width: 750px) {
  .footer_btn ul li {
    width: 100%;
  }
}
.footer_btn ul li:nth-child(2) {
  margin-left: 4%;
}
@media (max-width: 750px) {
  .footer_btn ul li:nth-child(2) {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 750px) {
  .sp_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 100;
  }
  .sp_menu .footer_logo img {
    width: 50%;
  }
}

.blog_wapper {
  background-color: #f4ecdf;
}
.blog_wapper .inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
}
@media (max-width: 750px) {
  .blog_wapper .inner {
    padding: 30px 20px;
  }
}
.blog_wapper .inner h2 {
  font-size: 3rem;
  border-bottom: 2px solid #cccccc;
}
.blog_wapper .inner .day {
  color: #00b2db;
}
.blog_wapper .inner .content_box {
  margin: 100px 0 0;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box {
    margin: 30px 0 0;
  }
}
.blog_wapper .inner .content_box .flex_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box {
    flex-direction: column;
  }
}
.blog_wapper .inner .content_box .flex_box .left_box {
  width: 75%;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box .left_box {
    width: 100%;
  }
}
.blog_wapper .inner .content_box .flex_box .left_box .flex_box02 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box .left_box .flex_box02 {
    flex-direction: column;
    align-items: center;
  }
}
.blog_wapper .inner .content_box .flex_box .left_box .txt_box {
  width: 46%;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box .left_box .txt_box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.blog_wapper .inner .content_box .flex_box .left_box .img_box {
  width: 46%;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box .left_box .img_box {
    width: 100%;
  }
}
.blog_wapper .inner .content_box .flex_box .left_box .arrow_btn {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box .left_box .arrow_btn {
    margin-top: 20px;
  }
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box .left_box .arrow_btn li {
    width: 30%;
  }
}
.blog_wapper .inner .content_box .flex_box .right_box {
  width: 20%;
}
@media (max-width: 750px) {
  .blog_wapper .inner .content_box .flex_box .right_box {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .blog_wapper .inner .content_box .flex_box .right_box .ttl {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  .blog_wapper .inner .content_box .flex_box .right_box ul li {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-top: 10px;
  }
}

.new_flex_box {
  background-color: #f4ecdf;
}
.new_flex_box .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .new_flex_box .inner {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.new_flex_box .inner .left_box {
  width: 48%;
}
@media (max-width: 750px) {
  .new_flex_box .inner .left_box {
    margin-top: 20px;
    width: 100%;
  }
}
.new_flex_box .inner .left_box .ttl {
  font-size: 3rem;
  margin-bottom: 30px;
}
.new_flex_box .inner .right_box {
  width: 48%;
}
@media (max-width: 750px) {
  .new_flex_box .inner .right_box {
    width: 100%;
  }
}

.new_flex_box02 {
  background-color: #f4ecdf;
}
.new_flex_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .new_flex_box02 .inner {
    flex-direction: column-reverse;
  }
}
.new_flex_box02 .inner .left_box {
  width: 80%;
  margin: 0 auto;
}
.new_flex_box02 .inner .right_box {
  width: 80%;
  margin: 0 auto;
}
.new_flex_box02 .inner .right_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.new_flex_box02 .inner .right_box ul li {
  width: 48%;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .new_flex_box02 .inner .right_box ul li {
    width: 100%;
  }
}
.new_flex_box02 .inner .right_box ul li a {
  border-radius: 10px;
  background-color: #00b2db;
  color: #fff;
  padding: 30px;
  text-align: center;
  display: block;
}
@media (max-width: 750px) {
  .new_flex_box02 .inner .right_box ul li a {
    padding: 20px 10px;
  }
}

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