@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: 0;
}
/* 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: 60%;
  left: 50%;
  transform: translate(-50%, -54%);
  white-space: nowrap;
  z-index: 1;
  border: none;
}
.mv_lower_ttl > b {
  display: block;
  text-align: center;
  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;
    font-size: 1.6rem;

}
.mv_lower img {
  width: 100%;
  z-index: -1;
}
/* PC */
@media print, screen and (min-width: 992px) {
  .mv_lower {
    height: 140px;
    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 {
    height: 15vh;
    overflow: hidden;
  }
  .mv_lower_ttl {
    font-size: 1.2rem;
    transform: translate(-50%, -52%);
	 top: 40%;
	 width: auto;

  }
  .mv_lower_ttl > b {
    font-size: 1.6rem;
    border-bottom: 3px solid #01BFF2;
    padding: 0 7px 5px;
    margin-bottom: 10px;
  }
.mv_lower_ttl > span {
    font-size: 1.3rem;

}  
  
}
/*===================================
  
  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 {
  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 > 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_ans p {
  padding-top: 10px;
}
.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;
  }
}


/*===================================
  
  header

===================================*/

header{
border: 2px solid #efefef;
}
#member_block{
	position: relative;
	margin-right: 340px;
}
#member_block #member_name{
	position: relative;
}
#member_block #member_name::after{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 1px solid #888;
  border-left: 1px solid #888;
  transform: rotate(45deg);
  position: absolute;
  right: -35px;
  top: 45%;
}
#member_block #member_name.on::after{
	display: none;
}
#member_block #member_name.on::before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-bottom: 1px solid #888;
  border-right: 1px solid #888;
  transform: rotate(45deg);
  position: absolute;
  right: -35px;
  top: 25%;
}
#member_block #member_name:hover{
	cursor: pointer;
}

#member_menu{
	display: none;
	background: #fff;
	font-size: 1.4rem;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 50;
	height: auto;
	width: 160px;
	padding: 15px;
}
#member_menu li{
	margin: 0 0 8px 0;
}

.gnav_hamburger_cart img{
	width: 50%;
	height: 50%;
}

@media screen and (max-width: 991px) {

.header_logo_site img{
	height: 48px;
}

#member_block {
	display: none;
}


}


/*===================================
  
  footer

===================================*/
.footer_nav .footer_banner_area {
	width: 232px;
	height: 55px;
}
.footer_nav .footer_banner_area li{
	margin: 0;
}
.footer_nav .footer_banner_area li a{
	padding: 0;
}
.footer_nav .footer_banner_area li a::before{
	display: none;
}
.footer_nav .footer_banner_area img{
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 991px) {

.footer_nav .footer_banner_area {
	width:60%;
	height: 55px;
	margin: 0 auto;
}
.footer_nav .footer_banner_area li{
	margin: 0 0 20px;
}
.footer_nav .footer_banner_area li a{
	padding: 0;
}
.footer_nav .footer_banner_area li a::before{
	display: none;
}
.footer_nav .footer_banner_area img{
	max-width: 100%;
	height: auto;
}
}




