@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
body {
  background: url(../img/body-bg.png) no-repeat left top;
  background-size: 28rem auto;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  body {
    background-size: 18rem auto;
  }
}
a {
  color: #000;
}

/* -------------------------------------------

header

------------------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 99;
  padding: 2rem 6rem 2rem 9rem;
}
header h1 {
  width: 14rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  header {
    padding: 0 0 0 1.5rem;
    height: 6rem;
  }
  header h1 {
    width: 12rem;
  }
  /* SP時のみENGLISHボタンをヘッダー（ハンバーガーの左）に表示 */
  header .sp-en {
    margin: 0 7.5rem 0 auto;
  }
}
/* -------------------------------------------

nav

------------------------------------------- */
.ex-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #d7453e;
  border-radius: 0.4rem;
  line-height: 1;
  font-weight: bold;
  width: 9rem;
  height: 3.2rem;
  font-size: 1.3rem;
  padding-bottom: 0.1rem;
  padding-left: 0.2rem;
}

header .ex-link {
  margin-left: 3rem;
}

.gnav {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.gnav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.gnav-menu > li {
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 3.5rem;
  position: relative;
}
.gnav-menu > li::before {
  content: "";
  width: 0.15rem;
  height: 1.5rem;
  background-color: #dcdddd;
  position: absolute;
  left: -1.5rem;
  top: calc(50% - 0.75rem);
}
.gnav-menu > li:last-child::after {
  content: "";
  width: 0.15rem;
  height: 1.5rem;
  background-color: #dcdddd;
  position: absolute;
  right: -1.5rem;
  top: calc(50% - 0.75rem);
}

.dropmenu {
  background: url(../img/arrow.png) no-repeat center bottom;
  background-size: 0.8rem auto;
  position: relative;
}
.dropmenu > ul {
  position: absolute;
  left: -1.5rem;
  top: 3.5rem;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem 1.5rem;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-0.5rem);
}
.dropmenu:hover > ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

footer nav {
  position: relative;
  z-index: 99;
}
footer .gnav-menu a {
  color: #fff;
}
footer .gnav-menu > li::before {
  background-color: #fff;
}
footer .gnav-menu > li:last-child::after {
  background-color: #fff;
}
footer .dropmenu {
  background: url(../img/arrow-wh.png) no-repeat center bottom;
  background-size: 0.8rem auto;
}
footer .dropmenu a {
  color: #fff;
}
footer .dropmenu > ul {
  left: 0;
  padding: 1.2rem 1.2rem;
  background-color: rgba(215, 69, 62, 0.9);
}

/* ========================================================
   パソコン・タブレットサイズでのナビゲーション文字崩れ対策（ボタン間隔調整版）
======================================================== */
@media screen and (min-width: 769px) {
  /* 画面幅に合わせて文字サイズを自動伸縮（最小10px〜最大13px） */
  .gnav-menu > li {
    font-size: clamp(10px, 1vw, 13px) !important;
  }
  
  /* 公式サイトやENGLISHなどのボタン文字も連動 */
  .ex-link a {
    font-size: clamp(10px, 1vw, 13px) !important;
  }

  /* 画面が狭くなると項目間の隙間（gap）も自動縮小 */
  .gnav-menu {
    gap: clamp(10px, 2vw, 3rem) !important;
  }
  
  /* 公式サイトとENGLISHのボタン同士の間隔を少し狭める（最大15px） */
  header .ex-link {
    margin-left: clamp(10px, 1.2vw, 1.5rem) !important;
  }
}
/* ======================================================== */
/* -------------------------------------------

footer

------------------------------------------- */
footer {
  background: #d7453e;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 2rem 0;
}
footer .logo {
  width: 14rem;
  margin: 6rem 0 3rem 0;
}
footer small {
  display: block;
  text-align: center;
  font-size: 1rem;
}
footer .sns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
footer .sns li {
  width: 3rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 4rem 0 8rem 0;
  }
  footer .logo {
    width: 17rem;
  }
  footer .sns {
    margin-bottom: 3rem;
  }
  footer .sns li {
    width: 4rem;
  }
}
/* -------------------------------------------

class

------------------------------------------- */
.heading-1 {
  line-height: 1;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
}
.heading-1 .en {
  font-family: "Syncopate", sans-serif;
  font-weight: bold;
  font-size: 5.2rem;
  letter-spacing: 0.08em;
}
.heading-1 .jp {
  font-size: 2.4rem;
  margin-top: 0.6rem;
}

