@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.scrollin {
  -webkit-animation: fadeIn 0.6s ease-in-out forwards;
          animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.scrollin {
  -webkit-animation: fadeInLeft 0.6s ease-in-out forwards;
          animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.scrollin {
  -webkit-animation: fadeInRight 0.6s ease-in-out forwards;
          animation: fadeInRight 0.6s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(1em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(1em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@font-face {
  font-family: "Alata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/alata/v7/PbytFmztEwbIoceyzqYzQ1OW7l8.woff2) format("woff2");
  unicode-range: U+0030-0039, U+0041-007A;
}
/* latin-ext */
@font-face {
  font-family: "Alata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/alata/v7/PbytFmztEwbIocezzqYzQ1OW7l8.woff2) format("woff2");
  unicode-range: U+0030-0039, U+0041-007A;
}
/* latin */
@font-face {
  font-family: "Alata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/alata/v7/PbytFmztEwbIoce9zqYzQ1OW.woff2) format("woff2");
  unicode-range: U+0030-0039, U+0041-007A;
}
html {
  width: 100%;
}

body {
  font: 400 16px "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #040000;
  text-align: left;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.8;
  }
}

a {
  text-decoration: none;
  color: #040000;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

a[href*=tel] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  a[href*=tel] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}

#container_wrap {
  overflow: hidden;
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  #container_wrap {
    min-width: 1px;
  }
}

.section_wrap {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section_wrap {
    padding: 60px 0;
  }
}

.inner {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.inner_lg {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.inner_sm {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: 1000px;
  top: 0;
  left: 0;
  background-color: #EDE6CD;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .header {
    min-width: 1px;
    box-shadow: 0 0 3px rgba(4, 0, 0, 0.5);
  }
}
.header_ttl {
  margin-left: 5.333vw;
  width: 134px;
}
@media screen and (max-width: 1200px) {
  .header_ttl {
    width: 100px;
  }
}
.header_ttl a {
  display: block;
}
@media screen and (max-width: 767px) {
  .header_ttl a {
    width: auto;
  }
}
.header_ttl a img {
  display: block;
}

.h_soudan {
  display: block;
  height: 100px;
  width: 210px;
  background: #162789 url(../images/icon_link.svg) no-repeat 25% 50%/15px 15px;
  color: #EFEB42;
  text-align: center;
  font-weight: 700;
  padding-top: 42px;
  padding-left: 30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .h_soudan {
    color: #162789;
    margin: auto;
    width: 100%;
    height: 80px;
    background: #EFEB42 url(../images/icon_link_b.svg) no-repeat 34% 50%/20px 120px;
    padding-top: 30px;
    padding-left: 45px;
    font-size: 1.12rem;
  }
}
.h_soudan:hover {
  opacity: 0.7;
}

.h_soudan2 {
  display: block;
  height: 100px;
  width: 360px;
  background: #162789;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding-top: 42px;
  line-height: 1;
  float: right;
}
@media screen and (max-width: 767px) {
  .h_soudan2 {
    color: #162789;
    margin: auto;
    width: 100%;
    height: 80px;
    background: #fff;
    padding-top: 30px;
    padding-left: 0;
    font-size: 4vw;
    float: none;
  }
}
.h_soudan2:hover {
  opacity: 0.7;
}

.h_tel {
  display: block;
  height: 100px;
  width: 360px;
  background: #E5E34B;
  text-align: center;
  font-weight: 700;
  padding-top: 36px;
  line-height: 1;
  float: left;
  text-align: center;
  font-size: 1.87rem;
}
.h_tel .min {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .h_tel .min {
    font-size: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .h_tel {
    margin-bottom: 15px;
    color: #162789;
    font-size: 7vw;
    width: 100%;
    height: 80px;
    float: none;
    padding-top: 28px;
  }
}

.menu-trigger {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #162789;
    z-index: 1002;
    cursor: pointer;
  }
  .menu-trigger span {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    top: calc(50% - 1px);
    left: calc(50% - 14px);
    transition: all 0.3s ease;
  }
  .menu-trigger span::before, .menu-trigger span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    top: -10px;
    left: 0;
    transform-origin: center;
    transition: all 0.3s ease;
  }
  .menu-trigger span::after {
    top: 10px;
    left: 0;
  }
  .menu-trigger.active span {
    background-color: rgba(255, 255, 255, 0);
  }
  .menu-trigger.active span::before, .menu-trigger.active span::after {
    top: 0;
  }
  .menu-trigger.active span::before {
    transform: rotate(45deg);
  }
  .menu-trigger.active span::after {
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  #gnavi {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: rgba(22, 39, 137, 0.9);
    padding: 80px 7vw 0;
  }
  #gnavi.active {
    top: 0;
    /* top    : 60px; */
    opacity: 1;
  }
}
#gnavi ul {
  display: none;
}
#gnavi ul li {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#gnavi ul li a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi ul {
    margin-bottom: 40px;
    display: block;
    padding: 30px 0 0;
  }
}