/*===================================
  
  index

===================================*/
.main {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#mv {
  width: 100%;
  margin: 0 auto 50px;
}
#mv img {
  max-width: 100%;
  height: auto;
}
.index #contents {
  width: 78%;
  position: relative;
}
.index #contents::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 96%;
  top: 10px;
  left: 15px;
  background: #ccc;
}
.index h2.ttl_main {
  position: relative;
  text-align: left;
  padding-left: 40px;
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 25px;
}
.index h2.ttl_main::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 60px;
  background-color: #52C3F1;
  box-shadow: 0 0px 10px rgba(136, 136, 136, .3);
  position: absolute;
  top: 3px;
  left: 0;
}
.index .sect .inner ul {
  display: flex;
}
.index .sect .inner ul li {
  border: 1px solid #52C3F1;
  background-color: #fff;
  border-radius: 20px;
  line-height: 1.4;
  color: #5f5f5f;
  text-align: center;
  display: table;
  position: relative;
}
.index .sect .inner ul li.selected {
	border-width: 5px;
}	
.index .sect .inner ul li span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
}
.index .sect .inner ul li label {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
}
.index .sect .inner ul li a {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: block;
  width: 24px;
  height: 24px;
}
.index .sect .inner ul li a:hover {
  opacity: 0.5;
}
.index .sect .inner ul li a img {
  max-width: 100%;
  height: auto;
}
#category.sect {
  margin: 0;
}
#category .inner ul {
  margin-left: 100px;
}
#category .inner ul li {
  font-size: 2.4rem;
  width: 140px;
  height: 160px;
  margin-right: 20px;
}
#item .inner ul {
  margin-bottom: 30px;
}
#item .inner ul li {
  font-size: 1.4rem;
  width: 85px;
  height: 100px;
  margin-right: 10px;
  position: relative;
}
#shape .inner ul {
  margin-left: 100px;
}
#shape .inner ul li {
  font-size: 1.4rem;
  width: 160px;
  height: 100px;
  margin-right: 10px;
}
#shape .inner ul li span {
  position: relative;
  padding-left: 40px;
}
#shape .inner ul li label {
  position: relative;
  padding-left: 40px;
}
#shape .inner ul li#square span::before {
  content: "";
  width: 40px;
  height: 40px;
  background: #52C3F1;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#shape .inner ul li.square label::before {
  content: "";
  width: 40px;
  height: 40px;
  background: #52C3F1;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#shape .inner ul li#square_round span::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #52C3F1;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#shape .inner ul li.round label::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #52C3F1;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#shape .inner ul li#round span::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #52C3F1;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#shape .inner ul li.circle label::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #52C3F1;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#addprocess .inner ul {
  margin-left: 100px;
}
#addprocess .inner ul li {
  font-size: 1.4rem;
  width: 85px;
  height: 100px;
  margin-right: 10px;
}
#addprocess .inner p {
  margin: 0 0 30px 100px;
}
#size .inner .box_wrap {
  width: 500px;
  display: flex;
  margin-left: 100px;
}
#size .inner .box {
  width: 160px;
  margin-right: 50px;
}
#size .inner .box h3 {
  text-align: center;
  font-size: 1.6rem;
  position: relative;
}
#size .inner .box h3 span {
  position: relative;
}
#size .inner .box h3.tate_title span::after {
  content: "";
  width: 9px;
  height: 18px;
  background: url("../img/img-common/ico_height.png") no-repeat left top/contain;
  position: absolute;
  top: 6px;
  right: -15px;
}
#size .inner .box h3.yoko_title span::after {
  content: "";
  width: 18px;
  height: 9px;
  background: url("../img/img-common/ico_width.png") no-repeat left top/contain;
  position: absolute;
  top: 8px;
  right: -22px;
}
#size .inner .box #tate_size, #size .inner .box #yoko_size {
  border: 1px solid #52C3F1;
  background-color: #fff;
  border-radius: 10px;
  line-height: 1.4;
  color: #5f5f5f;
  text-align: center;
  display: table;
  width: 160px;
  height: 100px;
}
#size .inner .box #tate_size span, #size .inner .box #yoko_size span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
#size .inner .box #tate_size span i, #size .inner .box #tate_cm_size i, #size .inner .box #yoko_size span i, #size .inner .box #yoko_cm_size i {
  font-size: 1.8rem;
}
#size .inner .box #tate_cm_size, #size .inner .box #yoko_cm_size {
  text-align: center;
}
#thickness .inner .box {
  width: 160px;
  margin-left: 100px;
}
#thickness .inner .box #thickness_size {
  border: 1px solid #52C3F1;
  background-color: #fff;
  border-radius: 10px;
  line-height: 1.4;
  color: #5f5f5f;
  text-align: center;
  display: table;
  width: 160px;
  height: 100px;
}
#thickness .inner .box #thickness_size span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
#thickness .inner .box #thickness_size span i, #thickness .inner .box #thickness_cm_size i {
  font-size: 1.8rem;
}
#thickness .inner .box #thickness_cm_size {
  text-align: center;
}
#edge .inner ul {
  margin-left: 100px;
}
#edge .inner ul li {
  font-size: 1.4rem;
  width: 85px;
  width: 145px;
  height: 100px;
  margin-right: 10px;
}
#scattering .inner ul {
  margin-left: 100px;
}
#scattering .inner ul li {
  font-size: 1.4rem;
  width: 85px;
  height: 100px;
  margin-right: 10px;
}
#option .inner ul {
  margin-left: 100px;
}
#option .inner ul li {
  font-size: 1.4rem;
  width: 85px;
  height: 100px;
  margin-right: 10px;
}
#quantity .inner .box {
  width: 280px;
  margin-left: 100px;
  display: flex;
}
#quantity .inner .box #plus, #quantity .inner .box #minus {
  width: 50px;
  height: 50px
}
#quantity .inner .box #plus img, #quantity .inner .box #minus img {
  max-width: 100%;
  max-height: 100%;
}
#quantity .inner .box #quantity_select {
  border: 1px solid #52C3F1;
  background-color: #fff;
  border-radius: 30px;
  line-height: 1.4;
  color: #5f5f5f;
  text-align: center;
  display: table;
  width: 160px;
  height: 50px
}
#quantity .inner .box #quantity_select span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}


