@charset "UTF-8";
main {
  position: relative;
}
.serif {
  font-family: 'M PLUS Rounded 1c', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W6', "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
  .pcOnly {
    display: none;
  }
@media (min-width: 768px) {
  main { /*padding-left: 100px;*/
  }
  .spOnly {
    display: none;
  }
  .pcOnly {
    display: block;
  }
}
@media (min-width: 320px) {

  .hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eeeeee;
  }
  .hero .logo img {
    width: 120px;
  }
  .hero .logo svg {
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .hero .logo img {
    width: 170px;
  }
}
@media (min-width: 320px) {
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    background-color: rgb(1, 1, 1, 0.1);
    color: #fff;
    z-index: 255;
  }
  .sidebar:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.4) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000'', endColorstr='#00000000, GradientType=0)
  }
  .loaded .sidebar:after {
    animation: sidegrad 2s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: 4s;
    position: fixed;
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    background: linear-gradient(0, rgb(220, 110, 160, 0.15), rgb(20, 110, 170, 0.3));
  }
  .sidebar nav {
    position: absolute;
    top: 55%;
    left: -40%;
    z-index: 260;
  }
  .sidebar nav ul {
    text-align: center;
    width: 100px;
    z-index: 200;
  }
  .sidebar nav li {
    position: relative;
    transition: color .3s linear 0s;
    cursor: pointer;
    height: 95px;
    width: 100%;
  }
  .sidebar nav li a {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid rgb(255, 255, 255, 0.3);
    background: -moz-linear-gradient(top, transparent 0%, transparent 5%, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 5%, rgba(255, 255, 255, 0.1) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    transition: 1s;
  }
  .sidebar nav li:nth-child(1) a {
    border-top: 1px solid rgb(255, 255, 255, 0.3);
  }
  .sidebar nav li a:hover {
    background: rgba(30, 60, 100, 0.2);
  }
}
@keyframes sidegrad {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .sidebar {
    width: 100px;
  }
  .sidebar nav {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
@media (min-width: 320px) {
  .section-inner {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 25px;
  }
  .section-inner.min {
    max-width: 1080px;
  }
  .section-title {
    text-align: center;
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
  }
  .section-title h2 {
    font-size: 30px;
    letter-spacing: 1px;
    color: #333;
    font-weight: bold;
  }
  .section-title h3 {
    font-size: 16px;
    letter-spacing: 1px;
    margin: 10px 0 50px;
    font-weight: 700;
  }
  .section-title p {
    font-size: 12px;
    margin-top: 10px;
  }
  .section-title.color-wh {
    color: #fff;
  }
  .section-title.color-wh h2 {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .section-line {
    padding: 80px 0;
  }
  .section-line::before, .section-line::after {
    height: 40px;
  }
  .section-inner {
    padding: 0 0 0 100px;
    max-width: 1500px;
  }
  .section-title h2 {
    font-size: 33px;
    font-weight: bold;
  }
  .section-title h3 {
    font-size: 18px;
    margin-top: 30px;
  }
  .section-title p {
    font-size: 13px;
  }
}
@media (min-width: 960px) {
  .section-title p {
    font-size: 14px;
  }
}
@media (max-height: 620px) {
  .sidebar nav li {
    height: calc(90vh / 6);
  }
}

/*button*/

    .box-link span { position: relative; display: inline-block; font-size: 13px; line-height: 21px; font-weight: 700; letter-spacing: 1px; padding:15px 25px; color:#333; border-radius: 40px; -webkit-transition: all .4s cubic-bezier(.19,1,.22,1); -moz-transition: all .4s cubic-bezier(.19,1,.22,1); transition: all .4s cubic-bezier(.19,1,.22,1); width:250px; border: 1px solid #333; background:#fff;}
	.box-link span .arrow { position: absolute; left: 5px; top:5px; opacity: 0; width: 40px; height: 40px; background-color: #fff; border-radius: 50%; -webkit-transform: scale3d(0,0,0); -moz-transform: scale3d(0,0,0); transform: scale3d(0,0,0); -webkit-transition: all .4s cubic-bezier(.19,1,.22,1); -moz-transition: all .4s cubic-bezier(.19,1,.22,1); transition: all .4s cubic-bezier(.19,1,.22,1); border: 1px solid #333;}
	.box-link span .arrow svg { position: absolute; left:50%; top:50%; width: 10px; height: 10px; margin: -5px 0 0 -5px; fill:#333; }
@media (min-width: 768px){
	.box-link span:hover { background: linear-gradient(90deg, rgb(170, 150, 155, 0.2), rgb(150, 180, 185, 0.2)); padding-left: 50px; }
	.box-link span:hover .arrow { opacity: 1; -webkit-transform: none; -moz-transform: none; transform: none; }
}



/*hero*/
@media (min-width: 320px) {
  section {
    display: block;
    width: 100%;
    position: relative;
    background: #fff;
  }
  .section-line {
    padding-bottom: 100px;
  }
  .waku {
    width: 100%;
    height: 100dvh;
    z-index: 200;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }
  .hero_img {
    left: 54%;
    position: absolute;
    bottom: 10dvh;
    width: auto;
    height: 50%;
  }
  .scroll_link {
display: block;
    position: relative;
    z-index: 200;
  }
  .scroll_wrap {
position: absolute;
        right: 0;
        bottom: 14px;
        transition: all 0.8s ease;
        width: 25px;
        height:300px;
        background:rgba(255, 255, 255, 0.30);
        border-radius: 20px;
  }
  .scroll_wrap .scroll {
    display: block; transform: rotate(90deg) translate(0, 0);margin-top: 52px;
  }
  .scroll_wrap .scroll span {
font-size: 12px;
        color: #111;
        letter-spacing: 0.16em;
        white-space: nowrap;
        position: relative;
        top: -2px;
        right: 0;
  }
  .scroll_wrap .scroll:before {
    content: "";
    width: 13px;
    height: 8px;
    position: absolute;
    left: 194px;
    top: 14px;
    transform: translate(0, -50%) rotate(-90deg);
    background: url(../img/scroll-arrow.svg) no-repeat center;
    background-size: contain;
  }
  .scroll_wrap .scroll:after {
    content: "";
    background: #111;
    width: 138px;
    height: 1px;
    position: absolute;
    top: 14px;
    left: 4rem;
  }
}

/* concept why */
@media (min-width: 320px) {
  .why {
    overflow: visible;
    margin-top: -24dvh;
    padding-top: 23dvh;
    height: auto;
    background: #bdbdbd;
  }
  .why::before {
    content: "";
    background-image: url(../img/why-bg.jpg);  
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
   /* filter: blur(1px);*/
  }
      .why::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
        height: 20%;
        background: -moz-linear-gradient(bottom, transparent 0%, transparent 0%,rgba(255,255, 255, 0.3)100%);
        background: -webkit-linear-gradient(bottom, transparent 0%, transparent 0%, rgba(255,255, 255, 0.3)100%);
        background:linear-gradient(to top, transparent 0%, transparent 0%, rgba(255,255, 255, 0.3) 100%);
        z-index:1;
  }
  .why .circle-bg:before {
    content: "";
    background: radial-gradient(circle, rgb(1, 1, 1, 0.1) 0% 8%, transparent 46%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
/*  .why .section-line::before, .section-line::after {
    background-color: rgb(255, 255, 255, 0.8);
  }*/
  .why .text {
    line-height: 2;
    background: rgb(1, 1, 1, 0.05);
    padding: 60px 25px 80px;
    border-radius: 20px;
    border: 1px solid rgb(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
  }
  .why .text p, .why .text li {
    color: #fff;
  }
  .why .text .pt {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
  .concept-sec {
    position: relative;
    width: 100%;
  }
  .concept-sec .text {
    width: 100%;
    display: block;
  }
  .concept-sec .text p {
    font-size: 12px;
    line-height: 1.9;
    margin: 10px 0;
  }
  .concept-sec .img {
    width: 100%;
    display: block;
    margin: 20px 0;
  }
  .concept-sec .img img {
    width: 100%;
    display: block;
  }
  .data-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 22px;
    width: 90%;
  }
  .data-icon li {
    display: inline-block;
    background:rgb(70, 110, 150, 0.7);
    border-radius: 5px;
    padding: 0 4px;
    font-size: 0.8em;
    flex: 4;
    margin: 0 5px;
    text-align: center;
    font-weight: 700;
  }
  .data-icon li:first-child {
    background: rgb(85, 60, 95, 0.7);
  }
  .data-icon li:nth-child(2) {
    background: rgb(110, 90, 140, 0.7);
  }
  .data-icon li:nth-child(3) {
    background: rgb(65, 80, 130, 0.7);
  }
  .why .sekkai {
    position: relative;
    z-index: 1;
    height: 300px;
  }
  .why .sekkai img {
    width: 75%;
    height: auto;
    position: absolute;
    top: -40px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

@media (min-width: 530px) {

  .why .sekkai img {
    width: 55%;
    height: auto;
  }
}
@media (min-width: 768px) {
  .why .text {
    width: 70%;
    margin: 0 auto;
    padding: 120px 80px;
      max-width: 700px;
  }
  .why .text p {
    text-align: left;
  }
  .why .text .pt {
    font-size: 16px;
  }
  .concept-sec {
    margin: 50px 0;
  }
  .concept-sec .text {
    float: left;
    width: 50%;
    padding-right: 20px;
  }
  .concept-sec .img {
    float: right;
    width: 50%;
    margin: 0;
  }
  .concept-sec.turn .text {
    float: right;
    width: 40%;
    padding: 0 0 0 20px;
  }
  .concept-sec.turn .img {
    float: left;
    width: 50%;
  }
  .concept-sec .text p {
    font-size: 14px;
    margin: 20px 0;
    letter-spacing: 1px;
  }
  .data-icon {
    margin: 0 auto 40px;
    width: 80%;
  }
  .why .sekkai img {
    width: 45%;
  }
}
@media (min-width: 960px) {
  .why::before { background-image: url(../img/why-bg_pc.jpg);  }
  .why .section-title .text p {
    padding: 60px 15% 60px 195px;
  }
  .concept-sec {
    margin: 70px 0;
  }
  .concept-sec .text {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 400px;
  }
  .concept-sec.turn .text {
    left: auto;
    right: 0;
    width: 400px;
  }
  .why .sekkai img {
    width: 400px;
  }
}
/*what*/

  @media (min-width: 320px) {
  .what {
    background: #fefefe;
    position: relative;
    padding-bottom: 200px;
  }
  .what::after {
    content: "";
    display: block;
    background: #e1e6ea;
    width: 100%;
    height: 35%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
    .what .cont_area {
      width: 100%;
      margin: 0 auto;
    }
    .what .cont_area .text, .what .cont_area .img_area {
      width: 100%;
    }
    .what .cont_area .text {
      position: relative;
      z-index: 1;
      width: 90%;
      margin: 0 auto 20px;
    }
    .what .img_area {
      margin: 0 auto;
      text-align: center;
    }
    .what .img_area img {
      height: auto;
      width: 100%;
      max-width: 500px;
    }
    .what .img_area::before {
      content: "";
      display: block;
      background: #fff;
      width: 250px;
      height: 250px;
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      z-index: -1;
      border: 110px solid #fff;
    }
    .what .img_area::after {
      content: "";
      display: block;
      width: 250px;
      height: 250px;
      position: absolute;
      top: 48%;
      left: 50%;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      z-index: -1;
      border: 40px solid rgb(215, 220, 225, 0.6);
      background: #fff;
    }
      .what .pt strong{color:#68a;}
  }
  @media (min-width: 768px) {
    .what .cont_area {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
      width: 90%;
    }
    .what .cont_area .text {
      width: 65%;
      margin-bottom: 20px;
    }
    .what .cont_area .img_area {
      width: 70%;
      margin: 0;
    }
    .what .img_area::before {
      border: 150px solid #fff;
    }
  }


/*how*/
@media (min-width: 320px){
    .how { background: #f9f9f9; position: relative;}
    .how::before {
    content: "";
    width: 50%;
    height: 100%;
    display: block;
    background: #eee;
    position: absolute;
    top: 0;
    right: 0;}
    .how .table-cell{display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 100px;}
    .how .circle {--r: 200;}
    .how .circle { display: flex; align-items: center; justify-content: center; width: calc(var(--r) * 2px); height: calc(var(--r) * 2px); }
    .how .circle > div {
        --a2: calc(var(--a) * 1deg - 90deg);
        --x: calc(cos(var(--a2)) * var(--r) * 1px);
        --y: calc(sin(var(--a2)) * var(--r) * 1px);
         position: absolute;
         color: #555;
        text-align: center;
        translate: var(--x) var(--y);
        }
    
    .how .circle::before {
    background: url("../img/bottle_7.png") no-repeat center top;
    content: "";
    display: flex;
    position: absolute;
    width: calc(var(--r)* 2px);
    height: calc(var(--r)* 2px);
    background-size: contain;
    margin-left: 15px;
    margin-bottom: 32px;
    }
  .pct-wrap a { display: block; }
  .pct-wrap a:hover { display: block; }
  .pct-wrap .pct-icon{width:50px; transition: transform .6s ease; cursor: pointer;}
  .pct-wrap a:hover .pct-icon{transform: scale(1.2);}
  .pct-wrap p{white-space: nowrap;line-height: 1.3; font-weight: 700; font-size: 9px;}
   .how .text {line-height: 2; background: rgb(1, 1, 1, 0.03); padding: 60px 25px 80px 15px; border-radius: 20px; border: 1px solid rgb(255, 255, 255, 0.5); backdrop-filter: blur(3px);box-shadow: 1px 1px 1px rgb(1, 1, 1, 0.3), inset 1px 1px 1px rgb(1, 1, 1, 0.1);}
   .list-wrap li {display: flex; flex-wrap: wrap; margin-bottom: 20px; align-items: center; padding: 10px 0 40px; border-bottom: 1px dotted #ccc;}
   .list-wrap li .icon-wrap{width:70px; padding-top: 3rem;}
   .list-wrap li .test-wrap{width:calc(100% - 70px);} 
   .list-wrap li .icon-wrap .pct-icon{ width:80%; background: #fff; border-radius: 50%; border: 8px solid #fff;}
   .test-wrap dt{font-size:10px; display: inline-block; background: rgb(0, 0, 0, 0.5); border-radius: 5px; padding: 1px 10px; color:#fff; font-weight: 700; margin-bottom: 7px;}
   .test-wrap dd{font-size:10px;}
}
@media (min-width: 768px){
    .how::before {right: calc( 0px - 50px)}
    .how .text {width:70%; margin:0 auto; padding:60px 5%; max-width: 800px;}
    .how .text p{  text-align: left;  }
    .list-wrap li .icon-wrap{width:80px;}
   .list-wrap li .test-wrap{width:calc(100% - 80px);} 
   .test-wrap dt{font-size:12px; margin-bottom: 10px;}
   .test-wrap dd{font-size:12px;}
      }
@media (max-width: 530px){
    .how .circle {--r: 150;}
    .pct-wrap .pct-icon{width:45px;}
}





  /*when*/
  @media (min-width: 320px) {
    .when {
      background: #fff;
      position: relative;
    }
    .when .pd-sec {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .when .pd-sec .menu_area_box {
      width: 100%;
      aspect-ratio: 3 / 4;
      border: 1px solid #eee;
      margin: 0 0 20px 0;
      position: relative;
      overflow: hidden;
      float: none;
      padding: 17px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
      background: #fff;
      border-radius: 30px;
      max-width: 400px;
    }
    .when .pd-sec .menu_area_box:before {
      content: "";
      display: block;
      width: 93%;
      aspect-ratio: 3 / 4;
      z-index: 5;
      position: absolute;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      border: 1px solid rgb(255, 255, 255, 0.7);
      background: linear-gradient(180deg, rgb(1, 1, 10, 0.3), rgb(150, 180, 185, 0.4));
      border-radius: 20px;
    }
    .when .pd-sec .menu_area_box-img {
      position: absolute;
      top: 0;
      left: 0;
    }
    .when .pd-sec img {
      height: auto;
      width: 100%;
      opacity: 0.8;
    }
    .when .pd-sec .menu_area_box-ttl {
      position: absolute;
      color: #fff;
      letter-spacing: 1px;
      z-index: 10;
      top: 25%;
      font-size: 14px;
    }
    .when .pd-sec .menu_area_box-ttl span {
      font-size: 0.8em;
      font-weight: 300;
    }
    .when .pd-sec .menu_area_box-pdf {
      position: absolute;
      bottom: 20%;
      z-index: 10;
    }
    .when .pd-sec .menu_area_box-pdf a {
      background: none;
      font-weight: 600;
      font-size: 11px;
      border-top: 0;
      padding: 10px 5px 5px;
      letter-spacing: 1px;
    }
    .when .pd-sec .menu_area_box-pdf .box-link span{ width:200px; background: inherit; border: 2px solid #fff; color:#fff;}
    .when .pd-sec .menu_area_box-pdf .box-link span .arrow {  background-color: inherit; border: 1px solid #fff;}
    .when .pd-sec .menu_area_box-pdf .box-link span .arrow svg { fill:#fff; }
    .when .pd-sec .menu_area_box-pdf .brand-link img {
      width: 10px;
      margin-left: 5px;
    }
    .swiper-slide.swiper-slide-active img {
      border: 1px solid #111;
    }
    .info_area_box-p .googlelink {
      background: rgb(40, 10, 0, 0.9);
      text-align: center;
      margin: 0 auto;
      display: block;
      width: 70%;
    }
    .info_area_box-p .googlelink:hover {
      color: rgb(40, 10, 0, 1);
    }
  }
  @media (min-width: 768px) {
    .when .pd-sec .menu_area_box {
      width: calc((100% - 40px) / 2);
      margin: 0 20px 20px 0;
      padding: 20px;
    }
    .when .pd-sec {
      margin: 20px 50px 80px;
    }
    .when .pd-sec .menu_area_box:nth-child(2) {
      margin-right: 0 !important;
    }
    .when .pd-sec .menu_area_box-ttl {
      font-size: 15px;
    }
    .when .pd-sec img {
      height: auto;
      width: 100%;
    }
	.when .pd-sec .menu_area_box-pdf .box-link span:hover { background: linear-gradient(90deg, rgb(150, 180, 185, 0.4), rgb(150, 180, 185, 0.2)); }
  }
  /* faq */
  #faq {
    background: rgb(228, 230, 233, 1);
  }
  .accor {
    padding: 20px 0 100px;
  }
  .accor h1 {
    padding: 25px;
  }
  .accor .lead {
    text-align: center;
    color: #111;
    margin-bottom: 45px;
    padding: 0 15px;
  }
  .accor h2 {
    color: rgb(30, 10, 0, 1);
  }
  .accor .chu {
    color: #111;
    font-size: 12px;
    display: inline-block;
    line-height: 2.0;
  }
  .accor .lead.chu {
    width: 100%;
    margin: 0 auto 40px;
  }
  .accor .lead.chu p {
    color: #999;
    font-size: 10px;
  }
  .accor .qa-list {
    width: 600px;
    margin: 0 auto 50px;
  }
  .accor .qa-list dl.qa {
    position: relative;
    margin: 0;
    padding: 28px 120px 20px 120px;
    cursor: pointer;
    border-bottom: 1px dotted rgb(1, 1, 1, 0.3);
    color: #333;
  }
  .faq .qa-list dl.qa {
    border-bottom: none;
  }
  .accor .qa-list dl.qa::before {
    position: absolute;
    top: 21px;
    right: 70px;
    display: block;
    width: 27px;
    height: 27px;
    margin: auto;
    content: '';
    background-size: 25px 25px;
    background-image: url(../img/icon-plus.svg);
    background-repeat: no-repeat;
  }
  .accor .qa-list .open.qa::before {
    background-image: url(../img/icon-minus.svg);
  }
  .accor .qa-list dl.qa dt {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .accor .qa-list dl.qa dt.l-ttl {
    padding: 20px 120px 20px 80px;
  }
  .accor .qa-list dl dt span {
    display: inline-block;
  }
  .accor .qa-list dl dt span .fs07 {
    font-size: 0.7em;
  }
  .accor .qa-list dl.qa dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: '';
    font-weight: bold;
  }
  .accor .qa-list dl.qa dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px auto 40px;
    padding: 0;
    width: 80%;
    line-height: 3;
  }
  .accor .qa-list dl.qa dd ul {
    text-align: left;
    width: 100%;
    margin: 0 auto;
  }
  .accor .qa-list dl.qa dd ul li {
    border-bottom: 1px dotted rgb(1, 1, 1, 0.2);
    padding: 18px 0 18px 15px;
    list-style: inside;
    line-height: 2;
    font-size: 13px;
  }
  .accor .qa-list dl.qa dd ul li span {
    color: rgb(1, 1, 1, 0.5);
    margin: 5px 0 0 18px;
    font-size: 0.8em;
  }
  .accor .qa-list dl.qa dd .nb {
    margin-bottom: 20px;
    margin-left: 18px;
  }
  .accor .qa-list dl.qa dd .nb li {
    border-bottom: none;
    line-height: 2;
    font-size: 0.9em;
    color: #ccc;
    padding: 5px 0 5px 25px;
    list-style: none;
  }
  .accor .qa-list dl.wide {
    padding: 0;
  }
  .accor .qa-list dl.wide dd:first-of-type {
    width: 100%;
  }
  .accor .qa-list dl.qa dd.ans {
    margin: 0;
    padding: 20px 60px 30px 120px;
    font-size: 14px;
  }
  .accor .qa-list dl.qa dd.ans a {
    color: #68a;
    display: inline-block;
    border-bottom: 1px dotted #68a;
    position: relative;
  }
  .accor .qa-list dl.qa dd.ans a svg {
    fill: #68a;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 15px;
    right: -27px;
  }
  .accor .ala-list, .accor .qa-list dl.wide .ala-list {
    margin: 30px auto 90px;
  }
  .accor .ala-list dl, .accor .qa-list dl.wide .ala-list dl {
    position: relative;
    margin: 0;
    padding: 0 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #111;
    font-size: 12px;
    line-height: 1.7;
  }
  .accor .ala-list dt, .accor .qa-list dl.wide .ala-list dt {
    width: calc(100% - 60px);
    padding: 15px 0 15px 0;
    border-bottom: 1px dotted rgb(1, 1, 1, 0.2);
    position: relative;
    font-size: 12px;
  }
  .qa-list dl.wide .ala-list dt {
    display: block;
  }
  .accor .ala-list dt span, .accor .qa-list dl.wide .ala-list dt span {
    color: #111;
    font-size: 9px;
  }
  .accor .ala-list .vegan:before, .accor .qa-list dl.wide .ala-list .vegan:before {
    position: absolute;
    content: "";
    top: 13px;
    left: -5px;
    background: url(../img/icon-vegan.svg);
    width: 10px;
    height: 10px;
  }
  .accor .ala-list dd, .accor .qa-list dl.wide .ala-list dd {
    width: 60px;
    text-align: right;
    padding: 15px 0;
    border-bottom: 1px dotted rgb(1, 1, 1, 0.2);
    margin: 0;
    line-height: 1.7;
  }
  .accor .ala-list .ttl, .accor .qa-list dl.wide .ala-list .ttl {
    border: none;
    display: inline;
    position: relative;
    left: -6px;
    padding: 15px 0 0 0;
  }
  .accor .ala-list .ttl span, .accor .qa-list dl.wide .ala-list .ttl span {
    display: inline;
    border: #aaa solid 1px;
    padding: 5px;
    letter-spacing: 1px;
    font-size: 11px;
    background: #f2f2f2;
  }
  .accor .chu svg {
    fill: #111;
    width: 10px;
    height: auto;
    margin-right: 5px;
  }
  .accor .ala-list .ta-center {
    margin: 10px auto;
  }
  .accor .reservation {
    text-align: center;
    width: 800px;
    margin: 0 auto 0;
  }
  .accor .reservation a {
    width: 80%;
    display: inline-block;
    border: 1px solid #111;
    padding: 15px 13px;
    margin: 30px 15px;
    color: #111;
    font-size: 13px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight: 500;
    position: relative;
    letter-spacing: 1px;
  }
  .accor .reservation a:before, .news_wrap a.arrow div:before, .information .party_box .pdf_btn a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 40, 40, 0.1);
    opacity: .5;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition: -webkit-transform 300ms cubic-bezier(.666, 0, .333, 1);
    -ms-transition: -ms-transform 300ms cubic-bezier(.666, 0, .333, 1);
    transition: transform 300ms cubic-bezier(.666, 0, .333, 1);
  }
  .accor .reservation a:hover:before, .news_wrap a.arrow div:hover:before, .information .party_box .pdf_btn a:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .accor .reservation a svg {
    height: 10px;
    width: auto;
    position: absolute;
    top: 8px;
    right: 8px;
    fill: #111;
  }
  .accor .reservation a.arrow svg {
    position: absolute;
    right: 12px;
    top: 14px;
    width: 23px;
    height: 24px;
  }
  .accor .reservation.to1 a {
    position: relative;
  }
  .accor .reservation.to1 a svg {
    position: relative;
    height: 16px;
    width: auto;
    margin: 0;
    top: 3px;
    left: -13px;
  }
  @media screen and (max-width: 767px) {
    .accor .qa-list {
      padding: 0 15px;
      width: 100%;
      margin: 0 auto 70px;
    }
    .accor .qa-list dl, .accor .qa-list dl.wide {
      position: relative;
      padding: 27px 15px 15px 10px;
    }
    .accor .qa-list dl::before, .accor .qa-list dl.wide::before, .accor .qa-list dl.qa::before {
      top: 50%;
      right: 10px;
      width: 25px;
      height: 25px;
      background-size: 23px 23px;
    }
    .accor .qa-list dl dt, .accor .qa-list dl.wide dt, .accor .qa-list dl.qa dt {
      padding: 0 30px 0 0;
      font-size: 14px;
    }
    .accor .qa-list dl.qa {
      padding: 27px 15px 15px 10px;
    }
    .accor .qa-list dl.qa dt.l-ttl {
      padding: 20px 45px 18px 10px;
    }
    .accor .qa-list dl dd::before, .accor .qa-list dl.wide dd::before {
      font-size: 14px;
      top: 5px;
      left: 5px;
    }
    .accor .qa-list dl.qa dd.ans {
      padding: 20px 10px 35px 10px;
      margin: 0;
      line-height: 2;
    }
    .accor .qa-list dl dd, .accor .qa-list dl.wide dd, .accor .qa-list dl.qa dd {
      width: 100%;
      padding: 0;
      font-size: 12px;
    }
    .accor .qa-list dl dd ul li, .accor .qa-list dl.wide dd ul li {
      padding: 5px 0 5px 15px;
    }
    .accor .reservation a {
      margin: 15px;
    }
    .accor .reservation {
      width: 100%;
    }
    .accor .reservation.to1 a svg {
      height: auto;
      width: 16px;
      margin: 0;
      top: -1px;
      left: -13px;
    }
    .accor .qa-list dl.qa dd.ans a svg {
      top: 8px;
    }
  }
  @media (min-width: 768px) {
    .accor .backlineouter.long {
      width: 300px;
    }
    .accor .lead {
      width: 80%;
      margin: 0 auto 60px;
    }
    .accor .lead.chu {
      margin: 0 auto 40px;
    }
    .accor .lead.chu p {
      font-size: 16px;
    }
    .accor .ala-list {
      display: flex;
      flex-wrap: wrap;
      max-width: 850px;
      margin: 30px auto 110px;
    }
    .accor .ala-list dl {
      width: 50%;
      border-right: 1px solid rgb(1, 1, 1, 0.5);
    }
    .accor .ala-list dl:nth-child(2) {
      border-right: none;
    }
  }
  @media (max-width: 720px) {
    .accor .reservation {
      display: flex;
      flex-wrap: wrap;
      width: 90%;
      margin: 0 auto 20px;
      justify-content: center;
    }
    .accor .reservation a {
      margin: 15px 7px; /*width: calc(100% / 2 - 15px); */ width: 80%;
      justify-content: center;
      display: flex;
      align-items: center;
      font-size: 12px;
    }
  }
  /* uber */
  @media (min-width: 320px) {
    #uber a {
      display: block;
      width: 240px;
      margin: auto;
      border: 1px solid #000;
      padding: 0 40px;
    }
    #uber a img {
      vertical-align: middle;
    }
  }
  @media (min-width: 960px) {
    #uber a {
      width: 480px;
      padding: 0 50px;
    }
  }
  /* information */
  @media (min-width: 320px) {
    #information,#price {
      background-color:rgb(238, 240, 243, 1);
    }
    #information_ko {
      background-color: #bdbdbd;
    }
    .info-sec {
      position: relative;
      display: block;
      width: 100%;
      margin: 30px 0;
    }
    .info-sec .info {
      position: relative;
      display: block;
      width: 100%;
      color: #444;
      margin: 0 0 20px;
    }
    .info-sec .info img {
      display: block;
      width: 100%;
      margin: 20px 0;
    }
    .info-sec .info h4 {
      font-size: 15px;
      margin: 10px 0;
    }
    .info-sec .info p {
      font-size: 13px;
    }
    .info-sec .info table {
      width: 100%;
      margin: 0;
    }
    .info-sec .info table th, .info-sec .info table td {
      font-size: 12px;
      text-align: left;
      vertical-align: top;
      border-top: 1px solid #666;
      color: #fff;
      padding: 30px 0;
    }
    .info-sec .info table th {
      width: 80px;
    }
    .info-sec .info table td a {
      color: #569279;
      text-decoration: underline;
    }
    .info-sec .map {
      position: relative;
      display: block;
      width: 100%;
    }
    .info-sec .map #map {
      display: block;
      width: 100%;
      height: 300px;
      margin-bottom: 10px;
    }
    .info-sec .map #map2 {
      display: block;
      width: 100%;
      height: 240px;
      margin-bottom: 10px;
    }
    .info-sec .map .view-gm {
      display: block;
      width: 100%;
      text-align: right;
      color: #fff;
      font-size: 13px;
    }
    .info-sec .info table td a.sns {
      display: inline-block;
      margin-right: 10px;
      padding: 5px 0;
      transition: opacity .3s linear;
    }
    .info-sec .info table td a.sns svg {
      fill: #fff;
      width: 20px;
      height: 20px;
    }
    .info-sec .info table td.btn_reser a {
      text-decoration: none;
      display: block;
      border: 1px solid #fff;
      padding: 8px;
      margin: 0;
      color: #fff;
      text-align: center;
      background-color: #333;
    }
    .info-sec .info table td.btn_reser a:hover {
      background-color: #fff;
      color: #999;
    }
    .info-sec .info table td.btn_tenpo a {
      text-decoration: none;
      display: block;
      border: 1px solid #fff;
      padding: 8px;
      margin: 0 0 15px 0;
      color: #fff;
      text-align: center;
    }
    .info-sec .info table td.btn_tenpo a:hover {
      background-color: #fff;
      color: #999;
    }
  }
  .info-sec .linkicon {
    position: relative;
    display: inline-block;
    margin-top: 40px;
  }
  .info-sec .linkicon::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -8px;
    background-size: 15px 15px;
    background-image: url(../img/pdf.png);
  }
  @media (min-width:768px) {
    .info-sec .info {
      width: 50%;
      float: left;
      padding-right: 20px;
    }
    .info-sec .info table th, .info-sec .info table td {
      padding: 20px 0;
    }
    .info-sec .map {
      width: 50%;
      float: right;
      padding-left: 20px;
    }
    .info-sec .map #map {
      height: 360px;
    }
    .info-sec .map #map2 {
      height: 360px;
    }
    #information_ko .info-sec .info {
      width: 100%;
    }
  }
  @media (min-width:960px) {
    .info-sec .info h4 {
      font-size: 17px;
    }
    .info-sec .info p {
      font-size: 14px;
      font-weight: lighter;
      letter-spacing: 1px;
    }
    .info-sec .info table th, .info-sec .info table td {
      font-size: 14px;
      letter-spacing: 1px;
      font-weight: lighter;
    }
    .info-sec .info table th {
      width: 90px;
    }
  }
  /* instagram */
  .instagram {
    display: flex;
  }
  .instagram > a {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
  }
  .instagram p {
    font-size: 16px;
    margin: 10px 0;
    letter-spacing: 1px;
  }
  .instagram .img {
    width: 38px;
  }
  /* News */
  #news {
    padding-bottom: 50px;
  }
  #news .section-title {
    margin-bottom: 30px;
  }
  #news li {
    border-bottom: dotted 1px #ccc;
    margin-bottom: 20px;
    padding: 5px auto 10px;
  }
  #news h3 {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  #news h3 span {
    font-weight: normal;
    margin-left: 10px;
    font-size: 90%;
    letter-spacing: 1.4px;
  }
  #news a {
    text-decoration: underline;
    color: #333;
  }
  #news .table-cell {
    display: block;
  }
  @media (min-width: 768px) {
    #news .section-inner {
      padding: 0 25px 0 120px;
    }
  }
  @media (min-width: 960px) {
    #news .section-inner {
      padding: 0 150px;
    }
  }
  #page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    opacity: 0.9;
    visibility: visible;
  }
  #page-top a {
    background: rgb(40, 70, 40, 1);
    text-decoration: none;
    width: 80px;
    height: 80px;
    padding: 20px 0;
    text-align: center;
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
  }
  #page-top svg {
    fill: #fff;
    width: 70px;
    height: 40px;
  }
  .overtext {
    text-align: center;
    background-color: rgb(40, 70, 40, 0.8);
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px 20px 11px;
    font-size: 0.8em;
  }
  @media (min-width: 320px) {
    html #wpadminbar {
      display: none;
    }
    html {
      margin-top: 0 !important;
    }
    .top_bg {
      position: absolute;
      width: 87%;
      z-index: 2;
      bottom: 23dvh;
      right: -14px;
      text-align: right;
    }
    .top_bg img {
      right: 0;
      bottom: 0;
      width: 100%;
      position: relative;
      opacity: 0.7;
    }
    .logo {
      position: relative;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 10;
    }
    .logo h1 {
      color: #222;
      position: absolute;
      top: 16%;
      position: relative;
      font-weight: 800;
      font-family: Arial, Helvetica, "sans-serif";
      white-space: nowrap;
      left: 5%;
    }
    .logo h1 span {
      display: block;
    }
    .logo .fadeLeft1{font-size: 42px; line-height: 1; letter-spacing: -1px;}
     .logo .fadeLeft1.mb-15{margin-bottom: 15px;}
    .logo .fadeLeft2{letter-spacing: 0.1px;}  
    .logo .fadeLeft2.ph124{font-size: 24px;  position: relative; left: -14px;}     
    .logo span.t-jp {
      color: #333;
      font-size: 18px;
      line-height: 1.6;
      margin-top: 30px;
      font-weight: 600;
      letter-spacing: -1px;
    }
    .why .lead {
        padding: 70px 30px 70px;
/*        background: rgba(255, 255, 255, 0.15);*/
        margin-bottom: 65px;
        position: relative;
    }
    .why .lead:before {
        position: absolute;
        content: "";
        bottom: -23px;
        left: 50%;
        height: 50px;
        width: 1px;
        background: #fff;
}
    .why .lead:after {
        position: absolute;
        content: "";
        top: -23px;
        left: 50%;
        height: 50px;
        width: 1px;
        background: #fff;
}
    .why .lead p{
        color: #fff;
        font-size:13px;
        text-align: center;
        line-height: 2;
    }
  }
  /*hero*/

  .fadeRight {
    opacity: 0;
  }
  .loaded .fadeRight {
    animation-name: fadeRightAnime;
    animation-delay: 1.5s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    transition-timing-function: ease-in-out;
  }
  @keyframes fadeRightAnime {
    from {
      opacity: 0;
      transform: translateX(200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeLeft1 {
    opacity: 0;
  }
  .loaded .fadeLeft1 {
    animation-name: fadeLeftAnime1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  @keyframes fadeLeftAnime1 {
    from {
      opacity: 0;
      transform: translateX(-200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeLeft2 {
    opacity: 0;
  }
  .loaded .fadeLeft2 {
    animation-name: fadeLeftAnime2;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    font-size: 13px;
    line-height: 1.8;
  }
  @keyframes fadeLeftAnime2 {
    from {
      opacity: 0;
      transform: translateX(-200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeLeft3 {
    opacity: 0;
  }
  .loaded .fadeLeft3 {
    animation-name: fadeLeftAnime3;
    animation-delay: 1.5s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
  @keyframes fadeLeftAnime3 {
    from {
      opacity: 0;
      transform: translateX(-200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .loaded .rotateY {
    animation-name: rotateYAnime;
    animation-delay: 3.5s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }
  @keyframes rotateYAnime {
    from {
      transform: rotateY(0);
    }
    to {
      transform: rotateY(-360deg);
    }
  }
  /*アニメーション*/
  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeUpTrigger {
    opacity: 0;
  }
  @media (min-width: 500px) {
    .top_bg {
      width: 74%;
        right: -23px;
    }
    .top_bg img {
      width: 100%;
    }
    .logo h1 {
      font-size: 48px;
    left: 10%;
    }
    .loaded .fadeLeft1 {
        font-size: 1.1em;
        
    }
    .loaded .fadeLeft2{ font-size: 15px;}
    .logo span.t-jp{ font-size: 21px;}
        .lead {
        bottom: 11vh;
    }
    .hero_img {
        left: 59%;
        height: auto;
        width: 76%;
        bottom: 8vh;
    }
    .why .lead p{
        font-size:13px;
    }
    .why {padding-top: 31dvh;} 
  }
  @media (min-width: 689px) {
    /* .hamburger{display: none;}*/
    .top_bg {
      width: 500px;
    }
    .top_bg img {
      width: 100%;
    }
    .logo h1 {
    left: 15%;
      font-size: 62px;
    }
    .loaded .fadeLeft1 {
        font-size: 61px;
        
    }
    .loaded .fadeLeft2{ font-size: 15px;}
    .logo span.t-jp{ font-size: 23px;}
    .lead { bottom: 10vh;}
    .hero_img {
        left: 62%;
        height: auto;
        width: 66%;
        bottom: 13vh;
    }
     .why .lead p {font-size:14px; padding: 0 15% 0 55px;}
    .why {padding-top: 36dvh;} 
  }
  @media (min-width: 768px) {
    .logo h1 {
      left: 20%;
      font-size: 60px;
      top: 15%;
    }
    .logo h1 span.t-jp {
      font-size: 22px;
      margin-top:45px;
      line-height: 1.7;
    }
    .logo .fadeLeft2.ph124 {font-size: 28px;}
    .hero_img { left: 66%; bottom: 9vh; width: auto; height: 63%;}
    .why .lead  {padding: 75px 50px 75px 150px; }
    .why .lead p {
      width: 85%;
        padding: 0;
        margin: 0 auto;
        font-size: 15px;
       }
    .why .lead:after,.why .lead:before {
        margin-left: 50px;
}
  }


  @media (min-width: 968px) {
     .logo h1 {
              left: 21%;}
    .top_bg {
      width: 500px;
    }
    .hero .logo {
      width: 80%;
    }
    .why .lead p {
      width:73%; 
       }
    .hero_img {
      height: 68%;left: 62%;
    }
    .loaded .fadeLeft1 {
            font-size: 62px;}
   .loaded .fadeLeft2 {
        font-size: 15px;
    }
  }
  @media (min-width: 1100px) {
    .logo h1 { left: 22%;}
    .hero .logo { width: 70%; }
    .hero_img { left: 59%;}
    .why .lead p { width:60%; }
    .logo h1 span.t-jp { font-size: 23px;}
    .top_bg { right:10%; }
  }
  @media (max-width: 767px) {
    .sidebar {
      display: none;
    }
  }
  @media (min-width: 768px) {
    /*.hero .announce {margin-right: 65px;}*/
    header .logo {
      margin-left: -12px;
    }
  }





  /*modal*/
  .modal__bg {
    position: fixed;
    z-index: 10009;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden; /* 初期状態で非表示 */
    transition: opacity .6s ease, visibility .6s ease;
  }
  .modal__bg.is-active {
    opacity: 1; /* 非表示を解除 */
    visibility: visible; /* 非表示を解除 */
  }
  .modal__inner {
    position: fixed;
    z-index: 10010;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 0 10px;
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden; /* 初期状態で非表示 */
    transition: opacity .6s ease, visibility .6s ease;
  }
  .modal__inner.is-active {
    opacity: 1; /* 非表示を解除 */
    visibility: visible; /* 非表示を解除 */
  }
  .modal-card {
    width: 90%;
    max-height: 90%;
    background: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
    border-radius: 9px;
    padding: 80px 0 30px 16px;
    position: absolute;
    z-index: 1;
    transform: translate3d(0, 48px, 0);
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden; /* 初期状態で非表示 */
    transition: opacity 1s ease, visibility 1s ease, transform 1s ease-in-out;
    overflow: hidden;
  }
  .scrol-wrap {
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 24px;
    height: 600px;
    max-height: 90vh;
    padding-right: 16px;
  }
  .modal-card.is-active {
    position: relative;
    z-index: 2;
    opacity: 1; /* 非表示を解除 */
    visibility: visible; /* 非表示を解除 */
    transform: translate3d(0, 0, 0);
  }
  .modal-card__heading {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
    color: #111;
    text-align: center;
  }
  .modal-card__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #111;
    margin-bottom: 20px;
      width: 90%;
  }
  .modal-card__text li {
    list-style: square;
    line-height: 2;
  }
  .modal-card__close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 16px;
    right: 13px;
    background: rgb(100, 100, 100, 0.5);
    border-radius: 50%;
  }
  .modal-card__close::before, .modal-card__close::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #fff;
    cursor: pointer;
  }
  .modal-card__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .modal-card__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .modal-img-wrap {
    width: 100%;
    text-align: center;
    background: #fff;
      margin-bottom: 20px;
  }
  .modal-img-wrap img {
    width: 90%;
    margin: 0 auto;
  }
  .shop_info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 100px 15px 0;
  }
  .modal .shop_info {
    margin: 10px 15px 200px;
  }
  .shop_info dt {
    border-top: 2px solid #889;
    width: 90px;
    padding: 20px 0;
    font-weight: 800;
    font-size: 12px;
    color: #333;
  }
  .shop_info dd {
    border-top: 1px solid #ccc;
    width: calc(100% - 90px);
    padding: 20px 0 20px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: #333;
  }
  .shop_info a {
    display: inline-block;
    border-bottom: 1px dotted #666;
    color:#68a;
  }
  .shop_info dd.arrow a {
    position: relative;
    line-height: 2.5em;
  }


  @media (min-width: 768px) {
    .modal-card {
      width: 60%;
      max-width: 600px;
      max-height: 90%;
    }
    .shop_info {
      margin: 100px 20% 50px;
    }
  .modal .shop_info {
    margin: 10px 15px 200px;
  }
  }


/*fonts*/
.liebling-thin {
font-family: "liebling", sans-serif;
font-weight: 200;
font-style: normal;
}
.liebling-light {
font-family: "liebling", sans-serif;
font-weight: 300;
font-style: normal;
}
.liebling-regular {
font-family: "liebling", sans-serif;
font-weight: 400;
font-style: normal;
}
.liebling-medium {
font-family: "liebling", sans-serif;
font-weight: 500;
font-style: normal;
}
.liebling-bold {
font-family: "liebling", sans-serif;
font-weight: 700;
font-style: normal;
}
.noto-100{
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 100;
    font-style: normal;}

.noto-200{
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 200;
    font-style: normal;}

.noto-300{
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 300;
    font-style: normal;}

.noto-400{
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 400;
    font-style: normal;}

.noto-500{
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 500;
font-style: normal;}

.noto-700{
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 700;
font-style: normal;}

.noto-900{
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 900;
font-style: normal;}


.why .lead {
  overflow: hidden;
}

div.water-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100px;
  margin: auto;
  height: 200px;
  width: 200px;
}


div.water {
  position: absolute;
  top: -25%;
  width: 100%;
  height: 100%;
  border-radius: 100% 5% 100% 100%;
  transform: rotate(-45deg);
  margin: 0px;
  background: none;
  animation: drip 4s forwards;
}



@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

div.water-container:before,
div.water-container:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 55%;
  right: 50%;
  transform: translate(50%) rotateX(75deg);
  border-radius: 100%;
  opacity: 0;
  width: 75%;
  height: 75%;
  border: 5px solid rgba(255,255,255,0.2);
  animation: dripple 4s ease-out 1s;
 animation-iteration-count:infinite;
}

div.water-container:after {
  animation: dripple 4s ease-out 1.7s ;
    animation-iteration-count:infinite;
}

@keyframes drip {
  45% {
    top: 0;
    border-radius: 100% 5% 100% 100%;
    transform: rotate(-45deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
    border-radius: 100%;
  }
}

@keyframes dripple {
  0% {
    width: 150px;
    height: 150px;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 500px;
    height: 500px;
    top: -20%;
    opacity: 0;
  }
}

  @media (max-width: 767px) {
div.water-container {left: 0;}  
}

#price .shop_info dd{line-height: 4; width: calc(100% - 30%);}
#price .shop_info dt{align-items: center; display: flex; width:30%;}

/*water drop*/

#sp::before {
  display: block;
  content: '';
  width: 30%; 
  height: 20%;
  border-radius: 50%;
  position: absolute;
  top: 11%;
  left: 21%;
  background: rgba(255,255,255,0.9);
    filter:blur(7px);}
    
.loaded .drop_wrap{
  position: absolute;
    z-index: 259;
    width: 100px;
    height: 100%;
}
.loaded .drop-shaped{
  position: relative;
  margin:  0 auto;
  top: -25px;
  width: 8px;
  height: 8px;
  background:rgba(255,255,255,0.4);
  border-radius: 0% 100% 50% 50%/ 0% 50% 50% 100%;
  transform: rotate(45deg) skew(10deg, 10deg);
  animation: 2s cubic-bezier(.97,.03,.86,.12) 0s running fall;
  animation-delay: 1s; 
}

@keyframes fall {
  to {
    top: 60%;
  }
}

.loaded .ripple {
  position: relative;
  margin:  0 auto;
  top: 70vh;
  width: 100px;
  height: 50px;
  border-radius: 150px / 75px;
  border: 10px solid rgba(255,255,255,0.1);
  transform: scale(0.01,0.01);
  opacity: 0;
  animation: 2s ease-out 2s running spread;
  animation-delay: 1s; 
}

@keyframes spread {
  from {
    opacity: 1;
  }
  to {
    transform: scale(1,1);
    opacity: 0;
  }
}

.loaded .delay1 {
  top: 63vh;
  animation-delay: 3.3s;
}

.loaded .delay2 {
  top: 56vh;
  animation-delay: 3.7s;
}

.rotateC::after {
  background: rgb(20,110,170,0.1);
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}  
    
.loaded .rotateC::after{
	animation-name:rotateYAnime;
    animation-delay: 3.5s; 
	animation-duration:5.5s;
	animation-fill-mode:forwards;
}

@keyframes rotateYAnime{

    100%{
    opacity: 1;
    transform:  translateY(-50%) scale(1);
    transition-delay: 1s;
    transition: opacity 0.8s, transform 0.6s ease-out;
    /*background: rgba(61,117,154,0.2);*/
    background-image: linear-gradient(to right bottom, rgb(1,1,1,0.7),  rgb(1,1,1,0.2) 25%,  rgb(255,255,255,0.5));
    box-shadow:1px 1px 1px  rgb(1,1,1,0.3), inset 8px 8px 8px  rgb(20,30,80,0.1);
    border-radius: 50%;
    content: "";
        backdrop-filter: blur(2px);
    }
}


/*
newloading*/
    .loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f2f2f2;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1em;
        transition: opacity 1s ease;
    }
    .count_wrap {
        width: 200px;
        text-align: center;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        color: #555;
    }
    .progress_bar {
        width: 100%;
        height: 7px;
        margin-top: 10px;
        position: relative;
        background:linear-gradient(90deg, rgb(1,1,1,0.1), rgb(36,38,400,0.1));
    }
    #progress_bar_count {
        height: 100%;
        left: 0;
        position: absolute;
        background-image:linear-gradient(90deg, rgb(210,140,125,0.5), rgb(40,80,160,0.6));
        width: 0%;
    }
    .progress_text {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 1em;
    }
	
	
/*new loading -noro-*/
    .loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f2f2f2;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1em;
        transition: opacity 1s ease;
    }
    .count_wrap {
        width: 200px;
        text-align: center;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        color: #555;
    }
    .progress_bar {
        width: 100%;
        height: 7px;
        margin-top: 10px;
        position: relative;
        background:linear-gradient(90deg, rgb(1,1,1,0.1), rgb(36,38,400,0.1));
    }
    #progress_bar_count {
        height: 100%;
        left: 0;
        position: absolute;
        background-image:linear-gradient(90deg, rgb(210,140,125,0.5), rgb(40,80,160,0.6));
        width: 0%;
    }
    .progress_text {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 1em;
    }

@-webkit-keyframes loader_txt_wrap {
    0% {
        -webkit-transform: translate(-40%, 0);
        transform: translate(-40%, 0)
    }

    100% {
        -webkit-transform: translate(-60%, 0);
        transform: translate(-60%, 0)
    }
}

@keyframes loader_txt_wrap {
    0% {
        -webkit-transform: translate(-40%, 0);
        transform: translate(-40%, 0)
    }

    100% {
        -webkit-transform: translate(-60%, 0);
        transform: translate(-60%, 0)
    }
}
@-webkit-keyframes loader_txt_wrap_bottom {
    0% {
        -webkit-transform: translate(-40%, 0);
        transform: translate(-40%, 0)
    }

    100% {
        -webkit-transform: translate(-60%, 0);
        transform: translate(60%, 0)
    }
}

@keyframes loader_txt_wrap_bottom {
    0% {
        -webkit-transform: translate(-40%, 0);
        transform: translate(-40%, 0)
    }

    100% {
        -webkit-transform: translate(-60%, 0);
        transform: translate(60%, 0)
    }
}
@-webkit-keyframes loader_txt_wrap_jp {
    0% {
        -webkit-transform: translate(-40%, 0);
        transform: translate(-40%, 0)
    }

    100% {
        -webkit-transform: translate(60%, 0);
        transform: translate(60%, 0)
    }
}
@keyframes loader_txt_wrap_jp {
    0% {
        -webkit-transform: translate(-40%, 0);
        transform: translate(-40%, 0)
    }

    100% {
        -webkit-transform: translate(60%, 0);
        transform: translate(60%, 0)
    }
}
.loader_txt_wrap {
    position: relative;
    width: 100vw;
    height: 150px;
    display: block;
    overflow: hidden;
}
.loader_txt_wrap.jp {
height: 35px;
}
@media only screen and (max-width: 767px) {
    .loader_txt_wrap {
        height:80px;
    }
}
    
.txt_bottom{
    position: absolute;
    bottom: 0;
    }
.loader_txt {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    white-space: nowrap;
    -webkit-animation: loader_txt_wrap 6s linear infinite;
    animation: loader_txt_wrap 6s linear infinite
}
.txt_bottom .loader_txt {
    -webkit-animation: loader_txt_wrap_bottom 30s linear infinite;
    animation: loader_txt_wrap_bottom 30s linear infinite
}
.jp .loader_txt {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    -webkit-animation: loader_txt_wrap_jp 30s linear infinite;
    animation: loader_txt_wrap_jp 30s linear infinite
}
.loader_txt span {
    color:rgb(100, 110, 130, 0.1);
    font-size: 130px;
    letter-spacing: 2px;
    line-height: 150px;
    display: block;
    padding-right: 30px;
    box-sizing: border-box;
    font-weight: 900;
}
.jp .loader_txt span {
    color:#ccc !important;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 40px;
    padding-right: 30px;
    font-weight: 900;
}
.txt_bottom .loader_txt span{
    color:rgb(110, 100, 130, 0.1);
}
@media only screen and (max-width: 767px) {
    .loader_txt span {
        font-size:60px;
        letter-spacing: 1px;
        line-height: 80px
    }
    .jp .loader_txt span {
        font-size:20px;
        letter-spacing: -1px;
        line-height: 20px
    }
}
/*
virus icon in hero*/
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
    .virus-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
        z-index: -1;
      }
.rotate__cont{
    position: absolute;
    width: 160px;
    height: 160px;
    left: 15px;
	bottom:12dvh;
}
.rotate__inner-txt{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 17px;
    text-align: center;
    z-index: 1;
    width: 70%;
}
.rotate__float{
    animation: rotate 12s infinite linear;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@media (min-width: 500px){  
     .rotate__cont {left:10%;}
}
@media (min-width: 689px){  
     .rotate__cont {left:15%;}
}
@media (min-width: 768px){  
     .rotate__cont {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    left:30%;
	}
}
