
@media screen and (min-width: 769px) {
  .hide__pc{
    display: none;
  }
}

@media screen and (max-width: 768px) {
  :root {
    /* デザイン基準 */
    --design-width: 1920;
    /* 動的なフォントサイズ */
    --font-body: 15px; /* 本文 */
    --font-subtitle: 19px; /* 中タイトル */
    --font-title: 23px; /* タイトル */
  }
  /* コンテナの幅調整 */
  .container{
    width: 100%;
    padding: 40px 10px;
  }
  .inner, .inner__s {
    width:100%;
  }
  
  /* フォントサイズ */
  h1{
    font-size: 25px;
    line-height: 1.1;
  }
  h1 span{
    font-size: 14px;
    display: block;
  }
  h2 {
    font-size: var(--font-title);
  }
  h3 {
    font-size: var(--font-subtitle);
  }

  /* Flex */
  .flex {
    flex-direction: column;
  }
  .flex.is__ac {
    align-items:flex-start;
    justify-content:center;
  }

  /* スマホで非表示 */
  .hide__sp{
    display: none;
  }

  /* テーブル */
  .table__line dl{
    flex-direction: column;
    padding: 10px 1em;
  }
  .table__line dt{
    padding-right: 0;
    padding-bottom:5px;
  }

  /* ヘッダー */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 100;
    padding: 0;
  }
  .header h1{
    border-radius: 0 0 10px 0;
    padding: 5px;
    padding-left: 10px;
  }
  .header__nav{
    padding: 10px;
    position: fixed;
    right: 0;
    top: 0;
    padding-left: 30px;
    border-radius: 0 0 0 10px;
  }
  .nav-list {
    flex-direction: column;
    /* gap: calc(2 / var(--design-width) * 100vw); */
    gap: 20px;
  }

  /* Heroセクション */
  .hero__container{
    padding-top: 120px;
  }
  .hero__container .inner {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .hero__container .hero__image {
    width: 100%;
    height: auto;
  }

  .hero__container .hero__text {
    width: 100%;
  }

  /* お知らせセクション */
  .info__container .inner{
    padding:10px;
    border:5px solid #d9d9d9;
    justify-content: space-between;
  }
  .info__container .info__text{
    width:100%;
  }
  .info__container .info__image{
    width:100%;
  }

  /* 紹介セクション */
  .about__text{
    width:100%;
  }
  .about__container .inner.flex{
    align-items: flex-end;
    flex-direction: column-reverse;
  }
  .about__image{
    width:66%;
  }
  .about__image2 img{
    width:53%;
  }
  .about__container .feature__grid {
    gap: 40px;
  }

  /* 年間イベントセクション */
  .events__title:before, .events__title:after{
    width: 40px;
  }
  .events__title:before {
    right: calc(100% + 30px);
  }
  .events__title:after {
    left: calc(100% + 30px);
  }

  /* ホーム概要セクション */
  .info__text,
  .info__map{
    width: 100%;
  }
  .info .flex{
    gap: 30px;
  }
  .info__map iframe{
    aspect-ratio: 1;
  }
}