@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  min-width: 1200px;
}
@media (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .inner {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
    padding: 0;
  }
}

/* display */
.pc_dn {
   display: none;
}
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
  .pc_dn {
    display: block;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

.btn_tel,
.btn_contact,
.btn_line{
  display: block;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background-color: #F6364A;
  box-shadow: 0px 3px 0px 0px #9A0A00;
  font-weight: bold;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  border: 2px solid #F6364A;
}
.btn_tel:hover,
.btn_contact:hover,
.btn_line:hover {
  opacity: 1;
  color: #F6364A;
  background-color: #fff;
  transform: translateY(3px);
  box-shadow: none;
}
.btn_line:hover {
color: #06c755;
}
@media (max-width: 599px) {
  .btn_tel,
  .btn_contact,
  .btn_line{
    padding: 15px 0;
    border-radius: 5px;
  }
}

.btn_tel {
  font-size: 24px;
  margin-right: 20px;
  padding-bottom: 10px;
}
.btn_tel::before {
  content: url(../images/icon_tel.png);
  position: absolute;
  top: -1px;
  left: 0;
  transform: scale(0.4);
}
.btn_tel:hover::before {
  content: url(../images/icon_tel_red.png);
}

@media (max-width: 599px) {
  .btn_tel {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.btn_tel .tel_txt {
  display: block;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 599px) {
  .btn_tel .tel_txt {
    font-size: 18px;
    line-height: 1.44;
  }
}

.btn_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right:20px;
}
.btn_contact::before {
  content: url(../images/icon_contact.png);
  position: absolute;
  top: 2px;
  left: 22px;
  transform: scale(0.4);
}
.btn_contact:hover::before {
  content: url(../images/icon_contact_red.png);
}
.btn_line{
display: flex;
align-items: center;
justify-content: center;
margin-right:20px;
background-color: #06c755;
box-shadow: 0px 3px 0px 0px #06A000;
border: 2px solid #06c755;
}
.btn_line::before {
  content: url(../images/icon_line.png);
  position: absolute;
  top: -38px;
    left: -15px;
  transform: scale(0.25);
}
.btn_line:hover::before {
  content: url(../images/icon_line_green.png);
}

.common_ttl {
  text-align: center;
  padding: 40px 0;
  background-color: #fff;
  border-top: 5px solid #1F77C3;
  border-bottom: 5px solid #1F77C3;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .common_ttl {
    border-top: 3px solid #1F77C3;
    border-bottom: 3px solid #1F77C3;
    padding: 30px 0;
  }
}
.common_ttl h2 {
  font-size: 52px;
  font-weight: 900;
  position: relative;
  padding-left: 60px;
  display: inline-block;
}
@media (max-width: 599px) {
  .common_ttl h2 {
    font-size: 32px;
    padding-left: 40px;
  }
}
.common_ttl h2::before {
  position: absolute;
  left: -45px;
  top: -55px;
  transform: scale(0.35);
}
@media (max-width: 599px) {
  .common_ttl h2::before {
    transform: scale(0.25);
    left: -60px;
    top: -66px;
  }
}

.common_subttl {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .common_subttl {
    margin-bottom: 10px;
  }
}
.common_subttl p {
  display: inline-block;
  position: relative;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .common_subttl p {
    font-size: 20px;
  }
}
.common_subttl p::before, .common_subttl p::after {
  position: absolute;
  bottom: -35px;
  transform: scale(0.35);
}
@media (max-width: 599px) {
  .common_subttl p::before, .common_subttl p::after {
    transform: scale(0.2);
  }
}
.common_subttl p::before {
  content: url(../images/subttl_left.png);
  left: -70px;
}
@media (max-width: 599px) {
  .common_subttl p::before {
    left: -60px;
  }
}
.common_subttl p::after {
  content: url(../images/subttl_right.png);
  right: -70px;
}
@media (max-width: 599px) {
  .common_subttl p::after {
    right: -60px;
  }
}

.txt_red {
  color: #C61C10;
}

.txt_blue {
  color: #1F77C3;
}

.txt_yellow {
  color: #FDF461;
}

.bg_blue {
  background-color: #1F77C3;
}

.bg_gray {
  background-color: #eee;
}

.bg_white {
  background-color: #fff;
}

.common_box {
  padding: 60px 200px;
  background-color: #fff;
  border: 5px solid #1F77C3;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .common_box {
    padding: 40px 20px;
    border: 3px solid #1F77C3;
  }
}
.common_box h3 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 900;
}
@media (max-width: 599px) {
  .common_box h3 {
    font-size: 24px;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
.common_box h3 .txt_blue {
  position: relative;
}
.common_box h3 .txt_blue::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #1F77C3;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .common_box h3 .txt_blue::before {
    width: 5px;
    height: 5px;
    top: -2px;
  }
}
.common_box .common_list li {
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 60px;
}
.common_box .common_list li::before {
  content: url(../images/icon_hukidashi_blue.png);
  position: absolute;
  top: -30px;
  left: -23px;
  transform: scale(0.38);
}
@media (max-width: 599px) {
  .common_box .common_list li::before {
    top: -50px;
    left: -53px;
    transform: scale(0.2);
  }
}
@media (max-width: 599px) {
  .common_box .common_list li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 35px;
  }
}