@media screen and (max-width: 768px) {
  .heading-1 {
    margin-bottom: 3rem;
  }
  .heading-1 .en {
    font-size: 4rem;
  }
  .heading-1 .jp {
    font-size: 1.8rem;
  }
}
.more {
  background-color: #f6c665;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 16.5rem;
  height: 4rem;
  padding-bottom: 0.15rem;
  position: relative;
  font-weight: bold;
  font-size: 1.3rem;
}
.more::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -0.4rem;
  bottom: -0.4rem;
  box-sizing: border-box;
  border-right: solid 0.2rem #f6c665;
  border-bottom: solid 0.2rem #f6c665;
  transition: all 0.3s;
}
.more span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.more span::after {
  content: "";
  width: 3rem;
  height: 0.12rem;
  background: #000;
  margin-left: 2rem;
  transition: all 0.3s;
}
.more:hover {
  opacity: 1;
  background-color: #d7453e;
  color: #fff;
}
.more:hover::before {
  border-right: solid 0.2rem #d7453e;
  border-bottom: solid 0.2rem #d7453e;
}
.more:hover span::after {
  background: #fff;
}

dl.detail {
  display: flex;
  flex-wrap: wrap;
}

dl.detail dt {
  padding: 2rem 0;
  width: 25%;
  white-space: nowrap;
  font-weight: 500;
}

dl.detail dd {
  padding: 2rem 0;
  width: 75%;
}

@media screen and (max-width: 768px) {
  dl.detail {
    display: block;
  }
  dl.detail dt {
    display: flex;
    align-items: center;
    padding: 1.5rem 0 0.3rem 0;
    width: 100%;
  }
  dl.detail dt::before {
    content: "◆";
    color: #d7453e;
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  dl.detail dd {
    padding: 0 0 1.5rem 0;
    width: 100%;
  }
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
  border-bottom: none;
}

dl.bk dt,
dl.bk dd {
  border-bottom: 0.1rem solid rgb(0, 0, 0);
}

dl.wh dt,
dl.wh dd {
  border-bottom: 0.1rem solid rgb(255, 255, 255);
}

@media screen and (max-width: 768px) {
  dl.bk dt {
    border-bottom: none;
  }
  dl.wh dt {
    border-bottom: none;
  }
}
.ttl,
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
  border-bottom: solid 0.1rem rgb(0, 0, 0);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  position: relative;
}
.ttl::first-letter,
.CMS-NEWS-TITLE::first-letter,
.CMS-ARTICLE-TITLE::first-letter {
  color: #d7453e;
}

.ttl:after,
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::after {
  content: "";
  background: #d7453e;
  display: block;
  height: 3px;
  bottom: -3px;
  position: absolute;
  width: 25%;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .ttl:after,
  .CMS-NEWS-TITLE:after,
  .CMS-ARTICLE-TITLE::after {
    width: 40%;
  }
}
.base-width {
  width: 88rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .base-width {
    width: auto;
  }
}
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}
#page-top a {
  background: #f6c665;
  border-radius: 50%;
  font-size: 1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-left: 0.1rem;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 6rem;
  }
}
.txt-vertical {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .txt-vertical.not {
    writing-mode: horizontal-tb;
    white-space: normal;
  }
}
ul.list-group li {
  margin-left: 2rem;
  list-style: disc;
}
ul.list-group li:not(:last-child) {
  margin-bottom: 0.3rem;
}

.prepare {
  color: #d7453e;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 8rem 0;
}

.gmap iframe {
  width: 100%;
  height: 36rem;
}

.gmap.grey iframe {
  filter: grayscale(100%);
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
  background: #fff;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: -1;
  -webkit-overflow-scrolling: touch;
}

.gnav-sp nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}
.gnav-sp nav .ex-link {
  margin-top: 3rem;
}
.gnav-sp nav .ex-link a {
  width: 18rem;
  height: 4.4rem;
  font-size: 1.4rem;
  padding-bottom: 0.2rem;
}

