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

body {
  background-color: #fffce4;
  color: #4b4b4b;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}
body.sec {
  background-image: url(../img/sec_bk.png);
  background-repeat: repeat;
}
body.smart {
  background-image: url(../img/smart/bk.png);
  background-repeat: repeat;
  background-size: cover;
}

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

figure {
  line-height: 0;
}

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

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

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

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

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

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

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

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

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

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

.slid {
  background-image: url(../img/top/mv_bk.jpg);
  background-size: cover;
  padding: 80px 30px;
}

.slick-slide img {
  border-radius: 20px;
  border: 10px solid #a5c9eb;
}

.pc_nav {
  position: absolute;
  z-index: 99999;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 750px) {
  .pc_nav {
    display: none;
  }
}
.pc_nav ul {
  padding: 20px 50px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.47);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 1600px;
}
@media (max-width: 1600px) {
  .pc_nav ul {
    padding: 20px 20px;
  }
}
.pc_nav ul li {
  font-size: 2.5rem;
}
@media (max-width: 1600px) {
  .pc_nav ul li {
    font-size: 2rem;
  }
}
@media (max-width: 1250px) {
  .pc_nav ul li {
    font-size: 1.6rem;
  }
}
@media (max-width: 1020px) {
  .pc_nav ul li {
    font-size: 1.4rem;
  }
}
.pc_nav ul li a {
  color: #444444;
}
.pc_nav ul li::before {
  content: "|";
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
}
.pc_nav ul li:last-child::after {
  content: "|";
  display: inline-block;
  margin-left: 10px;
}

header.sec::after {
  content: "";
  display: block;
  width: 100%;
  height: 57px;
  background-image: url(../img/sec_header.png);
  background-repeat: repeat-x;
}
@media (max-width: 750px) {
  header.sec::after {
    height: 17px;
    background-position: bottom;
  }
}

.header_top {
  background-color: #fff;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header_top figure {
  width: 30%;
}
@media (max-width: 750px) {
  .header_top figure {
    width: 60%;
  }
}
.header_top .pc_list {
  display: flex;
  align-items: center;
  width: 70%;
  flex-direction: column;
}
@media (max-width: 750px) {
  .header_top .pc_list {
    display: none;
  }
}
.header_top .pc_list .pc_list_top_list {
  display: flex;
}
.header_top .pc_list .pc_list_top_list li {
  margin: 0 1%;
}
.header_top .pc_list .pc_list_bottom {
  margin-top: 10px;
}
.header_top .pc_list .pc_list_bottom .pc_nav_list {
  display: flex;
  padding-right: 10px;
  border-right: 1px solid #fff;
}
.header_top .pc_list .pc_list_bottom .pc_nav_list li {
  font-size: 1.8rem;
  border-left: 1px solid #fff;
  padding-left: 10px;
  padding-right: 10px;
}
.header_top .pc_list .pc_list_bottom .pc_nav_list li a {
  color: #fff;
}