.campaign {
  background-color: #FFFAB2;
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 599px) {
  .campaign {
    padding: 30px 0;
  }
}
.campaign .campaign_row {
  margin-top: 30px;
  padding: 0px 40px;
  align-items: center;
}
@media (max-width: 599px) {
  .campaign .campaign_row {
    padding: 0;
    margin-top: 15px;
  }
}
.campaign .campaign_row .campaign_left {
  width: 765px;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_left {
    width: 100%;
    margin-bottom: 15px;
  }
}
.campaign .campaign_row .campaign_left .campaign_left_text01 {
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_left .campaign_left_text01 {
    display: flex;
    justify-content: center;
  }
}
.campaign .campaign_row .campaign_left .campaign_left_text01 p {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_left .campaign_left_text01 p {
    font-size: 14px;
  }
}
.campaign .campaign_row .campaign_left .campaign_left_text02 {
  text-align: center;
}
.campaign .campaign_row .campaign_left .campaign_left_text02 p {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_left .campaign_left_text02 p {
    font-size: 18px;
  }
}
.campaign .campaign_row .campaign_right {
  width: 300px;
  border: 3px solid #1F77C3;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_right {
    width: 90%;
    margin: 0 auto;
  }
}
.campaign .campaign_row .campaign_right .campaign_right_ttl {
  background-color: #1F77C3;
  text-align: center;
  padding: 5px 0;
  border-radius: 5px 5px 0 0;
}
.campaign .campaign_row .campaign_right .campaign_right_ttl p {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_right .campaign_right_ttl p {
    font-size: 16px;
  }
}
.campaign .campaign_row .campaign_right .campaign_right_box {
  background-color: #fff;
  padding: 30px 0;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_right .campaign_right_box {
    padding: 15px 20px;
  }
}
.campaign .campaign_row .campaign_right .campaign_right_box img {
  width: 190px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 599px) {
  .campaign .campaign_row .campaign_right .campaign_right_box img {
    width: 100%;
  }
}
.campaign .campaign_point {
  padding: 0px 40px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .campaign .campaign_point {
    display: none;
  }
}
.campaign .campaign_point li {
  background-color: #1F77C3;
  color: #fff;
  font-size: 20px;
  padding: 5px 20px;
  border-radius: 40px;
  font-weight: bold;
  margin-right: 20px;
}
.campaign .campaign_box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .campaign .campaign_box {
    padding: 20px;
    margin-top: 20px;
  }
}
.campaign .campaign_box_img {
  width: 850px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .campaign .campaign_box_img {
    width: 100%;
    margin-bottom: 0;
  }
}
.campaign .btn_row {
  justify-content: center;
}
.campaign .btn_row a {
  width: 340px;
}
@media (max-width: 599px) {
  .campaign .btn_row a {
    width: 100%;
  }
}
.campaign .btn_row .btn_tel {
  font-size: 38px;
  padding-left:45px;
}
.campaign .btn_row .btn_tel::before {
  top: 10px;
  left: 5px;
  transform: scale(0.7);
}
@media (max-width: 599px) {
  .campaign .btn_row .btn_tel::before {
    top: 6px;
    left: 8px;
    transform: scale(0.4);
  }
}
@media (max-width: 599px) {
  .campaign .btn_row .btn_tel {
    font-size: 18px;
    padding-left: 30px;
  }
}
.campaign .btn_row .btn_tel .tel_txt {
  font-size: 24px;
}
@media (max-width: 599px) {
  .campaign .btn_row .btn_tel .tel_txt {
    font-size: 18px;
  }
}
.campaign .btn_row .btn_contact {
  font-size: 28px;
  font-size: 24px;
    padding: 0 20px 0 75px;
    text-align: left;
}
.campaign .btn_row .btn_contact::before {
  top: 20px;
  left: 20px;
  transform: scale(0.7);
}
@media (max-width: 599px) {
  .campaign .btn_row .btn_contact::before {
    top: 2px;
    left: 10px;
    transform: scale(0.4);
  }
}
@media (max-width: 599px) {
  .campaign .btn_row .btn_contact {
    font-size: 18px;
    padding-left: 30px;
        padding: 15px 20px 15px 60px;
        margin-right: 0;
        margin-bottom: 10px;
  }
}
.campaign .btn_row .btn_line {
  font-size: 28px;
  font-size: 24px;
    padding: 0 20px 0 75px;
    text-align: left;
}
.campaign .btn_row .btn_line::before {
  top: -18px;
    left: -5px;
    transform: scale(0.3);
}
@media (max-width: 599px) {
  .campaign .btn_row .btn_line::before {
    top: -37px;
    left: -30px;
    transform: scale(0.2);
  }
}
@media (max-width: 599px) {
  .campaign .btn_row .btn_line {
    font-size: 18px;
    padding-left: 30px;
    padding: 15px 20px 15px 30px;
    margin-right: 0;
  }
}
.fix_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1F77C3;
  padding: 7px 0;
  border-top: 3px solid #fff;
}
.fix_btn .fix_btn_center {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .fix_btn .fix_btn_center {
    margin-bottom: 2px;
  }
}
.fix_btn .fix_btn_center p {
  color: #fff;
}
@media (max-width: 768px) {
  .fix_btn .fix_btn_center p {
    font-size: 12px;
  }
  .fix_btn .inner{
  width:96%;
  }
}
.fix_btn  .row{
	justify-content:center;
    gap:5px;
}
.fix_btn .btn_tel,
.fix_btn .btn_contact,
.fix_btn .btn_line{
  width: 160px;
  width: calc(( 100% - 10px ) / 3 );
  font-size: 14px;
  font-size: 3vw;
  padding: 7px 0;
  padding-left: 25px;
  display: block;
  margin:0;
  display:flex;
  align-items:center;
}
.fix_btn .btn_tel::before,
.fix_btn .btn_contact::before {
  transform: scale(0.3);
}
.fix_btn .btn_line::before {
  transform: scale(0.15);
}
.fix_btn .btn_tel {
  margin-bottom: 0;
  justify-content: center;
}
.fix_btn .btn_tel::before {
  top: -4px;
  left: -5px;
  left: -18px;
  top:0;
  bottom:0;
  margin:auto;
}
.fix_btn .btn_contact::before {
  top: -10px;
  left: -15px;
  top:0;
  bottom:0;
  margin:auto;
}
.fix_btn .btn_line::before {
  top: -38px;
  left: -52px;
  top:0;
  bottom:12px;
  margin:auto;
}

.top_btn {
  position: fixed;
  right: 0;
  bottom: 50px;
  width: 80px;
}
@media (max-width: 768px) {
  .top_btn {
    width: 50px;
    bottom: 120px;
  }
}
.top_btn img {
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 3px 6px 0px #bababa;
}

/* header */
.header {
  position: fixed;
  top: -200px;
}

header,
.header {
  padding: 7px 0;
  width: 100%;
  background-color: #fff;
  z-index: 10000;
  transition: 0.3s;
}
header.active,
.header.active {
  left: 0;
  top: 0;
  transition: top 0.3s; /* トップの位置を滑らかに変更 */
}
header .inner .header_row.between{
	align-items:center;
}
@media (max-width: 768px) {
  header,
  .header {
    padding: 5px 0;
  }
}
@media (max-width: 768px) {
  header .inner,
  .header .inner {
    width: 98%;
  }
}
@media (max-width: 768px) {
  header .header_logo,
  .header .header_logo {
    width: 40%;
  }
}
header .header_logo p,
.header .header_logo p {
  margin-bottom: 5px;
  font-size: 14px;
}
@media (max-width: 768px) {
  header .header_logo p,
  .header .header_logo p {
    font-size: 8px;
    margin-bottom: 0;
  }
}
header .header_logo img,
.header .header_logo img {
  display: block;
  width: 250px;
}
@media (max-width: 768px) {
  header .header_logo img,
  .header .header_logo img {
    width: 95%;
  }
}
header .header_links,
.header .header_links {
  width: 520px;
  width:auto;
}
@media (max-width: 768px) {
  header .header_links,
  .header .header_links {
    width: 59%;
    padding-top: 2px;
  }
  header .header_links .row,
  .header .header_links .row {
    justify-content: space-between;
    gap: 5px;
    flex-wrap: nowrap;
  }
}
header .header_links p,
.header .header_links p {
  text-align: center;
  font-weight: bold;
}
header .header_links a,
.header .header_links a {
  width: 250px;
}
@media (max-width: 768px) {
  header .header_links a,
  .header .header_links a {
    width: 49%;
    font-size: 2.5vw;
    padding-top: 7px;
    padding-bottom: 7px;
    margin:0;
  }
  header .header_links a .tel_txt,
  .header .header_links a .tel_txt {
    font-size: 2.5vw;
    line-height:1.3;
  }
  header .header_links a .tel_txt span span,
  .header .header_links a .tel_txt span span {
  font-size:60%;
  display:block;
  }
}
header .header_links a.btn_tel,
.header .header_links a.btn_tel {
  padding-top: 0;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  header .header_links a.btn_tel,
  .header .header_links a.btn_tel {
    padding-left: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 7px;
    	display:flex;
        align-items:center;
        padding-bottom:7px;
        justify-content: center;
  }
  header .header_links a.btn_tel::before,
  .header .header_links a.btn_tel::before {
    transform: scale(0.25);
    left: -20px;
    top: -8px;
    top:0;
    bottom:0;
    margin-top:auto;
    margin-bottom:auto;
  }
}
@media (max-width: 768px) {
  header .header_links a.btn_contact,
  .header .header_links a.btn_contact {
    padding-left: 20px;
  }
  header .header_links a.btn_contact::before,
  .header .header_links a.btn_contact::before {
    transform: scale(0.25);
    top: -12px;
    left: -16px;
  top:0;
    bottom:5px;
    margin-top:auto;
    margin-bottom:auto;
  }
}
@media (max-width: 768px) {
  header .header_links a.btn_line,
  .header .header_links a.btn_line {
    padding-left: 25px;
  }
  header .header_links a.btn_line::before,
  .header .header_links a.btn_line::before {
    transform: scale(0.12);
    top: -50px;
    left: -55px;
    top:0;
    bottom:10px;
    margin-top:auto;
    margin-bottom:auto;
  }
}

