@charset "utf-8";
/* スマホ */
@media (width < 768px) {
}
@media (max-width: 767.99px) {
}
/* タブレット */
@media (width >= 768px) {
}
@media (width >= 1024px) {
}
@media (width >= 768px) and (width < 1024px) {
}
@media (width >= 768px) and (width < 1280px) {
}
@media (width >= 1024px) and (width < 1280px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 768px) and (max-width: 1023.99px) {
}
@media (min-width: 768px) and (max-width: 1279.99px) {
}
@media (min-width: 1024px) and (max-width: 1279.99px) {
}
/* PC */
@media (width >= 1280px) {
}
@media (min-width: 1280px) {
}
/* *****************************************************************************
// BaseのCSS
***************************************************************************** */
/* *************************************
// 変数定義
************************************* */
:root {
  --main-color: #867155;
  --sub-color: #433634;
  --text-color: #333;
  --link-color: #00a;
  --base-color: #f9f5e3;
  --green-color: #556b2f;
  --green2-color: #7ba23f;
  --yellow-color: #fce6c9;
  --gold-color: #e6b422;
  --default-space: 2rem;
  --rem: 1rem / 16;
  --black: #000;
  --white: #fff;
  --base: #fff;
  --green: #009300;
  --gray: #e7ecee;
  --text: #000;
  --border: #c9cac2;
}
/* *************************************
// Base
************************************* */
body {
  font-family: "Noto Serif", serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-image: url("../images/img/top/bg_nois.png");
  background-color: #fcfbf7;
}
b,
strong {
  font-weight: 600;
}
a {
  color: var(--link-color);
}
img,
video {
  max-width: 100%;
  height: auto;
}
pre {
  white-space: pre-wrap;
}
/* フォーム用 パーツ*/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  width: 100%;
  max-width: 450px;
  background-color: #eaedf2;
  padding: 0 0.75rem;
  line-height: 2.5rem;
  border-radius: 3px;
  min-height: 40px;
}
textarea {
  max-height: 120px;
}
select {
  background-image: linear-gradient(
      -45deg,
      transparent 0%,
      transparent 50%,
      #ccc 50%,
      #ccc 100%
    ),
    linear-gradient(45deg, transparent 0%, transparent 50%, #ccc 50%, #ccc 100%);
  background-position: right 0.25em center, right 0.75em center;
  background-size: 0.5em 0.5em, 0.5em 0.5em;
  background-repeat: no-repeat, no-repeat;
  padding-right: 2em;
}
input[type="radio"] + span,
input[type="checkbox"] + span {
  position: relative;
  cursor: pointer;
  padding-left: 1.5em;
  line-height: 2.5rem;
}
input[type="radio"] + span:before,
input[type="radio"] + span:after {
  content: "";
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
input[type="radio"] + span:before {
  border: 1px solid var(--text-color);
  width: 1.2em;
  left: 0;
}
input[type="radio"] + span:after {
  background-color: var(--text-color);
  opacity: 0;
  width: 0.8em;
  left: 0.2em;
}
input[type="radio"]:checked + span::after {
  opacity: 1;
}
input[type="checkbox"] + span:before,
input[type="checkbox"] + span:after {
  content: "";
  display: block;
  position: absolute;
}
input[type="checkbox"] + span:before {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--text-color);
  width: 1.2em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
input[type="checkbox"] + span:after {
  border-bottom: 2px solid var(--text-color);
  border-left: 2px solid var(--text-color);
  opacity: 0;
  width: 0.8em;
  height: 0.4em;
  top: calc(50% - 0.3em);
  left: 0.2em;
  transform: rotate(-45deg);
}
input[type="checkbox"]:checked + span::after {
  opacity: 1;
}
input[type="date"] {
  align-items: center;
}
.wpcf7-list-item {
  line-height: 2.5rem;
}
.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0.5em 0 0;
}
::placeholder {
  color: #999;
}

/* *************************************
// 汎用ID・Class
************************************* */
#container {
  /* max-width: 100%;
	padding-top: 80px; */
}
.wrap {
  width: 96%;
  max-width: 1040px;
  margin: 0 auto;
}
.cf,
.clearfix {
  display: flow-root;
}
/* 旧clearfixの手法(必要があればコメントアウトを外す) */
.cf:after,
.clearfix:after {
  /*content: "";*/
  /*clear: both;*/
  /*display: block;*/
}

