@charset "utf-8";
/*Font Awesomeの読み込み*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gruppo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');




/*-----------------------------------------
  カスタムプロパティ（サイト全体設定）
-----------------------------------------*/
:root {
  --primary-color: #D9C7C9;          /* メインまたはアクセントカラー */
  --primary-inverse-color: #fff;     /* 対象カラー */
  --global-space: 10vw;              /* 余白管理（画面幅の割合） */
}

/*-----------------------------------------
  アニメーション定義
-----------------------------------------*/
@keyframes animation1 {
  from { left: -200px; }
  to   { left: 0; }
}

@keyframes opa1 {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/*-----------------------------------------
  リセット & ボックスモデル
-----------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

figure, dd,
nav, ul, li, ol {
  margin: 0;
  padding: 0;
}

nav ul,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/*-----------------------------------------
  ベーススタイル
-----------------------------------------*/
html {
  height: 100%;
  font-size: 13px;  /* 基準フォントサイズ */
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  user-select: none;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3",
    Meiryo, "メイリオ", Osaka, "MS PGothic", "ＭＳ Ｐゴシック",
    sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  -webkit-text-size-adjust: none;
  background: #eeece7;
  color: #78736f;
  line-height: 2;
}

@media screen and (min-width: 900px) {
  html, body {
    font-size: 16px;
  }
}

/*-----------------------------------------
  メディア & インライン要素
-----------------------------------------*/
img, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}

iframe {
  width: 100%;
}

section {
  padding: 3vw 0;
}

input {
  font-size: 1rem;
}

/*-----------------------------------------
  リンク
-----------------------------------------*/
a {
  color: #78736f;
  transition: color 0.3s;
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

/*-----------------------------------------
  フォントユーティリティ
-----------------------------------------*/
.font-bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*-----------------------------------------
  コンテナー
-----------------------------------------*/
#container {
  padding: 0 var(--global-space);
}

/*-----------------------------------------
  ヘッダー
-----------------------------------------*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

#logo img {
  display: block;
  width: 160px;
}

/*-----------------------------------------
  ヘッダー上部アイコン
-----------------------------------------*/
#header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

#header-top > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
  padding: 0 var(--global-space);
}

@media screen and (max-width: 600px) {
  #header-top > div {
    justify-content: flex-start;
  }
}

/*-----------------------------------------
  ソーシャルアイコン
-----------------------------------------*/
ul.icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icons i {
  font-size: 20px;
}

/*-----------------------------------------
  メニュー
-----------------------------------------*/
#menubar {
  display: none;
}

.large-screen #menubar,
.small-screen #menubar.display-block {
  display: block;
}

#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menubar a {
  display: block;
  text-decoration: none;
}

#menubar_hdr.display-none {
  display: none;
}

.ddmenu_parent ul {
  display: none;
}

a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: bold;
  margin-right: 0.5em;
}

/*-----------------------------------------
  大画面メニュー（.large-screen）
-----------------------------------------*/
/* メニューブロック全体 */
.large-screen #menubar > nav > ul {
  display: flex;            /* 横並び */
  font-size: 0.75rem;       /* 文字サイズ */
  gap: 0.1rem;              /* メニュー間マージン */
}

/* メニューアイテム */
.large-screen #menubar li a {
  padding: 0.2rem 1rem;      /* 内側余白 */
  border-radius: 100px;      /* 丸角 */
}

/* ホバー時 */
.large-screen #menubar li a:hover {
  background: var(--primary-color);
  color: var(--primary-inverse-color);
}

/*-----------------------------------------
  ドロップダウン共通設定
-----------------------------------------*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
  animation: opa1 0.5s 0.1s both;  /* フェードイン */
}

/*-----------------------------------------
  大画面ドロップダウン
-----------------------------------------*/
/* ドロップダウン全体 */
.large-screen #menubar ul ul {
  position: absolute;
  z-index: 100;
}

/* ドロップダウンアイテム */
.large-screen #menubar ul ul a {
  display: block;
  margin-top: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