/* footer */
footer {
  background-color: #DEF3FB;
  padding: 60px 0 30px;
}
@media (max-width: 599px) {
  footer {
    padding-bottom: 120px;
  }
}
footer .footer_ttl {
  text-align: center;
  margin-bottom: 30px;
}
footer .footer_ttl h2 {
  font-size: 52px;
  font-weight: 900;
}
@media (max-width: 599px) {
  footer .footer_ttl h2 {
    font-size: 32px;
  }
}
footer .footer_table {
  width: 1000px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  footer .footer_table {
    width: 100%;
  }
}
footer .footer_table .footer_row {
  border-top: 2px solid #333;
  padding: 20px 0;
}
footer .footer_table .footer_row:last-child {
  border-bottom: 2px solid #333;
}
footer .footer_table .footer_row p {
  font-size: 20px;
}
footer .footer_table .footer_left {
  width: 220px;
  text-align: center;
}
@media (max-width: 599px) {
  footer .footer_table .footer_left {
    width: 30%;
    margin-right: 1%;
    text-align: left;
  }
}
footer .footer_table .footer_left p {
  font-weight: bold;
}
footer .footer_table .footer_right {
  width: 780px;
}
@media (max-width: 599px) {
  footer .footer_table .footer_right {
    width: 69%;
  }
}
footer .footer_logo {
  width: 315px;
  margin: 0 auto 30px;
}
footer .copyright {
  text-align: center;
}
footer .copyright p {
  font-size: 12px;
}

.mv {
  background: url(../images/mv_bg.jpg) center/cover no-repeat;
  padding: 80px 0 0;
  overflow: hidden;
}
.mv.active {
  margin-top: 127px;
}
@media (max-width: 768px) {
  .mv.active {
    margin-top: 78px;
  }
}
@media (max-width: 768px) {
  .mv {
    background: url(../images/mv_bg_sp.jpg) center/cover no-repeat;
    padding-top: 30px;
  }
}
.mv .inner {
  position: relative;
}
.mv .mv_left {
  width: 870px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 768px) {
  .mv .mv_left {
    width: 100%;
    padding-bottom: 10px;
  }
}
.mv .mv_left .mv_left_img {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mv .mv_left .mv_left_img {
    margin-bottom: 20px;
  }
}
.mv .mv_left .mv_boxs {
  width: 100%;
}
.mv .mv_left .mv_boxs .mv_box {
  width: 280px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .mv .mv_left .mv_boxs .mv_box {
    width: 48%;
  }
}
@media (max-width: 599px) {
  .mv .mv_left .mv_boxs .mv_box {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .mv .mv_left .mv_boxs .mv_box:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }
  .mv .mv_left .mv_boxs .mv_box:nth-child(3) .mv_box_ttl {
    margin-right: 5px;
  }
}
.mv .mv_left .mv_boxs .mv_box .mv_box_ttl {
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .mv .mv_left .mv_boxs .mv_box .mv_box_ttl {
    margin-bottom: 0px;
  }
}
.mv .mv_left .mv_boxs .mv_box h3 {
  background-color: #1F77C3;
  padding: 2px 5px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
}
@media (max-width: 768px) {
  .mv .mv_left .mv_boxs .mv_box h3 {
    font-size: 14px;
  }
}
.mv .mv_left .mv_boxs .mv_box p {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  color: #C61C10;
  line-height: 1;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .mv .mv_left .mv_boxs .mv_box p {
    font-size: 14px;
    padding-bottom: 0;
  }
}
.mv .mv_left .mv_boxs .mv_box p .txt_large {
  font-size: 60px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .mv .mv_left .mv_boxs .mv_box p .txt_large {
    font-size: 28px;
  }
}
.mv .mv_right {
  width: 400px;
  position: absolute;
  bottom: 0;
  right: -50px;
}
@media (max-width: 768px) {
  .mv .mv_right {
    width: 100%;
    position: relative;
    right: auto;
  }
}

.mv_read {
  background: url(../images/mv_read_bg.png) center/cover no-repeat;
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .mv_read {
    padding: 20px 0;
    background: url(../images/mv_read_bg_sp.png) center/cover no-repeat;
  }
}
.mv_read h2 {
  font-size: 30px;
  color: #fff;
  line-height: 1.8;
}
@media (max-width: 599px) {
  .mv_read h2 {
    font-size: 16px;
    line-height: 1.6;
  }
}
.mv_read h2 .txt_red {
  background-color: #fff;
  padding: 2px 0;
  margin: 0 10px;
}
@media (max-width: 599px) {
  .mv_read h2 .txt_red {
    line-height: 2;
  }
}
@media (max-width: 599px) {
  .mv_read h2 .sp_db {
    display: inline;
    padding: 0 2px;
  }
}

/* nayami */
.nayami {
  background-color: #DEF3FB;
  padding: 60px 0;
}
.nayami .nayami_ttl {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .nayami .nayami_ttl {
    text-align: left;
  }
}
.nayami .nayami_ttl h2 {
  font-size: 42px;
}
@media (max-width: 599px) {
  .nayami .nayami_ttl h2 {
    font-size: 28px;
  }
}
.nayami .nayami_hukidashis {
  padding-top: 170px;
  position: relative;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis {
    padding-top: 400px;
  }
}
.nayami .nayami_hukidashis .nayami_hukidashi {
  position: absolute;
  width: 380px;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis .nayami_hukidashi {
    width: 190px;
  }
}
.nayami .nayami_hukidashis .nayami_hukidashi p {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis .nayami_hukidashi p {
    font-size: 14px;
  }
}
.nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi01, .nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi02 {
  left: 0;
}
.nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi01 {
  top: 40px;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi01 {
    top: 20px;
    width: 90%;
  }
}
.nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi02 {
  bottom: 70px;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi02 {
    right: 0;
    left: auto;
    top: 90px;
    bottom: auto;
    width: 65%;
  }
}
.nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi03 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi03 {
    left: 0;
    top: 155px;
    transform: translateX(0);
    width: 70%;
  }
}
.nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi04, .nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi05 {
  right: 0;
}
.nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi04 {
  top: 40px;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi04 {
    top: 220px;
    right: 0;
    bottom: auto;
    width: 65%;
  }
}
.nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi05 {
  bottom: 70px;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashis .nayami_hukidashi.nayami_hukidashi05 {
    top: 280px;
    left: 0;
    right: auto;
    bottom: auto;
    width: 70%;
  }
}
.nayami .nayami_hukidashi_img {
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashi_img {
    width: 100%;
  }
}
.nayami .nayami_hukidashi_arrow {
  width: 165px;
  margin: 60px auto 0;
}
@media (max-width: 599px) {
  .nayami .nayami_hukidashi_arrow {
    width: 100px;
  }
}

/* anshin */
.bg_blue_arrow {
  background: url(../images/bg_blue_arrow.png) top/cover no-repeat;
}

