@charset "UTF-8";
:root {
  /* Text Color */
  --text-primary: #9F0202;
  --text-secondary: #FFFFFF;
  --text-tertiary: #333;
  --text-success: #00FF00;
  --text-danger: #FF0000;
  /* Background Color */
  --background-primary: #FFFFFF;
  --background-primary80: rgba(255, 255, 255, 0.8);
  --background-primary64: rgba(255, 255, 255, 0.64);
  --background-secondary: #9F0202;
  --background-secondary40: rgba(51, 51, 51, 0.4);
  --background-tertiary: #F7F7F7;
  --background-quaternary: #E5E8DE;
  --background-success: #ECFDF3;
  --background-danger: #FEF3F2;
  /* Border Color */
  --border-primary: #DDDDDD;
  --border-secondary: #333333;
  --border-tertiary: #605E5C;
  --border-quaternary: #AAAAAA;
  --border-success: #00FF00;
  --border-danger: #FF0000;
  /* Shadow Color */
  --shadow-primary: rgba(51, 51, 51, 0.16);
  /* Gradation Color */
  --gradation-primary: #474747;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Element ------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
* {
  font-size: 14px;
  letter-spacing: 0.7px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-tertiary);
  box-sizing: border-box;
  text-transform: none !important;
  list-style: none;
}

html {
  scroll-behavior: smooth;
  font-family: "Hina Mincho", serif !important;
}

body {
  font-family: "Hina Mincho", serif !important;
}

h1,
h2,
h3{
  font-family: "Hina Mincho", serif !important;
}

ul {
  padding-left: 0;
}

dt {
  font-weight: normal;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

video {
  width: 100%;
}

img,
video {
  vertical-align: bottom;
}

a,
a:hover {
  text-decoration: none;
}

hr {
  border-color: var(--border-quaternary);
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Component ----------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* ------------------------------------- */
/* Customize --------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */
/* Iframe ------------------------------ */
/* ------------------------------------- */
.l-iframe__wrap {
  padding-top: 66.67%;
  width: 100%;
  position: relative;
}
.l-iframe__wrap > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* ------------------------------------- */
/* Title ------------------------------- */
/* ------------------------------------- */
/* Page Title */
.c-pageTitle__small {
  margin: 0;
  font-size: 16px;
}
.c-pageTitle__large {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
}

@media screen and (min-width: 640px) {
  .c-pageTitle__small {
    font-size: 18px;
  }
  .c-pageTitle__large {
    font-size: 48px;
  }
}
/* Section Title */
.c-title {
  font-size: 22px;
}

@media screen and (min-width: 640px) {
  .c-title {
    font-size: 32px;
  }
}
/* Small Title */
.c-title--small {
  font-size: 18px;
  letter-spacing: 0.9px;
  font-weight: 400;
  line-height: 1.3;
}
.c-title--small span, .c-title--small a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 640px) {
  .c-title--small {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .c-title--small__japanese {
    font-size: 14px;
  }
}
/* Xsmall Title */
.c-title--xsmall {
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 400;
  line-height: 1.5;
}

/* ------------------------------------- */
/* Copy -------------------------------- */
/* ------------------------------------- */
.c-copy {
  font-size: 16px;
}

@media screen and (min-width: 640px) {
  .c-copy {
    font-size: 20px;
  }
}
/* ------------------------------------- */
/* Text -------------------------------- */
/* ------------------------------------- */
/* Section Description */
.c-description {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 400;
  color: var(--text-primary);
}

@media screen and (min-width: 640px) {
  .c-description {
    margin-top: 24px;
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}
/* ------------------------------------- */
/* Button ------------------------------ */
/* ------------------------------------- */
/* Default Button */
.c-button > * {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 24px;
  font-size: 14px;
  line-height: 40px;
  transition: 0.2s ease-in-out;
  color: var(--text-secondary);
  background: var(--background-secondary);
  font-weight: 400;
}
.c-button > *:before, .c-button > *:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 16px);
  width: 1px;
  background: var(--text-secondary);
}
.c-button > *:before {
  left: 8px;
}
.c-button > *:after {
  right: 8px;
}
.c-button > *:hover {
  opacity: 0.72;
  color: var(--text-secondary);
  cursor: pointer;
}

@media screen and (min-width: 640px) {
  .c-button > * {
    padding: 0 40px;
    font-size: 16px;
  }
}
/* Primary Button */
.c-button--primary > * {
  line-height: 40px;
  border: none;
  box-shadow: 0 1px 4px var(--shadow-primary);
  color: var(--text-secondary);
  background: linear-gradient(var(--gradation-primary), var(--background-secondary));
}

/* Small Button */
.c-button--small > * {
  position: relative;
  transition: 0.3s ease-in-out;
  padding-bottom: 2px;
  font-weight: 400;
  line-height: 1.5;
  transition: 0.2s ease-in-out;
  color: var(--text-tertiary);
}
.c-button--small > *:hover {
  opacity: 0.6;
}
.c-button--small > *:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid var(--text-tertiary);
}
.c-button--small.ico-zoomIn--gray > * {
  position: relative;
  padding-right: 22px;
}
.c-button--small.ico-zoomIn--gray > *:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/ico-zoomIn-gray.png);
  background-size: cover;
}
.c-button--small.ico-link--gray > * {
  position: relative;
  padding-right: 22px;
}
.c-button--small.ico-link--gray > *:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/ico-link-gray.png);
  background-size: cover;
}

