<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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 &gt; .flex_item {
  width: 440px;
}

.flex_3column &gt; .flex_item {
  width: 260px;
}

.flex_3column_m &gt; .flex_item {
  width: 280px;
}

.flex_4column &gt; .flex_item {
  width: 200px;
}

.flex_3column_l &gt; .flex_item {
  width: 300px;
}

/* PC */
@media print, screen and (min-width: 992px) {
  .flex_2column &gt; .flex_item:nth-child(n+3),
  .flex_3column &gt; .flex_item:nth-child(n+4),
  .flex_3column_l &gt; .flex_item:nth-child(n+4),
  .flex_3column_m &gt; .flex_item:nth-child(n+4),
  .flex_4column &gt; .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 &gt; .flex_item,
  .flex_3column_l &gt; .flex_item {
    width: 100%;
  }
  .flex_2column &gt; .flex_item:not(:last-child),
  .flex_3column_l &gt; .flex_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .flex_3column &gt; .flex_item,
  .flex_3column_m &gt; .flex_item,
  .flex_4column &gt; .flex_item {
    width: 47%;
  }
  .flex_3column &gt; .flex_item:nth-child(n+3),
  .flex_3column_m &gt; .flex_item:nth-child(n+3),
  .flex_4column &gt; .flex_item:nth-child(n+3) {
    margin-top: 30px;
  }
}

/*===================================
  
  list

===================================*/
.list_no &gt; li, .list_dot &gt; li, .list_caution &gt; li, .list_circle &gt; li {
  position: relative;
  padding-left: 1.3em;
}

.list_no &gt; li::before, .list_dot &gt; li::before, .list_caution &gt; li::before, .list_circle &gt; li::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.list_no &gt; li:nth-child(1)::before {
  content: '1.';
}

.list_no &gt; li:nth-child(2)::before {
  content: '2.';
}

.list_no &gt; li:nth-child(3)::before {
  content: '3.';
}

.list_no &gt; li:nth-child(4)::before {
  content: '4.';
}

.list_no &gt; li:nth-child(5)::before {
  content: '5.';
}

.list_no &gt; li:nth-child(6)::before {
  content: '6.';
}

.list_no &gt; li:nth-child(7)::before {
  content: '7.';
}

.list_no &gt; li:nth-child(8)::before {
  content: '8.';
}

.list_no &gt; li:nth-child(9)::before {
  content: '9.';
}

.list_no &gt; li:nth-child(10)::before {
  content: '10.';
}

.list_dot &gt; li::before {
  content: '・';
}

.list_caution &gt; li::before {
  content: '※';
}

.list_circle &gt; 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 &gt; .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 &gt; 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 &gt; 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 &gt; 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 &gt; .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 &gt; 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 &gt; dt {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  height: 50%;
  border-bottom: 1px solid #fff;
}

.block_accordion_lead &gt; dd {
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}

.block_accordion_name &gt; span {
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: left;
}

.block_accordion_name &gt; span:nth-child(2) {
  font-size: 2rem;
}

.block_accordion_name &gt; span:nth-child(2) &gt; 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 &gt; p {
  width: 60%;
}

.block_accordion_flex &gt; 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 &gt; dt {
    font-size: 1.5rem;
    padding-bottom: 10px;
    height: auto;
  }
  .block_accordion_lead &gt; dd {
    height: 100%;
  }
  .block_accordion_name &gt; span {
    text-align: right;
  }
  .block_accordion_name &gt; span:nth-child(2) {
    font-size: 1.1rem;
  }
  .block_accordion_name &gt; span:nth-child(2) &gt; 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 &gt; p {
    width: 100%;
  }
  .block_accordion_flex &gt; 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 &gt; 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 &gt; span {
  display: block;
}

.box_menu_ttl &gt; span:nth-child(1) {
  color: #01BFF2;
  font-size: 1.5rem;
  font-weight: bold;
}

