@charset "UTF-8";
/*===================================
  
  pタグ間の余白

===================================*/
section p + p {
  margin-top: 30px;
}
/* SP */
@media screen and (max-width: 991px) {
  section p + p {
    margin-top: 15px;
  }
}
/*===================================
  
  flex

===================================*/
.flex_2column, .flex_3column, .flex_4column, .flex_3column_l, .flex_3column_m {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex_2column > .flex_item {
  width: 440px;
}
.flex_3column > .flex_item {
  width: 260px;
}
.flex_3column_m > .flex_item {
  width: 280px;
}
.flex_4column > .flex_item {
  width: 200px;
}
.flex_3column_l > .flex_item {
  width: 300px;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .flex_2column > .flex_item:nth-child(n+3), .flex_3column > .flex_item:nth-child(n+4), .flex_3column_l > .flex_item:nth-child(n+4), .flex_3column_m > .flex_item:nth-child(n+4), .flex_4column > .flex_item:nth-child(n+5) {
    margin-top: 50px;
  }
  .flex_3column, .flex_3column_l, .flex_3column_m {
    position: relative;
  }
  .flex_3column::after {
    content: '';
    display: block;
    width: 260px;
    height: 0;
  }
  .flex_3column_l::after {
    content: '';
    display: block;
    width: 300px;
    height: 0;
  }
  .flex_3column_m::after {
    content: '';
    display: block;
    width: 280px;
    height: 0;
  }
  .flex_4column::after, .flex_4column::before {
    content: "";
    display: block;
    width: 200px;
    height: 0;
  }
  .flex_4column::before {
    order: 1;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .flex_2column > .flex_item, .flex_3column_l > .flex_item {
    width: 100%;
  }
  .flex_2column > .flex_item:not(:last-child), .flex_3column_l > .flex_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .flex_3column > .flex_item, .flex_3column_m > .flex_item, .flex_4column > .flex_item {
    width: 47%;
  }
  .flex_3column > .flex_item:nth-child(n+3), .flex_3column_m > .flex_item:nth-child(n+3), .flex_4column > .flex_item:nth-child(n+3) {
    margin-top: 30px;
  }
}
/*===================================
  
  list

===================================*/
.list_no > li, .list_dot > li, .list_caution > li, .list_circle > li {
  position: relative;
  padding-left: 1.3em;
}
.list_no > li::before, .list_dot > li::before, .list_caution > li::before, .list_circle > li::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}
.list_no > li:nth-child(1)::before {
  content: '1.';
}
.list_no > li:nth-child(2)::before {
  content: '2.';
}
.list_no > li:nth-child(3)::before {
  content: '3.';
}
.list_no > li:nth-child(4)::before {
  content: '4.';
}
.list_no > li:nth-child(5)::before {
  content: '5.';
}
.list_no > li:nth-child(6)::before {
  content: '6.';
}
.list_no > li:nth-child(7)::before {
  content: '7.';
}
.list_no > li:nth-child(8)::before {
  content: '8.';
}
.list_no > li:nth-child(9)::before {
  content: '9.';
}
.list_no > li:nth-child(10)::before {
  content: '10.';
}
.list_dot > li::before {
  content: '・';
}
.list_caution > li::before {
  content: '※';
}
.list_circle > li::before {
  content: '●';
}
/*===================================
  
  text

===================================*/
.lead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: -20px 0 50px;
}
@media screen and (max-width: 991px) {
  .lead {
    font-size: 1.2rem;
    margin: -10px 0 30px;
  }
}
/*===================================
  
  table

===================================*/
.tbl_bd {
  margin: 0;
  padding: 0px;
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
  white-space: normal;
}
.tbl_bd th, .tbl_bd td {
  font-size: 1.5rem;
  vertical-align: middle;
  border-bottom: 2px solid #bbbbbb;
  padding: 20px 15px;
  line-height: 1.6;
}
.tbl_bd th {
  font-weight: bold;
  border-bottom-color: #01BFF2;
  width: 20%;
}
.tbl_bd td {
  padding-left: 20px;
}
/* SP */
@media screen and (max-width: 991px) {
  .tbl_bd th, .tbl_bd td {
    font-size: 1.2rem;
    padding: 15px 10px;
  }
  .tbl_bd th {
    width: 30%;
  }
  .tbl_bd td {
    padding-left: 25px;
  }
}
/*===================================
  
  text

===================================*/
@media print, screen and (min-width: 992px) {
  .txt_inner {
    padding-right: 50px;
  }
}
/*===================================
  
  section（上部の余白）

===================================*/
.sect {
  margin-top: 90px;
}
.sect_s {
  margin-top: 80px;
}
.sect_ss {
  margin-top: 20px;
}
.mv_lower + .sect {
  margin-top: 60px;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .movie .main > .sect:first-child {
    margin-top: 20px;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .sect {
    margin-top: 50px;
  }
  .sect_s {
    margin-top: 40px;
  }
  .sect_ss {
    margin-top: 15px;
  }
  .mv_lower + .sect {
    margin-top: 40px;
  }
}
/*===================================
  
  hidden

===================================*/
.hidden {
  overflow: hidden;
}
/*===================================
  
  mv_lower（下層メインビジュアル）

===================================*/
.mv_lower {
  position: relative;
}
.mv_lower_ttl {
  position: absolute;
  font-size: 2.2rem;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  white-space: nowrap;
  z-index: 1;
}
.mv_lower_ttl > b {
  display: block;
  text-align: center;
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 3px solid #01BFF2;
  padding: 0 10px 10px;
  margin-bottom: 15px;
}
.mv_lower_ttl > span {
  display: block;
  text-align: center;
  color: #01BFF2;
  letter-spacing: 0.2em;
}
.mv_lower img {
  width: 100%;
  z-index: -1;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .mv_lower {
    height: 240px;
    overflow: hidden;
  }
  .mv_lower img {
    height: 100%;
    width: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .mv_lower_ttl {
    font-size: 1.2rem;
    transform: translate(-50%, -52%);
  }
  .mv_lower_ttl > b {
    font-size: 2rem;
    border-bottom: 3px solid #01BFF2;
    padding: 0 7px 5px;
    margin-bottom: 10px;
  }
}
/*===================================
  
  ttl_main

===================================*/
.ttl_main {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}
.ttl_sub {
  display: block;
  font-weight: bold;
  text-align: center;
  color: #01BFF2;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}
.ttl_bd {
  color: #01BFF2;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #01BFF2;
}
/* SP */
@media screen and (max-width: 991px) {
  .ttl_main {
    font-size: 1.7rem;
    margin-bottom: 3px;
  }
  .ttl_sub {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .ttl_bd {
    font-size: 1.4rem;
  }
}
/*===================================
  
  block_bg

===================================*/
.block_bg, .block_bg_dot {
  position: relative;
  padding: 50px 0 100px;
}
.block_bg {
  background: #EBFBFF;
}
.block_bg_dot {
  background-color: #fff;
  background-image: radial-gradient(#ddd 35%, transparent 36%), radial-gradient(#ddd 35%, transparent 36%);
  background-size: 3px 3px;
  background-position: 0 0, 3px 3px;
}
/* SP */
@media screen and (max-width: 991px) {
  .block_bg, .block_bg_dot {
    padding: 30px 0 50px;
  }
}
.block_bg_photo {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.block_bg_photo_lead {
  font-weight: bold;
  text-align: center;
}
.bg_concept {
  background-image: url(../img/img-common/bg_concept_pc.jpg);
}
@media screen and (max-width: 991px) {
  .block_bg_photo {
    min-height: auto;
    padding: 35px 0;
    background-size: cover;
  }
  .block_bg_photo_lead {
    text-align: left;
  }
  .bg_concept {
    background-image: url(../img/img-common/bg_concept_sp.jpg);
  }
}
/*===================================
  
  block_img

===================================*/
.block_img {
  padding-bottom: 80px;
  position: relative;
}
.block_img::before {
  content: '';
  position: absolute;
  background: #EBFBFF;
  width: 100%;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.block_img_mv {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 0 auto 30px;
  z-index: 2;
  position: relative;
  z-index: 2;
}
.block_img_main {
  position: relative;
  z-index: 2;
}
.block_img_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0 auto 30px;
  max-width: 770px;
}
/* SP */
@media screen and (max-width: 991px) {
  .block_img {
    padding-bottom: 40px;
  }
  .block_img::before {
    top: 60px;
  }
  .block_img_mv {
    margin: 0 auto 15px;
  }
  .block_img_ttl {
    font-size: 1.3rem;
    margin: 0 auto 15px;
    max-width: 240px;
  }
  .block_img_text > .txt_center {
    text-align: left !important;
  }
}
/*===================================
  
  block_accordion

===================================*/
.block_accordion {
  position: relative;
}
.block_accordion:not(:last-child) {
  margin-bottom: 60px;
}
.block_accordion_img {
  position: relative;
}
.block_accordion_img > picture {
  display: block;
}
.block_accordion_img img {
  width: 100%;
}
.block_accordion_main {
  border-left: 2px solid #00BFF2;
  border-right: 2px solid #00BFF2;
  border-bottom: 2px solid #00BFF2;
  background: #fff;
  padding: 40px 40px 50px 40px;
}
.block_accordion_item:not(:last-child) {
  margin-bottom: 30px;
}
.block_accordion_lead {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 55%;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  padding: 20px 30px 20px 0;
}
.block_accordion_lead > dt {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  height: 50%;
  border-bottom: 1px solid #fff;
}
.block_accordion_lead > dd {
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}
.block_accordion_name > span {
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: left;
}
.block_accordion_name > span:nth-child(2) {
  font-size: 2rem;
}
.block_accordion_name > span:nth-child(2) > b {
  font-size: 1.4rem;
  font-weight: normal;
  padding-left: 1em;
}
.block_accordion_more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  margin: auto;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid #00BFF2;
  border-radius: 50%;
  cursor: pointer;
}
.block_accordion_more::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  margin: auto;
  width: 14px;
  height: 14px;
  border-top: 3px solid #00BFF2;
  border-right: 3px solid #00BFF2;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: all .3s;
}
.block_accordion_more.is_open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 12px;
}
.block_accordion_flex {
  display: flex;
}
.block_accordion_flex > p {
  width: 60%;
}
.block_accordion_flex > img {
  display: block;
  margin: 5px 0 0 20px;
  width: 40%;
}
#voice02 .block_accordion_more {
  background-color: #00BFF2;
}
#voice02 .block_accordion_more::after {
  border-color: #fff;
}
#voice04 .block_accordion_more {
  border-color: #FF8B17;
}
#voice04 .block_accordion_more::after {
  border-color: #FF8B17;
}
#voice04 .block_accordion_main {
  border-color: #FF8B17;
}
#voice04 .block_accordion_item .ttl_bd {
  color: #FF8B17;
  border-color: #FF8B17;
}
/* SP */
@media screen and (max-width: 991px) {
  .block_accordion:not(:last-child) {
    margin-bottom: 40px;
  }
  .block_accordion_main {
    padding: 20px 20px 30px 20px;
  }
  .block_accordion_item .ttl_bd {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  .block_accordion_item:not(:last-child) {
    margin-bottom: 25px;
  }
  .block_accordion_lead {
    height: 62%;
    width: 55%;
    top: 50%;
    right: 7%;
    padding: 0;
  }
  .block_accordion_lead > dt {
    font-size: 1.5rem;
    padding-bottom: 10px;
    height: auto;
  }
  .block_accordion_lead > dd {
    height: 100%;
  }
  .block_accordion_name > span {
    text-align: right;
  }
  .block_accordion_name > span:nth-child(2) {
    font-size: 1.1rem;
  }
  .block_accordion_name > span:nth-child(2) > b {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
  }
  .block_accordion_more {
    bottom: -19px;
    width: 38px;
    height: 38px;
  }
  .block_accordion_more::after {
    bottom: 13px;
    width: 14px;
    height: 14px;
  }
  .block_accordion_more.is_open::after {
    bottom: 8px;
  }
  .block_accordion_flex {
    flex-direction: column;
  }
  .block_accordion_flex > p {
    width: 100%;
  }
  .block_accordion_flex > img {
    margin: 10px 0 0 0;
    width: 100%;
  }
}
/*===================================
  
  block_flow01

===================================*/
.block_flow01 {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.block_flow01_item {
  width: 29%;
  background: #FFF8EE;
  position: relative;
  padding: 30px;
}
.block_flow01_item::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
.block_flow01_item:nth-child(1)::before {
  background-image: url(../img/img-flow/img_step01_01.png);
}
.block_flow01_item:nth-child(2)::before {
  background-image: url(../img/img-flow/img_step01_02.png);
}
.block_flow01_item:nth-child(3)::before {
  background-image: url(../img/img-flow/img_step01_03.png);
}
.block_flow01_item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -13%;
  margin: auto;
  width: 18px;
  height: 18px;
  border-top: 3px solid #01BFF2;
  border-right: 3px solid #01BFF2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.block_flow01_item dt {
  margin-top: 30px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
}
.block_flow01_item dd {
  font-weight: bold;
}
/* SP */
@media screen and (max-width: 991px) {
  .block_flow01 {
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .block_flow01_item {
    width: 100%;
    padding: 20px;
  }
  .block_flow01_item::before {
    top: -30px;
    width: 60px;
    height: 60px;
  }
  .block_flow01_item:not(:last-child) {
    margin-bottom: 80px;
  }
  .block_flow01_item:not(:last-child)::after {
    top: inherit;
    bottom: -25px;
    left: 0;
    right: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .block_flow01_item dt {
    margin-top: 25px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    height: auto;
  }
}
/*===================================
  
  block_flow02

===================================*/
.block_flow02_item {
  background: #fff;
  position: relative;
  padding: 40px 55% 25px 100px;
  min-height: 264px;
}
.block_flow02_item::before {
  position: absolute;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  text-indent: -0.2em;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: #01BFF2;
  color: #fff;
  text-align: center;
  line-height: 60px;
}
.block_flow02_item:nth-child(1)::before {
  content: '01';
}
.block_flow02_item:nth-child(2)::before {
  content: '02';
}
.block_flow02_item:nth-child(3)::before {
  content: '03';
}
.block_flow02_item:nth-child(4)::before {
  content: '04';
}
.block_flow02_item:nth-child(5)::before {
  content: '05';
}
.block_flow02_item:nth-child(6)::before {
  content: '06';
}
.block_flow02_item:not(:last-child) {
  margin-bottom: 75px;
}
.block_flow02_item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 32px 0 32px;
  border-color: #AAEEFF transparent transparent transparent;
}
.block_flow02_item dt {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px dotted #01BFF2;
}
.block_flow02_item dd {
  color: #444;
}
.block_flow02_item dd img {
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
}
/* SP */
@media screen and (max-width: 991px) {
  .block_flow02_item {
    background: #fff;
    position: relative;
    padding: 0 20px 20px 20px;
    min-height: inherit;
  }
  .block_flow02_item::before {
    font-size: 1.7rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .block_flow02_item:not(:last-child) {
    margin-bottom: 45px;
  }
  .block_flow02_item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -35px;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 28px 0 28px;
    border-color: #AAEEFF transparent transparent transparent;
  }
  .block_flow02_item dt {
    font-size: 1.5rem;
    padding-left: 10px;
    padding-bottom: 0;
    height: 50px;
    display: flex;
    margin-left: 40px;
    justify-content: flex-start;
    align-items: center;
  }
  .block_flow02_item dd img {
    margin-top: 20px;
    position: relative;
    right: 0;
  }
  .block_flow02_flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .block_flow02_flex .block_flow02_img {
    width: 45%;
  }
  .block_flow02_flex .block_flow02_img img {
    margin-top: 0;
    width: 100%;
  }
  .block_flow02_flex p {
    width: 50%;
  }
}
/*===================================
  
  block_flow03

===================================*/
.block_flow03_item {
  background-color: #FFF4E6;
  position: relative;
  padding: 35px 35px 35px 170px;
  background-position: left 35px center;
  background-repeat: no-repeat;
  background-size: 90px auto;
  min-height: 160px;
}
.block_flow03_item:nth-child(2n) {
  background-color: #E3FAFF;
}
.block_flow03_item:nth-child(2n)::after {
  border-color: #E3FAFF transparent transparent transparent !important;
}
.block_flow03_item:nth-child(1) {
  background-image: url(../img/img-flow/img_flow03_01.png);
}
.block_flow03_item:nth-child(2) {
  background-image: url(../img/img-flow/img_flow03_02.png);
}
.block_flow03_item:nth-child(3) {
  background-image: url(../img/img-flow/img_flow03_03.png);
}
.block_flow03_item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 55px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 22px 0 22px;
  border-color: #FFF4E6 transparent transparent transparent;
  z-index: 1;
}
.block_flow03_item dt {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px;
}
/* SP */
@media screen and (max-width: 991px) {
  .block_flow03_item {
    padding: 20px 20px 20px 110px;
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: 60px auto;
    min-height: auto;
  }
  .block_flow03_item:not(:last-child)::after {
    bottom: -18px;
    left: 35px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 18px 0 18px;
    border-color: #FFF4E6 transparent transparent transparent;
    z-index: 1;
  }
  .block_flow03_item dt {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}
/*===================================
  
  box_menu

===================================*/
.box_menu {
  display: block;
}
.box_menu_img {
  overflow: hidden;
}
.box_menu_img > img {
  width: auto;
}
.box_menu_main {
  width: 350px;
  height: 100%;
  margin: -85px 0 0 auto;
  padding: 30px;
  opacity: 0.9;
  background: #fff;
  border-top: 2px solid #01BFF2;
}
.box_menu_ttl {
  margin-bottom: 15px;
}
.box_menu_ttl > span {
  display: block;
}
.box_menu_ttl > span:nth-child(1) {
  color: #01BFF2;
  font-size: 1.5rem;
  font-weight: bold;
}
.box_menu_ttl > span:nth-child(2) {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.box_menu_more {
  text-align: right;
}
.box_menu_more > span {
  font-size: 1.3rem;
  color: #01BFF2;
  display: inline-block;
  position: relative;
  padding-left: 35px;
}
.box_menu_more > span::before {
  content: '';
  position: absolute;
  background: #01BFF2;
  height: 2px;
  width: 25px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
/* PC */
@media print, screen and (min-width: 992px) {
  .box_menu {
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .box_menu_img > img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .box_menu:hover .box_menu_img > img {
    transform: scale(1.1, 1.1);
  }
  .box_menu_description {
    padding-bottom: 50px;
  }
  .box_menu_more {
    position: absolute;
    right: 30px;
    bottom: 30px;
  }
  .flex_3column_l .box_menu {
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .flex_3column_l .box_menu_img {
    height: 240px;
  }
  .flex_3column_l .box_menu_img > img {
    width: auto;
    height: 240px;
  }
  .flex_3column_l .box_menu_main {
    width: 85%;
    margin-top: -50px;
    padding: 20px;
  }
  .flex_3column_l .box_menu_description {
    padding-bottom: 30px;
  }
  .flex_3column_l .box_menu_more {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .box_menu_img > img {
    width: 84%;
  }
  .box_menu_main {
    width: 70%;
    margin: -60px 0 0 auto;
    padding: 20px;
  }
  .box_menu_ttl {
    margin-bottom: 10px;
  }
  .box_menu_ttl > span:nth-child(1) {
    font-size: 0.9rem;
  }
  .box_menu_ttl > span:nth-child(2) {
    font-size: 1.4rem;
  }
  .box_menu_more {
    margin-top: 30px;
  }
  .box_menu_more > span {
    font-size: 1.1rem;
  }
}
/*===================================
  
  box_no01

===================================*/
.box_no01 {
  display: flex;
}
.box_no01_main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box_no01_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 65px 0 0 20px;
  position: relative;
  border-left: 2px solid #01BFF2;
}
.box_no01_ttl > b {
  color: #FF5B26;
}
.box_no01_ttl::before {
  position: absolute;
  font-size: 5rem;
  color: #B8F1FF;
  top: 0;
  left: 20px;
  height: 50px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
.box_no01:nth-child(1) .box_no01_ttl::before {
  content: '01';
}
.box_no01:nth-child(2) .box_no01_ttl::before {
  content: '02';
}
.box_no01:nth-child(3) .box_no01_ttl::before {
  content: '03';
}
.box_no01_text {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.box_no01_btn {
  width: 70%;
  margin-right: 0;
  padding: 7px 20px 7px 15px;
}
/* SP */
@media screen and (max-width: 991px) {
  .box_no01_ttl {
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding: 40px 0 0 20px;
  }
  .box_no01_ttl > b {
    color: #FF5B26;
  }
  .box_no01_ttl::before {
    position: absolute;
    font-size: 3rem;
    color: #B8F1FF;
    top: 0;
    left: 20px;
    height: 35px;
    line-height: 35px;
  }
  .box_no01_btn {
    margin-top: 20px;
  }
}
/*===================================
  
  box_no02

===================================*/
.box_no02 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box_no02_main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
}
.box_no02_main > dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.box_no02_main > dt > b {
  color: #FF5B26;
}
.box_no02_main > dd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.box_no02_img {
  margin-bottom: 15px;
  position: relative;
}
.box_no02_img::before {
  position: absolute;
  font-size: 2rem;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  color: #fff;
  background: rgba(1, 191, 242, 0.7);
  text-align: center;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.box_no02_more {
  margin-top: 10px;
  text-align: right;
}
.box_no02_more > span {
  font-size: 1.3rem;
  color: #01BFF2;
  display: inline-block;
  position: relative;
  padding-left: 35px;
}
.box_no02_more > span::before {
  content: '';
  position: absolute;
  background: #01BFF2;
  height: 2px;
  width: 25px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.box_no02:nth-child(1) .box_no02_img::before {
  content: '01';
}
.box_no02:nth-child(2) .box_no02_img::before {
  content: '02';
}
.box_no02:nth-child(3) .box_no02_img::before {
  content: '03';
}
/* SP */
@media screen and (max-width: 991px) {
  .box_no02_main > dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .box_no02_main > dt > b {
    color: #FF5B26;
  }
  .box_no02_img img {
    width: 100%;
  }
  .box_no02_img::before {
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  .box_no02_more > span {
    font-size: 1.1rem;
  }
}
/*===================================
  
  box_no03

===================================*/
.box_no03 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 35px 20px 25px;
  border: 3px solid #BBF1FF;
  position: relative;
}
.box_no03::before {
  position: absolute;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #01BFF2;
  text-align: center;
  top: -0.6em;
  left: 20px;
  line-height: 1;
}
.box_no03_main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.box_no03_main > dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.box_no03_main > dt > b {
  color: #FF5B26;
}
.box_no03_main > dt > span {
  margin-top: 10px;
  display: block;
  color: #01BFF2;
  font-size: 1.2rem;
}
.box_no03_main > dd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.box_no03_img {
  margin-top: 15px;
}
.box_no03_img > img {
  display: block;
  margin: auto;
}
.box_no03:nth-child(1)::before {
  content: '01';
}
.box_no03:nth-child(2)::before {
  content: '02';
}
.box_no03:nth-child(3)::before {
  content: '03';
}
/* SP */
@media screen and (max-width: 991px) {
  .box_no03 {
    padding: 25px 15px 15px;
  }
  .box_no03::before {
    font-size: 1.6rem;
    left: 15px;
  }
  .box_no03_main > dt {
    font-size: 1.4rem;
  }
  .box_no03_main > dt > span {
    font-size: 1.1rem;
  }
  .box_no03_img > img {
    width: 50%;
  }
}
/*===================================
  
  box_icon

===================================*/
.box_icon_main {
  padding: 0 15px;
}
.box_icon_main > dt {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.box_icon_img {
  margin-bottom: 15px;
}
.box_icon_img > img {
  display: block;
  margin: auto;
}
/* SP */
@media screen and (max-width: 991px) {
  .box_icon_main {
    padding: 0 5px;
  }
  .box_icon_main > dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .box_icon_img {
    margin-bottom: 10px;
  }
  .box_icon_img > img {
    width: 100px;
  }
  .box_icon:nth-child(3) {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .box_icon:nth-child(3) .box_icon_main {
    width: calc(100% - 120px);
  }
  .box_icon:nth-child(3) .box_icon_main > dt {
    text-align: left;
  }
}
/*===================================
  
  box_subcnt

===================================*/
.box_subcnt:hover img {
  transform: scale(1.1, 1.1);
}
.box_subcnt_img {
  position: relative;
  width: 90%;
  margin-bottom: 40px;
}
.box_subcnt_img > span {
  display: block;
  overflow: hidden;
}
.box_subcnt_img > span > img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.box_subcnt_img::after {
  content: "";
  display: block;
  position: absolute;
  top: 12%;
  left: 10%;
  width: 100%;
  height: 100%;
  border: 2px solid #01BFF2;
  z-index: -1;
}
.box_subcnt_main > dt {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .box_subcnt_img {
    margin-bottom: 25px;
  }
}
/*===================================
  
  box_article

===================================*/
.box_article > img {
  width: 100%;
}
.box_article_main {
  font-size: 1.5rem;
  margin-top: 10px;
}
.box_article_ttl {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
a.box_article {
  text-decoration: underline;
}
a.box_article:hover {
  text-decoration: none;
}
/* SP */
@media screen and (max-width: 991px) {
  .box_article_main {
    font-size: 1.1rem;
    margin-top: 10px;
  }
  .box_article_main > .txt_center {
    text-align: left;
  }
  .box_article_ttl {
    font-size: 1.3rem;
  }
}
/*===================================
  
  会社概要

===================================*/
/*------------------------------------
代表メッセージ
------------------------------------*/
/* PC */
@media print, screen and (min-width: 992px) {
  .company_message {
    display: flex;
    align-items: flex-start;
  }
  .company_message > img {
    width: 230px;
  }
  .company_message_text {
    margin-left: 40px;
  }
  .company_message_text > img {
    display: block;
    margin: 20px 20px 0 auto;
    width: 236px;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .company_message > img {
    float: left;
    width: 40%;
    margin: 0 20px 20px 0;
  }
  .company_message_text > img {
    width: 50%;
    display: block;
    margin: 20px 0 0 auto;
  }
}
/*------------------------------------
沿革
------------------------------------*/
.company_history {
  position: relative;
}
.company_history::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  top: 10px;
  left: 9px;
  background: #ACE4FF;
}
.company_history > dl {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
.company_history > dl:last-child::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  bottom: -42px;
  left: 9px;
  background: #ACE4FF;
}
.company_history > dl:last-child::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 10px;
  bottom: -27px;
  left: 9px;
  background: #ACE4FF;
}
.company_history_date {
  padding-left: 35px;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.company_history_date::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #009FE9;
  border: 5px solid #ACE4FF;
  border-radius: 50%;
}
.company_history_img {
  display: block;
  margin-top: 30px;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .company_history > dl {
    justify-content: space-between;
  }
  .company_history > dl > dd {
    width: 660px;
  }
  .company_history_date {
    width: 180px;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .company_history > dl {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .company_history > dl > dd {
    margin-left: 30px;
    width: calc(100% - 120px);
  }
  .company_history_date {
    padding-left: 35px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100px;
  }
  .company_history_date > span {
    display: block;
    margin: 0 0 0 auto;
    text-align: right;
  }
  .company_history_date::before {
    bottom: auto;
  }
  .company_history_img {
    margin-top: 30px;
    width: 70%;
  }
}
/*===================================
  
  スライダー

===================================*/
/*------------------------------------
TOPメインビジュアル
------------------------------------*/
.mv_slider {
  height: 680px;
  overflow: hidden;
  position: relative;
}
.mv_slider_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 3;
}
.mv_slider_item {
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: fade_slider 12s linear infinite 0s;
  animation: fade_slider 12s linear infinite 0s;
}
.mv_slider li:nth-child(2) .mv_slider_item {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.mv_slider li:nth-child(3) .mv_slider_item {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
/* SP */
@media screen and (max-width: 991px) {
  .mv_slider {
    height: 80vh;
  }
}
@keyframes fade_slider {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1.17);
    z-index: 2;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade_slider {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.17);
    z-index: 2;
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------------
流れるだけのスライダー
------------------------------------*/
.flow_slider {
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.flow_slider_item {
  margin-right: 10px;
}
.flow_slider.slick-initialized {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .flow_slider {
    position: relative;
  }
  .flow_slider_item {
    max-width: 150px;
  }
  .flow_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}
/*------------------------------------
スライダー1
------------------------------------*/
.slider_l {
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-bottom: 25px;
}
.slider_l a {
  outline: none;
}
.slider_l a > picture > img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.slider_l a:hover > picture > img {
  opacity: 0.8;
  outline: none;
}
.slider_l_item {
  margin: 0 25px;
}
.slider_nav {
  display: flex;
  justify-content: center;
}
.slider_nav_main {
  position: relative;
}
.slider_nav .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider_nav .slick-prev {
  margin-right: 20px;
}
.slider_nav .slick-next {
  margin-left: 20px;
}
.slider_nav .slick-dots {
  padding: 0;
}
.slider_nav .slick-dots > li {
  display: inline-block;
  margin: 0 10px;
}
.slider_nav .slick-dots button {
  padding: 0;
  border: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #BBBBBB;
  color: transparent;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
.slider_nav .slick-dots .slick-active button {
  background-color: #00BFF2;
}
.slider_l.slick-initialized {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .slider_l {
    margin-bottom: 15px;
  }
  .slider_l_item {
    margin: 0 5px;
  }
  .slider_nav .slick-arrow {
    display: none !important;
  }
  .slider_nav .slick-dots > li {
    display: inline-block;
    margin: 0 6px;
  }
  .slider_nav .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
.slick-prev {
  right: 100%;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 13px;
  width: 24px;
  height: 24px;
  border-top: 4px solid #00BFF2;
  border-right: 4px solid #00BFF2;
  transform: rotate(-135deg);
}
.slick-next {
  right: 100%;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-next::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 4px solid #00BFF2;
  border-right: 4px solid #00BFF2;
  transform: rotate(45deg);
}
/*------------------------------------
スライダー2
------------------------------------*/
.slider_s, .slider_movie {
  position: relative;
  opacity: 0;
  overflow: hidden;
  margin: 0 100px;
  transition: all 0.4s ease;
}
.slider_s a, .slider_s .slider_movie_link, .slider_movie a, .slider_movie .slider_movie_link {
  outline: none;
  cursor: pointer;
}
.slider_s a > img, .slider_s .slider_movie_link > img, .slider_movie a > img, .slider_movie .slider_movie_link > img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.slider_s a:hover > img, .slider_s .slider_movie_link:hover > img, .slider_movie a:hover > img, .slider_movie .slider_movie_link:hover > img {
  opacity: 0.8;
  outline: none;
}
.slider_s_item, .slider_movie_item {
  max-width: 300px;
}
.slider_s_item:not(:last-child), .slider_movie_item:not(:last-child) {
  margin-right: 10px;
}
.slider_s_text, .slider_movie_text {
  margin-top: 10px;
}
.slider_s_more, .slider_movie_more {
  display: none;
}
.slider_s .slick-disabled, .slider_movie .slick-disabled {
  opacity: 0 !important;
  z-index: -1 !important;
}
.slider_s .slick-arrow, .slider_movie .slick-arrow {
  position: absolute;
  top: 0;
}
.slider_s .slick-next, .slider_movie .slick-next {
  width: 150px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#EBFBFF 70%));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #EBFBFF 70%);
  z-index: 2;
  margin-left: -150px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}
.slider_s .slick-next::after, .slider_movie .slick-next::after {
  left: auto;
  right: 30px;
}
.slider_s .slick-prev, .slider_movie .slick-prev {
  width: 150px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#EBFBFF 70%));
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #EBFBFF 70%);
  z-index: 2;
  margin-right: -150px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}
.slider_s .slick-prev::after, .slider_movie .slick-prev::after {
  right: auto;
  left: 30px;
}
.slider_movie_item {
  max-width: 400px;
}
.slider_movie_iframe {
  display: none;
}
.slider_s.slick-initialized, .slider_movie.slick-initialized {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .slider_s {
    opacity: 1;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
  }
  .slider_s_item {
    max-width: inherit;
    width: 40%;
    display: inline-block;
  }
  .slider_s_item:first-child {
    margin-left: 6%;
  }
  .slider_s_item:last-child {
    margin-right: 6%;
  }
  .slider_s_text {
    font-size: 1rem;
    white-space: pre-wrap;
  }
  .slider_s::-webkit-scrollbar {
    display: none !important;
    -webkit-appearance: none;
  }
  .slider_movie {
    opacity: 1;
    margin: 0;
    display: block;
    padding: 0 6%;
  }
  .slider_movie.is_more {
    position: relative;
    height: 800px;
    padding-bottom: 50px;
    overflow: hidden;
  }
  .slider_movie.is_more::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #ebfbff 70%);
    background: -webkit-linear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #ebfbff 70%);
    background: -mozlinear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #ebfbff 70%);
    background: -ms-linear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #ebfbff 70%);
  }
  .slider_movie_item {
    max-width: inherit;
    width: 100%;
    display: block;
  }
  .slider_movie_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .slider_movie_text {
    font-size: 1rem;
    white-space: pre-wrap;
  }
  .slider_movie_link > img {
    display: none;
  }
  .slider_movie_iframe {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .slider_movie_iframe > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slider_movie_more {
    display: block;
    font-size: 1.4rem;
    color: #01BFF2;
    margin-top: -30px;
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
  }
  .slider_movie_more b {
    position: relative;
  }
  .slider_movie_more b::after {
    content: "";
    position: absolute;
    margin: auto;
    vertical-align: middle;
    right: -20px;
    top: 0;
    bottom: 4px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #01BFF2;
    border-right: 2px solid #01BFF2;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
/*===================================
  
  新着情報

===================================*/
.block_arrival_ttl {
  margin-bottom: 20px;
}
.block_arrival_ttl > span {
  display: block;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.block_arrival_ttl > span:nth-child(1) {
  color: #01BFF2;
}
.block_arrival_ttl > span:nth-child(2) {
  font-size: 1.8rem;
}
.block_arrival_date {
  color: #aaa;
  margin-bottom: 10px;
}
.block_arrival dl:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dotted #01BFF2;
}
.block_arrival dd > a {
  font-weight: bold;
  display: block;
  text-decoration: underline;
}
.block_arrival dd > a:hover {
  text-decoration: none;
}
.block_arrival_blog dl:not(:last-child) {
  border-bottom: 2px dotted #01BFF2;
  padding-bottom: 20px;
}
.block_arrival_blog dd > a {
  font-weight: normal;
  text-decoration: underline;
}
.block_arrival_blog dd > a > ul {
  display: flex;
  align-items: flex-start;
}
.block_arrival_blog dd > a > ul > li:first-child img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.block_arrival_blog dd > a > ul > li:last-child {
  margin-left: 15px;
}
.block_arrival_blog dd > a:hover img {
  opacity: 0.8;
}
.block_arrival_btn {
  position: relative;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #01BFF2;
  width: 100%;
  max-width: 200px;
  margin: 40px auto 0;
  padding: 5px 10px;
  text-decoration: none;
  border: 1px solid #01BFF2;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.block_arrival_btn::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #01BFF2;
  border-right: solid 2px #01BFF2;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
}
.block_arrival_btn:hover {
  background: #01BFF2;
  color: #fff;
  border-color: #fff;
}
.block_arrival_btn:hover::after {
  border-color: #fff;
}
.block_arrival_lead {
  font-size: 1.4rem;
  margin-top: 5px;
}
.block_arrival_icon {
  margin-left: 8px;
  display: inline-block;
}
.iframe_outer {
  overflow-y: scroll;
  height: 250px;
}
.block_arrival iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .block_arrival_ttl > span:nth-child(2) {
    font-size: 1.6rem;
  }
  .block_arrival > dl:not(:last-child) {
    margin-bottom: 15px;
  }
  .block_arrival_news {
    padding-bottom: 25px;
  }
  .block_arrival_date {
    margin-bottom: 5px;
  }
  .block_arrival_blog dd > a > ul > li:first-child {
    width: 30%;
  }
  .block_arrival_blog dd > a > ul > li:first-child > img {
    display: block;
    width: 100%;
  }
  .block_arrival_blog dd > a > ul > li:last-child {
    width: 60%;
  }
  .block_arrival_blog dd > a > ul > li > div:not(:first-child) {
    display: none !important;
  }
  .block_arrival_btn {
    width: 75%;
    max-width: 250px;
    font-size: 1.4rem;
    padding: 10px 15px;
  }
  .block_arrival_icon {
    width: 18px;
    vertical-align: middle;
    margin-left: 5px;
  }
  .block_arrival_lead {
    font-size: 1.1rem;
  }
}
/*===================================
  
  ブログ一覧

===================================*/
.box_blog {
  display: block;
}
.box_blog > img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.box_blog_main {
  margin-top: 10px;
}
.box_blog_main > dd > p {
  font-size: 1.5rem;
  line-height: 1.5;
}
.box_blog_ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}
.box_blog_notice, .box_blog_event, .box_blog_sale, .box_blog_note {
  display: table;
  padding: 5px 15px;
  margin-bottom: 7px;
  line-height: 1;
  color: #fff;
}
.box_blog_notice {
  background: #01BFF2;
}
.box_blog_event {
  background: #FF8001;
}
.box_blog_sale {
  background: #FF2626;
}
.box_blog_note {
  background: #996600;
}
@media print, screen and (min-width: 992px) {
  a.box_blog:hover {
    cursor: pointer;
  }
  a.box_blog:hover dd {
    text-decoration: underline;
  }
  a.box_blog:hover > img {
    opacity: 0.8;
  }
}
@media screen and (max-width: 991px) {
  .box_blog_main > dd > p {
    font-size: 1.1rem;
  }
  .box_blog_notice, .box_blog_event, .box_blog_sale, .box_blog_note {
    padding: 5px 10px;
  }
}
/*===================================
  
  3つの情報

===================================*/
.block_three_item {
  position: relative;
}
.block_three_item::before {
  content: '';
  position: absolute;
  height: 100%;
  background: #EBFBFF;
  right: 200px;
  left: -300%;
  z-index: -1;
}
.block_three_item::after {
  content: '01';
  position: absolute;
  font-size: 5rem;
  font-weight: bold;
  top: -0.5em;
  line-height: 1;
  letter-spacing: 0.1em;
  left: 0;
  color: #0CC5F2;
}
.block_three_main {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block_three_text {
  padding: 0 40px 0 0;
}
.block_three_text > dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.block_three_text > dt > b {
  color: #FF5B26;
}
.block_three_img {
  max-width: 500px;
}
.block_three_item:nth-child(2n)::before {
  background: #FFF8F0;
  right: -300%;
  left: 200px;
}
.block_three_item:nth-child(2n)::after {
  right: 0;
  left: inherit;
}
.block_three_item:not(:last-child) {
  margin-bottom: 70px;
}
.block_three_item:nth-child(1)::after {
  content: '01';
}
.block_three_item:nth-child(2)::after {
  content: '02';
}
.block_three_item:nth-child(3)::after {
  content: '03';
}
@media print, screen and (min-width: 992px) {
  .block_three_item:nth-child(2n) .block_three_main {
    flex-direction: row-reverse;
  }
  .block_three_item:nth-child(2n) .block_three_text {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 991px) {
  .block_three_item::before {
    right: 10%;
    height: 50%;
  }
  .block_three_item::after {
    font-size: 2.6rem;
    left: 5%;
  }
  .block_three_main {
    padding: 30px 0 30px 5%;
    flex-direction: column;
  }
  .block_three_text {
    padding: 0;
  }
  .block_three_text > dt {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .block_three_img {
    margin-bottom: 15px;
  }
  .block_three_item:nth-child(2n) .block_three_main {
    padding: 30px 5% 30px 0;
  }
  .block_three_item:nth-child(2n)::before {
    left: 10%;
  }
  .block_three_item:nth-child(2n)::after {
    right: 5%;
  }
  .block_three_item:nth-child(2n) .block_three_text > dt {
    display: table;
    margin-left: auto;
  }
  .block_three_item:not(:last-child) {
    margin-bottom: 30px;
  }
}
/*===================================
  
  フル背景画像
   - block_fullimg

===================================*/
.block_fullimg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.block_fullimg_main {
  position: relative;
  padding: 30px;
  width: 53%;
  background: #fff;
}
.block_fullimg_main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 2px;
  background: #00BFF2;
}
.block_fullimg_main dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.block_fullimg_main dt > span {
  font-size: 1.4rem;
  color: #00BFF2;
  display: block;
  margin-bottom: 5px;
}
.block_fullimg_main dt > b {
  color: #FF5B26;
}
.block_fullimg_main dd {
  padding-bottom: 30px;
}
.block_fullimg-r .block_fullimg_main {
  margin-left: auto;
}
.bg_layout01 {
  background-image: url(../img/img-layout/bg_layout01_pc.jpg);
}
.bg_layout02 {
  background-image: url(../img/img-layout/bg_layout02_pc.jpg);
}
/* SP */
@media screen and (max-width: 991px) {
  .block_fullimg {
    padding: 35px 0 0;
    background-size: 100% auto;
    background-position: top center;
  }
  .block_fullimg_main {
    margin-top: 45%;
    padding: 25px;
    width: 100%;
  }
  .block_fullimg_main dt {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .block_fullimg_main dt > span {
    font-size: 1.2rem;
  }
  .block_fullimg_main dd {
    padding-bottom: 0;
  }
  .block_fullimg-r .block_fullimg_main {
    margin-left: auto;
  }
  .bg_layout01 {
    background-image: url(../img/img-layout/bg_layout01_sp.jpg);
  }
  .bg_layout02 {
    background-image: url(../img/img-layout/bg_layout02_sp.jpg);
  }
}
/*===================================
  
  アクセス
   - block_map

===================================*/
.block_map_address {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.block_map_iframe {
  height: 440px;
}
.block_map_iframe iframe {
  width: 100%;
  height: 100%;
  border: 3px solid #BBF1FF;
}
.block_map_link {
  margin-top: 10px;
  text-align: right;
}
/* SP */
@media screen and (max-width: 991px) {
  .block_map_address {
    font-size: 1.2rem;
  }
  .block_map_iframe {
    height: 300px;
  }
}
.link_outer {
  position: relative;
  padding-right: 30px;
  text-decoration: none;
}
.link_outer::before {
  content: '';
  position: absolute;
  background: url(../img/img-common/icon_outer.png) left center no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.link_outer:hover {
  text-decoration: underline;
}
/* SP */
@media screen and (max-width: 991px) {
  .link_outer {
    font-size: 1.1rem;
    padding-right: 25px;
  }
  .link_outer::before {
    width: 15px;
    height: 15px;
  }
}
/*===================================
  
  動画

===================================*/
.movie_wrap {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie_wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie_ttl01, .movie_ttl02, .movie_ttl03 {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  align-items: flex-start;
  margin: 15px auto 0;
  line-height: 1.5;
}
.movie_ttl02 {
  flex-direction: column;
}
.movie_ttl02 > span {
  font-size: 1.4rem;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 3px;
}
.movie_ttl02 > b {
  font-size: 2rem;
  width: 100%;
  display: block;
  text-align: center;
}
.movie_ttl03 {
  font-size: 2rem;
  font-weight: bold;
}
.movie_ttl03 > b {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 5px 20px;
  background: #FF0000;
  margin: 0.3em 15px 0 0;
  font-size: 1.6rem;
  line-height: 1;
}
/* SP */
@media screen and (max-width: 991px) {
  .movie_ttl01, .movie_ttl02, .movie_ttl03 {
    margin-top: 10px;
    font-size: 1.1rem;
  }
  .movie_ttl02 {
    flex-direction: column;
  }
  .movie_ttl02 > span {
    font-size: 1.1rem;
  }
  .movie_ttl02 > b {
    font-size: 1.3rem;
    text-align: left;
  }
  .movie_ttl03 {
    font-size: 1.3rem;
  }
  .movie_ttl03 > b {
    padding: 5px 10px;
    font-size: 1.1rem;
    margin-right: 10px;
  }
}
.movie_modal {
  margin: 0;
  padding: 0;
  position: fixed;
  display: none;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie_modal_inner {
  width: 800px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie_modal_inner > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#modal-overlay {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.page_nav {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page_nav > li {
  display: flex;
  justify-content: center;
  width: 33%;
  margin-bottom: 40px;
}
.page_nav > li > a {
  border-right: 1px solid #BBBBBB;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  position: relative;
}
.page_nav > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: #01BFF2 transparent transparent transparent;
}
.page_nav > li > a > span {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 3.7em;
  padding: 0 30px 10px;
  line-height: 1.6;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .page_nav > li:nth-child(3n-2) {
    border-left: 1px solid #BBBBBB;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .page_nav > li {
    width: 49%;
    margin-bottom: 20px;
    text-align: center;
  }
  .page_nav > li:nth-child(2n-1) {
    border-left: 1px solid #BBBBBB;
  }
  .page_nav > li > a {
    min-height: auto;
  }
  .page_nav > li > a > span {
    height: auto;
    padding: 0 15px 20px;
  }
}
/*===================================
  
  Q＆A

===================================*/
.faq_block_item {
  border-bottom: 1px solid #DDDDDD;
  min-height: 96px;
}
.faq_block_q {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  min-height: 96px;
  position: relative;
  padding: 20px 80px 20px 56px;
  cursor: pointer;
}
.faq_block_q::before {
  content: '';
  position: absolute;
  background: url(../img/img-common/icon_q.png) left center no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.faq_block_q::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid #01BFF2;
  border-right: 2px solid #01BFF2;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq_block_q.is_open::after {
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq_block_ans {
  padding: 0 80px 30px 56px;
}
.faq_block_link {
  display: flex;
  justify-content: flex-end;
  margin: 30px auto 0;
  text-align: center;
}
.faq_block_link > a {
  font-weight: bold;
  flex-basis: auto;
  color: #01BFF2;
  border: 1px solid #01BFF2;
  padding: 5px 15px;
  border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq_block_link > a > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.faq_block_link > a > span::after {
  content: "";
  position: absolute;
  border-right: 2px solid #01BFF2;
  border-top: 2px solid #01BFF2;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq_block_link > a:hover {
  color: #fff;
  border-color: #01BFF2;
  background: #01BFF2;
}
.faq_block_link > a:hover > span::after {
  border-color: #fff;
}
/* SP */
@media screen and (max-width: 991px) {
  .faq_block_item {
    border-bottom: 1px solid #DDDDDD;
    min-height: inherit;
  }
  .faq_block_q {
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    min-height: inherit;
    position: relative;
    padding: 20px 35px 20px 42px;
    cursor: pointer;
  }
  .faq_block_q::before {
    width: 30px;
    height: 30px;
  }
  .faq_block_q::after {
    right: 10px;
    width: 10px;
    height: 10px;
  }
  .faq_block_q.is_open::after {
    width: 1px;
    height: 14px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .faq_block_ans {
    font-size: 1.2rem;
    padding: 0 35px 20px 42px;
  }
  .faq_block_link {
    margin: 20px auto 0;
  }
}
/*===================================
  
  プライバシーポリシー

===================================*/
.privacy_lead {
  padding-top: 50px;
}
.privacy_list {
  margin-top: 60px;
}
.privacy_list > dl:not(:last-child) {
  margin-bottom: 30px;
}
.privacy_contact {
  margin-top: 60px;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .privacy_lead {
    padding-top: 0;
  }
  .privacy_list {
    margin-top: 30px;
  }
  .privacy_list > dl:not(:last-child) {
    margin-bottom: 25px;
  }
  .privacy_contact {
    margin-top: 30px;
  }
}
/*===================================
  
  もっと見る

===================================*/
.is_hide {
  height: 0 !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  z-index: -1;
}
.js_more_items > * {
  opacity: 1;
  transition: all 0.4s ease;
}
.js_more_items .is_hide * {
  display: none;
}
@media screen and (max-width: 991px) {
  .is_hide_sp {
    height: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    z-index: -1;
  }
}
.block_more.is_more {
  position: relative;
  height: 200px;
  padding-bottom: 50px;
  overflow: hidden;
}
.block_more.is_more::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #EBFBFF 70%);
  background: -webkit-linear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #EBFBFF 70%);
  background: -mozlinear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #EBFBFF 70%);
  background: -ms-linear-gradient(to bottom, rgba(235, 251, 255, 0) 0%, #EBFBFF 70%);
}
.list_ac_item {
  border: 2px solid #8CE8FF;
  box-shadow: 10px 10px #EEEEEE;
}
.list_ac_item:not(:first-child) {
  margin-top: 30px;
}
.list_ac_link {
  position: relative;
  font-weight: bold;
  padding: 25px 70px 25px 60px;
  cursor: pointer;
  background: #fff url(../img/img-common/icon_person.png) no-repeat left 30px center;
  background-size: auto 30px;
}
.list_ac_link::before, .list_ac_link::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #999999;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
  width: 20px;
  height: 4px;
}
.list_ac_link::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: all 0.4s ease;
}
.list_ac_link.is_open::after {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.list_ac_main {
  padding: 10px 70px 30px 30px;
}
.list_ac_person {
  margin-top: 10px;
  display: block;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .list_ac_item {
    box-shadow: 5px 5px #EEEEEE;
  }
  .list_ac_item:not(:first-child) {
    margin-top: 20px;
  }
  .list_ac_link {
    font-size: 1.2rem;
    padding: 15px 40px 15px 50px;
    background: #fff url(../img/img-common/icon_person.png) no-repeat left 15px center;
    background-size: auto 25px;
  }
  .list_ac_link::before, .list_ac_link::after {
    right: 15px;
    width: 15px;
    height: 3px;
  }
  .list_ac_main {
    padding: 5px 40px 20px 20px;
  }
}
/*------------------------------------
 MOREリンク1
------------------------------------*/
.link_more01 {
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  border: 1px solid #00BFF2;
  color: #00BFF2 !important;
  padding: 12px 15px;
  margin: 50px auto 0;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.link_more01 > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 25px;
}
.link_more01 > span::after {
  content: "";
  position: absolute;
  border-right: 2px solid #00BFF2;
  border-top: 2px solid #00BFF2;
  right: 0;
  top: -5px;
  bottom: 0;
  margin: auto;
  height: 10px;
  width: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .link_more01 > span::before {
    content: "";
    position: absolute;
    background: #00BFF2;
    left: 0;
    right: 25px;
    bottom: -5px;
    height: 1px;
    width: auto;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .link_more01:hover > span::before {
    opacity: 1;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .link_more01 {
    margin: 25px auto 0;
  }
}
/*------------------------------------
 MOREリンク2
------------------------------------*/
.link_more02 {
  font-weight: bold;
  display: block;
  color: #01BFF2;
  margin-top: -30px;
  width: 100%;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  z-index: 1;
}
.link_more02 > span {
  position: relative;
}
.link_more02 > span::after {
  content: "";
  position: absolute;
  margin: auto;
  vertical-align: middle;
  right: -20px;
  top: 0;
  bottom: 4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #01BFF2;
  border-right: 2px solid #01BFF2;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* PC */
@media print, screen and (min-width: 992px) {
  .link_more02 > span::before {
    content: "";
    position: absolute;
    background: #00BFF2;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    width: auto;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .link_more02:hover > span::before {
    opacity: 1;
  }
}
/*------------------------------------
 MOREリンク3
------------------------------------*/
.link_more03 {
  letter-spacing: 0.1em;
  font-weight: bold;
  display: table;
  max-width: 6em;
  margin: 50px auto 0;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.link_more03 > span {
  position: relative;
  padding-right: 25px;
}
.link_more03 > span::after {
  content: "";
  position: absolute;
  margin: auto;
  vertical-align: middle;
  right: 0;
  top: 0;
  bottom: 4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}
.link_more03 > span::before {
  content: "";
  position: absolute;
  background: #333;
  left: -5px;
  right: -5px;
  bottom: -8px;
  height: 2px;
  width: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .link_more03:hover {
    color: #01BFF2;
  }
  .link_more03:hover > span::after {
    border-color: #01BFF2;
  }
  .link_more03:hover > span::before {
    background: #01BFF2;
  }
}
/* SP */
@media screen and (max-width: 991px) {
  .link_more03 {
    margin: 20px auto 0;
  }
}
/*===================================
  
  タブ

===================================*/
.js_tab_items > * {
  display: none;
}
.js_tab_items > *.is_active {
  display: block;
}
/*------------------------------------
 タブ1
------------------------------------*/
.tab01_menu {
  margin-bottom: 40px;
  border-bottom: 2px solid #01BFF2;
}
.tab01_menu > ul {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.tab01_menu > ul > li {
  display: flex;
  justify-content: center;
  width: 31%;
}
.tab01_menu > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 20px 20px 33px 20px;
  border-top: 2px solid #01BFF2;
  border-left: 2px solid #01BFF2;
  border-right: 2px solid #01BFF2;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab01_menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  background: #fff;
  width: 104%;
  left: -2%;
  right: -2%;
  z-index: 1;
}
.tab01_menu > ul > li > a::before {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #01BFF2;
  border-right: 2px solid #01BFF2;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tab01_menu > ul > li.is_active > a, .tab01_menu > ul > li:hover > a {
  background: #01BFF2;
  color: #fff;
  transform: translate3d(0, 13px, 0);
}
.tab01_menu > ul > li.is_active > a::after, .tab01_menu > ul > li:hover > a::after {
  content: none;
}
@media screen and (max-width: 991px) {
  .tab01_menu {
    margin-bottom: 30px;
  }
  .tab01_menu > ul > li {
    width: 32%;
  }
  .tab01_menu > ul > li > a {
    padding: 7px 5px 18px 5px;
    border-width: 1px;
  }
  .tab01_menu > ul > li > a::after {
    height: 2px;
  }
  .tab01_menu > ul > li > a::before {
    bottom: 7px;
    width: 8px;
    height: 8px;
  }
}
/*------------------------------------
 タブ2
------------------------------------*/
.tab02_menu > ul {
  display: flex;
  justify-content: space-between;
}
.tab02_menu > ul > li {
  display: flex;
  justify-content: center;
  width: 100%;
}
.tab02_menu > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
  background: #fff;
  width: 100%;
  text-align: center;
  padding: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab02_menu > ul > li > a > span {
  position: relative;
  padding-left: 30px;
}
.tab02_menu > ul > li > a > span::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 19px;
  height: 19px;
  background: #01BFF2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab02_menu > ul > li > a > span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tab02_menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translate(-50%, 0);
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: #01BFF2 transparent transparent transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.tab02_menu > ul > li.is_active > a, .tab02_menu > ul > li:hover > a {
  background: #01BFF2;
  color: #fff;
}
.tab02_menu > ul > li.is_active > a::after, .tab02_menu > ul > li:hover > a::after {
  opacity: 1;
}
.tab02_menu > ul > li.is_active > a > span::before, .tab02_menu > ul > li:hover > a > span::before {
  background: #fff;
}
.tab02_menu > ul > li.is_active > a > span::after, .tab02_menu > ul > li:hover > a > span::after {
  border-color: #01BFF2;
  left: 6px;
  bottom: 2px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tab02_main {
  background: #E8FAFF;
  padding: 60px 0;
}
.tab02_lead {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .tab02_menu > ul > li > a {
    padding: 10px;
    text-align: left;
    justify-content: flex-start;
  }
  .tab02_menu > ul > li > a > span {
    padding-left: 25px;
  }
  .tab02_menu > ul > li > a > span::before {
    width: 18px;
    height: 18px;
  }
  .tab02_menu > ul > li > a > span::after {
    left: 5px;
    width: 6px;
    height: 6px;
  }
  .tab02_menu > ul > li.is_active > a, .tab02_menu > ul > li:hover > a {
    background: #01BFF2;
    color: #fff;
  }
  .tab02_menu > ul > li.is_active > a::after, .tab02_menu > ul > li:hover > a::after {
    opacity: 1;
  }
  .tab02_menu > ul > li.is_active > a > span::before, .tab02_menu > ul > li:hover > a > span::before {
    background: #fff;
  }
  .tab02_menu > ul > li.is_active > a > span::after, .tab02_menu > ul > li:hover > a > span::after {
    border-color: #01BFF2;
    left: 6px;
    bottom: 1px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .tab02_main {
    padding: 30px;
  }
  .tab02_lead {
    margin-bottom: 15px;
  }
}
.box_price {
  background: #fff;
  padding: 30px;
  max-width: 880px;
  margin: 0 auto;
}
.box_price > dt {
  text-align: center;
  color: #FF0000;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.box_price > dt > b {
  font-size: 4rem;
}
.box_price > dd {
  display: table;
  margin: auto;
  position: relative;
  padding: 15px 30px;
}
.box_price > dd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  border-left: 2px solid #00BFF2;
  border-top: 2px solid #00BFF2;
  border-bottom: 2px solid #00BFF2;
}
.box_price > dd::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  border-right: 2px solid #00BFF2;
  border-top: 2px solid #00BFF2;
  border-bottom: 2px solid #00BFF2;
}
@media screen and (max-width: 991px) {
  .box_price {
    padding: 20px;
  }
  .box_price > dt {
    font-size: 1.6rem;
  }
  .box_price > dt > b {
    font-size: 2.2rem;
  }
  .box_price > dd {
    padding: 0px 20px;
  }
}
/*------------------------------------
 タブ3
------------------------------------*/
.tab03_menu {
  margin-bottom: 40px;
}
.tab03_menu > ul {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.tab03_menu > ul > li {
  display: flex;
  justify-content: center;
  width: 100%;
}
.tab03_menu > ul > li:first-child {
  border-left: 1px solid #DDDDDD;
}
.tab03_menu > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 20px;
  border-right: 1px solid #DDDDDD;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab03_menu > ul > li > a > span {
  position: relative;
}
.tab03_menu > ul > li > a > span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #01BFF2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab03_menu > ul > li.is_active > a, .tab03_menu > ul > li:hover > a {
  background: #E8FAFF;
}
.tab03_menu > ul > li.is_active > a > span::after, .tab03_menu > ul > li:hover > a > span::after {
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .tab03_menu {
    margin-bottom: 30px;
  }
  .tab03_menu > ul > li {
    position: relative;
  }
  .tab03_menu > ul > li > a {
    padding: 10px 10px;
    border-width: 1px;
  }
  .tab03_menu > ul > li > a > span::after {
    content: none;
  }
  .tab03_menu > ul > li::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    height: 2px;
    border-bottom: 2px solid #01BFF2;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .tab03_menu > ul > li.is_active::after {
    opacity: 0;
  }
}
/*===================================
  
  モーダル

===================================*/
.modal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
}
.modal.is_open {
  opacity: 1;
  visibility: visible;
}
.modal.is_absolute {
  height: 100%;
  position: absolute;
}
.modal.is_absolute .modal_bg {
  height: 100%;
}
.modal.is_absolute .modal_inner {
  max-height: inherit;
  left: 0;
  right: 0;
  margin: auto;
  transform: inherit;
  background: none;
  height: auto;
}
.modal.is_absolute .modal_main {
  height: auto;
  overflow-y: inherit;
  max-height: inherit;
  background: #fff;
}
.modal_bg {
  background: rgba(1, 191, 242, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal_inner {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 100%;
  max-width: 760px;
  max-height: 70%;
}
.modal_main {
  height: 100%;
  padding: 40px;
  max-height: 100%;
  overflow-y: scroll;
  z-index: 99999;
}
.modal_main::-webkit-scrollbar {
  display: none;
}
.modal_close {
  background: #999999;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: -10px;
  top: -10px;
  border-radius: 50%;
  z-index: 99999;
}
.modal_close > span::before, .modal_close > span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  margin: auto;
  bottom: 0;
  width: 3px;
  height: 20px;
  background: #fff;
}
.modal_close > span::before {
  transform: rotate(-45deg);
}
.modal_close > span::after {
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .modal_inner {
    width: 90%;
    height: 90%;
    max-height: 100%;
    transform: translate(-50%, -50%);
  }
  .modal_main {
    padding: 30px 20px;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .modal_close {
    width: 35px;
    height: 35px;
  }
  .modal_close > span::before, .modal_close > span::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 16px;
    margin: auto;
    bottom: 0;
    width: 2px;
    height: 18px;
    background: #fff;
  }
}
/*===================================
  
  ポップアップcss（モーダル・別窓共通）

===================================*/
.popup_wrap {
  max-width: 600px;
  padding: 30px;
  margin: auto;
}
.popup_ttl {
  font-size: 2.2rem;
  color: #00A3D8;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px dotted #777777;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.popup_list {
  margin-top: 20px;
}
.popup_list > li:not(:last-child) {
  margin-bottom: 10px;
}
.popup_list > li::before {
  color: #00A3D8;
}
.popup_close {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  width: 60%;
  max-width: 220px;
  color: #00A3D8 !important;
  border: 1px solid #00A3D8;
  font-size: 1.6rem;
  font-weight: bold;
  background-size: auto 20px;
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
}
.popup_close > span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.popup_close > span::before, .popup_close > span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 2px;
  height: 15px;
  background: #00A3D8;
}
.popup_close > span::before {
  transform: rotate(-45deg);
}
.popup_close > span::after {
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .popup_ttl {
    font-size: 1.4rem;
    border-width: 1px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .popup_list {
    margin-top: 15px;
  }
  .popup_close {
    margin: 35px auto 0;
    font-size: 1.4rem;
    padding: 5px 0;
  }
}
/**/
iframe.alert {
  border: none;
  height: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
#iframe_info_outer {
  line-height: 0;
  font-size: 0;
}
#iframe_info_outer iframe {
  border: none;
}
#info_outer {
  padding: 50px 0 0;
}
#info_outer .info_box {
  max-width: 960px;
  width: 100%;
  margin: 0px auto;
  position: relative;
}
#info_outer .info_box .n_tit {
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 1.9rem;
  color: #9D833E;
  letter-spacing: 0.05em;
}
#info_outer .info_box .n_tit::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #CCCCCC;
  right: 0px;
  bottom: -5px;
  left: -500%;
  z-index: 0;
}
#info_outer .info_box .info_body {
  width: 850px;
  background: #EAFBF9;
  margin: 0 0 0 auto;
  padding: 30px 50px 30px 80px;
}
#info_outer .info_box .info_body dl:not(:first-child) {
  margin-top: 20px;
}
#info_outer .info_box .info_body p {
  font-size: 1.5rem;
  margin-top: 7px;
}
#info_outer .info_box .info_body a {
  text-decoration: underline;
}
#info_outer .info_box .info_body a:hover {
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  #info_outer {
    padding: 50px 0 0;
  }
  #info_outer .info_box {
    max-width: 960px;
    width: 88%;
    position: relative;
  }
  #info_outer .info_box .n_tit {
    top: -10px;
    font-size: 1.4rem;
  }
  #info_outer .info_box .info_body {
    width: auto;
    padding: 35px 25px 20px;
  }
  #info_outer .info_box .n_tit::after {
    bottom: 0;
  }
  #info_outer .info_box .info_body p {
    font-size: 1.1rem;
  }
}
/*===================================
  
  #mainvisual

===================================*/
.index #mainvisual {
  width: 100%;
  height: 800px;
  position: relative;
  background: url("../img/img-whole1/mainvisual_bg_01_pc.jpg") no-repeat center top;
}
.index #mainvisual .inner .mainvisual_title {
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.index #mainvisual .inner .mainvisual_button {
  background: rgba(255, 255, 255, 0.7);
  width: 700px;
  height: 120px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.index #mainvisual .inner .mainvisual_button a {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}
.index #mainvisual .inner .mainvisual_button a dl {
  width: 100%;
  padding: 10px 0 0 220px;
  position: relative;
}
.index #mainvisual .inner .mainvisual_button a dl::before {
  content: "";
  background: url("../img/img-whole1/image_01.png") no-repeat left top/contain;
  width: 175px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.index #mainvisual .inner .mainvisual_button a dl dt {
  color: #CC1785;
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  padding: 0 0 5px 35px;
}
.index #mainvisual .inner .mainvisual_button a dl dt strong {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(206, 23, 135, 0.7);
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  top: -20px;
  left: -40px;
}
.index #mainvisual .inner .mainvisual_button a dl dd {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.index #mainvisual .inner .mainvisual_button a dl dd:first-of-type::after {
  content: "";
  width: 30px;
  height: 30px;
  border-bottom: 3px solid #274699;
  border-right: 3px solid #274699;
  transform: rotate(45deg);
  position: absolute;
  top: -10px;
  right: 30px;
  transition: 0.4s;
}
.index #mainvisual .inner .mainvisual_button a:hover {
  opacity: 0.7;
}
.index #mainvisual .inner .mainvisual_button a:hover dl dd:first-of-type::after {
  top: 0;
}
@media screen and (max-width: 991px) {
  .index #mainvisual {
    height: 50vh;
    background: url("../img/img-whole1/mainvisual_bg_01_sp.jpg") no-repeat center top/cover;
  }
  .index #mainvisual .inner .mainvisual_title {
    top: 60px;
    width: 88%;
  }
  .index #mainvisual .inner .mainvisual_button {
    width: 90%;
    height: 80px;
    bottom: 30px;
  }
  .index #mainvisual .inner .mainvisual_button a dl {
    width: 100%;
    padding: 10px 0 0 40%;
    position: relative;
  }
  .index #mainvisual .inner .mainvisual_button a dl::before {
    width: 105px;
    height: 90px;
  }
  .index #mainvisual .inner .mainvisual_button a dl dt {
    font-size: 1.3rem;
    padding: 0;
  }
  .index #mainvisual .inner .mainvisual_button a dl dt strong {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    top: -15px;
    left: -20%;
  }
  .index #mainvisual .inner .mainvisual_button a dl dd {
    font-size: 1.0rem;
    padding-left: 0;
  }
  .index #mainvisual .inner .mainvisual_button a dl dd:first-of-type::after {
    width: 20px;
    height: 20px;
    top: -5px;
    right: 18px;
  }
}
/*===================================
  
  #slider_block

===================================*/
#slider_block {
  margin-top: 90px;
}
#slider_block .slider_block_items li {
  margin: 0 25px;
}
#slider_block .slider_block_items li p {
  text-align: center;
  line-height: 1.4;
  padding-top: 5px;
}
#slider_block .slider_block_arrows {
  width: 480px;
  margin: auto;
  position: relative;
}
#slider_block .slider_block_arrows .slick-prev {
  position: absolute;
  left: -30px;
  top: -230px;
}
#slider_block .slider_block_arrows .slick-prev::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 4px solid #333;
  border-right: 4px solid #333;
  transform: rotate(-135deg);
}
#slider_block .slider_block_arrows .slick-next {
  position: absolute;
  right: -30px;
  top: -230px;
}
#slider_block .slider_block_arrows .slick-next::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 30px;
  height: 30px;
  border-top: 4px solid #333;
  border-right: 4px solid #333;
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
    #slider_block {
      margin-top: 50px;
    }
  #slider_block .slider_block_items li {
    margin: 0 18px;
    width: 280px;
  }
  #slider_block .slider_block_arrows {
    width: 280px;
  }
  #slider_block .slider_block_arrows .slick-prev {
    left: -25px;
    top: -160px;
  }
  #slider_block .slider_block_arrows .slick-prev::after {
    width: 20px;
    height: 20px;
  }
  #slider_block .slider_block_arrows .slick-next {
    right: -25px;
    top: -160px;
  }
  #slider_block .slider_block_arrows .slick-next::after {
    width: 20px;
    height: 20px;
  }
}
/*===================================
  
  #introduction_block

===================================*/
#introduction_block  {
    margin-top: 90px;
}
#introduction_block .inner {
  width: 960px;
  padding: 100px 0 0 340px;
  position: relative;
}
#introduction_block .inner .introduction_block_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0;
  position: relative;
  margin-bottom: 20px;
}
#introduction_block .inner .introduction_block_title .introduction_block_title_sub {
  font-size: 3.0rem;
  font-weight: bold;
  color: #fff;
  width: 389px;
  height: 79px;
  background: url("../img/img-whole1/title_bg_01.png") no-repeat left top;
  text-align: center;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#introduction_block .inner .introduction_block_title .introduction_block_title_box {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.0;
  color: #fff;
  background: #005EB6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 5px 6px;
}
#introduction_block .inner .introduction_block_title .introduction_block_title_box:not(:last-of-type) {
  margin-right: 3px;
}
#introduction_block .inner .introduction_block_title .introduction_block_title_box:last-of-type {
  margin-right: 15px;
}
#introduction_block .inner .introduction_block_title strong {
  font-size: 6.0rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  letter-spacing: 0;
}
#introduction_block .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px 50px;
  margin-bottom: 50px;
}
#introduction_block .inner ul li {
  font-size: 3.3rem;
  font-weight: bold;
  color: #fff;
  width: 280px;
  height: 76px;
  border-radius: 100px;
  background: #005EB6;
  display: flex;
  justify-content: center;
  align-items: center;
}
#introduction_block .inner ul li span {
  font-size: 2.0rem;
}
#introduction_block .inner .introduction_block_image {
  position: absolute;
  top: 0;
  left: 0;
}
#introduction_block .inner .introduction_block_achievements {
  width: 616px;
  height: 100px;
  padding-left: 110px;
  border: 2px solid #ccc;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#introduction_block .inner .introduction_block_achievements::after {
  content: "";
  background: url("../img/img-whole1/icon_08.png") no-repeat left top/contain;
  width: 156px;
  height: 166px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#introduction_block .inner .introduction_block_achievements .introduction_block_achievements_title {
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.4;
}
#introduction_block .inner .introduction_block_achievements .introduction_block_achievements_title strong {
  font-size: 3.6rem;
}
#introduction_block .inner .introduction_block_achievements .introduction_block_achievements_title strong:first-of-type {
  color: #CC1385;
}
#introduction_block .inner .introduction_block_achievements .introduction_block_achievements_title span {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #CC1385;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 10px;
}
#introduction_block .inner .introduction_block_achievements .introduction_block_achievements_text {
  font-size: 1.7rem;
  margin: 0;
  padding-left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  #introduction_block .inner {
    width: 100%;
    padding: 30px 4% 90px;
    position: relative;
    margin-top: 100px;
    display: flex;
      flex-wrap: wrap;
    justify-content: space-between;
      align-items: flex-start;
  }
  #introduction_block .inner .introduction_block_text {
    width: 62%;
  }
  #introduction_block .inner .introduction_block_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 0;
    position: static;
    padding-left: 5%;
    margin-bottom: 25px;
  }
  #introduction_block .inner .introduction_block_title .introduction_block_title_sub {
    font-size: 1.6rem;
    width: 60%;
    height: 54px;
    background: url("../img/img-whole1/title_bg_01.png") no-repeat left top/contain;
    top: -50px;
    padding: 5px 0 0 0;
  }
  #introduction_block .inner .introduction_block_title .introduction_block_title_box {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.0;
    color: #fff;
    background: #005EB6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
  }
  #introduction_block .inner .introduction_block_title .introduction_block_title_box:not(:last-of-type) {
    margin-right: 3px;
  }
  #introduction_block .inner .introduction_block_title .introduction_block_title_box:last-of-type {
    margin-right: 15px;
  }
  #introduction_block .inner .introduction_block_title strong {
    font-size: 2.4rem;
  }
  #introduction_block .inner ul {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
    margin-bottom: 0;
  }
  #introduction_block .inner ul li {
    font-size: 1.7rem;
    width: 85%;
    height: auto;
    padding: 5px 0;
  }
  #introduction_block .inner ul li span {
    font-size: 0.8rem;
  }
  #introduction_block .inner .introduction_block_image {
    width: 37%;
    position: relative;
    top: 0;
    left: 0;
  }
  #introduction_block .inner .introduction_block_achievements {
    width: 86%;
    height: 60px;
    padding-left: 70px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #introduction_block .inner .introduction_block_achievements::after {
    width: 75px;
    height: 80px;
    right: 5px;
  }
  #introduction_block .inner .introduction_block_achievements .introduction_block_achievements_title {
    font-size: 1.5rem;
  }
  #introduction_block .inner .introduction_block_achievements .introduction_block_achievements_title strong {
    font-size: 1.8rem;
  }
  #introduction_block .inner .introduction_block_achievements .introduction_block_achievements_title span {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    top: -10px;
    left: 10px;
  }
  #introduction_block .inner .introduction_block_achievements .introduction_block_achievements_text {
    font-size: 0.8rem;
    padding-left: 0;
  }
}
/*===================================
  
  #features_block

===================================*/
#features_block {
  background: #EEEEEE;
  padding: 100px 0;
  margin-top: 130px;
}
#features_block .inner .features_block_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
#features_block .inner .features_block_title span {
  position: relative;
  padding-left: 175px;
}
#features_block .inner .features_block_title span strong {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: -33px;
}
#features_block .inner .features_block_title span strong::before {
  content: "";
  background: url("../img/img-whole1/title_01.png") no-repeat left top/contain;
  width: 160px;
  height: 44px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#features_block .inner .features_block_title + p {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