.anshin {
  padding: 40px 0;
}
.anshin .anshin_ttl .anshin_txt01 {
  text-align: center;
}
.anshin .anshin_ttl .anshin_txt01 p {
  font-size: 48px;
  color: #fff;
  font-weight: 900;
}
@media (max-width: 599px) {
  .anshin .anshin_ttl .anshin_txt01 p {
    font-size: 26px;
  }
}
.anshin .anshin_ttl .anshin_txt01 p span {
  font-size: 38px;
}
@media (max-width: 599px) {
  .anshin .anshin_ttl .anshin_txt01 p span {
    font-size: 20px;
  }
}
.anshin .anshin_ttl .anshin_txt01 p img {
  width: 68px;
  vertical-align: baseline;
  margin-bottom: -7px;
  margin-left: 5px;
}
@media (max-width: 599px) {
  .anshin .anshin_ttl .anshin_txt01 p img {
    width: 38px;
  }
}
.anshin .anshin_ttl .anshin_txt02 {
  margin-top: 10px;
}
@media (max-width: 599px) {
  .anshin .anshin_ttl .anshin_txt02 {
    margin-top: 5px;
    text-align: center;
  }
}
.anshin .anshin_ttl .anshin_txt02 img {
  width: 500px;
  vertical-align: sub;
}
@media (max-width: 599px) {
  .anshin .anshin_ttl .anshin_txt02 img {
    width: 280px;
  }
}
.anshin .anshin_ttl .anshin_txt02 p {
  font-size: 38px;
  color: #fff;
  font-weight: 900;
}
@media (max-width: 599px) {
  .anshin .anshin_ttl .anshin_txt02 p {
    font-size: 20px;
    line-height: 2;
  }
}
.anshin .anshin_ttl .anshin_txt02 p .bg_white {
  padding: 2px 8px;
  border-radius: 5px;
  margin: 0 5px;
  font-size: 48px;
}
@media (max-width: 599px) {
  .anshin .anshin_ttl .anshin_txt02 p .bg_white {
    font-size: 26px;
  }
}

/* bokumetu */
.bokumetu {
  padding: 0;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .bokumetu {
    padding-top: 0;
  }
}
.bokumetu .bokumetu_ttl {
  width: 930px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .bokumetu .bokumetu_ttl {
    width: 99%;
    margin-bottom: 0;
  }
}
.bokumetu .common_box .common_list li::before {
  top: -40px;
  left: -35px;
}
@media (max-width: 599px) {
  .bokumetu .common_box .common_list li::before {
    top: -50px;
    left: -50px;
  }
}

/* reason */
.reason {
  background-color: #DEF3FB;
  padding-bottom: 60px;
}
.reason .bg_blue {
  padding: 60px 0;
  margin-bottom: 60px;
}
.reason .reason_ttl .reason_txt01 p {
  color: #fff;
  font-weight: bold;
  font-size: 32px;
}
@media (max-width: 599px) {
  .reason .reason_ttl .reason_txt01 p {
    font-size: 16px;
  }
}
.reason .reason_ttl .reason_txt01 p::before {
  content: url(../images/subttl_left_white.png);
}
.reason .reason_ttl .reason_txt01 p::after {
  content: url(../images/subttl_right_white.png);
}
.reason .reason_ttl .reason_txt01 p .txt_yellow span {
  font-size: 42px;
}
@media (max-width: 599px) {
  .reason .reason_ttl .reason_txt01 p .txt_yellow span {
    font-size: 20px;
  }
}
.reason .reason_ttl .reason_txt02 {
  text-align: center;
  margin-bottom: 15px;
}
.reason .reason_ttl .reason_txt02 p {
  color: #fff;
  font-size: 42px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .reason .reason_ttl .reason_txt02 p {
    font-size: 20px;
  }
}
.reason .reason_ttl .reason_txt02 img {
  width: 700px;
}
@media (max-width: 599px) {
  .reason .reason_ttl .reason_txt02 img {
    width: 280px;
  }
}
.reason .reason_ttl .reason_txt02 .txt_border_bottom {
  font-size: 60px;
  border-bottom: 5px solid #fff;
  padding-bottom: 5px;
}
@media (max-width: 599px) {
  .reason .reason_ttl .reason_txt02 .txt_border_bottom {
    font-size: 32px;
    border-bottom: 3px solid #fff;
  }
}
.reason .reason_ttl .reason_txt02 .txt_border_bottom .txt_yellow span {
  font-size: 80px;
}
@media (max-width: 599px) {
  .reason .reason_ttl .reason_txt02 .txt_border_bottom .txt_yellow span {
    font-size: 42px;
  }
}
.reason .reason_ttl .reason_star {
  width: 220px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .reason .reason_ttl .reason_star {
    width: 140px;
  }
}
.reason .reason_item {
  width: 386px;
  margin-right: 21px;
  background-color: #fff;
  border-top: 20px solid #1F77C3;
  border-radius: 20px 20px 10px 10px;
  box-shadow: 0px 3px 10px -6px #777777;
  padding: 15px;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 20px;
}
.reason .reason_item span{
color:#C61C10;
}

