@charset "UTF-8";
/* ========================================
   1. ボックスモデルの設定
   ======================================== */
/* すべての要素でボックスサイジングをborder-boxに設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ========================================
   2. 基本的なリセット
   ======================================== */
/* ボディ、HTML、マージン、パディングをリセット */
html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif; /* 標準フォントファミリー */
  line-height: 1.5; /* 行間を標準に */
}

html {
  margin-top: 0 !important;
}

/* ========================================
   3. 主要な要素のスタイルリセット
   ======================================== */
/* 見出し要素のスタイルリセット */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* リスト要素のリセット */
ul, ol {
  list-style: none; /* デフォルトのリストスタイルを削除 */
  margin: 0;
  padding: 0;
}

/* リンクのスタイルをリセット */
a {
  text-decoration: none; /* リンクの下線を削除 */
  color: inherit; /* リンクの色を親要素から継承 */
}

/* フォームのスタイルをリセット */
input, button, select, textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  border: none; /* フォームのデフォルトボーダーを削除 */
  background-color: transparent; /* リンクの背景色を透明に */
}

/* ========================================
   4. 表のスタイルリセット
   ======================================== */
/* 表のスタイルをリセット */
table {
  border-collapse: collapse; /* テーブルのセルの隙間を取り除く */
  width: 100%;
}

/* 表のセルにパディングを追加 */
th, td {
  padding: 0;
  text-align: left;
}

/* ========================================
   5. その他のスタイルリセット
   ======================================== */
/* ========================================
   6. その他の調整
   ======================================== */
/* 画像のリセット */
img {
  max-width: 100%; /* 画像が親要素の幅を超えないように */
  height: auto; /* 画像の高さを自動で調整 */
}

/* ========================================
   7. テキストのリセット
   ======================================== */
/* テキストのスタイルをリセット */
p, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

.fx-col {
  display: flex;
  flex-direction: column;
}

.fx-col-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.fx-row {
  display: flex;
  flex-direction: row;
}

.fx-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.fx-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fx-wrap {
  display: flex;
  flex-wrap: wrap;
}

.fx-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.fx-between {
  display: flex;
  justify-content: space-between;
}

.fx-around {
  display: flex;
  justify-content: space-around;
}

.fx-evenly {
  display: flex;
  justify-content: space-evenly;
}

.w-100 {
  width: 100%;
}

.w-80 {
  width: 80%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.pt-section {
  padding-top: 10em;
}

.dis-none {
  display: none;
}

.access {
  padding: 15vw 0 10vw;
}
.access .place {
  margin: 10vw 0 2vw;
}
.access .place .title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #C1272D;
  transform: skewX(-20deg);
  padding: 0.5em 1em;
}
.access .place h4 {
  margin-top: 3vw;
  font-size: clamp(25px, 3vw, 35px);
}
.access .place span {
  font-size: clamp(18px, 2.3vw, 25px);
}
.access .map {
  display: flex;
  justify-content: center;
  align-items: center;
}
.access .map .gmap_iframe {
  aspect-ratio: 16/9;
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: auto;
}

.directions .title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #C1272D;
  transform: skewX(-20deg);
  padding: 0.5em 1em;
  width: fit-content;
  margin: auto;
}
.directions .container {
  margin: 3vw auto;
}
.directions .container .content {
  gap: 1vw;
  margin-bottom: 2.5vw;
}
.directions .container .content span {
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: 0.05em;
  font-weight: bold;
}
.directions .container .content article {
  color: white;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.8;
}

/*# sourceMappingURL=access.css.map */
