/*====================全般設定====================*/
/* ====================

CSSリセット

==================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* 主要な色を定義 */

    --main-color: #ffff;

    --accent-color: #FF6F00;

    --text-color: #1D2B53;

    --background-color: #FAFAFA;

    --background-keycolor: #e3fffc;

}



body {
    font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: var(--background-color);
}
body{
   overflow-x:hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


p {
    margin: 0;
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    padding-bottom: 30px;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 20px;
    color: var(--text-color);
}

h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8rem;
    letter-spacing: 0.08em;
}

p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6rem;
    letter-spacing: 0.08em;
    padding-top: 20px;
     color: var(--text-color);
}
/* ====================

共通

==================== */

.section {
    flex-direction: column;
    padding: 0px 0px 150px 0px;
    gap: px;
    max-width: 1980px;
    margin: 0 auto;
}
.container {
    margin: 0 20px;
}
.section__title-and-icon {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 150px;
}

/* --- Header / Navigation (Desktop First) --- */
header {
    /* PC表示ではヘッダーの幅を画面いっぱいに設定 */
    display: flex;
    width: 100%;
}
.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* PC用のナビゲーションコンテナ */
.global-header {
    display: flex;
    backdrop-filter: blur(15px);
    width: 100%;
    height: 70px;
    max-width: 1440px;
    margin: 0 20x;
}

.global-nav__item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-color);
}

.menu-btn {
    display: none;
}

.logo img {
    width: 50px;
}

/* ====================

メイン (main)

==================== */
main{
    background-image: url('../img/svc/bg-grid.svg');
    background-repeat: repeat;
    background-repeat: repeat;
    background-size: 400px;
}



/* ====================

ファーストビュー (FV)

==================== */
.fv{
    width: 100%;
}
.fv__container{
    display: flex;
    padding-top: 50px;
    width: 100%;
    margin: 0 10px;
    justify-content: center;
    position: relative;
}
.fv__tatecopy {
    width:6%;
    top: 50px;
    left: -5px;
    position: absolute;
}
.fv__content {
    width: 90%;
}
.fv__image {
    margin:0 auto;
    width: 50%;
}
.fv__buttons_container {
    display: flex;
    justify-content: center;
    width: 100%;
}
.fv__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 100px 0px;
    width: 100%;
}
.fv__button {
    width: 100px;
    transition: transform 0.3s ease;
}
li{
    list-style: none;
}

.typing-text {
    position: absolute;
    top: -5%;
    left: 35%;
    width: 100%;
}
.frame-fv__button {
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 3.2s;
}
.cursor {
  /* 1秒間に1回、無限に繰り返す */
  animation: blink 1s step-end infinite;
  font-size: 26px;
  font-weight: 700;
  color: #ff0055;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* ===================

コンセプトとサービス (FV)

==================== */


.concept__illustration {
    width: 100%;
    gap: 50px;
    align-items: center;
    padding-bottom: 50px;
}
.service_section{
    width: 100%;
}
.service__container {
    position: relative;
}
.service__sp-image {
    width: 100%;
}
.service__title {
    width: 100%;
    margin: 5px auto;
    padding-bottom: 50px;
    justify-content: center;
    display: flex;
}
.service__title_sp {
    width: 100%;
}
.service__details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 5px auto;
    padding-bottom: 100px;
}

