/*=== GOOGLE FONTS ===*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=== GOOGLE FONTS ===*/
:root {
  /*=== Colors ===*/
  --body-color__000: #ffffff;
  --body-color__001: #fefbea;
  --body-color__002: #ebfafc;
  --body-color__003: #fcebf9;
  --body-color__004: #ffffff94;
  --body-color__005: #b9d07e;
  --body-color__006: #fbb42c;
  --body-color__007: #f4f4f4;

  --part-color__000: #d95e59;
  --part-color__001: #7c492a;
  --part-color__002: #e4a096;
  --part-color__003: #90cad2;
  --part-color__004: #ffeb3b;
  --part-color__005: #f5dacc;
  --part-color__006: #a4b882;
  --part-color__007: #29abe2;
  --part-color__008: #000000;
  --part-color__009: #acd4da;
  --part-color__010: #90cad2;
  --part-color__011: #754c24;
  --part-color__012: #e6e6e6;
  --part-color__013: #666666;
  --part-color__014: #d8f6fa52;
  --part-color__015: #a7cfc7;
  --part-color__016: linear-gradient(270deg, #2273f0, #16143d);
  --part-color__017: #2273f0;

  --text-color__000: #000000;
  --text-color__001: #333333;
  --text-color__002: #d95e51;
  --text-color__003: #603813;
  --text-color__004: #030000;
  --text-color__005: #ffffff;
  --text-color__006: #d95e59;
  --text-color__007: #12212d;
  --text-color__008: #384755;
  --text-color__009: #1e1e1e;
  --text-color__010: #1A1A1A;
  --text-color__011: #2E3191;

  /*=== Font and typography ===*/
  --body-font: "Inter", sans-serif;
  --body-font__zen-maru-gothic: "Zen Maru Gothic", serif;
  --body-font__noto-sans-japanese: 'Noto Sans JP', sans-serif;
  --body-font__m-plus-1: 'M PLUS 1', sans-serif;
  --body-font__open-sans: 'Open Sans', sans-serif;
  --body-font__raleway: 'Raleway', sans-serif;

  /*= Font size =*/
  --font-size-8:0.5rem;
  --font-size-8h:0.53125rem;
  --font-size-9:0.5625rem;
  --font-size-10:0.625rem;
  --font-size-11:0.6875rem;
  --font-size-12:0.75rem;
  --font-size-13:0.8125rem;
  --font-size-14:0.875rem;
  --font-size-15:0.9375rem;
  --font-size-16:1rem;
  --font-size-17:1.0625rem;
  --font-size-18:1.125rem;
  --font-size-19:1.1875rem;
  --font-size-20:1.25rem;
  --font-size-21:1.3125rem;
  --font-size-22:1.375rem;
  --font-size-23:1.4375rem;
  --font-size-24:1.5rem;
  --font-size-25:1.5625em;
  --font-size-26:1.625rem;
  --font-size-27:1.6875rem;
  --font-size-28:1.75rem;
  --font-size-29:1.8125rem;
  --font-size-30:1.875rem;
  --font-size-31:1.9375rem;
  --font-size-32:2rem;
  --font-size-33:2.0625rem;
  --font-size-34:2.125rem;
  --font-size-35:2.1875rem;
  --font-size-36:2.25rem;
  --font-size-37:2.3125rem;
  --font-size-38:2.375rem;
  --font-size-39:2.4375rem;
  --font-size-40:2.5rem;
  --font-size-42:2.625rem;
  --font-size-44:2.75rem;
  --font-size-46:2.875rem;
  --font-size-56:3.5rem;
  --font-size-76:4.75rem;
  --font-size-96:6rem;

  /*=== z index ===*/
  --z-001: 1;
  --z-002: 2;
  --z-003: 3;
  --z-004: 4;
  --z-005: 5;
  --z-006: 6;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*=== BASE ===*/
* {
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: var(--font-size-20);
  background-color: var(--body-color__000);
  color: var(--text-color__000);
  overflow-x: hidden;
  padding-top: 80px;
}
body, html {
  width: 100%;
  max-width: none;
}
h1, h2, h3, h4 {
  color: var(--text-color__000);
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
}
a{
  text-decoration: none;
}

@media (max-width: 379px){
  body {
    padding-top: 52px;
  }
}
@media (min-width: 380px) and (max-width: 499px) {
  body {
    padding-top: 60px;
  }
}
/*=== Shared Parts ===*/
.share__section-header {
  margin-bottom: 40px;
}
.share__section-en-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #666;
  margin-bottom: 5px;
}
.share__section-jp-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
/* 
NAV =========================================================================*/
header {
  z-index: var(--z-fixed);
  position: fixed;
  top: 0;
  width: 100%;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--body-color__000);
  height: 80px;
}
.logo-group {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 30px;
}
.logo-single {
  display: block;
  height: 70%;
  width: auto;
}
.logo-single img {
  height: 100%;
  width: auto;
}
.menu-list {
  display: flex;
  flex-direction: column; /* ← 上下2行に並べる */
  align-items: center;
  justify-content: center;
  color: var(--text-color__000);
  font-family: var(--body-font__noto-sans-japanese);
  text-decoration: none;
  line-height: 1.2;
  padding: 0 10px;
}

/* 日本語テキスト */
.menu-jp {
  font-size: var(--font-size-14);
}

/* 英語テキスト */
.menu-en {
  font-size: calc(var(--font-size-14) * 0.7); /* 日本語より少し小さく */
  opacity: 0.7; /* 少し薄くしてサブ的に見せる */
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* hover時の見た目（必要に応じて） */
.menu-list:hover .menu-jp,
.menu-list:hover .menu-en {
  opacity: 0.5;
}
.contact-button {
  background: var(--part-color__016);
  color: var(--text-color__005);
  padding: 16px 10px;
  font-size: var(--font-size-12);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* ← ヘッダーの高さに合わせる */
  padding: 0 20px; /* ← 横方向だけに余白を取る */
  text-decoration: none;
}
header .logo:hover,
.menu > li > a:hover {
  opacity: 0.5;
}
.menu {
  display: flex;
  align-items: stretch;
  height: 100%;
}
/* 各メニュー項目（仕切り線追加） */
.menu li {
  display: flex;
  align-items: center;
  position: relative;
}
/* 仕切り線 */
.menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: #ccc;
  opacity: 0.6;
}
/* 「ブログ」と「お問い合わせ」間の線を消す */
.menu li:nth-last-child(2)::after {
  display: none;
}
.menu li a:hover::after {
  width: 100%;
}
.menu li a:hover::after {
  display: none;
}
.open-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--part-color__016);
  color: var(--text-color__005);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.open-menu .menu-icon {
  font-size: 28px;
  line-height: 1;
}
.close-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  color: var(--part-color__016);
  font-size: var(--font-size-24);
  z-index: 200;
  cursor: pointer;
}
.menu li {
  position: relative;
}
.menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 30%;
  background-color: var(--body-color__000);
  width: max-content;
  padding: 0;
  list-style: none;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: var(--z-fixed);
}
.menu li:hover ul {
  display: block;
}
.menu li a.active::after {
  width: 0%;
}
.menu li a:not(.active):hover::after {
  width: 100%;
}
#check {display: none;}

@media (max-width: 379px){
  .logo-group {
    padding: 10px 20px;
  }
  .logo-single {
    height: 30px;
  }
}
@media (min-width: 380px) and (max-width: 499px) {
  .logo-group {
    padding: 10px 20px;
  }
  .logo-single {
    height: 40px;
  }
}
@media (max-width: 999px){
  .menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: var(--body-color__000);
    transition: all 0.2s ease-in-out;
  }
  .menu li {
    margin-top: 40px;
    text-align: center;
    display: flow-root;
  }
  .menu-jp {
    font-size: var(--font-size-18);
  }
  .menu-en {
    font-size: calc(var(--font-size-18) * 0.7);
  }
  .close-menu {display: block;}
  #check:checked ~ .menu {right: 0;}
  .menu li ul {
    display: block; 
  }
  .menu > li > ul {
    padding-top: 0;
  }
  .menu ul {
    display: block;
  }
  .menu li ul {
    box-shadow: none;
    left: 0;
  }
  .menu li ul li {
    margin: 0;
    padding: 4px 0;
  }
  .menu {
    margin-bottom: 130px;
  }
  .menu {
    margin-left: 80px;
    display: none;
  }
  #check:checked ~ .menu {
    display: block;
  }
  .menu li a:hover {
    background-color: initial;
  }
  .menu li a.active {
    text-decoration: none;
  }
  .contact-button {
    width: 130px;
    margin: 0 auto;
    padding: 16px 10px;
    color: var(--text-color__005);
    border-radius: 10px;
    font-size: 14px;
  }
  .menu li a.contact-button:hover {
    color: var(--part-color__016);
  }
}
@media (min-width: 1000px) {
  .open-menu,
  .close-menu {
    display: none !important;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .menu li {
    padding-left: 10px;
  }
}

/*
Mainvisual =========================================================================*/
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mv {
  background-color: var(--body-color__000);
  width: 100vw;
  height: 72vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-color__005);
  margin-bottom: 0;
}