/* 行間 */
#content p {
  margin-bottom: 1rem;
}
/* PC・SPの表示 / 非表示 */
@media (width < 768px) {
  .pc_only {
    display: none;
  }
}
@media (width >= 768px) {
  .sp_only {
    display: none;
  }
}
/*電話番号リンク*/
a[href^="tel:"] {
  text-decoration: none;
  color: inherit;
}
@media (width >= 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* テーブル */
@media (width < 768px) {
  table.two_column tbody th,
  table.two_column tbody td {
    display: block;
  }
}
/* 分割 */
.flex,
.two_in_one,
.three_in_one,
.four_in_one,
.five_in_one,
.six_in_one {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex.reverse,
.two_in_one.reverse,
.three_in_one.reverse,
.four_in_one.reverse,
.five_in_one.reverse,
.six_in_one.reverse {
  flex-direction: row-reverse;
}
.flex > div,
.two_in_one > div,
.three_in_one > div,
.four_in_one > div,
.five_in_one > div,
.six_in_one > div {
  width: 100%;
}
@media (width >= 768px) {
  /* 2分割 */
  .two_in_one > div {
    width: calc(100% / 2);
  }
  .flex > div:where(:nth-child(1):nth-last-child(2)),
  .flex > div:where(:nth-child(2):nth-last-child(1)) {
    width: calc(100% / 2);
  }
  /* 3分割 */
  .three_in_one > div {
    width: calc(100% / 3);
  }
  .flex > div:where(:nth-child(1):nth-last-child(3)),
  .flex > div:where(:nth-child(2):nth-last-child(2)),
  .flex > div:where(:nth-child(3):nth-last-child(1)) {
    width: calc(100% / 3);
  }
  /* 4分割 */
  .four_in_one > div {
    width: calc(100% / 4);
  }
  .flex > div:where(:nth-child(1):nth-last-child(4)),
  .flex > div:where(:nth-child(2):nth-last-child(3)),
  .flex > div:where(:nth-child(3):nth-last-child(2)),
  .flex > div:where(:nth-child(4):nth-last-child(1)) {
    width: calc(100% / 4);
  }
  /* 5分割 */
  .five_in_one > div {
    width: calc(100% / 5);
  }
  .flex > div:where(:nth-child(1):nth-last-child(5)),
  .flex > div:where(:nth-child(2):nth-last-child(4)),
  .flex > div:where(:nth-child(3):nth-last-child(3)),
  .flex > div:where(:nth-child(4):nth-last-child(2)),
  .flex > div:where(:nth-child(5):nth-last-child(1)) {
    width: calc(100% / 5);
  }
  /* 6分割 */
  .six_in_one > div {
    width: calc(100% / 6);
  }
  .flex > div:where(:nth-child(1):nth-last-child(6)),
  .flex > div:where(:nth-child(2):nth-last-child(5)),
  .flex > div:where(:nth-child(3):nth-last-child(4)),
  .flex > div:where(:nth-child(4):nth-last-child(3)),
  .flex > div:where(:nth-child(5):nth-last-child(2)),
  .flex > div:where(:nth-child(6):nth-last-child(1)) {
    width: calc(100% / 6);
  }
}
/* youtube レスポンシブ */
.youtube_wrap {
  /*position: relative;*/
  /*width: 100%;*/
  /*padding-top: 56.25%;*/
}
.youtube_wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*width: 100%;*/
  /*height: 100%;*/
}
/* アニメーション用 */
.animation {
  opacity: 0;
}
.animation.animated {
  opacity: 1;
}
/* *****************************************************************************
// 各種パーツ
***************************************************************************** */
/* *************************************
// 見出し(head line)
************************************* */
.hl001 {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  text-align: center;
  padding: 1.5em 0.5em;
  font-size: clamp(20px, 5.5vw, 50px);
}
.hl001 > *:first-child:nth-last-child(2) {
  line-height: 1.6;
}
.hl001 > *:nth-child(2):last-child {
  display: block;
  font-size: max(0.4em, 12px);
  line-height: 1;
}
.hl001:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/hl001_bg.webp");
  background-size: cover;
  background-position: center;
}
/* *************************************
// ボタン(button)
************************************* */
.btn001 {
  margin: var(--default-space) 0;
}
.btn001 input[type="submit"],
.btn001 a {
  display: block;
  width: fit-content;
  padding: 0.5em 3em;
  margin: 0 auto;
  border-radius: 2em;
  white-space: nowrap;
  transition: all 0.5s;
  background: var(--main-color);
  color: #fff;
  cursor: pointer;
}
.btn001 input[type="submit"]:hover,
.btn001 a:hover {
  opacity: 0.7;
}
/* *************************************
// ローダー(loader)
************************************* */
#loader-bg.l001 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l001 .spinner {
  margin: 100px 0 0;
  width: 70px;
  text-align: center;
}
.l001 .spinner > div {
  width: 18px;
  height: 18px;
  background: var(--main-color);

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.l001 .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.l001 .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* *************************************
// ヘッダー(header)
************************************* */
.h001.header {
  /* position: fixed; */
  /* top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 80px; */
  overflow: visible;
}
.h001.header #inner-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: anchor-center;
}
.h001.header .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
}
.h001.header .logo::before {
  content: "";
}
/* .h001.header .logo::after {
	content: '';
	position: absolute;
	left: -42px;
	top: calc(160% + 45px);
	width: 1px;
	height: 200px;
	background-color: #433634;
	animation: arrowBlink 1.5s infinite;
} */
.h001.header .logo::after::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(45deg);
}
.h001.header .header_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.h001.header .top-links {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  align-items: center;
}
.h001.header .english-btn {
  padding: 5px 15px;
  color: var(--green-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
  padding-left: 35px;
}
.h001.header .english-btn::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/img/common/en.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.h001.header .english-btn:hover {
  background: #333;
  color: #fff;
}
.h001.header .tel-number {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-left: 35px;
}
.h001.header .tel-number::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/img/common/tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.h001.header .main-nav {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}
.h001.header .main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.h001.header .main-nav li a {
  color: var(--sub-color);
  text-decoration: none;
  font-size: 16px;
  padding: 5px 10px;
  transition: color 0.3s;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.h001.header .main-nav li a:hover {
  color: #666;
}
.h001.header .english-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.h001.header .english-title .title-text {
  font-family: "Noto Serif", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 5px;
}
.h001.header .english-title .arrow-down {
  width: 1px;
  height: 30px;
  background-color: #333;
  position: relative;
  animation: arrowBlink 1.5s infinite;
}
.h001.header .english-title .arrow-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
}
@keyframes arrowBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes circlemove {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-20px) rotate(45deg);
  }
}
@keyframes cirlemovehide {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
/* PC */
@media (width >= 1280px) {
  .h001.header {
    height: 120px;
  }
  .h001.header #inner-header {
    padding: 20px 40px;
  }
  .h001.header .logo img {
    width: 250px;

  }
  .h001.header .top-links {
    margin-bottom: 20px;
  }
  .h001.header .english-btn {
    font-size: 16px;
    padding: 8px 20px;
  }
  .h001.header .tel-number {
    font-size: 18px;
  }
  .h001.header .main-nav li a {
    font-size: 18px;
    padding: 8px 0;
  }
  .h001.header .menu-item {
    padding: 0 15px;
  }
  .h001.header .english-title {
    left: -50px;
  }
  .h001.header .english-title .title-text {
    font-size: 15px;
  }
  .h001.header .english-title .arrow-down {
    height: 100px;
  }
  .h001.header .english-title .arrow-down::after {
    width: 10px;
    height: 10px;
  }
  .h001.header .logo::before {
    font-size: 15px;
    left: -50px;
  }
  .h001.header .logo::after::before {
    width: 10px;
    height: 10px;
    left: -5px;
  }
}
/* タブレットのみ */
@media screen and (min-width: 768px) {
  .h001.header {
    height: 80px;
  }
  .h001.header .menu_box {
    top: 20px;
  }
}