.service__for-personal{
    width: 100%;
    margin: 20px auto;
    position: relative;
}
.service__for-personal_bg {
    width: 100%;
    padding-bottom: 100px;
}
.service__for-personal_content{
    position: relative;
    width: 100%;
}
.service__for-personal_container{
    margin: 0 20px;
    position: absolute;
    top: 10%;
    gap: 20px;
}
.service__for-personal_text{
    top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.service__for-personal_item{
    display: flex;
    gap: 20px;
}
.service__for-personal_button{
    max-width: 200px;
    margin: 0 auto;
}
.service__for-personal_logo01{
    max-width: 50px;
}
.service__for-personal_item{
    display: block;
    gap: 20px;
}
.service__for-personal_inner{
    display: flex;
    gap: 10px;
    padding-top: 6%;
    align-items: flex-start;
}

.service__for-business{
    width: 100%;
    margin: 20px auto;
    padding-bottom: 100px;
    position: relative;
}
.service__for-business_bg{
    width: 100%;
    margin: 20px auto;
}
.service__for-business_tour{
    position: relative;
    width: 100%;
    margin: 20px auto;
}
.service__for-business_tour_bg{
    width: 100%;
}
.service__for-business_tour_content{
    position: absolute;
    top: 8%;
    gap: 20px;
    margin: 0 20px;
    align-items: flex-start;
    display: flex;
}
.service__for-business_tour_item{
    padding-bottom: 50px;
}

.business-tour__button{
    max-width: 200px;
    margin: 0 auto;
}
.how-to-use__for-business_content{
    padding-bottom: 50px;
}
.h3{
    padding-bottom: 50px;
}

/* ===================

予約とレポート

==================== */
.how-to-use__section{
    width: 100%;
    margin-bottom: 100px;
}
.how-to-use__container{
    background-color: #00ffcd; 
    padding: 50px 40px;
    border-radius: 80px 10px;
    margin: 10px auto;
}
.report__section{
    width: 100%;
    margin-bottom: 100px;
    padding: 50px 30px;
    border-radius: 100px 10px;
}
.report__container{
    background-color: #b5abff; 
    padding: 50px 40px;
    border-radius: 80px 10px;
    margin: 10px auto;

}
.how-to-use__title-and-icon,.report__title-and-icon,.access__title-and-icon{
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 50px;
    align-items: center;
}
.how-to-use__icon,.report__icon{
    width: 40px;
}
.how-to-use__title, .report__title{
    line-height: 1.2;
    padding-bottom: 0px;
    text-decoration: underline;
    text-decoration-color: #b5abff;
    text-decoration-thickness: 6px;
}
.report__title{
    text-decoration-color: #00ffcd;
}
.how-to-use__for-personal, .how-to-use__for-business{
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    color: black;
    opacity: 098;
    border-radius: 30px;
}

/* --- スマホ用の設定（画面幅が768px以下の場合） --- */
@media screen and (max-width: 768px) {
.how-to-use__for-personal, .how-to-use__for-business{
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    color: black;
    opacity: 098;
    border-radius: 30px;
 }
}
#note-posts ul {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}

#note-posts li {
  padding-top: 16px;
  border-bottom: 2px solid #fff;
}

#note-posts a {
  color: #111;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.6;
}

#note-posts img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  border-radius: 8px;
}

.report__header{
    align-items: center;
    gap: 8px;
    padding-bottom: 50px;

}

.to-instagram{
    align-items: center;
    gap: 20px;
    padding: 30px 30px;
    background-color: #ffffff;
    border-radius: 30px 10px 100px;
}
.instagram-icon {
    width: 50px;
    height: 50px;
}

.access__title{
    padding-bottom: 0px;
}

/* ===================

カレンダー

==================== */
.calendar-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9の比率 */
  overflow: hidden;
}

.calendar-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- スマホ用の設定（画面幅が768px以下の場合） --- */
@media screen and (max-width: 768px) {
.calendar-wrapper {
    /* スマホでは縦長に見えるように比率を大きくする（例: 120%〜150%など調整） */
    padding-top: 80%; 
  }
}

/* ===================アクセス==================== */
.access__section{
    width: 100%;
    background-color: #edebebda; 
    padding: 50px 30px;
}

.access__map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.access__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.img.servicee__for-personal_bg{
    width: 100%;
}
.address{
    padding-top: 50px;
}


/* ===================フッター==================== */

footer {
    width: 100%;
    display: flex;
    padding-top: 50px;
    background-color: #58549E;
}   
.footer__container {
    text-align: center;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
    padding-bottom: 20px;
}
.footer-nav__menu {
    text-align: center;
}
.footer-nav__item{
    flex-direction: column;
    list-style: none;
    color: #fff;
    margin-left: 20px;
    justify-content: center;
    padding-bottom: 20px;
}
footer p {
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-weight: 300;
    font-size: 12px;
}


