@charset "utf-8";
:root {
  --black: #333;
  --white: #fff;
  --main: #8DD1F4;
  --yellow: #FCFBE3;
  --pink: #F15383;
  --purple: #D6A8FF;
  --gra01: linear-gradient(90deg, #b2e8f5, #e0d7f5);
  --gra02: linear-gradient(90deg, #99a4ff, #ffcedd);
  --gra03: linear-gradient(90deg, #ddc3ff, #ff68a7);
  --gra04: linear-gradient(90deg, #FF68A7 20%, #FF99C6 80%, #FFB7E1 100%);
  --font-base: "Zen Maru Gothic", sans-serif;
  --content-width: 780px;
  --section-space: 60px;
}
body {
  font-family: var(--font-base);
  color: var(--black);
  line-height: 1.5;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: 0.08em;
}
main {
  overflow: hidden;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
strong {
  color: var(--pink);
}
/*---------- common ----------*/
[id] { scroll-margin-top: 80px; }
h2, .thanks-title {
  color: #636363;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 25px;
}
h2 .title-gra, .fv-about, 
.thanks-title .title-gra {
  font-weight: bold;
  font-size: 1.875rem;
  text-align: center;
  background: var(--gra02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.font-big {
  font-size: 1.8em;
}
.main-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--content-width);
  width: 92%;
  margin: 0 auto;
}
.link-box {
  text-align: center;
}
a.link {
  color: transparent;
  background: linear-gradient(to right, #2F58FF 50%, var(--pink) 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  white-space: nowrap;
  transition: background-position 0.3s;
}
.link {
  color: transparent;
  background: linear-gradient(to right, var(--pink) 50%, #2F58FF 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  text-decoration: underline;
  display: inline;
  white-space: nowrap;
  transition: background-position 0.3s;
}
header .link {
  text-decoration: none;
}
header .sns-icon-link {
  background-color: #00D0AB;
  border-radius: 10px;
  color: #fff;
  min-width: 120px;
  font-size: .875rem;
  text-align: center;
  line-height: 1.2;
  padding: .5em 0;
}
.strong {
  font-weight: bold;
}
.sns-icon-link, .stock-badge__text {
  transition: transform .3s ease;
}
/*---------- header ----------*/
.header {
  display: flex;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
.hamburger {
  z-index: 9999;
}
.header-logo {
  display: flex;
  align-items: center;
  width: 90%;
  gap: 15px;
  margin: 0 auto;
  justify-content: center;
}
.header-logo-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-menu {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.header-menu > li > a {
  font-size: .85rem;
  display: block;
  width: 100%;
  text-decoration: none;
}
.logo-wrap a {
  line-height: 1.1;
  font-size: 1.125rem;
  color: var(--black);
  font-weight: bold;
  background: none;
  transition: .3s ;
}
.header-nav-item {
  gap:20px;
}
.hamburger span {
  width: 30px;
  height: 4px;
  background-color: var(--main);
  border-radius: .5rem;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 5px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
} 
.header-nav-item a{
  display: flex;
  align-items: center;
  margin: 0 10px;
  gap: 5px;
}
.logo-wrap p,
.header-nav-item p{
  font-size: 0.75rem;
}
.header-nav-item img {
  width: 25px;
  height: auto;
}
.header__nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: transform .4s ease;
  z-index: 90;
}
.header__nav.active {
  transform: translateX(0);
}
.ham-menu-wrap {
  max-width: 780px;
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.ham_wrap {
position: relative;
top: 60px;
width: 100%;
height: calc(100% - 60px);
background-color: #fff;
z-index: 50;
transition: all 0.5s;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
overflow: auto;
gap: 50px;
}
.ham_wrap hr {
  width: 90%;
  margin: 0 auto;
}
.ham-menu-contact, .ham-tabs-lists, .ham-menu-tabs,
.ham-menu-lists, .ham-sns  {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.ham-menu-tabs, .ham-sns {
  flex-direction: row;
  gap: 0;
}
.ham-tabs-lists {
  margin-top: 25px;
}
.ham-solo, .ham-company {
  width: 100%;
  padding: 25px 0;
  background-color: var(--yellow);
}
.ham-company {
  background-color: var(--main);
}
.ham-menu-tabs .ham-company h3 {
  color: #fff;
}
.ham-menu-tabs h3 {
  font-size: 1rem;
}
.ham-menu-tabs li {
  color: #333;
  background-color: #fff;
  border-radius: 5px;
  width: 90%;
  padding: 10px 5px;
}
.ham-common li{
  width: 90%;
  text-align: left;
  border-top: 1px solid #333;
  padding: 25px 0 0 10px;
}
.ham-common li:last-child {
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}
.ham-sns img{
  max-width: 45px;
}




.ham-icon-logo{
  height: 58px;
} 
.ham-main-font {
  font-size: 9px;
}
.ham-sub-nav a {
  margin-left: 2rem;
  color: var(--text-color);
}
.ham-iconText {
  display: flex; 
}
.ham-lp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ham-lp p {
  text-align: center;
}
.ham-footer {
  width: 30%;
  margin: 0 auto;
}
.ham-dotLine{
  margin: 1.5rem 0;
  height: 3px;
  background-size: 12px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-image: linear-gradient(to right, var(--pink) 3px, transparent 3px);
} 
.fv {
  margin-top: 70px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1920 / 800;
}
.fv img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 750px) {
  .fv {
    aspect-ratio: 375 / 400;
  }
}
@media (max-width: 1100px) {
  .ham-lp-img{
    flex-direction: column;
    gap: 20px;
  }
  .ham-lp-img a {
  width: 100%;
  }
}
/*---------- fv ----------*/
.site-title,
.fv-text,
.fv-up > img,
.fv-about,
.fv-subCopy p {
  opacity: 0;
  animation-fill-mode: forwards;
}
.fv-section {
  background-color: var(--yellow);
  margin-top: 70px;
  padding: 50px 0;
}
.fv-up {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fv-up > img {
  animation: fadeInScale 0.9s ease 0.35s forwards;
}
.site-title {
  animation: fadeUp 0.9s ease 0s forwards;
  padding: 10px 0;
  font-size: clamp(1.25rem, -0.31rem + 3.2vw, 2.25rem);
  text-align: center;
  font-weight: bold;
  color: #fff;
  background-image: var(--gra01);
}
.fv-text {
  animation: fadeUp 0.8s ease 0.18s forwards;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
}
.fv-text span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
}
.fv-about {
  animation: fadeRight 0.8s ease 0.55s forwards;
}
.fv-befit {
  display: flex;
  justify-content: space-between;
}

.stock-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32%;
  padding: 25px 0;

  opacity: 0;
  transform: translateX(-24px);
  animation: badgeFadeIn 0.7s ease forwards;
}

.stock-badge:nth-child(1) {
  animation-delay: 0s;
}
.stock-badge:nth-child(2) {
  animation-delay: 0.3s;
}
.stock-badge:nth-child(3) {
  animation-delay: 0.6s;
}
.fv-subCopy p:nth-child(1) {
  animation: fadeRight 0.8s ease 0.7s forwards;
}
.fv-subCopy p:nth-child(2) {
  animation: fadeRight 0.8s ease 0.85s forwards;
}
.fv-subCopy p:nth-child(3) {
  animation: fadeRight 0.8s ease 1s forwards;
}

.stock-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(6px, 6px);
  background: var(--gra01);
  z-index: 0;
}

.stock-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border: 2px solid #222;
  z-index: 1;
}
.stock-badge__text {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.3036rem + 1.4286vw, 1rem);
  text-align: center;
  color: #222;
}

.stock-badge__text span {
  font-size: clamp(1.125rem, 0.4554rem + 2.1429vw, 1.5rem);
}
/* =========================================
   keyframes
========================================= */
@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 動きを減らしたい環境向け */
@media (prefers-reduced-motion: reduce) {
  .site-title,
  .fv-text,
  .fv-up > img,
  .fv-about,
  .fv-subCopy p {
    opacity: 1;
    animation: none;
    transform: none;
  }
}
.fv-subCopy {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
/*---------- about ----------*/
.about {
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
}

.about .site-title {
  padding: 5px 15px;
  margin-right: .1em;
}
.about-text-big {
  font-size: 1.5rem;
}
/*---------- contact ----------*/
.contact-section {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
  background-color: #D6F3FE;
  padding-bottom: 120px;
}
.contact-section::after,
#contacts::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 50px;
  background: url("../img/top/bg_wave.svg") no-repeat center bottom / cover;
  pointer-events: none;
}
.contact-wrap {
  width: 100%;
}
.contact-btn {
  display: block;
  max-width: 450px;
  width: 90%;
  padding: 20px 0;
  margin: 0 auto;
}
.contact-btn .stock-badge__text{
  text-align: center;
  background: var(--gra03);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-btn .stock-badge__text span {
  font-size: 1.875rem;
} 
.contact-section .stock-badge::after {
  border: none;
  background: var(--gra02);
}
.contact-section .stock-badge::before {
  border: solid 1px #333;
}
#contact::after {
  background: none;
}
#contact {
  background-color: var(--yellow);
  max-width: 780px;
  margin: 0 auto;
}

/*---------- contact form ----------*/
#contacts {
  position: relative;
  padding: 60px 0 100px;
  background-image: linear-gradient(180deg, #FFFDDF 0%, #FFE7CB 42%, #FFF6F4 100%);
}
#contacts .contact-section {
  background-color: var(--yellow); 
  padding-bottom: 0 !important;
}
.form {
  width: min( calc(100% - 40px), 600px);
  margin: 0 auto;
}
.form-label, .contacts-tel p {
  font-weight: 700;
}
.form-label {
  min-width: 200px;
  padding-bottom: .5em;
}
.form-required {
  color: var(--color_accent);
}
.contacts-tel {
  display: none;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}
.contacts-tel p {
  margin: 40px 0 20px 0;
}
.form-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.form-submit {
  margin: 40px auto 0;
  width: 90%;
}
.btn_form {
  background-color: var(--pink);
  color: #fff !important;
  font-size: 1.25rem;
  letter-spacing: 1em;
  width: 100%;
  border: 1px solid #333;
  text-align: center;
  padding: 1rem;
  box-shadow: 6px 6px #333;
  transition: all 0.2s ease;
  border-radius: 500px;
}
.form-input_small, .form-input_large {
  background-color: #fff;
  padding: .5em 1em;
  border: none;
  border-radius: 5px;
}
.form-input_small {
  width: 400px;
  height: 40px;
}
.form-input_large {
  width: 100%;
  height: 200px;
}
.banner_wrap {
  display: flex;
  gap: 20px;
  position: relative;
  margin: 0 auto 40px;
}
.banner {
  width: calc( calc(100% - 20px) / 2 );
  transition: .2s;
}

.btn_top {
  position: absolute;
  right: -90px;
  bottom: 0px;
}

@media screen and (max-width: 1080px) {
  .banner_wrap {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  
  .btn_top {
    position: relative;
    right: initial;
    bottom: initial;
  }
}

@media screen and (max-width: 600px) {
  .form-input_small {
    width: 100%;
  }
  
  .banner, .banner img {
    width: 100%;
  }
}
/*---------- thanks mail ----------*/
.thanks_bg .header-logo {
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  justify-content:center;
  height: 70px;
}
.thanks_wrap {
  background-color: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 80px 0;
  margin-top: 30px;
} 
.tanks-text-box {
  width: min(780px, 90%);
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  line-height: 1.8;
}
.thanks_wrap .btn_form {
  width: min(500px, 90%);
}
/*---------- result ----------*/
.result {
  text-align: center;
}
.result-text-big {
  font-size: 1.125rem;
  font-weight: bold;
}
.result-text-big .result-text-big {
  font-size: 1.5rem;
}
/* スライダー全体 */
.result-slider-wrapper {
  display: flex; 
  overflow: hidden; 
  max-height: 180px;
  margin-top: 25px;
}
.result-slider {
  animation: scroll-left 30s infinite linear .5s both;
  display: flex; 
  align-items: center;
}
.result-slide {
  width: calc(100vw / 6);
  min-width: 150px;
  /* width: calc(100vw / 3); */
  margin-right: 45px;
}
.result-slide img {
  display: block;
  width: 100%;
  max-width: 180px;
  object-fit: contain;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*---------- branch ----------*/
.branch-section {
  position: relative;
  background: var(--gra01);
  padding: 120px 0 50px;
}
.branch-section::before,
footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 50px;
  background: url("../img/top/bg_wave_under.svg") no-repeat center bottom / cover;
  pointer-events: none;
}
.tabs {
  margin-top: 50px;
  max-width: 780px;
  width: 90%;
  margin: 0 auto;
}
.tab_item {
  width: calc((100% / 2));
  height: 80px;
  border-bottom: 3px solid #fff;
  line-height: 80px;
  font-size: 1.125rem;
  text-align: center;
  background-color: #D6F3FE;
  color: #777;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
  border-radius: 10px 10px 0 0;
}
input[name="tab_item"] {
  display: none;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  width: 100%;
  padding: 50px 0 40px;
  clear: both;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 30px 30px;
}
.tab-sec-wrap {
  max-width: 600px;
  margin: 0 auto;
}
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}
.tabs input:checked + .tab_item {
  background-color: #fff;
  color: var(--pink);
}
.tab-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--section-space);
}

/*---------- problem ----------*/
.problem-list {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  width: min(600px, 100%);
  margin: 0 auto;
}
.problem-list .speechBubble {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 24px 16px;
  border: 3px solid #333333;
  border-radius: 9999px;
  background-color: #F4F1FC;
  text-align: center;
  margin-right: 30%;
  margin-top: 25px;
}
.problem-list .speechBubble-left {
  background-color: #D6F3FE;
  margin-right: 0;
  margin-left: 30%;
}
.problem-list .speechBubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  border-style: solid;
  border-color: #333333 transparent transparent;
  translate: -50% 100%;
}
.problem-list .speechBubble-left::before {
  left: 80%;
}
.problem-list .speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #F4F1FC transparent transparent;
  translate: -50% 100%;
  filter: drop-shadow(3px 2px #333);
}
.problem-list .speechBubble-left::after {
  left: 80%;
  border-color: #D6F3FE transparent transparent;
}

