@charset "UTF-8";
@import url("variables.css");
/****************************************
1.COMMON
2.SUB-COMMON
3.BUTTON-COMMON
4.TEMPLATE
5.HEADER
6.FOOTER
7.PAGENATION
8.MODAL
*****************************************/
/****************************************
1.COMMON
*****************************************/
/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
  font-size: 62.5%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--cls-blk);
  background-color: #fff;
  line-height: 1.5;
}

/* ページ内遷移 ヘッダー分 引く*/
:root {
  --header-height: 120px;
}

#calendar {
  scroll-margin-top: var(--header-height);
}

/* モーダル表示時にbodyのスクロールを無効にするクラス */
body.modal-open {
  overflow: hidden;
}

.flex {
  display: flex;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  /*overflow:hidden;*/
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* clearfix */
.clearfix:after {
  /*float解除*/
  display: block;
  clear: both;
  height: 0px;
  visibility: hidden;
  content: ".";
}

.clearfix {
  min-height: 1px;
  /*IE6 7用*/
}

/* IE6 */
* html .clearfix {
  zoom: 1;
}

/* IE7 */
*:first-child + html .clearfix {
  zoom: 1;
}

.block {
  display: block;
}

a {
  text-decoration: none;
  color: var(--cls-blk);
}

a.pos {
  display: block;
  margin-top: -60px;
  padding-top: 60px;
}

a.underline {
  text-decoration: underline;
}

a.underline:hover {
  text-decoration: none;
}

.border-top {
  border-top: 1px solid var(--cls-gry);
}

.border-bottom {
  border-bottom: 1px solid var(--cls-gry);
}

.borde-none {
  border: none;
}

.mat-0 {
  margin-top: 0 !important;
}

.mat-8 {
  margin-top: 8px !important;
}

.mat-16 {
  margin-top: 16px !important;
}

.mat-24 {
  margin-top: 24px !important;
}

.mat-32 {
  margin-top: 32px !important;
}

.mat-40 {
  margin-top: 40px !important;
}

.mat-48 {
  margin-top: 48px !important;
}

.mat-64 {
  margin-top: 64px !important;
}

.mat-80 {
  margin-top: 80px !important;
}

.mab-8 {
  margin-bottom: 8px !important;
}

.mab-16 {
  margin-bottom: 16px !important;
}

.mab-24 {
  margin-bottom: 24px !important;
}

.mab-32 {
  margin-bottom: 32px !important;
}

.pat-16 {
  padding-top: 16px !important;
}

.pat-24 {
  padding-top: 24px !important;
}

.pat-40 {
  padding-top: 24px !important;
}

.pat-48 {
  padding-top: 48px !important;
}

.pat-60 {
  padding-top: 64px !important;
}

.pat-72 {
  padding-top: 72px !important;
}

.pab-8 {
  padding-bottom: 8px !important;
}

.pab-16 {
  padding-bottom: 16px;
}

.pab-24 {
  padding-bottom: 24px !important;
}

.pab-32 {
  padding-bottom: 32px;
}

.pab-40 {
  padding-bottom: 40px;
}

.pab-64 {
  padding-bottom: 64px;
}

.pab-80 {
  padding-bottom: 80px;
}

.pab-120 {
  padding-bottom: 120px;
}

img.hover {
  filter: saturate(1); /* 通常時：彩度100% */
  transition: filter 0.3s ease, transform 0.3s ease;
}

img.hover:hover {
  filter: saturate(1);
  transform: scale(1.01);
}

.center {
  text-align: center;
}

.color-cooper {
  color: var(--bg-cooper);
}

.color-2nd {
  color: var(--bg-2nd);
}

div.container {
  background-color: #fff;
  width: 1200px;
  margin: 0 auto 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 48px; /* 必要に応じて間隔 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ← ここがドロップシャドウ */
}
div.container div.left-wrap {
  border-top: 1px solid var(--cls-blk);
  padding: 24px 0;
}
div.container div.left-wrap p.menu-header {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-left: 16px;
}
div.container div.left-wrap ul.menu {
  margin-bottom: 24px;
  padding-left: 16px;
}
div.container div.left-wrap ul.menu li {
  margin-bottom: 8px;
  margin-left: 16px;
  list-style-type: disc;
  padding-left: 0;
}
div.container div.left-wrap ul.menu li a {
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}
div.container div.left-wrap div.hotpepper {
  margin-top: 40px;
}
div.container div.left-wrap ol.shop-info {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 0;
}
div.container div.left-wrap ol.shop-info li {
  margin-bottom: 16px;
}
div.container div.left-wrap ol.shop-info li p {
  margin-right: 16px;
  font-size: 14px;
}
div.container div.left-wrap ol.shop-info li p.tag {
  white-space: nowrap;
  text-align: center;
  width: 80px;
  font-size: 13px;
}
div.container div.left-wrap div.banner {
  margin-top: 40px;
  padding-bottom: 40px;
}
div.container div.right-wrap {
  padding: 0;
}

main {
  margin-top: 68px;
}

main.shop-nav-pos {
  padding-bottom: 80px;
}

/****************************************
2.SUB-COMMON
*****************************************/
.template {
  background-color: var(--cls-brn-bg);
  padding-bottom: 64px;
}
.template div.ttl-wrap {
  padding: 64px 0;
  text-align: center;
}
.template div.ttl-wrap h1.title {
  text-align: center;
  color: var(--cls-red02);
  font-size: 3.2rem;
  font-weight: 600;
  position: relative;
  /* 疑似要素を絶対位置で配置するために必要 */
  padding-bottom: 14px;
  /* アンダーラインの余白を確保（必要に応じて調整） */
}
.template div.ttl-wrap h1.title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  /* アンダーラインの長さ（必要に応じて調整） */
  height: 5px;
  /* 線の太さ */
  background: var(--cls-red02);
  /* お好みの色に変更 */
  border-radius: 3px;
  /* 角丸にする */
}
.template div.ttl-wrap p {
  background-color: var(--cls-red01);
  color: #fff;
  border-radius: 16px;
  padding: 1px 8px;
  display: inline-block;
  margin-top: -16px;
  margin-bottom: 2px;
}
.template div.ttl-wrap h1.nrek-logo {
  background: url(../img/common/nrek-logo.png) no-repeat calc(50% - 320px) top;
  background-size: 64px;
  padding-top: 10px;
}