#overlay {
  display: none;
}

.footer {
  background-color: #F5F5F5;
  padding: 120px 0 90px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 40px;
  }
}
.footer .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .information {
    margin-bottom: 2em;
  }
}
.footer .inner_lg .information > img {
  display: block;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .information > img {
    max-width: 60%;
  }
}
.footer .inner_lg .information strong {
  display: block;
  font-size: 1.333em;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .information strong {
    font-size: 1.2em;
  }
}
.footer .inner_lg .information p {
  font-weight: 400;
  line-height: 2.1;
  margin-bottom: 1.5em;
}
.footer .inner_lg .information ul {
  display: flex;
  align-items: center;
}
.footer .inner_lg .information ul li {
  margin-right: 2em;
}
.footer .inner_lg .information ul li a:hover img {
  transform: translateY(-3px);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .list_footer {
    width: 100%;
  }
}
.footer .inner_lg .list_footer li {
  margin-bottom: 1.666em;
}
.footer .inner_lg .list_footer li:last-child {
  margin-bottom: 0;
}
.footer .inner_lg .list_footer li a {
  display: block;
  position: relative;
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  width: 400px;
  max-width: 100%;
  height: 70px;
  line-height: 68px;
  border: 1px solid #040000;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .list_footer li a {
    height: 50px;
    line-height: 48px;
  }
}
.footer .inner_lg .list_footer li a::before {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  border: 1px solid #040000;
  transform: scale(0.95);
  transition: 0.3s;
  opacity: 0;
}
.footer .inner_lg .list_footer li a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(../images/icon_arrow_black.svg) no-repeat center/contain;
  right: 25px;
  top: calc(50% - 5px);
  transition: 0.3s;
}
.footer .inner_lg .list_footer li a.bg_black {
  background-color: #040000;
  color: #fff;
}
.footer .inner_lg .list_footer li a.bg_black::before {
  border-color: #fff;
}
.footer .inner_lg .list_footer li a.bg_black::after {
  background-image: url(../images/icon_arrow_white.svg);
}
.footer .inner_lg .list_footer li a.bg_blue {
  border-color: #162789;
  background-color: #162789;
  color: #fff;
}
.footer .inner_lg .list_footer li a.bg_blue::before {
  border-color: #fff;
}
.footer .inner_lg .list_footer li a.bg_blue::after {
  background-image: url(../images/icon_arrow_white.svg);
}
.footer .inner_lg .list_footer li a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.footer .inner_lg .list_footer li a:hover::after {
  right: 15px;
}

.bnr_monitor {
  display: block;
  width: 200px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .bnr_monitor {
    display: none;
    width: 90%;
    margin: auto;
    left: 0;
    right: 0;
  }
}

.main_visual {
  width: 100%;
  background: #EDE6CD;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .main_visual {
    margin-top: 60px;
    padding-bottom: 180px;
  }
}
.main_visual .mv_slider {
  width: 80%;
  margin: 0 0 0 20%;
  display: none;
  /* &.sp {
  		@include mq(md) {
  			display: block;
  		}
  	}
  */
  /* .slide_img {
  	height    : 100%;
  	background: no-repeat center / cover;
  } */
}
.main_visual .mv_slider.slick-initialized {
  display: block;
}
.main_visual .mv_slider.slick-initialized.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .main_visual .mv_slider.slick-initialized.sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .main_visual .mv_slider.slick-initialized.pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .main_visual .mv_slider {
    margin: 0;
    width: 100%;
  }
}
.main_visual .mv_slider .slick-track,
.main_visual .mv_slider .slick-list {
  height: 100%;
}
.main_visual .mv_slider .slick-dots {
  width: 20px;
  bottom: 50%;
  right: 20px;
}
.main_visual .mv_slider .slick-dots li {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 10px;
}
.main_visual .mv_slider .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: 0.3s;
}
.main_visual .mv_slider .slick-dots li button::before {
  content: none;
}
.main_visual .mv_slider .slick-dots li.slick-active button {
  background-color: #162789;
}
.main_visual .mv_slider .slick-dots li:hover button {
  background-color: rgba(22, 39, 137, 0.7);
}
.main_visual .mv_inner {
  position: absolute;
  left: 10%;
  z-index: 1;
  top: 18%;
  width: 40%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .main_visual .mv_inner {
    left: 5vw;
    bottom: 35px;
    width: 85%;
    top: inherit;
  }
}
.scroll_line {
  position: absolute;
  background: #fff;
  width: 1px;
  height: 100px;
  left: 10%;
  z-index: 30;
  bottom: 3%;
}
@media screen and (max-width: 767px) {
  .scroll_line {
    bottom: inherit;
    top: 80%;
    height: 10vh;
    left: 5vw;
    display: none;
  }
}
.scroll_line:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 10px;
  height: 10px;
  top: 0;
  right: -5px;
  border-radius: 50%;
  -webkit-animation: ball 4s cubic-bezier(0.42, 0, 0.33, 1.06) 0.3s 1 forwards;
          animation: ball 4s cubic-bezier(0.42, 0, 0.33, 1.06) 0.3s 1 forwards;
  transition: 5s;
}
@media screen and (max-width: 767px) {
  .scroll_line:before {
    width: 5px;
    height: 5px;
    right: -2.5px;
  }
}