.box_menu_ttl &gt; span:nth-child(2) {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.box_menu_more {
  text-align: right;
}

.box_menu_more &gt; span {
  font-size: 1.3rem;
  color: #01BFF2;
  display: inline-block;
  position: relative;
  padding-left: 35px;
}

.box_menu_more &gt; 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 &gt; img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .box_menu:hover .box_menu_img &gt; 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 &gt; 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 &gt; img {
    width: 84%;
  }
  .box_menu_main {
    width: 70%;
    margin: -60px 0 0 auto;
    padding: 20px;
  }
  .box_menu_ttl {
    margin-bottom: 10px;
  }
  .box_menu_ttl &gt; span:nth-child(1) {
    font-size: 0.9rem;
  }
  .box_menu_ttl &gt; span:nth-child(2) {
    font-size: 1.4rem;
  }
  .box_menu_more {
    margin-top: 30px;
  }
  .box_menu_more &gt; 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 &gt; 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 &gt; 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 &gt; dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.box_no02_main &gt; dt &gt; b {
  color: #FF5B26;
}

.box_no02_main &gt; 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 &gt; span {
  font-size: 1.3rem;
  color: #01BFF2;
  display: inline-block;
  position: relative;
  padding-left: 35px;
}

.box_no02_more &gt; 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 &gt; dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .box_no02_main &gt; dt &gt; 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 &gt; 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 &gt; dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.box_no03_main &gt; dt &gt; b {
  color: #FF5B26;
}

.box_no03_main &gt; dt &gt; span {
  margin-top: 10px;
  display: block;
  color: #01BFF2;
  font-size: 1.2rem;
}

.box_no03_main &gt; dd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.box_no03_img {
  margin-top: 15px;
}

.box_no03_img &gt; 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 &gt; dt {
    font-size: 1.4rem;
  }
  .box_no03_main &gt; dt &gt; span {
    font-size: 1.1rem;
  }
  .box_no03_img &gt; img {
    width: 50%;
  }
}

/*===================================
  
  box_icon

===================================*/
.box_icon_main {
  padding: 0 15px;
}