/*---------- benefits ----------*/
.benefits-lists {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.point-title {
  display: inline-block;
  padding: .25em .8em;
  text-align: center;
  font-size: .9rem;
  color: #fff;
  border: 1px solid #333;
  box-shadow: 8px 8px #333;
  background-image: var(--gra04);
}
.point-title span {
  font-size: 1.125rem;
}
.point-item {
  position: relative;
}
.point-item {
  padding: 1.8em;
  background-color: #fff;
  border: 1px solid #333;
  box-shadow: 6px 6px #333;
  border-radius: 0 0 0 20px;
  margin-right: 3px;
}
.point-textBox p {
  margin-top: 15px;
}
.point-img {
  border-radius: 8px;
}
/*---------- voice ----------*/
.voice-lists {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.voice-item {
  position: relative;
}
.voice-item picture {
  width: 80%;
  margin-left: 20%;
}
.voice-item-title {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  position: absolute;
  bottom: -6%;
  border: 1px solid #333;
  box-shadow: 6px 6px var(--main);
  padding: 1.5em 1em;
  width: 80%;
}
.voice-item-right picture {
  margin-left: 0;
  margin-right: 20%;
}
.voice-item-right .voice-item-title {
  right: 0;
  box-shadow: 6px 6px var(--purple);
}
.voice-item-text {
  margin-top: 60px;
}
.voice-user-info {
  padding-bottom: 15px;
  border: 1px solid #333;
  padding: 1em;
  margin-bottom: -1px;
  white-space: nowrap;
}
.user-voice {
  border: 1px solid #333;
  padding: 1em;
  border-radius: 0 0 0 20px;
}
/*---------- campaign ----------*/
.campaign-section {
  text-align: center;
  font-size: 1.125rem;
}
.campaign-section .wrap {
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 20px;
}
.campaign-section .wrap div {
  min-width: 350px;
  width: calc((100% / 2) - 10px);
}

/*---------- scene ----------*/
.swiper-wrapper {
  width: 100%;
}
.swiper-pagination-bullet-active {
  background: var(--pink);
}
.scene-section .swiper {
  max-width: 780px;
  width: 90%;
  padding-bottom: 50px;
}
.scene-speechBubble {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: .45em 1em;
  border: 1px solid #333;
  background-color: #ffffff;
  text-align: center;
  line-height: 1.5;
  box-shadow: 6px 6px var(--pink);
}
.scene-speechBubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  border-style: solid;
  border-width: 0 8.9px 16px 8.9px;
  border-color: transparent transparent #333;
  translate: -50% -100%;
}
.scene-speechBubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  border-style: solid;
  border-width: 0 7.8px 15px 7.8px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}