.blog_box {
  background-image: url(../img/top/renga_bk.png);
  background-size: cover;
  padding: 50px 0;
}
.blog_box.sec {
  margin-bottom: 100px;
}
.blog_box .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.blog_box .inner .blog_wapper {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
}
.blog_box .inner h2 {
  text-align: center;
  border-bottom: 3px solid #eae2bd;
  padding-bottom: 20px;
}
.blog_box .inner .blog_btn {
  position: absolute;
  right: 20px;
  top: 30px;
}
@media (max-width: 750px) {
  .blog_box .inner .blog_btn {
    position: initial;
  }
}
.blog_box .inner .blog_wapper ul {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .blog_box .inner .blog_wapper ul {
    flex-direction: column;
  }
}
.blog_box .inner .blog_wapper ul li {
  width: 48%;
  display: flex;
}
@media (max-width: 750px) {
  .blog_box .inner .blog_wapper ul li {
    width: 100%;
    flex-direction: column;
  }
}
.blog_box .inner .blog_wapper ul li figure {
  width: 40%;
}
@media (max-width: 750px) {
  .blog_box .inner .blog_wapper ul li figure {
    width: 100%;
    text-align: center;
  }
}
.blog_box .inner .blog_wapper ul li figure img {
  border-radius: 20px;
}
@media (max-width: 750px) {
  .blog_box .inner .blog_wapper ul li figure img {
    margin: 0 auto;
  }
}
.blog_box .inner .blog_wapper ul li .txt_box {
  width: 55%;
  padding-left: 5%;
}
@media (max-width: 750px) {
  .blog_box .inner .blog_wapper ul li .txt_box {
    width: 100%;
    padding-left: 0;
    padding-top: 5%;
  }
}
.blog_box .inner .blog_wapper ul li .txt_box .day {
  font-size: 2rem;
  color: #4b4b4b;
  margin-bottom: 10px;
}
.blog_box .inner .blog_wapper ul li .txt_box .ttl {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.blog_box .inner .blog_wapper ul li .txt_box .txt {
  line-height: 1.4;
}
.blog_box .footer_img {
  margin-top: 40px;
  transform: translateX(0%);
  text-align: center;
  padding-bottom: 150px;
}
@media (max-width: 750px) {
  .blog_box .footer_img {
    padding-bottom: 0px;
  }
}

.top_form {
  padding: 50px 0;
  background-image: url(../img/top/og_bk.png);
}
.top_form .inner {
  background-color: #fbc71c;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 30px;
  border-radius: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.top_form h2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 750px) {
  .top_form h2 {
    flex-direction: column;
  }
  .top_form h2 span {
    margin-bottom: 20px;
  }
}
.top_form .txt_box_inner {
  display: flex;
  justify-content: space-between;
}
.top_form .txt_box_inner form {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner form {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .top_form .txt_box_inner {
    flex-direction: column;
  }
}
.top_form .txt_box_inner .left_box {
  width: 48%;
}
.top_form .txt_box_inner .left_box ul {
  display: flex;
  flex-wrap: wrap;
}
.top_form .txt_box_inner .left_box ul li {
  width: 50%;
  position: relative;
}
.top_form .txt_box_inner .left_box ul li input {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  display: block;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .left_box ul li input {
    width: 19px;
    height: 19px;
  }
}
.top_form .txt_box_inner .left_box ul li:nth-child(1) input {
  left: 19px;
  bottom: 19px;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .left_box ul li:nth-child(1) input {
    left: 9px;
    bottom: 10px;
  }
}
.top_form .txt_box_inner .left_box ul li:nth-child(2) input {
  left: 32px;
  bottom: 19px;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .left_box ul li:nth-child(2) input {
    left: 17px;
    bottom: 9px;
  }
}
.top_form .txt_box_inner .left_box ul li:nth-child(3) input {
  left: 18px;
  bottom: 10px;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .left_box ul li:nth-child(3) input {
    left: 10px;
    bottom: 4px;
  }
}
.top_form .txt_box_inner .left_box ul li:nth-child(4) input {
  left: 32px;
  bottom: 10px;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .left_box ul li:nth-child(4) input {
    left: 18px;
    bottom: 4px;
  }
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .left_box {
    width: 100%;
  }
}
.top_form .txt_box_inner .right_box {
  position: relative;
  width: 48%;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 70px;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .right_box {
    width: 100%;
    margin-top: 20px;
    padding: 20px 20px;
  }
}
.top_form .txt_box_inner .right_box dl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .right_box dl {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.top_form .txt_box_inner .right_box dl dt {
  width: 20%;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .right_box dl dt {
    margin-bottom: 10px;
    width: 100%;
  }
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .right_box dl dd {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
.top_form .txt_box_inner .right_box dl dd input {
  background-color: #eeeeee;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .right_box dl dd input {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
.top_form .txt_box_inner .right_box::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 200px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #fbc71c;
}
@media (max-width: 750px) {
  .top_form .txt_box_inner .right_box::before {
    display: none;
  }
}
.top_form .txt_box_inner .right_box .center_btm {
  text-align: center;
}
.top_form .txt_box_inner .right_box .center_btm input {
  width: 264px;
  height: 60px;
  background-image: url(../img/top/top_form_btn.png);
  text-indent: -9999px;
}
.top_form .btn_list {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 30px auto 0;
}
@media (max-width: 750px) {
  .top_form .btn_list {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .top_form .btn_list li {
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 750px) {
  .slid {
    padding: 0px;
  }
}
.slid .slick-prev {
  left: -20px;
  z-index: 99;
}
.slid .slick-prev::before {
  content: "";
  background-image: url(../img/arrow_plev.png);
  display: block;
  width: 121px;
  height: 121px;
}
@media (max-width: 750px) {
  .slid .slick-prev::before {
    display: none;
  }
}
.slid .slick-next {
  right: 50px;
  z-index: 99;
}
.slid .slick-next::before {
  content: "";
  background-image: url(../img/arrow_nex.png);
  display: block;
  width: 68px;
  height: 68px;
}
@media (max-width: 750px) {
  .slid .slick-next::before {
    display: none;
  }
}

.cost_wapper {
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .cost_wapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 750px) {
  .cost_wapper .slid {
    padding: 0px;
  }
}
.cost_wapper .slid .slick-prev {
  left: -80px;
  z-index: 99;
}
.cost_wapper .slid .slick-prev::before {
  content: "";
  background-image: url(../img/cost/clst_arrow_left.png);
  display: block;
  width: 76px;
  height: 76px;
}
@media (max-width: 750px) {
  .cost_wapper .slid .slick-prev::before {
    display: none;
  }
}
.cost_wapper .slid .slick-next {
  right: -50px;
  z-index: 99;
}
.cost_wapper .slid .slick-next::before {
  content: "";
  background-image: url(../img/cost/clst_arrow_right.png);
  display: block;
  width: 76px;
  height: 76px;
}
@media (max-width: 750px) {
  .cost_wapper .slid .slick-next::before {
    display: none;
  }
}

.box01 {
  position: relative;
  z-index: 9999;
}
.box01 img.bkimg {
  width: 100%;
  margin-top: -8vw;
}
.box01 .box01_img_wapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
  text-align: center;
}
.box01 .box01_img_wapper img {
  width: 90%;
}
.box01 .box01_img_wapper02 {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translate(-50%, 0%);
  text-align: center;
}
.box01 .box01_img_wapper02 img {
  width: 90%;
}

.box02 {
  background-color: #fffce4;
  position: relative;
}
.box02 .inner {
  padding: 50px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .box02 .inner {
    padding: 30px 20px;
  }
}
.box02 .inner ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .box02 .inner ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.box02 .inner ul li {
  margin-right: 20px;
}
@media (max-width: 750px) {
  .box02 .inner ul li {
    margin-bottom: 20px;
    margin-right: 0;
    width: 48%;
  }
}

.box03 {
  position: relative;
  background-image: url(../img/top/box03_bk.png);
  background-size: cover;
  padding: 50px 0;
}
@media (max-width: 750px) {
  .box03 {
    padding: 0 0 50px;
  }
}
.box03 .box02_imgwapepr {
  position: absolute;
  top: 0%;
  transform: translateY(-20%);
}
.box03 .inner {
  padding: 0 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .box03 .inner {
    padding: 20px 20px;
  }
}
.box03 .inner h2 {
  text-align: center;
  font-size: 5rem;
  color: #fff;
  background-color: #002261;
  border-radius: 30px;
  padding: 100px 0;
  font-weight: bold;
}
@media (max-width: 750px) {
  .box03 .inner h2 {
    font-size: 2rem;
    padding: 10px 0;
  }
}
.box03 .inner h3 {
  text-align: center;
  margin-top: 30px;
}
.box03 .inner .youtube {
  text-align: center;
  margin-top: 20px;
  position: relative;
  padding-top: 56.25%;
  max-width: 1200px;
  margin: 0 auto;
}
.box03 .inner .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box03_2 {
  position: relative;
  background-image: url(../img/top/box03_bk02.png);
  background-size: cover;
  padding: 50px 0;
}
@media (max-width: 750px) {
  .box03_2 {
    padding: 0;
  }
}
.box03_2 .box02_imgwapepr {
  position: absolute;
  top: 0%;
  transform: translateY(-20%);
}
.box03_2 .inner {
  padding: 0 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .box03_2 .inner {
    padding: 20px 20px;
  }
}
.box03_2 .inner h2 {
  text-align: center;
  font-size: 5rem;
  color: #fff;
  background-color: #002261;
  border-radius: 30px;
  padding: 100px 0;
  font-weight: bold;
}
@media (max-width: 750px) {
  .box03_2 .inner h2 {
    font-size: 2rem;
    padding: 10px 0;
  }
}
.box03_2 .inner h3 {
  text-align: center;
  margin-top: 30px;
}
.box03_2 .inner .youtube {
  text-align: center;
  margin-top: 20px;
}

.box04 {
  background-image: url(../img/top/box04img.png);
  background-size: cover;
  padding: 50px 0 150px;
  margin-top: 100px;
  padding-top: 150px;
}
@media (max-width: 750px) {
  .box04 {
    margin-top: 10px;
    padding: 50px 0 50px;
  }
}
.box04 .inner {
  padding: 0 100px;
  position: relative;
}
.box04 .inner .box04_icon {
  position: absolute;
  left: 0%;
  top: 0vw;
  transform: translateY(-96%);
  z-index: 1;
}
.box04 .inner .box04_icon img {
  width: 27vw;
}
@media (max-width: 750px) {
  .box04 .inner .box04_icon img {
    width: 41vw;
  }
}
@media (max-width: 750px) {
  .box04 .inner {
    padding: 0 20px;
  }
}
.box04 .inner h2 {
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .box04 .inner h2 {
    margin-bottom: 70px;
  }
}
.box04 .inner ul {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
@media (max-width: 750px) {
  .box04 .inner ul {
    flex-direction: column;
  }
}
.box04 .inner ul li {
  width: 31%;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .box04 .inner ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.box04 .inner ul li .new_txt {
  background-color: #fff;
  padding: 10px 0;
  text-align: center;
  line-height: 1.8;
  border-radius: 0 0 20px 20px;
}

.box05 {
  background-size: cover;
}
.box05 .inner {
  max-width: 1490px;
  margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 750px) {
  .box05 .inner {
    padding: 40px 20px;
  }
}
.box05 .inner h2 {
  text-align: center;
}
.box05 .inner .txt_box {
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .box05 .inner .txt_box {
    flex-direction: column;
    padding: 30px 0px;
  }
}
.box05 .inner .txt_box figure {
  width: 40%;
}
@media (max-width: 750px) {
  .box05 .inner .txt_box figure {
    width: 100%;
  }
}
.box05 .inner .txt_box .txt_box_inner {
  padding: 30px;
}
@media (max-width: 750px) {
  .box05 .inner .txt_box .txt_box_inner {
    padding: 30px 0 0 0;
  }
  .box05 .inner .txt_box .txt_box_inner br {
    display: none;
  }
}
.box05 .inner .txt_box .txt_box_inner .txt_box_inner_txt {
  font-size: 2.6rem;
  color: #fff;
  line-height: 2;
  text-shadow: 1px 1px 2px #000;
}
@media (max-width: 750px) {
  .box05 .inner .txt_box .txt_box_inner .txt_box_inner_txt {
    font-size: 2rem;
  }
}
.box05 .inner .txt_box .txt_box_inner .btn {
  text-align: center;
  margin-top: 20px;
}

.box05_2 {
  background-image: url(../img/top/box05_2_bk.png);
  background-size: cover;
  margin-top: -180px;
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .box05_2 {
    margin-top: 0;
  }
}
.box05_2 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.box05_2 .inner h2 {
  margin-bottom: -50px;
}
.box05_2 .inner ul {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
}
.box05_2 .inner ul li {
  border: 3px solid #0076c3;
  padding: 20px;
  width: 31%;
  margin: 20px 1%;
  border-radius: 10px;
}
.box05_2 .inner ul li a {
  color: #000;
}
@media (max-width: 750px) {
  .box05_2 .inner ul li {
    width: 100%;
  }
}
.box05_2 .inner ul li .category {
  background-color: #0076c3;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  margin-top: 10px;
}
.box05_2 .inner ul li .txt {
  margin-top: 10px;
}

.box06 {
  padding: 80px 0;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 750px) {
  .box06 {
    padding: 30px 0;
  }
}
.box06 .box06_img {
  position: absolute;
  top: 0vw;
  transform: translateY(-67%);
}
@media (max-width: 750px) {
  .box06 .box06_img {
    transform: translateY(-57%);
  }
}
.box06 .box06_img02 {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .box06 .box06_img02 {
    margin-top: 0;
  }
}
.box06 .inner {
  padding: 0 100px;
}
@media (max-width: 750px) {
  .box06 .inner {
    padding: 0 20px;
  }
}
.box06 .inner h2 {
  text-align: center;
}
.box06 .inner .box06_flex {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .box06 .inner .box06_flex {
    flex-direction: column;
  }
}
.box06 .inner .box06_flex .txt_box {
  padding-left: 30px;
}
@media (max-width: 750px) {
  .box06 .inner .box06_flex .txt_box {
    padding-left: 0;
    margin-top: 20px;
  }
}
.box06 .inner .box06_flex .txt_box .txt_box_inner_txt {
  font-size: 2.6rem;
  color: #fff;
  line-height: 2;
  text-shadow: 1px 1px 2px #000;
}
@media (max-width: 750px) {
  .box06 .inner .box06_flex .txt_box .txt_box_inner_txt {
    font-size: 2rem;
  }
  .box06 .inner .box06_flex .txt_box .txt_box_inner_txt br {
    display: none;
  }
}

.box06_2 {
  background-image: url(../img/top/renga02.png);
  background-size: cover;
  margin-top: -100px;
  position: relative;
  padding-top: 30px;
  z-index: 3;
}
.box06_2 .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.box07 {
  padding: 50px 0;
  margin-top: -200px;
}
@media (max-width: 750px) {
  .box07 {
    margin-top: -100px;
  }
}
.box07 .inner {
  padding: 0 100px;
}
@media (max-width: 750px) {
  .box07 .inner {
    padding: 0 20px;
  }
}
.box07 .inner ul {
  display: flex;
  align-items: flex-end;
  margin-top: 30px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .box07 .inner ul {
    flex-direction: column;
  }
}
.box07 .inner ul li {
  width: 46%;
}
@media (max-width: 750px) {
  .box07 .inner ul li {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .box07 .inner ul li:nth-child(2) {
    margin: 20px 0;
  }
}
.box07 .inner ul li .txt_box {
  width: 80%;
  margin: 20px auto 0;
  display: flex;
}
@media (max-width: 750px) {
  .box07 .inner ul li .txt_box {
    width: 100%;
  }
}
.box07 .inner ul li .txt_box p {
  font-size: 1.6rem;
  text-shadow: 1px 1px 1px #000;
}

.last_btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .last_btn {
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #bce2fb;
  }
}
.last_btn .wid40 {
  width: 39.9%;
}
.last_btn .ml {
  margin-left: -3px;
}
@media (max-width: 750px) {
  .last_btn .ml {
    display: none;
  }
}
.last_btn .ml img {
  width: 99%;
}
@media (max-width: 750px) {
  .last_btn p {
    width: 24%;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .last_btn .top {
    width: 100%;
    text-align: center;
  }
}
.last_btn a {
  margin-left: -1px;
}

footer {
  position: relative;
  background-color: #c6e3ff;
  padding: 0px 0;
}
footer .footer_01 {
  background-image: url(../img/footer_01.png);
  background-size: cover;
  padding: 50px 0;
}
footer .footer_01 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer_01 .inner .last_btn {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 750px) {
  footer .footer_01 .inner .last_btn {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
footer .footer_01 .inner .last_btn .wid40 {
  width: 39.9%;
}
@media (max-width: 750px) {
  footer .footer_01 .inner .last_btn p {
    width: 24%;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  footer .footer_01 .inner .last_btn p.ml {
    display: none;
  }
  footer .footer_01 .inner .last_btn .top {
    width: 100%;
    text-align: center;
  }
}
footer .footer_01 .inner .last_btn a {
  margin-left: -1px;
}
footer .footer_01 ul {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  footer .footer_01 ul {
    flex-direction: column;
  }
}
footer .footer_01 ul li {
  width: 37%;
}
footer .footer_01 ul li:first-child {
  width: 63%;
}
@media (max-width: 750px) {
  footer .footer_01 ul li:first-child {
    width: 100%;
    text-align: center;
  }
}
footer .footer_02_box {
  background-image: url(../img/footer_02.png);
  background-size: cover;
  padding: 50px 0 230px;
}
@media (max-width: 750px) {
  footer .footer_02_box {
    padding: 50px 20px 90px;
  }
}
footer .footer_02_box ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  footer .footer_02_box ul {
    flex-direction: column;
  }
}
footer .footer_02_box ul li {
  display: flex;
}
@media (max-width: 750px) {
  footer .footer_02_box ul li {
    margin-bottom: 20px;
  }
}
footer .footer_botom {
  display: flex;
  justify-content: space-around;
  position: relative;
}
@media (max-width: 750px) {
  footer .footer_botom {
    flex-direction: column;
    padding: 0 20px;
  }
}
footer .footer_botom::before {
  content: "";
  background-image: url(../img/footer_botom_bk.png);
  display: block;
  position: absolute;
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
@media (max-width: 750px) {
  footer .footer_botom::before {
    height: 50px;
  }
}
footer .footer_botom .footer_botom_list {
  width: 50%;
}
@media (max-width: 1320px) {
  footer .footer_botom .footer_botom_list {
    width: 60%;
  }
}
@media (max-width: 1180px) {
  footer .footer_botom .footer_botom_list {
    width: 70%;
  }
}
@media (max-width: 750px) {
  footer .footer_botom .footer_botom_list {
    width: 100%;
    margin-top: 30px;
  }
}
footer .footer_botom .footer_botom_list ul {
  display: flex;
}
@media (max-width: 750px) {
  footer .footer_botom .footer_botom_list ul {
    padding: 0 20px;
    flex-wrap: wrap;
  }
}
footer .footer_botom .footer_botom_list ul li {
  margin: 0 2%;
}
@media (max-width: 750px) {
  footer .footer_botom .footer_botom_list ul li {
    width: 46%;
  }
}
footer .footer_botom .footer_botom_list ul li a {
  color: #4b4b4b;
}
footer .footer_botom .footer_botom_list ul li p {
  margin-bottom: 20px;
}
footer .footer_botom .footer_botom_list ul li p.usu a {
  color: #8593a2;
}
footer .footer_img01 {
  position: absolute;
  top: 0;
  transform: translateY(-93%);
}
footer .footer_01 {
  padding: 50px 100px 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_01 {
    padding: 30px 20px 30px;
    flex-direction: column;
  }
}
footer .footer_01 li:first-child {
  width: 38%;
}
@media (max-width: 750px) {
  footer .footer_01 li:first-child {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .footer_01 li:last-child {
  width: 60%;
  padding-left: 5%;
}
@media (max-width: 750px) {
  footer .footer_01 li:last-child {
    width: 100%;
    padding-left: 0;
  }
}
footer .footer_02 {
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_02 {
    padding: 0px 20px;
    flex-direction: column;
  }
}
footer .footer_02 li {
  width: 46%;
}
@media (max-width: 750px) {
  footer .footer_02 li {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .footer_02 li p {
  margin-bottom: 10px;
}
footer .footer_03 {
  padding: 30px 100px 0;
  text-align: center;
}
@media (max-width: 750px) {
  footer .footer_03 {
    padding: 0px 20px 30px;
  }
}
footer .map iframe {
  width: 100%;
}
footer .footer_list {
  background-image: url(../img/top/footer_bimg01.png);
  background-size: cover;
  margin-top: -5px;
}
footer .footer_list .inner {
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_list .inner {
    flex-direction: column;
    padding: 20px;
  }
}
footer .footer_list .inner div {
  width: 20%;
}
@media (max-width: 750px) {
  footer .footer_list .inner div {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .footer_list .inner div:last-child {
  width: 31%;
}
@media (max-width: 750px) {
  footer .footer_list .inner div:last-child {
    width: 100%;
  }
}
footer .footer_list .inner div h3 {
  font-size: 2.4rem;
  border-bottom: 2px solid rgba(94, 95, 96, 0.8);
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
footer .footer_list .inner div p {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
footer .footer_list .inner div p a {
  color: #4b4b4b;
}
footer .footer_list .inner div ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
footer .footer_list .inner div ul li {
  width: 50%;
  margin-bottom: 10px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: bold;
}
footer .footer_list .inner div ul li a {
  color: #4b4b4b;
}
footer .footer_list .inner div ul li:last-child {
  width: 100%;
}
footer .copy {
  text-align: center;
  margin-top: -40px;
  padding-bottom: 30px;
}
footer .copy p a {
  color: #4b4b4b;
}
footer .copy p.pla {
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
@media (max-width: 750px) {
  footer .copy {
    padding: 10px 10px;
    margin-top: 0;
  }
}

.reason_box01 {
  display: flex;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .reason_box01 {
    flex-direction: column;
    padding: 0 20px;
  }
}
.reason_box01 figure {
  width: 50%;
  text-align: center;
  padding-left: 10%;
}
@media (max-width: 750px) {
  .reason_box01 figure {
    padding-left: 0%;
    width: 100%;
  }
}
.reason_box01 .txt_box {
  width: 50%;
}
@media (max-width: 750px) {
  .reason_box01 .txt_box {
    width: 100%;
    margin-top: 20px;
  }
}
.reason_box01 .txt_box p {
  line-height: 1.6;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 30px;
  padding-right: 20%;
}
@media (max-width: 750px) {
  .reason_box01 .txt_box p {
    padding-right: 0%;
  }
}

.reason_box02 {
  display: flex;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .reason_box02 {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.reason_box02 figure {
  width: 50%;
  text-align: center;
  padding-right: 10%;
}
@media (max-width: 750px) {
  .reason_box02 figure {
    padding-right: 0%;
    width: 100%;
  }
}
.reason_box02 .txt_box {
  width: 50%;
}
@media (max-width: 750px) {
  .reason_box02 .txt_box {
    width: 100%;
    margin-top: 20px;
  }
}
.reason_box02 .txt_box p {
  line-height: 1.6;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 30px;
  padding-left: 20%;
}
@media (max-width: 750px) {
  .reason_box02 .txt_box p {
    padding-left: 0%;
  }
}

.reason_ttl05 {
  text-align: center;
  margin-top: 100px;
}

.reason_point {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 100px;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .reason_point {
    padding: 0px 20px;
  }
}
.reason_point li {
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .reason_point li {
    width: 100%;
  }
}
.reason_point li figure {
  text-align: center;
}
.reason_point li p {
  text-align: center;
  margin-top: 30px;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .reason_point li p {
    font-size: 1.6rem;
  }
  .reason_point li p br {
    display: none;
  }
}

.construction_wapper {
  padding: 0 100px;
  max-width: 1700px;
  margin: 100px auto;
}
.construction_wapper .construction_ttl01 {
  background-image: url(../img/construction/bk01.png);
  font-size: 3rem;
  padding: 10px;
}
.construction_wapper .inner {
  max-width: 90%;
  margin: 50px auto;
}
.construction_wapper .inner .construction_top_ttl {
  font-size: 3rem;
  line-height: 1.6;
}
.construction_wapper .inner ul {
  margin: 50px 0 0;
  display: flex;
  justify-content: space-between;
}
.construction_wapper .inner ul li {
  width: 40%;
}
.construction_wapper .inner ul li p {
  margin-top: 30px;
  line-height: 1.5;
  font-size: 2rem;
  min-height: 300px;
}

.example_box {
  max-width: 1400px;
  margin: 100px auto 0;
}
.example_box h3 {
  background-color: #043f22;
  font-size: 3rem;
  color: #fff;
  padding: 10px;
}
@media (max-width: 750px) {
  .example_box h3 {
    font-size: 1.6rem;
  }
}
.example_box .example_box_inner {
  background-image: url(../img/example/bk.png);
  background-size: cover;
  padding: 30px 50px;
}
@media (max-width: 750px) {
  .example_box .example_box_inner {
    padding: 30px 10px;
  }
}
.example_box .example_box_inner ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .example_box .example_box_inner ul {
    flex-direction: column;
  }
}
.example_box .example_box_inner .example_box_txt {
  color: #fff;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 750px) {
  .example_box .example_box_inner .example_box_txt {
    flex-direction: column;
    align-items: flex-start;
  }
}
.example_box .example_box_inner .example_box_txt .left_box p {
  margin-top: 20px;
}
.example_box .example_box_inner .example_box_txt .right_box .red_wapper {
  color: #ff5959;
  font-size: 10rem;
  margin-left: 5px;
}
@media (max-width: 750px) {
  .example_box .example_box_inner .example_box_txt .right_box .red_wapper {
    font-size: 4rem;
  }
}
.example_box .example_box_inner .example_box_txt .right_box .red_wapper .min {
  font-size: 5rem;
}
@media (max-width: 750px) {
  .example_box .example_box_inner .example_box_txt .right_box .red_wapper .min {
    font-size: 2rem;
  }
}

.recruit_box {
  max-width: 1500px;
  margin: -100px auto 0;
  padding: 100px 100px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 750px) {
  .recruit_box {
    padding: 20px;
  }
}
.recruit_box h3 {
  font-size: 4rem;
  border-bottom: 2px solid #4b4b4b;
  padding-bottom: 10px;
  margin-bottom: 50px;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .recruit_box h3 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
.recruit_box p {
  font-size: 3rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .recruit_box p {
    font-size: 2rem;
  }
}

.flow_box_wapper {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .flow_box_wapper {
    margin-top: 10px;
  }
}
.flow_box_wapper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 100px;
  display: block;
  background-image: url(../img/flow/bk01.png);
  width: 266px;
  height: 391px;
}
@media (max-width: 750px) {
  .flow_box_wapper::before {
    display: none;
  }
}
.flow_box_wapper .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.flow_box_wapper .inner h2 {
  background-image: url(../img/flow/flow.png);
  padding: 10px;
  font-size: 6.5rem;
}
@media (max-width: 750px) {
  .flow_box_wapper .inner h2 {
    font-size: 2.1rem;
  }
  .flow_box_wapper .inner h2 img {
    display: none;
  }
}
.flow_box_wapper .inner .txt_box {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .flow_box_wapper .inner .txt_box {
    flex-direction: column;
  }
}
.flow_box_wapper .inner .txt_box figure {
  width: 40%;
  text-align: center;
}
@media (max-width: 750px) {
  .flow_box_wapper .inner .txt_box figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
.flow_box_wapper .inner .txt_box .txt {
  width: 60%;
  padding-left: 10px;
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .flow_box_wapper .inner .txt_box .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}

.flow_top_contact {
  max-width: 1200px;
  border: 2px solid #43ea80;
  padding: 20px 50px;
}
@media (max-width: 750px) {
  .flow_top_contact {
    padding: 10px;
  }
}
.flow_top_contact .inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .flow_top_contact .inner {
    flex-direction: column;
  }
}
.flow_top_contact .inner .right_box {
  text-align: center;
}
.flow_top_contact .inner .right_box ul {
  margin-top: 20px;
  display: flex;
}
@media (max-width: 750px) {
  .flow_top_contact .inner .right_box ul {
    flex-direction: column;
  }
}
.flow_top_contact .inner .right_box ul li:nth-child(1) {
  margin-right: 20px;
}
@media (max-width: 750px) {
  .flow_top_contact .inner .right_box ul li:nth-child(1) {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.flow_arrow {
  text-align: center;
  margin: 50px 0;
}

.btn {
  text-align: center;
  margin: 30px 0;
}
.btn.top-50 {
  margin-top: -50px;
}
@media (max-width: 750px) {
  .btn.top-50 {
    margin-top: 20px;
  }
}
.btn a {
  display: block;
  max-width: 500px;
  background-color: #002261;
  padding: 30px 0;
  margin: 0 auto;
  color: #fff;
  font-size: 4rem;
  border-radius: 20px;
}
@media (max-width: 750px) {
  .btn a {
    font-size: 2rem;
  }
}
@media (max-width: 750px) {
  .btn {
    padding: 0 20px;
  }
}

@media (max-width: 750px) {
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}
.fllow {
  position: fixed;
  right: 0;
  top: 30%;
}
@media (max-width: 750px) {
  .fllow {
    display: none;
  }
}

.company_box020 {
  background-image: url(../img/company/bk.png);
  background-position: center bottom;
  padding-top: 50px;
  padding-bottom: 200px;
}
@media (max-width: 750px) {
  .company_box020 {
    padding-bottom: 50px;
    background-position: center bottom -100px;
  }
}

.company_ttl {
  text-align: center;
  margin: 0px auto 50px;
}
@media (max-width: 750px) {
  .company_ttl {
    margin: 0px auto 50px;
  }
}

.company_bana {
  text-align: center;
  margin: 0px auto 50px;
}

.company_txt_box {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .company_txt_box {
    padding: 0 20px;
    font-size: 2rem;
  }
}
.company_txt_box p {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .company_txt_box p {
    margin-bottom: 10px;
  }
}

.bgh {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 200px;
  position: relative;
}
@media (max-width: 750px) {
  .bgh {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

.company_ttl02 {
  max-width: 1200px;
  margin: 0px auto 40px;
  background-color: #002261;
  padding: 5px 20px;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .company_ttl02 {
    min-width: 100%;
    width: 100%;
    top: 0vw;
    left: 0%;
    position: initial;
    transform: translateX(0%);
  }
}
.company_ttl02 .inner {
  background-color: #fff;
  padding: 30px;
}
@media (max-width: 750px) {
  .company_ttl02 .inner {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.company_ttl02 .inner h2 {
  text-align: center;
  color: #4b4b4b;
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .company_ttl02 .inner h2 {
    margin-bottom: 0px;
    font-size: 2rem;
  }
}

.company_box02 {
  max-width: 1200px;
  margin: 0px auto 0;
  box-shadow: 3px 19px 18px rgba(0, 0, 0, 0.35);
  padding: 30px 0 100px;
}
@media (max-width: 750px) {
  .company_box02 {
    margin: 20px auto 0;
  }
}
.company_box02 ul {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #4b4b4b;
  padding: 0 50px;
  font-weight: bold;
}
@media (max-width: 750px) {
  .company_box02 ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.company_box02 ul li {
  padding-bottom: 20px;
  font-size: 3.5rem;
}
@media (max-width: 750px) {
  .company_box02 ul li {
    font-size: 1.6rem;
  }
}
.company_box02 ul li:first-child {
  width: 40%;
}
@media (max-width: 750px) {
  .company_box02 ul li:first-child {
    width: 100%;
  }
}
.company_box02 ul:last-child {
  border-bottom: none;
}

.line01 {
  text-align: center;
  margin-top: 50px;
}

.line_list {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto 0;
}
.line_list li {
  width: 48%;
}
.line_list li:first-child {
  margin-right: 40px;
}

.line_ttl {
  max-width: 1300px;
  margin: 0 auto;
  font-size: 4.5rem;
  font-weight: bold;
  color: #fff;
  background-color: #43a639;
  border-radius: 10px;
  padding: 10px 10px 20px;
  text-align: center;
}

.line_ttl02 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 4.5rem;
  font-weight: bold;
  color: #fff;
  background-color: #43a639;
  border-radius: 10px;
  padding: 10px 10px 20px;
  text-align: center;
}

.line02 {
  max-width: 1300px;
  margin: 40px auto 0;
}

.line03 {
  max-width: 1300px;
  margin: 40px auto 70px;
}

.line_txt01 {
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
  font-size: 3rem;
  line-height: 2;
}

.line_list {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto 0;
}
.line_list li {
  width: 31%;
}

.contact_ttl {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 50px;
  font-weight: bold;
}
@media (max-width: 750px) {
  .contact_ttl {
    font-size: 3rem;
  }
}

.contact_txt {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}
.contact_txt a {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 750px) {
  .contact_txt {
    font-size: 1.6rem;
    padding: 0 20px;
  }
  .contact_txt br {
    display: none;
  }
}

/* --- form --- */
.entry_ttl {
  width: 100%;
  padding: 0;
}

.form_inner {
  background-color: #a5c9eb;
  border-radius: 20px;
  border: 1px solid #4b4b4b;
  padding: 15px;
  margin: 5em auto 0px;
  box-shadow: 3px 0px 16px rgba(0, 0, 0, 0.37);
  max-width: 1000px;
}

.panel .tbl-form {
  border-spacing: 10px;
  width: 90%;
}
.panel .tbl-form tr {
  background-color: #fff;
}

.from {
  margin-bottom: 100px;
}

.cta_box .inner {
  background-size: cover;
  margin: 2em 0;
  height: auto;
}

.cta_box .inner ul {
  flex-direction: column;
}

.cta_box .inner ul li {
  width: 100%;
}

.Requirements_ttl_box ul {
  flex-direction: column;
}

.Requirements_ttl_box ul li {
  width: 80%;
  margin: 10px auto;
}

.Requirements_box h2 {
  width: 180px;
  padding: 10px;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  text-align: center;
}

.from img {
  margin: 12px auto;
  text-align: center;
}

@media (max-width: 750px) {
  main {
    padding-bottom: 0;
  }
}

/* --- confirm page ----*/
.confirm__page .page__main .contact .inner {
  margin: 5em auto;
}

/* --- thanks page ----*/
.thanks__page .page__main .contact .inner {
  margin: 5em auto;
}

.check_box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.check_box p {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 5px;
}

.check_box p .must {
  padding: 5px 5px;
  font-size: 12px;
  font-weight: bold;
  display: block;
  margin: 0px 0;
}

.contact_box05 {
  display: flex;
  padding: 10px 30px;
}
@media (max-width: 750px) {
  .contact_box05 {
    padding: 10px 0;
  }
}
.contact_box05 li {
  background-color: #fff;
  padding: 10px;
  font-size: 3rem;
}
.contact_box05 li:first-child {
  padding: 20px;
}
.contact_box05 li.flex {
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  align-items: center;
}
.contact_box05 li.flex div {
  margin-right: 10px;
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .contact_box05 li {
    padding: 10px;
    font-size: 2rem;
    width: 100%;
  }
}
.contact_box05 li input {
  background-color: #ececec;
  padding: 5px 10px;
  border-radius: 5px;
}
.contact_box05 li input.red {
  background-color: #ffa1a1;
}
.contact_box05 li input.wid100 {
  width: 100%;
}
.contact_box05 li input.ml_10 {
  margin-left: 10px;
}
.contact_box05 li input.radi {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@media (max-width: 750px) {
  .contact_box05 li input {
    width: 100%;
  }
}
.contact_box05 li input.list {
  margin-bottom: 20px;
}
.contact_box05 li textarea {
  background-color: #ececec;
  height: 400px;
  width: 100%;
}
.contact_box05 li div {
  margin-bottom: 20px;
}
.contact_box05 li .must {
  font-size: 2rem;
  color: #ff6666;
}
.contact_box05 li:first-child {
  width: 40%;
}
@media (max-width: 750px) {
  .contact_box05 li:first-child {
    width: 100%;
  }
}
.contact_box05 li:last-child {
  width: 60%;
}
@media (max-width: 750px) {
  .contact_box05 li:last-child {
    width: 100%;
  }
}

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

.privacy__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 30px 0;
}

.privacy__wrapper {
  margin: 20px auto;
  padding: 20px;
}

.panel .privacy .item {
  border-left: 3px solid #4b4b4b;
  padding-left: 20px;
  margin-bottom: 30px;
}

.form__privacy {
  border: 3px solid #4b4b4b;
  padding: 20px;
  line-height: 1.6;
}

.poricy_txt {
  font-size: 2rem;
  line-height: 1.5;
  max-width: 1200px;
  margin: 0px auto;
}
.poricy_txt.mt50 {
  margin-top: 50px;
}
.poricy_txt.mt20 {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .poricy_txt {
    padding: 0 20px;
    font-size: 1.6rem;
  }
}

.poricy_ttl {
  font-size: 3.4rem;
  font-weight: bold;
  border-bottom: 2px solid #002974;
  padding-bottom: 10px;
  max-width: 1200px;
  margin: 50px auto 10px;
}
@media (max-width: 750px) {
  .poricy_ttl {
    font-size: 2.4rem;
    max-width: 96%;
    margin: 20px auto 0;
  }
}

.sp_menu {
  display: none;
}
@media (max-width: 750px) {
  .sp_menu {
    display: block;
  }
  .sp_menu .globalMenuSp {
    flex-direction: column;
  }
}

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

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #000;
  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: #fff;
  transform: rotate(-45deg);
}

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

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

nav.globalMenuSp.active {
  top: 0;
  height: 100vh;
  padding-top: 100px;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

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

@media (min-width: 751px) {
  .sp_menu {
    display: none;
  }
}

@media (max-width: 750px) {
  .globalMenuSp ul li {
    margin-bottom: 20px;
  }
}
.sec_box {
  background-color: #f3f3f3;
  padding-top: 100px;
  padding-bottom: 230px;
}
.sec_box.top {
  padding-bottom: 0px;
  padding-top: 80px;
}
.sec_box.top.flow {
  padding-bottom: 230px;
}
@media (max-width: 1200px) {
  .sec_box.top {
    padding-top: 50px;
  }
}
@media (max-width: 750px) {
  .sec_box {
    padding-bottom: 0;
    padding-top: 30px;
  }
}
.sec_box .sec_btn01 {
  max-width: 1400px;
  margin: 0 auto;
}
.sec_box .sec_btn01.flex {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -90px;
}
@media (max-width: 750px) {
  .sec_box .sec_btn01.flex {
    margin-top: -30px;
  }
}
.sec_box .sec_btn01.flex span.left {
  width: 42.5%;
}
.sec_box .sec_btn01.flex span.right {
  width: 57.05%;
}
.sec_box .sec_btn02 {
  max-width: 1400px;
  margin: 20px auto 0;
}
.sec_box .sec_btn03 {
  display: flex;
  max-width: 1400px;
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  .sec_box .sec_btn03 {
    flex-direction: column;
    padding-bottom: 50px;
  }
  .sec_box .sec_btn03 li {
    margin-bottom: 20px;
  }
}

.sec_box {
  position: relative;
}

.sec_box04 {
  padding: 0 0 250px;
}
@media (max-width: 1200px) {
  .sec_box04 {
    padding: 0 0 150px;
  }
}
@media (max-width: 750px) {
  .sec_box04 {
    padding: 0 0 50px;
  }
}

#voice.sec_box {
  background-color: #f3f3f3;
  padding-top: 100px;
  padding-bottom: 230px;
}
#voice.sec_box.top {
  padding-bottom: 0px;
  padding-top: 30px;
}
@media (max-width: 750px) {
  #voice.sec_box.top {
    padding-top: 5px;
  }
}

.business_list {
  display: flex;
  padding: 0 100px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .business_list {
    padding: 0 20px;
    flex-direction: column;
  }
}
.business_list li {
  width: 31%;
}
@media (max-width: 750px) {
  .business_list li {
    width: 100%;
  }
}

.service_list {
  display: flex;
  padding: 0 100px;
  margin-top: -30px;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 750px) {
  .service_list {
    padding: 60px 20px;
    flex-direction: column;
  }
}
.service_list li {
  width: 46%;
}
@media (max-width: 750px) {
  .service_list li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.se_box_imgtop {
  position: absolute;
  top: 0vw;
  transform: translateY(-74%);
}
.se_box_imgtop.service {
  transform: translateY(-55%);
}
@media (max-width: 750px) {
  .se_box_imgtop.service {
    transform: translateY(-45%);
  }
}
.se_box_imgtop.voice {
  transform: translateY(-67%);
}
@media (max-width: 750px) {
  .se_box_imgtop.voice {
    transform: translateY(-53%);
  }
}
@media (max-width: 750px) {
  .se_box_imgtop {
    transform: translateY(-71%);
  }
}
.se_box_imgtop.no01 {
  transform: translateY(-98%);
}
.cost_box {
  max-width: 1000px;
  margin: 40px auto;
  padding-bottom: 150px;
}
@media (max-width: 750px) {
  .cost_box {
    padding: 0 20px;
  }
}
.cost_box h2 {
  font-size: 4rem;
  font-weight: bold;
  border-left: 10px solid #3c3b7e;
  padding: 5px 0 5px 10px;
}
@media (max-width: 750px) {
  .cost_box h2 {
    font-size: 2rem;
    padding: 5px 20px;
  }
}

.construction_box {
  max-width: 1000px;
  background-color: #3c3b7e;
  border-radius: 20px;
  margin: 50px auto 100px;
}
.construction_box.btm100 {
  margin-bottom: 200px;
}
@media (max-width: 750px) {
  .construction_box.btm100 {
    margin-bottom: 100px;
  }
}
.construction_box .inner {
  padding: 30px;
  display: flex;
}
@media (max-width: 750px) {
  .construction_box .inner {
    flex-direction: column;
  }
}
.construction_box .inner .left_box {
  width: 63%;
}
@media (max-width: 750px) {
  .construction_box .inner .left_box {
    width: 100%;
  }
}
.construction_box .inner .left_box ul {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 750px) {
  .construction_box .inner .left_box ul {
    flex-direction: column;
  }
}
.construction_box .inner .left_box ul li {
  position: relative;
}
.construction_box .inner .left_box ul li .txt {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.construction_box .inner .left_box ul li:last-child .txt {
  top: -30px;
}
.construction_box .inner .left_box ul li:first-child {
  margin-right: 20px;
}
@media (max-width: 750px) {
  .construction_box .inner .left_box ul li:first-child {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.construction_box .inner .left_box ul li .construction_img img {
  border-radius: 30px;
  max-width: 230px;
}
@media (max-width: 950px) {
  .construction_box .inner .left_box ul li .construction_img img {
    max-width: 100%;
  }
}
.construction_box .inner .left_box ul li .construction_img02 img {
  border-radius: 30px;
  max-width: 330px;
}
@media (max-width: 950px) {
  .construction_box .inner .left_box ul li .construction_img02 img {
    max-width: 100%;
  }
}
.construction_box .inner .right_box {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .construction_box .inner .right_box {
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
  }
}
.construction_box .inner .right_box h2 {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #ff6a6a, -1px -1px 0 #ff6a6a, -1px 1px 0 #ff6a6a, 1px -1px 0 #ff6a6a, 0px 1px 0 #ff6a6a, -1px 0 #ff6a6a, -1px 0 0 #ff6a6a, 1px 0 0 #ff6a6a;
}
.construction_box .inner .right_box .syouai {
  color: #fff;
  line-height: 1.5;
}

.voice_list01 {
  display: flex;
  max-width: 80%;
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  .voice_list01 {
    flex-direction: column;
    max-width: 100%;
    padding: 0 20px;
  }
}
.voice_list01 li:last-child p {
  margin-left: -20px;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .voice_list01 li:last-child p {
    margin-left: 0px;
    margin-top: 30px;
  }
}

.point_wapepr {
  overflow-x: hidden;
  background-image: url(../img/point/allbk01.png);
  background-size: cover;
}

.point_wapepr02 {
  overflow-x: hidden;
  background-image: url(../img/point/all_bk02.png);
  background-size: cover;
}

.pointbox01 {
  margin: 50px 0;
}
@media (max-width: 750px) {
  .pointbox01 {
    padding: 30px 20px;
  }
}
.pointbox01 .inner {
  background-color: #002261;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}
.pointbox01 .inner .point_img01 {
  position: absolute;
  right: -3vw;
  top: -100px;
  text-align: right;
}
@media (max-width: 750px) {
  .pointbox01 .inner .point_img01 {
    display: none;
  }
}
.pointbox01 .inner .point_img01 img {
  width: 60%;
  text-align: right;
}
.pointbox01 .inner .point_img02 {
  position: absolute;
  left: -130px;
  top: -100px;
}
@media (max-width: 1250px) {
  .pointbox01 .inner .point_img02 {
    display: none;
  }
}
.pointbox01 .inner .point_img02 img {
  width: 60%;
}
.pointbox01 .inner h2 {
  display: flex;
  align-items: center;
  color: #fff889;
  font-size: 6rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .pointbox01 .inner h2 {
    font-size: 2rem;
  }
}
.pointbox01 .inner h2 figure {
  margin-right: 0px;
  display: block;
}
.pointbox01 .inner h2 figure img {
  width: 60%;
  text-align: center;
  display: block;
}
.pointbox01 .inner p {
  font-size: 2rem;
  color: #fff;
  line-height: 1.5;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .pointbox01 .inner p {
    font-size: 1.6rem;
  }
}

.pointbox02 {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .pointbox02 {
    padding: 30px 20px;
  }
}
.pointbox02 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pointbox02 .inner h2 {
  color: #fff;
  font-size: 5rem;
  background-color: #3c3b7e;
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 750px) {
  .pointbox02 .inner h2 {
    font-size: 2rem;
  }
}
.pointbox02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 30px auto 0;
}
@media (max-width: 750px) {
  .pointbox02 .inner .flex_box {
    flex-direction: column-reverse;
  }
}
.pointbox02 .inner .flex_box p {
  font-size: 2rem;
  width: 55%;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .pointbox02 .inner .flex_box p {
    width: 100%;
    font-size: 1.6rem;
  }
}
.pointbox02 .inner .flex_box figure {
  width: 43%;
}
@media (max-width: 750px) {
  .pointbox02 .inner .flex_box figure {
    width: 100%;
    margin-bottom: 20px;
  }
}

.voice_list02 {
  display: flex;
  max-width: 80%;
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  .voice_list02 {
    flex-direction: column-reverse;
  }
}
.voice_list02 li:first-child {
  position: relative;
  z-index: 2;
}
.voice_list02 li:first-child p {
  margin-right: -20px;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .voice_list02 li:first-child p {
    margin-right: 0px;
    margin-top: 30px;
  }
}

.panel {
  padding-bottom: 100px;
}
@media (max-width: 750px) {
  .panel {
    padding-bottom: 150px;
  }
}

.point_list01 {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .point_list01 {
    flex-direction: column;
    padding: 0 20px;
  }
}
.point_list01 li {
  width: 48%;
}
@media (max-width: 750px) {
  .point_list01 li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.poricy_wapper {
  padding-bottom: 10vw;
}

@media (max-width: 750px) {
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}
.ac {
  margin-bottom: 100px;
}

.ac-parent {
  position: relative;
  background-color: #3c3b7e;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 4rem;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .ac-parent {
    flex-direction: column;
    font-size: 2rem;
  }
}

.ac-parent::after {
  content: url(../img/cost/open.png);
  /*横線*/
}
@media (max-width: 750px) {
  .ac-parent::after {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.ac-parent.open:after {
  content: url(../img/cost/non.png);
  /*横線*/
}

.cost_ttl_list {
  display: flex;
  width: 90%;
  margin: 50px auto 100px;
  justify-content: space-between;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .cost_ttl_list {
    flex-direction: column;
    margin: 50px auto 30px;
  }
}
.cost_ttl_list li {
  padding: 20px;
  text-align: center;
}
.cost_ttl_list .left {
  background-color: #61608d;
  color: #fff;
  width: 48%;
}
@media (max-width: 750px) {
  .cost_ttl_list .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cost_ttl_list .right {
  background-color: #3c3b7e;
  color: #fff;
  width: 48%;
}
@media (max-width: 750px) {
  .cost_ttl_list .right {
    width: 100%;
  }
}

.cost_txt_list {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 10px auto 0;
  justify-content: space-between;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .cost_txt_list {
    flex-direction: column;
  }
}
.cost_txt_list li {
  padding: 20px;
  text-align: center;
  width: 48%;
  font-weight: bold;
}
@media (max-width: 750px) {
  .cost_txt_list li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cost_txt_list .blu01 {
  background-color: #b4d0f1;
  color: #4b4b4b;
}
.cost_txt_list .blu02 {
  background-color: #e3f0ff;
  color: #4b4b4b;
}
.cost_txt_list .gry01 {
  background-color: #d9d9d9;
  color: #4b4b4b;
}
.cost_txt_list .gry02 {
  background-color: #f1f1f1;
  color: #4b4b4b;
}

.cost_txt_list_ttl02 {
  max-width: 90%;
  margin: 30px auto 0;
  font-size: 4rem;
  border-bottom: 3px solid #ffea00;
  padding-bottom: 15px;
}
.cost_txt_list_ttl02.mt50 {
  margin-top: 50px;
}

.flow_list_btn {
  display: flex;
}
@media (max-width: 750px) {
  .flow_list_btn {
    flex-direction: column;
  }
  .flow_list_btn li {
    line-height: 0;
  }
  .flow_list_btn li:last-child {
    margin-top: -1px;
  }
}

#contetn01,
#contetn02,
#contetn03,
#contetn04,
#contetn05,
#contetn06 {
  line-height: 0;
}

@media (max-width: 750px) {
  input[type=radio] {
    width: 20px !important;
    height: 20px;
  }
}

.cost_new_txt {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .cost_new_txt {
    margin-bottom: 20px;
  }
  .cost_new_txt img {
    width: 40%;
  }
}

.img_all_box {
  line-height: 0;
  text-align: center;
}

.tab {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.tab-list {
  display: flex;
}

.tab-menu {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  height: 50px;
  justify-content: center;
}

.tab-menu.left {
  justify-content: flex-start;
  padding-left: 5px;
}

.tab-menu.right {
  justify-content: flex-end;
  padding-right: 5px;
}

.content-box {
  display: none;
  width: 100%;
  margin-top: 25px;
}

.content-box img {
  display: block;
  height: auto;
  width: 100%;
}

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

.box07_2 {
  background-image: url(../img/top/box07_2_bk.png);
  background-size: cover;
  margin-top: -90px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.box07_2 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.box07_2 .inner h2 {
  text-align: center;
}
.box07_2 .inner ul {
  display: flex;
  align-items: flex-end;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .box07_2 .inner ul {
    margin-top: 0;
    flex-direction: column;
    padding: 0 20px;
  }
}

.box08_2 {
  background-image: url(../img/top/box08_2_bk.png);
  background-size: cover;
  margin-top: -125px;
  padding-top: 100px;
  padding-bottom: 150px;
}
.box08_2 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.box08_2 .inner h2 {
  text-align: center;
  transform: translateX(10%);
}
@media (max-width: 750px) {
  .box08_2 .inner h2 {
    transform: translateX(0%);
  }
}
.box08_2 .inner .box08_2_icon {
  position: absolute;
  left: 0;
  top: 150px;
  z-index: 3;
}
@media (max-width: 750px) {
  .box08_2 .inner .box08_2_icon {
    top: -50px;
    width: 100%;
    text-align: center;
  }
}
.box08_2 .inner .box08_2_icon img {
  width: 70%;
}
@media (max-width: 750px) {
  .box08_2 .inner .box08_2_icon img {
    width: 30%;
  }
}
.box08_2 .more {
  margin-top: 100px;
}

.box09_2 {
  background-image: url(../img/top/box09_2_bk.png);
  background-size: cover;
  margin-top: -105px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.box09_2 .more.top {
  margin-top: -90px;
}
.box09_2 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.box09_2 .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .box09_2 .inner ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.box09_2 .inner ul li {
  width: 48%;
}
@media (max-width: 750px) {
  .box09_2 .inner ul li {
    width: 100%;
  }
}
.box09_2 .inner ul li p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.sec_ttl {
  text-align: center;
  padding: 80px 0 0;
}
@media (max-width: 750px) {
  .sec_ttl {
    padding: 20px 30px 0;
  }
}

.pan {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .pan {
    margin: 20px auto;
    padding: 0 20px;
  }
}
.pan a {
  color: #333;
}

.se_plan_box02 {
  background-image: url(../img/plan/planbox02.png);
  background-size: cover;
  margin-top: -145px;
  padding-top: 150px;
  padding-bottom: 100px;
}
.se_plan_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.se_plan_box02 .inner h2 {
  text-align: center;
}
.se_plan_box02 .inner .sec_plan_list {
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .se_plan_box02 .inner .sec_plan_list {
    margin-bottom: 30px;
  }
}
.se_plan_box02 .inner .sec_plan_list.last {
  padding-bottom: 100px;
}

.pic {
  background-image: url(../img/pic.png);
  background-size: cover;
  margin-top: -145px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.pic.plan_footer {
  margin-top: 150px;
}
.pic.sec {
  background-image: url(../img/sec_pic_bk.png);
  position: relative;
}
.pic.recruit {
  margin-top: -120px;
  padding-top: 130px;
}
.pic .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pic .inner h2 {
  text-align: center;
}
.pic .inner .pic_list_01 {
  display: flex;
  margin: 50px auto;
}
@media (max-width: 750px) {
  .pic .inner .pic_list_01 {
    margin: 50px auto 20px;
    flex-direction: column;
    padding: 0 20px;
  }
  .pic .inner .pic_list_01 li {
    margin-bottom: 20px;
  }
}
.pic .inner .pic_list_02 {
  display: flex;
  margin: 0px auto;
}
@media (max-width: 750px) {
  .pic .inner .pic_list_02 {
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: space-between;
  }
  .pic .inner .pic_list_02 li {
    width: 48%;
  }
}

.slider03 {
  margin: 30px auto 0;
  width: 80%;
}
.slider03 .slick-next {
  width: 57px;
  height: 55px;
  right: -65px;
}
@media (max-width: 750px) {
  .slider03 .slick-next {
    right: 0;
    z-index: 100;
  }
}
.slider03 .slick-prev {
  width: 57px;
  height: 55px;
  left: -65px;
}
@media (max-width: 750px) {
  .slider03 .slick-prev {
    left: 0;
    z-index: 100;
  }
}
.slider03 .slick-next:before {
  background-image: url(../img/top/arrow03_right.png);
  width: 63px;
  height: 61px;
  content: "";
  display: block;
}
.slider03 .slick-prev:before {
  background-image: url(../img/top/arrow03_left.png);
  width: 63px;
  height: 61px;
  content: "";
  display: block;
}

.slider03 .slick-img {
  margin: 10px;
}

.slider03 .slick-img img {
  height: 228px;
  width: 100%;
  border: 2px solid #a5c9eb;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider04 {
  margin: 100px auto 200px;
}
@media (max-width: 750px) {
  .slider04 {
    margin: 30px auto 180px;
  }
  .slider04.voice {
    margin: 30px auto 200px;
  }
}
.slider04.mbno {
  margin: 20px auto 0px;
}
.slider04 .slider-img {
  margin: 0 10px;
}
.slider04 .slider-img img {
  height: auto;
  width: 100%;
  border: none;
}
.slider04 .slick-next {
  width: 57px;
  height: 55px;
  right: 13%;
}
.slider04 .slick-prev {
  width: 57px;
  height: 55px;
  left: 13%;
  z-index: 100;
}
.slider04 .slick-next:before {
  background-image: url(../img/top/arrow03_right.png);
  width: 63px;
  height: 61px;
  content: "";
  display: block;
}
@media (max-width: 750px) {
  .slider04 .slick-next:before {
    display: none;
  }
}
.slider04 .slick-prev:before {
  background-image: url(../img/top/arrow03_left.png);
  width: 63px;
  height: 61px;
  content: "";
  display: block;
}
@media (max-width: 750px) {
  .slider04 .slick-prev:before {
    display: none;
  }
}

.works {
  max-width: 1200px;
  margin: 0 auto;
}
.works.last {
  padding-bottom: 200px;
}

.slider05 {
  margin: 30px auto 0;
  width: 80%;
}
@media (max-width: 750px) {
  .slider05 {
    width: 100%;
  }
}
.slider05 .slick-next {
  width: 57px;
  height: 55px;
  right: -65px;
}
@media (max-width: 750px) {
  .slider05 .slick-next {
    display: none !important;
  }
}
.slider05 .slick-prev {
  width: 57px;
  height: 55px;
  left: -65px;
}
.slider05 .slick-next:before {
  background-image: url(../img/top/arrow03_right.png);
  width: 63px;
  height: 61px;
  content: "";
  display: block;
}
@media (max-width: 750px) {
  .slider05 .slick-next:before {
    display: none;
  }
}
.slider05 .slick-prev:before {
  background-image: url(../img/top/arrow03_left.png);
  width: 63px;
  height: 61px;
  content: "";
  display: block;
}
@media (max-width: 750px) {
  .slider05 .slick-prev:before {
    display: none;
  }
}

.slider05 .slick-img {
  margin: 10px;
}

.slider05 .slick-img img {
  height: auto;
  width: 100%;
  border: 0px solid #a5c9eb;
  border-radius: 0px;
}

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

.sec_company_box02 {
  background-image: url(../img/company/box02.png);
  background-size: cover;
  padding: 100px 0;
}
.sec_company_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec_company_box02 .inner h2 {
  text-align: center;
}
.sec_company_box02 .inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .sec_company_box02 .inner ul {
    flex-direction: column;
    padding: 0 20px;
  }
}
.sec_company_box02 .inner ul li {
  width: 48%;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .sec_company_box02 .inner ul li {
    width: 100%;
  }
}

.sec_company_box03 {
  background-image: url(../img/company/box03.png);
  background-size: cover;
  padding: 100px 0 200px;
}
@media (max-width: 750px) {
  .sec_company_box03 {
    padding: 30px 0 200px;
  }
}
.sec_company_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec_company_box03 .inner h2 {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .sec_company_box03 .inner h2 {
    text-align: center;
  }
  .sec_company_box03 .inner h2 img {
    width: 40%;
  }
}

.works_ttl {
  margin: 50px auto;
  padding: 30px 0;
  background-color: #eae2bd;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .works_ttl {
    font-size: 2rem;
    padding: 10px 0;
    margin: 30px auto 0;
  }
}

.flow_new {
  position: relative;
}
.flow_new .flow_mail {
  display: block;
  position: absolute;
  left: 27%;
  bottom: 27%;
  width: 15vw;
  height: 6vw;
  transform: translateX(-50%);
}
@media (max-width: 750px) {
  .flow_new .flow_mail {
    display: block;
    position: absolute;
    left: 27%;
    bottom: auto;
    width: 40vw;
    height: 15vw;
    transform: translateX(-50%);
    top: 33%;
  }
}
.flow_new .flow_line {
  display: block;
  position: absolute;
  left: 36%;
  bottom: 27%;
  width: 15vw;
  height: 6vw;
  transform: translateX(0%);
}
@media (max-width: 750px) {
  .flow_new .flow_line {
    display: block;
    position: absolute;
    left: 50%;
    bottom: auto;
    width: 40vw;
    height: 15vw;
    top: 33%;
  }
}
.flow_new .flow_tel {
  display: block;
  position: absolute;
  left: 20%;
  bottom: 9%;
  width: 30vw;
  height: 6vw;
  transform: translateX(0%);
}
@media (max-width: 750px) {
  .flow_new .flow_tel {
    display: block;
    position: absolute;
    left: 6%;
    bottom: auto;
    width: 83vw;
    height: 15vw;
    transform: translateX(0%);
    top: 43%;
  }
}

.ggooglemap iframe {
  width: 100%;
  margin: 30px 0;
}

.smart_box {
  max-width: 1200px;
  margin: 100px auto 0;
}

.smart_box02 {
  max-width: 1200px;
  margin: 0px auto;
}

.smart_btn {
  max-width: 1200px;
  margin: 100px auto 200px;
}
.smart_btn ul {
  display: flex;
  justify-content: space-around;
}
.smart_btn ul li {
  width: 35%;
}

.voice_case_box {
  max-width: 1200px;
  margin: 50px auto 200px;
}
.voice_case_box h2 {
  padding: 20px;
  background-color: #eae2bd;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .voice_case_box h2 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.voice_case_box .voice_case_box_flex {
  background-color: #fff;
  padding: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .voice_case_box .voice_case_box_flex {
    flex-direction: column;
    padding: 15px;
  }
}
.voice_case_box .voice_case_box_flex figure {
  width: 48%;
}
@media (max-width: 750px) {
  .voice_case_box .voice_case_box_flex figure {
    width: 100%;
  }
}
.voice_case_box .voice_case_box_flex .voice_case_txtbox {
  width: 48%;
}
@media (max-width: 750px) {
  .voice_case_box .voice_case_box_flex .voice_case_txtbox {
    width: 100%;
    margin-top: 20px;
  }
}
.voice_case_box .voice_case_box_flex .voice_case_txtbox p {
  line-height: 2;
  margin-bottom: 10px;
}

.slid_img {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 100px;
}
@media (max-width: 750px) {
  .slid_img {
    margin: 30px auto 10px;
  }
}

.top_flex_box {
  display: flex;
  justify-content: space-between;
  max-width: 870px;
  margin: 30px auto 0;
}
@media (max-width: 750px) {
  .top_flex_box {
    flex-direction: column;
    padding: 0 20px;
  }
}
.top_flex_box iframe {
  width: 58%;
}
@media (max-width: 750px) {
  .top_flex_box iframe {
    width: 100%;
  }
}
.top_flex_box .fb-page {
  margin: 20px auto;
  width: 38%;
}
@media (max-width: 750px) {
  .top_flex_box .fb-page {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .fb_iframe_widget iframe {
    margin-left: 20%;
  }
}
@media (max-width: 500px) {
  .fb_iframe_widget iframe {
    margin-left: 10%;
  }
}
@media (max-width: 400px) {
  .fb_iframe_widget iframe {
    margin-left: 0%;
  }
}

.waorks_flex_box {
  display: flex;
  flex-wrap: wrap;
}
.waorks_flex_box.voice_box {
  margin-bottom: 200px;
  margin-top: 30px;
}
.waorks_flex_box .slider-img {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 31%;
  margin: 0 1% 20px;
}
@media (max-width: 750px) {
  .waorks_flex_box .slider-img {
    width: 98%;
  }
}
.waorks_flex_box .slider-img a {
  color: #333;
}
.waorks_flex_box .slider-img .ttl_new {
  padding: 10px;
  line-height: 1.5;
}
.waorks_flex_box .slick-img {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 31%;
  margin: 0 1% 50px;
  position: relative;
}
@media (max-width: 750px) {
  .waorks_flex_box .slick-img {
    width: 98%;
  }
}
.waorks_flex_box .slick-img .pop {
  position: absolute;
  top: -13%;
  left: 2%;
  padding: 0.7em 1em 0.8em 1em;
  background-color: #a5c9eb;
  border-radius: 1.33333vw;
  color: #fff;
  font-size: 1.4rem;
  z-index: 2;
}
.waorks_flex_box .slick-img .pop:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1vw 1.4vw 0 1.4vw;
  border-color: #a5c9eb transparent transparent transparent;
  transform: translateX(-50%);
}
.waorks_flex_box .slick-img a {
  color: #333;
}
.waorks_flex_box .slick-img a img {
  border-radius: 15px;
  height: 228px;
  width: 324px;
  -o-object-fit: cover;
     object-fit: cover;
}
.waorks_flex_box .slick-img .ttl_new {
  padding: 10px;
  line-height: 1.5;
}

.voice_case_box01_new {
  background-color: #fff;
  max-width: 1200px;
  margin: 50px auto 150px;
  border: 2px solid #a5c9eb;
  border-radius: 10px;
}
.voice_case_box01_new .inner {
  padding: 30px 50px;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner {
    padding: 10px 20px;
  }
}
.voice_case_box01_new .inner h2 {
  border: 1px solid #4b4b4b;
  border-radius: 10px;
  padding: 10px;
  font-weight: bold;
}
.voice_case_box01_new .inner .img_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .img_box {
    flex-direction: column;
  }
}
.voice_case_box01_new .inner .img_box li:first-child {
  width: 40%;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .img_box li:first-child {
    width: 100%;
  }
}
.voice_case_box01_new .inner .img_box li:last-child {
  width: 50%;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .img_box li:last-child {
    width: 100%;
    margin-top: 30px;
  }
}
.voice_case_box01_new .inner .list_box {
  display: flex;
  flex-wrap: wrap;
}
.voice_case_box01_new .inner .list_box li {
  width: 45%;
  display: flex;
  box-shadow: 3px 0px 7px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  margin: 30px 0 0;
  font-weight: bold;
}
.voice_case_box01_new .inner .list_box li:nth-child(1) {
  margin-right: 5%;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .list_box li:nth-child(1) {
    margin-right: 0;
  }
}
.voice_case_box01_new .inner .list_box li:nth-child(3) {
  margin-right: 5%;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .list_box li:nth-child(3) {
    margin-right: 0;
  }
}
.voice_case_box01_new .inner .list_box li.none {
  box-shadow: none;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .list_box li.none {
    display: none;
  }
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .list_box li {
    width: 100%;
  }
}
.voice_case_box01_new .inner .list_box li h3 {
  padding: 20px;
  font-weight: bold;
  width: 35%;
  font-size: 2.4rem;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .list_box li h3 {
    font-size: 2rem;
    padding: 10px;
  }
}
.voice_case_box01_new .inner .list_box li p {
  font-size: 2.4rem;
  width: 65%;
  padding: 20px;
  font-weight: bold;
  text-align: left;
  background-color: #a5c9eb;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .voice_case_box01_new .inner .list_box li p {
    padding: 10px;
    font-size: 2rem;
    text-align: left;
  }
}

.thanks_box {
  margin-bottom: 300px;
}/*# sourceMappingURL=style.css.map */