@charset "utf-8";
.sp-only {
  display: none !important;
}
@media all and (min-width:1025px) {
  .tab-only {
    display: none !important;
  }
}
body {
  position: relative;
}
body::before {
  content: '';
  width: min(2.2%, 30px);
  height: 100%;
  background-image: url(../img/towel_lineLeft.webp);
  background-size: 100% auto;
  background-position: left top;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
}
body::after {
  content: '';
  width: min(2.2%, 30px);
  height: 100%;
  background-image: url(../img/towel_lineRight.webp);
  background-size: 100% auto;
  background-position: left top;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
}
.inner {
  width: min(92%, 1180px);
  margin: auto;
}
.inner--small {
  width: min(92%, 912px);
  margin: auto;
}
main {
  position: relative;
  top: 0;
}
.pagetopWrap {
  position: absolute;
  right: 4em;
  top: 0;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.pagetopWrap #pagetop {
  position: sticky;
  top: calc(100% - 8em);
  left: 0;
  color: #0B93CD;
  cursor: pointer;
  margin: 0 0 3em;
  transform: translateY(20em);
  transition: transform .6s;
  pointer-events: auto;
}
body.is--scroll .pagetopWrap #pagetop {
  transform: translateY(0);
}
.pagetopWrap #pagetop span.en {
  display: block;
  font-size: 93.75%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  padding: 0 0 5em;
  position: relative;
}
.pagetopWrap #pagetop span.en::before {
  content: '';
  width: 4em;
  height: 4em;
  background: url(../img/pagetop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.pagetopWrap #pagetop:hover span.en::before {
  -webkit-animation: rotate .5s;
  animation: rotate .5s;
}
@media all and (max-width:1024px) {
  .pagetopWrap {
    font-size: 1.5vw;
  }
}
/* == parts ============================================== */
.title_base {
  position: relative;
  padding: 0 0 2.7em;
}
.title_base::before {
  content: '';
  width: 1.5em;
  height: 1em;
  background-image: url(../img/icon_towel01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}
.title_base .en {
  display: block;
  font-size: 250%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.title_base .jp {
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  margin: 1.1em 0 0;
  letter-spacing: .1em;
  color: #3975BB;
}
.title_base .en span.color01 {
  color: #3975BB;
}
.title_base .en span.color02 {
  color: #0B93CD;
}
.title_base .en span.color03 {
  color: #4AC3F6;
}
.title_base.base--white .en, .title_base.base--white .jp {
  color: #fff;
}
.title_base.base--white::before {
  background-image: url(../img/icon_towel02.webp);
}
/* == header ============================================== */
@media all and (min-width:1025px) {
  header .h_inner {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .h_logo {
    width: 140px;
    height: 12px;
    margin: 0 0 0 60px;
  }
  header .h_logo a {
    display: block;
    height: 100%;
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
    transition: all .2s;
  }
  header .h_logo a:hover {
    opacity: .7;
  }
  header #navTrigger {
    display: none;
  }
  header nav {
    width: calc(100% - 423px);
    max-width: 934px;
    box-sizing: border-box;
    padding: 0 2.3% 0 4.3%;
    margin: 0 0 0 auto;
  }
  .list_mainNav {
    display: flex;
    justify-content: space-between;
  }
  .list_mainNav > li a {
    display: block;
    font-size: 93.75%;
    font-weight: 700;
    color: #284B85;
    padding: 1em .9em;
    position: relative;
    letter-spacing: .1em;
    transition: color .2s;
  }
  .list_mainNav > li a::before {
    content: '';
    width: 1.5em;
    height: 0;
    background: url("../img/icon_towel01.webp");
    background-repeat: no-repeat;
    background-size: 1.5em 1em;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }
  .list_mainNav > li a:hover::before {
    height: 1em;
  }
  header .btn_hContact {
    width: 193px;
    margin: 0 30px 0 0;
    box-sizing: border-box;
  }
  .btn_hContact a {
    display: block;
    color: #fff;
    background: #284B85;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    padding: 1.22em 0;
    border: solid 1px #284B85;
    transition: all .4s;
  }
  .btn_hContact a:hover {
    color: #284B85;
    background: #fff;
  }
  .btn_hContact span.en {
    display: block;
    font-size: 75%;
    letter-spacing: .05em;
  }
  .btn_hContact span.jp {
    display: block;
    font-size: 93.75%;
  }
}
@media all and (max-width:1200px) and (min-width:1025px) {
  header .h_logo {
    margin: 0 0 0 40px;
  }
  header nav {
    width: calc(100% - 330px);
  }
  .list_mainNav {
    justify-content: flex-end;
  }
  .list_mainNav > li a {
    font-size: 87.5%;
    padding: 1em .6em;
  }
  header .btn_hContact {
    width: 120px;
  }
}
@media all and (max-width:1024px) {
  header .h_inner {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
  }
  header .h_logo {
    display: none;
  }
  header #navTrigger {
    position: absolute;
    z-index: 101;
    width: 48px;
    height: 40px;
    right: calc(1em + 4.4%);
    top: 16px;
    background: #fff;
    text-align: center;
  }
  header #navTrigger span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #2E508A;
    line-height: 1;
    height: 100%;
    box-sizing: border-box;
    padding: .6em 0 0;
    background-image: url(../img/icon_towel01.webp);
    background-repeat: no-repeat;
    background-position: center bottom 9px;
    background-size: 10px auto;
    transition: all .4s;
  }
  header #navTrigger::after {
    content: '';
    width: 18px;
    height: 18px;
    background: url(../img/nav_close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transform: scale(0);
    transition: all .4s;
  }
  body.nav--open header #navTrigger span {
    opacity: 0;
    transform: scale(0);
  }
  body.nav--open header #navTrigger::after {
    opacity: 1;
    transform: scale(1);
  }
  header nav {
    position: absolute;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    visibility: hidden;
    pointer-events: none;
  }
  body.nav--open header nav {
    visibility: visible;
    pointer-events: auto;
  }
  header nav::before {
    content: '';
    background: rgba(165, 165, 165, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    will-change: backdrop-filter;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s;
  }
  body.nav--open header nav::before {
    opacity: 1;
    visibility: visible;
  }
  header nav .navWrap {
    position: relative;
    z-index: 10;
    background: #284B85;
    width: 65%;
    height: 100svh;
    margin: 0 0 0 auto;
    box-sizing: border-box;
    padding: 5.7em 2.276em 4em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(70vw);
    transition: all .4s ease 0s;
    overflow-y: scroll;
  }
  body.nav--open header nav .navWrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: all .4s ease .2s;
  }
  header nav .navWrap .nav_logo1 {
    margin: 0 0 1.66em;
  }
  header nav .navWrap .nav_logo1 a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
    width: 100%;
    height: 0;
    padding: 37% 0 0;
    background: url(../img/logo_title.webp);
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .btn_hContact {
    width: 100px;
    box-sizing: border-box;
    position: absolute;
    right: calc(4.4% + 88px);
    top: 16px;
  }
  .btn_hContact a {
    display: block;
    color: #fff;
    background: #284B85;
    text-align: center;
    line-height: 1;
    font-size: 12px;
    font-weight: 700;
    padding: 1.2em 0;
    transition: all .4s;
  }
  .btn_hContact span.en {
    display: block;
    font-size: 75%;
    letter-spacing: .05em;
  }
  .btn_hContact span.jp {
    display: block;
    font-size: 93.75%;
  }
  .list_mainNav {
    border-top: solid 1px #0B93CD;
  }
  .list_mainNav > li:not(.mainNav--contact) {
    border-bottom: solid 1px #0B93CD;
  }
  .list_mainNav > li:not(.mainNav--contact) a {
    display: block;
    color: #fff;
    font-size: 107.14%;
    padding: .72em 0;
  }
  .list_mainNav > li.mainNav--contact {
    text-align: center;
    margin: 1.8em 0 0;
  }
  .list_mainNav > li.mainNav--contact a {
    display: block;
    padding: .7em 0;
    background: #fff;
    color: #284B85;
    font-size: 107.14%;
    font-weight: 700;
  }
  header .nav_logo2 {
    margin: 1em 0 0;
    text-align: right;
  }
  header .nav_logo2 span {
    display: inline-block;
    width: 74%;
    height: 0;
    padding: 7% 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
    background: url(../img/logo_f.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
/*---------- scroll ----------*/
body.headerWhite header .h_logo a {
  background-image: url(../img/logo--white.svg)
}
body.headerSky header .h_logo a {
  background-image: url(../img/logo--sky.svg)
}
body.headerSky .list_mainNav > li a {
  color: #0B93CD;
}
body.headerSky .btn_hContact a {
  background-color: #0B93CD;
  border-color: #0B93CD;
}
/* == footer ============================================== */
footer {
  background: #284B85;
  padding: 4.95em 0 4.2em;
  position: relative;
  z-index: 10;
}
footer .f_inner {
  width: min(92%, 1130px);
  margin: 0 auto;
  position: relative;
}
footer .f_textBox .f_logo {
  width: 200px;
  height: 16px;
  margin: 0 0 2.1em;
}
footer .f_textBox .f_logo a {
  display: block;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  background-image: url(../img/logo_f.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .3s;
}
footer .f_textBox .f_logo a:hover {
  opacity: .7;
}
footer .f_textBox .f_address {
  font-size: 81.25%;
  line-height: 1.85;
  color: #fff;
  margin: 0 0 1.7em;
  letter-spacing: .1em;
}
.list_fNav {
  font-family: "Montserrat", sans-serif;
  font-size: 81.25%;
  font-weight: 500;
  color: #fff;
  letter-spacing: .1em;
  display: flex;
}
.list_fNav > li {
  position: relative;
}
.list_fNav > li + li {
  margin: 0 0 0 1.3em;
  padding: 0 0 0 1.3em;
}
.list_fNav > li + li::before {
  content: '';
  width: 1px;
  height: 1em;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.list_fNav > li a {
  display: block;
  position: relative;
}
.list_fNav > li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all .4s;
}
.list_fNav > li a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
footer .copyright {
  text-align: right;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}
/* == frontpage ==============================================*/
.block_fv {
  background: #d4d4d4;
  position: relative;
}
.block_fv .fvFlex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 13.5% 0 8.8%;
  box-sizing: border-box;
  width: min(95.8%, 2620px);
  margin: auto;
}
.block_fv .fvFlex .fvSlide {
  width: 45.85%;
  margin: 0 !important;
}
.block_fv .fvFlex .fvSlide img {
  vertical-align: top;
  pointer-events: none;
}
.block_fv .fvFlex .fv_textBox {
  width: 50%;
  box-sizing: border-box;
  padding: 0 0 0 6.88%;
  margin: 4.8% 0 0;
}
.block_fv .fv_title {
  width: 96%;
  height: 0;
  padding: 40% 0 0;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  background: url(../img/main_title.webp);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 1.9em;
}
.block_fv .fv_info {
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 0 0 1.3em;
}
.block_fv .fv_info .info_title {
  display: inline-block;
  width: 30%;
  margin: 0 1.7em 0 0;
  vertical-align: middle;
}
.block_fv .fv_info .info_title img {
  vertical-align: top;
}
.block_fv .fv_info .info_size {
  display: inline-block;
  vertical-align: middle;
  width: 34.914%;
}
.block_fv .fv_info .info_size img {
  vertical-align: top;
}
.block_fv .fv_lead {
  font-size: min(1.1vw, 32px);
  font-weight: 500;
  color: #284B85;
  line-height: 1.75;
  letter-spacing: .05em;
}
/*------------------------------*/
.block_news {
  padding: 7.45em 0 17.3em;
  background: #284B85;
}
.block_news .newsFlex {
  display: flex;
}
.block_news .newsFlex .flexTitle {
  width: 23.7%;
}
.block_news .newsFlex .flexContents {
  width: 71%;
}
.list_newsSummary {
  border-top: solid 1px #fff;
}
.list_newsSummary > li {
  border-bottom: solid 1px #fff;
}
.list_newsSummary > li a {
  display: flex;
  color: #fff;
  font-size: 87.5%;
  padding: .8em 0;
  transition: all .4s;
}
.list_newsSummary > li a:hover {
  background: #0B93CD;
}
.list_newsSummary > li a span.time {
  display: block;
  width: 15%;
  text-align: center;
  letter-spacing: .05em;
}
.list_newsSummary > li a span.title {
  width: 85%;
  box-sizing: border-box;
  padding: 0 0 0 3.5%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*------------------------------*/
.block_about {
  background: #0B93CD;
  position: relative;
  z-index: 5;
  padding: 0 0 6.7em;
}
.block_about .area_bigTowel {
  width: min(98%, 1150px);
  margin: 0 auto -13.2em;
  background-image: url(../img/about_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 7em 0 10em;
  transform: translateY(-11.3em);
}
.block_about .area_bigTowel::before {
  content: '';
  width: 11.8125em;
  height: 0;
  padding: 7.4375em 0 0;
  background: url(../img/about_illust01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 5;
  right: 3.54em;
  top: -4.2em;
}
@media all and (max-width:1024px) {
  .block_about .area_bigTowel {
    font-size: 1.5vw;
  }
}
.block_about .area_bigTowel .about_naire {
  width: 61%;
  margin: 0 auto 1%;
}
.block_about .area_bigTowel .about_naire img {
  width: 26%;
}
.block_about .area_bigTowel .towel_title {
  width: 61%;
  margin: 0 auto 3%;
}
.block_about .area_bigTowel .towel_title img {
  vertical-align: top;
}
.block_about .area_bigTowel .towelFlex {
  width: min(83%, 820px);
  margin: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.block_about .area_bigTowel .towel_img {
  width: 31.5%;
}
.block_about .area_bigTowel .towel_img img {
  vertical-align: top;
}
.block_about .area_bigTowel .towel_lead {
  font-size: 131.25%;
  color: #0B93CD;
  width: 67%;
}
.block_about .area_bigTowel .towel_lead p {
  line-height: 1.5;
  letter-spacing: .05em;
  font-feature-settings: normal;
}
.block_about .area_bigTowel .towel_lead p > span {
  display: inline-block;
  padding: .8em 0;
  background-repeat: no-repeat;
  background-size: auto 8px;
  background-position: left bottom;
}
.block_about .area_bigTowel .towel_lead span.line01 {
  background-image: url(../img/line01.webp);
}
.block_about .area_bigTowel .towel_lead span.line02 {
  background-image: url(../img/line02.webp);
}
.block_about .area_bigTowel .towel_lead span.line03 {
  background-image: url(../img/line03.webp);
}
.block_about .area_desc {
  padding: 7em 0 0;
}
.block_about .area_desc .descFlex {
  margin: 4em 0 0;
  display: flex;
  justify-content: space-between;
}
.block_about .area_desc .desc_text {
  width: 54%;
  color: #fff;
  font-size: 93.75%;
  letter-spacing: .05em;
  line-height: 2.667;
  text-align: left;
}
.block_about .area_desc .desc_img {
  width: 40.571%;
  margin: -2.8em 0 0 0;
}
/*-----anime-----*/
.block_about.js--scroll .towelAnime {
  opacity: 0;
  transform: translateY(4em);
  transition: all 1.2s;
}
.block_about.js--scroll.scroll--start .towelAnime {
  opacity: 1;
  transform: translateY(0);
}
/*------------------------------*/
.block_feature {
  padding: 7.1em 0 0;
}
.block_feature .area_point {
  padding: 0 0 7.6em;
}
.block_feature .area_point .pointSet .pointFlex {
  width: min(92%, 820px);
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.block_feature .area_point .pointSet .point_num {
  color: #3975BB;
}
.block_feature .area_point .pointSet .point_num span.en {
  display: block;
  line-height: 1;
  font-size: 81.25%;
  font-weight: 700;
}
.block_feature .area_point .pointSet .point_num span.num {
  display: block;
  line-height: 1;
  font-size: 462.5%;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .05em;
}
.block_feature .area_point .pointSet .point_title {
  font-size: 125%;
  font-weight: 700;
  line-height: 2;
  color: #3975BB;
  margin: .4em 0 1.15em;
}
.block_feature .area_point .pointSet .point_lead {
  font-size: 93.75%;
  color: #3975BB;
  text-align: left;
}
.block_feature .area_point .pointSet.set01 {
  margin: 1.25em auto 0;
}
.block_feature .area_point .pointSet.set01 .textBox {
  width: 40%;
}
.block_feature .area_point .pointSet.set01 .point_num {
  margin: 3.6em 0 0;
}
.block_feature .area_point .pointSet.set01 .imageBox {
  width: 47%;
}
.block_feature .area_point .pointExample {
  margin: 6.1em 0 0;
}
.block_feature .area_point .pointExample .example_title {
  text-align: center;
  margin: 0 0 3em;
}
.block_feature .area_point .pointExample .example_title span {
  display: inline-block;
  position: relative;
  width: 377px;
  height: 0;
  padding: 20px 0 0;
  background: url(../img/point_title.webp) no-repeat;
  background-size: contain;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
}
.list_example {
  display: flex;
  flex-wrap: wrap;
  width: min(92%, 1120px);
  margin: auto;
  gap: 2.3em 2.38%;
}
.list_example > li {
  width: 23.2143%;
  text-align: center;
}
.list_example > li img {
  vertical-align: top;
}
.list_example > li figcaption {
  color: #3975BB;
  font-weight: 700;
  margin: .6em 0 0;
}
#js_exampleSlide .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: min(92%, 1120px);
  margin: auto;
  gap: 0 2.38%;
}
#js_exampleSlide .swiper-wrapper .swiper-slide {
  width: 23.2143%;
  text-align: center;
}
#js_exampleSlide .swiper-wrapper .swiper-slide img {
  vertical-align: top;
}
#js_exampleSlide .swiper-wrapper .swiper-slide figcaption {
  color: #3975BB;
  font-weight: 700;
  margin: .6em 0 0;
}
@media all and (max-width:1024px) {
  #js_exampleSlide .swiper-wrapper .swiper-slide figcaption {
    font-size: 1.5625vw;
  }
}
#js_exampleSlide .swiper-wrapper .swiper-slide figure + figure {
  margin: 2.38em 0 0;
}
.block_feature .area_point .pointSet.set02 .pointFlex {
  align-items: flex-end;
}
.block_feature .area_point .pointSet.set02 {
  margin: 7.15em auto 0;
}
.block_feature .area_point .pointSet.set02 .textBox {
  width: 40%;
}
.block_feature .area_point .pointSet.set02 .imageBox {
  width: 52.562%;
  display: flex;
  justify-content: space-between;
}
.block_feature .area_point .pointSet.set02 .imageBox img {
  display: block;
  vertical-align: top;
}
.block_feature .area_point .point_featureBox {
  width: min(92%, 820px);
  margin: 4.25em auto 0;
}
.block_feature .area_point .point_featureBox .feature_title {
  text-align: center;
  padding: 0;
  border-top: solid 1px #3975BB;
  border-bottom: solid 1px #3975BB;
  font-size: 93.75%;
  font-weight: 700;
  color: #3975BB;
  line-height: 2.6;
  margin: 0 0 1.7em;
}
.list_feature {
  display: flex;
  justify-content: space-between;
}
.list_feature > li {
  width: 46.83%;
}
.list_feature > li img {
  vertical-align: top;
}
.list_feature > li .feature_text {
  font-size: 93.75%;
  color: #3975BB;
  margin: 0 0 .8em;
}
.block_feature .area_original {
  background: #3975BB;
  padding: 7.3em 0 9.2em;
  overflow: hidden;
}
.block_feature .area_original .original_title {
  text-align: center;
}
.block_feature .area_original .original_title span {
  display: inline-block;
  position: relative;
  width: 409px;
  height: 0;
  padding: 54px 0 0;
  background: url(../img/original_title.webp) no-repeat;
  background-size: contain;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
}
.block_feature .area_original .original_imageWrap {
  width: min(71.471%, 1954px);
  margin: 2.35em auto 0;
  transform: translateX(.5em);
}
.block_feature .area_original .original_imageWrap img {
  vertical-align: top;
}
.block_feature .area_original .att_text {
  text-align: right;
  margin: -4.4em 4% 0 0;
  font-size: 87.5%;
  color: #fff;
}
/*-----animation-----*/
#js_exampleSlide .js--scroll .swiper-slide img {
  opacity: 0;
  transform: scale(0);
  transition: all .8s ease-in-out 0s;
}
#js_exampleSlide .js--scroll .swiper-slide figure:nth-of-type(2) img {
  transition-delay: .3s;
}
#js_exampleSlide .js--scroll .swiper-slide figure:nth-of-type(3) img {
  transition-delay: .6s;
}
#js_exampleSlide .js--scroll.scroll--start .swiper-slide img {
  opacity: 1;
  transform: scale(1);
}
.block_feature .area_original .inner.js--scroll .original_imageWrap img {
  opacity: 0;
  transform: scale(0);
  transition: all 1s;
  transition-timing-function: cubic-bezier(.09, 1.54, .79, 1);
}
.block_feature .area_original .inner.js--scroll.scroll--start .original_imageWrap img {
  opacity: 1;
  transform: scale(1);
}
/*------------------------------*/
.block_product {
  padding: 7.1em 0 6.55em;
}
.block_product .productSpecification {
  background: #D8F3FF;
  width: min(92%, 816px);
  margin: 5em auto 5.2em;
  padding: 3em 0;
}
.dl_specification {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
  padding: 0 0 0 21.4%;
  font-size: 93.75%;
}
.dl_specification + .dl_specification {
  margin: 1.05em auto 0;
}
.dl_specification dt {
  width: 90px;
  background: #fff;
  border-radius: .3em;
  border: solid 1px #3975BB;
  text-align: center;
  color: #3975BB;
  padding: .4em 0;
  box-sizing: border-box;
}
.dl_specification dd {
  width: calc(100% - 105px);
  box-sizing: border-box;
  padding: 0 0 0 1em;
  color: #3975BB;
}
.block_product .productSet {
  width: min(92%, 816px);
  margin: auto;
}
.block_product .productSet .product_title {
  text-align: center;
  padding: 0;
  border-top: solid 1px #3975BB;
  border-bottom: solid 1px #3975BB;
  font-size: 112.5%;
  font-weight: 700;
  color: #3975BB;
  line-height: 2.2;
  margin: 0 0 .55em
}
.block_product .productSet .product_lead {
  text-align: center;
  color: #3975BB;
  font-size: 93.75%;
}
.block_product .tabWrap {
  display: none;
}
.block_product .tabWrap.active {
  display: block;
}
.block_product .productSet .productContents {
  margin: 1.75em auto 0;
  display: flex;
  justify-content: space-between;
  max-width: 700px;
}
.block_product .productSet .productContents .contentsLeft {
  width: 45.715%;
}
.block_product .productSet .productContents .contentsLeft .contents_naire {
  width: 60%;
  margin: 0 0 2em;
}
.block_product .productSet .productContents .contentsLeft .contents_naire img {
  vertical-align: top;
}
.block_product .productSet .productContents .contentsImg img {
  vertical-align: top;
}
.block_product .productSet .productContents .contentsText {
  width: 45.715%;
}
.block_product .productSet .productContents .others_title {
  text-align: center;
  padding: 0;
  border-top: solid 1px #3975BB;
  border-bottom: solid 1px #3975BB;
  font-size: 93.75%;
  font-weight: 700;
  color: #3975BB;
  line-height: 1.9;
  margin: 0 0 .3em
}
.block_product .productSet .productContents .others_info {
  font-size: 87.5%;
  letter-spacing: .05em;
  line-height: 1.43;
  text-align: center;
  color: #3975BB;
  margin: 0 0 .4em;
}
.table_price {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  color: #3975BB;
  line-height: 1.8;
}
.table_price thead {
  font-size: 75%;
  position: relative;
}
.table_price thead:after {
  content: "";
  height: 1px;
  width: 100%;
  padding: 2px 0;
  display: block;
}
.table_price th {
  border: solid 1px #3975BB;
}
.table_price td {
  padding: .095em 1em;
  font-size: 93.75%;
  border: solid 1px #3975BB;
}
.block_product .productSet .att_textBox {
  color: #3975BB;
  font-size: 93.75%;
  line-height: 1.867;
  margin: 1em 0 0;
  text-align: left;
}
.block_product .productSet + .productSet {
  margin: 4.4em auto 0;
}
.list_productOthers {
  display: flex;
  margin: 1.7em 0 2.45em;
  gap: 0 5.2942%;
}
.list_productOthers > li {
  font-size: 87.5%;
  line-height: 1.286;
  width: 12.254902%;
  box-sizing: border-box;
  color: #3975BB;
  text-align: center;
  display: flex;
  align-items: center;
  background: #C0E5F9;
  border-radius: .3em;
  transition: all .4s;
  padding: .2em 0 .3em;
  cursor: pointer;
}
.list_productOthers > li.active {
  color: #fff;
  background: #3975BB;
}
.list_productOthers > li span {
  display: block;
  width: 100%;
}
.block_product .productSet .siageWrap {
  border: solid 1px #3975BB;
  border-radius: .25em;
  margin: 4.5em auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3975BB;
  padding: 1em 0;
}
.block_product .productSet .siageWrap .siage_title {
  width: 39%;
  text-align: center;
  font-size: 112.5%;
  line-height: 1.667;
}
.block_product .productSet .siageWrap .siage_text {
  width: 61%;
  box-sizing: border-box;
  border-left: solid 1px #3975BB;
  padding: .5em 0;
}
.list_disc {
  font-size: 93.75%;
  line-height: 1.8667;
  list-style: disc;
}
.block_product .productSet .list_disc > li {
  margin: 0 0 0 16%;
}
/*------------------------------*/
.block_column {
  background: #FFFABE;
  overflow: hidden;
  position: relative;
  padding: 8.9em 0 8.6em;
}
.block_column.icon--none {
  padding: 0;
  overflow: visible;
}
.block_column.column--archive {
  padding: 8.9em 0 8.6em;
}
.block_column:not(.icon--none)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.3em;
  width: 100%;
  height: .5em;
  background-image: url("../img/line04.webp");
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.block_column:not(.icon--none)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1.3em;
  width: 100%;
  height: .5em;
  background-image: url("../img/line04.webp");
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.block_column .column_logo {
  max-width: 385px;
  margin: auto;
}
.block_column .column_logo img {
  vertical-align: top;
}
.block_column .inner--small {
  position: relative;
}
.block_column .column_title {
  text-align: center;
  font-size: 150%;
  font-weight: 500;
  color: #3975BB;
  line-height: 1.75;
  margin: 2.75em 0 2.9em;
}
.block_column .column_title.title--bold {
  font-weight: 700;
  color: #284B85;
}
.block_column .column_title strong {
  font-weight: 500;
}
.block_column .column_title.title--bold strong {
  font-weight: 700;
}
.block_column.icon--none .column_title {
  font-size: 187.5%;
  margin: 2.75em 0 1.8em;
}
.block_column .column_illust {
  position: absolute;
  width: 27%;
  right: 2.5em;
  top: -5em;
}
.block_column .column_illust img {
  position: relative;
  z-index: 5;
}
.block_column .column_illust::before {
  content: '';
  width: 85%;
  height: 0;
  padding: 66% 0 0;
  background: url(../img/column_illust_text.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -27%;
  top: 10%;
}
.list_columnSummary {
  display: flex;
  flex-wrap: wrap;
  max-width: 816px;
  margin: auto;
  gap: 2.5em 3.92%;
  counter-reset: num;
}
.list_columnSummary.type--long {
  max-width: none;
}
.list_columnSummary > li {
  width: 22.06%;
  counter-increment: num;
  position: relative;
}
.list_columnSummary > li::before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
    z-index: 10;
    pointer-events: none;
  left: .5em;
  top: .5em;
    color: #0B93CD;
    border:solid 1px #0B93CD;
    background: #fff;
    width: 2em;
    line-height: 2em;
    text-align: center;
      font-family: "Montserrat", sans-serif;
}
@media all and (max-width:1024px) {
  .list_columnSummary {
    gap: 2em 5%;
    justify-content: center;
  }
  .list_columnSummary > li {
    width: 30%;
  }
}
.list_columnSummary > li a {
  display: block;
}
.list_columnSummary > li .column_thumbnail {
  overflow: hidden;
  position: relative;
  height: 0;
  padding: 100% 0 0;
  margin: 0 0 .6em;
}
.list_columnSummary > li .column_thumbnail img {
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all .4s;
}
.list_columnSummary > li a:hover .column_thumbnail img {
  transform: scale(1.05);
}
.list_columnSummary > li .column_name {
  font-size: 87.5%;
  line-height: 1.5;
  color: #3975BB;
  margin: 0 0 .5em;
}
.list_columnSummary > li .column_cat {
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
}
.list_columnSummary > li .column_cat span {
  font-size: 81.25%;
  line-height: 1;
  display: inline-block;
  background: #fff;
  padding: .5em .9em;
  border-radius: .5em;
  color: #3975BB;
}
.link_more {
  text-align: right;
}
.link_more a {
  display: inline-block;
  font-size: 112.5%;
  line-height: 1.33;
  color: #3975BB;
  position: relative;
  letter-spacing: .15em;
}
.link_more a::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #3975BB;
  position: absolute;
  right: 0;
  bottom: -1px;
}
.link_more a::after {
  content: '';
  width: 0;
  height: 1px;
  background: #3975BB;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.link_more a:hover {
  border-color: #fff;
}
.link_more a:hover::before {
  transition: all .15s;
  width: 0;
}
.link_more a:hover::after {
  transition: all .5s ease .2s;
  width: 100%;
}
.block_column .link_more {
  max-width: 816px;
  margin: 2.7em auto 0;
}
.link_more.type--white a {
  color: #fff;
}
.link_more.type--white a::before, .link_more.type--white a::after {
  background: #fff;
}
/*------------------------------*/
.block_flow {
  padding: 7em 0;
  background: #d4d4d4;
}
.list_flow {
  max-width: 384px;
  margin: auto;
  text-align: center;
}
.block_flow .list_flow {
  margin: -6.25em auto 0;
}
.list_flow > li {
  font-size: 93.75%;
  line-height: 2.4;
  color: #3975BB;
  border-top: solid 1px #3975BB;
  border-bottom: solid 1px #3975BB;
  position: relative;
  padding: 1em 0;
}
.list_flow > li + li {
  margin: 1.87em 0 0;
}
.list_flow > li + li::before {
  content: '';
  width: .4em;
  height: 1.5em;
  background: url("../img/arrow01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  top: -1.7em;
  margin: auto;
}
.block_flow .flow_att {
  max-width: 722px;
  margin: 4.7em auto 0;
  color: #3975BB;
  font-weight: 400;
  font-size: 93.75%;
  line-height: 1.86667;
}
.block_flow .flow_att .margin {
  margin: 1.8em 0 0;
}
.list_att {
  letter-spacing: .05em;
}
.list_att > li {
  padding: 0 0 0 1em;
  position: relative;
}
.list_att > li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}
/*------------------------------*/
.block_contact {
  background: #D8F3FF;
  padding: 7.2em 0 12.13em;
}
.block_contact .formWrap {
  max-width: 484px;
  margin: auto;
}
.block_contact .formWrap .contact_title {
  margin: 4.4em 0 1.3em;
  color: #3975BB;
  font-weight: 700;
  font-size: 93.75%;
  line-height: 2.4;
}
.block_contact .formWrap .contact_lead {
  font-size: 93.75%;
  color: #3975BB;
  line-height: 1.86667;
  margin: 0 0 4.5em;
}
.block_contact .formWrap input, .block_contact .formWrap textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.list_form input[type="text"], .list_form input[type="tel"], .list_form input[type="email"], .list_form input[type="date"], .list_form textarea {
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
  padding: 1.315em;
  background: #fff;
  border: none;
  border-radius: .3em;
  color: #111;
}
.list_form textarea {
  line-height: 1.5;
}
.list_form > li + li {
  margin: 2em 0 0;
}
.dl_form > dt {
  font-size: 93.75%;
  line-height: 2.133;
  color: #3975BB;
  margin: 0 0 .9em;
}
.dl_form > dt span {
  display: inline-block;
  position: relative;
}
.dl_form > dt.hissu span::before {
  content: 'ご記入ください';
  position: absolute;
  top: .2em;
  left: calc(100% + 1.2em);
  background: #fff;
  font-size: 81.25%;
  white-space: nowrap;
  border: solid 1px #3975BB;
  border-radius: .3em;
  padding: 0 1em;
}
.list_form > li .policyBox {
  background: #fff;
  font-size: 81.25%;
  font-weight: 400;
  line-height: 2;
  color: #3975BB;
  box-sizing: border-box;
  padding: 1.5em;
  overflow-y: scroll;
  height: 160px;
}
.list_form > li .policyBox::-webkit-scrollbar {
  width: 12px;
}
.list_form > li .policyBox::-webkit-scrollbar-track {
  background: #E4E5E6;
}
.list_form > li .policyBox::-webkit-scrollbar-thumb {
  background: #6E97A9;
  border-radius: 5px;
}
.list_form > li .policyBox .policy_lead {
  margin: 0 0 1em;
}
.dl_policy > dt {
  font-size: 112.5%;
  font-weight: 500;
  margin: 0 0 .2em;
}
.dl_policy + .dl_policy {
  margin: 1em 0 0;
}
.block_contact .formWrap .formConfirm {
  margin: 2em 0;
  position: relative;
}
.block_contact .formWrap .formConfirm label {
  color: #3975BB;
  font-size: 93.75%;
  padding: 0 0 0 2.6em;
  position: relative;
  cursor: pointer;
}
.block_contact .formWrap .formConfirm label::before {
  content: '';
  width: 1.6em;
  height: 1.6em;
  border: solid 1px #3975BB;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.block_contact .formWrap .formConfirm label::after {
  content: '';
  width: 1.6em;
  height: 1.6em;
  box-sizing: border-box;
  background: #4AC3F6;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
}
.block_contact .formWrap .formConfirm label.active::after {
  border-radius: 0;
  transform: scale(.75);
}
.block_contact .formWrap .formConfirm input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  padding: 0;
}
.block_contact .formWrap .formSubmit {
  margin: 0 0 4.5em;
}
.block_contact .formWrap .formSubmit .btn_submit {
  width: 312px;
  margin: auto;
  box-sizing: border-box;
}
.formSubmit .btn_submit .submit {
  display: block;
  border: solid 1px #284B85;
  border-radius: 4px;
  width: 312px;
  background: #284B85;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 1.2em 0;
  transition: all .2s;
  cursor: pointer;
}
.formSubmit .btn_submit .submit:hover {
  color: #284B85;
  background: #fff;
}
.block_contact .formWrap .form_endText {
  color: #3975BB;
  font-size: 93.75%;
  line-height: 1.8;
}
/* == underpage ============================================== */
/* ==================================== 
page-name #column
====================================*/
#page_column.column_single .pagetopWrap {
  display: none;
}
.block_column .tabBox {
  background: #0B93CD;
  padding: 1em 0 3em;
  margin: 0 0 5em;
}
.block_column .tabBox .tab_title {
  text-align: center;
  color: #fff;
  font-size: 150%;
  font-weight: 700;
}
.list_tabFilter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin: 1em 0 0;
}
.list_tabFilter > li {
  background: #fff;
  border-radius: .5em;
  color: #3975BB;
  line-height: 1.875;
  padding: .1em 1em;
  cursor: pointer;
  transition: all .2s;
}
.list_tabFilter > li.active, .list_tabFilter > li:hover {
  background: #3975BB;
  color: #fff;
}
/* ==================================== 
page-name #column_single
====================================*/
.block_column .area_single {
  position: relative;
  top: 0;
}
.block_column .area_single .single_titleWrap {
  display: flex;
  align-items: center;
  text-align: center;
  height: max(100vh, 650px);
}
.block_column .area_single .single_title {
  font-size: 187.5%;
  font-weight: 700;
  color: #284B85;
  line-height: 1.6;
  letter-spacing: .05em;
  width: 100%;
  position: relative;
}
.block_column .area_single .single_title span.over {
  display: inline-block;
  overflow: hidden;
  transition: transform 1.2s ease-in .1s;
  transform: translateX(-105%);
}
.block_column .area_single .single_title span.text {
  display: block;
  transition: transform 1.2s ease-in .1s;
  transform: translateX(105%);
}
body.page--open .block_column .area_single .single_title span.over, body.page--open .block_column .area_single .single_title span.text {
  transform: translateX(0);
}
.block_column .area_single .single_contents {
  width: min(55%, 600px);
  margin: -6em auto 0;
}
.block_column .area_single .single_leftComment {
  border: solid 2px #3975BB;
  border-radius: 1em;
  background: #fff;
  width: 364px;
  box-sizing: border-box;
  font-size: 112.5%;
  font-weight: 700;
  color: #3975BB;
  padding: .8em 1.5em;
  line-height: 2.2;
  margin: 15vh auto 0 0;
  position: relative;
  transform-origin: left bottom;
  letter-spacing: 0;
}
.block_column .area_single .single_leftComment::before {
  content: "";
  border-bottom: 24px solid transparent;
  border-left: 24px solid #fff;
  position: absolute;
  top: calc(100% - 1px);
  left: 25%;
  z-index: 5;
}
.block_column .area_single .single_leftComment::after {
  content: "";
  border-bottom: 28px solid transparent;
  border-left: 28px solid #3975BB;
  position: absolute;
  top: 100%;
  left: calc(25% - 2px);
}
.block_column .area_single .single_rightComment {
  border: solid 2px #3975BB;
  border-radius: 1em;
  background: #fff;
  width: 364px;
  box-sizing: border-box;
  font-size: 112.5%;
  font-weight: 700;
  color: #3975BB;
  padding: .8em 1.5em;
  line-height: 2;
  margin: 15vh 0 0 auto;
  position: relative;
  transform-origin: right bottom;
  letter-spacing: 0;
}
.block_column .area_single .single_rightComment::before {
  content: "";
  border-bottom: 24px solid transparent;
  border-right: 24px solid #fff;
  position: absolute;
  top: calc(100% - 1px);
  right: 25%;
  z-index: 5;
}
.block_column .area_single .single_rightComment::after {
  content: "";
  border-bottom: 28px solid transparent;
  border-right: 28px solid #3975BB;
  position: absolute;
  top: 100%;
  right: calc(25% - 2px);
}
.block_column .area_single .single_image {
  margin: 5.5em auto 0;
  transform-origin: center bottom;
}
.block_column .area_single .single_image img {
  pointer-events: none;
  vertical-align: top;
  display: block;
}
/**/
.block_column .area_single .js--comment, .block_column .area_single .js--illust, .block_column .area_single .js--scroll {
  opacity: 0;
  transform: translateY(3em) scale(0);
  transition: .6s;
  transition-timing-function: cubic-bezier(0, 1.35, .6, 1.05)
}
.block_column .area_single .js--comment.scroll--start, .block_column .area_single .js--illust.scroll--start, .block_column .area_single .js--scroll.scroll--start {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.block_column .parts_illust {
  position: sticky;
  left: 0;
  bottom: -1em;
  width: min(85%, 1000px);
  margin: auto;
  padding: 2em 0 0;
  transform: translateY(50vh);
  transition: all .7s ease 1.5s;
  pointer-events: none;
}
body.page--open .block_column .parts_illust {
  transform: translateY(0);
}
.block_column .parts_illust .illustWrap {
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.block_column .parts_illust .illustLeft {
  width: 30%;
}
.block_column .parts_illust .illustRight {
  width: 30%;
}
.block_column .parts_illust .illustWrap img {
  vertical-align: top;
}
/**/
.parts_singlePager {
  position: relative;
  z-index: 10;
  background: #0B93CD;
  padding: 3.5em 0;
}
.parts_singlePager .list_columnSummary {
  justify-content: center;
  gap: 2.5em 10%;
}
.parts_singlePager .list_columnSummary > li {
  width: 31.864%;
}
.parts_singlePager .list_columnSummary > li .column_name {
  color: #fff;
  font-size: 100%;
  min-height: 3em;
}
.parts_singlePager .list_columnSummary .link_navText {
  text-align: center;
  color: #fff;
  font-size: 125%;
  font-weight: 700;
}
.parts_singlePager .link_more {
  margin: 2em auto 0;
  width: 90%;
}
.block_single {
  padding: 10em 0;
}
.block_single .inner {
  width: min(92%, 800px);
}
.block_single .titleWrap {
  margin: 0 0 3em;
}
.block_single .single_title {
  font-size: 200%;
  line-height: 1.5;
}
.block_single .area_link {
  margin: 6em 0 0;
}
.btn_back {
  width: 300px;
  margin: auto;
}
.btn_back a {
  display: block;
  color: #fff;
  background: #284B85;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  padding: 1.22em 0;
  border: solid 1px #284B85;
  transition: all .4s;
}
.btn_back a:hover {
  color: #284B85;
  background: #fff;
}