.mv .mv-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mv .mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv .mv-title {
  position: absolute;
  top: 30%;
  left: 33%;
  transform: translate(-70%, -70%);
  font-size: var(--font-size-56);
  font-weight: 800;
  font-style: normal;
  color: var(--text-color__005);
  margin: 0;
  z-index: 10;
}

.mv .mv-text {
  position: absolute;
  top: 50%;
  left: 29%;
  transform: translate(-95%, -95%);
  font-size: var(--font-size-22);
  font-weight: 600;
  font-style: normal;
  color: var(--text-color__005);
  margin: 0;
  z-index: 10;
}

/* ボタン */
.main-btn {
  position: absolute;
  top: 72%;
  left: 30%;
  transform: translate(-95%, -95%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 2.4rem;
  font-size: var(--font-size-16);
  font-weight: 600;
  color: var(--text-color__005);
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 枠線部分（グラデーションボーダー） */
.main-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px; /* 枠線の太さ */
  background: var(--part-color__016, linear-gradient(270deg, #2273f0, #16143d));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

/* 背景透明 */
.main-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -2;
}

/* アイコン */
.main-btn i {
  font-size: var(--font-size-22);
  background: linear-gradient(270deg, #2273f0, #16143d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* ← アイコンをグラデにする肝 */
  transition: all 0.3s ease;
}

/* ホバー時：塗りつぶし */
.main-btn:hover {
  color: var(--text-color__005);
  background: linear-gradient(270deg, #2273f0, #16143d);
  border-color: transparent;
}

.main-btn:hover i {
  -webkit-text-fill-color: var(--text-color__005);
}





@media (max-width: 379px) {
  .mv{
    height: 28vh;
  }
  .mv .mv-text{
    font-size: var(--font-size-8);
    transform: translate(-90%,-90%);
    top: 18%;
    left: 42%;
  }
  .mv .mv-title{
    font-size: var(--font-size-14);
    left: 39%;
  }
  .mv a.btn-c {
    font-size: var(--font-size-8);
    max-width: 160px;
    padding: 0.2rem 1rem;
    top: 43%;
    left: 35%;
  }
  .mv a.btn-c i.fa-regular {
    font-size: var(--font-size-12);
    margin-right: 1rem;
  }
}
@media (min-width: 380px) and (max-width: 429px) {
  .mv{
    height: 28vh;
  }
  .mv .mv-text{
    font-size: var(--font-size-8);
    transform: translate(-90%,-90%);
    top: 18%;
    left: 38.5%;
  }
  .mv .mv-title{
    font-size: var(--font-size-14);
    left: 36%;
  }
  .mv a.btn-c {
    font-size: var(--font-size-8);
    max-width: 180px;
    padding: 0.2rem 1rem;
    top: 43%;
    left: 36%;
  }
  .mv a.btn-c i.fa-regular {
    font-size: var(--font-size-12);
    margin-right: 1rem;
  }
}
@media (min-width: 430px) and (max-width: 499px) {
  .mv{
    height: 32vh;
  }
  .mv .mv-text{
    font-size: var(--font-size-8);
    transform: translate(-90%,-90%);
    top: 19%;
    left: 38.5%;
  }
  .mv .mv-title{
    font-size: var(--font-size-14);
    left: 36%;

  }
  .mv a.btn-c {
    font-size: var(--font-size-8);
    max-width: 180px;
    padding: 0.2rem 1rem;
    top: 43%;
    left: 36%;
  }
  .mv a.btn-c i.fa-regular {
    font-size: var(--font-size-12);
    margin-right: 1rem;
  }
}
@media (min-width: 500px) and (max-width: 600px) {
  .mv{
    width: 100%;
    height: 36vh;
  }
  .mv .mv-text{
    font-size: var(--font-size-10);
    transform: translate(-90%,-90%);
    top: 17%;
    left: 38.5%;
  }
  .mv .mv-title{
    font-size: var(--font-size-20);
    left: 40%;
  }
  .mv a.btn-c {
    font-size: var(--font-size-12);
    max-width: 260px;
    padding: 0.3rem 1rem;
    top: 43%;
    left: 40%;
  }
  .mv a.btn-c i.fa-regular {
    font-size: var(--font-size-16);
  }
}
@media (min-width: 601px) and (max-width: 767px) {
  .mv{
    width: 100%;
    height: 42vh;
  }
  .mv .mv-text{
    font-size: var(--font-size-10);
    transform: translate(-90%,-90%);
    top: 17%;
    left: 38.5%;
  }
  .mv .mv-title{
    font-size: var(--font-size-20);
    left: 40%;
  }
  .mv a.btn-c {
    font-size: var(--font-size-12);
    max-width: 260px;
    padding: 0.3rem 1rem;
    top: 43%;
    left: 40%;
  }
  .mv a.btn-c i.fa-regular {
    font-size: var(--font-size-16);
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .mv{
    height: 54vh;
  }
  .mv .mv-text{
    font-size: var(--font-size-14);
    top: 18%;
    left: 37.5%;
  }
  .mv .mv-title{
    font-size: var(--font-size-28);
    left: 37%;
  }
  .mv a.btn-c {
    font-size: var(--font-size-14);
    max-width: 350px;
    padding: 0.5rem 2.2rem;
    top: 43%;
    left: 36%;
  }
  .mv a.btn-c i.fa-regular {
    font-size: var(--font-size-20);
  }
}
@media (min-width: 1000px) and (max-width: 1235px) {
  .mv{
    height: 62vh;
  }
  .mv .mv-text{
    font-size: var(--font-size-18);
    left: 38%;
  }
  .mv .mv-title{
    font-size: var(--font-size-32);
  }
  .mv a.btn-c {
    font-size: var(--font-size-18);
    max-width: 400px;
  }
}

/*
Footer =========================================================================*/
.footer {
  position:relative;
  text-align:center;
  background-color: var(--body-color__000);
}
.footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px;
  min-height:100px;
  max-height:150px;
}
.footer-content {
  position:relative;
  height:5vh;
  text-align:center;
  background-color: var(--body-color__005);
}
.footer-text{
  color: var(--text-color__005);
  font-size: var(--font-size-14);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
@media (max-width: 768px) {
  .footer-waves {
    height:40px;
    min-height:40px;
  }
  .footer-content {
    height:15vh;
  }
  h1 {
    font-size: var(--font-size-24);
  }
}
@media (max-width: 500px) {
  .footer-content {
    height:15vh;
  }
  .footer-text {
    font-size: var(--font-size-10);
    margin-bottom: 40px;
  }
}

/*
News =========================================================================*/
.news-section {
  background: linear-gradient(270deg, #2273f0, #16143d); /* var(--part-color__016) の青グラデ風 */
  padding: 20px 10%;
  color: #fff;
  font-family: var(--body-font__zen-maru-gothic);
}
/* コンテンツを1行2列で横並び */
.news-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* スマホ対応で折り返し可能 */
  gap: 10px;
}
/* 左側：テキストリンク */
.news-item {
  color: #fff;
  text-decoration: none;
  font-size: var(--font-size-16);
  transition: opacity 0.3s ease;
}
.news-item:hover {
  opacity: 0.7;
}
.news-label {
  font-weight: bold;
  margin-right: 6px;
}
.news-date {
  opacity: 0.9;
  margin-right: 6px;
}
/* 右側：ボタン */
.news-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1.5px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: var(--font-size-16);
  transition: all 0.3s ease;
  background: transparent;
}
.news-button i {
  font-size: var(--font-size-18);
  color: #fff;
  transition: color 0.3s ease;
  padding-right: 20px;
}
.news-button:hover {
  background: #fff;
  color: #16143d;
}
.news-button:hover i {
  color: #16143d;
}
/* スマホ対応 */
@media (max-width: 768px) {
  .news-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-button {
    align-self: flex-end;
  }
}

/*
Service card =========================================================================*/
#quality {
}
.card-group {
  margin-left: auto;
  margin-right: auto;
  max-width: 1220px;
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.card {
  width: 390px;
  height: 250px;
  border-radius: 8px;
  overflow: visible;
}
.card-group .card:nth-child(3n) {
  margin-right: 0;
}

@media (min-width: 832px) and (max-width: 1312px) {
  .card-group {
    justify-content: center;
  }
  .card-group .card:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 500px) and (max-width: 832px) {
  .card-group .card {
    margin-right: 0;
  }
}
@media (max-width: 499px) {
  .card-group {
    gap: 50px;
  }
  .card-group .card {
    margin-right: 0;
  }
}

.card__imgframe {
  position: relative;
  width: 390px;
  height: 140px;
  box-sizing: border-box;
}
.photo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__textbox {
  max-width: 390px;
  height: auto;
  padding: 20px 0;
  background: transparent;
  box-sizing: border-box;
}
.card__textbox > * + * {
  margin-top: 26px;
}
.card__titletext {
  position: relative;
  padding-left: 24px; /* 左側にスペースを作る */
  font-size: var(--font-size-20);
  font-family: var(--body-font__noto-sans-japanese);
  font-weight: bold;
  line-height: 125%;
  letter-spacing: 0.2em;
  color: var(--text-color__000);
}
.card__titletext::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;     /* 横棒の長さ */
  height: 2px;     /* 横棒の太さ */
  background-color: var(--part-color__005); /* 既存カラー使用 */
  transform: translateY(-50%);
  border-radius: 2px;
}
.card__overviewtext {
  font-size: var(--font-size-14);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 0.1em;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin-left: 24px
}

/*
Activity area =========================================================================*/
.section-location_description {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  margin-left: 130px;
  margin-right: 130px;
}
.section-location {
  text-align: center;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}
.map-wrapper {
  width: 100vw;
  height: 450px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
}
.location-button-wrapper {
  margin-top: 20px;
  text-align: center;
}
.location-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 18px;
  color: #16143d;
  text-decoration: none;
  background: white;
  border: 3px solid transparent;
  background-image:
    linear-gradient(white, white),
    linear-gradient(270deg, #2273f0, #16143d);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  transition: 0.3s;
}
.location-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.location-button i {
  font-size: var(--font-size-22);
  background: linear-gradient(270deg, #2273f0, #16143d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* ← アイコンをグラデにする肝 */
  transition: all 0.3s ease;
}

/*
Customer’s Voice =========================================================================*/
.section-voice {
  text-align: center;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}
.section-voice_description {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  margin-left: 130px;
  margin-right: 130px;
}
.voice__box {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.voice__box .img {
  width: 270px;
  margin-right: 60px;
}
.voice__list {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
.voice__list-title {
  font-size: 1.125rem;
  font-family: var(--body-font__noto-serif-jp);
  font-weight: 800;
  margin-bottom: 8px;
  padding: 0 16px;
  text-align: start;
}
.voice__item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  margin-bottom: 25px;
}
.voice__item-label {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-serif-jp);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: start;
}
.voice__item-value {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-serif-jp);
  font-weight: 800;
  line-height: 1.5;
  margin-left: 0;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.voice__image {
  width: 412px;
  height: auto;
  margin: 0;
  position: relative;
  z-index: 0;
}

@media (max-width: 379px) {
  .voice__box {
    flex-direction: column;
    align-items: center;
  }
  .voice__box .img {
    width: 90%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .voice__list {
    order: 2;
  }
  .voice__image {
    width: 200px;
  }
  .voice__list-title {
    font-size: 14px;
    margin-top: 8px;
  }
  .voice__item-label {
    font-size: var(--font-size-12);
  }
  .voice__item-value {
    font-size: var(--font-size-12);
  }
}
@media (min-width: 380px) and (max-width: 499px) {
  .voice__box {
    flex-direction: column;
    align-items: center;
  }
  .voice__box .img {
    width: 90%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .voice__list {
    order: 2;
  }
  .voice__image {
    width: 200px;
  }
  .voice__list-title {
    font-size: var(--font-size-16);
    margin-top: 8px;
  }
  .voice__item-label {
    font-size: var(--font-size-14);
  }
  .voice__item-value {
    font-size: var(--font-size-14);
  }
  
}
@media (min-width: 500px) and (max-width: 599px) {
  .voice__box {
    flex-direction: column;
    align-items: center;
  }
  .voice__box .img {
    width: 90%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .voice__list {
    order: 2;
  }
  .voice__image {
    width: 220px;
  }
  .voice__list-title {
    font-size: var(--font-size-18);
    margin-top: 8px;
  }
  .voice__item-label {
    font-size: var(--font-size-16);
  }
  .voice__item-value {
    font-size: var(--font-size-16);
  }
}
@media (min-width: 600px) and (max-width: 709px) {
  .voice__box {
    flex-direction: column;
    align-items: center;
  }
  .voice__box .img {
    width: 90%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .voice__list {
    order: 2;
  }
  .voice__image {
    width: 220px;
  }
  .voice__list-title {
    font-size: var(--font-size-18);
    margin-top: 8px;
  }
  .voice__item-label {
    font-size: var(--font-size-16);
  }
  .voice__item-value {
    font-size: var(--font-size-16);
  }
}
@media (min-width: 710px) and (max-width: 1229px) {
    .voice__box {
        flex-direction: column;
        align-items: center;
    }
    .voice__item-value {
    align-items: center;
  }
  .voice__list-title {
    text-align: center;
  }
}

/*
Flow =========================================================================*/
.section-flow {
  text-align: center;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}
.section-flow_description {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  margin-left: 130px;
  margin-right: 130px;
}
.section-flow_image {
  max-width: 1192px;
  width: 100%;
  margin: 24px auto 0;
}
.section-flow_image img {
  width: 100%;
  height: auto;
  display: block;
}

/*
Q&A =========================================================================*/
/* グリッド全体 */
.button-grid {
  display: grid;
  grid-template-columns: repeat(3, 308px);
  gap: 24px;
  justify-content: center;
}
/* ボタン */
.grid-button {
  width: 308px;
  height: 134px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  text-decoration: none;
  background-color: #f7f7f7;
  border-radius: 12px;
  box-sizing: border-box;
  transition: background-color 0.3s, transform 0.3s;
}
/* ホバー */
.grid-button:hover {
  background-color: #eaeaea;
  transform: translateY(-2px);
}
/* アイコン */
.grid-button .icon img {
  width: 32px;
  height: 32px;
}
/* テキスト */
.grid-button .text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
/* レスポンシブ：画面が狭くなったら2列 */
@media screen and (max-width: 1024px) {
  .button-grid {
    grid-template-columns: repeat(2, 308px);
  }
}
.info-inner {
  max-width: 975px;
  margin: 0 auto;
}
/* 見出し */
.info-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-18);
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #333;
  margin-top: 30px;
  margin-bottom: 16px;
}

/* 見出しアイコン */
.info-heading-icon {
  width: 70px;
  height: 46px;
}

/* リスト */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 共通アイテム */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  font-size: var(--font-size-18);
  font-weight: 900;
  line-height: 1.6;
}

/* テキスト用アイコン */
.info-icon {
  width: 52px;
  height: 52px;
  margin-top: 4px;
}

/* カラーA */
.info-item.type-a span {
  color: var(--text-color__010);
}

/* カラーB */
.info-item.type-b span {
  color: var(--text-color__011);
}
/*
Price List =========================================================================*/
/* グリッド全体 */
.button-grid {
  display: grid;
  grid-template-columns: repeat(3, 308px);
  gap: 24px;
  justify-content: center;
}
/* ボタン */
.grid-button {
  width: 308px;
  height: 134px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  text-decoration: none;
  background-color: #f7f7f7;
  border-radius: 12px;
  box-sizing: border-box;
  transition: background-color 0.3s, transform 0.3s;
}
/* ホバー */
.grid-button:hover {
  background-color: #eaeaea;
  transform: translateY(-2px);
}
/* アイコン */
.grid-button .icon img {
  width: 32px;
  height: 32px;
}
/* テキスト */
.grid-button .text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
/* レスポンシブ：画面が狭くなったら2列 */
@media screen and (max-width: 1024px) {
  .button-grid {
    grid-template-columns: repeat(2, 308px);
  }
}

/*
Info =========================================================================*/
#info {
  position: relative;
  background-color: var(--body-color__001);
  padding: 20px;
}
#info::before, #info::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 705px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
#info::before {
  top: 0px;
  background-image: url('../image/info-background-image01.png');
}
#info::after {
  bottom: 0px;
  background-image: url('../image/info-background-image02.png');
}
@media (max-width: 379px){
  #info::before, #info::after {
    height: 200px;
  }
}
@media (min-width: 380px) and (max-width: 499px) {
  #info::before, #info::after {
    height: 265px;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  #info::before, #info::after {
    height: 370px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  #info::before, #info::after {
    height: 485px;
  }
}
@media (min-width: 1000px) and (max-width: 1235px) {
  #info::before, #info::after {
    height: 600px;
  }
}
@media (min-width: 1236px) and (max-width: 1599px) {
  #info::before, #info::after {
    height: 770px;
  }
}
@media (min-width: 1600px) and (max-width: 1999px) {
  #info::before, #info::after {
    height: 970px;
  }
}
@media (min-width: 2000px) {
  #info::before, #info::after {
    height: 1300px;
  }
}
.info__bg-image {
  max-width: 540px;
  height: auto;
  position: absolute;
  bottom: 650px;
  left: -200px;
  z-index: 1;
}
@media (max-width: 1338px) {
  .info__bg-image {
    max-width: 540px;
    height: auto;
    position: absolute;
    bottom: 1150px;
    left: -200px;
    z-index: 1;
  }
}
@media (max-width: 999px) {
  .info__bg-image {
    max-width: 540px;
    height: auto;
    position: absolute;
    bottom: 1150px;
    left: -200px;
    z-index: 1;
  }
}
@media (max-width: 905px) {
  .info__bg-image {
    max-width: 540px;
    height: auto;
    position: absolute;
    bottom: 1700px;
    left: -200px;
    z-index: 1;
  }
}
@media (max-width: 499px) {
  .info__bg-image {
    max-width: 540px;
    height: auto;
    position: absolute;
    bottom: 1520px;
    left: -200px;
    z-index: 1;
  }
}
@media (max-width: 430px) {
  .info__bg-image {
    max-width: 450px;
    height: auto;
    position: absolute;
    bottom: 1520px;
    left: -200px;
    z-index: 1;
  }
}
/*=== News ===*/
.news__title-icon {
  width: 21px;
  height: auto;
  vertical-align: bottom;
}
.scrollbar {
  height: 290px;
  width: 50%;
  max-width: 740px;
  margin: 20px auto;
  padding: 20px 60px;
  overflow-y: hidden;
  background-color: var(--body-color__000);
  border-radius: 50px;
  z-index: 1;
  position: relative;
}
.scrollable-content {
  height: 180px;
  overflow-y: auto;
}
.scrollable-content:hover {
  overflow-y: scroll;
}