.title-pat {
  padding-top: 60px !important;
}

section.frame-wrap {
  width: var(--width-frame);
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 88px;
}
section.frame-wrap div.frame {
  padding: 38px 48px 64px 48px;
  /* 画像の余白をなくす */
  /* ロゴ用のdivを絶対位置にして背景画像の上に表示 */
}
section.frame-wrap div.frame h1,
section.frame-wrap div.frame h2,
section.frame-wrap div.frame h3,
section.frame-wrap div.frame h4,
section.frame-wrap div.frame h5,
section.frame-wrap div.frame h6,
section.frame-wrap div.frame p {
  margin-bottom: 12px;
}
section.frame-wrap div.frame div.img-set img {
  width: 100%;
}
section.frame-wrap div.frame .nrk-logo {
  position: relative;
  display: inline-block;
  /* 必要に応じて */
}
section.frame-wrap div.frame .nrk-logo picture img {
  display: block;
}
section.frame-wrap div.frame .nrk-logo > div {
  position: absolute;
  bottom: 16px;
  /* お好みで調整 */
  left: 16px;
  /* お好みで調整 */
  z-index: 10;
  /* 背景より上に表示 */
}
section.frame-wrap div.frame .nrk-logo > div img {
  width: 120px;
}

div.subheading-wrap .subheading {
  background-color: var(--cls-pik);
  padding: 16px 24px;
  color: #fff;
  font-weight: 500;
  border-radius: 16px;
  text-align: center;
  display: inline-block;
}
div.subheading-wrap .subheading-online {
  margin-left: 16px;
  color: var(--cls-blk);
  background: var(--cls-brn-bg);
}
div.subheading-wrap .subheading-online02 {
  color: var(--cls-blk);
  margin-right: 16px;
  background: var(--cls-pik-bg);
  font-weight: 500;
}

a.current {
  color: var(--cls-red01);
  /* 例として文字色を赤に変更 */
  font-weight: 600;
}
a.current span {
  font-weight: normal;
}