@-webkit-keyframes ball {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes ball {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.section_00 {
  padding: 100px 0 0;
  background-color: #EDE6CD;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section_00 {
    padding: 0;
  }
}
.section_00 img {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
}

.section_01 {
  position: relative;
  z-index: 1;
  background-color: #EDE6CD;
}
.section_01 .inner {
  position: relative;
}
.section_01 .ttl_cmn_02 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .section_01 .ttl_cmn_02 {
    margin-bottom: 30px;
  }
}
.section_01 .ttl_highspec {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #162789;
}
@media screen and (max-width: 767px) {
  .section_01 .ttl_highspec {
    margin-bottom: 40px;
    font-size: 5.5vw;
  }
}
.section_01 .text {
  text-align: center;
  line-height: 2;
  margin-bottom: 70px;
  color: #162789;
}
@media screen and (max-width: 767px) {
  .section_01 .text {
    text-align: left;
    width: 80%;
    font-size: 1.07rem;
    margin: 0 auto 70px;
  }
}
.section_01 .sec1_img1 {
  position: absolute;
  width: 270px;
  top: 15%;
  left: -100px;
}
@media screen and (max-width: 767px) {
  .section_01 .sec1_img1 {
    width: 20%;
    left: 0;
    top: 20%;
    opacity: 0.5;
    z-index: -1;
  }
}
.section_01 .sec1_img2 {
  position: absolute;
  width: 270px;
  bottom: 15%;
  right: -100px;
}
@media screen and (max-width: 767px) {
  .section_01 .sec1_img2 {
    width: 20%;
    right: 0;
    bottom: 10%;
    opacity: 0.5;
    z-index: -1;
  }
}