/* タイトルスタイル */
.scrollbar__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1em;
}
.scrollbar__title h2 {
  color: var(--part-color__001);
  position: relative;
  text-align: start;
  width: 100%;
  padding-left: 35px;
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 700;
}
.scrollbar__title h2:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--part-color__001);
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* 画像スタイル */
.scrollbar__image {
  float: left;
  margin-right: 10px;
  width: 84px;
  height: 84px;
  object-fit: cover;
}
/* ボックス内コンテンツスタイル */
.scrollbar__box {
  display: flex;
  margin-bottom: 1em;
}
.scrollbar__content {
  display: inline;
  margin-bottom: 10px;
}
.scrollbar__date, .scrollbar__category {
  margin-right: 10px;
  font-size: var(--font-size-14);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}
.category__color-blue{
  background-color: var(--part-color__003);
  color: var(--text-color__005);
  border-radius: 10px;
  padding: 3px 20px;
}
.category__color-red{
  background-color: var(--part-color__002);
  color: var(--text-color__005);
  border-radius: 10px;
  padding: 3px 20px;
}
.scrollbar__detail {
  clear: both;
  font-size: var(--font-size-14);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  margin-top: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 379px) {
  .scrollbar {
    height: 220px;
    width: 100%;
    padding: 20px 30px;
  }
  .scrollbar__box {
    margin-bottom: 0.5em;
  }
  .scrollbar__title {
    margin-bottom: 0.5em;
  }
  .scrollbar__image {
    float: left;
    margin-right: 10px;
    width: 65px;
    height: 65px;
  }
  .scrollbar__date, .scrollbar__category {
    font-size: var(--font-size-12);
  }
  .scrollbar__detail {
    font-size: var(--font-size-12);
  }
  .scrollable-content {
    height: 160px;
  }
}
@media (min-width: 380px) and (max-width: 499px) {
  .scrollbar {
    height: 220px;
    width: 100%;
    padding: 20px 40px;
  }
  .scrollbar__box {
    margin-bottom: 0.5em;
  }
  .scrollbar__title {
    margin-bottom: 0.5em;
  }
  .scrollbar__image {
    float: left;
    margin-right: 10px;
    width: 65px;
    height: 65px;
  }
  .scrollbar__date, .scrollbar__category {
    font-size: var(--font-size-12);
  }
  .scrollbar__detail {
    font-size: var(--font-size-12);
  }
  .scrollable-content {
    height: 160px;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .scrollbar {
    height: 240px;
    width: 85%;
    padding: 20px 40px;
  }
  .scrollbar__box {
    margin-bottom: 0.5em;
  }
  .scrollbar__title {
    margin-bottom: 0.5em;
  }
  .scrollbar__image {
    width: 65px;
    height: 65px;
  }
  .scrollbar__date, .scrollbar__category {
    font-size: var(--font-size-12);
  }
  .scrollbar__detail {
    font-size: var(--font-size-12);
  }
  .scrollable-content {
    height: 160px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .scrollbar {
    height: 240px;
    width: 85%;
    padding: 20px 40px;
  }
  .scrollbar__box {
    margin-bottom: 0.5em;
  }
  .scrollbar__title {
    margin-bottom: 0.5em;
  }
  .scrollbar__image {
    width: 65px;
    height: 65px;
  }
  .scrollbar__date, .scrollbar__category {
    font-size: var(--font-size-12);
  }
  .scrollbar__detail {
    font-size: var(--font-size-12);
  }
  .scrollable-content {
    height: 160px;
  }
}
@media (min-width: 1000px) and (max-width: 1235px) {
  .scrollbar {
    height: 240px;
    width: 85%;
    padding: 20px 40px;
  }
  .scrollbar__box {
    margin-bottom: 0.5em;
  }
  .scrollbar__title {
    margin-bottom: 0.5em;
  }
  .scrollbar__image {
    width: 75px;
    height: 75px;
  }
  .scrollable-content {
    height: 160px;
  }
}
/*=== Info image ===*/
.info__images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.info__image {
  width: 308px;
  height: 300px;
  border-radius: 30px;
  margin: 10px;
  border: 2px solid var(--part-color__001);
}
.info__image-container {
  position: relative;
  box-sizing: border-box;
  padding: 5px;
}
.info__image-text {
  position: absolute;
  top: 80%;
  left: 55%;
  transform: translate(-50%, -50%);
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  width: 70%;
  color: var(--part-color__001);
  padding: 5px;
  line-height: 1.5;
  text-shadow:5px 5px 5px #fff, -5px -5px 5px #fff,
  -5px 5px 5px #fff,  5px -5px 5px #fff,
  5px 0 5px #fff, -5px  0 5px #fff,
  0 5px 5px #fff,  0 -5px 5px #fff;
}

@media (max-width: 379px) {
  .info__image-container {
    padding: 0;
  }
  .info__image {
    width: 290px;
    height: 282px;
  }
  .info__image-text {
    left: 57%;
    width: 78%;
  }
}
@media (min-width: 380px) and (max-width: 799px) {
  .info__image-text {
    left: 62%;
    width: 80%;
  }
}
/*=== Speech Bubble ===*/
.speech-bubble__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1042px;
  margin: 0 auto;
}
.speech-bubble {
  width: 100%;
  height: auto;
}
.stamp__container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.stamp__overlay {
  position: initial;
  top: 0;
  left: 0;
}
.stamp__overlay-text {
  position: absolute;
  top: 13%;
  left: 23%;
  transform: translate(-50%, -50%);
  color: var(--part-color__001);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: normal;
}
.speech-bubble__stamp-1 {
  position: absolute;
  width: 170px;
  height: auto;
  top: 7%;
  right: 5%;
}
.speech-bubble__stamp-2 {
  position: absolute;
  width: 130px;
  height: auto;
  top: 69%;
  left: 28%;
}
.speech-bubble__stamp-3 {
  position: absolute;
  width: 184px;
  height: auto;
  top: 8%;
  right: 68%;
}
.speech-bubble__image {
  position: absolute;
  top: 30%;
  left: 72%;
  width: 50%;
}
.speech-title {
  position: absolute;
  bottom: 66%;
  left: 48%;
  transform: translate(-50%, -50%);
  color: var(--part-color__001);
  width: 70%;
  text-align: center;
  font-size: var(--font-size-37);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: normal;
}
.speech-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 98%;
  height: 30px;
  margin-top: 12px;
  background-color: var(--part-color__004);
  z-index: -1;
  transform: translateY(-50%);
}
.speech-text {
  position: absolute;
  top: 47%;
  left: 46%;
  transform: translate(-50%, -50%);
  color: var(--part-color__001);
  width: 65%;
  font-size: var(--font-size-20);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 500;
  text-align: left;
  line-height: 2.2;
}

