@charset "utf-8";
html[lang="ja"] {
  margin: 0 !important;
}
#wpadminbar, .pc-only {
  display: none !important;
}
body {
  font-size: 3.733vw;
  position: relative;
}
body.nav--open {
  overflow: hidden;
}
body::before {
  content: '';
  width: 4.4%;
  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: 4.4%;
  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: 84%;
  margin: auto;
}
.inner--small {
  width: 84%;
  margin: auto;
}
main {
  position: relative;
  top: 0;
}
.pagetopWrap {
  position: absolute;
  right: 2em;
  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 5.6em;
  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: 107.143%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  padding: 0 0 4.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;
}
/* == parts ============================================== */
.title_base {
  position: relative;
  padding: 0 0 3em;
}
.title_base::before {
  content: '';
  width: 1.7143em;
  height: 1.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: 285.7142%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.title_base .jp {
  font-size: 92.86%;
  font-weight: 700;
  line-height: 1;
  margin: .8em 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 ============================================== */
header .h_inner {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
}
header .h_logo {
  width: 140px;
  height: 12px;
  position: absolute;
  left: 7%;
  top: 30px;
}
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 #navTrigger {
  position: absolute;
  z-index: 101;
  width: 48px;
  height: 40px;
  right: calc(1em + 3%);
  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(3% + 70px);
  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 .btn_hContact a {
  background-color: #0B93CD;
  border-color: #0B93CD;
}
/* == footer ============================================== */
footer {
  background: #284B85;
  padding: 4.2em 0 1.9em;
}
footer .f_inner {
  width: 75%;
  margin: 0 auto;
  position: relative;
}
footer .f_textBox .f_logo {
  width: 70%;
  height: 0;
  padding: 6% 0 0;
  margin: 0 0 2.4em;
  position: relative;
}
footer .f_textBox .f_logo a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  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_address {
  font-size: 92.856%;
  line-height: 1.85;
  color: #fff;
  margin: 0 0 1.8em;
  letter-spacing: 0;
}
.list_fNav {
  font-family: "Montserrat", sans-serif;
  font-size: 92.857%;
  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;
}
footer .copyright {
  text-align: right;
  color: #fff;
  font-size: 92.857%;
  margin: 3em 0 0;
}
/* == frontpage ==============================================*/
.block_fv {
  background: #d4d4d4;
  position: relative;
}
.block_fv .fvFlex {
  padding: 19.5% 0 19.4%;
  box-sizing: border-box;
  width: 84%;
  margin: auto;
}
.block_fv .fvFlex .fvSlide {
  margin: 0 auto 12% !important;
}
.block_fv .fvFlex .fvSlide img {
  vertical-align: top;
  pointer-events: none;
}
.block_fv .fvFlex .fv_textBox {
  box-sizing: border-box;
}
.block_fv .fv_title {
  width: 100%;
  height: 0;
  padding: 37% 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 2.6em;
}
.block_fv .fv_info {
  line-height: 1;
  margin: 0 0 1em;
}
.block_fv .fv_info .info_title {
  display: inline-block;
  width: 60%;
  margin: 0 0 1.5em;
}
.block_fv .fv_info .info_size {
  display: block;
  width: 63%;
}
.block_fv .fv_info .info_size img {
  vertical-align: top;
}
.block_fv .fv_lead {
  font-size: 107%;
  color: #284B85;
  line-height: 1.75;
  letter-spacing: .05em;
}
/*------------------------------*/
.block_news {
  padding: 5.4em 0 27.6em;
  background: #284B85;
}
.list_newsSummary {
  margin: 4.4em 0 0;
  border-top: solid 1px #fff;
}
.list_newsSummary > li {
  border-bottom: solid 1px #fff;
}
.list_newsSummary > li a {
  display: flex;
  color: #fff;
  padding: .88em 0;
}
.list_newsSummary > li a span.time {
  display: block;
  width: 30%;
  text-align: center;
  letter-spacing: .05em;
}
.list_newsSummary > li a span.title {
  width: 70%;
  box-sizing: border-box;
  padding: 0 0 0 2.5%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*------------------------------*/
.block_about {
  background: #0B93CD;
  position: relative;
  z-index: 5;
  padding: 0 0 5em;
}
.block_about .area_bigTowel {
  width: 88%;
  margin: 0 auto -22.8em;
  background-image: url(../img/about_bg_sp.webp);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 2.5em 0 3em;
  transform: translateY(-21em);
}
.block_about .area_bigTowel::before {
  content: '';
  width: 10.7em;
  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: 1.7em;
  top: -4.7em;
}
.block_about .area_bigTowel .about_naire {
  width: 80%;
  margin: 0 auto 1%;
}
.block_about .area_bigTowel .about_naire img {
  width: 40%;
}
.block_about .area_bigTowel .towel_title {
  width: 80%;
  margin: 0 auto 4%;
}
.block_about .area_bigTowel .towel_title img {
  vertical-align: top;
}
.block_about .area_bigTowel .towelFlex {
  width: 80%;
  margin: 0 auto;
}
.block_about .area_bigTowel .towel_img img {
  vertical-align: top;
}
.block_about .area_bigTowel .towel_lead {
  font-size: 114.29%;
  color: #0B93CD;
  margin: 0 0 1.5em;
}
.block_about .area_bigTowel .towel_lead p {
  line-height: 1.7;
  letter-spacing: .05em;
  font-feature-settings: normal;
}
.block_about .area_bigTowel .towel_lead p span {
  background-repeat: repeat-x;
  background-size: auto 6px;
  background-position: left bottom;
}
.block_about .area_bigTowel .towel_lead span.line01 {
  background-image: url(../img/line01.webp);
  display: inline-block;
  padding: .8em 0;
}
.block_about .area_bigTowel .towel_lead span.line02 {
  background-image: url(../img/line02.webp);
  display: inline-block;
  padding: .8em 0;
}
.block_about .area_bigTowel .towel_lead span.spLine01 {
  display: inline-block;
  background-image: url(../img/line03.webp);
  padding: .8em 0;
}
.block_about .area_bigTowel .towel_lead span.spLine02 {
  display: inline-block;
  padding: .8em 0;
  background-image: url(../img/line03.webp);
}
.block_about .area_desc {
  padding: 7em 0 0;
}
.block_about .area_desc .descFlex {
  margin: 3.4em 0 0;
}
.block_about .area_desc .desc_text {
  color: #fff;
  font-size: 107.143%;
  letter-spacing: .05em;
  line-height: 2.667;
  text-align: left;
}
.block_about .area_desc .desc_img {
  margin: 3em auto 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: 5.2em 0 0;
}
.block_feature .area_point {
  padding: 0 0 5.6em;
}
.block_feature .area_point .pointSet .pointFlex {
  width: 84%;
  margin: auto;
}
.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: 92.857%;
  font-weight: 700;
}
.block_feature .area_point .pointSet .point_num span.num {
  display: block;
  line-height: 1;
  font-size: 528.5714%;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .05em;
}
.block_feature .area_point .pointSet .point_title {
  font-size: 142.86%;
  font-weight: 700;
  line-height: 2;
  color: #3975BB;
  margin: .2em 0 1.2em;
}
.block_feature .area_point .pointSet .point_lead {
  font-size: 107.143%;
  color: #3975BB;
  text-align: left;
  margin: 0 0 4.3em;
}
.block_feature .area_point .pointSet.set01 {
  margin: 1.25em auto 0;
}
.block_feature .area_point .pointSet.set01 .point_num {
  margin: 4.5em 0 0;
}
.block_feature .area_point .pointExample {
  margin: 4.5em 0 0;
}
.block_feature .area_point .pointExample .example_title {
  text-align: center;
  margin: 0 0 .6em;
}
.block_feature .area_point .pointExample .example_title span {
  display: inline-block;
  position: relative;
  width: 78%;
  height: 0;
  padding: 6% 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 .swiper-slide {
  text-align: center;
  transform: translateX(calc(-16vw - 20px));
}
#js_exampleSlide .swiper-wrapper .swiper-slide img {
  vertical-align: top;
}
#js_exampleSlide .swiper-wrapper .swiper-slide figcaption {
  color: #3975BB;
  font-weight: 700;
  margin: .4em 0 0;
  font-size: 92.86%;
}
#js_exampleSlide .swiper-wrapper .swiper-slide figure + figure {
  margin: .5em 0 0;
}
.block_feature .area_point .pointSet.set02 {
  margin: 4.9em auto 0;
}
.block_feature .area_point .pointSet.set02 .imageBox img {
  display: block;
  vertical-align: top;
}
.block_feature .area_point .point_featureBox {
  width: 84%;
  margin: 6em 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: 107.14%;
  font-weight: 700;
  color: #3975BB;
  line-height: 2.6;
  margin: 0 0 1.7em;
}
.list_feature > li + li {
  margin: 1.8em 0 0;
}
.list_feature > li img {
  vertical-align: top;
}
.list_feature > li .feature_text {
  font-size: 107.14%;
  color: #3975BB;
  margin: 0 0 .8em;
}
.block_feature .area_original {
  background: #3975BB;
  padding: 5.4em 0 4.7em;
}
.block_feature .area_original .original_title {
  text-align: center;
}
.block_feature .area_original .original_title span {
  display: inline-block;
  position: relative;
  width: 80%;
  height: 0;
  padding: 11% 0 0;
  background: url(../img/original_title.webp) no-repeat;
  background-size: contain;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  margin: auto;
}
.block_feature .area_original .original_imageWrap {
  width: 90%;
  margin: 1em auto 0;
}
.block_feature .area_original .original_imageWrap img {
  vertical-align: top;
}
.block_feature .area_original .att_text {
  text-align: right;
  margin: 1em 2em 0 0;
  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: 5.3em 0 5.75em;
}
.block_product .productSpecification {
  background: #D8F3FF;
  margin: 4.5em auto 5.2em;
  padding: 1.4em 0 1em;
}
.dl_specification {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
}
.dl_specification + .dl_specification {
  margin: .75em auto 0;
}
.dl_specification dt {
  width: 26.5%;
  background: #fff;
  border-radius: .3em;
  border: solid 1px #3975BB;
  text-align: center;
  color: #3975BB;
  padding: .4em 0;
  box-sizing: border-box;
  font-size: 86%;
}
.dl_specification dd {
  width: 73.5%;
  font-size: 107.14%;
  box-sizing: border-box;
  color: #3975BB;
  line-height: 1.6;
  padding: 0 0 0 .7em;
}
.block_product .productSet {
  margin: auto;
  position: relative;
  padding: 58vw 0 0;
}
.block_product .productSet .product_title {
  text-align: center;
  padding: 0;
  border-top: solid 1px #3975BB;
  border-bottom: solid 1px #3975BB;
  font-size: 128.571%;
  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: 107.14%;
}
.block_product .tabWrap {
  display: none;
}
.block_product .tabWrap.active {
  display: block;
}
.block_product .productSet .productContents {
  margin: 1em auto 0;
}
.block_product .productSet .productContents .contentsLeft {
  margin: 0 auto 1em;
  width: 60%;
}
.block_product .productSet .productContents .contentsImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.block_product .productSet .productContents .contentsImg img {
  vertical-align: top;
}
.block_product .productSet .productContents .others_title {
  text-align: center;
  padding: 0;
  border-top: solid 1px #3975BB;
  border-bottom: solid 1px #3975BB;
  font-size: 107.14%;
  font-weight: 700;
  color: #3975BB;
  line-height: 1.9;
  margin: 0 0 .3em
}
.block_product .productSet .productContents .others_info {
  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: 86%;
  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: 107.14%;
  border: solid 1px #3975BB;
}
.block_product .productSet .att_textBox {
  color: #3975BB;
  font-size: 107.14%;
  line-height: 1.867;
  margin: 1em 0 0;
  text-align: left;
}
.block_product .productSet + .productSet {
  margin: 4.4em auto 0;
}
.list_productOthers {
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0 1.6em;
  gap: .4em 2%;
}
.list_productOthers > li {
  line-height: 1.286;
  width: 32%;
  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: .5em;
  margin: 1em auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3975BB;
  padding: .7em 0;
}
.block_product .productSet .siageWrap .siage_title {
  width: 35%;
  text-align: center;
  font-size: 128.5715%;
  line-height: 1.667;
}
.block_product .productSet .siageWrap .siage_text {
  width: 65%;
  box-sizing: border-box;
  border-left: solid 1px #3975BB;
}
.list_disc {
  font-size: 107.14%;
  line-height: 1.8667;
  list-style: disc;
  text-align: left;
}
.block_product .productSet .list_disc > li {
  margin: 0 0 0 16%;
}
/*------------------------------*/
.block_column {
  background: #FFFABE;
  overflow: hidden;
  position: relative;
  padding: 5.3em 0 5em;
}
.block_column.icon--none {
  padding: 0;
  overflow: visible;
}
.block_column.column--archive {
  padding: 7em 0 15em;
}
.block_column:not(.icon--none)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.8em;
  width: 100%;
  height: .6em;
  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 {
  width: 90%;
  margin: auto;
}
.block_column .column_logo img {
  vertical-align: top;
}
.block_column .column_title {
  text-align: center;
  font-size: 171.43%;
  font-weight: 500;
  color: #3975BB;
  line-height: 1.75;
  margin: 1.7em 0 1em;
  position: relative;
}
.block_column.icon--none .column_title {
  padding: 0;
}
.block_column .column_title strong {
  font-weight: 500;
}
.block_column .column_illust {
  position: relative;
  width: 70%;
  margin: 0 4% 8% auto;
}
.block_column .column_illust img {
  position: relative;
  z-index: 5;
  vertical-align: top;
}
.block_column .column_illust::before {
  content: '';
  width: 95%;
  height: 0;
  padding: 71% 0 0;
  background: url(../img/column_illust_text.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -35%;
  top: 4%;
}
.list_columnSummary {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 2.5em 4%;
  counter-reset: num;
}
.list_columnSummary > li {
  width: 48%;
  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;
}
.list_columnSummary > li a {
  display: block;
}
.list_columnSummary > li .column_thumbnail {
  overflow: hidden;
  position: relative;
  height: 0;
  padding: 100% 0 0;
  margin: 0 0 .3em;
}
.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;
}
.list_columnSummary > li .column_name {
  font-size: 107.14%;
  line-height: 1.5;
  color: #3975BB;
  margin: 0 0 .4em;
}
.list_columnSummary > li .column_cat {
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
}
.list_columnSummary > li .column_cat span {
  font-size: 86%;
  line-height: 1;
  display: inline-block;
  background: #fff;
  padding: .4em .6em .5em;
  border-radius: 1em;
  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;
}
.block_column .link_more {
  margin: 1.5em auto 0;
}
.block_column .link_more a {
  font-size: 128.57%;
}
.link_more.type--white a {
  color: #fff;
}
.link_more.type--white a::before, .link_more.type--white a::after {
  background: #fff;
}
/*------------------------------*/
.block_flow {
  padding: 5.3em 0 4.2em;
  background: #d4d4d4;
}
.list_flow {
  margin: 4.5em auto 0;
  text-align: center;
}
.list_flow > li {
  font-size: 107.14%;
  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 {
  margin: 3.3em auto 0;
  color: #3975BB;
  font-weight: 400;
  font-size: 107.14%;
  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: 4.9em 0 15.1em;
}
.block_contact .formWrap {
  width: 96%;
  margin: auto;
}
.block_contact .formWrap .contact_title {
  margin: 3.3em 0 1.3em;
  color: #3975BB;
  font-weight: 700;
  font-size: 107.14%;
  line-height: 2.4;
}
.block_contact .formWrap .contact_lead {
  font-size: 107.14%;
  color: #3975BB;
  line-height: 1.86667;
  margin: 0 0 3.3em;
}
.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 1em;
  background: #fff;
  border: none;
  border-radius: .3em;
  color: #111;
}
.list_form textarea {
  line-height: 1.5;
}
.list_form > li + li {
  margin: 2.5em 0 0;
}
.dl_form > dt {
  font-size: 107.14%;
  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: 1.5em 0 0;
}
.block_contact .formWrap .formConfirm {
  margin: 2.3em 0;
  position: relative;
}
.block_contact .formWrap .formConfirm label {
  display: block;
  color: #3975BB;
  font-size: 107.14%;
  padding: 0 0 0 2.6em;
  position: relative;
  cursor: pointer;
  line-height: 1.733;
}
.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;
  bottom: 0;
  margin: auto;
}
.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;
  bottom: 0;
  margin: auto;
  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 3.6em;
}
.block_contact .formWrap .formSubmit .btn_submit {
  display: block;
  margin: auto;
  box-sizing: border-box;
}
.formSubmit .btn_submit .submit {
  display: block;
  border: solid 1px #284B85;
  border-radius: 4px;
  width: 100%;
  background: #284B85;
  color: #fff;
  font-size: 4vw;
  font-weight: 700;
  padding: 1.2em 0;
  transition: all .2s;
  cursor: pointer;
  letter-spacing: .1em;
}
.formSubmit .btn_submit .submit:hover {
  color: #284B85;
  background: #fff;
}
.block_contact .formWrap .form_endText {
  color: #3975BB;
  font-size: 107.14%;
  line-height: 1.8;
}
/* == underpage ============================================== */
/* ==================================== 
page-name #column
====================================*/
#page_column.column_single .pagetopWrap {
  display: none;
}
.block_column .tabBox {
  background: #0B93CD;
  padding: .8em 0 2.5em;
  margin: 0 0 3em;
}
.block_column .tabBox .tab_title {
  text-align: center;
  color: #fff;
  font-size: 135%;
  font-weight: 700;
}
.list_tabFilter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5em;
  margin: .5em 0 0;
}
.list_tabFilter > li {
  background: #fff;
  border-radius: .5em;
  color: #3975BB;
  line-height: 1.8;
  padding: .1em 1em;
  cursor: pointer;
  transition: all .2s;
  font-size: 86%;
}
.list_tabFilter > li.active {
  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: 100vh;
}
.block_column .area_single .single_title {
  font-size: 175%;
  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 {
  margin: -6em auto 0;
}
.block_column .area_single .single_leftComment {
  border: solid 2px #3975BB;
  border-radius: 1em;
  background: #fff;
  width: 90%;
  box-sizing: border-box;
  font-weight: 700;
  color: #3975BB;
  padding: .8em 1.5em;
  line-height: 1.8;
  margin: 5.5em auto 0 0;
  position: relative;
  transform-origin: left bottom;
  letter-spacing: 0;
}
.block_column .area_single .single_leftComment::before {
  content: "";
  border-bottom: calc(2em - 4px) solid transparent;
  border-left: calc(2em - 4px) solid #fff;
  position: absolute;
  top: calc(100% - 1px);
  left: 25%;
  z-index: 5;
}
.block_column .area_single .single_leftComment::after {
  content: "";
  border-bottom: 2em solid transparent;
  border-left: 2em 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: 90%;
  box-sizing: border-box;
  font-weight: 700;
  color: #3975BB;
  padding: .8em 1.5em;
  line-height: 2;
  margin: 5.5em 0 0 auto;
  position: relative;
  transform-origin: right bottom;
  letter-spacing: 0;
}
.block_column .area_single .single_rightComment::before {
  content: "";
  border-bottom: calc(2em - 4px) solid transparent;
  border-right: calc(2em - 4px) solid #fff;
  position: absolute;
  top: calc(100% - 1px);
  right: 25%;
  z-index: 5;
}
.block_column .area_single .single_rightComment::after {
  content: "";
  border-bottom: 2em solid transparent;
  border-right: 2em 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: 100%;
  margin: auto;
  padding: 2em 0 0;
  transform: translateY(50vh);
  transition: all .7s ease 1.5s;
  pointer-events: none;
  z-index: 105;
}
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: 45%;
  margin: 0 0 0 2%;
}
.block_column .parts_illust .illustRight {
  width: 45%;
}
.block_column .parts_illust .illustWrap img {
  vertical-align: top;
}
/**/
.parts_singlePager {
  position: relative;
  z-index: 10000;
  background: #0B93CD;
  padding: 2.5em 0;
}
.parts_singlePager .list_columnSummary {
  justify-content: space-between;
  gap: 0 10%;
}
.parts_singlePager .list_columnSummary > li {
  width: 45%;
}
.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: 114.3%;
  font-weight: 700;
}
.parts_singlePager .link_more {
  margin: 2em auto 0;
}
.block_single {
  padding: 7em 0;
}
.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;
}