@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  letter-spacing: .03em;
  font-size: 1.6rem;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
}

img {
  display: block;
  max-width: 100%;
  margin: auto;
}

a {
  color: #000;
  text-decoration: none;
  width: 23%;
}

a:hover {
  text-decoration: none;
}

/* intersection
====================================== */
*[data-intersection] {
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}

*[data-intersection][data-intersecting="true"] {
  opacity: 1;
  -webkit-transition: all .4s ease-out .2s;
  -o-transition: all .4s ease-out .2s;
  transition: all .4s ease-out .2s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

*.js-itrsec-right[data-intersection]{
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}

*.js-itrsec-right[data-intersection][data-intersecting="true"] {
  opacity: 1;
  -webkit-transition: all .4s ease-out .2s;
  -o-transition: all .4s ease-out .2s;
  transition: all .4s ease-out .2s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

*.js-itrsec-left[data-intersection]{
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

*.js-itrsec-left[data-intersection][data-intersecting="true"] {
  opacity: 1;
  -webkit-transition: all .4s ease-out .2s;
  -o-transition: all .4s ease-out .2s;
  transition: all .4s ease-out .2s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

*.js-itrsec-buttom[data-intersection]{
  opacity: 0;
  -webkit-transition: all .4s ease-out .5s;
  -o-transition: all .4s ease-out .5s;
  transition: all .4s ease-out .5s;
  -webkit-transform: translatey(20px);
  -ms-transform: translatey(20px);
  transform: translatey(20px);
}

*.js-itrsec-buttom[data-intersection][data-intersecting="true"] {
  opacity: 1;
  -webkit-transition: all .4s ease-out .5s;
  -o-transition: all .4s ease-out .5s;
  transition: all .4s ease-out .5s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/* Pace
====================================== */

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.pace .pace-progress {
  background: #0074B8;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}
.pace.pace-inactive {
  opacity: 0;
  height: auto;
}

/* utility
====================================== */
.u-tablet-block {
  display: none !important;
}

.u-mobile-block {
  display: none !important;
}

.u-top-space{
  padding: 4em 0 0;
}

.u-bg-gray {
  background: #EFF0F2;
}

.u-bg-navy {
  background: #082f66;
}

.u-clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

.u-tc{
  text-align: center;
}

/* main
====================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 3px 3px rgba(99, 99, 99, 0.2);
  box-shadow: 0 0 3px 3px rgba(99, 99, 99, 0.2);
}

.l-main {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  max-height: 100%;
}

.l-nav-sticky {
  background: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  box-shadow: 0 0 10px 0px rgb(99 99 99 / 40%);
}

.l-nav-sticky__list {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-nav-sticky__list li {
  display: block;
  margin: 1.7em;
}

.l-nav-sticky__list li a{
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.l-nav-sticky__list li a:hover img {
  opacity: .8;
}

.l-nav-sticky__list li a img{
  transition: all .3s ease;
  box-shadow: 0px 10px 30px 0px rgb(8 1 3 / 15%);
  border-radius: 50px;
}

.l-nav-sticky-btn {
  display: block;
  position: fixed;
  z-index: 2;
  right: 5%;
  color: #fff;
  background: #000000;
  text-decoration: none;
  padding: .8em 1em;
  border-radius: 5px 5px 0 0;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.l-nav-sticky-btn__arrow {
  padding-right: 1em;
  position: relative;
}

.l-nav-sticky-btn__arrow:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: .5em;
  height: .5em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

/* header
====================================== */
.l-header {
  height: 80px;
  background: #fff;
  position: relative;
  z-index: 99;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2em;
}

.l-header__logo {
  width: 32.5%;
  margin: 0 2.5%;
  max-width: 324px;
}

/* footer
====================================== */
.l-footer {
  padding: 3em 0;
  background: #333333;
  color: #fff;
  text-align: center;
  opacity: 1 !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.l-footer > p {
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-size: 1.2rem;
}


/* sec
====================================== */
.c-sec {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 6em 0 0;
  z-index: 1;
  overflow: hidden;
}
.c-sec.movie {
  padding: 6em 0;
}

.c-sec-inner {
  max-width: 1000px;
  margin: auto;
}


.c-sec-fig {
  padding: 2em 0;
}

.c-sec-car {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 6em 0;
}

.c-sec-car__fig {
  padding-bottom: 2.5em;
}

.c-sec-link__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.c-sec-link__btn li {
  width: 45%;
}

.c-sec-link__btn li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.c-sec-link__btn li a img{
  transition: all .3s ease;
  box-shadow: 0px 10px 30px 0px rgb(8 1 3 / 15%);
  border-radius: 50px;
}
.c-sec-link__btn li a:hover img{
  opacity: .8;
}
.last-btn li{
  margin-bottom: 2em;
}
.last-btn li:last-child {
  margin-bottom: 6em;
}
.c-anchor-wrap{
  margin-top: 2em;
}

.c-anchor{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.c-anchor li{
  margin-right: 0.625em;
}

.c-anchor li:last-child{
  margin-right: 0;
}

.c-anchor li a img{
  transition: all .3s ease;
}
.c-anchor li a:hover img{
  opacity: .8;
}

.c-sec-title{
  position: relative;
  display: inline-block;
  width: 100%;
  color: #0074B8;
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  border-bottom: solid 4px #0074B8;
  box-sizing: border-box;
  line-height: 1.3;
  padding-bottom: .5em;
}

.c-sec-title:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -11px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.c-sec-title:after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  margin-left: -17px;
  border: 18px solid transparent;
  border-top: 18px solid #0074B8;
  z-index: 1;
}

.c-sec-lead{
  padding: 3em 0 2em;
}

.c-sec-title.outset {
  border-bottom: none;
}

.c-sec-title.outset:after {
  display: none;
}

/* mainvisual
====================================== */
.p-mainvisual {
  width: 100%;
}

.p-mainvisual__fig {
  padding-bottom: 6em;
}

/* button
====================================== */

.l-button{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
}

.l-button a img{
  transition: all .3s ease;
}

.l-button a:hover img{
  opacity: .8;
}


/* whill
====================================== */

.p-whill-inner{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #F2F2F2;
  padding: 3em 1em 3em 3em;
  border-radius: .5em;
  align-items: center;
}
#model_R{
  padding: 4em 1em 3em 3em;
}
#model_S{
  padding: 4em 1em 3em 3em;
}
.p-whill-detail{
  line-height: 1.4;
  letter-spacing: .03em;
  width: 50%;
}
.p-whill-detail ._ja{
  font-feature-settings: "palt";
}
.p-whill-detail ._en{
  font-size: 2.8em;
  font-weight: bold;
}
.p-whill-detail ._sub{
  font-size: 1.4em;
  font-weight: bold;
}
.p-whill-detail ._caution{
  padding-top: .5em;
  font-size: 1.2em;
}
.p-whill-detail ._text{
  padding: 2em 0 0;
  line-height: 1.7;
}
@media screen and (max-width: 765px) {
  .p-whill-detail ._text{
    padding: 2em 0;
  }
}
.p-whill-detail._last {
  width: 100%;
}
._last .p-whill-specific {
  display: flex;
  flex-direction: row;
}

.p-whill-outset_txt {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
.p-whill-column_sc {
  text-align: center; 
  font-size: 4rem; 
  font-weight: bold; 
  color: #0075B8;
}
.p-whill-column_txt {
  text-align: center; 
  font-weight: bold; 
  font-size: 2.5rem; 
  margin-bottom: 1.5em;
}
.p-whill-service_txt {
  text-align: center; 
  font-size: 1.8rem; 
  margin-bottom: 1.5em;
}
.p-whill-large_contents {
  font-size: 4rem;
}
._right {
  text-align: center;
}
._right_3types{
  padding-top: 0.5em;
}
.p-whill-specific {
  margin-top: 1em;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.p-whill-specific li {
  width: 90%;
}
.p-whill-specific._3types li {
  width: 49%;
}
._mail {
  background: #0074B8; 
  display: flex; 
  flex-direction: row; 
  border-radius: 0.5em; 
  width: 100%;
  color: #fff;
}
.p-whill-anchor {
  display: flex; 
  justify-content: space-around; 
}
.p-whill-anchor a {
  position: relative;
  background: #F2F2F2;
  border-radius: 0.8em;
  padding: 2em 0 1em;
}

@media screen and (max-width: 768px) {
  .p-whill-anchor {
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .p-whill-anchor a{
    width: 49%;
  }
  .p-whill-anchor a:nth-of-type(-n+2) {
    margin-bottom: 0.3em;
  }
  .under{
    margin-top: .5em;
  }
}
.p-whill-anchor .ribbon{
  z-index: 99;
  top: 0.5em;
}
.ribbon {
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  padding: 0 17px;
  margin: 0 auto;
  height: 46px;
  line-height: 45px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: white;
  background: #0074B8;
  box-shadow: 0 2px 2px rgb(0 0 0 / 12%);
}
.ribbon:before {
  position: absolute;
  content: '';
  left: -7px;
  border: none;
  height: 54px;
  width: 7px;
  background: #0074B8;
  border-radius: 5px 0 0 5px;
}
.ribbon:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #9ECAF8;
  border-radius: 5px 0 0 5px;
}
.p-whill-inner .ribbon{
  font-size: 3rem;
  left: 0;
  top: 10px;
}
.p-whill-inner .ribbon:before {
  position: absolute;
  content: '';
  left: -7px;
  border: none;
  height: 54px;
  width: 7px;
  background: #0074B8;
  border-radius: 5px 0 0 5px;
}
.p-whill-inner .ribbon:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #9ECAF8;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 765px) {
  .ribbon{
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
  }
  .ribbon:before{
    height: 35px;
  }
  .p-whill-inner .ribbon{
    font-size: 2.5rem;
    height: 35px;
    line-height: 35px;
  }
  .p-whill-inner .ribbon:before{
    height: 45px;
  }
}
.p-whill-specific li:first-of-type {
  margin-bottom: 1em;
}
.p-whill-specific li img {
  margin: 0.5em 1em 0.5em 0.5em;
}
.p-whill-specific div {
  margin: auto 0;	
}
.p-whill-inner._shop {
  padding: 3em;
  margin-top: 2em;
}
.p-whill-inner._shop._3types{
  padding: 2em;
}
.p-whill-inner._shop._3types .p-whill-detail{
  line-height: 1.4;
  letter-spacing: .03em;
  width: 100%;
}
.p-whill-inner._shop._3types .p-whill-detail .p-whill-specific{
  margin-top: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: initial;
}
@media screen and (max-width: 765px) {
  .p-whill-inner._shop._3types .p-whill-detail .p-whill-specific{
    flex-direction: column;
  }
  .p-whill-specific._3types li{
    width: 100%;
  }
}
.p-whill-inner._shop._2types .p-whill-detail .p-whill-specific{
  margin-top: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: initial;
}
.p-whill-inner._shop:last-child {
  margin-bottom: 4em;
}
.item_label {
  margin-left: 6.5em;
}
.p-whill-inquiry {
  font-size: 3rem;
  line-height: 8rem;
}
.tel_number {
  font-size: 3rem;
}
._product img {
  max-width: 300px;
  margin-top: 2em;
} 
.p-whill-specific a {
  background: #0074B8;
  display: flex;
  flex-direction: row;
  border-radius: 0.5em;
  width: 100%;
  color: #fff;
}
.p-whill_btn img {
  transition: all .3s ease;
  margin-top: 2em;
}
.p-whill_btn:hover img {
  opacity: .8;
}
.p-whill-inner._shop._no-picture{
  padding: 3em;
}
.p-whill-inner._shop._no-picture .p-whill-detail{
  width: 100%;
}
.p-whill-inner._shop._no-picture .p-whill-specific{
  flex-direction: initial;
  justify-content: space-between;
}
.p-whill-inner._shop._no-picture .p-whill-specific li{
  width: 49%;
}
.p-whill-specific a{
  transition: all .3s ease;
}
.p-whill-specific a:hover {
  opacity: .8;
}
.p-whill-2types-inner,
.p-whill-3types-inner,
.p-whill-4types-inner{
  display: flex;
  justify-content: space-around;
}
.p-whill-2types-inner_item img,
.p-whill-3types-inner_item img{
  max-width:100%;
}
.p-whill-4types-inner_item img{
  max-width:94%;
}
.p-whill-2types-inner_item{
  width: 43%;
}
.p-whill-4types-inner_item .item_label,
.p-whill-3types-inner_item .item_label,
.p-whill-2types-inner_item .item_label{
  margin-left:0;
}
@media screen and (max-width: 765px) {
  #shops .c-sec-title {
    font-size: 2.5em;
  }  
  #model_S{
    padding: 5em 2.5em 2.5em;
  }
  #model_R{
    padding: 5em 2.5em 2.5em;
  }
  .p-whill-detail{
    width: 100%;
  }
  .p-whill-detail img{
    max-width: 70%;
  }
  ._product img{
    max-width: 60%;
  }
  .p-whill-2types-inner_item img{
    max-width: 100%;
  }
  .p-whill_btn {
    width: 90%;
  }
  .p-whill-outset_txt {
    font-size: 2.5rem;
    margin-top: 0.5em;
  }
  .c-sec-title.outset:after {
    display: none;
  }
  .p-whill-specific li {
    width: 100%;
  }
  .p-whill-specific li img {
    padding: 0;
    max-width: 100%;
  }
  ._mail img {
    max-width: 70px;
  }  
  .p-whill-large_contents,.tel_number {
    font-size: 4.5rem;
  }
  .tel_number {
    color: #fff!important;
    line-height: 1em;
  }
  .p-whill-detail._product {
    margin-top: 2em;
  }
  .p-whill-addr {
    font-size: 2.5rem;
  }
  .p-whill-inquiry {
    font-size: 3.5rem;
    /* line-height: 13rem; */
  }
  .p-whill-inner._shop._no-picture{
    padding: 2.5em;
  }
  .p-whill-inner._shop._no-picture .p-whill-specific {
    flex-direction: column;
  }
  .p-whill-inner._shop._no-picture .p-whill-specific li {
    width: 100%;
  }
  .p-whill-specific ._icon {
    max-width: 15%;
    margin-right: 1.5em;
  }
  .p-whill-specific a {
    padding: 0.5em;
  }
  .p-whill-3types-inner_item,.p-whill-4types-inner_item img{
    max-width: 100%;
  }
  .p-whill-3types-inner_item,.p-whill-4types-inner_item{
    width: 50%;
  }
}

@media screen and (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none!important;
    color: #fff!important;
    }
}

/* WHILL Model F
====================================== */
h2 {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  color: #0074B8;
}
._monologue {
  padding-top: 0.5em;
  font-size: 1.6em;
}
._subtext {
  font-size: 1.6rem;
}
.c-sec-lead.u-tc._subtext {
  padding: 0.5em 0 2em;
}
._smalltext {
  font-size: 1.3rem;
  padding-top: 0.5em;
}
._smalltext ._price {
  font-size: 2rem;
}
._ja._first {
  padding-top: 0.5em;
}
.p-whill-detail.type-F {
  margin-top: 4em;
}
.c-sec.movie._item {
  padding-bottom: 0;
}

.sp_only {
  display: none;
}
.p-item_intro {
  text-align: center;
  margin-bottom: 4em;
  color: #0074B8;
}
.intro_txt {
  font-weight: 900;
  font-size: 2.3rem;
  padding-bottom: 1em;
}
@media screen and (max-width: 765px) {
  .p-whill-detail.type-F {
      margin-top: 0;
  }
  .sp_only {
      display: block;
  }
}


/* movie
====================================== */
.youtube {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* service
====================================== */

.p-whill-service-inner{
width: 100%;
}

.p-whill-service {
  display: flex; 
  flex-wrap: wrap;
}
.p-whill-service img {
  position: relative;
  padding: 0 .1em;
  width: 15em;
}
@media screen and (max-width: 768px) {
  .p-whill-service {
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .p-whill-service img{
    width: 49%;
  }

/* caution
====================================== */
.caution{
  margin-bottom: 2em;
}
@media screen and (max-width: 580px) {
  .caution{
    margin-bottom: 4em;
  }
}

/* Media Query Setting
====================================== */

@media screen and (max-width: 1000px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 1024px) {
  .u-tablet-block {
    display: block !important;
  }
  .u-tablet-none {
    display: none !important;
  }
  .l-nav-sticky__list{
    padding: 0 2em;
  }
  .c-sec {
    padding: 4em 0 0;
  }
  .c-sec.movie {
    padding: 4em 0;
  }
  .p-page-nav + .c-sec{
    padding: 3em 0 3em;
  }
  .c-sec-other .c-sec-fig{
    padding: 2em 0 0;
  }
  .c-sec-inner {
    max-width: 100%;
    padding: 0 2em;
    box-sizing: border-box;
  }
  .p-page-nav{
    padding: 2.5em 2em 2.5em;
  }
  .c-anchor-wrap{
    margin-top: 0;
  }
  .l-button{
    bottom: 5px;
    right: -10px;
  }
  .l-button img{
    width: 80%;
  }

}

@media screen and (max-width: 580px) {
  html {
    font-size: 37.5%;
  }
  img{
    -webkit-backface-visibility: hidden;
  }
  .u-mobile-block {
    display: block !important;
  }
  .u-mobile-none {
    display: none !important;
  }
  .p-mainvisual__fig {
    padding-bottom: 2em;
  }
  .l-header {
    height: 60px;
  }
  .l-header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .l-header__logo {
    width: 60%;
    margin: auto 1.5em;
  }
  .l-header__copy {
    width: 100%;
    margin: auto;
  }
  .c-sec-car{
    margin: 4em 0;
  }
  .c-anchor li{
    margin: 2em 0 0;
    width: 48%;
  }
  .c-sec-link__btn li{
    width: 80%;
  }
  .last-btn li:last-child {
    margin-bottom: 4em;
  }
  .l-button{
    bottom: 10px;
    right: -40px;
  }
  .l-button img{
    width: 50%;
  }
}

.p-campaign__fig{
  padding: 0 2em;
}