@media (max-width: 399px) {
  .speech-bubble__container {
    max-width: 600px;
    margin: 30px 0 40px;
  }
  .speech-bubble__image {
    top: 57%;
    left: 71%;
    width: 35%;
  }
  .speech-bubble__stamp-1 {
    width: 80px;
    top: -2%;
    right: 7%;
  }
  .speech-bubble__stamp-2 {
    width: 56px;
  }
  .speech-bubble__stamp-3 {
    width: 82px;
    right: 67%;
    top: 3%;
  }
  .speech-title {
    font-size: var(--font-size-13);
    width: 250px;
    bottom: 63%;
  }
  .speech-title::before {
    height: 12px;
    top: -13%;
    width: 247px;
  }
  .speech-text {
    top: 41%;
    left: 7%;
    width: 91%;
    font-size: var(--font-size-8h);
    line-height: 1.5;
    transform: none;
  }
  .stamp__overlay-text {
    top: 13%;
    font-size: var(--font-size-11);
    transform: translate(-60%, -65%);
  }
}
@media (min-width: 400px) and (max-width: 499px) {
  .speech-bubble__container {
    max-width: 600px;
    margin: 30px 0 40px;
  }
  .speech-bubble__image {
    top: 57%;
    left: 68%;
    width: 35%;
  }
  .speech-bubble__stamp-1 {
    width: 95px;
    top:-4%;
    right: 7%;
  }
  .speech-bubble__stamp-2 {
    width: 64px;
  }
  .speech-bubble__stamp-3 {
    width: 88px;
    top: 3%;
  }
  .speech-title {
    font-size: var(--font-size-14);
    width: 273px;
  }
  .speech-title::before {
    height: 12px;
    top: 25%;
    width: 270px;
  }
  .speech-text {
    top: 41%;
    left: 10%;
    width: 89%;
    font-size: var(--font-size-10);
    line-height: 1.5;
    transform: none;
  }
  .stamp__overlay-text {
    top: 12%;
    font-size: var(--font-size-11);
    transform: translate(-60%, -65%);
  }
}
@media (min-width: 500px) and (max-width: 599px) {
  .speech-bubble__container {
    max-width: 600px;
    margin: 20px 0;
  }
  .speech-bubble__image {
    top: 53%;
    left: 68%;
    width: 35%;
  }
  .speech-bubble__stamp-1 {
    width: 95px;
    top: 0%;
    right: 7%;
  }
  .speech-bubble__stamp-2 {
    width: 64px;
  }
  .speech-bubble__stamp-3 {
    width: 88px;
    top: 9%;
  }
  .speech-title {
    font-size: var(--font-size-18);
    width: 345px;
  }
  .speech-title::before {
    height: 12px;
    top: 25%;
    width: 338px;
  }
  .speech-text {
    left: 51%;
    width: 84%;
    font-size: var(--font-size-12);
    line-height: 1.5;
  }
  .stamp__overlay-text {
    top: 16%;
    font-size: var(--font-size-12);
    transform: translate(-45%, -65%);
  }
}
@media (min-width: 600px) and (max-width: 699px) {
  .speech-bubble__container {
    max-width: 600px;
    margin: 20px 0;
  }
  .speech-bubble__image {
    top: 53%;
    left: 68%;
    width: 35%;
  }
  .speech-bubble__stamp-1 {
    width: 95px;
    top: 5%;
    right: 7%;
  }
  .speech-bubble__stamp-2 {
    width: 64px;
  }
  .speech-bubble__stamp-3 {
    width: 98px;
    top: 9%;
  }
  .speech-title {
    font-size: var(--font-size-22);
    width: 75%;
  }
  .speech-title::before {
    height: 12px;
    top: 25%;
  }
  .speech-text {
    left: 56%;
    width: 90%;
    font-size: var(--font-size-12);
    line-height: 1.8;
  }
  .stamp__overlay-text {
    top: 16%;
    font-size: var(--font-size-12);
    transform: translate(-45%, -65%);
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .speech-bubble__container {
    max-width: 650px;
  }
  .speech-bubble__image {
    top: 40%;
    left: 69%;
    width: 35%;
  }
  .speech-bubble__stamp-1 {
    width: 120px;
    top: 4%;
    right: 7%;
  }
  .speech-bubble__stamp-2 {
    width: 85px;
  }
  .speech-bubble__stamp-3 {
    width: 110px;
    top: 10%;
  }
  .speech-title {
    font-size: var(--font-size-22);
  }
  .speech-title::before {
    height: 24px;
  }
  .speech-text {
    left: 44%;
    width: 60%;
    font-size: var(--font-size-12);
  }
  .stamp__overlay-text {
    top: 16%;
    font-size: var(--font-size-15);
  }
}
@media (min-width: 1000px) and (max-width: 1299px) {
  .speech-bubble__container {
    max-width: 900px;
  }
  .speech-bubble__image {
    top: 33%;
    left: 68%;
    width: 37%;
  }
  .speech-bubble__stamp-1 {
    width: 150px;
    top: 7%;
    right: 7%;
  }
  .speech-bubble__stamp-2 {
    width: 120px;
  }
  .speech-bubble__stamp-3 {
    width: 160px;
    top: 8%;
  }
  .speech-title {
    font-size: var(--font-size-32);
  }
  .speech-title::before {
    height: 24px;
  }
  .speech-text {
    left: 44%;
    width: 60%;
    font-size: var(--font-size-16);
  }
  .stamp__overlay-text {
    top: 14%;
    font-size: var(--font-size-20);
  }
}
@media (min-width: 1300px) and (max-width: 1500px) {
  .speech-bubble__container {
    max-width: 1000px;
  }
  .speech-bubble__image {
    top: 33%;
    left: 74%;
    width: 40%;
  }
  .speech-bubble__stamp-1 {
    width: 150px;
    top: 7%;
    right: 7%;
  }
  .speech-bubble__stamp-2 {
    width: 120px;
  }
  .speech-title {
    font-size: var(--font-size-36);
  }
  .speech-title::before {
    height: 28px;
  }
}

/*=== Info Main Text ===*/
.info__main-container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.info__main-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 50%;
}
.info__main-text-large {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 600;
  color: var(--part-color__001);
  text-align: left;
  margin: 20px 0;
  width: auto;
  background-color: var(--part-color__002);
  padding: 8px 30px;
  border-radius: 20px;
}
.info__main-text-medium {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 600;
  color: var(--part-color__001);
  margin: 0;
  padding-bottom: 5px;
  position: relative;
  padding-left: 15px;
  width: auto;
}
.info__main-text-medium::before {
  background: var(--part-color__008);
  content: "";
  height: 12px;
  width: 12px;
  left: 0;
  position: absolute;
  top: 4px;
}
.info__main-text-small {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 600;
  color: var(--part-color__001);
  margin: 0px 0 10px;
  width: auto;
  line-height: 1.8;
}