#features_block .inner .movie {
  width: 650px;
  margin: 0 auto 70px;
}
#features_block .inner .features_block_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px 0;
}
#features_block .inner .features_block_items .features_block_item {
  width: 450px;
  min-height: 380px;
  background: #fff;
  padding: 25px;
  position: relative;
}
#features_block .inner .features_block_items .features_block_item::before {
  content: "";
  background: url("../img/img-whole1/icon_no1.png") no-repeat left top/contain;
  width: 46px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: 15px;
}
#features_block .inner .features_block_items .features_block_item:nth-of-type(2)::before {
  background: url("../img/img-whole1/icon_no2.png") no-repeat left top/contain;
}
#features_block .inner .features_block_items .features_block_item:nth-of-type(3)::before {
  background: url("../img/img-whole1/icon_no3.png") no-repeat left top/contain;
}
#features_block .inner .features_block_items .features_block_item:nth-of-type(4)::before {
  background: url("../img/img-whole1/icon_no4.png") no-repeat left top/contain;
  width: 48px;
}
#features_block .inner .features_block_items .features_block_item .features_block_item_title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 5px 0 12px;
}
#features_block .inner .features_block_items .features_block_item .features_block_item_text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
#features_block .inner .features_block_items .features_block_item .features_block_items_image {
  text-align: center;
}
@media screen and (max-width: 991px) {
  #features_block {
    padding: 60px 0;
  margin-top: 50px;
  }
  #features_block .inner .features_block_title {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
  #features_block .inner .features_block_title span {
    position: relative;
    padding-left: 30%;
  }
  #features_block .inner .features_block_title span strong {
    font-size: 0.9rem;
    left: 0;
    top: -21px;
  }
  #features_block .inner .features_block_title span strong::before {
    background: url("../img/img-whole1/title_01.png") no-repeat left top/contain;
    width: 90px;
    height: 25px;
    bottom: -30px;
  }
  #features_block .inner .features_block_title + p {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  #features_block .inner .movie {
    width: 100%;
    margin: 0 auto 50px;
  }
  #features_block .inner .features_block_items {
    gap: 40px 0;
  }
  #features_block .inner .features_block_items .features_block_item {
    width: 100%;
    min-height: 200px;
  }
  #features_block .inner .features_block_items .features_block_item .features_block_item_title {
    font-size: 1.7rem;
    margin: 5px 0 10px;
  }
  #features_block .inner .features_block_items .features_block_item .features_block_item_text {
    font-size: 1.0rem;
    margin-bottom: 20px;
  }
  #features_block .inner .features_block_items .features_block_item .features_block_items_image {
    text-align: center;
  }
}
/*===================================
  
  #order_block

===================================*/
#order_block {
  padding: 100px 0;
}
#order_block .inner .order_block_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
#order_block .inner .order_block_title span {
  position: relative;
  padding-left: 175px;
}
#order_block .inner .order_block_title span strong {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: -33px;
}
#order_block .inner .order_block_title span strong::before {
  content: "";
  background: url("../img/img-whole1/title_01.png") no-repeat left top/contain;
  width: 160px;
  height: 44px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#order_block .inner .order_block_item {
  width: 900px;
  border: 1px solid #999;
  position: relative;
  padding: 30px 30px 60px 60px;
  position: relative;
  margin-bottom: 60px;
}
#order_block .inner .order_block_item:nth-of-type(2) {
  margin: 0 0 0 60px;
}
#order_block .inner .order_block_item::before {
  content: "1";
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1.0;
  color: #fff;
  padding: 30px 7px 7px 7px;
  background: #274699;
  position: absolute;
  top: -13px;
  left: -1px;
}
#order_block .inner .order_block_item:nth-of-type(2)::before {
  content: "2";
}
#order_block .inner .order_block_item .order_block_item_title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#order_block .inner .order_block_item .order_block_item_title-sub {
  font-size: 1.8rem;
  font-weight: bold;
  color: #005EB6;
  margin-bottom: 10px;
}
#order_block .inner .order_block_item p {
  font-size: 1.4rem;
  width: 420px;
}
#order_block .inner .order_block_item p + p {
  margin: 0;
}
#order_block .inner .order_block_item p:not(:last-of-type) {
  margin-bottom: 15px;
}
#order_block .inner .order_block_item p:last-of-type {
  width: 100%;
}
#order_block .inner .order_block_item .order_block_item_image {
  position: absolute;
  top: 50px;
  right: 30px;
}
#order_block .inner .order_block_item dl {
  margin-top: 20px;
}
#order_block .inner .order_block_item dl dt {
  font-size: 2.0rem;
  font-weight: bold;
}
#order_block .inner .order_block_item dl dd {
  font-size: 1.4rem;
  width: 420px;
}
#order_block .inner .order_block_item dl:nth-of-type(2) dd {
  font-size: 1.4rem;
  width: 90%;
}
@media screen and (max-width: 991px) {
  #order_block {
    padding: 100px 0 60px;
  }
  #order_block .inner .order_block_title {
    font-size: 2.0rem;
    margin-bottom: 30px;
  }
  #order_block .inner .order_block_title span {
    position: relative;
    padding-left: 0;
  }
  #order_block .inner .order_block_title span strong {
    font-size: 0.9rem;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #order_block .inner .order_block_title span strong::before {
    background: url("../img/img-whole1/title_01.png") no-repeat left top/contain;
    width: 90px;
    height: 25px;
    bottom: -30px;
  }
  #order_block .inner .order_block_item {
    width: 96%;
    padding: 10px 10% 20px;
    margin: 0 auto 40px;
  }
  #order_block .inner .order_block_item:nth-of-type(2) {
    margin: 0 auto;
  }
  #order_block .inner .order_block_item::before {
    font-size: 1.8rem;
      padding: 25px 5px 7px 5px;
  }
  #order_block .inner .order_block_item .order_block_item_title {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  #order_block .inner .order_block_item .order_block_item_title-sub {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  #order_block .inner .order_block_item p {
    font-size: 1.0rem;
    width: 100%;
  }
  #order_block .inner .order_block_item p:not(:last-of-type) {
    margin-bottom: 15px;
  }
  #order_block .inner .order_block_item .order_block_item_image {
    position: relative;
    top: 0;
    right: 0;
    width: 80%;
    margin: 0 auto 20px;
  }
  #order_block .inner .order_block_item:nth-of-type(2) .order_block_item_image {
    margin-top: 15px;
  }
  #order_block .inner .order_block_item dl {
    margin-top: 20px;
  }
  #order_block .inner .order_block_item dl dt {
    font-size: 1.2rem;
  }
  #order_block .inner .order_block_item dl dd {
    font-size: 1.0rem;
    width: 100%;
  }
  #order_block .inner .order_block_item dl:nth-of-type(2) dd {
    font-size: 1.0rem;
    width: 100%;
  }
}
/*===================================
  
  .contact_block

===================================*/
.contact_block {
  height: 475px;
  background: url("../img/img-whole1/contact_bg_01_pc.png") no-repeat center top;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_block .inner {
  width: 900px;
  background: #fff;
  padding: 35px 95px;
}
.contact_block .inner .contact_block_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #005EB6;
  text-align: center;
  margin-bottom: 20px;
}
.contact_block .inner .contact_block_buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact_block .inner .contact_block_buttons .contact_block_button {
  width: 320px;
}
.contact_block .inner .contact_block_buttons .contact_block_button a {
  width: 100%;
  height: 70px;
  background: url("../img/img-whole1/button_bg_01.png") no-repeat left top;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  position: relative;
  margin-bottom: 10px;
  transition: 0.4s;
}
.contact_block .inner .contact_block_buttons .contact_block_button a::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 41%;
  right: 20px;
}
.contact_block .inner .contact_block_buttons .contact_block_button a:hover {
  opacity: 0.7;
}
.contact_block .inner .contact_block_buttons .sample_button a {
  background: url("../img/img-whole1/button_bg_02.png") no-repeat left top;
  padding-left: 30px;
}
.contact_block .inner .contact_block_buttons .sample_button a::before {
  right: 30px;
}
.contact_block .inner .contact_block_buttons .sample_button a span {
  width: 61px;
  height: 61px;
  background: url("../img/img-whole1/button_bg_03.png") no-repeat left top;
  color: #333;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 3px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.contact_block .inner .contact_block_buttons .contact_block_button p {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 25px;
}
.contact_block .inner .contact_block_buttons .sample_button p {
  position: relative;
  padding: 0 0 0 105px;
}
.contact_block .inner .contact_block_buttons .sample_button p::after {
  content: "";
  background: url("../img/img-whole1/icon_05.png") no-repeat left top/contain;
  width: 80px;
  height: 77px;
  position: absolute;
  top: -6px;
  left: 15px;
}
.contact_block .inner .contact_block_end_item {
  background: url("../img/img-whole1/line_02_pc.png") no-repeat left top;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 70px;
  padding: 25px 0 0 0;
}
.contact_block .inner .contact_block_end_item p {
  font-size: 2.0rem;
}
.contact_block .inner .contact_block_end_item .contact_block_end_item_tel {
  text-align: center;
}
.contact_block .inner .contact_block_end_item .contact_block_end_item_tel a {
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.0;
  position: relative;
  padding-left: 28px;
}
.contact_block .inner .contact_block_end_item .contact_block_end_item_tel a::before {
  content: "";
  background: url("../img/img-whole1/icon_tel_01_pc.png") no-repeat left top/contain;
  width: 19px;
  height: 35px;
  position: absolute;
  top: 6px;
  left: 0%;
}
.contact_block .inner .contact_block_end_item .contact_block_end_item_tel a + p {
  font-size: 1.4rem;
  font-weight: normal;
  padding-left: 12px;
}
@media screen and (max-width: 991px) {
  .contact_block {
    height: auto;
    background: url("../img/img-whole1/contact_bg_01_sp.png") no-repeat center top;
    padding: 50px 0;
  }
  .contact_block .inner {
    width: 90%;
    margin: auto;
    padding: 30px 8%;
  }
  .contact_block .inner .contact_block_title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .contact_block .inner .contact_block_buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    gap: 30px 0;
  }
  .contact_block .inner .contact_block_buttons .contact_block_button {
    width: 90%;
  }
  .contact_block .inner .contact_block_buttons .contact_block_button a {
    width: 100%;
    height: 70px;
    background: none;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .contact_block .inner .contact_block_buttons .contact_block_button a::after{
    content: "";
    background: url("../img/img-whole1/button_bg_01.png") no-repeat left top/contain;
    width: 270px;
    height: 59px;;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
      z-index: -100;
  }    
  .contact_block .inner .contact_block_buttons .contact_block_button a::before {
    display: none;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 45%;
    right: 18px;
  }
  .contact_block .inner .contact_block_buttons a strong{
    position: relative;
    padding-right: 25px;
  }    
  .contact_block .inner .contact_block_buttons a strong::before{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
  }  
  .contact_block .inner .contact_block_buttons .sample_button a {
    background: none;
    padding: 0;
  }
  .contact_block .inner .contact_block_buttons .sample_button a::after {
    background: url("../img/img-whole1/button_bg_02.png") no-repeat left top/contain;
  }    

  .contact_block .inner .contact_block_buttons .sample_button a strong{
    padding-left: 45px;
  }    
  .contact_block .inner .contact_block_buttons .sample_button a strong span {
    width: 42px;
    height: 42px;
    background: url("../img/img-whole1/button_bg_03.png") no-repeat left top/contain;
    font-size: 1.2rem;
    padding-left: 0px;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .contact_block .inner .contact_block_buttons .contact_block_button p {
    font-size: 1.0rem;
    padding: 0 0 0 25px;
  }
  .contact_block .inner .contact_block_buttons .sample_button p {
    padding: 0 0 0 70px;
  }
  .contact_block .inner .contact_block_buttons .sample_button p::after {
    background: url("../img/img-whole1/icon_05.png") no-repeat left top/contain;
    width: 62px;
    height: 60px;
    top: -4px;
    left: 3px;
  }
  .contact_block .inner .contact_block_end_item {
    background: url("../img/img-whole1/line_02_sp.png") no-repeat left top/contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 0 0 0;
  }
  .contact_block .inner .contact_block_end_item p {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  .contact_block .inner .contact_block_end_item .contact_block_end_item_tel {
    text-align: center;
  }
  .contact_block .inner .contact_block_end_item .contact_block_end_item_tel a {
    font-size: 1.8rem;
    padding-left: 22px;
  }
  .contact_block .inner .contact_block_end_item .contact_block_end_item_tel a::before {
    width: 15px;
    height: 30px;
    top: -2px;
    left: 0%;
  }
  .contact_block .inner .contact_block_end_item .contact_block_end_item_tel a + p {
    font-size: 1.0rem;
  }
}
/*===================================
  
  #quality_block

===================================*/
#quality_block {
    margin-top: 90px;
}
#quality_block .inner .quality_block_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 170px;
  margin-bottom: 40px;
}
#quality_block .inner .quality_block_title::before {
  content: "";
  background: url("../img/img-whole1/icon_06.png") no-repeat left top/contain;
  width: 170px;
  height: 169px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#quality_block .inner .quality_block_title_area {
  margin-bottom: 30px;
}
#quality_block .inner .quality_block_title_area .quality_block_title_area_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.0rem;
  font-weight: bold;
  color: #264699;
}
#quality_block .inner .quality_block_title_area p {
  font-size: 1.6rem;
  font-weight: bold;
}
#quality_block .inner .quality_block_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
#quality_block .inner .quality_block_item + .quality_block_item {
  flex-direction: row-reverse;
}
#quality_block .inner .quality_block_item .quality_block_item_text {
  border: 1px solid #999;
  width: 280px;
  min-height: 280px;
  padding: 20px 27px;
}
#quality_block .inner .quality_block_item .quality_block_item_text h4 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
#quality_block .inner .quality_block_item .quality_block_item_text h5 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #005EB6;
}
#quality_block .inner .quality_block_item .quality_block_item_text p {
  font-size: 1.4rem;
  line-height: 1.4;
}
#quality_block .inner .quality_block_item_explanation {
  position: relative;
  margin-bottom: 90px;
}
#quality_block .inner .quality_block_item_explanation img {
  float: left;
  margin-right: 30px;
}
#quality_block .inner .quality_block_item_explanation h4 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.0rem;
  font-weight: bold;
  color: #264699;
}
#quality_block .inner .quality_block_item_followup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_title span {
  position: relative;
  padding-left: 75px;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_title span::before {
  content: "";
  background: url("../img/img-whole1/icon_07.png") no-repeat left top/contain;
  width: 69px;
  height: 46px;
  position: absolute;
  top: 0%;
  left: 0%;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_title span strong {
  color: #CC1785;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_item {
  width: 450px;
  padding: 0 20px 25px;
  border: 2px solid #005eb626;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_item .quality_block_item_followup_item_title {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_item .quality_block_item_followup_item_title h4 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_item .quality_block_item_followup_item_title strong {
  color: #005EB6;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_item_image {
  margin-bottom: 15px;
}
#quality_block .inner .quality_block_item_followup .quality_block_item_followup_item p {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
    
    #quality_block {
    margin-top: 50px;
}
  #quality_block .inner .quality_block_title {
    font-size: 2.0rem;
    padding-bottom: 130px;
    margin-bottom: 30px;
  }
  #quality_block .inner .quality_block_title::before {
    width: 130px;
    height: 130px;
  }
  #quality_block .inner .quality_block_title_area {
    margin-bottom: 30px;
  }
  #quality_block .inner .quality_block_title_area .quality_block_title_area_title {
    font-size: 1.5rem;
  }
  #quality_block .inner .quality_block_title_area p {
    font-size: 1.1rem;
  }
  #quality_block .inner .quality_block_item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px 0;
    margin-bottom: 40px;
  }
  #quality_block .inner .quality_block_item + .quality_block_item {
    flex-direction: column-reverse;
    margin-bottom: 80px;
  }
  #quality_block .inner .quality_block_item .quality_block_item_text {
    width: 100%;
    min-height: 120px;
    padding: 15px 20px;
  }
  #quality_block .inner .quality_block_item .quality_block_item_text h4 {
    font-size: 1.5rem;
    margin-bottom: 7px;
  }
  #quality_block .inner .quality_block_item .quality_block_item_text h5 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 5px;
  }
  #quality_block .inner .quality_block_item .quality_block_item_text p {
    font-size: 1.0rem;
  }
  #quality_block .inner .quality_block_item_explanation {
    position: relative;
    margin-bottom: 50px;
  }
  #quality_block .inner .quality_block_item_explanation img {
    height: 130px;
    margin-right: 20px;
  }
  #quality_block .inner .quality_block_item_explanation h4 {
    font-size: 1.5rem;
    width: 100%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #quality_block .inner .quality_block_item_followup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_title {
    font-size: 2.0rem;
    width: 100%;
    margin-bottom: 30px;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_title span {
    position: relative;
    display: block;
    padding-left: 10%;
    line-height: 1.4;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_title span::before {
    width: 50px;
    height: 32px;
    top: 5px;
    left: 5%;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_title span strong {
    display: block;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_item {
    width: 100%;
    padding: 25px 20px 25px;
    margin-bottom: 30px;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_item + .quality_block_item_followup_item {
    margin-bottom: 0;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_item .quality_block_item_followup_item_title {
    height: auto;
    margin-bottom: 10px;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_item .quality_block_item_followup_item_title h4 {
    font-size: 1.5rem;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_item_image {
    width: 80%;
    margin: 0 auto 15px;
  }
  #quality_block .inner .quality_block_item_followup .quality_block_item_followup_item p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
/*===================================
  
  #structure_block

===================================*/
#structure_block {
  background: #EEEEEE;
  padding: 100px 0 60px;
    margin-top: 90px;
}
#structure_block .inner .structure_block_title {
  background: #EEEEEE;
}
#structure_block .inner .structure_block_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
#structure_block .inner .structure_block_title span {
  position: relative;
  padding-left: 175px;
}
#structure_block .inner .structure_block_title span strong {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: -33px;
}
#structure_block .inner .structure_block_title span strong::before {
  content: "";
  background: url("../img/img-whole1/title_01.png") no-repeat left top/contain;
  width: 160px;
  height: 44px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#structure_block .inner .structure_block_item {
  border: 1px solid #aaa;
  border-radius: 20px;
  background: #fff;
  padding: 40px 40px 60px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
#structure_block .inner .structure_block_item + .structure_block_item {
  display: block;
  padding: 40px 28px 60px;
}
#structure_block .inner .structure_block_item .structure_block_item_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
#structure_block .inner .structure_block_item .structure_block_item_title + p {
  font-size: 1.4rem;
  padding: 0 40px;
  margin-bottom: 30px;
}
#structure_block .inner .structure_block_item .structure_block_item_text {
  width: 360px;
  padding-top: 20px;
}
#structure_block .inner .structure_block_item .structure_block_item_text dl {
  margin-bottom: 30px;
}
#structure_block .inner .structure_block_item .structure_block_item_text dl dt {
  font-size: 2.0rem;
  font-weight: bold;
  color: #264699;
  margin-bottom: 10px;
}
#structure_block .inner .structure_block_item .structure_block_item_text dl dd {
  font-size: 1.4rem;
}
#structure_block .inner .structure_block_item .structure_block_item_image {
  width: 506px;
}
#structure_block .inner .structure_block_item .structure_block_item_chart {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  #structure_block {
    background: #EEEEEE;
    padding: 60px 0 30px;
    margin-top: 80px;

  }
  #structure_block .inner .structure_block_title {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
  #structure_block .inner .structure_block_title span {
    position: relative;
    padding-left: 30%;
  }
  #structure_block .inner .structure_block_title span strong {
    font-size: 0.9rem;
    left: 0;
    top: -21px;
  }
  #structure_block .inner .structure_block_title span strong::before {
    background: url("../img/img-whole1/title_01.png") no-repeat left top/contain;
    width: 90px;
    height: 25px;
    bottom: -30px;
  }
  #structure_block .inner .structure_block_item {
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  #structure_block .inner .structure_block_item + .structure_block_item {
    display: block;
    padding: 30px 28px 40px;
  }
  #structure_block .inner .structure_block_item .structure_block_item_title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  #structure_block .inner .structure_block_item .structure_block_item_title + p {
    font-size: 1.1rem;
    padding: 0;
    margin-bottom: 30px;
  }
  #structure_block .inner .structure_block_item .structure_block_item_text {
    width: 100%;
    padding-top: 0;
  }
  #structure_block .inner .structure_block_item .structure_block_item_text dl {
    margin-bottom: 20px;
  }
  #structure_block .inner .structure_block_item .structure_block_item_text dl dt {
    font-size: 1.4rem;
    margin-bottom: 3px;
  }
  #structure_block .inner .structure_block_item .structure_block_item_text dl dd {
    font-size: 1.1rem;
  }
  #structure_block .inner .structure_block_item .structure_block_item_image {
    width: 506px;
  }
  #structure_block .inner .structure_block_item .structure_block_item_chart {
    margin-bottom: 50px;
  }
  #structure_block .inner .structure_block_item .structure_block_item_chart img {
    max-width: fit-content !important;
    height: 320px;
  }
}
/*===================================
  
  #flow_block

===================================*/
#flow_block {
    margin-top: 90px;
}
#flow_block .inner .flow_block_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
#flow_block .inner .flow_block_title + p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
#flow_block .inner ol.flow_block_content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 0 8px;
}
#flow_block .inner ol.flow_block_content li {
  width: 150px;
  height: 150px;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/img-whole1/flow_bg_01_pc.png") no-repeat left top/contain;
  line-height: 1.4;
  padding-right: 15px;
  position: relative;
}
#flow_block .inner ol.flow_block_content li::before {
  content: "1";
  font-size: 3.0rem;
  font-weight: bold;
  color: #27469999;
  position: absolute;
  top: -20px;
  left: 12px;
}
#flow_block .inner ol.flow_block_content li:nth-of-type(2)::before {
  content: "2";
}
#flow_block .inner ol.flow_block_content li:nth-of-type(3)::before {
  content: "3";
}
#flow_block .inner ol.flow_block_content li:nth-of-type(4)::before {
  content: "4";
}
#flow_block .inner ol.flow_block_content li:nth-of-type(5)::before {
  content: "5";
}
#flow_block .inner ol.flow_block_content li:nth-of-type(6)::before {
  content: "6";
}
#flow_block .inner .flow_block_text h3 {
  background: #264699;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding: 0 15px;
  margin-bottom: 15px;
}
#flow_block .inner .flow_block_text ol li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.2em;
}
#flow_block .inner .flow_block_text ol li::before {
  content: "①";
  font-size: 1.6rem;
  position: absolute;
  top: 0;
  left: 0;
}
#flow_block .inner .flow_block_text ol li:nth-of-type(2)::before {
  content: "②";
}
#flow_block .inner .flow_block_text ol li:nth-of-type(3)::before {
  content: "③";
}
#flow_block .inner .flow_block_text ol li:nth-of-type(4)::before {
  content: "④";
}
#flow_block .inner .flow_block_text ol li:nth-of-type(5)::before {
  content: "⑤";
}
@media screen and (max-width: 991px) {
#flow_block {
    margin-top: 50px;
}
  #flow_block .inner .flow_block_title {
    font-size: 2.0rem;
    margin-bottom: 30px;
  }
  #flow_block .inner .flow_block_title + p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  #flow_block .inner ol.flow_block_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 25px 0;
  }
  #flow_block .inner ol.flow_block_content li {
    width: 32%;
    height: 87px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../img/img-whole1/flow_bg_01_sp.png") no-repeat left top/contain;
    line-height: 1.4;
    padding-right: 10px;
    position: relative;
    margin-right: 2%;
  }
  #flow_block .inner ol.flow_block_content li:nth-of-type(3), #flow_block .inner ol.flow_block_content li:last-of-type {
    margin-right: 0;
  }
  #flow_block .inner ol.flow_block_content li::before {
    content: "1";
    font-size: 2.0rem;
    font-weight: bold;
    color: #27469999;
    position: absolute;
    top: -15px;
    left: 12px;
  }
  #flow_block .inner ol.flow_block_content li:nth-of-type(2)::before {
    content: "2";
  }
  #flow_block .inner ol.flow_block_content li:nth-of-type(3)::before {
    content: "3";
  }
  #flow_block .inner ol.flow_block_content li:nth-of-type(4)::before {
    content: "4";
  }
  #flow_block .inner ol.flow_block_content li:nth-of-type(5)::before {
    content: "5";
  }
  #flow_block .inner ol.flow_block_content li:nth-of-type(6)::before {
    content: "6";
  }
  #flow_block .inner .flow_block_text h3 {
    font-size: 1.3rem;
    padding: 0 15px;
    margin-bottom: 15px;
  }
  #flow_block .inner .flow_block_text ol li {
    position: relative;
    font-size: 1.1rem;
    padding-left: 1.2em;
  }
  #flow_block .inner .flow_block_text ol li::before {
    font-size: 1.1rem;
  }
}
/*===================================
  
  #faq_block

===================================*/
#faq_block {
    margin-top: 110px;
}
#faq_block .inner .faq_block_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
#faq_block .inner .faq_block_item {
  border: none;
}
#faq_block .inner .faq_block_item:not(:last-of-type) {
  margin-bottom: 25px;
}
#faq_block .inner .faq_block_item dt, #faq_block .inner .faq_block_item dd {
  position: relative;
  padding-left: 42px;
}
#faq_block .inner .faq_block_item dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
#faq_block .inner .faq_block_item dt::before {
  content: "";
  background: url("../img/img-whole1/ico_question.png") no-repeat left top/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0%;
  left: 0%;
}
#faq_block .inner .faq_block_item dd {
  font-size: 1.4rem;
}
#faq_block .inner .faq_block_item dd::before {
  content: "";
  background: url("../img/img-whole1/ico_answer.png") no-repeat left top/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0%;
  left: 0%;
}
@media screen and (max-width: 991px) {
#faq_block {
    margin-top: 80px;
}
  #faq_block .inner .faq_block_title {
    font-size: 2.0rem;
    margin-bottom: 30px;
  }
  #faq_block .inner .faq_block_item:not(:last-of-type) {
    margin-bottom: 25px;
  }
  #faq_block .inner .faq_block_item dt, #faq_block .inner .faq_block_item dd {
    position: relative;
    padding-left: 32px;
  }
  #faq_block .inner .faq_block_item dt {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  #faq_block .inner .faq_block_item dt::before {
    top: -3px;
    width: 26px;
    height: 26px;
  }
  #faq_block .inner .faq_block_item dd {
    font-size: 1.1rem;
  }
  #faq_block .inner .faq_block_item dd::before {
    top: -3px;
    width: 26px;
    height: 26px;
  }
}
/*===================================
  
  #contact_block_02

===================================*/
#contact_block_02 {
  height: auto;
  background: url("../img/img-whole1/contact_bg_01_pc.png") no-repeat center top/cover;
  flex-direction: column;
  padding: 60px 0;
    margin-top: 90px;
}
#contact_block_02 .inner {
  width: 960px;
  margin-bottom: 40px;
}
#contact_block_02 .inner + .inner {
  width: 960px;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
