@charset "UTF-8";

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  vertical-align: bottom;
}


.inner {
  width: 980px;
  margin: 0 auto;
}
.flex {
  display: flex;
}
body {
  font-family: 'Noto Sans', sans-serif;
  font-optical-sizing: auto;
  background-color: #dbf7fa;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  gap: 180px;
  width: 980px;
  margin: 0 auto;
}
header{
    background-color: #dbf7fa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}
header .inner{
  display: flex;
   justify-content: center;
     gap: 180px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 40px;
}
.logo img {
  height: 100px;
}
header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 60px;
  align-items: center;
}
header nav ul li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  color: #333;
}
header nav ul li a:hover {
  color: #1374af;
}
header nav ul li a:hover {
  opacity: 0.7;
}
/* 灰色のボタンを消す */
button{
  display: none;
}


.logo img {
  height: 100px;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 60px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  color: #333;
}
nav ul li a:hover {
  color: #1374af;
}

nav ul li a:hover {
  opacity: 0.7;
}
/* ↑header共通部分 */
/* 帯の部分の文字 */
h1 {
  font-size: 50px;
  margin-top: 80px;
}
.title p {
  font-size: 32px;
  margin-left: 50px;
}

/* ここから上共通 */

div.coler {
  background-color: #dbf7fa;
}

div.sakimori {
  background-color: #dbf7fa;
}

p.main.text span {
  color: #f67708;
  font-weight: bold;
}

div.induction {
  text-align: center;
  margin-top: 50px;
}

/* 画像上のテキストボックス（inner 980px対応） */
.text-overlay-container {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  background: url(../images/service-text.png);
  padding: 10px 0;
}

.text-overlay-container img {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay-box {
  /* position: absolute; */
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 980px;
  width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
}

.text-overlay-box p {
  font-size: 16px;
  line-height: 2;
  color: #333;
  text-align: left;
}

.text-overlay-box p:last-child {
  margin-bottom: 0;
}

/* ↑テキストボックス */

p.morito.link {
  font-weight: bold;
  font-size: 32px;
}

p.link.text {
  font-weight: bold;
  font-size: 24px;
}

p.long.inner{
  margin-top: 20px;
  text-align: justify;
}

figure.sakimori {
  text-align: center;
  padding-top: 50px;
}

p.main.text {
  text-align: center;
  font-size: 48px;
}

div.hp {
  display: flex;
  justify-content: center;
  gap: 280px;
  padding-top: 50px;
}
div.main {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 50px;
  margin-bottom: 10px;
}
.hp figcaption{
  text-align: center;
}

div.main img {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 0.5px solid #c0c0c0;
  width: 400px;
  opacity: 0;
  /*アニメーション */
  transform: scale(0.8);
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zoomIn {
  animation: zoomIn 1.5s ease-out forwards;
}

p.in {
  margin-top: 200px;
}

p.page {
  text-align: center;
  padding-top: 50px;
  background-color: #dbf7fa;
}

figure.green {
  text-align: center;
  margin-top: 50px;
}

p.main.text {
  margin-top: 50px;
}

.main.text span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-30px);
  /* アニメーション */
  animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

figure.over {
  text-align: center;
  margin-top: 50px;
}

.container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* アニメーション */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  max-width: 100%;
  max-height: 100%;
}

figure.boy img {
  width: 150px;
  height: 150px;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.card-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  text-align: left;
  width: 240px;
}

table {
  border-collapse: collapse;
  border: 5px solid #b0dafd;
  max-width: 970px;
  text-align: center;
  margin: 50px auto;
  background-color: #fff;
}

table th {
  width: 340px;
  line-height: 150px;
  border-right: 5px solid #b0dafd;
}

table td {
  display: flex;
  gap: 20px;
  text-align: left;
  padding-left: 10px;
}

table tr {
  border-top: 5px solid #b0dafd;
}

div.td {
  padding-top: 50px;
  gap: 20px;
}

div.pc {
  margin-top: 30px;
}

div.box {
  display: flex;
  justify-content: center;
}

div.air {
  display: flex;
  gap: 165px;
}

div.style {
  display: flex;
  gap: 42px;
}

div.qr {
  display: flex;
  width: 400px;
  justify-content: center;
  margin: auto;
  margin-top: 50px;
  gap: 50px;
  text-align: center;
}

div.in img {
  width: 145px;
  margin-top: 20px;
}

p.green {
  text-align: center;
  padding-top: 50px;
}

div.functionsakimori {
  background-color: #e9f9fb;
}

/* 三角形 */

.triangle-container {
  width: 100%;
  height: auto;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 30vh solid #dbf7fa;
  filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.3));
}