/* Fixed Button Rotete */
.c-fixedButton {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.c-fixedButton > * {
  position: relative;
  width: 100%;
  padding: 0 12px;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 48px;
  border-radius: 0;
}
.c-fixedButton > *:before, .c-fixedButton > *:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.c-fixedButton > *:before {
  left: 15px;
  background: url(../images/ico-reservation-white.png);
  background-size: cover;
}
.c-fixedButton > *:after {
  right: 15px;
  background: url(../images/ico-arrow01-right-white.png);
  background-size: cover;
}

@media screen and (min-width: 640px) {
  .c-fixedButton {
    width: auto;
  }
  .c-fixedButton > * {
    padding: 0 64px;
    font-size: 18px;
    letter-spacing: 0.9px;
    line-height: 60px;
    border-radius: 12px 0 0 0;
  }
  .c-fixedButton > *:before {
    left: 34px;
  }
  .c-fixedButton > *:after {
    right: 34px;
  }
}
/* ------------------------------------- */
/* Icon -------------------------------- */
/* ------------------------------------- */
.u-iconSize--16 img {
  width: 16px;
}

.u-iconSize--20 img {
  width: 20px;
}

.u-iconSize--24 img {
  width: 24px;
}

/* ------------------------------------- */
/* Aspect Ratio ------------------------ */
/* ------------------------------------- */
.u-aspectRatio img {
  height: 100%;
}
.u-aspectRatio--3-4 {
  aspect-ratio: 3/4;
}
.u-aspectRatio--3-2 {
  aspect-ratio: 3/4;
}

/* ------------------------------------- */
/* label ------------------------------- */
/* ------------------------------------- */
.c-labels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.c-label a {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  border: 1px solid var(--border-tertiary);
  color: var(--text-tertiary);
}

/* ------------------------------------- */
/* Card -------------------------------- */
/* ------------------------------------- */
.c-card {
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16) !important;
  background: rgba(255, 255, 255, 0.56) !important;
}

@media screen and (min-width: 640px) {
  padding: 16px;
}

/* ------------------------------------- */
/* Table ------------------------------- */
/* ------------------------------------- */
.c-table__item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid var(--border-tertiary);
}
.c-table__item:last-child {
  border-bottom: 1px solid var(--border-tertiary);
}
.c-table__title {
  width: 100px;
  margin-right: 16px;
}
.c-table__text {
  width: calc(100% - 116px);
}