.reason .reason_item:nth-child(3), .reason .reason_item:nth-child(5) {
  margin-right: 0;
}
.reason .reason_item:nth-child(1) .reason_item_img {
  width: 120px;
}
.reason .reason_item:nth-child(2) .reason_item_img {
  width: 87px;
}
.reason .reason_item:nth-child(3) .reason_item_img {
  width: 155px;
}
.reason .reason_item:nth-child(4) .reason_item_img {
  width: 103px;
}
.reason .reason_item:nth-child(5) .reason_item_img {
  width: 116px;
}
@media (max-width: 1024px) {
  .reason .reason_item {
    width: 370px;
  }
}
@media (max-width: 768px) {
  .reason .reason_item {
    width: 100%;
    padding: 20px;
    padding-bottom: 30px;
    margin-right: 0;
  }
}
.reason .reason_item .reason_number {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .reason .reason_item .reason_number {
    margin-bottom: 0;
  }
}
.reason .reason_item .reason_number p {
  font-size: 52px;
  color: #1F77C3;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
}
.reason .reason_item h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .reason .reason_item h3 {
    font-size: 24px;
  }
}
.reason .reason_item p {
  font-size: 20px;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .reason .reason_item p {
    font-size: 16px;
    padding: 0;
  }
}
.reason .reason_item .reason_item_img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.reason .reason_soudan {
  margin-top: 30px;
}
.reason .reason_soudan_ttl .reason_soudan_text01 {
  text-align: center;
  margin-bottom: 20px;
}
.reason .reason_soudan_ttl .reason_soudan_text01 p {
  font-size: 32px;
  font-weight: bold;
  background-color: #1F77C3;
  padding: 10px 30px;
  border-radius: 60px;
  color: #fff;
}
@media (max-width: 768px) {
  .reason .reason_soudan_ttl .reason_soudan_text01 p {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.reason .reason_soudan_ttl .reason_soudan_text02 {
  text-align: center;
  padding-bottom: 20px;
}
.reason .reason_soudan_ttl .reason_soudan_text02 p {
  font-size: 42px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .reason .reason_soudan_ttl .reason_soudan_text02 p {
    font-size: 24px;
  }
}
.reason .reason_soudan_ttl .reason_soudan_text02 p img {
  width: 40px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .reason .reason_soudan_ttl .reason_soudan_text02 p img {
    width: 25px;
  }
}
.reason .reason_soudan_img {
  width: 245px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .reason .reason_soudan_img {
    width: 165px;
    justify-content: center;
  }
}
.reason .reason_soudan_box {
  padding: 60px 130px;
}
@media (max-width: 768px) {
  .reason .reason_soudan_box {
    padding: 40px 20px;
  }
}
.reason .reason_soudan_box .reason_soudan_list li::before {
  content: url(../images/icon_check.png);
}
@media (max-width: 768px) {
  .reason .reason_soudan_box .reason_soudan_list li::before {
    top: -43px;
    left: -42px;
  }
}
@media (max-width: 768px) {
  .reason .reason_soudan_box .reason_soudan_list li {
    padding-left: 30px;
  }
}

/* price */
.price {
  padding: 60px 0;
  background-color: #DEF3FB;
}
.price .price_ttl h2::before {
  content: url(../images/icon_price_ttl.png);
}
.price .price_box_ttl {
  background-color: #1F77C3;
  text-align: center;
  padding: 15px 0;
}
.price .price_box_ttl h3 {
  font-size: 32px;
  color: #fff;
  display: inline;
  position: relative;
  padding-left: 50px;
}
@media (max-width: 599px) {
  .price .price_box_ttl h3 {
    font-size: 24px;
    padding-left: 40px;
  }
}
.price .price_box_ttl h3::before {
  position: absolute;
  left: -20px;
  top: -25px;
  transform: scale(0.5);
}
@media (max-width: 599px) {
  .price .price_box_ttl h3::before {
    left: -25px;
    top: -30px;
    transform: scale(0.4);
  }
}
.price .price_box {
  width: 590px;
  border: 3px solid #1F77C3;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .price .price_box {
    width: 560px;
  }
}
@media (max-width: 599px) {
  .price .price_box {
    width: 100%;
  }
}
.price .price_box.price_box01 h3::before {
  content: url(../images/icon_price_box01.png);
}
.price .price_box.price_box02 h3::before {
  content: url(../images/icon_price_box02.png);
  left: -50px;
  top: -30px;
}
@media (max-width: 599px) {
  .price .price_box.price_box02 h3::before {
    transform: scale(0.3);
    top: -35px;
  }
}
.price .price_box.price_box03 h3::before {
  content: url(../images/icon_price_box03.png);
  left: -50px;
}
@media (max-width: 599px) {
  .price .price_box.price_box03 h3::before {
    transform: scale(0.3);
    top: -25px;
    left: -45px;
  }
}
.price .price_box.price_box04 h3 {
  padding-left: 40px;
}
.price .price_box.price_box04 h3::before {
  content: url(../images/icon_price_box04.png);
  top: -30px;
}
@media (max-width: 599px) {
  .price .price_box.price_box04 h3::before {
    transform: scale(0.3);
    top: -35px;
    left: -12px;
  }
}
.price .price_box.price_box05 h3::before {
  content: url(../images/icon_price_box05.png);
  left: -30px;
  top: -20px;
}
@media (max-width: 599px) {
  .price .price_box.price_box05 h3::before {
    transform: scale(0.3);
    left: -28px;
    top: -24px;
  }
}
.price .price_box.price_box06 h3 {
  padding-left: 40px;
}
.price .price_box.price_box06 h3::before {
  content: url(../images/icon_price_box06.png);
  left: -15px;
  top: -22px;
}
@media (max-width: 599px) {
  .price .price_box.price_box06 h3::before {
    transform: scale(0.3);
    left: -10px;
    top: -28px;
  }
}
.price .price_box .price_box_img {
  padding: 20px;
}
@media (max-width: 599px) {
  .price .price_box .price_box_img {
    padding-bottom: 10px;
  }
}
.price .price_box .price_box_normal,
.price .price_box .price_box_gentei,
.price .price_box ul {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 599px) {
  .price .price_box .price_box_normal,
  .price .price_box .price_box_gentei,
  .price .price_box ul {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.price .price_box .price_box_normal p {
  font-size: 32px;
}
@media (max-width: 599px) {
  .price .price_box .price_box_normal p {
    font-size: 20px;
  }
}
.price .price_box .price_box_normal .bg_gray {
  background-color: #333;
  padding: 0 5px;
  color: #fff;
  font-size: 24px;
  border-radius: 5px;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .price .price_box .price_box_normal .bg_gray {
    font-size: 16px;
  }
}
.price .price_box .price_box_normal .txt_large {
  font-size: 42px;
}
@media (max-width: 599px) {
  .price .price_box .price_box_normal .txt_large {
    font-size: 28px;
  }
}
.price .price_box .price_box_gentei {
  margin-bottom: 10px;
}
.price .price_box .price_box_gentei p {
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
}
@media (max-width: 599px) {
  .price .price_box .price_box_gentei p {
    padding-left: 25px;
  }
}
.price .price_box .price_box_gentei p::before {
  content: url(../images/arrow_right_blue.png);
  position: absolute;
  left: -19px;
  top: -12px;
  transform: scale(0.4);
}
@media (max-width: 599px) {
  .price .price_box .price_box_gentei p::before {
    transform: scale(0.25);
    left: -25px;
    top: -27px;
  }
}
.price .price_box .price_box_gentei .bg_blue {
  color: #fff;
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 32px;
}
@media (max-width: 599px) {
  .price .price_box .price_box_gentei .bg_blue {
    font-size: 18px;
  }
}
.price .price_box .price_box_gentei .txt_red {
  font-size: 42px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .price .price_box .price_box_gentei .txt_red {
    font-size: 24px;
  }
}
.price .price_box .price_box_gentei .txt_red span {
  font-size: 70px;
  line-height: 1;
}
@media (max-width: 599px) {
  .price .price_box .price_box_gentei .txt_red span {
    font-size: 46px;
  }
}
.price .price_box .list_box {
  padding: 0 20px;
  padding-bottom: 20px;
}
.price .price_box .list_box ul {
  background-color: #FAFAFA;
  padding: 20px 130px;
}
@media (max-width: 599px) {
  .price .price_box .list_box ul {
    padding: 20px 40px;
  }
}
.price .price_box .list_box ul li {
  width: auto;
  margin-bottom: 10px;
  text-indent: -1rem;
  padding-left: 1rem;
}
.price .price_box .list_box ul li:last-child {
  margin-bottom: 0;
}
.price .price_box .list_box ul li span {
  color: #1F77C3;
}

/* meiroukaikei */
.meiroukaikei {
  background: url(../images/meiroukaikei_bg.jpg) center/cover no-repeat;
  padding: 60px 0 0;
}
@media (max-width: 599px) {
  .meiroukaikei {
    background: url(../images/meiroukaikei_bg_sp.jpg) top/cover no-repeat;
  }
}
.meiroukaikei .meiroukaikei_ttl {
  width: 1120px;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_ttl {
    width: 100%;
  }
}
.meiroukaikei .meiroukaikei_price {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_row {
    justify-content: center;
  }
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box {
  width: 224px;
  position: relative;
  background-color: #fff;
  text-align: center;
  padding: 10px 0 5px;
  border: 3px solid #1F77C3;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box {
    width: 160px;
    margin-bottom: 10px;
    margin-right: 15px;
  }
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box::after {
  content: url(../images/icon_plus.png);
  position: absolute;
  top: 18%;
  right: -82px;
  transform: scale(0.33) translateY(-50%);
  z-index: 1000;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box::after {
    top: 5%;
    right: -79px;
  }
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box:nth-child(even) {
    margin-right: 0;
  }
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box:nth-child(even)::after {
    content: none;
  }
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box h3 {
  font-size: 24px;
  background-color: #1F77C3;
  padding: 1px 5px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box h3 {
    font-size: 16px;
  }
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box p {
  font-weight: bold;
  font-size: 24px;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box p {
    font-size: 18px;
  }
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box p span {
  font-size: 60px;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box p span {
    font-size: 44px;
  }
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box05 {
    margin-top: 50px;
    margin-right: 0;
  }
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box05::before {
    content: url(../images/icon_plus.png);
    position: absolute;
    top: -80px;
    left: 4%;
    transform: scale(0.33) translateY(-50%);
  }
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box05::after {
  content: none;
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box05 h3 {
  margin-bottom: 10px;
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box05 .txt_blue {
  font-size: 32px;
  margin-bottom: 10px;
}
.meiroukaikei .meiroukaikei_price .meiroukaikei_price_box05 .caption {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_price .meiroukaikei_price_box05 .caption {
    font-size: 9px;
  }
}
.meiroukaikei .meiroukaikei_box {
  background-color: #fff;
  padding: 50px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 3px 10px -6px #777777;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_box {
    padding: 30px 20px;
  }
}
.meiroukaikei .meiroukaikei_box p {
  font-size: 20px;
  margin-bottom: 30px;
}
.meiroukaikei .meiroukaikei_box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .meiroukaikei .meiroukaikei_box p {
    font-size: 20px;
  }
}
.meiroukaikei .meiroukaikei_box p .txt_red {
  font-weight: bold;
}
.meiroukaikei .meiroukaikei_box p .txt_large {
  font-size: 24px;
}
.meiroukaikei .meiroukaikei_jinbutu {
  width: 1170px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_jinbutu {
    width: 100%;
  }
}
.meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi {
  width: 830px;
  background-color: #fff;
  padding: 40px 30px;
  border: 3px solid #1F77C3;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi {
    width: 100%;
    padding: 30px 20px;
  }
}
.meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::before, .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::before, .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::after {
    top: 100%;
    left: 50%;
  }
}
.meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::before {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #1F77C3;
  border-width: 33px;
  margin-top: -33px;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::before {
    border-top-color: #1F77C3;
    border-left-color: transparent;
    border-width: 29px;
    margin-left: -29px;
    margin-top: 0;
  }
}
.meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::after {
  border-color: rgba(194, 225, 245, 0);
  border-left-color: #fff;
  border-width: 29px;
  margin-top: -29px;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi::after {
    border-top-color: #fff;
    border-left-color: transparent;
    border-width: 24px;
    margin-left: -24px;
    margin-top: 0;
  }
}
.meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi p {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_hukidashi p {
    font-size: 20px;
  }
}
.meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_jinbutu_img {
  width: 290px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .meiroukaikei .meiroukaikei_jinbutu .meiroukaikei_jinbutu_img {
    width: 200px;
    justify-content: center;
    margin: 0 auto;
  }
}

/* comparison */
.comparison {
  padding: 60px 0;
  background-color: #DEF3FB;
}
.comparison .comparison_ttl h2::before {
  content: url(../images/icon_comparison_ttl.png);
  left: -80px;
}
@media (max-width: 599px) {
  .comparison .comparison_ttl h2::before {
    transform: scale(0.2);
  }
}
.comparison .comparison_table table {
  width: 100%;
  border-collapse: collapse;
}
.comparison .comparison_table table th, .comparison .comparison_table table td {
  font-weight: bold;
  text-align: center;
  border: 2px solid #eee;
}
.comparison .comparison_table table th:nth-child(1), .comparison .comparison_table table td:nth-child(1) {
  width: 181px;
  border: none;
}
@media (max-width: 599px) {
  .comparison .comparison_table table th:nth-child(1), .comparison .comparison_table table td:nth-child(1) {
    width: 50px;
  }
}
.comparison .comparison_table table th:nth-child(2), .comparison .comparison_table table th:nth-child(3), .comparison .comparison_table table th:nth-child(4), .comparison .comparison_table table td:nth-child(2), .comparison .comparison_table table td:nth-child(3), .comparison .comparison_table table td:nth-child(4) {
  width: 333px;
}
@media (max-width: 599px) {
  .comparison .comparison_table table th:nth-child(2), .comparison .comparison_table table th:nth-child(3), .comparison .comparison_table table th:nth-child(4), .comparison .comparison_table table td:nth-child(2), .comparison .comparison_table table td:nth-child(3), .comparison .comparison_table table td:nth-child(4) {
    width: 95px;
  }
}
.comparison .comparison_table table th {
  padding: 40px 0;
}
@media (max-width: 599px) {
  .comparison .comparison_table table th {
    padding: 15px 0;
  }
}
.comparison .comparison_table table th:nth-child(2) {
  background-color: #1F77C3;
  color: #fff;
  font-size: 32px;
}
@media (max-width: 599px) {
  .comparison .comparison_table table th:nth-child(2) {
    font-size: 18px;
  }
}
.comparison .comparison_table table th:nth-child(3) {
  border-right: 1px solid #DEF3FB;
}
.comparison .comparison_table table th:nth-child(3), .comparison .comparison_table table th:nth-child(4) {
  font-size: 24px;
  background-color: #eee;
  border: 1px solid #DEF3FB;
}
@media (max-width: 599px) {
  .comparison .comparison_table table th:nth-child(3), .comparison .comparison_table table th:nth-child(4) {
    font-size: 14px;
  }
}
.comparison .comparison_table table td {
  padding: 15px 0;
}
.comparison .comparison_table table td:nth-child(1) {
  font-size: 24px;
  text-align: left;
}
@media (max-width: 599px) {
  .comparison .comparison_table table td:nth-child(1) {
    font-size: 10px;
  }
}
.comparison .comparison_table table td:nth-child(2) {
  background-color: #fff;
  font-size: 32px;
  color: #1F77C3;
}
@media (max-width: 599px) {
  .comparison .comparison_table table td:nth-child(2) {
    font-size: 14px;
  }
}
.comparison .comparison_table table td:nth-child(3), .comparison .comparison_table table td:nth-child(4) {
  background-color: #fff;
  font-size: 20px;
}
@media (max-width: 599px) {
  .comparison .comparison_table table td:nth-child(3), .comparison .comparison_table table td:nth-child(4) {
    font-size: 12px;
  }
}
.comparison .comparison_table table td.txt_small {
  font-size: 24px;
}
@media (max-width: 599px) {
  .comparison .comparison_table table td.txt_small {
    font-size: 12px;
  }
}

/* flow */
.flow {
  padding-bottom: 60px;
  background-color: #DEF3FB;
}
.flow .flow_ttl h2::before {
  content: url(../images/icon_flow_ttl.png);
  left: -80px;
}
@media (max-width: 599px) {
  .flow .flow_ttl h2::before {
    transform: scale(0.2);
  }
}
.flow .flow_item:last-child .flow_icon::after {
  content: none;
}
.flow .flow_item .flow_icon {
  width: 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .flow .flow_item .flow_icon {
    width: 75px;
  }
}
@media (max-width: 599px) {
  .flow .flow_item .flow_icon {
    width: 65px;
  }
}
.flow .flow_item .flow_icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3px;
  height: 50px;
  background-color: #1F77C3;
}
@media (max-width: 599px) {
  .flow .flow_item .flow_icon::after {
    height: 45%;
    bottom: auto;
    top: 100px;
  }
}
.flow .flow_item .flow_box {
  width: 1080px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .flow .flow_item .flow_box {
    width: 260px;
    padding: 20px 15px;
  }
}
.flow .flow_item .flow_box h3 {
  color: #1F77C3;
  font-size: 32px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .flow .flow_item .flow_box h3 {
    font-size: 24px;
  }
}
.flow .flow_item .flow_box p {
  font-size: 20px;
}
@media (max-width: 599px) {
  .flow .flow_item .flow_box p {
    font-size: 16px;
  }
}

/* voice */
.voice {
  padding: 60px 0;
  background-color: #DEF3FB;
}
.voice .common_subttl .txt_blue {
  font-size: 42px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .voice .common_subttl .txt_blue {
    font-size: 24px;
  }
}
@media (max-width: 599px) {
  .voice .voice_ttl h2 {
    text-align: left;
  }
}
.voice .voice_ttl h2::before {
  content: url(../images/icon_voice_ttl.png);
  left: -80px;
  top: -40px;
}
@media (max-width: 599px) {
  .voice .voice_ttl h2::before {
    transform: scale(0.2);
    top: -55px;
  }
}
.voice .voice_item {
  background-color: #fff;
  border: 3px solid #1F77C3;
  padding: 30px;
  border-radius: 10px;
  width: 590px;
}
@media (max-width: 1024px) {
  .voice .voice_item {
    width: 570px;
  }
}
@media (max-width: 599px) {
  .voice .voice_item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }
  .voice .voice_item:last-child {
    margin-bottom: 0;
  }
}
.voice .voice_item .voice_icon {
  width: 320px;
  margin: 0 auto 20px;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_icon {
    width: 250px;
  }
}
.voice .voice_item .voice_name {
  text-align: center;
  margin-bottom: 10px;
}
.voice .voice_item .voice_name p {
  font-size: 20px;
  font-weight: bold;
}
.voice .voice_item .voice_cate {
  margin-bottom: 30px;
  text-align: center;
}
.voice .voice_item .voice_cate p {
  background-color: #1F77C3;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  padding: 5px 20px;
  border-radius: 60px;
}
.voice .voice_item h3 {
  font-size: 32px;
  color: #1F77C3;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .voice .voice_item h3 {
    font-size: 24px;
  }
}
.voice .voice_item .voice_text p {
  font-size: 20px;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_text p {
    font-size: 16px;
  }
}

/* works */
.works {
  padding-bottom: 60px;
  background-color: #DEF3FB;
}
.works .works_ttl {
  margin-bottom: 0;
}
.works h2 {
  margin-bottom: 30px;
}
.works h2::before {
  content: url(../images/icon_works_ttl.png);
  left: -35px;
  top: -50px;
}
@media (max-width: 599px) {
  .works h2::before {
    transform: scale(0.2);
    top: -63px;
    left: -43px;
  }
}
.works p {
  font-size: 28px;
  text-align: center;
}
@media (max-width: 599px) {
  .works p {
    font-size: 20px;
    text-align: left;
    padding: 0 20px;
  }
}

/* faq */
.faq {
  background-color: #DEF3FB;
  padding-bottom: 60px;
}
.faq .faq_ttl h2 {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .faq .faq_ttl h2 {
    text-align: left;
  }
}
.faq .faq_ttl h2::before {
  content: url(../images/icon_faq_ttl.png);
  left: -40px;
  top: -30px;
  transform: scale(0.4);
}
@media (max-width: 599px) {
  .faq .faq_ttl h2::before {
    transform: scale(0.3);
    top: -45px;
    left: -50px;
  }
}
.faq .faq_cont {
  text-align: left;
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq .faq_cont {
    width: 100%;
    padding: 0 20px;
  }
}
.faq .faq_cont .faq_item {
  border-top: 2px solid #333;
  padding: 30px 0;
}
.faq .faq_cont .faq_item:last-child {
  border-bottom: 2px solid #333;
}
.faq .faq_cont .faq_item .question {
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.faq .faq_cont .faq_item .question::after, .faq .faq_cont .faq_item .question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  background-color: #333;
  width: 20px;
  height: 3px;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq .faq_cont .faq_item .question::after {
  transform: rotate(90deg);
  right: 0;
  top: 48%;
  transition: 0.3s;
}
.faq .faq_cont .faq_item .question.active::after {
  transform: rotate(0);
  top: 49%;
  right: 0;
}
.faq .faq_cont .faq_item .question .row {
  flex-wrap: nowrap;
}
.faq .faq_cont .faq_item .question img {
  width: 48px;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .faq .faq_cont .faq_item .question img {
    width: 35px;
  }
}
.faq .faq_cont .faq_item .question p {
  font-size: 20px;
}
@media (max-width: 599px) {
  .faq .faq_cont .faq_item .question p {
    padding-right: 35px;
  }
}
.faq .faq_cont .faq_item .answer {
  margin-left: 58px;
}
@media (max-width: 599px) {
  .faq .faq_cont .faq_item .answer {
    margin-left: 0;
  }
}

/* contact */
.contact {
  background-color: #1F77C3;
  padding: 60px 0;
}
.contact .contact_bnr {
  margin-bottom: 30px;
  border: 5px solid #fff;
}
.contact .contact_ttl {
  margin-bottom: 40px;
  text-align: center;
}
.contact .contact_ttl p {
  color: #fff;
  font-weight: bold;
}
.contact .contact_ttl .contact_text01 {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .contact .contact_ttl .contact_text01 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.contact .contact_ttl .contact_text02 {
  margin-bottom: 10px;
  width: 100%;
}
@media (max-width: 599px) {
  .contact .contact_ttl .contact_text02 {
    margin-bottom: 5px;
  }
}
.contact .contact_ttl .contact_text02 .txt_blue {
  color: #1F77C3;
  margin-bottom: 10px;
}
.contact .contact_ttl .contact_text02 .txt_blue span {
  font-size: 28px;
}
@media (max-width: 599px) {
  .contact .contact_ttl .contact_text02 .txt_blue span {
    font-size: 16px;
  }
}
.contact .contact_ttl .contact_text02 p {
  display: inline-block;
  padding: 2px 10px;
  font-size: 36px;
}
@media (max-width: 599px) {
  .contact .contact_ttl .contact_text02 p {
    font-size: 20px;
    padding: 2px 5px;
  }
}
.contact .contact_ttl .contact_text02 p img {
  width: 40px;
  display: inline-block;
  vertical-align: baseline;
  margin: 0 5px;
}
@media (max-width: 599px) {
  .contact .contact_ttl .contact_text02 p img {
    width: 24px;
    margin: 0 3px;
  }
}
.contact .contact_ttl .contact_text02 img {
  width: 616px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .contact .contact_ttl .contact_text02 img {
    width: 100%;
  }
}
.contact .contact_ttl .contact_text03 p {
  font-size: 32px;
}
@media (max-width: 599px) {
  .contact .contact_ttl .contact_text03 p {
    font-size: 18px;
  }
}
.contact .contact_tel p {
  text-align: center;
  color: #fff;
}
@media (max-width: 599px) {
  .contact .contact_tel p::before, .contact .contact_tel p::after {
    transform: scale(0.45);
    bottom: -25px;
  }
}
.contact .contact_tel p::before {
  content: url(../images/subttl_left_white.png);
}
.contact .contact_tel p::after {
  content: url(../images/subttl_right_white.png);
}
.contact .contact_tel .row{
	justify-content:center;
    gap:10px;
}
.contact .contact_tel .btn_tel {
  width: 480px;
  margin: 0;
  font-size: 38px;
}
.contact .contact_tel .btn_line {
  width: 480px;
  margin: 0;
  font-size: 38px;
}
.contact .contact_tel .btn_line::before {
  top: -18px;
    left: -15px;
    transform: scale(0.3);
}
@media (max-width: 599px) {
  .contact .contact_tel .btn_tel {
    width: 100%;
    padding-left: 30px;
  }
  .contact .contact_tel .btn_line{
    width: 100%;
    padding-left: 30px;
    font-size: 24px;
  }
}
.contact .contact_tel .btn_tel::before {
  transform: scale(0.6);
  left: 60px;
  top: 10px;
}
@media (max-width: 599px) {
  .contact .contact_tel .btn_tel::before {
    transform: scale(0.5);
    left: 40px;
    top: 3px;
  }
  .contact .contact_tel .btn_line::before {
    top: -32px;
   }
}
.contact .contact_tel .btn_tel .tel_txt {
  font-size: 24px;
}
.contact .form_ttl {
  text-align: center;
  margin-bottom: 30px;
  border-top: 5px solid #fff;
  padding-top: 60px;
  margin-top: 60px;
}
.contact .form_ttl h3 {
  color: #fff;
  font-size: 52px;
  font-weight: 900;
}
@media (max-width: 599px) {
  .contact .form_ttl h3 {
    font-size: 32px;
  }
}
.contact .contact_box {
  background-color: #fff;
  padding: 60px 0;
}
@media (max-width: 599px) {
  .contact .contact_box {
    padding: 30px 20px;
  }
}
.contact .contact_box form {
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .contact .contact_box form {
    width: 100%;
  }
}
.contact .contact_box form .wpcf7-list-item {
  margin-left: 0;
}
.contact .contact_box form input[type=text],
.contact .contact_box form input[type=tel],
.contact .contact_box form input[type=email],
.contact .contact_box form textarea {
  width: 100%;
  border: 3px solid #1F77C3;
  padding: 10px;
  font-size: 20px;
}
.contact .contact_box form textarea {
  width: 100%;
  font-size: 20px;
}
.contact .contact_box form .select_wrap {
  width: 180px;
  position: relative;
}
.contact .contact_box form .select_wrap::after {
  content: url(../images/arrow_bottom.png);
  position: absolute;
  top: 14%;
  right: 0px;
  transform: scale(0.3) translateY(-50%);
  pointer-events: none;
}
.contact .contact_box form .select_wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 20px;
  border: 3px solid #1F77C3;
  padding: 10px;
  width: 100%;
}
.contact .contact_box form .form_section {
  margin-bottom: 30px;
}
.contact .contact_box form .form_section .form_section_ttl {
  margin-bottom: 10px;
}
.contact .contact_box form .form_section .form_section_ttl p {
  font-weight: bold;
  font-size: 20px;
}
.contact .contact_box form .form_section .form_section_ttl p span {
  color: #fff;
  padding: 3px 14px;
  border-radius: 3px;
  font-size: 16px;
  margin-left: 10px;
}
.contact .contact_box form .form_section .form_section_ttl p .bg_gray {
  color: #333;
}
.contact .contact_box form .form_section .form_checkbox {
  margin-right: 20px;
  margin-bottom: 10px;
}
.contact .contact_box form .form_section .form_checkbox:nth-child(3) {
  margin-right: 0;
}
.contact .contact_box form .privacy {
  overflow: scroll;
  border: 2px solid #1F77C3;
  margin-bottom: 10px;
  padding: 20px 0;
}
.contact .contact_box form .privacy .privacy_box {
  height: 180px;
}
.contact .contact_box form .privacy .privacy_box p {
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 14px;
}
.contact .contact_box form .privacy .privacy_box p:last-child {
  padding-bottom: 20px;
}
.contact .contact_box form .privacy .privacy_box p .txt_bold {
  font-size: 16px;
  font-weight: bold;
}
.contact .contact_box form .submit {
  width: 300px;
  margin: 0 auto;
}
.contact .contact_box form .submit:hover input {
  color: #C61C10;
  background-color: #fff;
  transform: translateY(3px);
  box-shadow: none;
}
.contact .contact_box form .submit input {
  background-color: #C61C10;
  border: 2px solid #C61C10;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 60px;
  box-shadow: 0px 3px 0px 0px #9A0A00;
}

.area {
  background-color: #DEF3FB;
  padding-bottom: 60px;
}
.area .area_ttl {
  position: relative;
}
.area .area_ttl h2 {
  margin-bottom: 30px;
}
.area .area_ttl h2::before {
  content: "";
  background: url(../images/icon_area.png) center/cover no-repeat;
  position: absolute;
  left: -10px;
  top: 4px;
  width: 52.3px;
  height: 70px;
  transform: scale(1);
}
@media (max-width: 768px) {
  .area .area_ttl h2::before {
    width: 30px;
    height: 40px;
  }
}
.area .area_cont {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .area .area_cont {
    width: 90%;
  }
}
.area .area_cont p {
  text-align: left;
}
.area .area_item {
  margin-bottom: 30px;
}
.area .area_item .area_name {
  text-align: left;
  background-color: #1F77C3;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 20px;
  cursor: pointer;
}
.area .area_item .area_name::before, .area .area_item .area_name::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 20px;
  height: 4px;
  width: 20px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.area .area_item .area_name::before {
  transform: rotate(90deg);
}
.area .area_item .area_name.active::before {
  transform: rotate(0deg);
}
.area .area_item .area_text {
  padding-left: 20px;
  padding-top: 20px;
}

header {
  top: -200px;
}
header.active {
  animation: 0.5s forwards Header;
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.2s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.2s forwards 0.2s fadein;
}

.fadein3 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein3.active {
  animation: 0.2s forwards 0.4s fadein;
}

.fadein4 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein4.active {
  animation: 0.2s forwards 0.6s fadein;
}

.fadein5 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein5.active {
  animation: 0.2s forwards 0.8s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(200%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

.rightin_fade {
  opacity: 0;
  transform: translateX(3%);
}
.rightin_fade.active {
  animation: 0.5s forwards rightin_fade;
}
.rightin_fade.mv_right.active {
  animation: 0.5s forwards 0.5s rightin_fade;
}

.bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0) translateX(0);
}
.bg.bg1.active::before {
  animation: 2s forwards bg;
}
.bg.bg2.active::before {
  animation: 2s forwards 0.2s bg;
}
.bg.bg3.active::before {
  animation: 2s forwards 0.4s bg;
}

.border_anime.active {
  animation-name: borderAnimation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin_fade {
  0% {
    opacity: 0;
    transform: translateX(3%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bg {
  0% {
    transform: scaleX(0) translateX(0);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
}
@keyframes borderAnimation {
  0% {
    background-position: left 0% center;
  }
  100% {
    background-position: left -100% center;
  }
}
@keyframes Header {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
.mv_red_txt {
  background-color: #F6364A;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 20px;
}
.mv_red_txt p {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .mv_red_txt p {
    font-size: 14px;
  }
}
.mv_red_txt p span {
  font-size: 38px;
}
@media (max-width: 768px) {
  .mv_red_txt p span {
    font-size: 18px;
  }
}

@media (max-width: 599px) {
  .campaign_left_text {
    text-align: center;
  }
  .campaign_left_text span {
    font-size: 18px;
  }
}

.price_hukidashi {
  text-align: center;
  margin-bottom: 30px;
}
.price_hukidashi p {
  font-size: 42px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .price_hukidashi p {
    font-size: 15px;
  }
}

.price_repair {
  background-color: #Fff;
  padding: 40px 30px;
  border: 5px solid #1F77C3;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .price_repair {
    padding: 40px 20px;
  }
}
.price_repair h3 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 599px) {
  .price_repair h3 {
    font-size: 24px;
  }
}
@media (max-width: 599px) {
  .price_repair ul {
    justify-content: center;
  }
}
.price_repair ul li {
  width: 212px;
  text-align: center;
}
@media (max-width: 599px) {
  .price_repair ul li {
    width: 49%;
    margin-bottom: 20px;
  }
  .price_repair ul li:last-child {
    margin-bottom: 0;
  }
  .price_repair ul li:nth-child(odd) {
    margin-right: 2%;
  }
}
.price_repair ul li p {
  color: #fff;
  background-color: #1F77C3;
  font-size: 20px;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 40px;
  margin-top: 10px;
  display: inline-block;
}
@media (max-width: 599px) {
  .price_repair ul li p {
    font-size: 14px;
    padding: 5px 10px;
  }
}

.nayami_ttl p {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .nayami_ttl p {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.contact_toilet .contact_box form .form_section .form_checkbox:nth-child(3) {
  margin-right: 20px;
}

.price.price_toilet .price_box h3 {
  padding-left: 0;
}

.price.price_toilet .price_box h3::before {
  content: none;
}/*# sourceMappingURL=style.css.map */



.grecaptcha-badge { visibility: hidden; }