@media (max-width: 399px) {
  .info__main-text {
    width: 87%;
  }
  .info__main-text-large {
    font-size: var(--font-size-12);
    padding: 5px 26px;
    margin: 15px 0;
  }
  .info__main-text-small {
    font-size: var(--font-size-12);
  }
  .info__main-text-medium {
    font-size: var(--font-size-12);
  }
  .info__main-text-medium::before {
    height: 10px;
    width: 10px;
    top: 1px;
  }
}
@media (min-width: 400px) and (max-width: 499px) {
  .info__main-text {
    width: 85%;
  }
  .info__main-text-large {
    font-size: var(--font-size-14);
    padding: 5px 26px;
    margin: 15px 0;
  }
  .info__main-text-small {
    font-size: var(--font-size-14);
  }
  .info__main-text-medium {
    font-size: var(--font-size-14);
  }
  .info__main-text-medium::before {
    height: 10px;
    width: 10px;
    top: 2px;
  }
}
@media (min-width: 500px) and (max-width: 699px) {
  .info__main-text {
    width: 80%;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .info__main-text {
    width: 70%;
  }
}
@media (min-width: 1000px) and (max-width: 1299px) {
  .info__main-text {
    width: 62%;
  }
}

/*=== Info image ===*/
.info__boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.info__box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 30px;
}
.info__box-wrapper {
  position: relative;
  width: 353px;
  height: auto;
  margin: 0 10px 10px 10px;
  z-index: 1;
}
.info__box-stamp-1 {
  position: absolute;
  top: -10px;
  left: -43px;
  width: 120px;
  height: auto;
  z-index: 2; 
}
.info__box-stamp-2 {
  position: absolute;
  top: -20px;
  left: -28px;
  width: 100px;
  height: auto;
  z-index: 2; 
}
.info__box-stamp-3 {
  position: absolute;
  top: -20px;
  left: 0;
  width: 70px;
  height: auto;
  z-index: 2; 
}
.info__box-item {
  max-width: 253px;
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 1;
}
.info__box {
  width: 100%;
  height: auto;
}
.info__box-title, .info__box-button-1, .info__box-button-2, .info__box-button-3, .info__box-text, .info__box-contact{
  position: absolute;
  left: 53%;
  transform: translateX(-50%);
}
.info__box-title {
  top: 5%;
  font-size: var(--font-size-28);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__008);
  letter-spacing: 0.15em;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
  width: max-content;
}
.info__box-button-1 {
  top: 56%;
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: var(--part-color__003);
  color: var(--part-color__001);
  border: none;
  border-radius: 20px;
  font-size: var(--font-size-20);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  min-width: 215px;
  white-space: nowrap;
}
.info__box-button-1:hover {
  background-color: var(--part-color__009);
}
.info__box-button-2 {
  top: 62%;
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: var(--part-color__010);
  color: var(--part-color__001);
  border: none;
  border-radius: 20px;
  font-size: var(--font-size-20);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  min-width: 215px;
  text-align: center;
  white-space: nowrap;
}
.info__box-button-2:hover {
  background-color: var(--part-color__009);
}
.info__box-button-3 {
  top: 63%;
  display: block;
  margin: 0 auto;
  padding: 10px 15px;
  background-color: var(--part-color__003);
  color: var(--part-color__001);
  border: none;
  border-radius: 20px;
  font-size: var(--font-size-20);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  min-width: 215px;
  white-space: nowrap;
}
.info__box-button-3:hover {
  background-color: var(--part-color__009);
}
.info__box-button-icon {
  width: 20px;
  margin-right: 20px;
}
.info__box-button-icon-3 {
  width: 20px;
  margin-right: 4px;
}
.info__box-text {
  top: 27%;
  font-size: var(--font-size-16);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  text-align: start;
  font-weight: 600;
  color: var(--text-color__008);
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 10px 0;
  width: 89%;
  z-index: 2;
}
.info__box-contact {
  top: 79%;
  font-size: var(--font-size-34);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  text-align: start;
  font-weight: 600;
  color: var(--text-color__008);
  letter-spacing: 0.05em;
  margin: 10px 0;
  width: 90%;
  z-index: 2;
}
@media (max-width: 1360px) {
  .info__boxes {
    margin-top: 280px;
  }
}
@media (max-width: 499px) {
  .info__box-container {
    width: 100%;
    margin: 30px 0;
  }
  .info__box-item {
    max-width: 230px;
  }
  .info__box-wrapper {
    width: 300px;
  }
  .info__box-stamp-1 {
    left: -23px;
    width: 90px;
  }
  .info__box-stamp-2 {
    left: -15px;
    width: 86px;
  }
  .info__box-stamp-3 {
    width: 60px;
  }
  .info__box-title {
    font-size: var(--font-size-24);
  }
  .info__box-text {
    font-size: var(--font-size-14);
  }
  .info__box-button-1 {
    font-size: var(--font-size-18);
    min-width: 200px;
  }
  .info__box-button-2 {
    font-size: var(--font-size-18);
    min-width: 200px;
  }
  .info__box-button-3 {
    font-size: var(--font-size-18);
    min-width: 200px;
  }
  .info__box-contact {
    font-size: var(--font-size-29);
  }
}
@media (max-width: 430px) {
  .info__boxes {
    margin-top: 230px;
  }
}