@media screen and (min-width: 640px) {
  .c-table__title {
    width: 160px;
    margin-right: 24px;
  }
  .c-table__text {
    width: calc(100% - 184px);
  }
}
/* ------------------------------------- */
/* Hover Link -------------------------- */
/* ------------------------------------- */
.c-hoverLink {
  transition: 0.2s ease-in-out;
}
.c-hoverLink:hover {
  opacity: 0.6;
}

/* ------------------------------------- */
/* check ------------------------------- */
/* ------------------------------------- */
.c-check {
  position: relative;
  padding-left: 30px;
}
.c-check:before {
  position: absolute;
  content: "";
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../images/ico-check-black.png);
  background-size: cover;
}

/* ------------------------------------- */
/* Number ------------------------------ */
/* ------------------------------------- */
.c-number {
  font-size: 16px;
  font-weight: 400;
}
.c-number__large {
  font-size: 32px;
}

/* ------------------------------------- */
/* Under Page -------------------------- */
/* ------------------------------------- */
.l-underPage {
  background: var(--background-quaternary);
}

/* ------------------------------------- */
/* Section ----------------------------- */
/* ------------------------------------- */
.l-section--large {
  padding-top: 80px;
  padding-bottom: 80px;
}

.l-section--large--top {
  padding-top: 80px;
}

.l-section--large--bottom {
  padding-bottom: 80px;
}

.l-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.l-section--top {
  padding-top: 64px;
}

.l-section--bottom {
  padding-bottom: 64px;
}

.l-section--small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.l-section--small--top {
  padding-top: 40px;
}