#variation .inner ul,
#splashfilm .inner ul,
#dampproof .inner ul,
#preventfog .inner ul,
#decoration .inner ul {
	margin-left: 100px;
}
#variation .inner ul li,
#splashfilm .inner ul li,
#dampproof .inner ul li,
#preventfog .inner ul li,
#decoration .inner ul li {
    font-size: 1.4rem;
    width: 160px;
    height: 100px;
    margin-right: 10px;
}




#side {
  width: 20%;
  position: relative;
}
#side #side_box {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  text-align: center;
  box-shadow: 3px 3px 7px #ccc;
 }
#side #side_box #date_box, #side #side_box #weight_box {
  background: #52C3F1;
  padding: 20px 0 0 0;
}
#side #side_box #date_box p {
  position: relative;
  display: inline-block;
  padding: 0 0 0 26px;
}
#side #side_box #date_box p::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/img-common/ico_delivery.png") no-repeat left top/contain;
  position: absolute;
  top: 2px;
  left: 0px;
}
#side #side_box #weight_box {
  padding: 20px 0;
}
#side #side_box #weight_box p {
  position: relative;
  display: inline-block;
  padding: 0 0 0 26px;
}
#side #side_box #weight_box p::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/img-common/ico_weight.png") no-repeat left top/contain;
  position: absolute;
  top: 2px;
  left: 0px;
}
#side #side_box #date_box p, #side #side_box #weight_box p, #side #side_box #date_box div, #side #side_box #weight_box div {
  color: #fff;
}
#side #side_box #price_box, #side #side_box #cart_box {
  background: #fff;
  padding: 12px 0;
}
#side #side_box #price_box p {
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
}
#side #side_box #price_box p::after {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../img/img-common/ico_price.png") no-repeat left top/contain;
  position: absolute;
  top: 6px;
  left: 0px;
}
#side #side_box #price_box p, #side #side_box #cart_box p, #side #side_box #cart_box div {
  color: #52C3F1;
}
#side #side_box #price_box div{
  color: #333;
    font-size: 1.2rem;

}#side #side_box #price_box div span{
  font-size: 2.2rem;
}
#side #side_box #cart_box {
  padding: 0 0 20px;
}
#side #side_box #cart_box div {
  color: #fff;
  background: #cc0000;
  border-radius: 10px;
  width: 70%;
  margin: 0 auto;
  padding: 5px 0;
}
  #side #side_box #cart_box div a{
    color: #fff;
  }