.section_02 {
  background-color: #EDE6CD;
}
.section_02 .about_wrap {
  position: relative;
  padding: 60px 0;
  margin-bottom: 115px;
}
@media screen and (max-width: 767px) {
  .section_02 .about_wrap {
    padding: 0;
    margin-bottom: 80px;
  }
}
.section_02 .about_wrap .image {
  position: absolute;
  width: 58%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .section_02 .about_wrap .image {
    position: static;
    width: auto;
    margin: 0 -15px;
  }
}
.section_02 .about_wrap .text {
  position: relative;
  background-color: #F8F8F8;
  width: 49%;
  margin-left: auto;
  padding: 65px 50px;
  z-index: 1;
  min-height: 340px;
}
@media screen and (max-width: 767px) {
  .section_02 .about_wrap .text {
    width: 95%;
    margin: -30px auto 0;
    padding: 30px 15px 50px;
    min-height: inherit;
  }
}
.section_02 .about_wrap .text h3 {
  letter-spacing: 0;
  color: #162789;
  font-size: 1.75rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section_02 .about_wrap .text h3 {
    font-size: 5.5vw;
  }
}
.section_02 .about_wrap .text p {
  font-size: 0.93rem;
  line-height: 1.8;
  letter-spacing: 0;
}
.section_02 .about_wrap .text img {
  width: 325px;
  position: absolute;
  right: -30px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .section_02 .about_wrap .text img {
    width: 50vw;
    right: -10px;
  }
}
.section_02 .lineup_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.section_02 .lineup_wrap .box {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .section_02 .lineup_wrap .box {
    width: 100%;
    margin: 0 auto 50px;
  }
}
.section_02 .lineup_wrap .image {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .section_02 .lineup_wrap .image {
    margin-bottom: 30px;
  }
}
.section_02 .lineup_wrap .lineup_room {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.section_02 .lineup_wrap .lineup_room li {
  width: 43.5%;
}
.section_02 .lineup_wrap .lineup_room li:nth-child(2) img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .section_02 .lineup_wrap .lineup_room li:nth-child(2) img {
    margin-top: 15px;
  }
}
.section_02 .lineup_wrap .lineup_room li p {
  width: 92px;
  line-height: 18px;
  height: 20px;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  text-align: center;
  background-color: #162789;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 1.5em;
}
.section_02 .lineup_wrap .text .house_catch {
  color: #162789;
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.section_02 .lineup_wrap .text .price {
  font-weight: 700;
  font-size: 1.87rem;
}
.section_02 .lineup_wrap .text .price .num {
  font-size: 3.12rem;
  font-family: "Alata", sans-serif;
}
.section_02 .lineup_wrap .text .list_point {
  border-bottom: 1px solid #162789;
  margin-bottom: 1.333em;
}
.section_02 .lineup_wrap .text .list_point li {
  border-top: 1px solid #162789;
  padding: 28px 0;
  font-size: 0.93rem;
}
.section_02 .lineup_wrap .text .list_point li dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.section_02 .lineup_wrap .text .list_point li dl dt {
  position: relative;
  width: 145px;
}
@media screen and (max-width: 767px) {
  .section_02 .lineup_wrap .text .list_point li dl dt {
    width: 130px;
  }
}
.section_02 .lineup_wrap .text .list_point li dl dt .en {
  color: #162789;
  font-size: 1.12rem;
  font-weight: 700;
}
.section_02 .lineup_wrap .text .list_point li dl dd {
  width: calc(100% - 145px);
  text-indent: -4px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .section_02 .lineup_wrap .text .list_point li dl dd {
    width: calc(100% - 130px);
  }
}
.section_02 .lineup_wrap .text .list_point li dl dd::before {
  content: ":";
  display: inline-block;
  margin-right: 0.2em;
}
.section_02 .lineup_wrap .text .att {
  font-size: 0.73rem;
}
.section_02 .yb_box {
  max-width: 980px;
  width: 100%;
  margin: 80px auto 0;
  position: relative;
}
.section_02 .yb_box::before {
  content: "";
  display: block;
  padding: 56.2% 0 0;
}
.section_02 .yb_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_03 {
  background: #EDE6CD;
  position: relative;
  z-index: 1;
  padding: 100px 0 125px;
  background: url(../images/bg_grand.jpg) no-repeat center/cover;
}
.section_03::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 39, 137, 0.5);
  top: 0;
  left: 0;
}
.section_03 .inner {
  position: relative;
  z-index: 1;
}
.section_03 .m_title {
  max-width: 600px;
  text-align: center;
  margin: 0 auto 80px;
  color: #fff;
}
.section_03 .m_title img {
  margin-bottom: 30px;
  width: 600px;
  height: 210px;
}
@media screen and (max-width: 767px) {
  .section_03 .m_title img {
    width: 100%;
    min-height: 150px;
    height: auto;
    margin-bottom: 20px;
  }
}
.section_03 .m_title .tokuten {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section_03 .m_title .tokuten {
    font-size: 4.5vw;
  }
}
.section_03 .list_present {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section_03 .list_present {
    margin-bottom: 30px;
  }
}
.section_03 .list_present li {
  width: 32%;
  position: relative;
}
.section_03 .list_present li:not(:first-child) {
  margin-left: 4%;
}
@media screen and (max-width: 1200px) {
  .section_03 .list_present li {
    width: 32.5%;
  }
  .section_03 .list_present li:not(:first-child) {
    margin-left: 2.5%;
  }
}
@media screen and (max-width: 767px) {
  .section_03 .list_present li {
    width: 90%;
    margin: 0 auto 50px;
  }
  .section_03 .list_present li:not(:first-child) {
    margin-left: auto;
  }
}
.section_03 .list_present li::before {
  content: "";
  display: block;
  padding: 63.2% 0 0 0;
  background: url(../images/monitor_waku.svg) no-repeat center/contain;
}
.section_03 .list_present li .box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.section_03 .list_present li .box .num {
  font-family: "Alata", sans-serif;
  font-size: 5.25rem;
  color: #EDE6CD;
  position: absolute;
  z-index: 1;
  top: -60px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .section_03 .list_present li .box .num {
    font-size: 20vw;
  }
}
.section_03 .list_present li .box .txt {
  width: 100%;
  font-size: 1.14rem;
  font-weight: 700;
  color: #162789;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .section_03 .list_present li .box .txt {
    font-size: 4.5vw;
  }
}
.section_03 .list_present li .box .txt2 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #162789;
}
@media screen and (max-width: 767px) {
  .section_03 .list_present li .box .txt2 {
    font-size: 4.5vw;
  }
}
.section_03 .list_present li .box .price {
  display: inline-block;
  background: #162789;
  color: #EFEB42;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  padding: 2px 5px;
}
@media screen and (max-width: 767px) {
  .section_03 .list_present li .box .price {
    font-size: 4vw;
  }
}
.section_03 .list_present li .box .price .big {
  font-size: 1.87rem;
}
@media screen and (max-width: 767px) {
  .section_03 .list_present li .box .price .big {
    font-size: 6.5vw;
  }
}