.contact_block .inner .contact_block_other {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.contact_block .inner .contact_block_other .contact_block_other_item {
  width: 450px;
  background: #fff;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text {
  width: 178px;
  position: relative;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text p {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #CD1786;
  width: 100%;
  padding: 0 0 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #CD1786;
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transition: 0.4s;
}
.contact_block .inner .contact_block_other .contact_block_other_item + .contact_block_other_item .contact_block_other_item_text a {
  width: 80%;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text a span {
  position: relative;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text a span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #CD1786;
  border-right: 2px solid #CD1786;
  transform: rotate(45deg);
  position: absolute;
  top: 39%;
  right: -20px;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text a:hover {
  border: 2px solid #fff;
  color: #fff;
  background: #CD1786;
}
.contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text a:hover span::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 991px) {
  #contact_block_02 {
    background: url("../img/img-whole1/contact_bg_01_sp.png") no-repeat center top/cover;
    padding: 60px 0;
    margin-top: 60px;
  }
  #contact_block_02 .inner {
    width: 90%;
    margin-bottom: 25px;
  }
  #contact_block_02 .inner + .inner {
    width: 90%;
  }
  .contact_block .inner .contact_block_other {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .contact_block .inner .contact_block_other .contact_block_other_item {
    width: 48%;
    padding: 18px 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_image {
    margin-bottom: 10px;
  }
  .contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text {
    width: auto;
  }
  .contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text p {
    font-size: 1.0rem;
    margin-bottom: 40px;
    line-height: 1.4;
  }
  .contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text a {
    font-size: 1.0rem;
    padding: 3px 0;
  }
  .contact_block .inner .contact_block_other .contact_block_other_item .contact_block_other_item_text a span::before {
    width: 8px;
    height: 8px;
    top: 30%;
    right: -20px;
  }
}
/*===================================
  
  アニメーション

===================================*/
.fade_b {
  opacity: 0;
  transform: translateY(25px);
  transition-property: opacity, transform;
  transition-duration: 1.0s;
  transition-timing-function: ease;
}
.fade_b.is_show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}