/*-----------------------------------------
  小画面メニュー（.small-screen）
-----------------------------------------*/
/* 開閉メニューブロック */
.small-screen #menubar.display-block {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  padding-top: 90px;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  animation: animation1 0.2s both;
}

/* メニューリスト */
.small-screen #menubar nav ul li {
  margin: 1rem;
  padding: 0 2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* メニューリンク */
.small-screen #menubar a {
  display: block;
  padding: 1rem;
  color: #fff;
}

/*-----------------------------------------
  ブレイクポイントに応じた表示制御
-----------------------------------------*/
/* デフォルト非表示 */
#menubar .sh {
  display: none;
}
/* 600px以下で表示 */
@media screen and (max-width: 600px) {
  #menubar .sh {
    display: block;
  }
}

/*-----------------------------------------
  ハンバーガーアイコン（#menubar_hdr）
-----------------------------------------*/
/* アイコンコンテナ */
#menubar_hdr {
  position: fixed;
  top: 0; right: 0;
  width: 50px; height: 50px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff0000;
  cursor: pointer;
  z-index: 101;
  animation: opa1 0s 0.5s both;
  transition: transform 0.5s;
}

/* 線を並べるラッパー */
#menubar_hdr > div {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 各バー */
#menubar_hdr div span {
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.5s ease-in-out;
}

/* 初期位置 */
#menubar_hdr div span:nth-child(1) { top: 0; }
#menubar_hdr div span:nth-child(2) { top: 50%; transform: translateY(-50%); }
#menubar_hdr div span:nth-child(3) { bottom: 0; }

/* ハンバーガー開閉状態 */
#menubar_hdr.ham div span:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
#menubar_hdr.ham div span:nth-child(2) {
  opacity: 0;
}
#menubar_hdr.ham div span:nth-child(3) {
  top: 50%; transform: translateY(-50%) rotate(-45deg);
}

/*-----------------------------------------
  mainブロック & 見出し
-----------------------------------------*/
/* 横スライド slick 対策 */
main * {
  min-width: 0;
}

/* 見出し h2 */
main h2 {
  margin-top: 0;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* 背景 .bg1 上の h2 */
.bg1 h2 {
  color: var(--primary-inverse-color);
}

/*-----------------------------------------
  2カラムレイアウト
-----------------------------------------*/
/* 全体の余白 */
main.column {
  padding: 2rem 0;
}

/* メインコンテンツ */
.main-contents {
  margin-bottom: 5rem;
}

@media screen and (min-width: 900px) {
  /* 横並び & ギャップ */
  main.column {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  /* main-contents: 順序と柔軟レイアウト */
  .main-contents {
    order: 2;
    flex: 1;
    margin-bottom: 0;
  }

  /* 共通のサブコンテンツ幅 */
  .sub-contents {
    width: 230px;
  }

  /* 各サブの表示順 */
  .sub-contents:nth-child(2) { order: 1; }
  .sub-contents:nth-child(3) { order: 3; }
}

#mainimg {
	width: 100%;
	height: 0;
	padding-top: 50%;
	position: relative;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	margin-bottom: 50px;
}

#mainimg video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#mainimg div div {
	position: relative;
	z-index: 1;
}

.slide {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0px;
	top: 0px;
	display: flex;
	align-items: center;
	padding: 0 5vw;
	background: url('../images/main.jpg') no-repeat center center / cover;
	justify-content: center;
	text-align: center;
	border-radius: 8px;
}
#mainimg h1 {
	margin: 0;padding: 0;
	font-size: 5vw;
	line-height: 2;
}

#mainimg p {
	font-size: 1.2rem;
	letter-spacing: 0.5rem;
}
@media screen and (max-width:600px) {
#mainimg p {
	font-size: 0.8rem;
	letter-spacing: 0.2rem;
}
}

/*-----------------------------------------
  サブコンテンツ見出し
-----------------------------------------*/
.sub-contents h3 {
  margin: 0;
  text-align: center;
  padding: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.03));
}

