@charset "UTF-8";
/****************************************/

/* body */

/****************************************/

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-feature-settings: "palt" 1;
  vertical-align: baseline;
}
body *,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #333;
}

.center {
  text-align: center;
}
.red {
  color: red;
}
.bold {
  font-weight: bold;
}
.date {
  text-align: right;
  margin-bottom: 20px;
}

.inner_post p img {
  max-width: 100%;
  border: solid 1px #ccc;
  padding: 1px;
}
span.caution {
  font-size: 0.6em;
  vertical-align: top;
}
p.note {
  font-size: 80% !important;
  padding-left: 1.1em !important;
  text-indent: -1.1em !important;
  line-height: 1.5;
  margin-top: 5px;
}

img {
  vertical-align: bottom;
}

/* ---------- 基本 ---------- */
:root {
  --acc: #a81e18;
  --ink: #333;
  --ring: #d9d9d9;
  --line-w: 2px;
  --radius: 14px;
  --top-row: 44px;
  --hit: 60px;
  --minw: 68px;
  --mob-header-h: 81px;
  --instagram: #e4405f;
  --line: #06c755;
}

/****************************************/

/* header(PC) */

/****************************************/

header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  margin: 0;
}

/* グローバルナビゲーション */
header .header-inner ul.header-list {
  display: flex;
  padding-right: 20px;
  align-items: center;
}
header .header-inner ul.header-list > li {
  position: relative;
  padding: 0 20px;
}
header .header-inner ul.header-list > li:last-of-type {
  padding-right: 0;
}
header .header-inner ul.header-list > li > a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

header .header-inner ul.header-list > li:hover > a {
  color: var(--acc);
  opacity: 1;
}

header .header-inner ul.header-list > li > a.header-contact-link {
  pointer-events: none;
}

/* PCサブメニュー */
ul.header-list > li .header-list-sub-container {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: block;
  position: absolute;
  top: 17px;
  left: -15px;
  z-index: 9999;
  width: 170px;
  padding: 32px 0 0 0;
}
ul.header-list > li:hover .header-list-sub-container {
  opacity: 1;
  visibility: visible;
}
ul.header-list > li .header-list-sub-container ul.header-list-sub {
  background-color: #fff;
  width: 100%;
  border-radius: 1.2vw;
  display: block;
  padding: 10px;
  box-shadow: 0 2px 5px #5a4a4a;
}

ul.header-list > li .header-list-sub-container ul.header-list-sub li a {
  padding: 10px;
  line-height: 3.8;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: color 0.2s;
}
ul.header-list > li .header-list-sub-container ul.header-list-sub li a:hover {
  color: var(--acc);
  opacity: 1;
}

header .header-inner a:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 4px;
  border-radius: 6px;
}

/****************************************/

/* header (mobile) */

/****************************************/
.header-mobile {
  display: none;
}

.fixed-toggle {
  display: none;
}

/****************************************/

/* menu (mobile) */

/****************************************/
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  /* background: #fffdf7; */
  padding: 75px 24px 28px;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@supports (height: 100dvh) {
  .mobile-nav {
    height: 100dvh;
  }
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav .menu-inner {
  max-width: 760px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.5s ease 0.25s;
}

.mobile-nav.open .menu-inner {
  opacity: 1;
}

.mobile-nav .menu-inner a {
  display: block;
  padding: 18px 10px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}
.mobile-nav .menu-inner a:hover {
  color: var(--acc);
}

.header-mobile a:focus-visible,
.header-mobile button:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
  border-radius: 6px;
}
.fixed-toggle:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
  border-radius: 6px;
}
.mobile-nav .menu-inner a:focus-visible,
.mobile-nav .menu-inner button:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: -4px;
  border-radius: 6px;
}