.gnav-sp-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.gnav-sp-menu > li {
  font-size: 1.6rem;
  font-weight: 500;
}
.gnav-sp-menu > li ul {
  font-size: 1.2rem;
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.gnav-sp-menu > li ul li {
  list-style: disc;
  margin-left: 1.6rem;
}
.gnav-sp-menu > li ul ::marker {
  color: #d7453e;
}

.toggle-btn {
  background: #d7453e;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  z-index: 100000;
}

.toggle-btn span {
  background: #fff;
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

/* -------------------------------------------

fade

------------------------------------------- */
.fade {
  opacity: 0;
  transform: translateY(2rem);
}

.fade.is-animation {
  animation: fade 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 999;
  width: 5rem;
  z-index: 9999;
}
.fixed-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  background: #d7453e;
  width: 5rem;
  padding: 2.5rem 0;
  text-orientation: upright;
}

@media screen and (max-width: 768px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    width: 100%;
  }
  .fixed-btn a {
    width: 100%;
    height: 5rem;
    padding: 0;
    font-size: 1.6rem;
  }
}
/* ========================================================
   スマートフォン（SP）表示時のフッターナビ（色・行間最終調整）
======================================================== */
@media screen and (max-width: 768px) {
  /* フッター全体の余白を調整 */
  footer {
    padding: 4rem 2rem 8rem 2rem !important;
    box-sizing: border-box !important;
  }

  /* ナビゲーションの幅を100%にする */
  footer nav {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* 親メニュー（TOP, about usなど）を縦一列・センターに並べる */
  footer .gnav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2.2rem !important; /* 親メニュー同士の上下の間隔 */
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    list-style: none !important;
  }

  /* PC用の左右の白い区切り線（::before, ::after）を完全に消去 */
  footer .gnav-menu > li::before,
  footer .gnav-menu > li:last-child::after {
    content: none !important;
    display: none !important;
  }

  /* 各メニュー項目の配置設定（子メニューを下に並べる） */
  footer .gnav-menu > li {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  /* 親メニューの文字スタイル（白・サイズ1.6rem・中央寄せ） */
  footer .gnav-menu > li > a {
    display: inline-block !important;
    font-size: 1.6rem !important;
    font-weight: 500 !important;
    color: #fff !important; /* 親メニューは純白 */
    text-decoration: none !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  /* PC用の下矢印アイコン背景を消去 */
  footer .dropmenu {
    background: none !important;
  }

  /* --------------------------------------------------
     子メニュー（ご紹介、受け入れ実績、加盟団体など）のカラー＆行間調整
  -------------------------------------------------- */
  footer .dropmenu > ul {
    /* PC用のドロップダウン配置を完全に解除してその場に展開 */
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;    /* 子メニューも真ん中寄せ */
    justify-content: center !important;
    width: 100% !important;
    gap: 0.3rem !important;            /* ★子メニュー同士の隙間を狭く（タイトに）変更 */
    margin: 0.8rem auto 0 auto !important; /* 親メニューと子メニューの間の隙間 */
    padding: 0 !important;
    background: transparent !important; /* 背景の不透明な赤を消去 */
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    list-style: none !important;       /* 丸ポチを完全に無しにする */
  }

  /* 子メニューの各リスト項目（余白をゼロにして中央揃え） */
  footer .dropmenu > ul li {
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    line-height: 1.2 !important;       /* ★行の高さ自体も少し低めに設定 */
  }

  /* 疑似要素の丸ポチが絶対に出ないよう完全にクリア */
  footer .dropmenu > ul li::before {
    content: none !important;
    display: none !important;
  }

  /* 子メニューのリンク文字（#e0c5c0・サイズ1.2rem・中央寄せ） */
  footer .dropmenu > ul li a {
    font-size: 1.2rem !important;
    color: #eccfca !important;         /* ★子メニューの色をご指定の「#e0c5c0」に変更 */
    opacity: 1 !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    padding: 0.2rem 0 !important;      /* 上下の内側余白を微調整 */
    margin: 0 !important;
  }
}
/* -------------------------------------------
安全体制の取り組み（system.html）
------------------------------------------- */
.safety-content {
	line-height: 1.8;
}
.safety-block {
	background: #fff;
	padding: 2.5rem;
	border-radius: 0.8rem;
	border: 0.1rem solid #e0e0e0;
}
.safety-content .sub-ttl {
	font-size: 1.8rem;
	font-weight: bold;
	color: #d7453e; /* 変数$primeのカラー */
	border-bottom: 0.2rem solid #d7453e;
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}
.safety-content .sub-lead {
	font-weight: bold;
	color: #d7453e; /* 変数$redのカラー */
	margin-bottom: 1.5rem;
}
.safety-content .inner-box {
	background: #f9f9f9;
	padding: 1.5rem 2rem;
	border-radius: 0.4rem;
	border-left: 0.4rem solid #d7453e;
}
.safety-content .inner-box h5 {
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.safety-content .level-ttl {
	font-weight: bold;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: #333;
}
.safety-content .summary-box {
	background: #fff4f3;
	border: 0.2rem solid #d7453e;
	padding: 3rem;
	border-radius: 0.8rem;
}
.safety-content .summary-ttl {
	font-size: 1.8rem;
	font-weight: bold;
	color: #d7453e;
	margin-bottom: 1.5rem;
	text-align: center;
}
.safety-content .summary-list {
	list-style: none;
	padding-left: 0;
}
.safety-content .summary-list li {
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 0.8rem;
}
.safety-content .summary-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: #d7453e;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.safety-block, .safety-content .summary-box {
		padding: 1.5rem;
	}
}