.section_04 {
  background: #EDE6CD;
  position: relative;
  z-index: 1;
  padding: 100px 0 125px;
}
.section_04 .list_three {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 60px;
}
.section_04 .list_three li {
  width: calc(33.3333% - 33.3333333333px);
}
.section_04 .list_three li:nth-child(2) {
  padding-top: 40px;
}
.section_04 .list_three li:nth-child(3) {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .section_04 .list_three li {
    width: auto;
    padding: 0 !important;
  }
}
.section_04 .list_three li img {
  display: block;
  margin-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .section_04 .list_three li img {
    margin-bottom: 15px;
  }
}
.section_04 .list_three li h3 {
  position: relative;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  min-height: 70px;
  line-height: 1.7;
  padding-top: 22px;
  margin-bottom: 1em;
  z-index: 1;
  color: #162789;
}
.section_04 .list_three li p {
  font-size: 0.87rem;
  line-height: 1.7;
}
.section_04 .btn_monitor.yel {
  margin-bottom: 120px;
}

.section_05 {
  position: relative;
  z-index: 1;
  padding: 100px 0 125px;
}
@media screen and (max-width: 767px) {
  .section_05 {
    padding: 60px 0;
  }
}
.section_05 .about_wrap {
  position: relative;
  padding: 60px 0 0;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .section_05 .about_wrap {
    padding: 0;
  }
}
.section_05 .about_wrap .image {
  position: absolute;
  width: 58%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .section_05 .about_wrap .image {
    position: static;
    width: auto;
    margin: 0 -15px;
  }
}
.section_05 .about_wrap .text {
  position: relative;
  background-color: #EDE6CD;
  width: 49%;
  margin-left: auto;
  padding: 65px 50px;
  z-index: 1;
  min-height: 340px;
}
@media screen and (max-width: 767px) {
  .section_05 .about_wrap .text {
    width: 95%;
    margin: -30px auto 0;
    padding: 30px 15px 50px;
    min-height: inherit;
  }
}
.section_05 .about_wrap .text h3 {
  letter-spacing: 0;
  color: #162789;
  font-size: 1.75rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section_05 .about_wrap .text h3 {
    font-size: 5vw;
  }
}
.section_05 .about_wrap .text p {
  font-size: 0.93rem;
  line-height: 1.8;
  letter-spacing: 0;
}
.section_05 .about_wrap .text img {
  width: 325px;
  position: absolute;
  right: -30px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .section_05 .about_wrap .text img {
    width: 50vw;
    right: -10px;
  }
}

.section_06 {
  position: relative;
  z-index: 1;
  background: #EDE6CD;
  padding: 0 0 125px;
}
@media screen and (max-width: 767px) {
  .section_06 {
    padding: 0 0 60px;
  }
}
.section_06 .list_feature {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .section_06 .list_feature {
    margin: 0 auto 60px;
  }
}
.section_06 .list_feature li {
  width: calc(33.3333% - 33.3333333333px);
}
.section_06 .list_feature li:nth-child(2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .section_06 .list_feature li:nth-child(2) {
    margin-top: 0;
  }
}
.section_06 .list_feature li:nth-child(3) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .section_06 .list_feature li:nth-child(3) {
    margin-top: 0;
  }
}
.section_06 .list_feature li:nth-child(5) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .section_06 .list_feature li:nth-child(5) {
    margin-top: 0;
  }
}
.section_06 .list_feature li:nth-child(6) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .section_06 .list_feature li:nth-child(6) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .section_06 .list_feature li {
    width: auto;
    padding: 0 !important;
  }
}
.section_06 .list_feature li img {
  display: block;
  margin-bottom: 25px;
}
.section_06 .list_feature li p {
  font-size: 0.93rem;
}
.section_06 .list_feature li h3 {
  position: relative;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  min-height: 70px;
  line-height: 1.7;
  padding-top: 22px;
  margin-bottom: 1em;
  z-index: 1;
}
.section_06 .list_feature li h3::after {
  content: attr(data-num);
  position: absolute;
  font-size: 5.75rem;
  font-family: "Alata", sans-serif;
  color: #F8F8F8;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-weight: 400;
  line-height: 0.8;
}
.section_06 .list_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section_06 .list_link {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .section_06 .list_link li:first-child {
    margin-bottom: 30px;
  }
}

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

.monitor_cond {
  width: 100%;
  max-width: 930px;
  margin: auto;
  background: #fff;
  padding: 65px 50px 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .monitor_cond {
    padding: 65px 15px 10px;
  }
}
.monitor_cond .ttl {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  background: #162789;
  color: #fff;
  width: 550px;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 700;
  line-break: 1;
  padding: 3px 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .monitor_cond .ttl {
    width: 90%;
  }
}
.monitor_cond .ttl::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 36px;
  right: 70px;
  bottom: -15px;
  background: url(../images/icon_fukidashi.svg) center center/contain no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .monitor_cond .ttl::after {
    z-index: -1;
  }
}
.monitor_cond ul {
  width: 100%;
}
.monitor_cond ul li {
  width: 100%;
  font-size: 1.12rem;
  font-weight: 700;
  color: #222856;
  padding: 0 0 20px 40px;
  position: relative;
  line-height: 2;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .monitor_cond ul li {
    font-size: 4vw;
  }
}
.monitor_cond ul li::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../images/icon_att.svg) center center/contain no-repeat;
  left: 0;
  top: 3px;
}
.monitor_cond ul li:not(.monitor_cond ul li:last-child) {
  border-bottom: 1px dashed #162789;
}
.monitor_cond .ill_quality1 {
  position: absolute;
  width: 117px;
  left: -50px;
  bottom: -45px;
}
@media screen and (max-width: 767px) {
  .monitor_cond .ill_quality1 {
    width: 20%;
    left: -10px;
  }
}
.monitor_cond .ill_quality2 {
  position: absolute;
  width: 117px;
  right: -60px;
  bottom: -50px;
}
@media screen and (max-width: 767px) {
  .monitor_cond .ill_quality2 {
    width: 20%;
    right: -10px;
  }
}