/* 二つ目の三角形 */

.delta-container {
  width: 100vw;
  height: auto;
}

.delta {
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 30vh solid #e9f9fb;
  filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.3));
}

div.merit {
  background-color: #f6fdfe;
  padding-bottom: 140px;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}
button {
  display: none;
}
p.inner.downloadText{
  text-align: center;
  margin-top: 50px;
}
footer {
  background-color: #f8f9fa;
  border-top: 3px solid #1374af;
}
footer .footer {
  background-image: url(../images/footer-pattern.png);
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  height: 302px;
  max-width: 1160px;
  width: 100%;
}

footer .footer-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
footer .footer-left {
  width: 411px;
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 30px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 110px;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 50px;
  margin: 0 40px;
}
.footer-l .footer-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer-l .footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
  margin-top: 40px;
}

.footer-center {
  min-width: 200px;
  align-items: flex-start;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 25px;
  margin-left: -15px;
}
.nav-item {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #1374af;
}

.footer-right {
  gap: 40px;
}

.access-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  padding-left: 8px;
  margin: 5px 0;
}
.footer-right-r {
  background-color: #fff;
  height: 165px;
  width: 220px;
  margin-top: 5px;
}
.contact-info p {
  line-height: 180%;
}

.footer-bottom {
  text-align: center;

  padding-top: 40px;
}
footer figure {
  max-width: 218px;
  width: 100%;
  height: auto;
}