/*-----------------------------------------
  サブメニュー
-----------------------------------------*/
.submenu {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.submenu > li {
  border: 1px solid #ccc;
  border-top: none;
}

.submenu a {
  display: block;
  text-decoration: none;
  padding: 0.2rem 1rem;
}

.submenu li li a {
  padding-left: 2rem;
}

/* h3 の直後のサブメニュー上線を削除 */
.sub-contents h3 + nav .submenu {
  border-top: none;
}

.mask {
	width: 100%;
	height: 280px;
	background-color: #aaa;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin-bottom: 20px;
	border: 8px solid #F7F6F2;
	box-sizing: border-box;
	}
.mask img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

/*-----------------------------------------
  フッター共通設定
-----------------------------------------*/
footer {
  font-size: 0.7rem;       /* body 基準の70% */
  text-align: center;
  padding: 20px;
}

footer small {
  font-size: 100%;         /* 継承 */
}

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

footer .pr {
  display: block;
}

/*-----------------------------------------
  フッターメニュー
-----------------------------------------*/
#footermenu {
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;       /* body 基準の80% */
  list-style: none;
  margin: 0;
}

#footermenu li {
  display: inline-block;
  padding: 0 10px;
}

/*-----------------------------------------
  テキストフェードイン
-----------------------------------------*/
/* 初期非表示 */
.fade-in-text {
  visibility: hidden;
}

/* 文字単位アニメーション */
.char {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.05s linear both;
}

/*-----------------------------------------
  お知らせブロック
-----------------------------------------*/
.new {
  margin: 0;
}

.new dd {
  padding-bottom: 1rem;
}

.new dt span {
  display: inline-block;
  width: 8rem;
  line-height: 1.8;
  text-align: center;
  border-radius: 3px;
  transform: scale(0.8);
  background: #fff;
  color: #555;
}

/* アイコン背景バリエーション */
.new .icon-bg1 {
  background: var(--primary-color) !important;
  color: var(--primary-inverse-color) !important;
}

.new .icon-bg2 {
  background: #ff0000;
  color: #fff;
}

/* レイアウト調整：大画面 */
@media screen and (min-width: 700px) {
  .new {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
}

/*-----------------------------------------
  リストグリッド (.list-grid1)
-----------------------------------------*/
/* リセット & ベース色 */
.list-grid1 .list * {
  margin: 0;
  padding: 0;
}
.list-grid1,
.list-grid1 a {
  color: #fff;
}
.list-grid1 a:hover {
  color: inherit;
}




/* 各ボックス */
.list-grid1 .list {
  text-align: center;
  margin-bottom: 2vw;
}





@media screen and (max-width: 700px) {

/* 各ボックス */
.list-grid1 .list {
  text-align: center;
  margin-bottom: 10vw;
}
.list-grid1 .list:first-child {
  text-align: center;
  margin-top: 10vw;
  margin-bottom: 12vw;
}
}


/* テキストオーバーレイ */
.list-grid1 .text2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0 0 8px 8px;
}

/* 画像→動画切替対応 */
.list-grid1 .image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.list-grid1 .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/*-----------------------------------------
  レスポンシブ: 3カラムレイアウト (≥700px)
-----------------------------------------*/
@media screen and (min-width: 700px) {
  .list-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
  }
  .list-grid1 .list {
    margin-bottom: 0;
  }
}

/*-----------------------------------------
  ボタン (.btn, .btn-border-radius)
-----------------------------------------*/
/* 共通スタイル */
.btn a,
.btn-border-radius a {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  background: var(--primary-color) !important;
  color: var(--primary-inverse-color) !important;
  padding: 0.5rem !important;
  margin-top: 1rem !important;
  transition: filter 0.2s;
}

/* ホバー効果 */
.btn a:hover,
.btn-border-radius a:hover {
  filter: brightness(1.2);
}

/* 角丸ボタン上書き */
.btn-border-radius a {
  display: inline-block;
  padding: 0.5rem 2rem !important;
  border-radius: 100px;
}