/*
Testimonial =========================================================================*/
#testimonial {
  position: relative;
}
.testimonial__image-02 {
  width: 180px;
  height: auto;
  position: absolute;
  top: 480px;
  left: 0px;
  position: absolute;
  z-index: 1;
}
.testimonial__image-01 {
  width: 154px;
  height: auto;
  position: absolute;
  top: 70px;
  right: 0;
  position: absolute;
  z-index: 1;
}
.testimonial__image-03 {
  width: 166px;
  height: auto;
  position: absolute;
  bottom: 430px;
  right: 0;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .testimonial__image-02 {
    width: 120px;
    top: 464px;
  }
  .testimonial__image-01 {
    width: 120px;
    top: 90px;
  }
  .testimonial__image-03 {
    width: 130px;
  }
}
@media screen and (max-width: 1100px) {
  .testimonial__image-02 {
    width: 100px;
    top: 488px;
  }
  .testimonial__image-01 {
    width: 100px;
    top: 110px;
  }
}
@media screen and (max-width: 1000px) {
  .testimonial__image-02 {
    width: 100px;
  }
}
@media screen and (max-width: 600px) {
  .testimonial__image-02 {
    top: 700px;
  }
  .testimonial__image-03 {
    width: 120px;
  }
}
@media screen and (max-width: 499px) {
  .testimonial__image-02 {
    width: 80px;
    top: 614px;
  }
  .testimonial__image-01 {
    width: 80px;
    top: 110px;
  }
  .testimonial__image-03 {
    width: 90px;
    bottom: 2140px;
  }
}
@media screen and (max-width: 430px) {
  .testimonial__image-02 {
    top: 584px;
  }
}
@media screen and (max-width: 410px) {
  .testimonial__image-02 {
    top: 602px;
  }
}
@media screen and (max-width: 383px) {
  .testimonial__image-02 {
    top: 624px;
  }
}
@media screen and (max-width: 376px) {
    .testimonial__image-02 {
      top: 650px;
    }
}
.testimonial__section {
  background: var(--body-color__002);
  background-image:
    radial-gradient(var(--part-color__014) 20%, transparent 20%),
    radial-gradient(var(--part-color__014) 20%, transparent 20%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}
.testimonial__title {
  font-size: var(--font-size-36);
  font-family: var(--body-font__raleway);
  font-style: normal;
  font-weight: normal;
  margin-bottom: 4px;
  color: var(--text-color__006);
}
.testimonial__ci-container {
  text-align: right;
}
.testimonial__ci {
  display: inline-block;
  font-size: var(--font-size-20);
  font-family: var(--body-font__zen-maru-gothic);
  font-style: normal;
  background-color: var(--part-color__006);
  color: var(--text-color__005);
  padding: 10px 38px;
  border-radius: 22px;
  margin-bottom: 10px;
}
.testimonial__text {
  font-size: var(--font-size-18);
  font-family: var(--body-font__zen-maru-gothic);
  font-style: normal;
  font-weight: 500;
  line-height: 2;
}
.testimonial__wrapper {
  max-width: 1200px;
  margin: auto;
}
.testimonial__content {
  display: flex;
  align-items: stretch;
  margin-bottom: 70px;
}
.testimonial__text-container {
  text-align: left;
  flex: 0 0 60%;
  padding: 0 15px 0 60px;
}
.testimonial__img {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial__image-container {
  width: 396px;
  height: 286px;
  position: relative;
}
.testimonial__frame-image, .testimonial__photo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.testimonial__frame-image {
  z-index: 1;
}
.testimonial__photo-image {
  z-index: 0;
}
.testimonial__shared-images {
width: 300px;
height: auto;
margin: 60px 0 80px;
}

@media (max-width: 1000px) {
  .testimonial__content {
    flex-direction: column;
  }

  .testimonial__text-container,
  .testimonial__img {
    flex: 1 0 auto;
    width: 100%;
  }
  .testimonial__img {
    order: 2;
  }
  .testimonial__text-container {
    order: 1;
    padding: 0 80px;
  }
}
@media (max-width: 680px) {
  .testimonial__text-container {
    padding: 0 80px;
  }
  .testimonial__title {
    font-size: var(--font-size-28);
  }
  .testimonial__ci {
    font-size: var(--font-size-16);
  }
  .testimonial__text {
    font-size: var(--font-size-14);
  }
}
@media (max-width: 500px) {
  .testimonial__content {
    margin-bottom: 30px;
  }
  .testimonial__text-container {
    padding: 0 60px;
  }
  .testimonial__title {
    font-size: var(--font-size-22);
  }
  .testimonial__ci {
    font-size: var(--font-size-14);
  }
  .testimonial__text {
    font-size: var(--font-size-12);
  }
  .testimonial__img {
    padding: 20px 60px 0;
  }
}
@media (max-width: 470px) {
  .testimonial__image-container {
    height: 234px;
  }
}
@media (max-width: 430px) {
  .testimonial__image-container {
    height: 200px;
  }
}
/*=== slider ===*/
.slider-container {
  margin-top: 100px;
  padding-bottom: 50px;
}
.slider-image {
  width:310px;
  height:400px;
}
.slider .slick-slide {
  margin:0 10px;
}
.slider-text {
  position: absolute;
  top: 25%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  color: var(--text-color__004);
  font-size: var(--font-size-16);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  text-align: left;
  line-height: 1.6;
  padding: 10px;
  z-index: 2;
  overflow: hidden;
  word-wrap: break-word;
}
.slider-subtext {
  position: absolute;
  top: 73%;
  left: 42%;
  right: 10%;
  bottom: 10%;
  color: var(--text-color__004);
  font-size: var(--font-size-16);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  text-align: left;
  line-height: 1.5;
  padding: 10px;
  z-index: 2;
  overflow: hidden;
  word-wrap: break-word;
}
.slider .slick-slide {
  position: relative;
  margin: 0 10px;
}

@media (max-width: 499px) {
  .slider-container {
    margin-top: 0;
  }
  .slider {
    display: flex;
    flex-direction: column;
  }
  .slider li {
    display: block;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
  }
  .slider-image {
    display: block;
    width: 310px;
    height: 400px;
    margin: auto;
  }
  .slider-text {
    position: absolute;
    top: 14%;
    left: 18%;
    right: 0;
    bottom: 0;
    transform: translateX(-10%); 
    font-size: var(--font-size-16);
    padding: 64px;
  }
}
@media (max-width: 470px) {
  .slider-text {
    padding: 54px;
  }
}
@media (max-width: 430px) {
  .slider-text {
    padding: 44px;
  }
}
@media (max-width: 380px) {
  .slider-text {
    padding: 36px;
  }
}

/*
Question and Answer =========================================================================*/
.question-and-answer__section {
  background-color: var(--body-color__001);
  overflow: visible;
  position: relative;
}
.question__image {
  width: 550px;
  height: auto;
  position: absolute;
  bottom: -148px;
  right: 0;
}
.qa {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(862px - 60px);
  padding: 0 20px 150px;
}
.qa__box .qa__list {
  padding: 20px 0;
  background-image : linear-gradient(to right, var(--part-color__006), var(--part-color__006) 4px, transparent 4px, transparent 8px);
  background-size: 8px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.qa__box .qa__list .list__question,
.qa__box .qa__list .list__answer {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.list__question-text {
  color: var(--text-color__006);
  font-size: var(--font-size-18);
  font-family: var(--body-font__zen-maru-gothic);
  font-style: normal;
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}
.list__answer-text {
  color: var(--text-color__001);
  font-size: var(--font-size-18);
  font-family: var(--body-font__zen-maru-gothic);
  font-style: normal;
  margin: 0;
  padding-left: 15px;
  width: 100%;
}
.qa__box .qa__list:last-of-type {
  border-bottom: none;
}
.question__stamp-icon {
  max-width: 38px;
  height: auto;
  margin-right: 23px;
}
.answer__stamp-icon {
  max-width: 50px;
  height: auto;
  margin-right: 10px;
}
.qa__shared-images {
  width: 300px;
  height: auto;
  margin: 60px 0 80px;
}
@media screen and (max-width: 1100px) {
  .question__image {
    width: 450px;
    bottom: -130px;
  }
}
@media screen and (max-width: 800px) {
  .question__image {
    width: 400px;
    bottom: -116px;
  }
}
@media screen and (max-width: 500px) {
  .question__stamp-icon {
    max-width: 30px;
  }
  .answer__stamp-icon {
    max-width: 42px;
  }
  .list__question-text {
    font-size: var(--font-size-14);
  }
  .list__answer-text {
    font-size: var(--font-size-14);
  }
  .question__image {
    width: 300px;
    bottom: -84px;
  }
}

/*
Usage Fee =========================================================================*/
#usage-fee {
  position: relative;
}
#usage-fee::before, #usage-fee::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 324px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
#usage-fee::before {
  top: 0px;
  background-image: url('../image/usage-fee-background-image01.png');
}
#usage-fee::after {
  bottom: 0px;
  background-image: url('../image/usage-fee-background-image02.png');
}
.usage-fee__image-01 {
  width: 136px;
  height: auto;
  position: absolute;
  top: 140px;
  left: 0px;
  position: absolute;
  z-index: 1;
}
.usage-fee__image-02 {
  width: 256px;
  height: auto;
  position: absolute;
  bottom: 0px;
  right: 0;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1800px) {
  #usage-fee::before, #usage-fee::after {
    height: 280px;
  }
}
@media screen and (max-width: 1600px) {
  #usage-fee::before, #usage-fee::after {
    height: 238px;
  }
}
@media screen and (max-width: 1200px) {
  #usage-fee::before, #usage-fee::after {
    height: 178px;
  }
}
@media screen and (max-width: 1000px) {
  #usage-fee::before, #usage-fee::after {
    height: 160px;
  }
  .usage-fee__image-01 {
    width: 100px;
    top: 140px;
    left: 0px;
  }
  .usage-fee__image-02 {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  #usage-fee::before, #usage-fee::after {
    height: 120px;
  }
  .usage-fee__image-01 {
    top: 110px;
  }
  .usage-fee__image-02 {
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  #usage-fee::before, #usage-fee::after {
    height: 90px;
  }
  .usage-fee__image-01 {
    width: 70px;
    top: 136px;
  }
  .usage-fee__image-02 {
    width: 150px;
  }
}
.usage-fee__section {
  background: var(--body-color__003);
  padding: 0px 20px 100px;
}
.usage-fee {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(922px - 60px);
  padding: 20px 20px;
  border: 2px solid var(--part-color__011);
  border-radius: 26px;
  background: var(--body-color__000);
}
.usage-fee__list .usage-fee__item-cat {
  padding: 34px 0 14px;
  border-bottom: 1px solid var(--text-color__003);
}
.usage-fee__list .usage-fee__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--text-color__003);
}
.usage-fee__list .usage-fee__cautionary-note {
  padding: 24px 0;
}
.usage-fee__item-label-cat {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__003);
  font-weight: bold;
}
.usage-fee__item-label {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__003);
  font-weight: bold;
}
.usage-fee__item-value {
  max-width: 650px;
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: bold;
  color: var(--text-color__003);
  text-align: end;
}
.usage-fee__cautionary-note-text {
  max-width: 650px;
  font-size: var(--font-size-16);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: bold;
  color: var(--text-color__003);
  text-align: end;
  line-height: 1.4;
}
.usage-fee__stamp-sun {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.usage-fee__shared-images {
  width: 300px;
  height: auto;
  margin: 150px 0 80px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1300px) {
  .usage-fee {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    max-width: 1162px;
    
  }
  .usage-fee__list .usage-fee__item-cat {
    display: grid;
    grid-template-columns: 4fr 2fr;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
  }
  .usage-fee__list .usage-fee__item {
    display: grid;
    grid-template-columns: 4fr 2fr;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
  }
  .usage-fee__list .usage-fee__cautionary-note {
    display: grid;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
  }
  .usage-fee__item-label-cat {
    text-align: start;
    margin-left: 40px;
  }
  .usage-fee__item-label {
    text-align: start;
    margin-left: 70px;
  }
}
@media screen and (max-width: 1300px) {
  .usage-fee__item-label {
    margin-left: 50px;
  }
  .usage-fee__item-value {
    max-width: none;
    margin-right: 50px;
  }
  .usage-fee__cautionary-note-text {
    max-width: none;
  }
}
@media screen and (max-width: 800px) {
  .usage-fee__shared-images {
    margin: 80px 0 80px;
  }
}
@media screen and (max-width: 600px) {
  .usage-fee__list .usage-fee__item {
    padding: 24px 0 14px;
  }
  .usage-fee__item-label-cat {
    font-size: var(--font-size-16);
  }
  .usage-fee__item-label {
    font-size: var(--font-size-16);
    margin-left: 30px;
  }
  .usage-fee__item-value {
    font-size: var(--font-size-16);
    margin-top: 10px;
    margin-right: 30px;
  }
  .usage-fee__cautionary-note-text {
    font-size: var(--font-size-14);
  }
  .usage-fee__shared-images {
    margin: 80px 0 80px;
  }
}
@media screen and (max-width: 480px) {
  .usage-fee__list .usage-fee__item-cat {
    padding: 24px 0 14px;
  }
  .usage-fee__list .usage-fee__item {
    padding: 24px 0 4px;
  }
  .usage-fee__item-label-cat {
    font-size: var(--font-size-12);
  }
  .usage-fee__item-label {
    font-size: var(--font-size-12);
    margin-left: 20px;
  }
  .usage-fee__item-value {
    font-size: var(--font-size-12);
    margin-top: 10px;
    margin-right: 0;
  }
  .usage-fee__cautionary-note-text {
    font-size: var(--font-size-10);
  }
  .usage-fee__stamp-sun {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
  .usage-fee__shared-images {
    margin: 80px 0 80px;
  }
}
@media screen and (max-width: 400px) {
  .usage-fee__cautionary-note-text {
    font-size: var(--font-size-8);
  }
}
.usage-example {
  margin: 40px auto;
  max-width: calc(922px - 60px);
  padding: 20px 20px;
  background: var(--body-color__004);
  position: relative;
  z-index: 1;
}
.usage-example__list .usage-example__item-cat {
  padding: 0px 0 14px;
}
.usage-example__list .usage-example__item {
  line-height: 1.6;
}
.usage-example__item-label-cat {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__003);
  font-weight: bold;
}
.usage-example__item-label {
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__003);
  font-weight: bold;
}
.usage-example__item-value {
  max-width: 650px;
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-weight: bold;
  color: var(--text-color__003);
  text-align: center;
}
.usage-example__stamp-sun {
  width: 156px;
  height: auto;
  transform: translate(10%, -50%);
}
@media screen and (min-width: 1000px) {
  .usage-example {
    display: grid;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    max-width: 1162px;
  }
  .usage-example__list .usage-example__item {
    display: grid;
    grid-template-columns: 4fr 2fr;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    align-items: end;
  }
  .usage-example__item-label-cat {
    text-align: start;
    margin-left: 40px;
  }
  .usage-example__item-label {
    text-align: start;
    margin-left: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .usage-example {
    padding: 20px 40px;
  }
  .usage-example__stamp-sun {
    transform: translate(-10%, -50%);
  }
  .usage-example__item-value {
    max-width: none;
    text-align: end;
  }
}
@media screen and (max-width: 800px) {
  .usage-example__stamp-sun {
    width: 130px;
  }
  .usage-example__item-label-cat {
    font-size: var(--font-size-16);
  }
  .usage-example__item-label {
    font-size: var(--font-size-16);
  }
  .usage-example__item-value {
    font-size: var(--font-size-16);
    margin-top: 20px;
  }
}
@media screen and (max-width: 580px) {
  .usage-example__stamp-sun {
    width: 110px;
  }
  .usage-example__item-label-cat {
    font-size: var(--font-size-12);
  }
  .usage-example__item-label {
    font-size: var(--font-size-12);
  }
  .usage-example__item-value {
    font-size: var(--font-size-12);
  }
}
/*
Company Overview =========================================================================*/
.company-overview {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(922px - 60px);
  padding: 0 20px;
}
.co__list {
  border-top: 2px solid var(--part-color__012);
}

.co__list .co__item {
  padding: 24px 0;
  border-bottom: 2px solid var(--part-color__012);
}
.co__item-label {
  font-size: var(--font-size-15);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__006);
  font-weight: bold;
  margin-bottom: 8px;
}
.co__item-value {
  max-width: 650px;
  font-size: var(--font-size-15);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__001);
}
.company-overview__text {
  max-width: calc(730px - 60px);
  margin: 40px auto;
  padding: 0 20px;
}
.co__text {
  font-size: var(--font-size-14);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__001);
  line-height: 1.5;
}
.company-overview__shared-images {
  width: 300px;
  height: auto;
  margin: 150px 0 80px;
}
@media screen and (max-width: 560px) {
  .co__item-value {
    margin-left: 20px;
  }
}
@media screen and (min-width: 560px) {
  .co__list .co__item {
    display: grid;
    grid-template-columns: 2fr 5fr;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
  }
  .co__item-label {
    text-align: start;
    margin-left: 70px;
  }
}

