@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid #ff1414; */
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

:root {
  --semi-fontsize: 0.77rem;
  --normal-fontsize: 0.82rem;
  --middle-fontsize: 0.95rem;
  --big-fontsize: 1.2rem;
  --line-height: 1.3;
}

@media screen and (min-width: 600px) {
  :root {
    --semi-fontsize: 0.82rem;
    --normal-fontsize: 0.92rem;
    --middle-fontsize: 1.1rem;
    --big-fontsize: 1.4rem;
    --line-height: 1.5;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --semi-fontsize: 0.83rem;
    --normal-fontsize: 1rem;
    --middle-fontsize: 1.35rem;
    --big-fontsize: 1.6rem;
    --line-height: 1.6;
  }
}
@media screen and (min-width: 1536px) {
  :root {
    --semi-fontsize: 0.97rem;
    --normal-fontsize: 1.1rem;
    --middle-fontsize: 1.5rem;
    --big-fontsize: 2.0rem;
    --line-height: 1.7;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: var(--normal-fontsize);
  font-style: normal;
  color: #231815;
  background: #232323;
  line-height: var(--line-height);
  letter-spacing: 0.01rem;
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media screen and (min-width: 1680px) {
  body {
    font-weight: 500;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/kv_background_sp202602.jpg") center / cover no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

@media screen and (min-width: 1024px) {
body::before {
  background: url("../images/kv_background_pc202602.jpg") center / cover no-repeat;
}
}

p {
  word-break: break-word;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
a {
  text-decoration: none;
  color: #000;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  line-height: 0;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}
button{
  outline: none;
  border: 0;
}
a:link, a:visited, a:active, a:hover {
  overflow: hidden;
  outline: none;
}

.sp-only {
  display: block;
}
.pc-only {
  display: none;
}

@media screen and (min-width: 600px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}

@media screen and (min-width: 1440px) {
  .pcw-only{
    display: none;
  }
}

/*-- ここからHEADER --*/
.logo_group{
  display: flex;
  align-items: center;
}
header {
  z-index: 99;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1em;
}
.header {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.logo_group{
  display: flex;
  align-items: center;
}
.h_logo{
  width: 120px;
}
.h_logo img{
  padding: 2px 0;
}
.header {
  margin: 0;
  padding: 10px;
}
.header nav {
  margin: 0 0 0 auto;
}
.header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
.pc-nav li {
  margin: 0 0 0.2em 2em;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color:#d9d9d9;
  position: relative;
}
.pc-nav a{
  text-decoration: none;
  font-size: 0.8rem;
  color: #FFF;
}
.pc-nav a::after {
  position: absolute;
  top: 20px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #ff0;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  }
  
.pc-nav a:hover::after {
  visibility: visible;
  bottom: 12px;
  opacity: 1;
  }

@media screen and (max-width: 1024px) {
  .h_logo img{
    padding: 7px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

@media (max-width: 430px) {
  header{
    padding: 0;
  }
  .header {
    padding: 0 0.5em;
  }
  .h_logo {
    width: 100px;
  }
  .h_logo img {
    padding: 7px 0;
  }
}
/*-- ここまでHEADER --*/

/* ここから 共通 */
.l-inner{
  padding: 6% 10%;
}

@media screen and (min-width: 1024px) {
  .l-inner{
    padding: 4rem 0;
    width: 900px;
    margin: auto;
  }
}

@media screen and (min-width: 1680px) {
  .l-inner{
    padding: 6rem 0;
    width: 1000px;
  }
}

.marker-title {
  position: relative;
  display: inline-block;
}
.marker-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  height: 0.2em;
  width: 0%;
  background: linear-gradient(to right, #fff295, #ffe000) ;
  transition: width 0.5s ease-in-out;
}
.marker-title.active::after {
  width: 100%;
}
/* ここまで 共通 */

/* ここからMAIN VISUAL */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mv > * {
  position: relative;
  z-index: 2;
}

.mv__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.mv__logo img {
  width: 100%;
  height: auto;
}

.mv__title {
  font-weight: 700;
  color: #ffffff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.7);
}

.mv__text p {
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.7);
    color: #e9f2ff;
  line-height: 1.6;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

.float {
  animation: float 4.5s ease-in-out infinite;
}

.float--1 { animation-delay: 0s; }
.float--2 { animation-delay: 0.8s; }
.float--3 { animation-delay: 1.6s; }
.float--4 { animation-delay: 2.4s; }


@media screen and (max-width: 599px) {
  .mv__wrapper {
    padding: 30% 20px 15%;
  }

  .mv__text__wrap {
    text-align: center;
    margin: 0 auto;
    max-width: 520px;
  }

  .mv__logo img {
    max-width: 320px;
  }

  .mv__title {
    margin-top: 20px;
    font-size: 18px;
  }

  .mv__text {
    margin-top: 12px;
  }

  .main__image__wrap {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
  }

  .main__image__wrap img {
    width: 70px;
    max-width: 22vw;
    height: auto;
    aspect-ratio: auto;
  }
  
  img.float--1.vga{
    width: 80px;
  }

  img.float--4.case{
    width: 100px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {

  .mv__wrapper {
    padding: 8rem 32px 40px;
  }

  .mv__text__wrap {
    text-align: center;
    margin: 0 auto;
    max-width: 640px;
  }

  .mv__logo img {
    max-width: 64.5vw;
  }

  .mv__title {
    margin-top: 24px;
    font-size: 18px;
  }

  .mv__text  {
    margin-top: 0.8rem;
  }

  .mv__text p {
    font-size: var(--middle-fontsize);
  }

  .main__image__wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  .main__image__wrap img {
    width: 120px;
    height: fit-content;
    aspect-ratio: auto;
  }
  
  img.float--1.vga{
    width: 140px;
  }

  img.float--4.case{
    width: 180px;
  }

}

@media screen and (min-width: 1024px) {
  .mv__wrapper {
    padding: 0;
  }

  .mv__text__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 780px;
    text-align: center;
    z-index: 2;
  }

  .mv__logo img {
    max-width: 90%;
  }

  .mv__title {
    margin-top: 28px;
    font-size: 1.65vw;
  }

  .mv__text {
    margin-top: 18px;
  }

  .mv__text p {
    font-size: var(--middle-fontsize);
  }

  .main__image__wrap {
    position: absolute;
    inset: 0;
  }

  .vga {
    position: absolute;
    left: 6%;
    top: 20%;
    width: 18%;
  }

  .mb {
    position: absolute;
    right: 10%;
    top: 18%;
    width: 10%;
  }

  .power {
    position: absolute;
    left: 6%;
    top: 55%;
    width: 14%;
  }
  
  .case {
    position: absolute;
    right: 6%;
    top: 56%;
    width: 20%;
  }
}

@media screen and (min-width: 1537px)  {
  .mv__title {
    font-size: var(--middle-fontsize);
  }
  .mv__logo img {
    max-width: 100%;
  }
}

@media screen and (min-width: 2000px) {
  .mv__text__wrap {
    max-width: 50vw;
  }
  .mv__title {
    font-size: 1.4vw;
  }
  .mv__text p {
    font-size: 1.3vw;
  }
}

/* ここまでMAIN VISUAL */

/* scroll */
.scroll_down{
  display: none;
}

@media screen and (min-width: 1280px) {
.scroll_down{
  display: block;
  position: absolute;
  top: 100vh;
  left: 97%;
  z-index: 99;
}
.scroll_down.hidden {
  display: none;
}
.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 90px;
  color: #FFF;
  font-size: 12px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:#FFF;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:160px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width: 1.5px;
  height: 160px;
  background:#FFF;
}
}
/* scroll */

/* scroll nav */
.scroll-nav {
  display: none;
}

@media screen and (min-width: 1280px) {

  .scroll-nav {
    display: block;
    position: fixed;
    left: 0;
    bottom: -80px;
    width: 100%;
    background: rgba(10,13,52,0.8);
    transition: bottom 0.3s ease;
    z-index: 9999;
  }

  .scroll-nav.is-show {
    bottom: 0;
  }

  .scroll-nav.is-fixed {
    top: 0;
    bottom: auto;
  }

  .scroll-nav ul {
    margin: 0;
    padding: 16px;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .scroll-nav a {
    color: #fff5fe;
    text-decoration: none;
  }

  .scroll-nav a:hover {
    border-bottom: 2px solid #ff0;
  }
}

@media screen and (min-width: 1536px) {
  .scroll-nav ul {
    gap: 50px;
  }
}
/* scroll nav */

/* button */
.btn__wrap{
  text-align: center;
  position: relative;
  margin: 0 0 1rem;
  /* 完売時 */
  /* pointer-events:none; */
  /* 完売時 */
}
.btn__wrap p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F00;
  font-weight: bold;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
  -1px 1px 0 #FFF, 1px -1px 0 #FFF,
  0px 1px 0 #FFF,  0-1px 0 #FFF,
  -1px 0 0 #FFF, 1px 0 0 #FFF;
  min-width: 260px;
}
.btn-request {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}
.btn-request {
  position: relative;
  font-size: 1.1rem;
  padding: 0.5rem 1rem 0.5rem 3.5rem;
  background: #FE0000;
  box-shadow: 0 5px 0 #e81111;
  color: #FFF;
/* 完売時 */
  /* background: #929292;
  color: #ccc;
  filter: grayscale(1.0); */
  /* 完売時 */
}
.btn-request span {
  font-size: 0.8rem;
  letter-spacing: 0.01rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.2rem 0.5rem;
  color: #FE0000;
  border-radius: 4px;
  background: #FFF;
  /* 完売時 */
  /* background: #929292; */
  /* 完売時 */
}
.btn-request:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.2rem;
  margin: 0;
  padding: 0;
  content: "\f30b";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-request:hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #FE0000;
  box-shadow: 0 2px 0 #FE0000;
}
.btn-request:hover:before {
  left: 2rem;
}
.mt4{
  margin: 4vw auto;
}
.mt4 p{
  text-align: center!important;
  padding: 1rem 0!important;
}

@media screen and (min-width: 600px) {
  .btn__wrap {
    margin: 0 0 1rem;
  }
  .btn__wrap p{
    font-size: 0.9rem;
  }
  .btn-request {
    padding: 1rem 1rem 0.5rem 3.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .btn__wrap p{
    font-size: 1rem;
  }
  .btn-request span {
    font-size: 0.9rem;
  }
  .btn-request {
    padding: 0.8rem 2rem 0.6rem 4rem;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1537px) {
  a.btn-request {
    font-size: 1.6rem;
    padding: 1rem 2rem 1rem 5rem;
  }
  a.btn-request span {
    font-size: 1.1rem;
  }
  a.btn-request:before {
    font-size: 1.8rem;
    left: 1.5rem;
  }
}

@media screen and (min-width: 1900px) {
  .btn-request span {
    font-size: 1rem;
  }
  .btn-request {
    padding: 1rem 2.5rem 1rem 4.5rem;
    font-size: 1.6rem;
  }
  .btn__wrap p{
    font-size: 1.1rem;
  }
}
/* button */

/* ここから INTRODUCTION */
.intro__section{
  padding: 4% 0 6%;
}
.intro__wrap{
  background-color: #fff;
  margin: 4% 6%;
  padding: 6%;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 4px 10px rgba(0, 0, 0, 0.05),
    0 -2px 15px rgba(255, 255, 255, 0.2) inset;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.intro__section h3{
  text-align: center;
  color: #FFEC00;
  margin: 0 0 2rem;
  font-size: var(--big-fontsize);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.intro__section span{
  padding: 0 0 1rem;
}
.intro__text{
  text-align: center;
}
.intro__text span{
  font-weight: bold;
  color: #FFEC00;
}
.intro__recommend{
  position: relative;
  margin: auto;
  text-align: center;
  padding: 10px 2rem;
  color: #ffffff;
  background: #1c66ac;
  font-weight: 500;
}
.intro__recommend::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  width: 20px;
  height: 12px;
  transform: translateX(-50%);
  box-sizing: border-box;
  background: #1c66ac;
  border: 1px solid #1c66ac;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.intro__recommend__wrap{
  position: relative;
  border: 1px solid #1c66ac;
  margin: 0.5rem auto;
  width: fit-content;
}
.intro__recommend__wrap ol{
  padding: 1rem 0.5rem 0.5rem;
}
.intro__recommend__wrap li{
  position: relative;
  line-height: 1.4;
  padding: 0.4em 0.4em 0.4em 1.7em;
}
.intro__recommend__wrap li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  position: absolute;
  left : 0.5em;
  color: #1c66ac;
}
.intro__photo{
  max-width: 220px;
  margin: 0.5rem auto 0;
}

@media screen and (min-width: 600px) {
  .intro__text{
    padding: 1rem 0;
  }
  .intro__photo{
    max-width: 480px;
  }
}

@media screen and (min-width: 1024px) {
  .intro__wrap {
    padding: 4% 6%;
    width: 960px;
    margin: 4% auto;
  }
  .intro__section h3{
    margin: 0 0 4rem;
  }
  .intro__photo{
    max-width: 640px;
  }
  .intro__recommend {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .intro__recommend__wrap ol {
    padding: 1.5rem 0.5rem 0.5rem;
  }
  .intro__recommend__wrap li {
    padding: 0.2em 0.4em 0.8em 2em;
    margin: 0 0 0 1rem;
  }
}

@media screen and (min-width: 1440px) {
  .intro__wrap {
    width: 1000px;
    margin: 3% auto;
  }
  .intro__text {
    padding: 1rem 0 1.5rem;
  }
}
/* ここまで INTRODUCTION */

/* ここから VOICE */
.voice {
  background: #f8f9fa;
  padding: 3rem 6%;
}
.voice__title {
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
}
.voice__list {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.voice__item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.voice__item:hover {
  transform: translateY(-5px);
}
.voice__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  flex-shrink: 0;
  background: #eee;
  border: 1px solid #ccc;
}
.voice__content {
  flex: 1;
}
.voice__meta {
  font-size: 0.9rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 0.5rem;
}
.voice__reason {
  color: #666;
  margin-bottom: 0.3rem;
}
.voice__comment {
  font-size: 0.9rem;
  color: #f8a93f;
  margin-bottom: 0.5rem;
}
.voice__opinion {
  color: #333;
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid #ffd54f;
}

@media screen and (min-width: 1024px) {
  .voice {
    padding: 3rem 6% 6rem;
  }
  .voice__img {
    width: 80px;
    height: 80px;
    margin-right: 1.5rem;
  }
  .voice__meta,
  .voice__comment {
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1440px) {
  .voice__title {
    font-size: 1.6rem;
  }
}
/* ここまで VOICE */

/* fuwa */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.25,.8,.25,1),
              transform 0.8s cubic-bezier(.25,.8,.25,1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* fuwa */

/* osusume model */
.osusume__contents {
  position: relative;
  padding: 2rem 0 0;
  overflow: hidden;
}

.osusume__contents::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.osusume__contents > * {
  position: relative;
  z-index: 2;
}
.osusume__maintitle {
  padding: 0 10%;
}
.osusume__maintitle img{
  max-width: 100%;
  margin: auto;
}
.osusume__comment{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4%;
}
.osusume__commentimage{
  width: 80px;
  padding-right: 1rem;
}
.osusume__commenttext {
  position: relative;
  display: inline-block;
  padding: 1rem;
  font-size: var(--semi-fontsize);
  font-weight: 500;
  line-height: 1.4;
  min-width: 120px;
  max-width: 210px;
  text-align: left;
  background: #FFF;
  border: solid 2px #555;
  box-sizing: border-box;
  border-radius: 0.5rem;
}
.osusume__commenttext:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -14px;
  border: 12px solid transparent;
  border-right: 13px solid #FFF;
  z-index: 2;
}
.osusume__commenttext:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -16px;
  border: 14px solid transparent;
  border-right: 14px solid #555;
  z-index: 1;
}
.osusume__header{
  text-align: center;
  font-size: var(--big-fontsize);
  color: #ffe000;
  font-weight: bold;
  padding: 1rem 0;
  margin: auto;
}
.osusume__subheader{
  text-align: center;
  font-size: var(--middle-fontsize);
  color: #FFF;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .osusume__contents {
    padding: 4rem 0 0;
  }
  .osusume__commenttext {
    max-width: 440px;
    padding: 20px 30px;
    font-size: var(--normal-fontsize);
  }
  .osusume__maintitle {
    padding: 0 8% 2rem;
  }
  .osusume__header {
    margin: 1rem auto;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .osusume__contents{
    padding: 6rem 0 0;
  }
  .osusume__maintitle {
    padding: 0 0 4vw;
    width: 860px;
    margin: auto;
  }
  .osusume__header {
    margin: 2rem auto;
    padding: 0;
  }
  .osusume__commentimage {
    width: 150px;
    padding-right: 2rem;
  }
  .osusume__commenttext {
    max-width: 480px;
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1680px) {
  .osusume__header {
    margin: 4rem auto 1rem;
  }
  .osusume__subheader {
    padding: 0 0 1vw;
  }
}

.set__wrapper {
  margin: 1rem 8% 3rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px) saturate(75%);
  -webkit-backdrop-filter: blur(8px) saturate(75%);
  transition: opacity 0.3s cubic-bezier(.25,.8,.25,1), 
              transform 0.3s cubic-bezier(.25,.8,.25,1);
}

@media screen and (min-width: 600px) {
  .set__wrapper {
    margin: 2rem 8% 3rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .set__wrapper {
    margin: 3rem 6% 6rem;
    padding: 4rem;
  }
}

@media screen and (min-width: 1366px) {
  .set__wrapper {
    padding: 4rem 2rem;
  }
}

@media screen and (min-width: 1680px) {
  .set__wrapper {
    padding: 6%;
    margin: 2rem auto 10rem;
    width: 1400px;
  }
}

@media screen and (min-width: 2000px) {
  .set__wrapper {
    padding: 4% 6%;
    margin: 2rem auto 10rem;
    width: 1600px;
  }
}

/* お勧めセットの見出し */
/* .set__title h2 {
  font-size: var(--big-fontsize);
  font-weight: 800;
  line-height: 1.25;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: 0 6px 30px rgba(100,140,255,0.12);
  margin: 0;
}

.gradient-text {
  background: linear-gradient(90deg, #9be7ff 0%, #d4a8ff 50%, #ffd77a 100%);
  -webkit-background-clip: text;
  color: transparent;
} */
/* お勧めセットの見出し */

.game__wrapper {
  padding: 1rem 0;
}
.game__title__text__wrap{
  color: #FFF;
}
.game__title__text__wrap h3{
  padding: 0.5rem 0 1rem;
  font-size: var(--big-fontsize);
  font-weight: bold;
  text-align: center;
  color: #ffe000;
}
.game__ttl{
  padding: 1rem 0 0.2rem;
  font-size: var(--middle-fontsize);
  font-weight: bold;
  color: #ffe000;
  border-top: 1px solid #ffe000;
  text-align: center;
}
.game__text{
  padding: 0.5rem 0;
  font-size: var(--semi-fontsize);
  line-height: 1.4;
  text-align: left;
}
.game__otherttl{
  padding: 1rem 0 0.3rem;
  font-size: var(--middle-fontsize);
  font-weight: bold;
  color: #ffe000;
  text-align: center;
}
.game__other{
  padding: 0 0 1rem;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  font-size: var(--middle-fontsize);
}

@media screen and (min-width: 600px) {
  .game__title__text__wrap {
    text-align: center;
  }
  .game__ttl__text{
    padding: 1rem 0 0;
  }
  .game__text {
    font-size: var(--normal-fontsize);
    padding: 0.5rem 0 1rem;
    line-height: 1.6;
  }
  .game__other {
    padding: 0.3rem 0 1rem;
  }
}

@media screen and (min-width: 1280px) {
  .game__title__wrap{
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: flex-start;
  }
  .game__title__wrap img{
    width: 50%;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
  }  
  .game__title__text__wrap{
    padding: 2rem 0 0;
  }
  .game__title__text__wrap h3 {
    padding: 0 0 2rem;
  }
  .game__wrapper {
    padding: 2.5rem 4% 0;
  }
  .game__ttl{
    padding: 2rem 0 1rem;
  }
  .game__ttlgroup{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding: 0 0 2.5rem;
  }
  .game__ttlgroup img{
    width: 35%;
    height: auto;
    object-fit: contain;
    padding: 0.3rem 0 0;
    flex: 1;
  }
  .game__ttl__text {
    flex: 1;
  }
  .game__otherttl {
    padding: 0 0 1rem;
    text-align: left;
  }
  .game__other {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.6;
  }
  .game__text {
    padding: 0 8% 1rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1440px) {
  .game__title__wrap{
    padding: 2rem 8%;
  }
}

@media screen and (min-width: 1680px) {
  .game__wrapper {
    padding: 0 4% 3rem;
  }
  .game__title__wrap {
    padding: 1rem 0;
  }
  .game__title__wrap img {
    width: 40%;
  }
  .game__text {
    padding: 0.5rem 14% 1rem;
    line-height: 1.9;
  }
  .game__ttl {
    padding: 3rem 0 1rem;
  }
  .game__title__text__wrap h3 {
    padding: 0 0 3rem;
  }
  .game__other {
    font-size: 1.3rem;
  }
}

.osusume__setimage{
  text-align: center;
  max-width: 900px;
  margin: auto;
}
/* osusume model */

/* spec */
.spec-wrap {
  overflow-x: auto;
  padding: 1rem 0 2rem;
  font-size: var(--semi-fontsize);
}

.spec-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  color: #fff;
}

.spec-table th,
.spec-table td {
  padding: 10px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #fff;
}

.spec-table th {
  font-weight: 600;
  opacity: 0.85;
  width: 18%;
}

@media (min-width: 600px) {
  .spec-wrap {
    overflow-x: visible;
    display: flex;
    justify-content: center;
  }

  .spec-table {
    max-width: 500px;
  }

  .spec-table th {
    width: 30%;
  }
}

@media (min-width: 1280px) {
  .spec-wrap {
    padding: 2rem 0 0;
    font-size: var(--normal-fontsize);
  }
  .spec-table {
    max-width: 700px;
  }
  .spec-table th,
  .spec-table td {
    padding: 12px 16px;
  }
}

@media (min-width: 1440px) {
  .spec-wrap {
    padding: 4rem 0;
  }
  .spec-table {
    max-width: 700px;
  }
  .spec-table th,
  .spec-table td {
    padding: 12px 20px;
  }
}
/* spec */

/* ここから hows tokuten */
.hows__contents{
  background: #FEF6E1;
}
.hows__contents p{
  text-align: left;
  padding: 0.5rem 1rem 1.5rem;
}
.hows__tenpo{
  margin: 1rem 0 0;
}
.hows__btn{
  position: relative;
  margin: 4rem 0 8rem;
}
.btn_box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
#btn_animation .btn {
  display: block;
  position: relative;
  width: max-content;
  font-size: var(--middle-fontsize);
  font-weight: bold;
  padding: 1rem 2rem;
  text-decoration: none;
  background-color: #FE0000;
  color: #FFF;
    text-align: center;
    overflow: hidden;
    animation: btn_animation 1s infinite;
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
}

@keyframes btn_animation {
  0% {
      box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
      top: 0px;
  }
  10% {
      box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
      top: 3px;
  }
  20% {
      box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
      top: 0px;
  }
  30% {
      box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
      top: 3px;
  }
  40% {
      box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
      top: 0px;
  }
}
.hows__contents .movie{
  position: relative;
  width: 60%;
  margin:0 auto;
  padding: 0!important;
  max-width: 300px;
}
.hows__contents .movie video{
  width: 100%;
  margin-bottom: 2.5rem;
  display: block;
  z-index: 1;
  position: relative;
}
.hows__contents .movie .play-btn{
  display: block;
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  border: none;
  cursor: pointer;
  z-index: 2;
  pointer-events: auto;
}
.hows__contents .movie .play-btn.playActive{display:none;}

@media screen and (min-width: 1024px) {
  .hows__contents img{
    width: 800px;
    margin: auto;
    display: block;
  }
  .hows__contents p {
    text-align: center;
    padding: 2rem 0 3rem;
  }
  .hows__tenpo{
    padding: 6rem 0 0;
  }
  .hows__btn{
    position: relative;
    margin: 6rem 0 10rem;
  }
  .hows__contents .movie{
    margin:0 auto 4rem;
  }
}
/* ここまで hows tokuten */

/* ここから yousu */
.yousu__contents{
  background: #f9f7f0;
  text-align: center;
}
.yousu__title{
  font-size: var(--middle-fontsize);
  font-weight: bold;
}
.yousu__sttl{
  font-size: var(--semi-fontsize);
}
.yousu__wrap{
  padding: 4vw 8vw;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.keisai__contents{
  padding: 4vw 0 0;
}
.keisai__title{
  font-size: var(--middle-fontsize);
  font-weight: bold;
}
.keisai__wrap{
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1em 0.5em;
}
.keisai__group img {
  padding: 0 2vw;
}
.keisai__group{
  padding: 4vw 0;
}
.keisai__group img{
  padding: 0 6vw;
}
.keisai__group p{
  font-size: var(--semi-fontsize);
  padding: 2vw 0;
}
.keisai__button a {
  background: #1c66ac;
  color: #FFF;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 120px;
  padding: 5px 10px;
  line-height: 1.6;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: var(--semi-fontsize);
}
.keisai__button a:hover {
  background: #45ffeb;
}
.keisai__button a:after {
  content: '';
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.keisai__button a:hover:after {
  border-color: #FFF;
}

@media screen and (min-width: 1024px){
  .keisai__button a {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1024px){
  .yousu__sttl{
    line-height: 2.2;
  }
  .yousu__wrap{
    padding: 2em 0;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .keisai__wrap{
    grid-template-columns: repeat(2,1fr);
    gap: 2em 2em;
  }
  .keisai__group img {
    padding: 0;
  }
  .keisai__group p {
    padding: 1em 0 1.5em;
  }
  .keisai__button a {
    max-width: 160px;
    padding: 7px 10px;
    font-size: var(--semi-fontsize);
  }
}

@media screen and (min-width: 1366px){
  .keisai__wrap {
    padding: 2em 0;
  }
  .keisai__group p {
    font-size: var(--normal-fontsize);
    padding: 1em 0;
  }
  .keisai__group img {
    padding: 0 2vw;
  }
  .keisai__group {
    padding: 2em 0;
  }
}

@media screen and (min-width: 1680px){
  .keisai__wrap {
    padding: 0.5em 6%;
    gap: 0 3em;
  }
  .keisai__group img {
    padding: 0;
  }
}
/* ここまで yousu*/

/* ここから support_annai */
.support_contents{
  text-align: center;
  background: #F2F4F2;
  padding: 4vw 0;
}
.support_image{
  max-width: 900px;
  margin: 0 auto 4vw;
  padding: 1vw;
  background: #FFF;
}
.support_image:last-child{
  margin: 0 auto;
}

@media screen and (min-width: 1024px){
  .support_contents{
    padding: 3em 0;
  }
}
/* ここまで support_annai */

/* ここから oneday schedule */
.schedule_contents{
  background: #FFF;
  padding: 0 0 2rem;
}
.oneday_title{
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 4vw 0 0;
}
.wrapper {
  max-width: 960px;
  margin: 2em auto 0;
}
.c-timeline__item {
  position: relative;
  display: flex;
  gap: 1rem;
}
.c-timeline__item:last-child .c-timeline__content:before {
  display: none;
}
.c-timeline__content {
  flex: 1;
  position: relative;
  order: 1;
  padding-left: 1.5rem;
  padding-bottom: 2rem;
  line-height: 1.4;
}
.c-timeline__content:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 2px;
  height: 100%;
  width: 2px;
  background-color: lightgrey;
}
.c-timeline__content:after {
  content: "";
  position: absolute;
  left: calc(0px - 11px);
  top: 2px;
  width: 17px;
  height: 17px;
  background-color: #008080;
  z-index: 1;
  border: 2px solid #008080;
  border-radius: 50%;
}
.c-timeline__title {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.c-timeline__image{
  padding: 4vw 8vw 0;
}
.c-timeline__desc {
  color: #555251;
  font-size: 0.8rem;
}

time {
  text-align: center;
  flex: 0 0 60px;
  min-width: 0;
  overflow-wrap: break-word;
  padding-bottom: 1rem;
  font-size: 0.9rem;
}
.after_information{
  background: #FF0;
  font-weight: 500;
  border-radius: 0.3rem;
  padding: 15px;
  max-width: 590px;
  margin: 0 auto;
  font-size: 0.8rem;
}

@media screen and (min-width: 600px) {
  .wrapper {
    margin: 4em auto 0;
  }
  .c-timeline__wrap{
    display: flex;
  }
  .c-timeline__title {
    font-size: 1.1rem;
  }
  .c-timeline__desc{
    width: calc(100% - 200px);
    font-size: 0.9rem;
  }
  .c-timeline__image{
    width: 200px;
    padding: 0 0 0 2vw;
  }
  .oneday_meritttl {
    padding-bottom: 0;
}
}

@media screen and (min-width: 1024px) {
  .oneday_title{
    font-size: 1.6rem;
    padding: 0;
  }
  time {
    text-align: end;
    flex: 0 0 140px;
  }
  .c-timeline__desc{
    width: calc(100% - 240px);
  }
  .c-timeline__image{
    width: 240px;
    padding: 0 0 0 2vw;
  }
}

@media screen and (min-width: 1366px) {
  .c-timeline__title {
    font-size: 1.2rem;
}
.c-timeline__desc{
  font-size: 1rem;
}
time{
  font-size: 1rem;
}
.oneday_image {
  padding: 0 4vw 2vw;
}
.after_information {
  padding: 2rem 3rem;
  max-width: 760px;
  text-align: center;
  margin-top: 2em;
}
}
/* ここまで oneday schedule */

/* ここから FAQ */
.faq_contents{
  background: #F2F2F2;
  padding: 4em 0 2em;
}
.faq_title{
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
.faq_wrap{
  max-width: 800px;
  margin: 0 auto;
  padding: 0 8%;
  line-height: 1.4;
}
.faq_question{
  color: #1c66ac;
  padding: 4vw 0 1vw;
  font-size: 0.9rem;
  font-weight: bold;
}
.faq_answer{
  font-size: 0.8rem;
}
.faq_gaiyou{
  padding: 1vw 1vw 0;
  font-size: 0.8rem;
}
.faq_gaiyou span{
  font-weight: bold;
  font-size: 0.9rem;
}

@media screen and (min-width: 600px) {
  .faq_question{
    padding: 2vw 0 0.5vw;
  }
}

@media screen and (min-width: 1024px) {
  .faq_contents{
    padding: 6vw;
  }
  .faq_wrap{
    line-height: 1.5;
    padding: 1em 0 0;
  }
  .faq_question{
    font-size: 1.1rem;
  }
  .faq_gaiyou span{
    font-size: 1.1rem;
  }
  .faq_answer {
    font-size: 0.9rem;
  }
  .faq_gaiyou {
  font-size: 0.9rem;
  }
}

@media screen and (min-width: 1366px) {
  .faq_contents {
    padding: 6vw 4vw;
  }
  .faq_wrap{
    line-height: 1.6;
  }
  .faq_question{
    font-size: 1.2rem;
  }
  .faq_gaiyou span{
    font-size: 1.2rem;
  }
  .faq_answer {
    font-size: 1rem;
  }
  .faq_gaiyou {
  font-size: 1rem;
  }
}

@media screen and (min-width: 1536px) {
  .faq_title {
    font-size: 1.8rem;
  }
  .faq_contents {
    padding: 4vw 2vw 6vw;
  }
}
/* ここまで FAQ */

/* ここから howto order */
.howto_contents{
  background: #fcfaf5;
}
.howto_title{
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
.howto_order {
  padding: 6vw 0 0;
  text-align: center;
}
.howto_order_title{
  font-size: 1.1rem;
  font-weight: bold;
  color: #CB0011;
}
.howto_order_text{
  font-size: var(--semi-fontsize);
  padding: 0.7rem 0;
  line-height: 1.4;
}

@media screen and (min-width: 600px) {
.howto_order {
  padding: 4vw 0 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.howto_order_title {
  font-size: 1.3rem;
  padding: 1vw 0;
}
.howto_order_text {
  font-size: var(--normal-fontsize);
  padding: 1vw 0 2vw;
}
}

@media screen and (min-width: 1024px) {
.howto_title {
  padding: 1vw 0;
}
.howto_order {
  padding: 3vw 0 0;
}
.howto_order_text {
  padding: 1vw 0 3vw;
}
}

@media screen and (min-width: 1366px) {
  .howto_order {
    padding: 2vw 0 0;
    max-width: 720px;
  }
  .howto_order_text {
    padding: 1vw 0 2vw;
  }
  .howto_title {
    padding: 0;
}
}

@media screen and (min-width: 1536px) {
  .howto_title{
    font-size: 1.6rem;
  }
  .howto_order_title {
    font-size: 1.8rem;
  }
  .howto_order {
    padding: 2vw 0;
    max-width: 800px;
  }
  .howto_order_text {
    padding: 1vw 0 0;
  }
}
/* ここまで howto order */

/* banner area */
.pr__banner{
  padding: 1em 0 0.5em;
}
.pr__banner h2{
  text-align: center;
  font-size: var(--middle-fontsize);
}
.pr__banner figure{
  padding: 2vw 0;
}

@media screen and (min-width: 600px) {
  .pr__banner figure {
    padding: 1.2rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .pr__banner h2{
    padding: 0 0 0.5rem;
  }
  .pr__text{
    width: 670px;
    margin: auto;
    text-align: center;
  }
}

@media screen and (min-width: 1680px) {
  .pr__text{
    width: 800px;
    padding: 1.5rem 0 1rem;
    line-height: 1.9;
  }
}

/* button */
.pr__link__btn a {
  display: block;
  width: 240px;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  font-size: var(--normal-fontsize);
  font-weight: bold;
  position: relative;
  background-image: linear-gradient(to right, #e6eaff 0%, #e2f5fc 100%);
  margin: 1.5em auto 0.5em;
  padding: 1rem 1rem;
}

.pr__link__btn a::before {
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  bottom: 0;
  content: "";
  height: 5px;
  width: 5px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 1px;
  transform: rotate(45deg);
  transition: right .3s;
}

.pr__link__btn a:hover::before {
  right: 25px;
}

@media screen and (min-width: 600px) {
  .pr__link__btn a {
    width: 340px;
    letter-spacing: 0.08em;
    font-size: var(--middle-fontsize);
    line-height: 1.8;
    padding: 1.2rem 0.9rem;
    margin: 2rem auto 1rem;
  }
  .pr__link__btn a::before {
    right: 30px;
  }
  .pr__link__btn a:hover::before {
    right: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .pr__link__btn a {
    width: 400px;
  }
}

@media screen and (min-width: 1680px) {
  .pr__link__btn a {
    width: 420px;
  }
}
/* button */
/* banner area */

/* ここから tokucho */
.tokucho_contents{
  padding: 1em;
background: linear-gradient(120deg, #0d1b2a 0%, #1b263b 50%, #00887f 100%);
}
.intro__kanbai{
  background: #ffff00;
  text-align: center;
  color: #ec2727;
  font-weight: bold;
  padding: 1em;
  margin: 0.5em 0 4em;
  border-radius: 10px;
}
.tokucho_contents h2{
  color: #FFF;
  text-align: center;
  padding: 0 0 2em;
  font-size: var(--big-fontsize);
}
.tokucho_mainwrap{
  padding: 4vw;
  position: relative;
  background: #FFF;
  border-radius: 14px;
}
.tokucho_num{
  position: absolute;
  top: -3%;
  left: -4%;
  transform: rotate(-8deg);
}
.tokucho_num span{
  background: #1c66ac;
  padding: 0.3rem 1.5rem;
  color: #FFF;
  font-weight: bold;
  font-size: 1rem;
}
.tokucho_group_title{
  font-size: 3.4vw;
  font-weight: bold;
  line-height: 1.3;
  padding: 0.5em 0 0.7em;
  text-align: center;
  color: #1c66ac;
}
.tokucho_bottom_text{
  line-height: 1.4;
  font-size: 0.75rem;
}
.tokucho_bottom_image{
  padding: 6vw 8vw 0;
}

.tokucho_subgroup{
  padding: 4vw 4vw 6vw;
  position: relative;
  margin: 3em 0;
  background: #FFF;
  border-radius: 14px;
}
.tokucho_subnum{
  position: absolute;
  top: -2.5%;
  left: -4%;
  transform: rotate(-8deg);
}
.tokucho_subnum span{
  background: #1c66ac;
  padding: 0.3rem 1.5rem;
  color: #FFF;
  font-weight: bold;
  font-size: 1rem;
}
.tokucho_subgroup_title{
  font-size: 3.4vw;
  font-weight: bold;
  line-height: 1.3;
  padding: 0.5em 0 0.7em;
  text-align: center;
  color: #1c66ac;
}
.tokucho_bottom_subimage{
  padding: 2vw 8vw 3vw;
}
.tokucho_bottom_subtext{
  line-height: 1.4;
  font-size: 0.75rem;
}
.tokucho_subgroup:last-child{
  margin: 3em 0 0;
}

@media screen and (min-width: 599px){
.tokucho_group_title {
  font-size: 1.2rem;
}
.tokucho_subgroup_title {
  font-size: 1rem;
}
.tokucho_subwrap{
  display: flex;
  flex-wrap: wrap;
  padding: 2em 0 0;
}
.tokucho_subgroup{
  width: calc(100% / 2 - 1em);
  margin: 2em 1em 2em 0;
  padding: 4vw 2vw 4vw;
}
.tokucho_subgroup:nth-child(2n){
  margin: 2em 0 2em 1em;
}
.tokucho_bottom_image {
  max-width: 500px;
  margin: 0 auto;
  padding: 4vw 8vw 0;
}
.tokucho_bottom_subimage {
  padding: 2vw 4vw 3vw;
}
}

@media screen and (min-width: 1024px){
.width1000{
  max-width: 1000px;
  margin: 0 auto;
}
.intro__kanbai{
  width: 670px;
  margin: 0.5em auto 5em;
  padding: 1.8em 1em;
}
.tokucho_contents h2 {
  font-size: 2rem;
}
.tokucho_group_bottom{
  display: flex;
  padding: 1em 0 0;
}
.tokucho_mainwrap {
  padding: 2em 3em 2.5em;
}
.tokucho_bottom_text {
  width: calc(100% - 400px);
  font-size: var(--normal-fontsize);
}
.tokucho_bottom_image{
  width: 380px;
  padding: 0 0 0 3em;
}
.tokucho_bottom_subtext {
  font-size: var(--normal-fontsize);
}
.tokucho_num {
  position: absolute;
  top: -1.5%;
  left: -2.5%;
}
.tokucho_num span {
  padding: 0.5rem 3.3rem;
  font-size: 1.4rem;
}
.tokucho_subnum {
  position: absolute;
  top: -0.2%;
  left: -5%;
}
.tokucho_subnum span {
  padding: 0.5rem 2.8rem;
  font-size: 1.2rem;
}
.tokucho_group_title {
  font-size: 1.6rem;
}
.tokucho_subgroup_title{
  font-size: 1.4rem;
}
.tokucho_subgroup {
  padding: 2em;
}
.tokucho_bottom_subimage {
  padding: 0.5em 4em 1.5em;
}
}

.airflow__wrap{
  background-color: #fff;
  margin: 4% 6%;
  padding: 6%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05), 0 -2px 15px rgba(255, 255, 255, 0.2) inset;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .airflow__wrap {
    padding: 4% 6%;
    width: 960px;
    margin: 4% auto;
  }
}

@media screen and (min-width: 1440px) {
  .airflow__wrap {
    width: 1000px;
    margin: 3% auto;
    padding: 4%;
  }
}

.airflow__wrap h3{
  color: #1c66ac;
  font-size: var(--middle-fontsize);
  font-weight: bold;
  text-align: center;
  display: block;
  text-shadow: none;
  margin: 0;
}
.airflow__wrap span{
  padding: 0 0 0.7rem;
}
.airflow__wrap img{
  padding: 1rem 0 0.7rem;
}
.airflow__wrap p{
  line-height: 1.4;
  font-size: 0.75rem;
}

@media screen and (min-width: 600px) {
  .airflow__wrap p {
    line-height: 1.6;
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1024px) {
  .airflow__wrap h3{
    font-size: var(--big-fontsize);
  }
  .airflow__wrap img{
    padding: 2rem 0 1rem;
  }
  .airflow__wrap p{
    font-size: var(--middle-fontsize);
    text-align: center;
    max-width: 900px;
    margin: auto;
  }
}

@media screen and (min-width: 1536px) {
  .airflow__wrap img{
    padding: 3rem 0 1.5rem;
  }
  .airflow__wrap p {
    font-size: 1.4rem;
  }
}

/* ここまで tokucho */

/* PR */
.pr__contents{
  text-align: center;
  padding: 0 0 2rem;
}
.pr__contents h2{
  font-size: var(--big-fontsize);
}
.pr__contents img{
  padding: 1rem 0;
}

@media screen and (min-width: 1024px) {
  .pr__contents{
    max-width: 900px;
    margin: auto;
    padding: 2rem 0;
  }
  .pr__contents p{
    padding: 1rem 0 0;
  }
}
/* PR */

/* ここから SHOP INFO */
.shop_infowrap {
  margin: 2rem auto;
}
.shop_list_title {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1vw;
}
.shop_list_title span{
  border-bottom: 2px dotted #232323;
}
.shop_open {
  text-align: center;
  padding: 3vw 0;
  font-size: 0.8rem;
}
.shop_adress_contents {
  padding: 4vw 0 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.7rem;
  line-height: 1.2;
}
.shop_adress_wrap{
  padding: 0 0 6vw;
}
.shop_adress_wrap h3{
  font-size: 0.9rem;
  padding: 0 0 1.5vw;
}
.shop_adress_wrap h3 span {
  color: #FF2323;
}
.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  table-layout: fixed;
}
.shop_table tr {
  background-color: #fff;
  border: 1px solid #bbb;
  padding: 0.35em;
}
.shop_table th, .shop_table td {
  padding: 0.3em 0.8em;
  border-right: 1px solid #bbb;
}
.shop_table .tenpo {
  width: 22%;
}
.shop_table .adress {
  text-align: left;
  width: 50%;
}
.shop_table .detail {
  text-align: left;
  min-width: 30%;
  font-size: var(--semi-fontsize);
  line-height: 1;
}
.shop_table .detail a{
  font-size: var(--semi-fontsize);
}
.shop_i {
  padding: 0.5em 0.5em 0.5em 0;
  color: #1341a8;
  line-height: 0.5;
}

@media screen and (min-width: 768px) {
  .shop_list_title {
    font-size: 1.2rem;
  }
  .shop_open {
    padding: 2vw 0;
    font-size: 0.9rem;
  }
  .shop_adress_contents {
    padding: 2vw 0 0;
    max-width: 620px;
  }
  .shop_adress_wrap h3 {
    padding: 0 0 1vw;
    font-size: 0.9rem;
  }
  .shop_table {
    font-size: var(--semi-fontsize);
  }
}

@media screen and (min-width: 1024px) {
  .shop_list_title {
    padding: 0;
  }
}

@media screen and (min-width: 1366px) {
  .shop_list_title {
    font-size: 1.3rem;
  }
  .shop_open {
    padding: 1vw 0;
    font-size: 0.9rem;
  }
  .shop_adress_wrap h3 {
    padding: 0 0 0.5vw;
    font-size: 1rem;
  }
  .shop_adress_wrap {
      padding: 0 0 2vw;
  }
  .shop_table .detail {
    font-size: 0.75rem;
  }
  .shop_adress_contents {
    padding: 2em 0 0;
    max-width: 720px;
}
}
/* ここまで SHOP INFO */

/* ここから フッター */
.p-footer {
  padding: 20px 60px 10px;
  background-color: lightgray;
}
.p-footer__inner {
  display: block;
}
.p-footer__nav {
  font-size: 0.65rem;
}
.p-footer__navList {
  max-width: 200px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__navItem {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:nth-child(3n) {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
.p-footer__logo {
  width: 100%;
  height: auto;
  max-width: 160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
}
.p-footer__navItem a {
  color: #333;
  font-size: 0.8rem;
}
.p-footer__copyLight {
  text-align: center;
  display: block;
  margin-top: 30px;
  font-size: 0.7rem;
}

@media screen and (min-width: 599px) {
  .p-footer__navList {
    max-width: 100%;
}
.p-footer__navItem:nth-child(3n) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:last-child {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ここまで フッター */


/* go to TOP */
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#CB0011;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #ff3c3c;
  color: #FFF;
}
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 768px) {
  #page-top a{
    opacity: 0.5;
  }
}
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}
.pagetop:hover {
  opacity: .8;
}
/* go to TOP */