/*-----------------------------------------
  背景カラー付きブロック (.bg1)
-----------------------------------------*/
.bg1 {
  position: relative;
  margin-left: calc(-1 * var(--global-space));
  margin-right: calc(-1 * var(--global-space));
  padding: 0 var(--global-space);
  background: var(--primary-color);
  color: var(--primary-inverse-color);
}

.bg1 a {
  color: inherit;
}

/*-----------------------------------------
  サムネイル切り替え（詳細ページ）
-----------------------------------------*/
.thumbnail-view {
  margin-bottom: 1rem;
  text-align: center;
  background: #000;  /* 画像切替時の背景 */
}
.thumbnail-view img {
  width: 100%;
}

.thumbnail {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.thumbnail img {
  width: 100px;
  margin: 5px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
.thumbnail img:hover {
  opacity: 0.8;
}

/*-----------------------------------------
  「前のページに戻る」ボタン
-----------------------------------------*/
.btn-back {
  text-align: center;
  margin-top: 120px;
}
.btn-back a {
  display: inline-block;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  background: #C07A6B;
  color: #fff;
}
.btn-back a::before {
  content: "\f0d9";                   /* FontAwesome アイコン */
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  padding-right: 0.8em;
  opacity: 0.5;
}

/*-----------------------------------------
  クーポン縦書きボタン（#message-parts）
-----------------------------------------*/
#message-parts a {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: #92464f;
  color: #fff;
  position: fixed;
  top: 170px;
  right: 0;
  padding: 20px 15px;
  border-radius: 5px 0 0 5px;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  text-decoration: none;
  z-index: 2;
  transition: filter 0.2s;
}
#message-parts i {
  display: block;
  transform: scale(1.3);
  margin-bottom: 10px;
}
#message-parts a:hover {
  filter: brightness(1.2);
}

/*-----------------------------------------
  テーブルスタイル (.ta1)
-----------------------------------------*/
/* キャプション */
.ta1 caption {
  display: table-caption;
  caption-side: top;
  font-weight: bold;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  margin-bottom: 1rem;
  border-radius: 5px;
}

/* テーブル本体 */
.ta1 {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #999;
  margin-bottom: 5rem;
}

/* 行 */
.ta1 tr {
  border-bottom: 1px solid #999;
}

/* セル共通 */
.ta1 th,
.ta1 td {
  padding: 1rem;
  word-break: break-all;
}

/* 見出しセル */
.ta1 th {
  width: 30%;
  text-align: left;
}

@media screen and (min-width: 900px) {
  .ta1 th {
    width: 20%;
  }
}

/*-----------------------------------------
  ページトップボタン (.pagetop)
-----------------------------------------*/
/* 表示制御 */
.pagetop-show {
  display: block;
}

/* ボタン */
.pagetop a {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  text-decoration: none;
  z-index: 99;
}

/*-----------------------------------------
  汎用ユーティリティ
-----------------------------------------*/
/* レイアウトクリア */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* テキストカラー強制 */
.color-check,
.color-check a {
  color: #ff0000 !important;
}

/* テキスト揃え */
.l { text-align: left   !important; }
.c { text-align: center !important; }
.r { text-align: right  !important; }

/* 幅指定 */
.ws,
.wl {
  width: 95%;
  display: block;
}

@media screen and (min-width: 900px) {
  .ws {
    width: 48%;
    display: inline;
  }
}

/* マージン */
.mb0  { margin-bottom:   0 !important; }
.mb30 { margin-bottom: 30px !important; }

/* 表示制御 */
.dn    { display: none      !important; }
.block { display: block     !important; }

/* フォントサイズ */
.small { font-size: 0.75em; }
.large { font-size: 2em; letter-spacing: 0.1em; }

/* その他 */
.look {
  display: inline-block;
  padding: 0 10px;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}

/* PC専用表示 */
.pc { display: none; }
@media screen and (min-width: 900px) {
  .pc { display: block; }
  .sh { display: none; }
}