/*
Form =========================================================================*/
.form {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.form-item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.form-item-label {
  width: 100%;
  max-width: 200px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}
.form-item-label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.form-item-input {
  border: 1px solid var(--part-color__013);
  border-radius: 14px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 100%;
  min-height: 48px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  background: var(--body-color__000);
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}
.form-item-input__zip-code {
  border: 1px solid var(--part-color__013);
  border-radius: 14px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 220px;
  background: var(--body-color__000);
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}
.zip-code__container {
  display: flex;
  flex-direction: column; /* 子要素を縦方向に並べる */
  align-items: flex-start; /* 子要素を左揃え */
}

.zip-code__input-hint-container {
  display: flex;
  align-items: center; /* 入力フィールドとヒントテキストを中央揃え */
  width: 100%;
}
.form-item-input__file {
  margin-left: 23px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  background: var(--body-color__000);
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}
.file__container {
  display: flex;
  flex-direction: column;
  width: inherit;
}
.form__container {
  display: flex;
  flex-direction: column;
  width: inherit;
  min-height: 48px; /* 最小高さを入力フィールドの高さに合わせる */
}
.form-item-input__hint01 {
  margin-left: 10px;
  font-size: var(--font-size-12);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__001);
}
.form-item-input__hint02 {
  margin-left: 30px;
  padding-top: 10px;
  padding-left: 1em;
  padding-right: 1em;
  font-size: var(--font-size-12);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__001);
}
.form-item-textarea {
  border: 1px solid var(--part-color__013);
  border-radius: 14px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 100%;
  min-height: 216px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  background: var(--body-color__000);
  font-size: var(--font-size-18);
}
.form-btn {
  border-radius: 30px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 214px;
  display: block;
  letter-spacing: 0.05em;
  background: var(--part-color__000);
  color: var(--text-color__005);
  font-weight: bold;
  font-size: var(--font-size-14);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  text-align: center;
}
.form__shared-images {
  width: 300px;
  height: auto;
  margin: 60px 0 80px;
}
.form__required {
  color: var(--text-color__005);
  background: var(--part-color__000);
  font-size: var(--font-size-10);
  font-family: var(--body-font__noto-sans-japanese);
  font-weight: bold;
  border-radius: 4px;
  margin-right: 8px;
  padding: 5px;
}
.form__required-placeholder {
  visibility: hidden;
  margin-right: 40px;
}
.form-error {
  color: var(--text-color__002);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-size: var(--font-size-16);
  margin-top: 5px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (max-width: 760px) {
  .form {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }
  .form-item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .form-item-label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: var(--font-size-15);
  }
  .form-itemlLabel.isMsg {
    margin-top: 0;
  }
  .form-item-input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: var(--font-size-15);
  }
  .form-item-input__zip-code {
    margin-left: 0;
    margin-top: 18px;
    height: 32px;
    flex: inherit;
    font-size: var(--font-size-15);
    max-width: 480px;
  }
  .form-item-input__file {
    margin-left: 0;
    padding-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: var(--font-size-15);
    max-width: 480px;
  }
  .form-item-textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: var(--font-size-15);
  }
  .form-btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: var(--font-size-16);
  }
  .zip-code__container {
    display: flex;
    flex-direction: column;
    width: inherit;
  }
  .zip-code__input-hint-container {
    flex-direction: column;
    width: inherit;
  }
  .form-item-input__hint01 {
    margin-top: 10px; 
    margin-right: auto;
  }
  .form-item-input__hint02 {
    margin-right: auto;
    margin-left: 10px;
    padding-top: 0;
    padding-left: 0;
  }
  .form-error {
    font-size: var(--font-size-12);
    margin-left: 0;
  }
}