.mobile-nav .menu-inner ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.mobile-nav .menu-inner li {
  position: relative;
}
.mobile-nav .menu-inner li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-image: linear-gradient(to right, #bdbdbd 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

/* SNS＋社員犬 */
.mobile-nav .menu-inner .nav-bottom {
  margin-top: 32px;
  padding-top: 16px;
}
.mobile-nav .menu-inner .follow-row {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px; /* SNSと犬の間隔 */
  margin-top: 10px;
}
.mobile-nav .menu-inner .sns-title {
  font-size: 16px;
  color: #111;
  text-align: center;
  margin-bottom: 4px;
}
.mobile-nav .menu-inner .sns-row {
  display: inline-flex;
  align-items: center;
}
.mobile-nav .menu-inner .sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 4px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.08s ease;
}
/* SNSアイコン色 */
.mobile-nav .menu-inner .sns-link.instagram {
  color: var(--instagram);
}
.mobile-nav .menu-inner .sns-link.line {
  color: var(--line);
  transform: scale(0.92);
}

/* hover時は少し暗く */
.mobile-nav .menu-inner .sns-link.instagram:hover {
  color: #c32d4f;
}
.mobile-nav .menu-inner .sns-link.line:hover {
  color: #049944;
}
.mobile-nav .menu-inner .sns-link i {
  font-size: 38px;
  line-height: 1;
}

.mobile-nav .menu-inner .sns-link:active {
  transform: scale(0.95);
}
.mobile-nav .menu-inner .mascot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-nav .menu-inner .mascot figcaption {
  position: absolute;
  top: -15px;
  right: -30px;
  transform: rotate(10deg);
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 6px;
  color: #111;
}
.mobile-nav .menu-inner .mascot img {
  width: 92px;
  height: auto;
}

@media screen and (max-width: 1100px) {
  header h1 {
    width: 238px;
  }
  header h1 img {
    width: 100%;
  }
  header .header-inner ul.header-list {
    padding-right: 0px;
  }

  header .header-inner ul.header-list > li {
    padding: 0 10px;
  }
  header .header-inner ul.header-list > li > a {
    font-size: 12px;
  }
  ul.header-list > li .header-list-sub-container {
    width: 130px;
    padding: 26px 0 0 10px;
    top: 16px;
    left: -20px;
  }
  ul.header-list > li .header-list-sub-container ul.header-list-sub {
    padding: 5px 2px;
  }
  ul.header-list > li .header-list-sub-container ul.header-list-sub li a {
    padding: 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .header-inner {
    display: none !important;
  }

  .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 88px 8px 16px; /* 右はトグル分あける */
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    min-height: var(--mob-header-h);
    position: fixed;
    top: env(safe-area-inset-top, 0);
    right: 0;
    left: 0;
    z-index: 998;
    transition: box-shadow 0.2s ease, background 0.2s ease;
  }

  .header-mobile.is-stuck {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    background: #fff;
  }

  body {
    padding-top: var(--mob-header-h) !important;
  }

  .mobile-logo img {
    height: 38px;
    width: auto;
  }

  .header-mobile-right {
    display: flex;
    align-items: stretch;
    gap: 4px;
  }

  .mobile-icon,
  .fixed-toggle {
    display: grid;
    grid-template-rows: var(--top-row) auto;
    align-items: center;
    justify-items: center;
    min-height: var(--hit);
    min-width: var(--minw);
    padding: 0 8px;
    border-radius: var(--radius);
    text-decoration: none;
    color: #111;
  }

  .mobile-icon i {
    color: #111;
    height: var(--top-row);
    width: var(--top-row);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
  }

  .mobile-icon span,
  .fixed-toggle span.menu-label {
    font-size: 11px;
    line-height: 1;
    margin-top: 2px;
    text-align: center;
    display: block;
    color: var(--ink);
  }

  .sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ---------- 独立トグル（常に右上） ---------- */
  .fixed-toggle {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: min(16px, 4vw);
    z-index: 1100; /* ← メニュー(1000)より上。これが唯一の最前面 */

    background: none;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
  }

  .fixed-toggle .hamburger-lines {
    position: relative;
    width: var(--top-row);
    height: var(--top-row);
    border-radius: 50%;
    outline: 1px solid rgba(0, 0, 0, 0.15);
    outline-offset: -1px;
    background: rgba(255, 255, 255, 0.9);
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); */
  }
  .fixed-toggle .hamburger-lines .line {
    position: absolute;
    left: 50%;
    width: 20px;
    height: var(--line-w);
    background: #111;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }
  .fixed-toggle .hamburger-lines .line:first-child {
    top: calc(50% - 3px);
  }
  .fixed-toggle .hamburger-lines .line:last-child {
    top: calc(50% + 3px);
  }
  .fixed-toggle[aria-expanded="true"] .hamburger-lines .line {
    top: 50%;
  }
  .fixed-toggle[aria-expanded="true"] .hamburger-lines .line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .fixed-toggle[aria-expanded="true"] .hamburger-lines .line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  body.no-scroll .fixed-toggle .hamburger-lines {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
}

@media screen and (max-width: 500px) {
  .mobile-logo img {
    height: auto;
    width: 95%;
    max-width: 220px;
  }

  .mobile-icon,
  .fixed-toggle {
    min-width: 70px;
    padding: 0 0px;
  }
  .mobile-icon span,
  .fixed-toggle span.menu-label {
    font-size: 10px;
  }
}

/****************************************/

/* main */

/****************************************/
main {
  flex: 1;
  width: 100%;
}

main > .breadcrumb {
  font-size: 14px;
  margin: 1rem auto;
  max-width: 1200px;
  padding-left: 16px;
}
main > .breadcrumb a {
  /* color: #f8d57e; */
  text-decoration: underline;
  text-underline-offset: 1px;
}

/****************************************/

/* footer */

/****************************************/

/* 全体 */
footer {
  background: #333;
  text-align: center;
  list-style-type: none !important;
}

/* フッター本体 */
.footer-main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 50px;
}