.copyright {
  font-size: 12px;
}
.contact-info {
  padding-left: 0.5rem;
}
.address::before {
  content: "";
  display: inline-block;
  background-image: url(../images/point.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 1px;
}
.phone::before {
  content: "";
  display: inline-block;
  background-image: url(../images/phone.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 1px;
}
.train-info::before {
  content: "";
  display: inline-block;
  background-image: url(../images/train.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 1px;
}

.fax {
  text-indent: 1em;
}
/* TOTOPボタン */
.totop {
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #efe57a;
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 18px;
  font-size: 18px;
  position: fixed;
  bottom: 100px;
  right: 8%;
  z-index: 99;
}
.totop::before {
  content: url(../images/arrow.png);
}
@media (max-width: 1080px) {
    img {
    max-width: 100%;
    height: auto;
  }
  .totop {
    right: 5%;
    bottom: 300px;
  }
  header .inner {
    width: 100vw; 
    height: 80px;
    padding: 0;
    display: block;
  }
  header .logo {
    margin: 20px 50px 50px;
  }
  header .logo figure img {
    width: 120px;
    height: auto;
  }

  /* ハンバーガーボタン */
  button {
    display: block;
  }
  .btn-trigger {
    position: absolute;
    top: 10px;
    right: 80px;
    width: 50px;
    height: 36px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    z-index: 9999;
  }

  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #1374af;
    border-radius: 5px;
    transition: all 0.5s;
  }

  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }

  .btn-trigger span:nth-of-type(2) {
    top: 50%;
    translate: 0 -50%;
  }

  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /*=============================
アニメーション
=============================*/
  .btn-trigger.active span:nth-of-type(1) {
    translate: 0 -50%;
    rotate: -45deg;
    top: 50%;
  }

  .btn-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .btn-trigger.active span:nth-of-type(3) {
    translate: 0 -50%;
    rotate: 45deg;
    top: 50%;
  }

  /* メニュー */
  nav.flex {
    position: fixed;
    top: 0;
    right: -100%; /* 初期位置：画面外に隠す */
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: top 0.5s ease;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  nav.flex ul {
    display: block;
  }

  /* 開いた状態 */
  nav.flex.open {
    right: 0;
  }

  /* メニューの中身 */
  nav.flex ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-top: 100px;
  }

  nav.flex li {
    margin: 20px 0;
  }

  nav.flex a {
    color: #333;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 5rem;
  }

  nav.flex a:hover {
    color: #00bfff;
  }

  /* totop */
  .btn-trigger.active span:nth-of-type(1) {
    translate: 0 -50%;
    rotate: -45deg;
    top: 50%;
  }

  .btn-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .btn-trigger.active span:nth-of-type(3) {
    translate: 0 -50%;
    rotate: 45deg;
    top: 50%;
  }
 
  footer .footer-right {
    display: none;
  }
  .footer-container {
    display: block;
    padding-top: 40px;
  }

  footer .footer-left {
    display: flex;
    margin: auto;
    justify-content: space-around;
    align-items: center;
  }
  .footer-container {
    padding-top: 40px;
  }
  footer .logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
  }
  footer .nav-item {
    font-size: 16px;
  }
  footer .footer-left {
    width: 100%;
  }
  footer .footer-links p {
    text-align: center;
  }
  footer .footer {
    height: auto;
  }
  .footer-links {
    margin: 0;
  }
}
/* タブレット (1024px以下) */
@media (max-width: 1024px) {
  table {
    width: 0 auto;
  }

  /* メインビジュアル */
  figure.sakimori img {
    max-width: 100%;
    height: auto;
  }

  /* メインテキスト */
  p.main.text {
    font-size: 32px;
    padding: 0 20px;
    line-height: 1.5;
  }

  /* 誘導セクション */
  .induction {
    padding: 0 30px;
    max-width: 100%;
    box-sizing: border-box;
  }

  p.morito.link {
    font-size: 26px;
  }

  p.link.text {
    font-size: 18px;
    line-height: 1.6;
  }

  p.long {
    font-size: 13px;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* HPセクション */
  div.hp {
    gap: 150px;
  }

  figcaption{
    text-align: center;
  }

  /* サキモリができること */
  div.main {
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  div.main img {
    max-width: 40%;
    height: auto;
  }

  p.in {
    margin-top: 100px;
    font-size: 13px;
    max-width: 50%;
    line-height: 1.6;
  }

  /* メリットカード*/
  .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px auto;
  } 

  /* テーブル */
  table {
    width: 90%;
    font-size: 13px;
  }

  table th {
    width: 200px;
    line-height: 100px;
  }

  table td {
    padding-left: 15px;
    gap: 15px;
  }

  div.air {
    gap: 80px;
  }

  div.style {
    gap: 20px;
  }

  /* QRコード */
  div.qr {
    gap: 30px;
  }
}

@media (max-width: 980px) {
  .inner {
    width: auto;
  }
}

@media (max-width: 820px) {
  .flex {
    display: block;
  }
  
  table{
    width: 100%;
  }
  .text-overlay-box{
    width: 80%;
    left: 51%;
  }
  div.main{
    gap: 13px;
  }
  .text-overlay-container{
    width: 820px;
  }
}

@media (max-width: 768px) {
  .flex {
    display: initial;
  }
  article {
    margin: 0 5%;
  }

  footer .footer-links {
    display: block;
  }
  footer .footer {
    background-size: 840px auto;

    padding: 0;
  }
  .footer-container {
    padding: 20px;
  }
  .footer-nav {
    gap: 10px;
  }
  footer .footer-bottom {
    padding: 0 0 20px 0;
  }

}
@media (max-width: 390px) {
  footer .footer {
    background-position: bottom;
    background-size: 200%;
  }
  footer .footer-links p a {
    font-size: 10px;
  }
  header .logo {
    margin: 20px 20px 50px;
  }
  .btn-trigger {
    right: 20px;
margin-right: 20px;
  }
}
@media (max-width: 320px) {
  footer .footer-left {
    gap: 5px;
  }
}

/* 実験レスポンシブ */

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
    .totop {
    right: 5%;
    bottom: 300px;
  }
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .inner {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
    .btn-trigger {
        top: 10px; 
    }

  /* 全体の背景セクション */
  div.coler,
  div.sakimori,
  div.functionsakimori,
  div.merit {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .logo img {
    height: 60px;
  }

  /* デスクトップメニューを非表示 */
  header nav ul {
    display: none;
  }


  /* メインテキスト */
  p.main.text {
    font-size: 28px;
    line-height: 1.6;
    padding: 0 15px;
    margin-top: 30px;
  }
  .main .in {
    order: 2;
  }
  .main img {
    order: 1;
  }

  p.main.text span {
    font-size: 32px;
  }

  figure.sakimori {
    padding-top: 30px;
  }

  /* 誘導セクション */
  .induction {
    margin-top: 30px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  p.morito.link {
    font-size: 24px;
  }

  p.link.text {
    font-size: 18px;
    line-height: 1.6;
  }

  p.long {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 15px;
  }

  /* HPセクション */
  div.hp {
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
  }

  div.hp figure.link img {
    max-width: 250px;
    /* margin-left: 260px; */
  }
figure.link{
  margin: auto ;
}
  /* サキモリができること - 縦並び */
  div.main {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
  }

  div.main img {
    max-width: 80%;
    width: 80%;
  }

  p.in {
    margin-top: 0;
    font-size: 14px;
    text-align: center;
    padding: 0 20px;
    line-height: 1.6;
  }

  p.green {
    font-size: 14px;
    line-height: 1.8;
    padding: 30px 15px;
  }

  figure.green {
    margin-top: 30px;
  }

  figure.green img {
    max-width: 100%;
  }

  /* 三角形 */
  .triangle-container,
  .delta-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    display: contents;
  }

  .triangle {
    border-top: 15vh solid #dbf7fa;
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
  }

  .delta {
    border-top: 15vh solid #e9f9fb;
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
  }

  /* メリットセクション */
  div.merit {
    padding-bottom: 80px;
  }

  /* メリットカード - 1列 */
  .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px auto;
    padding: 0 15px;
  }

  .card {
    max-width: 100%;
    padding: 25px 15px;
  }

  .icon {
    width: 150px;
    height: 150px;
  }

  figure.boy img {
    width: 120px;
    height: 120px;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .card-text {
    font-size: 13px;
    width: 100%;
    line-height: 1.7;
  }

  /* テーブル */
  table {
    width: 95%;
    font-size: 12px;
    border: 3px solid #b0dafd;
  }

  table th {
    width: 100px;
    line-height: 60px;
    font-size: 12px;
    border-right: 3px solid #b0dafd;
  }

  table td {
    display: block;
    padding: 15px 10px;
    text-align: left;
  }

  table tr {
    border-top: 3px solid #b0dafd;
  }

  div.td {
    padding-top: 15px;
    margin-bottom: 15px;
  }

  div.pc {
    margin-top: 15px;
  }

  div.air {
    display: block;
  }

  div.air .td {
    margin-bottom: 20px;
  }

  div.style {
    display: block;
  }

  div.style .td {
    margin-bottom: 20px;
  }

  /* QRコード */
  div.qr {
    flex-direction: column;
    width: 100%;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
  }

  div.in {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
  }

  div.in img {
    width: 145px;
    margin-top: 20px;
  }

  .text-overlay-box{
    max-width: 100%;
  }
  text-overlay-container{
    max-width: 100%;
  }
  .text-overlay-container {
    width: 95% !important;
  }

  .text-overlay-box {
    padding: 25px 30px !important;
    width: 88% !important;
    max-width: 88% !important;
    border-radius: 8px !important;
  }

  .text-overlay-box p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
  }
}

/* 小型スマートフォン (480px以下) */
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }




  .inner {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* 全体の背景セクション */
  div.coler,
  div.sakimori,
  div.functionsakimori,
  div.merit {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }


  /* メインテキスト */
  p.main.text {
    font-size: 24px;
    padding: 0 10px;
    margin-top: 20px;
  }

  p.main.text span {
    font-size: 28px;
  }

  figure.sakimori {
    padding-top: 20px;
  }

  /* 誘導セクション */
  .induction {
    margin-top: 20px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }

  p.morito.link {
    font-size: 20px;
  }

  p.link.text {
    font-size: 16px;
  }

  p.long {
    font-size: 12px;
    line-height: 1.6;
  }

  /* HPセクション */
  div.hp {
    padding-top: 20px;
    gap: 20px;
  }

  div.hp figure.link img {
    max-width: 200px;
  }

  /* サキモリができること */
  div.main {
    margin-top: 20px;
    gap: 15px;
  }

  div.main img {
    max-width: 90%;
  }

  p.in {
    font-size: 13px;
    padding: 0 15px;
  }

  /* 機能セクション */
  div.functionsakimori {
    padding: 0px;
  }

  p.green {
    font-size: 13px;
    line-height: 1.7;
    padding: 20px 10px;
  }

  figure.green {
    margin-top: 20px;
  }

  /* 三角形 */
  .triangle-container,
  .delta-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    display: contents;
  }

  .triangle {
    border-top: 10vh solid #dbf7fa;
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
  }

  .delta {
    border-top: 10vh solid #e9f9fb;
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
  }

  /* メリットセクション */
  div.merit {
    padding-bottom: 60px;
  }

  /* メリットカード */
  .container {
    margin: 20px auto;
    padding: 0 10px;
    gap: 15px;
  }

  .card {
    padding: 20px 10px;
  }

  .icon {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  figure.boy img {
    width: 100px;
    height: 100px;
  }

  .card-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .card-text {
    font-size: 12px;
    line-height: 1.6;
  }

  /* テーブル */
  table {
    width: 100%;
    font-size: 11px;
    margin: 30px auto;
  }

  table th {
    width: 120px;
    line-height: 50px;
    font-size: 11px;
  }

  table td {
    padding: 10px 8px;
  }

  div.td {
    padding-top: 10px;
  }

  /* QRコード */
  div.qr {
    margin-top: 20px;
    gap: 20px;
  }

  div.in img {
    width: 130px;
    margin-top: 15px;
  }
        .btn-trigger {
            top: 10;
            right: 80px;
        }
    }

@media(max-width:390px) {
    .btn-trigger {
        right: 20px;
        margin-right: 20px;
    }
  }