/* *************************************
// メインビジュアル(main visual)
************************************* */
.mv001 {
  overflow: hidden;
  position: relative;
  padding: 0;
  background: #ccc;
  margin-left: auto;
  width: 80%;
  margin-top: 100px;
}
.mv001_wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  width: 100%;
  height: 100%;
}
.mv001_text_side {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  position: relative;
  background-image: url("../images/img/top/bg_nois.png");
  background-color: #fcfbf7;
}
.tokyoya-seika-text {
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  position: relative;
  rotate: -90deg;
}
.tokyoya-seika-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(13 * 1rem);
  aspect-ratio: 1;
  background-color: #fff;
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  z-index: 1;
  rotate: 45deg;
}
.tokyoya-seika-text::after {
  content: "";
  position: absolute;
  bottom: calc(6 * 1rem);
  left: -94%;
  width: calc(100 * 1rem);
  height: 1px;
  background-color: #000;
}
.mv001_image_side {
  position: relative;
  aspect-ratio: 16/9;
  height: auto;
  overflow: hidden;
}
.mv001 .mv001_contents {
  position: absolute;
  color: #fff;
  bottom: 0;
  left: 0%;
  z-index: 1;
  padding: calc(var(--default-space) / 2);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), -1px -1px 3px rgba(0, 0, 0, 0.5);
}
.mv001 .mv001_contents .mv001_text {
  font-size: min(7vw, 48px);
}
.mv001 .mv001_contents .mv001_text2 {
  font-size: min(3vw, 18px);
}
.mv001_image_side .mv001_slider,
.mv001_image_side .mv001_slider .slick-list,
.mv001_image_side .mv001_slider .slick-track {
  width: 100%;
  height: 100%;
}
.mv001_image_side .mv001_slider .slick-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mv001_image_side .mv001_slider .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.mv001_image_side .mv001_slider .slick-prev,
.mv001_image_side .mv001_slider .slick-next {
  display: none;
}
.mv001_image_side .mv001_slider .slick-dots {
  bottom: 10px;
}
.mv001_image_side .mv001_slider .slick-dots li button:before {
  color: #fff;
  opacity: 0.5;
}
.mv001_image_side .mv001_slider .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}
@media (width >= 768px) {
  .mv001 {
    width: 100%;
    margin-top: 100px;
  }
  .mv001_wrapper {
    grid-template-columns: 300px 1fr;
  }
  .mv001_image_side {
    aspect-ratio: 16/9;
  }
  .mv001 .mv001_contents {
    bottom: 5%;
    left: 5%;
  }
}
@media screen and (min-width: 768px) {
  .mv001 .mv001_contents .mv001_text {
    font-size: min(5vw, 28px);
  }
}
/* *************************************
// フッター(footer)
************************************* */
.f001 {
  background-color: var(--sub-color);
  color: #fff;
}
.f001 #inner-footer {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 5%;
  padding-right: 5%;
}
.f001 .logo {
  padding: 0;
  margin-bottom: 30px;
}
.f001 .logo a {
  color: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
  font-weight: bold;
}
.f001 a.tel_box {
  background: #fff;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px;
}
.f001 .address > span {
  margin-right: 0.5em;
}
.f001 nav {
  margin: var(--default-space) 0;
}
.f001 ul.nav {
  border-bottom: 1px dashed #ccc;
}
.f001 ul.nav > li {
  border-top: 1px dashed #ccc;
}
.f001 .nav li a {
  display: block;
  color: inherit;
  padding: 0.75rem;
  line-height: 1.5;
}
.f001 .nav li ul.sub-menu,
.f001 .nav li ul.children {
  position: static;
  visibility: visible;
  border: none;
}
.f001 .nav li ul.sub-menu li,
.f001 .nav li ul.children li {
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
}
.f001 .nav li ul.sub-menu a:before,
.f001 .nav li ul.children a:before {
  content: "-";
  margin-right: 0.5em;
  display: inline;
}
.f001 .img_box {
  margin-left: auto;
}
.f001 .sns_box {
  display: flex;
}
.f001 .sns_box a {
  display: block;
  margin: 0 5px;
}
.f001 .sns_box a img {
  display: block;
  width: 40px;
}
.f001 .copyright {
  margin: 0;
  padding: 0.4rem;
  text-align: center;
  font-size: 0.8rem;
  background: #fff;
  color: var(--text-color);
}
@media (width >= 768px) {
  .f001 #inner-footer {

  }
  .f001 #inner-footer > * {
    margin-right: 15px;
  }
  .f001 nav {
    margin: 0;
  }
  .f001 ul.nav {
    width: 200px;
    border-bottom: none;
  }
  .f001 ul.nav > li {
    border-top: none;
  }
  .f001 .nav li a {
    padding: 0.5rem;
  }
}
/* *************************************
// 記事リスト(post list)
************************************* */
.pl001 {
  padding: calc(var(--default-space) * 2) 0;
}
.pl001 .post_item {
  border-bottom: 1px dashed #ccc;
  display: block;
  padding: calc(var(--default-space) / 4) calc(var(--default-space) / 2);
  margin-bottom: calc(var(--default-space) / 2);
}
.pl001 .post_item a {
  color: inherit;
}
.pl001 .post_item .date {
  width: 100px;
  color: var(--main-color);
}
@media (width >= 768px) {
  .pl001 .post_item a {
    display: flex;
  }
  .pl001 .post_item .date {
    flex-shrink: 0;
  }
}
/* *************************************
// 記事個別(post single)
************************************* */
.post_single {
  padding: calc(var(--default-space) * 2) 0;
}
.post_single .date {
  color: var(--main-color);
  opacity: 0.7;
}
.post_single .title {
  font-size: clamp(18px, 4.5vw, 36px);
  font-weight: bold;
  margin-bottom: calc(var(--default-space));
}
/* *************************************
// 固定ページ(page single)
************************************* */
.page_single {
  padding: calc(var(--default-space) * 2) 0;
}
/* *************************************
// メールフォーム
************************************* */
table.mail_form {
  margin: auto;
  min-width: 80%;
  table-layout: fixed;
}
table.mail_form tr:first-child {
  border-top: 1px solid #ccc;
}
table.mail_form tr {
  border-bottom: 1px solid #ccc;
}
table.mail_form th,
table.mail_form td {
  margin: calc(var(--default-space) / 2);
  vertical-align: middle;
}
table.mail_form th {
  text-align: left;
  font-weight: bold;
}
table.mail_form tr th.required:after {
  content: "\5fc5\9808";
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.4rem;
  border-radius: 0.2rem;
  font-size: 0.75rem;
  white-space: nowrap;
  color: white;
  background: var(--main-color);
}
@media (width >= 768px) {
  table.mail_form th,
  table.mail_form td {
    margin: 0;
    padding: calc(var(--default-space) / 2);
  }
}
/* *************************************
// ページネーション
************************************* */
.pagination ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.pagination li {
  margin: 0 5px;
  border: none;
}
.pagination li > a,
.pagination li > span {
  padding: 5px 8px;
}
.pagination li > a {
  border: 1px solid #cbcbcb;
  color: #000;
  background: #fff;
}
.pagination li > .page-numbers.current {
  border: 1px solid #cbcbcb;
  color: #fff;
  background: var(--main-color);
}
.pagination li > a:hover,
.pagination li > a:focus {
  background: var(--sub-color);
  color: #fff;
}
/* *************************************
// バナー(banner)
************************************* */
.banner {
  text-align: center;
  padding: 40px 0;
}
.banner img {
  max-width: 100%;
  height: auto;
}
@media (width >= 768px) {
  .banner {
    padding: 60px 0;
  }
}
/* *************************************
// お知らせ(news)
************************************* */
.news {
  background-image: url("../images/img/top/bg_nois.png");
  background-color: #eaf2db;
}
.title {
  font-size: clamp(24px, 5vw, 32px);
  text-align: center;
  color: var(--sub-color);
  font-weight: 600;
  padding-top: 40px;
}
.subtitle {
  text-align: center;
  font-size: 12px;
  color: var(--gold-color);
  margin-bottom: 40px;
  letter-spacing: 0.2em;
  padding-bottom: 40px;
}
.news_content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
  background-image: radial-gradient(#f8f8f8 1.3px, transparent 1.3px);
  background-size: calc(7 * 1px) calc(7 * 1px);
  box-shadow: 0 0 25px rgb(0 0 0 / 8%);
}
.news_date {
  color: var(--main-color);
  font-size: 14px;
  margin-bottom: 10px;
}
.news_heading {
  font-size: clamp(18px, 4vw, 24px);
  margin-bottom: 20px;
  color: var(--sub-color);
  font-weight: 600;
}
.news_text {
  line-height: 1.8;
  color: var(--text-color);
}
@media (width >= 768px) {
  .news {
    padding-bottom: 80px;
  }
  .news_content {
    padding: 40px;
  }
}
/* *************************************
// 代表商品(representative)
************************************* */
.representative {
  padding: 40px 60px 80px 60px;
}
.representative .wrap {
  width: 100%;
  max-width: none;
  padding: 0;
}
.sweets_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.sweets_item {
  text-align: center;
  background-color: #fff;
  background-image: radial-gradient(#f8f8f8 1.3px, transparent 1.3px);
  background-size: calc(7 * 1px) calc(7 * 1px);
  box-shadow: 0 0 25px rgb(0 0 0 / 8%);
  padding: 20px 30px;
}
.sweets_img {
  margin-bottom: 15px;
  aspect-ratio: 1/1;
  overflow: hidden;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.sweets_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.sweets_item:hover .sweets_img img {
  transform: scale(1.1);
}
.sweets_title {
  font-size: 16px;
  color: var(--sub-color);
  margin-bottom: 8px;
  font-weight: 600;
}
.sweets_text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text-color);
}
.sweets_link {
  display: inline-block;
  color: var(--main-color);
  text-decoration: none;
  font-size: 13px;
  position: relative;
  padding-right: 20px;
}
.sweets_link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s;
}
.sweets_link:hover::after {
  right: -5px;
}
@media (width >= 768px) and (width < 1024px) {
  .sweets_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .sweets_img {
    max-width: 240px;
  }
}
@media (width < 768px) {
  .representative {
    padding: 40px 20px;
  }
  .sweets_content {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 30px;
  }
  .sweets_img {
    max-width: 280px;
    aspect-ratio: 16/9;
  }
}
/* *************************************
// special
************************************* */
.special {
  padding: 80px 0 100px 0;
  background-image: url("../images/img/top/bg_nois.png");
  background-color: #eaf2db;
}
.special_content {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.special_item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.special_img {
  flex: 1;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-image: radial-gradient(#f8f8f8 1.3px, transparent 1.3px);
  background-size: calc(7 * 1px) calc(7 * 1px);
  box-shadow: 0 0 25px rgb(0 0 0 / 8%);
  transition: transform 0.3s ease;
}
.special_img:hover {
  transform: scale(1.05);
}
.special_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s ease;
}
.special_img:hover::before {
  background: rgba(0, 0, 0, 0.1);
}
.special_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 0;
  transition: transform 0.3s ease;
}
.special_text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  padding-top: 40px;
}
.special_title {
  font-size: 19px;
  color: var(--sub-color);
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
}
.special_title::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background-color: var(--sub-color);
}
@media (width < 768px) {
  .special_content {
    flex-direction: column;
    padding: 0 20px;
  }
  .special_item {
    flex-direction: column;
    gap: 20px;
  }
  .special_img {
    max-width: 280px;
  }
  .special_text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    padding-top: 20px;
    text-align: center;
  }
  .special_title {
    padding-top: 20px;
  }
  .special_title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* *************************************