@media screen and (max-width: 991px) {
  .main {
    width: 100%;
    display: block;
  }
  #mv {
    width: 90%;
    margin: 30px auto 50px;
  }
  .index #contents {
    width: 100%;
  }
  .index #contents::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 95%;
    top: 10px;
    left: 9.7%;
    background: #ccc;
  }
  .index h2.ttl_main {
    position: relative;
    text-align: left;
    padding-left: 40px;
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
  }
  .index h2.ttl_main::after {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 60px;
    background-color: #52C3F1;
    box-shadow: 0 0px 10px rgba(136, 136, 136, .3);
    position: absolute;
    top: 0;
    left: 0;
  }
  .index .sect .inner ul {
    display: flex;
  }
  .index .sect .inner ul li {
    border: 1px solid #52C3F1;
    background-color: #fff;
    border-radius: 10px;
    line-height: 1.4;
    color: #5f5f5f;
    text-align: center;
    display: table;
  }
  .index .sect .inner ul li a {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    right: 0;
    left: 0;
    bottom: -30px;
  }
  .index .sect .inner ul li a:hover {
    opacity: 0.5;
  }
  .index .sect .inner ul li a img {
    max-width: 100%;
    height: auto;
  }
  .index .sect .inner ul li span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  #category.sect {
    margin: 0;
  }
  #category .inner ul {
    margin-left: 40px;
  }
  #category .inner ul li {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #item .inner ul {
    margin: 0 0 30px 40px;
    padding-bottom: 40px;
  }
  #item .inner ul li {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #shape .inner ul {
    margin-left: 40px;
  }
  #shape .inner ul li {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #shape .inner ul li span {
    padding: 40px 0 0 0;
  }
  #shape .inner ul li#square span::before {
    content: "";
    width: 30px;
    height: 30px;
    background: #52C3F1;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #shape .inner ul li#square_round span::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #52C3F1;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #shape .inner ul li#round span::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #52C3F1;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #addprocess .inner ul {
    margin-left: 40px;
  }
  #addprocess .inner ul li {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #addprocess .inner p {
    margin: 0 0 30px 40px;
  }
  #size .inner .box_wrap {
    width: 80%;
    display: flex;
    margin-left: 40px;
  }
  #size .inner .box {
    width: 120px;
    margin-right: 20px;
  }
  #size .inner .box h3 {
    text-align: center;
    font-size: 1.6rem;
  }
  #size .inner .box h3.tate_title span::after {
    top: 3px;
  }
  #size .inner .box h3.yoko_title span::after {
    top: 6px;
  }
  #size .inner .box #tate_size, #size .inner .box #yoko_size {
    border: 1px solid #52C3F1;
    background-color: #fff;
    border-radius: 10px;
    line-height: 1.4;
    color: #5f5f5f;
    text-align: center;
    display: table;
    width: 120px;
    height: 80px;
  }
  #size .inner .box #tate_size span, #size .inner .box #yoko_size span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  #size .inner .box #tate_size span i, #size .inner .box #tate_cm_size i, #size .inner .box #yoko_size span i, #size .inner .box #yoko_cm_size i {
    font-size: 1.2rem;
  }
  #size .inner .box #tate_cm_size, #size .inner .box #yoko_cm_size {
    text-align: center;
  }
  #thickness .inner .box {
    width: 120px;
    margin-left: 40px;
    text-align: center;
  }
  #thickness .inner .box #thickness_size {
    border: 1px solid #52C3F1;
    background-color: #fff;
    border-radius: 10px;
    line-height: 1.4;
    color: #5f5f5f;
    text-align: center;
    display: table;
    width: 120px;
    height: 80px;
  }
  #thickness .inner .box #thickness_size span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  #thickness .inner .box #thickness_size span i, #thickness .inner .box #thickness_cm_size i {
    font-size: 1.2rem;
  }
  #thickness .inner .box #thickness_cm_size {
    display: inline;
    text-align: center;
  }
  #edge .inner ul {
    margin-left: 40px;
  }
  #edge .inner ul li {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #scattering .inner ul {
    margin-left: 40px;
  }
  #scattering .inner ul li {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #option .inner ul {
    margin-left: 40px;
  }
  #option .inner ul li {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #quantity .inner .box {
    width: 230px;
    margin: 0 auto;
  }
  #quantity .inner .box #plus, #quantity .inner .box #minus {
    margin-top: 5px;
    width: 50px;
    height: 50px
  }
  #quantity .inner .box #plus img, #quantity .inner .box #minus img {
    max-width: 100%;
    max-height: 100%;
  }
  #quantity .inner .box #quantity_select {
    border: 1px solid #52C3F1;
    background-color: #fff;
    border-radius: 30px;
    line-height: 1.4;
    color: #5f5f5f;
    text-align: center;
    display: table;
    width: 160px;
    height: 50px;
  }
  #quantity .inner .box #quantity_select span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  #side {
    width: 84%;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
  }
  #side #side_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    top: 0;
  }
  #side #side_box #date_box, #side #side_box #weight_box {
    background: #52C3F1;
    padding: 10px 0 5px 0;
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  #side #side_box #weight_box {
    justify-content: center;
  }
  #side #side_box #date_box p::after {
    top: -1px;
  }
  #side #side_box #weight_box p::after {
    top: -2px;
  }
  #side #side_box #date_box p, #side #side_box #weight_box p, #side #side_box #date_box div, #side #side_box #weight_box div {
    color: #fff;
  }
  #side #side_box #price_box, #side #side_box #cart_box {
    background: #fff;
    padding: 12px 0 0;
    width: 100%;
  }
  #side #side_box #cart_box {
    padding: 12px 0 20px;
  }
  #side #side_box #price_box {
    display: flex;
    justify-content: center;
	align-items: baseline;
  }
  #side #side_box #price_box p::after {
    top: 2px;
  }
  #side #side_box #price_box p, #side #side_box #cart_box p,#side #side_box #cart_box div {
    color: #52C3F1;
  }
  #side #side_box #price_box div{
    color: #333;
  }
  #side #side_box #cart_box div {
    color: #fff;
    background: #cc0000;
    border-radius: 10px;
    width: 40%;
    margin: 0 auto;
    padding: 5px 0;
  }
}


/*===================================
  
  faq

===================================*/
body {
  background-color: #fff;
}