/*---------- coordinate ----------*/
.category-nav {
  max-width: 780px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.row {
  display: grid;
  justify-items: center;
}
.row-3 {
  grid-template-columns: repeat(3, 1fr);
}
.row-4 {
  grid-template-columns: repeat(4, 1fr);
}
.nav-item {
  min-width: 100px;
  width: 33%;
  text-decoration: none;
  color: #333;
  text-align: center;
}
.code-icon-bg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  border: 1px solid #333;
}
.nav-item img {
  max-width: 70px;
  transition: .3s;
}
.nav-item span {
  display: block;
  margin-top: 8px;
  white-space: nowrap;
}

/*---------- code ----------*/
.coordinate {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.code-imges {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid #333;
}
.code-imges picture {
  width: 50%;
  outline: 1px solid #333;
}
.code-title {
  font-size: 1.125rem;
  background-image: linear-gradient(90deg, #A5F0FB, #D6B4FF);
  text-align: center;
  max-width: 280px;
  color: #fff;
  padding: 5px 0;
  margin: 0 auto;
  box-shadow: 6px 6px #333;
  margin-bottom: 35px;
}
.more-btn {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  display: block;
  margin-top: 50px;
  padding: 1.5em 0;
}
.more-btn .stock-badge__text{
  font-size: 1.125rem;
  text-align: center;
  background: var(--gra03);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.code-section .stock-badge::after {
  border: none;
  background: var(--gra02);
}
.code-section .stock-badge::before {
  border: solid 1px #333;
}

/*---------- size ----------*/
.size-table {
  width: 90%;
  max-width: 780px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #333;
}
.size-table tr {
  border-bottom: 1px solid #333;
}
.header-row th {
  padding: 15px;
  text-align: center;
  background-color: #fff;
}
.title-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: bold;
}
.mens-size .title-content {
  color: #66A8FF;
}
.kids-size .title-content {
  color: #FFC750;
}
.title-content img {
  height: 24px;
  width: auto;
}
/* 2行目以降のスタイル */
.label-cell {
  width: 40%;
  background-color: #F4F1FC; /* 薄い紫 */
  font-weight: bold;
  text-align: center;
  padding: 20px;
  border-right: 1px solid #333;
  font-size: 1rem;
}
.content-cell {
  width: 60%;
  background-color: #fff;
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}
.small-text {
  font-size: 0.875rem;
  display: block;
}
header .small-text {
  color: #636363;
  font-size: 12px; 
  font-weight: 500;
}
#size .asterisk {
  text-align: center;
}

/*---------- flow ----------*/
.flow-item h3 {
  border: 1px solid #333;
  text-align: center;
  padding: .35em;
  width: 30%;
  box-shadow: 5px 5px var(--main);
}
.flow-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.flow-text img {
  width: 15%;
}
.flow-text div {
  width: 77%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*---------- access ----------*/
.access-map iframe {
  max-width: 780px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 5 / 2;
}
.shop-list-wrap h3{
color: #2F58FF;
font-size: 1.25rem;
}
.shop-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.shop-list-text p {
  white-space: nowrap;
}
.shop-list-wrap {
  gap: 10px;
  margin-top: 25px;
}
.shop-list-item {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
}
.shop-list-icons {
  display: flex;
  gap: 25px;
}
.shop-list-icons img {
  max-width: 45px;
}
.tel {
  display: inline-block; /* インラインブロックにする */
  white-space: nowrap;
}
/*---------- faq ----------*/
.faq_inner {
  gap: 10px;
}
details > summary {
  list-style: none !important;
  display: block;          /* これが効くこと多い */
  cursor: pointer;
}
details > summary::-webkit-details-marker {
  display: none !important;
}
details > summary::marker {
  content: "" !important;
}
.details-summary_q,
.details-summary_a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  min-width: 35px;
  aspect-ratio: 1/ 1;
  background-image: var(--gra01);
  padding-bottom: 2px;
}
.details-summary_a {
background: #fff;
color: var(--pink);
}
#faq .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faq-content_text {
  align-items: baseline !important;
  justify-content: flex-start !important;
}
.summary_question_text,
.faq-content_text {
  padding: 15px 0;
  align-items: center;
}
.faq-left-space {
  padding-left: 10px;
  display: block;
}