// こだわり(fastidiousness)
************************************* */
.fastidiousness {
  position: relative;
}
.fastidiousness .wrap {
  width: 100%;
  max-width: none;
  padding: 0;
}
.fastidiousness_content {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.fastidiousness_img {
  width: 100%;
  height: 100%;
}
.fastidiousness_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fastidiousness_text {
  position: absolute;
  top: 40px;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  max-width: 400px;
}
.fastidiousness_title {
  font-size: clamp(20px, 4vw, 28px);
  color: var(--sub-color);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.fastidiousness_description_wrap {
  position: absolute;
  top: 120px;
  left: 0;
  max-width: 500px;
  padding: 0 30px;
}
.fastidiousness_description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}
.fastidiousness_btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  background-image: radial-gradient(#f8f8f8 1.3px, transparent 1.3px);
  background-size: calc(7 * 1px) calc(7 * 1px);
  color: var(--sub-color);
  text-decoration: none;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-right: 40px;
}
.fastidiousness_btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--sub-color);
  transition: all 0.3s ease;
  animation: 1.5s ease 0s infinite normal none running arrowBlink;
}
.fastidiousness_btn::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: var(--sub-color);
  transform: translateY(-50%) rotate(20deg);
  transform-origin: right center;
  transition: all 0.3s ease;
  animation: 1.5s ease 0s infinite normal none running arrowBlink;
}
.fastidiousness_btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.fastidiousness_btn:hover::after {
  right: 10px;
  width: 25px;
}
.fastidiousness_btn:hover::before {
  right: 10px;
  width: 10px;
}
@media (width < 768px) {
  .fastidiousness_content {
    height: auto;
  }
  .fastidiousness_text {
    top: 20px;
    left: 0;
    padding: 15px 20px;
    max-width: 100%;
  }
  .fastidiousness_title {
    font-size: 20px;
  }
  .fastidiousness_description_wrap {
    top: 80px;
    padding: 0 20px;
  }
  .fastidiousness_description {
    font-size: 13px;
  }
  .fastidiousness_btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 13px;
    padding-right: 35px;
  }
  .fastidiousness_btn::after {
    right: 12px;
    width: 16px;
    height: 1.5px;
  }
  .fastidiousness_btn::before {
    right: 12px;
    width: 6px;
    height: 1.5px;
  }
  .fastidiousness_btn:hover::after {
    right: 8px;
    width: 20px;
  }
  .fastidiousness_btn:hover::before {
    right: 8px;
    width: 8px;
  }
}
@media (width >= 768px) and (width < 1024px) {
  .fastidiousness_content {
    height: 450px;
  }
  .fastidiousness_description_wrap {
    max-width: 450px;
  }
}
@media (width >= 1024px) {
  .fastidiousness_content {
    height: 600px;
  }
  .fastidiousness_text {
    max-width: 450px;
    padding: 25px 35px;
  }
  .fastidiousness_title {
    font-size: 32px;
  }
  .fastidiousness_description_wrap {
    top: 200px;
    max-width: 550px;
    padding: 0 35px;
  }
  .fastidiousness_description {
    font-size: 1.4rem;
  }
  .fastidiousness_btn {
    bottom: 30px;
    right: 130px;
    padding: 18px 150px 18px 30px;
    font-size: 1.4rem;
  }
  .fastidiousness_btn::after {
    right: 18px;
    width: 100px;
    height: 1px;
  }
  .fastidiousness_btn::before {
    right: 18px;
    width: 20px;
    height: 1px;
  }
  .fastidiousness_btn:hover::after {
    right: 12px;
    width: 30px;
  }
  .fastidiousness_btn:hover::before {
    right: 12px;
    width: 12px;
  }
}
/* *************************************
// 店舗情報(shop_info)
************************************* */
.shop_info {
  background-image: url("../images/img/top/bg_nois.png");
  background-color: #fcfbf7;
}
.shop_info .flex {
  display: flex;
  align-items: stretch;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
}
.shop_info .image_box {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.shop_info .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.shop_info .image_box:hover img {
  
}
.shop_info .text_box {
  text-align: center;
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shop_info .logo_box {
  margin-bottom: 30px;
}
.shop_info .logo_box .main {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--sub-color);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}
.shop_info .logo_box img {
  max-width: 50%;
  height: auto;
}
.shop_info .info_box {
  margin-bottom: 30px;
}
.shop_info .shop_address {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}
.shop_info .shop_hours {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-color);
}
.shop_info .shop_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-color);
}
.shop_info .tel_icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.shop_info .tel_link {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.shop_info .tel_link:hover {
  color: var(--main-color);
}
.shop_info .shop_pay {
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.shop_info .shop_pay_title {
  font-size: 16px;
  color: var(--sub-color);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  background-color: var(--text-color);
  display: inline-block;
  color: #fff;
  padding: 7px 30px;
}
.shop_info .pay_method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.shop_info .pay_icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.shop_info .shop_pay_text {
  font-size: 14px;
  color: var(--sub-color);
  font-weight: 600;
  margin: 0;
}
.shop_info .shop_pay_sub-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
}
@media (width < 768px) {
  .shop_info {
    padding: 40px 20px;
  }
  .shop_info .flex {
    flex-direction: column;
    margin: 0;
  }
  .shop_info .image_box {
    flex: none;
    height: 250px;
  }
  .shop_info .text_box {
    padding: 30px 0;
  }
  .shop_info .logo_box {
    margin-bottom: 25px;
  }
  .shop_info .logo_box .main {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .shop_info .info_box {
    margin-bottom: 25px;
  }
  .shop_info .shop_address,
  .shop_info .shop_hours {
    font-size: 13px;
  }
  .shop_info .shop_tel {
    font-size: 13px;
  }
  .shop_info .tel_icon {
    width: 14px;
    height: 14px;
  }
  .shop_info .shop_pay {
    padding-top: 25px;
  }
  .shop_info .shop_pay_title {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .shop_info .pay_icon {
    width: 20px;
    height: 20px;
  }
  .shop_info .shop_pay_text {
    font-size: 13px;
  }
  .shop_info .shop_pay_sub-text {
    font-size: 11px;
    margin-bottom: 15px;
  }
}
@media (width >= 768px) and (width < 1024px) {
  .shop_info .text_box {
    padding: 35px 40px;
  }
  .shop_info .logo_box .main {
    font-size: 28px;
  }
  .shop_info .shop_address,
  .shop_info .shop_hours {
    font-size: 15px;
  }
  .shop_info .shop_tel {
    font-size: 15px;
  }
  .shop_info .tel_icon {
    width: 15px;
    height: 15px;
  }
  .shop_info .pay_icon {
    width: 22px;
    height: 22px;
  }
  .shop_info .shop_pay_text {
    font-size: 15px;
  }
  .shop_info .shop_pay_sub-text {
    font-size: 13px;
  }
}
@media (width >= 1024px) {
  .shop_info .text_box {
    padding: 50px 60px 20px 60px;
  }
  .shop_info .logo_box .main {
    font-size: 36px;
  }
  .shop_info .shop_address,
  .shop_info .shop_hours {
    font-size: 1.2rem;
  }
  .shop_info .shop_tel {
    font-size: 1.6rem;
  }
  .shop_info .tel_icon {
    width: 23px;
    height: 23px;
  }
  .shop_info .pay_icon {
    width: 26px;
    height: 26px;
  }
  .shop_info .shop_pay_text {
    font-size: 16px;
  }
  .shop_info .shop_pay_sub-text {
    font-size: 14px;
  }
}
@media (width >= 768px) {
  .shop_info .tel_link {
    pointer-events: none;
    cursor: default;
  }
}
/* *************************************
// フッター
************************************* */

.footer {
  background-image: url("../images/img/footer_bg.webp");
  background-position: right center;
  background-size: auto 100%;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
}
.footer .logo {
  font-size: 1.4rem;
}
/* *************************************
// 下層ページヘッダー(subpage header)
************************************* */
.h002.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.h002.header #inner-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.h002.header .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.h002.header .logo img {
  width: 150px;
  height: auto;
}
.h002.header .header_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.h002.header .top-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 5px;
}
.h002.header .english-btn {
  padding: 5px 12px;
  color: var(--green-color);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s;
  position: relative;
  padding-left: 30px;
}
.h002.header .english-btn::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../images/img/common/en.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.h002.header .english-btn:hover {
  background: #333;
  color: #fff;
}
.h002.header .tel-number {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}
.h002.header .tel-number::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/common/tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.h002.header .main-nav {
  display: flex;
  align-items: center;
}
.h002.header .main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
.h002.header .main-nav li a {
  color: var(--sub-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s;
  position: relative;
}
.h002.header .main-nav li a:hover {
  color: var(--main-color);
}
.h002.header .main-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}
.h002.header .main-nav li a:hover::after {
  width: 100%;
}
@media (width < 768px) {
  .h002.header {
    height: 60px;
  }
  .h002.header #inner-header {
    padding: 0 15px;
  }
  .h002.header .logo img {
    width: 120px;
  }
  .h002.header .header_box {
    gap: 3px;
  }
  .h002.header .top-links {
    gap: 15px;
    margin-bottom: 3px;
  }
  .h002.header .english-btn {
    font-size: 11px;
    padding: 4px 10px;
    padding-left: 25px;
  }
  .h002.header .english-btn::before {
    width: 14px;
    height: 14px;
    left: 5px;
  }
  .h002.header .tel-number {
    font-size: 12px;
    padding-left: 25px;
  }
  .h002.header .tel-number::before {
    width: 14px;
    height: 14px;
    left: 5px;
  }
  .h002.header .main-nav ul {
    gap: 15px;
  }
  .h002.header .main-nav li a {
    font-size: 11px;
    padding: 6px 0;
  }
}
@media (width >= 768px) and (width < 1024px) {
  .h002.header .main-nav ul {
    gap: 20px;
  }
  .h002.header .main-nav li a {
    font-size: 12px;
  }
}
@media (width >= 1024px) {
  .h002.header .logo img {
    width: 180px;
  }
  .h002.header .header_box {
    gap: 8px;
  }
  .h002.header .top-links {
    gap: 25px;
    margin-bottom: 8px;
  }
  .h002.header .main-nav ul {
    gap: 30px;
  }
  .h002.header .main-nav li a {
    font-size: 14px;
    padding: 10px 0;
  }
  .h002.header .english-btn {
    font-size: 13px;
    padding: 6px 15px;
    padding-left: 35px;
  }
  .h002.header .english-btn::before {
    width: 18px;
    height: 18px;
    left: 8px;
  }
  .h002.header .tel-number {
    font-size: 16px;
    padding-left: 35px;
  }
  .h002.header .tel-number::before {
    width: 18px;
    height: 18px;
    left: 8px;
  }
}