/*
Usage Fee =========================================================================*/
#recruit {
  position: relative;
}
.recruit__section {
  background: var(--body-color__000);
  padding: 100px 20px 100px;
}
.recruit {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(922px - 60px);
  padding: 0 20px 50px;
  background: var(--body-color__007);
}
.recruit__item-subtitle {
  background: var(--body-color__006);
  color: var(--text-color__005);
  font-weight: normal;
  font-family: var(--body-font__noto-sans-japanese);
  font-size: var(--font-size-28);
  line-height: 1.8;
  text-align: left;
  padding: 0.5em 1em;
  margin: 0 -0.7em 1em;
}
.recruit__item-text {
  font-family: var(--body-font__noto-sans-japanese);
  font-size: var(--font-size-24);
  font-weight: 400;
  color: var(--text-color__009);
  line-height: 2.0;
  padding-left: 20px;
}
.recruit__item-list {
  font-size: var(--font-size-24);
  line-height: 2.0;
}
.recruit__item-list {
  list-style-type: none;
  padding-left: 0;
}
.recruit__item-list-text {
  position: relative;
  padding-left: 35px;
  font-size: var(--font-size-24);
}
.recruit__item-list-text::before {
  content: '•';
  position: absolute;
  left: 15px;
  top: 0;
  color: var(--text-color__009);
  font-size: var(--font-size-24);
}
@media screen and (min-width: 1300px) {
  .recruit {
    max-width: 1162px;
  }
}
@media screen and (max-width: 499px) {
  .recruit__section {
    padding: 60px 20px 60px;
  }
  .recruit__item-subtitle {
    font-size: var(--font-size-20);
    margin: 0 -1.0em 1em;
  }
  .recruit__item-list-text {
    font-size: var(--font-size-20);
  }
  .recruit__item-list-text::before {
    font-size: var(--font-size-20);
  }
  .recruit__item-text {
    font-size: var(--font-size-20);
  }
}
@media screen and (max-width: 399px) {
  .recruit__section {
    padding: 40px 20px 20px;
  }
  .recruit__item-subtitle {
    font-size: var(--font-size-18);
    margin: 0 -1.1em 1em;
  }
  .recruit__item-list-text {
    font-size: var(--font-size-16);
  }
  .recruit__item-list-text::before {
    font-size: var(--font-size-16);
  }
  .recruit__item-text {
    font-size: var(--font-size-16);
  }
}
/*
Recruitment Form =========================================================================*/
.recruitment__form-item-input-radio {
  -webkit-appearance: none;
  appearance: auto;
}
.recruitment__form-container-radio-box {
  display: flex;
  flex-direction: column;
}
.recruitment__form-container-radio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 30px;
}
.recruitment__form-item-radio {
  padding-left: 10px;
}
.recruitment__form-item-radio-label {
  font-family: var(--body-font__noto-sans-japanese);
  font-size: var(--font-size-18);font-style: normal;
}
.recruitment__form {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.recruitment__form-item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.recruitment__form-item-label {
  width: 100%;
  max-width: 200px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}
.recruitment__form-item-label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.recruitment__form-item-input {
  border: 1px solid var(--part-color__013);
  border-radius: 14px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 100%;
  min-height: 48px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  background: var(--body-color__000);
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
}
.recruitment__form-container {
  display: flex;
  flex-direction: column;
  width: inherit;
  min-height: 48px; /* 最小高さを入力フィールドの高さに合わせる */
}
.recruitment__form-item-input-hint02 {
  margin-left: 30px;
  padding-top: 10px;
  padding-left: 1em;
  padding-right: 1em;
  font-size: var(--font-size-18);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  color: var(--text-color__001);
}
.recruitment__form-btn {
  border-radius: 30px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 214px;
  display: block;
  letter-spacing: 0.05em;
  background: var(--part-color__000);
  color: var(--text-color__005);
  font-weight: bold;
  font-size: var(--font-size-14);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  text-align: center;
}
.recruitment__form-shared-images {
  width: 300px;
  height: auto;
  margin: 60px 0 80px;
}
.recruitment__form-required {
  color: var(--text-color__005);
  background: var(--part-color__000);
  font-size: var(--font-size-10);
  font-family: var(--body-font__noto-sans-japanese);
  font-weight: bold;
  border-radius: 4px;
  margin-right: 8px;
  padding: 5px;
}
.recruitment__form-required-placeholder {
  visibility: hidden;
}
.recruitment__form-error {
  color: var(--text-color__002);
  font-family: var(--body-font__noto-sans-japanese);
  font-style: normal;
  font-size: var(--font-size-16);
  margin-top: 5px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (max-width: 760px) {
  .recruitment__form {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }
  .recruitment__form-item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .recruitment__form-item-label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: var(--font-size-15);
  }
  .recruitment__form-itemlLabel.isMsg {
    margin-top: 0;
  }
  .recruitment__form-item-input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: var(--font-size-15);
  }
  .recruitment__form-btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: var(--font-size-16);
  }
  .recruitment__form-item-input-hint02 {
    margin-right: auto;
    margin-left: 10px;
    padding-top: 0;
    padding-left: 0;
  }
  .recruitment__form-error {
    font-size: var(--font-size-12);
    margin-left: 0;
  }
  .recruitment__form-container-radio {
    padding-left: 0;
  }
}