h1{
	font-size: 1.6rem;
	border-bottom: 1px solid #ededed;
	padding-bottom: 10px;
}
.faq .page_nav {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.faq .page_nav li {
  display: flex;
  justify-content: center;
  width: 34%;
  margin-bottom: 40px;
}
.faq .page_nav li a {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 160px;
  background-color: #52C3F1;
}
.faq .page_nav li a::after {
  display: none;
}
.faq .page_nav li a span {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 160px;
  text-align: center;
  padding-bottom: 0;
  font-size: 1.6rem;
}
.faq .sect {
  margin-top: 85px;
}
.faq .ttl_main {
  font-size: 1.6rem;
  border-bottom: 1px solid #ededed;
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.faq .faq_block_item {
  border-bottom: none;
}
.faq .faq_block_q {
  position: relative;
  color: #777777;
  text-align: left;
  font-weight: normal;
  font-size: 1.6rem;
  padding: 25px 80px 18px 20px;
  min-height: 0;
  pointer-events: none;
}
.faq .faq_block_q::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}
.faq .faq_block_q::after {
  display: none;
}
.faq .faq_block_ans {
  position: relative;
  color: #777777;
  font-size: 1.6rem;
  border-bottom: none;
  padding: 0 70px 26px 25px;
}
.faq .faq_block_ans::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

/* SP */
@media screen and (max-width: 991px) {
  h1{
	font-size: 1.4rem;
	width: 94%;
	margin: 30px auto;
  }
  .faq .page_nav {
    padding-top: 32px;
  }
  .faq .page_nav li {
  flex-direction: column;
  width: 100%;
  margin-bottom: 15px;
}
  .faq .page_nav li a {
    min-height: 80px;
  }
  .faq .sect {
  margin-top: 28px;
}
  .faq .ttl_main {
    font-size: 1.4rem;
    padding-bottom: 17px;
    padding-top: 20px;
    margin-top: -20px;
  }
  .faq .faq_block_q {
    font-size: 1.4rem;
  }
  .faq .faq_block_ans {
    font-size: 1.4rem;
  }
}


/*===================================
  
  guide

===================================*/
.guide .page_nav {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.guide .page_nav li {
  width: 33%;
  margin-bottom: 33px;
  border-left: none;
}
.guide .page_nav li a {
  flex-direction: column;
  width: 100%;
  min-height: 160px;
  border-right: none;
}
.guide .page_nav li a::after {
  display: none;
}
.guide .page_nav li a img {
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
.guide .page_nav li a span {
  display: block;
  margin: 0 auto;
  padding: 25px 0 0;
  color: #777777;
  font-size: 1.6rem;
  font-weight: normal;
}
.guide .ttl_main {
  font-size: 1.6rem;
  font-weight: normal;
  border-bottom: 1px solid #ededed;
  text-align: left;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.guide .guide_block_item {
  margin: 25px 0 29px;
}
.guide .guide_block_ttl {
  font-size: 1.6rem;
  color: #777777;
  margin-bottom: 25px;
}
.guide .guide_block_text {
  font-size: 1.6rem;
  line-height: 2;
}
.guide .guide_block_text span {
  color: #F15271;
}
.guide .guide_block_text p {
  margin-bottom: 40px;
}
.guide .guide_block_text p:nth-of-type(4) {
  margin-bottom: 0;
}
.guide .guide_deliver_fee h3 {
  font-size: 1.6rem;
  margin-bottom: 27px;
}
.guide .guide_deliver_fee h3 .color_p {
  color: #F15271;
}
.guide .guide_deliver_fee h3 .color_b {
  color: #52C3F1;
}
.guide .guide_deliver_fee h3 i {
  font-size: 2.4rem;
}
.guide .guide_deliver_fee h3 b {
  font-size: 2.4rem;
}
.guide .guide_deliver_fee img {
  width: 409px;
  height: 147px;
}

/* SP */
@media screen and (max-width: 991px) {
  .guide .page_nav li {
    width: 49%;
  }
  .guide .page_nav li a span {
    font-size: 1.4rem;
  }
  .guide .page_nav li a img {
    width: 100px;
    height: 100px;
  }
  .guide .ttl_main {
    padding-top: 20px;
    margin-top: -20px;
  }
  .guide .guide_block_item {
    margin-bottom: 146px;
}
  .guide .guide_block_ttl {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .guide .guide_block_text {
    font-size: 1.4rem;
    line-height: 2.2;
  }
  .guide .guide_block_text p {
    margin-bottom: 50px;
  }
  #guide02 .guide_block_item {
    margin-bottom: 0;
  }
  .guide .guide_deliver_fee {
    margin-top: 68px;
  }
  .guide .guide_deliver_fee h3 {
    margin-bottom: 18px;
    margin-bottom: 18px;
  }
  .guide .guide_deliver_fee img {
    width: 100%;
    height: auto;
  }
}

/*===================================
  
  product

===================================*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(119,119,119,0.8);
  z-index: 9999;
}
.inner_product {
  position: fixed;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  height: 80vh;
  z-index: 100;
  overflow-y: scroll;
}
.modal_window {
  position: relative;
  width: 100%;
  background-color: #fff;
  opacity: 1;
  border: solid 2px #52C3F1;
  z-index: 100;
  padding: 48px 60px 72px;
}
button {
  position: absolute;
  top: 0;
  right: 10px;
  background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  cursor: pointer;
}
.item_box h3 {
  font-size: 1.6rem;
  text-align: center;
}
.item_box p {
  margin: 30px 0;
  text-align: center;
}
/*.item_box p img {
  width: 160px;
  height: 160px;
}*/
.modal_window .disp_sp {
  display: none;
}
.item_box .item_text p {
  font-size: 1.6rem;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}
.item_text span {
  color: #F15271;
}
.item_box .flex_2column {
  flex-wrap: nowrap;
}
.item_content {
  margin-top: 40px;
}
.item_content h4,
.item_content h5 {
  font-size: 1.6rem;
  padding-bottom: 18px;
  margin-bottom: 32px;
  border-bottom:  solid  1px #ededed;
}
.item_content h6 {
  font-size: 1.6rem;
  font-weight: bold;
}
.item_content p {
  font-size: 1.6rem;
}
.item_content .flex_2column {
  flex-wrap: nowrap;
  align-items: flex-start;
}
.item_content table {
  border: solid 1px #707070;
  border-collapse: collapse;
}
.item_content table th {
  border: solid 1px #707070;
  font-size: 1.1rem;
  border-bottom: solid 1px #707070;
  padding: 10px 27px;
  color: #707070;
  width: 15%;
}
.item_content table td {
  border: solid 1px #707070;
  font-size: 1.4rem;
  padding: 10px 25px 15px;
  color: #707070;
  width: 60%;
}
.item_content .flex_2column table {
  margin-bottom: 30px;
  /*width: 48%;*/
}
.item_content p span {
  color: #F15271;
}
.item_content ul li {
  font-size: 1.6rem;
}
.item_content .item_list {
  font-size: 1.6rem;
  width: 40%;
}
/*.item_content .item_text {
  margin-top: 30px;
}*/
.item_content .item_text p {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.item_content a:hover {
  opacity: .7;
  transition: all .3s ease;
}
.item_block {
  margin: 33px 0px 0 40px;
  padding: 0px;
  width: 560px;
  border: 1px solid #0066FF;
}
.item_block .item {
  max-width: 169px;
}
.item .sub_cap {
  margin-top: 30px;
}
.item_block .sub_cap p {
  font-size: 1.4rem;
  margin-top: 25px;
}
.item_block table {
  border: 1px solid #cccccc;
  margin: 0px 0px 15px 0px;
}
.item_block table th {
  border: 1px solid #cccccc;
  background: #F3F2ED;
  text-align: left;
  padding: 8px 8px 8px 10px;
  width: 90px;
}
.item_block table td {
  border: 1px solid #cccccc;
  padding: 8px 10px;
  width: 195px;
}
.item_block_text {
  position: absolute;
  text-align: left;
  font-size: 1.1rem;
  top: 265px;
  left: 20px;
  width: 170px;
  line-height: 1.3;
}
.text02 {
  top: 320px;
}
.item_block .last {
  margin: 0px 20px 15px 15px;
  padding: 0px;
  font-size: 1.4rem;
}
.item_block .link {
  margin: 0;
  padding: 0 0 0 18px;
  text-align: right;
  font-size: 1.4rem;
}
.item_block .flex_2column {
  padding: 2% 4%;
  flex-wrap: nowrap;
}
.caution {
  margin: 20px 0;
}
.caution .flex_2column {
  justify-content: start;
  justify-content: center;
  flex-wrap: nowrap;
}
.caution .item_text {
  margin-left: 15px;
}
.caution p {
  text-align: left;
}
.is_center {
  align-items: flex-end;
}
.content_wrap {
  width: 60%;
}
.content_first {
  margin-bottom: 30px;
}
.caution {
  border: 1px solid #707070;
  padding: 10px 10px 0;
}
.caution h6 {
  font-size: 1.6rem;
  color: #F15271;
}
.item_content .flex_3column {
  width: 80%;
  margin: auto;
}
.content_box {
  margin-bottom: 30px;
}
.content_box_last {
  margin-bottom: 0;
}

/* SP */
@media screen and (max-width: 991px) {
  .inner_product {
    top: 0;
    left: 0;
    transform: translateX(0%);
    height: 100vh;
    padding: 0 2%;
  }
  .modal_window {
    padding-right: 5%;
    padding-left: 5%;
  }
  .item_box h3 {
    font-size: 1.4rem;
  }
  .modal_window .disp_sp {
  display: block;
  }
  button {
    right: 5px;
    width: 64px;
    height: 64px;
  }
  .item_box span {
    padding-left: 0;
  }
  .item_box .item_text p {
    padding-left: 0;
  }
  .item_content {
    margin-top: 60px;
}
  .item_content h4,
  .item_content h5 {
    font-size: 1.4rem;
  }
  .item_content .flex_2column {
    flex-wrap: wrap;
}
  .item_content table{
    width: 100%;
  }
  .item_content table th {
    padding: 10px 20px;
  }
  .item_content table td {
    padding: 15px 10px;
  }
  .item_content .flex_2column p {
    margin: 0 auto ;
    font-size: 1.6rem;
  }
  .item_content .item_list {
    width: 100%;
  }
  .item_content .item_table {
    width: 100%;
    margin-top: 60px;
  }
  .item_block {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .caution .flex_2column {
    align-items: center;
  }
  .item_content h6 {
  font-size: 1.4rem;
}
  .content_wrap {
  width: 100%;
  margin-bottom: 30px;
}
  .is_center {
  justify-content: center;
}
  .item_content .flex_3column {
    justify-content: center;
  }
  .flex_3column dl {
    margin-bottom: 15px;
  }
  .flex_3column dl:last-of-type {
    margin-bottom: 0;
  }
  .content_box .text_box {
    margin-bottom: 30px;
  }
}

/*モーダルウィンドウ 非表示*/
#modal_window01,
#modal_window02,
#modal_window03,
#modal_window04,
#modal_window05,
#modal_window06,
#modal_window07,
#modal_window08 {
  display: none;
}
#modal_window09 {
  /*display: none;*/
}




/*　コーワ2021年送料変更およびレイアウト変更
--------------------------------------------------------------*/

.souryo_block .ttl{
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 40px;
}
.souryo_block .ttl span.bold{
	font-weight: bold;
	font-size: 2.0rem;
	color: #52C3F1;
}

#select_block{
	display: flex;
	width: 660px;
	margin: 0 auto;
}
#select_block li{
	padding: 0;
	background: none;
	float: none;
}
#select_block li img{
   vertical-align: bottom;
}
#select_block li input{
   display: none;
}
#place_list{
	display: flex;
}
#place_list li{
	padding: 0;
	background: none;
	float: none;
}
#inner_wrap{
	width: 574px;
	margin: 0 auto;
	background: #F7F7F7;
	padding: 25px 45px;
	font-size: 14px
}
#inner_wrap{
	width: 660px;
	margin: 0 auto;
	background: #F7F7F7;
	padding: 25px 45px;
	font-size: 14px
}