/* 左列 */
.footer-left p.logo {
  padding: 50px 0 40px;
}
.footer-left ul.sns_list {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.footer-left .sns_list li + li {
  margin-left: 20px;
}
.footer-left .sns_list a {
  transition: all 0.3s;
}
.footer-left .sns_list a:hover {
  opacity: 0.5;
}
footer .footer-list img {
  max-width: 40px;
}

/* 中央列 */
.footer-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 50px auto 50px 0;
  padding-top: 20px;
}
.footer-list li {
  padding: 0 5px;
  margin-bottom: 20px;
}
.footer-list li a {
  color: #fff;
}

/* 右列　カレンダー */
.footer-right {
  margin: 50px auto 0 0;
}
.calendar-wrap {
  font-family: "Roboto", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  max-width: 475px;
  height: 345px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 16px 14px 153px 80px;
  gap: 15px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  grid-template-areas:
    "t t"
    "a b"
    "c d"
    "e e";
}

.calendar-title {
  font-weight: 500;
  font-style: normal;
  position: relative;
  bottom: -5px;
  grid-area: t;
  text-align: center;
  vertical-align: bottom;
  line-height: 1;
  margin: 0;
}

.calendar-title:nth-of-type(2) {
  display: none;
}
.calendar-header {
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}
.calendar-header:first-of-type {
  grid-area: a;
}
.calendar-header:nth-of-type(2) {
  grid-area: b;
}

.calendar {
  grid-area: c;
  display: inline-table;
  /* width: 100%; */
  width: 210px;
  height: 120px;
  color: #333;
  border-collapse: collapse;
  background-color: #ffffff;
}
.calendar:nth-of-type(2) {
  grid-area: d;
}

.calendar th,
.calendar td {
  width: calc(100% / 7);
  color: #333;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
  font-size: 11px;
  padding: 5px;
}
.calendar th {
  font-weight: 600;
  background-color: #333;
  color: #fff;
}
.calendar td {
  font-weight: 500;
  font-style: normal;
  border-top: 1px solid #ddd;
}

.calendar .mute {
  color: #aaa;
  visibility: hidden;
}
.calendar .today {
  font-weight: 900;
  font-style: normal;
  box-shadow: 0 0 0 2px #333333 inset;
}
.calendar .off {
  background-color: #ffeeee;
  color: #ff0000;
}
.calendar .holiday {
  background-color: #ffeeee; /* 赤色の背景色 */
  color: #ff0000; /* 文字色 */
}
.calendar .shipping {
  background-color: #dddddd; /* グレーの背景色 */
  color: #ff0000; /* 文字色 */
}