.image_wrap {
  position: relative;
  padding: 115px 0;
  text-align: center;
}
.image_wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 39, 137, 0.5);
  top: 0;
  left: 0;
}
.image_wrap.bg_contact {
  background: url(../images/bg_contact.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .image_wrap.bg_contact {
    padding: 90px 0;
  }
}
.image_wrap.bg_contact::before {
  background-color: rgba(35, 24, 21, 0.5);
}
.image_wrap.bg_contact .en_ttl {
  position: absolute;
  font-family: "Alata", sans-serif;
  font-size: 6.25rem;
  text-align: center;
  left: 0;
  right: 0;
  top: 90px;
  display: block;
  line-height: 1;
  color: rgba(237, 230, 205, 0.5);
}
@media screen and (max-width: 767px) {
  .image_wrap.bg_contact .en_ttl {
    font-size: 16vw;
    top: 84px;
  }
}
.image_wrap.bg_contact .ttl {
  font-size: 2.12rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .image_wrap.bg_contact .ttl {
    font-size: 7vw;
  }
}
.image_wrap.bg_grand {
  background: url(../images/bg_grand.jpg) no-repeat center/cover;
}
.image_wrap.bg_grand .wai {
  font-size: 2.12rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 30px;
  line-height: 1;
  color: #EFEB42;
  position: relative;
}
@media screen and (max-width: 767px) {
  .image_wrap.bg_grand .wai {
    font-size: 5vw;
  }
}
.image_wrap.bg_grand .plan_name {
  position: relative;
  z-index: 2;
  width: 300px;
  margin: 0 auto 30px;
  background: #fff;
  padding: 5px;
  color: #162789;
  font-weight: 700;
}
.image_wrap.bg_grand .plan_name::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background: #162789;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  z-index: 0;
}
.image_wrap.bg_grand .plan_name span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 5px;
  background: #fff;
}
.image_wrap.bg_grand .ttl {
  position: relative;
  z-index: 2;
  font-size: 1.75rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .image_wrap.bg_grand .ttl {
    font-size: 5vw;
  }
}
.image_wrap.bg_grand .ttl .en {
  font-family: "Alata", sans-serif;
  font-size: 6.25rem;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .image_wrap.bg_grand .ttl .en {
    font-size: 16vw;
  }
}
.image_wrap.bg_oubo {
  background: url(../images/bg_oubo.jpg) no-repeat center/cover;
}
.image_wrap.bg_oubo .oubo {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #EFEB42;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .image_wrap.bg_oubo .oubo {
    font-size: 6vw;
  }
}

.map {
  position: relative;
  overflow: hidden;
}
.map::before {
  content: "";
  display: block;
  height: 390px;
}
@media screen and (max-width: 767px) {
  .map::before {
    height: 250px;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_cmn_02 {
  display: block;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 50px 0 30px;
  margin-bottom: 1.5rem;
  z-index: 1;
  color: #162789;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 5vw;
    padding: 35px 0 0;
    margin-bottom: 50px;
  }
}
.ttl_cmn_02::before {
  content: attr(data-title);
  z-index: -1;
  position: absolute;
  font-size: 7.8rem;
  line-height: 1;
  color: #F7F8F8;
  text-align: center;
  line-height: 0.8;
  font-weight: 400;
  top: 0;
  left: 50%;
  width: 100%;
  opacity: 0.5;
  font-family: "Alata", sans-serif;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02::before {
    font-size: 18vw;
  }
}
.ttl_cmn_02.uline::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #162789;
  left: calc(50% - 17.5px);
  bottom: 0;
}
.ttl_cmn_02__image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.12rem;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02__image {
    padding-top: 50px;
  }
}
.ttl_cmn_02__image img {
  display: inline-block;
  margin-right: 5px;
}
.ttl_cmn_02__image::before {
  content: "";
  width: 790px;
  height: 131px;
  background: url(../images/ttl_jigsaw.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02__image::before {
    width: 300px;
    height: 81px;
  }
}

.ttl_cmn_03 {
  text-align: center;
  position: relative;
  font-size: 1.8rem;
  padding-bottom: 25px;
  margin-bottom: 1.4em;
  line-height: 1.5;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 700;
}
.ttl_cmn_03::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #162789;
  left: 50%;
  bottom: 0;
  transform: translateY(-50%);
}
.ttl_cmn_03 b {
  display: inline-block;
  color: #162789;
  font-size: 1.6em;
  font-weight: normal;
}

