@charset "utf-8";
/* CSS Document */

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* 背景用*/

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  margin-left: 75vw;
}

a.btn-border-shadow--radius {
  border-radius: 100vh;
}
a.btn-border-shadow {
  padding: calc(1.5rem - 12px) 3rem 1.5rem;

  background: #fff;
}

a.btn-border-shadow:before {
  position: absolute;
  top: -6px;
  left: -6px;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;

  border: 3px solid #000;
  border-radius: 0.5rem;
}

a.btn-border-shadow--radius:before {
  border-radius: 100vh;
}

a.btn-border-shadow:hover {
  padding: calc(1.5rem - 6px) 3rem;
}

a.btn-border-shadow:hover:before {
  top: 0;
  left: 0;
}


Resources


/* === aboutページ専用の上書き === */
html, body {
  overflow-x: hidden;
  overflow-y: auto; /* グローバルの overflow:hidden を解除してスクロール可に */
}

/* モバイルの上部固定メニューと、下部固定フッターに被らない余白を確保 */
@media (max-width: 540px) {
  body.page-about {
    padding-top: 56px;  /* .iconbox の高さぶん */
    padding-bottom: 64px; /* footer の高さぶん */
  }
}
@media (min-width: 541px) {
  body.page-about {
    padding-bottom: 64px; /* footer の高さぶん */
  }
}
/* ===== ABOUT レイアウト（前の見え方に復元・色は現状のまま） ===== */

/* コンテンツ幅・中央寄せ・上下の余白 */
body.page-about .content{
  max-width: 960px;
  margin: 96px auto 96px;
  padding: 0 16px;
}

/* モバイル時は上部メニューの分だけ少し詰める */
@media (max-width: 540px){
  body.page-about .content{ margin-top: 72px; }
}

/* ロゴの見え方（中央寄せ・余白） */
body.page-about .artlogo{
  margin: 40px auto 24px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 320px;   /* 以前と同じくらいの見え方に調整 */
  height: 120px;
}

/* テキストの行間・サイズ */
body.page-about .text02,
body.page-about .text02_2{
  font-size: 16px;
  line-height: 1.9;
  margin: 16px 0;
}

/* テーブルの体裁（横幅いっぱい・下線） */
body.page-about table{
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
body.page-about table th,
body.page-about table td{
  border-bottom: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}
body.page-about table th{ white-space: nowrap; }

/* 地図のグリッド（PC=2列 / 下では1列） */
body.page-about .mapbox{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 900px){
  body.page-about .mapbox{ grid-template-columns: 1fr; }
}

/* 地図カードの見た目 */
body.page-about .mapinnerbox{
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 12px;
}
body.page-about .mapinnerbox iframe{
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

/* ヘッダのドット（箇条書きマーカー）を確実に消す */
.header01 .header-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header01 .header-nav li{
  list-style: none;
}
.header01 .header-nav li::marker{ content: none; }