#inner_wrap .bottom_block{
	background: #fff;
	width: auto;
	padding: 15px 8px;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
#inner_wrap p,
#inner_wrap p.price{
	margin: 0;
}
#inner_wrap span {
  font-size: 1.2rem;
}




#inner_wrap .bottom_block dl{
	background: #fff;
	font-size: 14px;
	display: flex;
	margin: 0;
	padding: 20px 0 0 0;
	flex-grow: 1;
}
#inner_wrap .bottom_block dl dt{
	color: #333;
	font-size: 14px;
	padding: 0;
	margin: 0;
	line-height: 2.0;
}
#inner_wrap .bottom_block dl dd{
	color: #333;
	font-size: 14px;
	padding: 0;
	margin: 0;
}#inner_wrap .bottom_block dl dd.deliverydate{
	font-size: 18px;
	font-weight: bold;
	width: auto;
	padding: 0 5px;
	line-height: 1.4;
}
#inner_wrap .bottom_block dl dd.method02{
	color: #333;
	font-size: 11px;
	padding: 0;
	margin: 0;
	background: transparent;
	width: auto;
}
#inner_wrap .bottom_block dl dd.method02{
	color: #333;
	font-size: 11px;
	padding: 0;
	margin: 0;
	background: transparent;
	width: auto;
	line-height: 2.5; /* <strong></strong> */
}
#inner_wrap .bottom_block .price_block p{
	font-size: 12px;
	display: flex;
}
#inner_wrap .bottom_block .price_block p span:first-of-type{
	width: 60px;
	display: block;
	text-align: right;
}
#inner_wrap .bottom_block .price_block p span#product_total, 
#inner_wrap .bottom_block .price_block p span#sendprice, 
#inner_wrap .bottom_block .price_block p span#price{
	width: 90px;
	text-align: right;
}
#inner_wrap .bottom_block .price_block p span#price{
	font-size: 2.0rem;
	color: #ff0000;
	font-weight: bold;
	line-height: 1.4;
}
#inner_wrap .bottom_block .price_block p.price span:first-of-type, 
#inner_wrap .bottom_block .price_block p.price span:last-of-type{
	line-height: 2.5;
}
#inner_wrap #estimate_block {
	 width:  auto;
	 text-align: center; 
	 padding: 30px 0 0; 
}
#inner_wrap #estimate_block input{
	border: none;
	background: #3a3a3a;
	color: #fff;
	padding: 6px 30px !important;
	border-radius: 10px;
	font-size: 1.6rem;
}
#cart_contents p.bottom{
	margin:0;
	padding: 0;
	clear:both;
	text-align:left;
	font-size: 12px;
	color: #555;
}
#cart_contents #hurry_block{
	padding: 30px 0 0 10px;
}
.uketori div#btn_block {
	width: 360px;
	margin: 30px auto;
}
.uketori div .send {
	background: #ff0000;
	color: #fff;
	text-align: center;
	border-radius: 10px;
	font-size: 14px;
	padding: 6px 30px;
	border: none;
	position: relative;
}
.uketori div .back {
	background: #dfdfdf;
	color: #333;
	text-align: center;
	border-radius: 10px;
	font-size: 14px;
	padding: 6px 30px;
	border: none;
	position: relative;
}
#select_block .radiobutton + label .on{
    display: none;
}
#select_block .radiobutton + label .off{
    display: block;
}
#select_block .radiobutton:checked + label .on{
    display: block;
}
#select_block .radiobutton:checked + label .off{
    display: none;
}
#select_block .normal_btn .on {
    padding: 15px 0 0 0;
}
#select_block .normal_btn .off {
    padding: 30px 0 0 0;
}
#select_block .siten_btn .on {
    padding: 15px 0 0 0;
}
#select_block .siten_btn .off {
    padding: 1px 0 0 0;
}
#select_block .tenpo_btn .on {
    padding: 15px 0 0 0;
}
#select_block .tenpo_btn .off {
    padding: 2px 0 0 0;
}