/* ===================ヘッダーグロナビ==================== */
.menu-wrapper {
  position: relative;
  margin: 0 10px;
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に左上固定 */
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（右から出す） */
.menu {
  position: fixed;
  top: 0;
  right: -250px; /* ← 初期位置を右へ */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 2;
}

#menu-toggle:checked ~ .menu {
  right: 0; /* ← 開いたときは右0へ */
}

.menu ul {
  list-style: none;
  padding: 60px 20px;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
  font-weight: 500;
}

.menu a:hover {
  color: #00ffcd;
}

/* ===================お問い合わせ==================== */


/* 中央カード */
.contact-wrapper {
  width: 90%;
  max-width: 520px;
  margin: 60px auto;
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* タイトル */
.contact-wrapper h1 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

/* フォーム全体 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
}

/* ラベル */
.contact-form label {
  font-size: 13px;
  color: #444;
  margin-top: 8px;
}

/* 入力欄 */
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background: #fafafa;
  transition: 0.2s;
}

/* フォーカス */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6c63ff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}

/* ボタン */
.contact-form button {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #6c63ff, #4a47a3);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

/* ホバー */
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(108,99,255,0.3);
}


.business-tour__button-img{
padding-top:20px;
}

/* ===================レスポンシブ==================== */

@media (max-width: 1100px) {
.service__for-personal_item{
    padding-bottom: 50px;
}
}

@media (min-width: 1000px) {
.fv__tatecopy{
    left: 50px;
}
}


@media (min-width: 800px) {
.fv__image {
    width: 25%;
}
.how-to-use__for-personal, .how-to-use__for-business{
margin-top: 100px;
margin-bottom: 50px;
} 

.menu-icon {
    display: none;   
}
.menu {
    position: static;
    box-shadow: none;
    width: 100%;
}
.menu ul {
    display: flex;
    gap: 20px;
    padding: 0;
    justify-content: flex-end
}
.menu-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 50px;
    height: 70px;
}
header {
    display: block;
    width: 100%;
}

.fv__button {
    width: 160px;
}
.cursor {
  font-size: 38px;
  font-weight: 700;
}

.business-tour__button-img02{
    max-width: 300px;
    margin: 0 auto;
}
.business-tour__button{
    max-width: 300px;
    margin: 0 auto;
}
.fv__content {
    width: 80%;
}
.how-to-use__container, .report__container{
    padding: 100px 100px;
}

h4 {
    padding-bottom: 30px;
}

.service__for-personal_logo01 {
    display:none;
}

.service__for-personal_container{
   padding-top: -100px;
}
}



@media (min-width:500px) {
h2{
    font-size: 42px;
    font-weight: 500;
    padding-bottom: 50px;
}

h3 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 50px;
    letter-spacing: 0.08em;
}

h4 {
    font-size: 24px;
     line-height: 2.2rem;
}

p {
    font-size: 20px;
    line-height: 2.1rem;
    letter-spacing: 0.08em;
    padding-bottom: 20px;
}
.service__for-personal_container{
    margin: 0 30px;
}
}
@media (min-width:720px) {

.how-to-use__title-and-icon, .report__title-and-icon, .access__title-and-icon{
gap: 30px;
}
h2 {
    font-size: 46px;
    font-weight: 500;
    padding-bottom: 50px;
}

h3 {
    font-size: 42px;
    padding-bottom: 70px;
}

h4 {
    font-size: 30px;
    line-height: 2.8rem;
}

p {
    font-size: 28px;
    line-height: 3.4rem;
    letter-spacing: 0.08em;
    padding-bottom: 20px;
}
}
@media (min-width: 768px) {
.concept__illustration {
    width: 100%;
    gap: 50px;
    align-items: center;
    padding-bottom: 50px;
}


}