/*---------- company ----------*/
#company h2 {
  margin-bottom: 40px;
}
.company-img {
  max-width: 500px;
  margin: 0 auto;
}
.tbl-company {
  width: 100%;
  border-collapse: collapse; 
}
.tbl-company tr {
  border-bottom: 1px solid #333;
}
.tbl-company tr:last-child {
  border-bottom: none;
}
.tbl-company th,
.tbl-company td {
  padding: 15px 10px;
  text-align: left;
}
.tbl-company th {
  width: 16%;
  white-space: nowrap;
}
.tbl-company td {
  width: 84%;
}

/*---------- footer ----------*/
/*----------------------------*/
footer {
  position: relative;
  margin-top: var(--section-space);
}
.footer-wrap{
  padding: 80px 0 50px;
  max-width:1280px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}
.footer-wrap h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
}
.footer-wrap h2,
.footer-wrap p{
  margin:0;            /* ブラウザ標準marginを消す */
  text-align:center;
  white-space:nowrap;  /* 使うならここに */
}
.footer-bg {
  background-image: var(--gra01);
}
.copyright {
  font-size: .75rem;
  text-align: center;
  padding: 25px 0;
  background-color: #333;
  color: #fff;
}
.ham-sns {
  display: flex;
  gap: 50px;
}

