@charset "UTF-8";
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ------------------------------------------------------------
style reset
------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th {
  font-weight: normal;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

button,
input {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* ------------------------------------------------------------
// Bootstrap
------------------------------------------------------------ */
.container {
  max-width: 1440px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.row {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

[class*=col] {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ------------------------------------------------------------
// photo-ofi
------------------------------------------------------------ */
.photo-ofi {
  height: 0;
  display: block;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------------------------------------
// paging
------------------------------------------------------------ */
div.paging span.current,
div.paging span.paging-text {
  margin: 0px 2px;
  color: #333333;
  border: 1px solid #cccccc;
  display: inline;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

div.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
}

div.paging span.current {
  background: #cc0000;
  border: 1px solid #663366;
  color: #ffffff;
  display: inline;
  zoom: 1;
  padding: 3px 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

div.paging span.paging-text a:hover {
  background: #cccccc;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

/* ============================================================
// 初期共通設定（common.scss）
// 全プロジェクトで共通利用するベーススタイル
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html,
body {
  height: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.google-maps iframe {
  vertical-align: bottom;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.clickable {
  cursor: pointer;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  transform: translateY(100px);
  opacity: 0;
  z-index: 10;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
@media screen and (max-width: 575px) {
  .pagetop a img {
    width: 40px;
    height: 40px;
  }
}

.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* tel:リンクはテキスト色を継承させる */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
@media print {
  a[href^="tel:"] {
    text-decoration: none;
  }
}

.reveal {
  --dur: 1.2s; /* 速度 */
  --ease: cubic-bezier(0.45, 0, 0.55, 1); /* 最初と最後がゆっくり */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: transform, opacity;
}

/* 出現方向 */
.reveal[data-anim=fade] {
  transform: none;
}

.reveal[data-anim=up] {
  transform: translateY(20px);
}

.reveal[data-anim=left] {
  transform: translateX(-20px);
}

.reveal[data-anim=right] {
  transform: translateX(20px);
}

/* 表示後の状態 */
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* 動きを減らすユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* 印刷時は常に表示 */
@media print {
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ============================================================
// header（ヘッダー共通）
============================================================ */
header .header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
  width: 100%;
  height: 90px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 500;
}
header .header-wrap .logo {
  flex: 1;
  margin-right: 60px;
}
header .header-wrap .gnav ul {
  display: flex;
  gap: 30px;
  height: 90px;
}
header .header-wrap .gnav ul li {
  min-width: 90px;
}
header .header-wrap .gnav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
  padding: 0 15px;
  border-bottom: 5px solid #ffffff;
  transition: 0.3s;
}
header .header-wrap .gnav ul li a .jp {
  font-weight: 500;
  line-height: 1.4;
}
header .header-wrap .gnav ul li a .jp {
  font-size: 16px;
}
header .header-wrap .gnav ul li a .en {
  font-size: 13px;
  color: #cccccc;
}
header .header-wrap .gnav ul li a.current, header .header-wrap .gnav ul li a:hover {
  border-bottom: 5px solid #8f559f;
}
@media print, screen and (max-width: 1299px) {
  header .header-wrap {
    gap: 20px;
    padding: 0 20px;
  }
  header .header-wrap .gnav ul {
    gap: 10px;
  }
}
@media print, screen and (max-width: 991px) {
  header .header-wrap .link-btn a {
    width: 48px;
    height: 48px;
  }
  header .header-wrap .link-btn a span {
    display: none;
  }
}
@media print, screen and (max-width: 767px) {
  header .header-wrap .gnav {
    display: none;
  }
  header .header-wrap .link-btn {
    display: none;
  }
}
header .header-space {
  height: 90px;
}

/* ============================================================
// header（ハンバーガー + 全画面ナビ）
============================================================ */
/* ------------------------------------------------------------
// グローバル変数・共通設定
------------------------------------------------------------ */
:root {
  --nav-dur: 0.45s; /* 開閉の速さ */
  --nav-ease: cubic-bezier(0.22, 0.61, 0.36, 1); /* 落ち着いた ease-out */
}

/* ------------------------------------------------------------
// ハンバーガーメニューアイコン
------------------------------------------------------------ */
.hamburger {
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  background-color: transparent;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #111111;
  transition: transform 0.35s var(--nav-ease), opacity 0.35s var(--nav-ease), top 0.35s var(--nav-ease);
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 23px;
}
.hamburger span:nth-child(3) {
  top: 31px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 23px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
}
@media print, screen and (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
.fullscreen-nav {
  position: fixed;
  inset: 0;
  width: calc(100% - 30px);
  height: calc(100vh - 30px);
  margin: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #8f559f;
  border-radius: 10px;
  box-shadow: 0 0 8px #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--nav-dur) var(--nav-ease);
  will-change: opacity;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* 表示時（ここにまとめて統合） */
  /* hidden 時は強制非表示（保険） */
}
.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fullscreen-nav ul li {
  margin: 25px 0;
}
.fullscreen-nav ul li a {
  font-size: 20px;
  text-decoration: none;
  color: #111111;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.fullscreen-nav ul li a.current, .fullscreen-nav ul li a:hover {
  color: #8f559f;
}
.fullscreen-nav ul li a .en {
  font-size: 14px;
  color: #cccccc;
}
.fullscreen-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fullscreen-nav[hidden] {
  display: none !important;
}

.nav-inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-inner ul {
  width: 100%;
  max-width: 400px;
}

@media (max-height: 500px) {
  .nav-inner {
    align-items: flex-start;
    padding-top: 60px;
  }
}
@media (max-height: 400px) {
  .fullscreen-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .fullscreen-nav ul li {
    width: 45%;
    margin: 15px 5px;
  }
}
/* スクロール抑止 */
body.noscroll {
  overflow: hidden;
  scrollbar-width: none;
}

body.noscroll::-webkit-scrollbar {
  display: none;
}

/* 動きを減らす配慮 */
@media (prefers-reduced-motion: reduce) {
  .fullscreen-nav {
    transition: none;
  }
  .hamburger span {
    transition: none;
  }
}
/* 全画面ナビ内のリンク：フォーカス枠を常に消す */
.fullscreen-nav a,
.fullscreen-nav a:focus,
.fullscreen-nav a:focus-visible {
  outline: none;
}

.fullscreen-nav a {
  -webkit-tap-highlight-color: transparent;
}

/* ============================================================
// footer（フッター共通）
============================================================ */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  padding: 15px;
}
.footer-nav li a {
  font-size: 16px;
  color: #cccccc;
  padding: 5px;
  transition: 0.3s;
}
.footer-nav li a:hover {
  color: #753587;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    display: none;
  }
}

.footer-content {
  padding: 60px 0;
  background: #f5f5f5;
}
.footer-content .company-info .logo {
  margin: 0 60px 30px 0;
}
.footer-content .company-info .store-address {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-size: 16px;
  line-height: 1.4;
  text-indent: -7px;
  margin-top: 15px;
}
.footer-content .company-info .store-address a {
  display: block;
  margin-left: 7px;
  transition: 0.3s;
}
.footer-content .company-info .store-address a i {
  margin-right: 5px;
}
.footer-content .contact-numbers {
  text-align: right;
}
.footer-content .contact-numbers .tel,
.footer-content .contact-numbers .fax {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}
.footer-content .contact-numbers .tel .prefix,
.footer-content .contact-numbers .fax .prefix {
  font-size: 18px;
}
.footer-content .contact-numbers .tel {
  margin-bottom: 10px;
}
.footer-content .link-btn {
  text-align: right;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .footer-content .contact-numbers {
    text-align: center;
    margin: 60px 0 0;
  }
  .footer-content .contact-numbers .tel,
  .footer-content .contact-numbers .fax {
    font-size: 30px;
  }
  .footer-content .contact-numbers .tel .prefix,
  .footer-content .contact-numbers .fax .prefix {
    font-size: 14px;
  }
  .footer-content .link-btn {
    margin-top: 20px;
  }
}

.copyright {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  background: #8f559f;
}

/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@media print {
  a {
    text-decoration: none !important;
  }
  table,
  p {
    page-break-inside: avoid !important;
  }
  .header-wrap {
    position: static !important;
  }
  nav,
  .hamburger,
  .header-space,
  .pagetop {
    display: none !important;
  }
}
/* ------------------------------------------------------------
// body
------------------------------------------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.03em;
  background-color: #ffffff;
}

/* ------------------------------------------------------------
// spacer
------------------------------------------------------------ */
.spacer {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .spacer {
    height: 60px;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 575px) {
  .sp-only {
    display: inline;
  }
}

/* ------------------------------------------------------------
// Font
------------------------------------------------------------ */
.anton {
  font-family: "Anton", sans-serif;
}

.txt-red {
  color: #d62828;
}

.txt-blue {
  color: #499edf;
}

.txt-area p:not(:last-child) {
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
// link
------------------------------------------------------------ */
a,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a img,
a:hover img,
a:visited img,
a:active img {
  transition: opacity 0.3s;
}

a:hover img {
  opacity: 0.8;
}

.link-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #ffffff;
  width: 210px;
  height: 48px;
  background: #8f559f;
  border-radius: 24px;
  transition: 0.3s;
}
.link-btn a i {
  padding-top: 1px;
}
.link-btn a:hover {
  background: #753587;
}
@media screen and (max-width: 575px) {
  .link-btn a {
    height: 40px;
    border-radius: 20px;
  }
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-base {
  width: 100%;
}
.table-base tr {
  display: grid;
  grid-template-columns: 260px auto;
}
.table-base tr th,
.table-base tr td {
  font-size: 16px;
  text-align: left;
  vertical-align: top;
  padding: 1.5em;
  border-top: 2px solid #ffffff;
}
.table-base tr th {
  font-weight: 600;
  color: #111111;
  background: #f5f5f5;
}
.table-base tr:first-child th, .table-base tr:first-child td {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .table-base tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .table-base tr th,
  .table-base tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .table-base tr th {
    padding: 0.6em 1em;
  }
  .table-base tr td {
    padding: 1em 1em 1.5em;
  }
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-wrap {
  margin: 160px 0;
}
.content-wrap .content-box {
  margin: 0 15px;
}
.content-wrap .content-box:not(:last-child) {
  margin-bottom: 120px;
}
@media print, screen and (max-width: 767px) {
  .content-wrap {
    margin: 120px 0;
  }
}
@media screen and (max-width: 575px) {
  .content-wrap {
    margin: 60px 0;
  }
  .content-wrap .content-box {
    margin: 0 10px;
  }
  .content-wrap .content-box:not(:last-child) {
    margin-bottom: 60px;
  }
}

.page-ttl-img {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 3px;
}
.page-ttl-img .page-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}
.page-ttl-img .page-ttl h2 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 400;
  color: #111111;
  letter-spacing: 0.2em;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  padding: 0;
}
@media print, screen and (max-width: 767px) {
  .page-ttl-img {
    width: 100%;
    height: 160px;
  }
  .page-ttl-img .page-ttl {
    width: 140px;
    height: 140px;
  }
  .page-ttl-img .page-ttl h2 {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}

.content-subttl {
  margin: 0 -15px 30px -15px;
}
.content-subttl .jp {
  font-size: 50px;
  font-weight: 900;
  color: #8f559f;
  line-height: 1.2;
}
.content-subttl .en {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #999999;
  margin-top: 10px;
}
.content-subttl .en::before, .content-subttl .en::after {
  content: "";
  height: 1px;
  background: #8f559f;
}
.content-subttl .en::before {
  width: 30px;
  margin-right: 15px;
}
.content-subttl .en::after {
  flex: 1;
  margin-left: 15px;
}
@media print, screen and (max-width: 575px) {
  .content-subttl {
    margin: 0 -10px 30px -10px;
  }
  .content-subttl .jp {
    font-size: 28px;
  }
  .content-subttl .en {
    font-size: 14px;
    margin-top: 5px;
  }
  .content-subttl .en::before {
    width: 20px;
    margin-right: 5px;
  }
  .content-subttl .en::after {
    margin-left: 5px;
  }
}