@media (max-width: 700px) {
.section {
    padding-top: 0px;
    padding-bottom: 50px;
}
}
@media (min-width: 800px) {
.service__details{
    display: none;
}
}
@media (min-width: 1000px) {

.service__for-business_tour{
    position: relative;
}
.business-tour__button-img02{
    position: absolute;
    right: 50px;
    top: 40%;
}
.service__for-business_tour_content{
    display: none;
    margin: 0 50px;
}

.business-tour__button{
    position: absolute;
    top: 8%;
    gap: 30px;
}
.service__for-personal_text{
    display: none;
}
.service__for-personal_container{
    display: flex;
    position: absolute;
    top: 30%;
    margin: 0 50px;
}
}
@media (max-width: 500px) {

.service__for-personal_logo01 {
    max-width: 30px;
}

body{
   overflow-x:hidden;
}}

/* コンタクトホ最適化 */
@media (max-width: 480px) {
  .contact-wrapper {
    padding: 16px;
    margin: 20px auto;
  }

  h1 {
    font-size: 20px;
  }

  button {
    font-size: 15px;
    padding: 12px;
  }
}

@media (max-width: 999px) {
    .business-tour__button-img02{
display:none
}
}
/* ========================================================
   PC用（1000px以上）：この場所でできること横幅調整
======================================================== */
@media (min-width: 1000px) {

  /* 1. PC画面で横いっぱいに広がりすぎて間延びするのを防ぐ */
  .concept__introduction,
  .service__title {
    max-width: 1300px !important;     /* 横幅を最大1300pxに制限して中央に */
    margin-left: auto !important;
    margin-right: auto !important;
    /*padding: 0px 60px !important;*/    /* 縦横の余白（内側）もPC用に少しスッキリさせる */
  }
}
/* ========================================================
   PC用（720px以上）：法人向けセクションの文字巨大化を強制リセット
======================================================== */
@media (min-width: 720px) {

  /* 法人向けエリア（サービス説明＆利用方法）の中にある見出しをすべて適正サイズに */
  .service__for-business h2,
  .service__for-business h3,
  .service__for-business h4,
  .how-to-use__for-business h2,
  .how-to-use__for-business h3,
  .how-to-use__for-business h4 {
    font-size: 24px !important;      /* 46px等になっていたものを24pxに縮小 */
    line-height: 1.5 !important;
    padding-bottom: 20px !important;
  }

  /* 法人向けエリアの中にある文章（pタグ）をすべて適正サイズに */
  .service__for-business p,
  .how-to-use__for-business p {
    font-size: 16px !important;      /* 28pxになっていたものを16pxに縮小 */
    line-height: 1.8 !important;
    padding-top: 10px !important;
  }

  /* エリア全体が画面いっぱいに広がりすぎるのを防ぎ、中央に寄せる */
  .service__for-business,
  .how-to-use__for-business {
    max-width: 900px !important;     /* 横幅を最大900pxに制限 */
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* ========================================================
   PC用（1000px以上）：利用方法・レポート・アクセスの文字巨大化をリセット
======================================================== */
@media (min-width: 1000px) {

  /* 1. 各セクションの見出し（h2, h3, h4）をまとめて適切なサイズ（28px）に */
  .how-to-use__section h2, .how-to-use__section h3, .how-to-use__section h4,
  .report__section h2, .report__section h3, .report__section h4,
  .access__section h2, .access__section h3, .access__section h4 {
    font-size: 28px !important;       /* 46px等になっていたものを28pxに縮小 */
    line-height: 1.4 !important;
    padding-bottom: 25px !important;
  }

  /* 2. 各セクションの文章（pタグ）や住所の文字をまとめて読みやすいサイズ（16px）に */
  .how-to-use__section p,
  .report__section p,
  .access__section p,
  .address p,
  .how-to-use__for-personal p,
  .how-to-use__for-business p {
    font-size: 16px !important;       /* 28pxで巨大化していた文章を16pxに縮小 */
    line-height: 1.8 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  /* 3. PC画面で横いっぱいに広がりすぎて間延びするのを防ぐ */
  .how-to-use__container,
  .report__container {
    max-width: 1000px !important;     /* 横幅を最大1000pxに制限してキュッと中央に */
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 60px 60px !important;    /* 縦横の余白（内側）もPC用に少しスッキリさせる */
  }

  /* 4. アクセスセクションも横幅を整える */
  .access__section {
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* ========================================================
   PC用（720px以上）：「利用方法」「レポート」の特定の文字を小さくする
======================================================== */
@media (min-width: 720px) {

  /* 1. タイトル：「利用方法・予約」「レポート」 */
  .how-to-use__title,
  .report__title {
    font-size: 32px !important;      /* 巨大化を防ぎ、スッキリしたサイズに */
    line-height: 1.4 !important;
  }

  /* 2. 説明文：「ご利用の流れや開放日〜」「一般の方は〜」「法人専用体験ツアー〜」「この場所で行われた〜」「最新のイベント情報は〜」 */
  /* ※これらの文章が入っている可能性のある場所をすべて狙い撃ちします */
  .how-to-use__container > p,
  .how-to-use__section p,
  .report__container > p,
  .report__section p,
  .report__header p,
  .to-instagram p {
    font-size: 16px !important;      /* 28pxになっていた文字を16pxに縮小 */
    line-height: 1.8 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  
  /* 3. Instagramへの誘導枠全体のバランス調整（文字が小さくなった分、余白を整える） */
  .to-instagram {
    max-width: 600px !important;     /* 横幅を制限して間延びを防ぐ */
    margin: 0 auto !important;       /* 中央寄せ */
  }
}
/* ========================================================
   PC用（720px以上）：「個人で体験したい方」の文字サイズを法人向けと揃える
======================================================== */
@media (min-width: 720px) {

  /* 「個人で体験したい方」「一般開放日」などの見出しを法人向けと同じサイズに */
  .how-to-use__for-personal h2,
  .how-to-use__for-personal h3,
  .how-to-use__for-personal h4 {
    font-size: 24px !important;      /* 法人向けと揃えたサイズ */
    line-height: 1.5 !important;
    padding-bottom: 20px !important;
  }

  /* ボックス内のその他のテキスト（日時や説明など）も法人向けと同じサイズに */
  .how-to-use__for-personal p,
  .how-to-use__for-personal span,
  .how-to-use__for-personal div {
    font-size: 16px !important;      /* 法人向けと揃えたサイズ */
    line-height: 1.8 !important;
  }
}

/* ========================================================
   PC用（720px以上）：緑・紫の背景の無駄な広がりを抑え、テキストを揃える
======================================================== */
@media (min-width: 720px) {

  /* 1. 利用方法（緑）とレポート（紫）の余分な背景（内側の余白）を減らす */
  .how-to-use__container, 
  .report__container {
    padding: 50px 60px !important;    /* 上下100px→50px、左右100px→60pxに半減してスッキリさせる */
    max-width: 900px !important;      /* 画面いっぱいに広がるのを防ぎ、最大900pxに制限 */
    margin-left: auto !important;     /* 中央寄せ */
    margin-right: auto !important;
  }

  /* 2. レポート内の「この場所で行われた〜」などのテキストを小さく揃える */
  .report__section p,
  .report__container p,
  .report__header p,
  .report__title-and-icon + p {
    font-size: 16px !important;       /* 巨大化を防ぎ、16pxに統一 */
    line-height: 1.8 !important;
    padding-bottom: 20px !important;  /* 下のコンテンツとの間に適度な余白を確保 */
  }

  /* 3. 背景が小さくなった分、中の要素が窮屈にならないよう少し整える */
  .how-to-use__for-personal, 
  .how-to-use__for-business {
    margin-top: 30px !important;      /* 白いボックスの上の余白を少し詰める */
    margin-bottom: 30px !important;
  }
}
/* ========================================================
   PC用（720px以上）：レポートエリアの残りの文字を完全に16pxに揃える
======================================================== */
@media (min-width: 720px) {

  /* 1. レポートエリア内にある可能性のあるタグ（p, a, span, div）をすべて狙い撃ち */
  .report__section p,
  .report__container p,
  .to-instagram,
  .to-instagram p,
  .to-instagram a,
  .to-instagram span,
  .report__container > div:not(.report__header):not(.to-instagram) {
    font-size: 16px !important;       /* 法人向けと同じ16pxに統一 */
    line-height: 1.8 !important;
    letter-spacing: 0.05em !important;
  }

  /* 2. 万が一タグで囲まれずに直接文字が置かれている場合への対策 */
  .report__container,
  .report__section {
    font-size: 16px !important;
  }
}
/* ========================================================
   PC用（720px以上）：レポートエリアの残りの文字を完全に16pxに揃える
======================================================== */
@media (min-width: 720px) {

  /* 1. レポートエリア内にある可能性のあるタグ（p, a, span, div）をすべて狙い撃ち */
  .report__section p,
  .report__container p,
  .to-instagram,
  .to-instagram p,
  .to-instagram a,
  .to-instagram span,
  .report__container > div:not(.report__header):not(.to-instagram) {
    font-size: 16px !important;       /* 法人向けと同じ16pxに統一 */
    line-height: 1.8 !important;
    letter-spacing: 0.05em !important;
  }

  /* 2. 万が一タグで囲まれずに直接文字が置かれている場合への対策 */
  .report__container,
  .report__section {
    font-size: 16px !important;
  }
}
/* ========================================================
   PC用（720px以上）：紫背景の徹底的な余白削減とテキスト縮小
======================================================== */
@media (min-width: 720px) {

  /* 1. 紫の背景（大枠）の余白をさらに大幅に減らす */
  .report__container {
    padding: 40px 40px !important;    /* 元の100pxから半分以下にカット */
  }

  /* 2. 紫の背景を内側から押し広げている「見出し周辺の下余白」をカット */
  .report__header {
    padding-bottom: 20px !important;  /* 元の50pxから20pxに減らす */
  }

  /* 3. 「この場所で行われたイベントや取り組みの様子をご紹介します。」の文字を16pxに */
  /* タグが何であっても絶対に効くようにすべて指定 */
  .report__header,
  .report__header p,
  .report__header span,
  .report__header div {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  /* 4. 「最新のイベント情報はInstagramからご確認ください。」の文字を16pxに */
  .to-instagram,
  .to-instagram p,
  .to-instagram a,
  .to-instagram span,
  .to-instagram div {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  /* 5. Instagramの白い枠自体も、PCに合わせて少しスリムに整える */
  .to-instagram {
    padding: 20px 30px !important;    /* 白枠の上下の余白を減らす */
    max-width: 500px !important;      /* 横に広がりすぎるのを防ぐ */
    margin: 20px auto 0 !important;   /* 中央に配置 */
  }
}
/* ========================================================
   PC用（720px以上）：レポートエリアのh4テキストと紫の余白を調整
======================================================== */
@media (min-width: 720px) {

  /* 1. 「この場所で行われた〜」「最新のイベント情報は〜」の文字を16pxに！ */
  /* （犯人はh4タグでした） */
  .report__header h4,
  .to-instagram h4,
  .to-instagram p {
    font-size: 16px !important;       /* 24pxになっていたものを16pxに縮小 */
    line-height: 1.6 !important;
    font-weight: normal !important;   /* 太字を解除したい場合は残す（不要なら削除） */
  }

  /* 2. 紫の背景（大枠）の余白を大幅に減らす */
  .report__container {
    padding: 40px 60px !important;    /* 元の100pxから大幅にカットしてスッキリ */
  }

  /* 3. 紫の背景を内側から押し広げている余白をカット */
  .report__header {
    padding-bottom: 20px !important;  /* 元の50pxから20pxに減らす */
  }

  /* 4. Instagramの白枠のバランスも整える */
  .to-instagram {
    padding: 20px 30px !important;
    max-width: 500px !important;
    margin: 20px auto 0 !important;
  }
}
/* ========================================================
   PC用（720px以上）：「法人で本格導入〜」の箱の文字サイズを揃える
======================================================== */
@media (min-width: 720px) {

  /* 1. 巨大化している「法人で本格導入〜」の見出し（おそらくh2かh4）を24pxに揃える */
  .how-to-use__for-business h2,
  .how-to-use__for-business h3,
  .how-to-use__for-business h4 {
    font-size: 24px !important;
    line-height: 1.5 !important;
    padding-bottom: 10px !important;
  }

  /* 2. 巨大化している「※体験ツアーボタンより〜」のテキストを16pxに揃える */
  .how-to-use__for-business p,
  .how-to-use__for-business span,
  .how-to-use__for-business div {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}
/* ========================================================
   PC用（720px以上）：消えてしまう予約ボタンを強制的に表示する
======================================================== */
@media (min-width: 720px) {

  /* スマホ用ボタンがPCで非表示にされるのを防ぐ */
  a.business-tour__button,
  .business-tour__button {
    display: block !important;         /* 「隠す」設定を上書きして表示 */
    opacity: 1 !important;             /* 透明化を無効化 */
    visibility: visible !important;    /* 完全に表示 */
    text-align: center !important;     /* ボタンを中央に寄せる */
    margin: 30px auto 10px !important; /* 上下に適度な余白をつける */
  }

  /* ボタンの画像自体もPC用の綺麗なサイズに整える */
  .business-tour__button img {
    display: inline-block !important;
    max-width: 320px !important;       /* 巨大化を防ぎ、クリックしやすいサイズに制限 */
    height: auto !important;
    opacity: 1 !important;
  }
}
/* ========================================================
   PC用（720px以上）：ボタン消失プログラムを完全に無力化する
======================================================== */
@media (min-width: 720px) {

  /* aタグ（リンク枠）とimgタグ（画像）の両方に、表示維持とアニメーション停止をかける */
  a.business-tour__button,
  .business-tour__button img,
  .how-to-use__for-business a {
    display: block !important;
    opacity: 1 !important;             /* 絶対に透明にさせない */
    visibility: visible !important;    /* 絶対に隠させない */
    transform: none !important;        /* 画面外に飛ばす動きを無効化 */
    transition: none !important;       /* ふわっと消える動きを無効化 */
    animation: none !important;        /* すべてのアニメーションを強制停止 */
    position: static !important;       /* 変な位置にズレるのを防ぐ */
    pointer-events: auto !important;   /* クリックできなくなるのを防ぐ */
  }

  /* ボタンの見た目調整 */
  a.business-tour__button {
    text-align: center !important;
    margin: 30px auto !important;
  }

  .business-tour__button img {
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto !important;
  }
}
/* ========================================================
   PC用（720px以上）：ページ内リンク（#reservation）の位置ズレを直す
======================================================== */
@media (min-width: 720px) {

  /* #reservation に飛んだ際、上部に余白を持たせてストップさせる */
  #reservation {
    scroll-margin-top: 100px !important; /* ヘッダーの高さ分（約100px）手前で止める */
  }

}
/* ========================================================
   PC用（720px以上）：体験ツアー予約ボタンを上に詰める
======================================================== */
@media (min-width: 720px) {

  /* 1. ボタン自体の「上の余白」を減らす */
  a.business-tour__button,
  .business-tour__button {
    margin-top: 10px !important;    /* 上の余白を限界まで詰める（お好みで0pxにしてもOK） */
    margin-bottom: 20px !important; /* 下の余白は箱のバランスのために残す */
  }

  /* 2. もし上のテキスト（毎月第2土曜日〜）が下余白を持っていた場合は削る */
  .how-to-use__for-business p,
  .how-to-use__for-business_content p,
  .how-to-use__for-business_content div {
    margin-bottom: 0 !important;
    padding-bottom: 5px !important; /* テキストとボタンがくっつきすぎない程度に微調整 */
  }

}
/* ========================================================
   PC用：全体的なデザインの引き締めと余白の最適化
======================================================== */
@media (min-width: 720px) {

  /* 1. 全体的なフォントサイズをPC向けに少し小さく落ち着かせる */
  body, p, div, span {
    font-size: 16px !important;
    line-height: 1.7 !important; /* 行間を広げて読みやすく */
    letter-spacing: 0.02em !important;
  }

  /* 2. 各コンテンツの箱（セクション）の余白を統一してスッキリさせる */
  section, .section, .container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  /* 3. 紫のエリアなど、横に広がりすぎている要素を中央に寄せて幅を制限 */
  .report__container,
  .how-to-use__section {
    max-width: 900px !important;   /* 横幅を制限して視線の移動を減らす */
    margin: 0 auto !important;     /* 中央揃え */
    padding: 40px !important;      /* 内側の余白を整える */
  }

  /* 4. 大きすぎる見出し（h1〜h4）をPC用の適正サイズに一括調整 */
  h1, h2, h3, h4 {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }

  /* 5. 画像が大きすぎる場合、PCでは最大幅を制限する */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}
/* 画面の横幅が 1024px 以上（PCサイズ）のときだけ適用する */
@media screen and (min-width: 1024px) {
    .container-name {
        display: flex;
        justify-content: flex-start; /* ←ここに先ほどの修正を入れる */
    }
}
/* ========================================================
   PC表示の余白・スペース・アクセス位置の最終調整（最新統合版）
   ======================================================== */
@media screen and (min-width: 1024px) {

    /* 1【横の隙間】縦書きタイトルと右側テキストの間を詰める */
    .concept-container, .about-wrap, .main-flex {
        display: flex !important;
        justify-content: center !important;
        gap: 40px !important;
    }

    /* 2【縦の隙間】メイン文章と「この場所でできること」の間を詰める */
    #concept, .concept, #about, .about, .concept__introduction {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    #features, .features, #contents, .contents, #services, .services {
        margin-top: 30px !important;
        padding-top: 30px !important;
    }

    /* 3【紫と緑の間の縦の隙間】外側の隙間だけを徹底的に詰める */
    .report__section {
        margin-bottom: 10px !important;
    }
    .how-to-use__section {
        margin-top: 10px !important;
    }

    /* 【今回の修正】「利用方法・予約」の上の緑の余白をグッと広げる */
    .how-to-use__container {
        padding-top: 90px !important; /* 90pxに増やして上にゆとりを持たせました（お好みで100px等に調整OK） */
    }

    /* 4【アクセス】アイコンと文字の縦位置を揃えて、文字を極太にする */
    .access__title-and-icon {
        display: flex !important;
        align-items: center !important; /* アイコンと文字の上下中央をキッチリ揃える */
        gap: 15px !important;           /* アイコンと文字の間の隙感 */
        padding-bottom: 40px !important; /* タイトル下の余白 */
    }

    .access__title,
    .access__title-and-icon h2 {
        font-weight: 800 !important;    /* 文字をしっかり太くする */
        padding-bottom: 0 !important;   /* 文字の下余白をゼロにして、アイコンと高さを揃える */
        margin-bottom: 0 !important;
    }

    /* アイコン画像自体の余計な隙間をリセット */
    .access__title-and-icon img {
        margin: 0 !important;
        padding: 0 !important;
    }
}
@media screen and (min-width: 1024px) {
    body section.report__section,
    body .report__section {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }
    body section.how-to-use__section,
    body .how-to-use__section {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-top: 0px !important;
    }
    body .how-to-use__container {
        padding-top: 90px !important;
        margin-top: 0px !important;
    }
}

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* すべての画像、動画、表、インラインフレームが画面からはみ出さないようにする */
img, video, iframe, table {
  max-width: 100%;
  height: auto;
}

/* ボックス要素の幅がパディングやボーダーを含めて計算されるようにする */
* {
  box-sizing: border-box;
}