.l-section--small--bottom {
  padding-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .l-section--large {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .l-section--large--top {
    padding-top: 120px;
  }
  .l-section--large--bottom {
    padding-bottom: 120px;
  }
  .l-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-section--top {
    padding-top: 80px;
  }
  .l-section--bottom {
    padding-bottom: 80px;
  }
  .l-section--small--top--pc {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* ------------------------------------- */
/* Container --------------------------- */
/* ------------------------------------- */
.l-container {
  display: grid;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.l-container--xlarge {
  max-width: 1680px;
  padding-left: 0;
  padding-right: 0;
}
.l-container--small {
  max-width: 960px;
}
.l-container--xsmall {
  max-width: 640px;
}
.l-container--flex {
  display: grid;
  gap: 40px;
}

@media screen and (min-width: 640px) {
  .l-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .l-container--xlarge {
    padding-left: 0;
    padding-right: 0;
  }
  .l-container--flex {
    display: flex;
    gap: 64px;
  }
}
@media screen and (min-width: 1600px) {
  .l-container--xlarge {
    max-width: 1200px;
  }
}
/* ------------------------------------- */
/* Width ------------------------------- */
/* ------------------------------------- */
.u-width--100 {
  width: 100%;
}

/* ------------------------------------- */
/* Padding ----------------------------- */
/* ------------------------------------- */
.u-bottomPadding--24 {
  padding-bottom: 24px !important;
}

.u-padding--0 {
  padding: 0;
}

/* ------------------------------------- */
/* Margin ------------------------------ */
/* ------------------------------------- */
.l-fixedMargin {
  margin-top: 63px;
}

@media screen and (min-width: 960px) {
  .l-fixedMargin {
    margin-top: 69px;
  }
}
.u-margin--0 {
  margin: 0;
}

.u-margin--top0 {
  margin-top: 0 !important;
}

.u-margin--bottom0 {
  margin-bottom: 0 !important;
}
.u-margin--bottom6 {
  margin-bottom: 6px !important;
}
.u-margin--bottom12 {
  margin-bottom: 12px !important;
}

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

/* ------------------------------------- */
/* Background -------------------------- */
/* ------------------------------------- */
.u-background--primary {
  background: var(--background-quaternary);
}

/* ------------------------------------- */
/* Text -------------------------------- */
/* ------------------------------------- */
.u-texts *:not(:last-child) {
  margin-bottom: 24px;
}

.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--left {
  text-align: left;
}
.u-text--center {
  text-align: center;
}
.u-text--right {
  text-align: right;
}
.u-text--link {
  text-decoration: underline;
}

@media screen and (min-width: 640px) {
  .u-text--right--mobile {
    text-align: right;
  }
}
@media screen and (min-width: 960px) {
  .u-text--center--desktop {
    text-align: center;
  }
}
/* ------------------------------------- */
/* Omission ---------------------------- */
/* ------------------------------------- */
.u-omission {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.u-omission--1 {
  -webkit-line-clamp: 1;
}
.u-omission--2 {
  -webkit-line-clamp: 2;
}
.u-omission--3 {
  -webkit-line-clamp: 3;
}

/* ------------------------------------- */
/* Flex -------------------------------- */
/* ------------------------------------- */
.u-flex {
  display: flex;
}
.u-flex--fl-gr-gr {
  display: grid;
}
.u-flex--fl-fl-gr {
  display: grid;
}
.u-flex--baseline {
  align-items: baseline;
}
.u-flex--center {
  align-items: center;
}
.u-flex--middle {
  justify-content: center;
}
.u-flex--between {
  justify-content: space-between;
}
.u-flex--wrap {
  flex-wrap: wrap;
}

@media screen and (min-width: 640px) {
  .u-flex--fl-fl-gr {
    display: flex;
  }
}
@media screen and (min-width: 960px) {
  .u-flex--fl-gr-gr {
    display: flex;
  }
  .u-flex--fl-fl-gr {
    display: flex;
  }
}
/* ------------------------------------- */
/* Grid -------------------------------- */
/* ------------------------------------- */
/* Display Flex */
.l-flexGrid--4-2-2__list {
  display: flex;
  flex-wrap: wrap;
  margin: -24px 0 0 -24px;
}
.l-flexGrid--4-2-2__item {
  width: calc(50% - 24px);
  margin: 24px 0 0 24px !important;
}
.l-flexGrid--3-2-2__list {
  display: flex;
  flex-wrap: wrap;
  margin: -24px 0 0 -24px;
}
.l-flexGrid--3-2-2__item {
  width: calc(50% - 24px);
  margin: 24px 0 0 24px;
}
.l-flexGrid--3-2-1__list {
  display: flex;
  flex-wrap: wrap;
  margin: -24px 0 0 -24px;
}
.l-flexGrid--3-2-1__item {
  width: 100%;
  margin: 24px 0 0 24px;
}

@media screen and (min-width: 640px) {
  .l-flexGrid--3-2-1__item {
    width: calc(50% - 24px);
  }
}
@media screen and (min-width: 960px) {
  .l-flexGrid--4-2-2__item {
    width: calc(25% - 24px);
  }
  .l-flexGrid--3-2-2__item {
    width: calc(33.3333333333% - 24px);
  }
  .l-flexGrid--3-2-1__item {
    width: calc(33.3333333333% - 24px);
  }
}
/* Display Grid */
.u-grid {
  display: grid;
  align-self: baseline;
}
.u-grid--center {
  align-self: center;
}
.u-gridColumns--2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-gridColumns--2-2-1 {
  grid-template-columns: repeat(1, 1fr);
}
.u-gridColumns--2-1-1 {
  grid-template-columns: repeat(1, 1fr);
}
.u-gridColumns--3 {
  grid-template-columns: repeat(3, 1fr);
}
.u-gridColumns--3-2-1 {
  grid-template-columns: repeat(1, 1fr);
}
.u-gridColumns--3-2-2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-gridColumns--4-3-2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-gridColumns--4-2-1 {
  grid-template-columns: repeat(1, 1fr);
}
.u-gridColumns--5-3-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 640px) {
  .u-gridColumns--2-1-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .u-gridColumns--3-2-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-gridColumns--3-2-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-gridColumns--4-3-2 {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-gridColumns--4-2-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-gridColumns--5-3-2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .u-gridColumns--2-2-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-gridColumns--2-1-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-gridColumns--3-2-1 {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-gridColumns--3-2-2 {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-gridColumns--4-3-2 {
    grid-template-columns: repeat(4, 1fr);
  }
  .u-gridColumns--4-2-1 {
    grid-template-columns: repeat(4, 1fr);
  }
  .u-gridColumns--5-3-2 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.u-gap--4 {
  gap: 4px;
}
.u-gap--8 {
  gap: 8px;
}
.u-gap--12 {
  gap: 12px;
}
.u-gap--16 {
  gap: 16px;
}
.u-gap--24 {
  gap: 24px;
}
.u-gap--32 {
  gap: 32px;
}
.u-gap--48 {
  gap: 48px;
}
.u-gap--64 {
  gap: 64px;
}
.u-gap--32-32-24 {
  gap: 24px;
}
.u-gap--24-24-12 {
  gap: 12px;
}
.u-gap--40 {
  gap: 40px;
}
.u-gap--48-48-32 {
  gap: 32px;
}
.u-gap--64-32-32 {
  gap: 32px;
}

@media screen and (min-width: 960px) {
  .u-gap--24-24-12 {
    gap: 24px;
  }
  .u-gap--32-32-24 {
    gap: 32px;
  }
  .u-gap--48-48-32 {
    gap: 48px;
  }
  .u-gap--64-32-32 {
    gap: 64px;
  }
}
/* ------------------------------------- */
/* Order ------------------------------- */
/* ------------------------------------- */
.u-order2-1--pcTablet {
  order: 1;
}

.u-order2-2--pcTablet {
  order: 2;
}

.u-order2-1--tabletMobile {
  order: 1;
}

.u-order2-2--tabletMobile {
  order: 2;
}

@media screen and (min-width: 960px) {
  .u-order2-1--pcTablet {
    order: 2;
  }
  .u-order2-2--pcTablet {
    order: 1;
  }
  .u-order2-1--tabletMobile {
    order: 2;
  }
  .u-order2-2--tabletMobile {
    order: 1;
  }
}
/* ------------------------------------- */
/* Display ----------------------------- */
/* ------------------------------------- */
.u-display--mobile {
  display: block !important;
}

.u-display--tablet {
  display: block !important;
}

@media screen and (min-width: 640px) {
  .u-display--mobile {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .u-display--tablet {
    display: none !important;
  }
}
/* ------------------------------------- */
/* Hidden ------------------------------ */
/* ------------------------------------- */
.u-hidden--mobile {
  display: none !important;
}

.u-hidden--tablet {
  display: none !important;
}

@media screen and (min-width: 640px) {
  .u-hidden--mobile {
    display: block !important;
  }
}
@media screen and (min-width: 960px) {
  .u-hidden--tablet {
    display: block !important;
  }
}
/* ------------------------------------- */
/* Phone Number ------------------------ */
/* ------------------------------------- */
.u-phoneNumber > a {
  text-decoration: underline;
}

@media screen and (min-width: 640px) {
  .u-phoneNumber > a {
    text-decoration: none;
  }
}
/* ------------------------------------- */
/* BreadCrumb -------------------------- */
/* ------------------------------------- */
.c-breadCrumb:not(:first-child) {
  position: relative;
}
.c-breadCrumb:not(:first-child):before {
  position: absolute;
  content: "";
  top: 50%;
  left: -28px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url(../images/ico-arrow01-right-gray.png);
  background-size: cover;
}

/* ------------------------------------- */
/* Header ------------------------------ */
/* ------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  background: var(--background-primary64);
}

.l-header__logo {
  padding-top: 16px;
  padding-bottom: 16px;
}
.l-header__logo img {
  width: 120px;
}

.l-header__links {
  display: none;
}

.l-header__navi {
  display: flex;
}

.l-header__list {
  display: flex;
}

.l-header__item {
  position: relative;
}

.l-header__item:last-child {
  margin-right: 16px;
}

.l-header__item a {
  display: inline-block;
  padding: 0 16px;
  line-height: 60px;
  transition: 0.2s ease-in-out;
  color: var(--color-text-dark);
  cursor: pointer;
  font-weight: 700;
}

.l-header__item a:hover {
  opacity: 0.6;
}

.l-header__item span {
  font-size: 30px;
  transform: translate(-4px, 8px);
}

.l-header__buttons {
  display: flex;
  flex-direction: row-reverse;
}

.l-header__button a {
  display: inline-block;
  padding: 0 20px;
  line-height: 60px;
  transition: 0.2s ease-in-out;
  color: var(--color-text-light);
  background: var(--color-secondary);
  font-weight: 700;
}

.l-header__button:first-child a {
  background: var(--color-primary);
}

.l-header__button:first-child a:hover {
  opacity: 0.8;
}

.l-header__button span {
  transform: translateY(5px);
  color: var(--color-text-light);
}

.l-hamburger-open {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  right: 6px;
  width: 40px;
  height: 40px;
  z-index: 3;
  border: none;
  transform: translateY(-50%);
  background: none;
}
.l-hamburger-open span {
  width: 32px;
  height: 2px;
  background: var(--background-secondary);
}
.l-hamburger-open span:nth-child(1) {
  position: absolute;
  top: 9px;
}
.l-hamburger-open span:nth-child(2) {
  position: absolute;
  top: 19px;
}
.l-hamburger-open span:nth-child(3) {
  position: absolute;
  top: 29px;
}
.l-hamburger-open.is-active span {
  background: var(--background-secondary);
}
.l-hamburger-open.is-active span:nth-child(3) {
  top: 32px;
}

.l-hamburger__overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: rgba(0, 0, 0, 0.5);
}

.l-hamburger__overlay.l-hamburger-show {
  opacity: 1;
}

.l-hamburger__navi {
  overflow-y: auto;
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  width: 100vw;
  height: calc(100% - 64px);
  padding: 48px 24px 40px 40px;
  z-index: 2;
  transform: translateX(100vw);
  transition: transform 0.5s ease;
  background: var(--background-primary);
  overflow-y: scroll;
}

.l-hamburger__item a {
  display: inline-block;
  padding: 8px 4px;
}

.l-hamburger__list {
  width: 100%;
}

.l-hamburger__mainLink {
  padding-left: 0;
}

.l-hamburger__mainLink a {
  font-size: 16px;
  font-weight: 400;
}

.l-hamburger__utilityLink {
  margin-bottom: 24px;
}

.l-hamburger__utilityLink a {
  font-size: 12px;
}

.l-hamburger__item {
  width: 100%;
  height: auto;
}

.l-hamburger__mainLink .l-hamburger__item > a {
  position: relative;
  display: inline-block;
  padding: 10px 16px 10px 0;
  color: var(--text-primary);
}

.l-hamburger__mainLink .l-hamburger__item > a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--color-background-white);
}

.l-hamburger__utilityLink a {
  color: var(--color-text-light);
}

.l-hamburger__navi.js-hamburger-active {
  transform: translateX(0);
}

.l-hamburger__overlay.js-hamburger-active {
  opacity: 1;
}

/* .l-underHeader {
  padding-top: 70px;
} */

@media screen and (min-width: 640px) {
  .l-header__logo img {
    width: 160px;
  }
  .l-hamburger__navi {
    width: 50vw;
	height: 100%;
  }
  .l-hamburger-open {
    right: 40px;
  }
  .l-hamburger-open span {
    width: 40px;
    height: 3px;
  }
  .l-hamburger-open span:nth-child(1) {
    top: 7px;
  }
  .l-hamburger-open span:nth-child(2) {
    top: 19px;
  }
  .l-hamburger-open span:nth-child(3) {
    top: 31px;
  }
  .l-hamburger-open.is-active span:nth-child(3) {
    top: 31px;
  }
/*   .l-underHeader {
    padding-top: 82px;
  } */
}
@media screen and (min-width: 960px) {
  .l-hamburger__navi {
    width: 32vw;
	  
  }
}
/* ------------------------------------- */
/* Main Visual ------------------------- */
/* ------------------------------------- */
.l-underMv__image {
  position: relative;
  width: 100%;
  max-height: 100vh;
  aspect-ratio: 3/4;
}
.l-underMv__image img {
  height: 100%;
  max-height: 100vh;
  filter: brightness(72%);
  object-position: top;
}
.l-underMv__image .c-pageTitle__small {
  color: var(--text-secondary);
}
.l-underMv__image .c-pageTitle__large {
  color: var(--text-secondary);
  overflow-wrap: anywhere;
}
.l-underMv__title--mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  transform: translate(-50%, -50%);
  padding-right: 15px;
  padding-left: 15px;
}
.l-underMv__title--desktop {
  display: none;
}
.l-underMv__information {
  margin-right: 0;
}
.l-underMv__text {
  padding: 0 15px;
}

@media screen and (min-width: 640px) {
  .l-underMv__text {
    padding: 0 40px;
  }
}
@media screen and (min-width: 960px) {
  .l-underMv__image img {
    filter: none;
  }
  .l-underMv__title--mobile {
    display: none;
  }
  .l-underMv__title--desktop {
    display: block;
  }
  .l-underMv__information {
    margin-right: 64px;
  }
  .l-underMv__text {
    padding: 0;
  }
}
@media screen and (min-width: 1600px) {
  .l-underMv__information {
    margin-right: 0;
  }
}
/* ------------------------------------- */
/* Footer ------------------------------ */
/* ------------------------------------- */
.l-footer {
  width: 100%;
  background: var(--background-primary);
}
.l-footer__logo img {
  width: 180px;
}
.l-footer__item a {
  color: var(--text-primary);
}

.l-footer__copyright {
  margin-bottom: 40px;
}

@media screen and (min-width: 640px) {
  .l-footer__copyright {
    margin-bottom: 0;
  }
}

/* ------------------------------------- */
/* Footer Fixed ------------------------ */
/* ------------------------------------- */
.l-fixedFooter {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: none;
	background: var(--background-primary);
	z-index: 1000;
}

.l-fixedFooter__button {
	flex: 1;
	padding: 8px 8px 6px;
	text-align: center;
	text-decoration: none;
	background: var(--background-secondary);
	border-right: 1px solid var(--background-primary);
	font-size: 12px;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
/* 	min-height: 70px; */
}
.l-fixedFooter__button span {
	color: var(--text-secondary);
}
.l-fixedFooter__button:last-child {
	border-right: none;
}

.l-fixedFooter__icon {
	width: 24px;
	height: 24px;
	margin-bottom: 2px;
	display: block;
}

@media (max-width: 768px) {
	.l-fixedFooter {
		display: flex;
	}
}

/* ------------------------------------- */
/* SNS --------------------------------- */
/* ------------------------------------- */
.l-sns__item img {
  width: 40px;
}
.l-sns__item:last-child a {
  display: inline-block;
  transform: translate(2px, 6px);
}

@media screen and (min-width: 640px) {
  .l-sns__item img {
    width: 32px;
  }
  .l-sns__item:last-child a {
    transform: translate(1px, 2px);
  }
}
/* ------------------------------------- */
/* Grid -------------------------------- */
/* ------------------------------------- */
.l-grid__list {
  display: flex;
  margin: -24px 0 0 -24px;
}

/* ------------------------------------- */
/* List1 ------------------------------- */
/* ------------------------------------- */
.p-list1 {
  background: linear-gradient(to right, var(--color-background-light), var(--color-tertiary));
}
.p-list1__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
.p-list1__image {
  margin-bottom: 12px;
}
.p-list1__information {
  display: grid;
  gap: 4px;
}

@media screen and (min-width: 640px) {
  .p-list1__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-list1__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
/* ------------------------------------- */
/* FadeIn ------------------------------ */
/* ------------------------------------- */
.js-fadeIn {
  opacity: 0;
}

.js-fadeIn-active {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------------- */
/* Modal ------------------------------- */
/* ------------------------------------- */
.p-modal {
  position: fixed;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 3;
  background-color: var(--background-secondary40);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-modal__contener {
  position: relative;
  display: flex;
  gap: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 1160px;
  max-height: calc(100vh - 80px);
  padding: 24px 15px;
  background: var(--background-primary);
  box-sizing: border-box;
}
.p-modal__content {
  display: grid;
  gap: 16px;
  flex-grow: 1;
  overflow-y: auto;
}
.p-modal__close {
  position: absolute;
  top: 32px;
  right: 24px;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-tertiary);
}
.p-modal__close:hover {
  cursor: pointer;
}
.p-modal__close:before {
  position: absolute;
  content: "";
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../images/ico-close-gray.png);
  background-size: cover;
}
.p-modal .c-title {
  margin-top: 36px;
}

@media screen and (min-width: 640px) {
  .p-modal {
    align-items: center;
    padding: 40px;
  }
  .p-modal__contener {
    gap: 24px;
    padding: 40px;
  }
  .p-modal__content {
    gap: 24px;
  }
  .p-modal__close {
    position: absolute;
    top: 16px;
    right: 24px;
    padding-left: 28px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-tertiary);
  }
  .p-modal__close:hover {
    cursor: pointer;
  }
  .p-modal__close:before {
    position: absolute;
    content: "";
    left: 0;
    width: 24px;
    height: 24px;
    background: url(../images/ico-close-gray.png);
    background-size: cover;
  }
  .p-modal .c-title {
    margin-top: 0;
  }
}
/* ------------------------------------- */
/* Tab --------------------------------- */
/* ------------------------------------- */
.p-tab {
  position: relative;
  display: flex;
  width: auto;
  overflow-x: auto;
  white-space: nowrap;
}
.p-tab:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--border-primary);
}

.p-tab__switch {
  position: relative;
  padding: 0 12px 6px;
  line-height: 1.5;
  font-weight: 400;
  border-bottom: 2px solid var(--border-primary);
  transition: 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}

.p-tab__switch:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.p-tab__switch.active {
  border-bottom: 2px solid var(--border-secondary);
}

@media screen and (min-width: 640px) {
  .p-tab__switch {
    padding: 0 20px 6px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
/* Tab01 */
.p-tab01 {
  width: auto;
}

/* Tab01 アイテムの基本スタイル */
.p-tab01__item {
  display: none; /* 初期状態では非表示 */
  opacity: 0; /* 非表示時の透明度 */
  transition: opacity 0.4s ease-in-out; /* フェードインは0.4秒 */
}

/* アイテムが表示されるときのスタイル */
.p-tab01__item.visible {
  display: block; /* 表示される */
  opacity: 1; /* 完全に表示 */
}

/* Tab02 */
.p-tab02 {
  width: auto;
}

.p-tab02__content .p-tab02__panel {
  display: none;
}

.p-tab02__content .p-tab02__panel.active {
  display: block;
}

/* ------------------------------------- */
/* Media1 ------------------------------ */
/* ------------------------------------- */
.p-media01__head {
  position: relative;
}
.p-media01__title {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84%;
  padding: 24px 24px 16px;
  background: var(--background-primary);
}
.p-media01__body {
  margin-left: 16%;
  padding: 0 24px 24px;
  background: var(--background-primary);
}
/*# sourceMappingURL=common.css.map */