/*---------- animation ----------*/
/*----------------------------*/

.problem-list .speechBubble {
  opacity: 0;
  transform: translateY(20px) translateX(30px);
}

.problem-list .speechBubble.speechBubble-left {
  transform: translateY(20px) translateX(-30px);
}

/* 表示アニメーション */
.problem-list .speechBubble.is-animated {
  animation: bubbleFadeInRight 0.7s ease forwards;
}

.problem-list .speechBubble.speechBubble-left.is-animated {
  animation: bubbleFadeInLeft 0.7s ease forwards;
}

@keyframes bubbleFadeInRight {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@keyframes bubbleFadeInLeft {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@media screen and (max-width:1280px) {
  .pc-only {
    display: none;
  }
  #header .sp-only {
    display: block;
  }
  .header-logo {
    justify-content: space-between;
  }
}
@media screen and (max-width:780px) {
  .pc-only {
    display: none;
  }
  .problem-list .speechBubble {
    margin-right: 0;
  }
  .problem-list .speechBubble-left {
    margin-left: 0;
  }
  .tab_item {
    font-size: .95rem;
  }
  .tab_content {
    padding: 50px 20px 20px;
  }
  .campaign-section .wrap {
    justify-content: center;
  }
  .tbl-company th {
    display: block;
    white-space: nowrap;
    padding: 15px 0;
  }
  .tbl-company th {
    padding: 15px 0;
  }
  .flow-item h3 {
    width: 100%;
    padding: 1em;
  }
  .flow-text {
    justify-content: flex-start;
    gap: 25px;
  }
  .point-item  {
    padding: 1em;
  }
}
@media screen and (max-width:500px) {
  .header-logo-right {
    gap: 12px;
  }
  .sp-only {
    display: block;
  }
  .voice-item-title {
    font-size: .95rem;
    width: 85%;
    padding: 1em 0;
  }
  .voice-item picture {
    width: 85%;
    margin-left: 15%;
  }
  .voice-item-right picture {
    margin-left: 0;
    margin-right: 15%;
  }
  .voice-user-info {
    white-space: normal;
  }
  .voice-item-text {
    margin-top: 40px;
  }
  .row-4 .nav-item {
    width: 24%;
  }
  .nav-item {
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .code-icon-bg {
    max-width: 60px;
  }
  .nav-item img {
    width: min(40px, 80%);
  }
  .access-map iframe {
    aspect-ratio: 1 / 1;
  }
}
/*---------- hover ----------*/  
@media (hover: hover) and (pointer: fine) {
  a:hover {
    cursor: pointer;
    background-position: 0 100%;
  }
  .link:hover {
    background-position: 0 100%;
  }
  .tab_item:hover, .banner:hover {
    opacity: 0.75;
  }
  .btn_form:hover {
    transform: translate(6px, 6px); 
    box-shadow: 0 0 transparent; 
  }
  .sns-icon-link:hover, a.stock-badge__text:hover,
  .logo-wrap a:hover {
    transform: scale(.95);
  }
  .nav-item img:hover {
    transform: scale(.75);
  }
}