.sel_destination_select{
	display: flex;
}

p.pref_select{
	margin-bottom: 10px !important;
}

.pref_select select{
	padding: 6px 10px;
	font-size: 1.4rem;
	border-color: #ccc;
	border-radius: 10px;
	font-weight: bold;
}

#place_list input[type=radio],
#place_list input[type=checkbox] {
  display: none;
}
#place_list label > span {
  margin: 0 20px 0 0;
  border: 1px solid #01BFF2;
  border-radius: 10px;
  padding: 8px 15px 8px 40px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.05em;
  background: #fff;
  font-size: 1.4rem;
}
#place_list label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #01BFF2;
}

#place_list label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 15px;
  background: #FF0000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#place_list label > input:checked + span {
  background: #EEFBFE;
}
#place_list label > input:checked + span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
  border: 1px solid #01BFF2;
}

.caution2,.bottom{
	font-size: 1.2rem;
}

#hurry_block {
	margin-top: 20px;
}
#hurry_block span{
	font-size: 1.4rem;
}





/*===================================
  
 カート購入ステップ表示

===================================*/



/*
.circle {
    position: relative;
    width: 120px;
    height: 120px;
    background: #333;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}
.circle::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -60px;
    width: 120px;
    height: 120px;
    background: #999;
    transform-origin: right 60px;
    z-index: 2;
    animation: rotate-circle-left 2s linear forwards;
}

.circle::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 60px;
    width: 120px;
    height: 120px;
    background: #999;
    transform-origin: left 60px;
    z-index: 3;
    animation: rotate-circle-right 2s linear forwards;
}

.circle .circle-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    padding-top: 38px;
    background: #fff;
    border-radius: 50%;
    z-index: 4;
}
*/
@keyframes rotate-circle-right {
    0%   {
        transform: rotate(0deg);
        background: #999;
    }
    50%  {
        transform: rotate(180deg);
        background: #999;
    }
    50.01% {
        transform: rotate(360deg);
        background: #333;
    }
    100% {
        transform: rotate(360deg);
        background: #333;

    }
}

@keyframes rotate-circle-left {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(0deg); }
    100% { transform: rotate(180deg); }
}