.btn_monitor {
  width: 280px;
  height: 55px;
  line-height: 55px;
  border: 1px #162789 solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.87rem;
  text-align: center;
  padding-left: 10px;
  color: #162789;
  position: relative;
  margin: auto;
}
.btn_monitor img {
  width: 13px;
  margin-right: 5px;
}
.btn_monitor::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 55px;
  background: #fff;
  left: 3px;
  top: 3px;
  z-index: -1;
}
.btn_monitor::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 1px;
  background: #162789;
  right: -20px;
  top: 50%;
  transition: 0.3s;
}
.btn_monitor.yel::after {
  background: #EFEB42;
}
.btn_monitor:hover::before {
  transition: 0.3s;
  right: -10px;
}

.btn_monitor2 {
  width: 320px;
  height: 55px;
  line-height: 55px;
  border: 1px #162789 solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.87rem;
  text-align: center;
  /* padding-left   : 10px; */
  color: #162789;
  position: relative;
  margin: auto;
}
.btn_monitor2 img {
  width: 13px;
  margin-right: 5px;
}
.btn_monitor2::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 55px;
  background: #fff;
  left: 3px;
  top: 3px;
  z-index: -1;
}
.btn_monitor2::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 1px;
  background: #162789;
  right: -20px;
  top: 50%;
  transition: 0.3s;
}
.btn_monitor2.yel::after {
  background: #EFEB42;
}
.btn_monitor2:hover::before {
  transition: 0.3s;
  right: -10px;
}

.m0 {
  margin-bottom: 0;
}

.table_form {
  width: 100%;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .table_form {
    display: block;
  }
  .table_form thead,
.table_form tbody,
.table_form tr,
.table_form th,
.table_form td {
    display: block;
    width: 100%;
  }
}
.table_form th {
  width: 250px;
  font-size: 1rem;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .table_form th {
    font-size: 1.1em;
    width: 100%;
    padding: 15px 0 0;
    display: block;
  }
}
.table_form th.req {
  position: relative;
}
.table_form th.req::after {
  content: "必須";
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 23px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  background-color: #040000;
  font-size: 0.9em;
  right: 0;
  top: calc(50% - 11.5px);
}
@media screen and (max-width: 767px) {
  .table_form th.req::after {
    position: relative;
    margin-left: 15px;
    right: auto;
    top: auto;
  }
}
.table_form td {
  padding: 12px 0 12px 7%;
}
@media screen and (max-width: 767px) {
  .table_form td {
    padding-left: 0;
  }
}

.btn_more {
  display: inline-block;
  font-size: 1.2em;
  color: #162789;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  line-height: 1.5;
  padding-right: 25px;
  background: url(../images/icon_arrow_black.svg) no-repeat center right/12px auto;
  border-bottom: 2px solid transparent;
}
.btn_more:hover {
  border-bottom: 2px solid #162789;
}

input[type=submit].btn_submit {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  border-radius: 0;
  border: 0 none;
  cursor: pointer;
  display: block;
  width: 400px;
  max-width: 100%;
  height: 80px;
  line-height: 78px;
  color: #fff;
  background-color: #162789;
  border: 1px solid #162789;
  margin: auto;
  font-size: 1.2em;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  input[type=submit].btn_submit {
    height: 60px;
    line-height: 58px;
  }
}
input[type=submit].btn_submit:hover {
  background-color: #fff;
  color: #162789;
}