.calendar-footer-wrap {
  grid-area: e;
  position: relative;
  top: -8px;
}
ul.calendar-footer {
  width: 100%;
  display: flex;
  font-size: 12px;
  list-style: none;
  line-height: 2;
  margin: 0;
  padding: 0;
}
ul.calendar-footer li {
  margin-right: 12px;
  padding-left: 1rem;
  position: relative;
}
ul.calendar-footer li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #b9b9b9;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
ul.calendar-footer li.normal::before {
  background-color: #fff;
}
ul.calendar-footer li.closed::before {
  background-color: #fbb;
}
ul.calendar-footer li.shipping::before {
  background-color: #ddd;
}

.calendar-disc {
  width: 100%;
  line-height: 1.5;
  text-align: justify;
  margin: 8px 0 0;
  font-size: 12px;
}

/* コピーライト */
footer .copy {
  padding-bottom: 20px;
  font-size: 12px;
}

@media screen and (max-width: 1100px) {
  footer {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .footer-main {
    flex-direction: column-reverse;
    margin: 0 auto 20px;
  }
  footer p.logo {
    padding: 12vw 15vw 8vw;
  }
  footer .footer-list {
    display: block;
    margin-bottom: 40px;
    margin: 40px auto 0;
    padding-top: 0;
    padding-left: 0;
  }
  footer .footer-list li {
    display: block;
  }
  footer .footer-list li a {
    padding: 5px;
    display: block;
  }

  /* 右列　カレンダー */
  .footer-right {
    width: 100%;
    margin: 0;
    background-color: #f4f1ec;
  }
  .calendar-wrap {
    margin: 0 auto 0;
    height: 365px;
    grid-template-rows: 16px 14px 153px 100px;
    padding: 25px 20px 40px;
    border-radius: 0;
    background-color: #f4f1ec;
  }
  .calendar-title {
    font-weight: 700;
  }

  footer .copy {
    padding-bottom: 7px;
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 640px) {
  footer .sns_list {
    margin-bottom: 30px;
  }
  footer .footer-list {
    font-size: 14px;
  }
  footer .footer-list li {
    margin-bottom: 10px;
  }
  .calendar-wrap {
    justify-items: center;
    max-width: 362px;
    height: 336px;
    padding: 25px 0 40px;
    gap: 10px;
    grid-template-rows: 22px 14px 146px 74px;
  }
  .calendar-title {
    bottom: 0;
  }
  .calendar {
    width: 170px;
  }

  .calendar th,
  .calendar td {
    padding: 5px 2px;
    font-size: 10px;
  }
  .calendar-footer-wrap {
    top: 0;
  }
  ul.calendar-footer {
    font-size: 10px;
  }
  .calendar-disc {
    font-size: 10px;
    line-height: 1.6;
  }
}

/* フッター ここまで*/

/****************************************/

/* 改行設定  */

/****************************************/

.brpc {
  display: block;
}

.brsp {
  display: none;
}

.brpc-inline {
  display: inline;
}

@media screen and (max-width: 767px) {
  .brpc {
    display: none;
  }

  .brsp {
    display: block;
  }

  .brpc-inline {
    display: none;
  }

  img {
    max-width: 100%;
  }
}

/****************************************/

/* クリアフィックス  */

/****************************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/****************************************/

/* タッチデバイスのアクション  */

/****************************************/

/* :hoverが使える端末を想定 */
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
  button:hover {
    opacity: 0.8;
  }
}

/* :hoverが使えない端末を想定 */
@media (hover: none) {
  a:active {
    opacity: 0.8;
  }
  button:active {
    opacity: 0.8;
  }
}
/****************************************/

/* 動きの配慮  */

/****************************************/
@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .fixed-toggle .hamburger-lines .line,
  .mobile-nav .menu-inner {
    transition: none !important;
  }
}

/****************************************/

/* 背面のページスクロール抑止（メニュー開時）  */

/****************************************/
body.no-scroll {
  overflow: hidden;
}