.box_icon_main &gt; dt {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.box_icon_img {
  margin-bottom: 15px;
}

.box_icon_img &gt; img {
  display: block;
  margin: auto;
}

/* SP */
@media screen and (max-width: 991px) {
  .box_icon_main {
    padding: 0 5px;
  }
  .box_icon_main &gt; dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .box_icon_img {
    margin-bottom: 10px;
  }
  .box_icon_img &gt; 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 &gt; 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 &gt; span {
  display: block;
  overflow: hidden;
}

.box_subcnt_img &gt; span &gt; 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 &gt; 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 &gt; 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 &gt; .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 &gt; img {
    width: 230px;
  }
  .company_message_text {
    margin-left: 40px;
  }
  .company_message_text &gt; img {
    display: block;
    margin: 20px 20px 0 auto;
    width: 236px;
  }
}

/* SP */
@media screen and (max-width: 991px) {
  .company_message &gt; img {
    float: left;
    width: 40%;
    margin: 0 20px 20px 0;
  }
  .company_message_text &gt; 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 &gt; dl {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.company_history &gt; dl:last-child::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  bottom: -42px;
  left: 9px;
  background: #ACE4FF;
}

.company_history &gt; 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 &gt; dl {
    justify-content: space-between;
  }
  .company_history &gt; dl &gt; dd {
    width: 660px;
  }
  .company_history_date {
    width: 180px;
  }
}

/* SP */
@media screen and (max-width: 991px) {
  .company_history &gt; dl {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .company_history &gt; dl &gt; 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 &gt; 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 &gt; picture &gt; img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.slider_l a:hover &gt; picture &gt; 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 &gt; 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 &gt; 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 {
  left: 100%;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-next::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(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 &gt; img, .slider_s .slider_movie_link &gt; img, .slider_movie a &gt; img, .slider_movie .slider_movie_link &gt; img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.slider_s a:hover &gt; img, .slider_s .slider_movie_link:hover &gt; img, .slider_movie a:hover &gt; img, .slider_movie .slider_movie_link:hover &gt; 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 &gt; img {
    display: none;
  }
  .slider_movie_iframe {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .slider_movie_iframe &gt; 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 &gt; span {
  display: block;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.block_arrival_ttl &gt; span:nth-child(1) {
  color: #01BFF2;
}

.block_arrival_ttl &gt; 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 &gt; a {
  font-weight: bold;
  display: block;
  text-decoration: underline;
}

.block_arrival dd &gt; a:hover {
  text-decoration: none;
}

.block_arrival_blog dl:not(:last-child) {
  border-bottom: 2px dotted #01BFF2;
  padding-bottom: 20px;
}

.block_arrival_blog dd &gt; a {
  font-weight: normal;
  text-decoration: underline;
}

.block_arrival_blog dd &gt; a &gt; ul {
  display: flex;
  align-items: flex-start;
}

.block_arrival_blog dd &gt; a &gt; ul &gt; li:first-child img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.block_arrival_blog dd &gt; a &gt; ul &gt; li:last-child {
  margin-left: 15px;
}

.block_arrival_blog dd &gt; 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 &gt; span:nth-child(2) {
    font-size: 1.6rem;
  }
  .block_arrival &gt; dl:not(:last-child) {
    margin-bottom: 15px;
  }
  .block_arrival_news {
    padding-bottom: 25px;
  }
  .block_arrival_date {
    margin-bottom: 5px;
  }
  .block_arrival_blog dd &gt; a &gt; ul &gt; li:first-child {
    width: 30%;
  }
  .block_arrival_blog dd &gt; a &gt; ul &gt; li:first-child &gt; img {
    display: block;
    width: 100%;
  }
  .block_arrival_blog dd &gt; a &gt; ul &gt; li:last-child {
    width: 60%;
  }
  .block_arrival_blog dd &gt; a &gt; ul &gt; li &gt; 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 &gt; img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.box_blog_main {
  margin-top: 10px;
}

.box_blog_main &gt; dd &gt; 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 &gt; img {
    opacity: 0.8;
  }
}

@media screen and (max-width: 991px) {
  .box_blog_main &gt; dd &gt; 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 &gt; dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.block_three_text &gt; dt &gt; 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 &gt; 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 &gt; 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 &gt; span {
  font-size: 1.4rem;
  color: #00BFF2;
  display: block;
  margin-bottom: 5px;
}

.block_fullimg_main dt &gt; 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 &gt; 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 &gt; 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 &gt; span {
  font-size: 1.4rem;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 3px;
}

.movie_ttl02 &gt; b {
  font-size: 2rem;
  width: 100%;
  display: block;
  text-align: center;
}

.movie_ttl03 {
  font-size: 2rem;
  font-weight: bold;
}

.movie_ttl03 &gt; 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 &gt; span {
    font-size: 1.1rem;
  }
  .movie_ttl02 &gt; b {
    font-size: 1.3rem;
    text-align: left;
  }
  .movie_ttl03 {
    font-size: 1.3rem;
  }
  .movie_ttl03 &gt; 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 &gt; 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 &gt; li {
  display: flex;
  justify-content: center;
  width: 33%;
  margin-bottom: 40px;
}

.page_nav &gt; li &gt; a {
  border-right: 1px solid #BBBBBB;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  position: relative;
}

.page_nav &gt; li &gt; 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 &gt; li &gt; a &gt; 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 &gt; li:nth-child(3n-2) {
    border-left: 1px solid #BBBBBB;
  }
}

/* SP */
@media screen and (max-width: 991px) {
  .page_nav &gt; li {
    width: 49%;
    margin-bottom: 20px;
    text-align: center;
  }
  .page_nav &gt; li:nth-child(2n-1) {
    border-left: 1px solid #BBBBBB;
  }
  .page_nav &gt; li &gt; a {
    min-height: auto;
  }
  .page_nav &gt; li &gt; a &gt; 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 &gt; 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 &gt; a &gt; span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}

.faq_block_link &gt; a &gt; 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 &gt; a:hover {
  color: #fff;
  border-color: #01BFF2;
  background: #01BFF2;
}

.faq_block_link &gt; a:hover &gt; 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 &gt; 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 &gt; 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 &gt; * {
  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 &gt; span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 25px;
}

.link_more01 &gt; 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 &gt; 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 &gt; 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 &gt; span {
  position: relative;
}

.link_more02 &gt; 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 &gt; 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 &gt; 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 &gt; span {
  position: relative;
  padding-right: 25px;
}

.link_more03 &gt; 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 &gt; 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 &gt; span::after {
    border-color: #01BFF2;
  }
  .link_more03:hover &gt; span::before {
    background: #01BFF2;
  }
}

/* SP */
@media screen and (max-width: 991px) {
  .link_more03 {
    margin: 20px auto 0;
  }
}

/*===================================
  
  タブ

===================================*/
.js_tab_items &gt; * {
  display: none;
}

.js_tab_items &gt; *.is_active {
  display: block;
}

/*------------------------------------
 タブ1
------------------------------------*/
.tab01_menu {
  margin-bottom: 40px;
  border-bottom: 2px solid #01BFF2;
}

.tab01_menu &gt; ul {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.tab01_menu &gt; ul &gt; li {
  display: flex;
  justify-content: center;
  width: 31%;
}

.tab01_menu &gt; ul &gt; li &gt; 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 &gt; ul &gt; li &gt; a::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  background: #fff;
  width: 104%;
  left: -2%;
  right: -2%;
  z-index: 1;
}

.tab01_menu &gt; ul &gt; li &gt; 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 &gt; ul &gt; li.is_active &gt; a, .tab01_menu &gt; ul &gt; li:hover &gt; a {
  background: #01BFF2;
  color: #fff;
  transform: translate3d(0, 13px, 0);
}

.tab01_menu &gt; ul &gt; li.is_active &gt; a::after, .tab01_menu &gt; ul &gt; li:hover &gt; a::after {
  content: none;
}

@media screen and (max-width: 991px) {
  .tab01_menu {
    margin-bottom: 30px;
  }
  .tab01_menu &gt; ul &gt; li {
    width: 32%;
  }
  .tab01_menu &gt; ul &gt; li &gt; a {
    padding: 7px 5px 18px 5px;
    border-width: 1px;
  }
  .tab01_menu &gt; ul &gt; li &gt; a::after {
    height: 2px;
  }
  .tab01_menu &gt; ul &gt; li &gt; a::before {
    bottom: 7px;
    width: 8px;
    height: 8px;
  }
}

/*------------------------------------
 タブ2
------------------------------------*/
.tab02_menu &gt; ul {
  display: flex;
  justify-content: space-between;
}

.tab02_menu &gt; ul &gt; li {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tab02_menu &gt; ul &gt; li &gt; 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 &gt; ul &gt; li &gt; a &gt; span {
  position: relative;
  padding-left: 30px;
}

.tab02_menu &gt; ul &gt; li &gt; a &gt; 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 &gt; ul &gt; li &gt; a &gt; 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 &gt; ul &gt; li &gt; 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 &gt; ul &gt; li.is_active &gt; a, .tab02_menu &gt; ul &gt; li:hover &gt; a {
  background: #01BFF2;
  color: #fff;
}

.tab02_menu &gt; ul &gt; li.is_active &gt; a::after, .tab02_menu &gt; ul &gt; li:hover &gt; a::after {
  opacity: 1;
}

.tab02_menu &gt; ul &gt; li.is_active &gt; a &gt; span::before, .tab02_menu &gt; ul &gt; li:hover &gt; a &gt; span::before {
  background: #fff;
}

.tab02_menu &gt; ul &gt; li.is_active &gt; a &gt; span::after, .tab02_menu &gt; ul &gt; li:hover &gt; a &gt; 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 &gt; ul &gt; li &gt; a {
    padding: 10px;
    text-align: left;
    justify-content: flex-start;
  }
  .tab02_menu &gt; ul &gt; li &gt; a &gt; span {
    padding-left: 25px;
  }
  .tab02_menu &gt; ul &gt; li &gt; a &gt; span::before {
    width: 18px;
    height: 18px;
  }
  .tab02_menu &gt; ul &gt; li &gt; a &gt; span::after {
    left: 5px;
    width: 6px;
    height: 6px;
  }
  .tab02_menu &gt; ul &gt; li.is_active &gt; a, .tab02_menu &gt; ul &gt; li:hover &gt; a {
    background: #01BFF2;
    color: #fff;
  }
  .tab02_menu &gt; ul &gt; li.is_active &gt; a::after, .tab02_menu &gt; ul &gt; li:hover &gt; a::after {
    opacity: 1;
  }
  .tab02_menu &gt; ul &gt; li.is_active &gt; a &gt; span::before, .tab02_menu &gt; ul &gt; li:hover &gt; a &gt; span::before {
    background: #fff;
  }
  .tab02_menu &gt; ul &gt; li.is_active &gt; a &gt; span::after, .tab02_menu &gt; ul &gt; li:hover &gt; a &gt; 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 &gt; dt {
  text-align: center;
  color: #FF0000;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.box_price &gt; dt &gt; b {
  font-size: 4rem;
}

.box_price &gt; dd {
  display: table;
  margin: auto;
  position: relative;
  padding: 15px 30px;
}

.box_price &gt; 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 &gt; 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 &gt; dt {
    font-size: 1.6rem;
  }
  .box_price &gt; dt &gt; b {
    font-size: 2.2rem;
  }
  .box_price &gt; dd {
    padding: 0px 20px;
  }
}

/*------------------------------------
 タブ3
------------------------------------*/
.tab03_menu {
  margin-bottom: 40px;
}

.tab03_menu &gt; ul {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.tab03_menu &gt; ul &gt; li {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tab03_menu &gt; ul &gt; li:first-child {
  border-left: 1px solid #DDDDDD;
}

.tab03_menu &gt; ul &gt; li &gt; 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 &gt; ul &gt; li &gt; a &gt; span {
  position: relative;
}

.tab03_menu &gt; ul &gt; li &gt; a &gt; 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 &gt; ul &gt; li.is_active &gt; a, .tab03_menu &gt; ul &gt; li:hover &gt; a {
  background: #E8FAFF;
}

.tab03_menu &gt; ul &gt; li.is_active &gt; a &gt; span::after, .tab03_menu &gt; ul &gt; li:hover &gt; a &gt; span::after {
  opacity: 0;
}

@media screen and (max-width: 991px) {
  .tab03_menu {
    margin-bottom: 30px;
  }
  .tab03_menu &gt; ul &gt; li {
    position: relative;
  }
  .tab03_menu &gt; ul &gt; li &gt; a {
    padding: 10px 10px;
    border-width: 1px;
  }
  .tab03_menu &gt; ul &gt; li &gt; a &gt; span::after {
    content: none;
  }
  .tab03_menu &gt; ul &gt; 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 &gt; ul &gt; 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 &gt; span::before, .modal_close &gt; span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  margin: auto;
  bottom: 0;
  width: 3px;
  height: 20px;
  background: #fff;
}

.modal_close &gt; span::before {
  transform: rotate(-45deg);
}

.modal_close &gt; 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 &gt; span::before, .modal_close &gt; 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 &gt; li:not(:last-child) {
  margin-bottom: 10px;
}

.popup_list &gt; 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 &gt; span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.popup_close &gt; span::before, .popup_close &gt; span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 2px;
  height: 15px;
  background: #00A3D8;
}

.popup_close &gt; span::before {
  transform: rotate(-45deg);
}

.popup_close &gt; 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;
  }
}
</pre></body></html>