.table_form input[type=text],
.table_form input[type=email],
.table_form input[type=tel],
.table_form select,
.table_form textarea {
  -webkit-appearance: none;
  outline: none;
  border: 0 none;
  border-radius: 0;
  box-shadow: 0 0 0 transparent;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  margin: 0;
  padding: 15px;
  border: 1px solid #040000;
  width: 100%;
}
.table_form input[type=date] {
  border: 1px solid #040000;
  border-radius: 0;
  font-size: 1.6rem;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  padding: 15px;
}
.table_form select {
  width: auto;
  padding-right: 50px;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  background: url(../images/icon_select.svg) no-repeat center right 10px;
}
.table_form .tel01,
.table_form .tel02,
.table_form .tel03 {
  display: inline-block;
  max-width: 26%;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .table_form .tel01,
.table_form .tel02,
.table_form .tel03 {
    width: 30%;
    margin: 0 5px;
  }
}
.table_form .tel01:first-child,
.table_form .tel02:first-child,
.table_form .tel03:first-child {
  margin-left: 0;
}
.table_form .tel01:last-child,
.table_form .tel02:last-child,
.table_form .tel03:last-child {
  margin-right: 0;
}
.table_form .date {
  display: block;
  width: 50%;
  margin-bottom: 1em;
}
.table_form .zip {
  display: inline-block;
  width: 200px;
  margin-left: 10px;
}
.table_form .pref {
  display: block;
  width: 200px;
  margin-top: 1em;
}
.table_form .pref select {
  width: 100%;
}
.table_form .city,
.table_form .addr {
  display: block;
  margin-top: 1em;
}
.table_form #zip {
  width: 10em;
  margin-bottom: 10px;
}
.table_form .schedule,
.table_form .showroom,
.table_form .season {
  display: block;
  padding: 15px 0;
}
.table_form .schedule .wpcf7-list-item,
.table_form .showroom .wpcf7-list-item,
.table_form .season .wpcf7-list-item {
  display: block;
  margin: 0 0 0.5em;
}
.table_form .schedule .wpcf7-list-item.last,
.table_form .showroom .wpcf7-list-item.last,
.table_form .season .wpcf7-list-item.last {
  margin: 0;
}
.table_form .schedule label,
.table_form .showroom label,
.table_form .season label {
  display: inline-block;
  cursor: pointer;
}
.table_form .schedule label input,
.table_form .showroom label input,
.table_form .season label input {
  display: none;
}
.table_form .schedule label input:checked + span::after,
.table_form .showroom label input:checked + span::after,
.table_form .season label input:checked + span::after {
  transform: scale(1);
}
.table_form .schedule label span,
.table_form .showroom label span,
.table_form .season label span {
  display: block;
  position: relative;
  padding-left: 40px;
}
.table_form .schedule label span::before,
.table_form .showroom label span::before,
.table_form .season label span::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #040000;
  border-radius: 50%;
  left: 0;
  top: calc(50% - 11px);
  transition: 0.3s;
}
.table_form .schedule label span::after,
.table_form .showroom label span::after,
.table_form .season label span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #040000;
  border-radius: 50%;
  transform: scale(0);
  left: 5px;
  top: calc(50% - 6px);
  transition: 0.3s;
}

.checks {
  text-align: center;
  margin-bottom: 5em;
}
.checks p {
  margin-bottom: 1.5em;
}
.checks small {
  display: block;
  font-size: 0.93em;
}

.doui,
.trigger {
  display: block;
  text-align: center;
  margin-bottom: 2em;
}
.doui label,
.trigger label {
  display: block;
  cursor: pointer;
}
.doui label input,
.trigger label input {
  display: none;
}
.doui label input:checked + span::before,
.trigger label input:checked + span::before {
  background-color: #162789;
}
.doui label input:checked + span::after,
.trigger label input:checked + span::after {
  transform: rotate(-45deg) scale(1);
}
.doui label span,
.trigger label span {
  display: block;
  position: relative;
  padding-left: 40px;
}
.doui label span::before,
.trigger label span::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid #040000;
  left: 0;
  top: calc(50% - 13px);
  transition: 0.3s;
}
.doui label span::after,
.trigger label span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid white;
  transform: scale(0);
  left: 5px;
  top: calc(50% - 6px);
  transition: 0.3s;
}

.trigger {
  text-align: left;
}
.trigger .wpcf7-list-item {
  display: block;
  margin: 0 0 0.5em;
}
.trigger .wpcf7-list-item.last {
  margin: 0;
}
.trigger .wpcf7-list-item label {
  display: inline-block;
}

.att_txt {
  text-align: left;
  font-size: 0.93rem;
  margin: 20px auto 20px;
  width: 100%;
  max-width: 780px;
}
@media screen and (max-width: 767px) {
  .att_txt {
    font-size: 0.866em;
  }
}

.privacy_box {
  width: 780px;
  max-width: 100%;
  height: 250px;
  margin: 0 auto 2em;
  border: 1px solid #040000;
  padding: 30px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .privacy_box {
    padding: 20px 15px;
  }
}
.privacy_box h3 {
  font-weight: 700;
  color: #162789;
  font-size: 1.1em;
}
.privacy_box h4 {
  border-bottom: 1px solid #162789;
  color: #162789;
  font-weight: 700;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.privacy_box p {
  font-size: 0.866em;
  margin-bottom: 1em;
}

.sp_fix_bar {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_fix_bar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
  }
}
.sp_fix_bar li {
  text-align: center;
}
.sp_fix_bar li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 15px 0;
  color: #dcda50;
  background-color: #1a2c78;
  font-size: 1.133em;
  font-weight: bold;
}
.sp_fix_bar li a > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.sp_fix_bar li a > span img {
  width: 26px;
}
.sp_fix_bar li a > span span {
  display: block;
  width: 100%;
}
.sp_fix_bar li.sp_fix_contact {
  width: calc(37% - 1px);
}
.sp_fix_bar li.sp_fix_document {
  width: calc(37% - 1px);
}
.sp_fix_bar li.sp_fix_tel {
  width: 26%;
}