/* ヘッダーで固定 */
.pc-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/****************************************
6.FOOTER
*****************************************/
footer {
  background-color: var(--cls-blk);
}
footer a {
  color: #fff;
}
footer div.footer-wrap {
  width: var(--width-common);
  margin: 0 auto;
  padding: 64px 0;
}
footer div.footer-wrap p {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}
footer div.copy {
  background-color: #191717;
}
footer div.copy p {
  color: #ddd;
  font-size: 1.4rem;
  text-align: center;
  padding: 8px 0;
}

/****************************************
7.PAGENATION
*****************************************/
.pagenation {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
}

ul.pagenation {
  padding: 0 0 64px 0;
}
ul.pagenation li {
  margin: 0 6px;
}
ul.pagenation li a,
ul.pagenation li span {
  display: block;
  padding: 4px 16px;
  border: 1px solid var(--cls-gry);
  border-radius: 8px;
  text-decoration: none;
  color: #333;
}
ul.pagenation li.current span {
  background-color: var(--cls-blk);
  color: #fff;
  border-color: var(--cls-blk);
}
ul.pagenation li.previous,
ul.pagenation li.next {
  border: none;
  padding: 0;
  margin: 0;
}
ul.pagenation li.previous a,
ul.pagenation li.next a {
  border: none;
  padding: 0 8px;
  margin: 0;
}

/*Singleページ用*/
ul.pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 0 64px 0;
}

ul.pagination li {
  margin: 0 6px;
}

ul.pagination li span.page-numbers {
  display: block;
  padding: 4px 16px;
  border: 1px solid var(--cls-gry);
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
}

ul.pagination li a {
  display: block;
  padding: 4px 16px;
  border: 1px solid var(--cls-gry);
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
}

ul.pagination li a.active {
  background-color: var(--cls-blk);
  color: white;
  border-color: var(--cls-blk);
}

ul.pagination li a:hover:not(.active) {
  background-color: #f0f0f0;
}

/****************************************
8.MODAL
*****************************************/
/* モーダルのオーバーレイ */
.modal-template-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* モーダルのコンテンツ */
.modal-template-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 92%;
  max-width: 880px;
  text-align: left;
  position: relative;
}
.modal-template-content div.content-inner {
  padding-top: 24px;
}
.modal-template-content div.content-inner p {
  padding-bottom: 16px;
}
.modal-template-content div.content-inner p.margin-pos {
  margin-right: 40px;
}
.modal-template-content div.content-inner div.wrap-rollcall {
  display: flex;
  flex-wrap: wrap;
}
.modal-template-content div.content-inner div.wrap-rollcall label {
  margin: 4px 6px 0 16px;
  padding: 0;
}
.modal-template-content div.content-inner-scroll {
  height: 80vh;
  overflow: auto;
}
.modal-template-content div.content-inner-scroll ul.form-template {
  margin: 0;
  padding: 0;
}
.modal-template-content div.content-inner-scroll ul.form-template li {
  margin: 0 0 8px 0;
  padding: 0;
}

/* 閉じるボタン */
.modal-template-close {
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-template-close:hover {
  opacity: 0.8;
}

/****************************************
FORM
*****************************************/
.search-form {
  display: flex;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-button {
  background-color: #f5f5f5;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

.search-button:hover {
  background-color: #e0e0e0;
}

.custom-select-wrap {
  position: relative;
  display: inline-block;
  width: 240px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.custom-select-wrap select {
  appearance: none;
  /* 標準の矢印を非表示にする */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-size: 16px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.custom-select-wrap .select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

form.contact {
  max-width: 800px;
  margin: 24px auto 0 auto;
  text-align: left;
}
form.contact label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
form.contact .required {
  background-color: var(--cls-red01);
  color: white;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
  margin-left: 6px;
}
form.contact input[type=text],
form.contact input[type=tel],
form.contact input[type=email],
form.contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 24px;
  border: 1px solid #999;
  border-radius: 6px;
  font-size: 16px;
}
form.contact textarea {
  height: 180px;
  resize: vertical;
}
form.contact .submit-button {
  display: block;
  margin: 40px auto 0;
  background-color: #222;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  cursor: pointer;
}
form.contact .submit-button:hover {
  opacity: 0.9;
}

ol.wp-block-list li {
  list-style-type: disc;
  margin-left: 16px;
  margin-bottom: 16px;
}
ol.wp-block-list li strong {
  font-weight: 600;
}

.wp-block-gallery {
  padding: 16px 0 40px 0;
}