@charset "UTF-8";
.vegas-overlay,
.vegas-content-scrollable,
.vegas-timer,
.vegas-slide,
.vegas-slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
}

.vegas-content-scrollable {
  position: relative;
  height: 100%;
  overflow: auto;
}


.vegas-timer {
  top: auto;
  bottom: 0;
  height: 2px;
}

.vegas-timer-progress {
  width: 0%;
  height: 100%;
  background: white;
  transition: width ease-out;
}

.vegas-timer-running .vegas-timer-progress {
  width: 100%;
}

.vegas-slide,
.vegas-slide-inner {
  margin: 0;
  padding: 0;
  background: transparent center center no-repeat;
  transform: translateZ(0);
  will-change: transform, opacity;
}

body .vegas-container {
  overflow: hidden !important;
  position: relative;
}

.vegas-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

body.vegas-container {
  overflow: auto;
  position: static;
  z-index: -2;
}

body.vegas-container > .vegas-timer,
body.vegas-container > .vegas-overlay,
body.vegas-container > .vegas-slide {
  position: fixed;
  z-index: -1;
}

/* Target Safari IOS7+ in order to add 76px */
/*******************************************/
/* blur transition */
/*******************************************/
.vegas-transition-blur,
.vegas-transition-blur2 {
  opacity: 0;
  -webkit-filter: blur(32px) brightness(1.01);
  filter: blur(32px) brightness(1.01);
}

.vegas-transition-blur-in,
.vegas-transition-blur2-in {
  opacity: 1;
  -webkit-filter: blur(0px) brightness(1.01);
  filter: blur(0px) brightness(1.01);
}

.vegas-transition-blur2-out {
  opacity: 0;
}

/*******************************************/
/* burn transition */
/*******************************************/
.vegas-transition-burn,
.vegas-transition-burn2 {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%);
}

.vegas-transition-burn-in,
.vegas-transition-burn2-in {
  opacity: 1;
  -webkit-filter: contrast(100%) saturate(100%);
  filter: contrast(100%) saturate(100%);
}

.vegas-transition-burn2-out {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%);
}

/*******************************************/
/* fade transition */
/*******************************************/
.vegas-transition-fade,
.vegas-transition-fade2 {
  opacity: 0;
}

.vegas-transition-fade-in,
.vegas-transition-fade2-in {
  opacity: 1;
}

.vegas-transition-fade2-out {
  opacity: 0;
}

/*******************************************/
/* flash transition */
/*******************************************/
.vegas-transition-flash,
.vegas-transition-flash2 {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25);
}

.vegas-transition-flash-in,
.vegas-transition-flash2-in {
  opacity: 1;
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

.vegas-transition-flash2-out {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25);
}

/*******************************************/
/* negative transition */
/*******************************************/
.vegas-transition-negative,
.vegas-transition-negative2 {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.vegas-transition-negative-in,
.vegas-transition-negative2-in {
  opacity: 1;
  -webkit-filter: invert(0);
  filter: invert(0);
}

.vegas-transition-negative2-out {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

/*******************************************/
/* slideDown transition */
/*******************************************/
.vegas-transition-slideDown,
.vegas-transition-slideDown2 {
  transform: translateY(-100%);
}

.vegas-transition-slideDown-in,
.vegas-transition-slideDown2-in {
  transform: translateY(0%);
}

.vegas-transition-slideDown2-out {
  transform: translateY(100%);
}

/*******************************************/
/* slideLeft transition */
/*******************************************/
.vegas-transition-slideLeft,
.vegas-transition-slideLeft2 {
  transform: translateX(100%);
}

.vegas-transition-slideLeft-in,
.vegas-transition-slideLeft2-in {
  transform: translateX(0%);
}

.vegas-transition-slideLeft2-out {
  transform: translateX(-100%);
}

/*******************************************/
/* slideRight transition */
/*******************************************/
.vegas-transition-slideRight,
.vegas-transition-slideRight2 {
  transform: translateX(-100%);
}

.vegas-transition-slideRight-in,
.vegas-transition-slideRight2-in {
  transform: translateX(0%);
}

.vegas-transition-slideRight2-out {
  transform: translateX(100%);
}

/*******************************************/
/* slideUp transition */
/*******************************************/
.vegas-transition-slideUp,
.vegas-transition-slideUp2 {
  transform: translateY(100%);
}

.vegas-transition-slideUp-in,
.vegas-transition-slideUp2-in {
  transform: translateY(0%);
}

.vegas-transition-slideUp2-out {
  transform: translateY(-100%);
}

/*******************************************/
/* swirlLeft transition */
/*******************************************/
.vegas-transition-swirlLeft,
.vegas-transition-swirlLeft2 {
  transform: scale(2) rotate(35deg);
  opacity: 0;
}

.vegas-transition-swirlLeft-in,
.vegas-transition-swirlLeft2-in {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.vegas-transition-swirlLeft2-out {
  transform: scale(2) rotate(-35deg);
  opacity: 0;
}

/*******************************************/
/* swirlRight transition */
/*******************************************/
.vegas-transition-swirlRight,
.vegas-transition-swirlRight2 {
  transform: scale(2) rotate(-35deg);
  opacity: 0;
}

.vegas-transition-swirlRight-in,
.vegas-transition-swirlRight2-in {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.vegas-transition-swirlRight2-out {
  transform: scale(2) rotate(35deg);
  opacity: 0;
}

/*******************************************/
/* zoomIn transition */
/*******************************************/
.vegas-transition-zoomIn,
.vegas-transition-zoomIn2 {
  transform: scale(0);
  opacity: 0;
}

.vegas-transition-zoomIn-in,
.vegas-transition-zoomIn2-in {
  transform: scale(1);
  opacity: 1;
}

.vegas-transition-zoomIn2-out {
  transform: scale(2);
  opacity: 0;
}

/*******************************************/
/* zoomOut transition */
/*******************************************/
.vegas-transition-zoomOut,
.vegas-transition-zoomOut2 {
  transform: scale(2);
  opacity: 0;
}

.vegas-transition-zoomOut-in,
.vegas-transition-zoomOut2-in {
  transform: scale(1);
  opacity: 1;
}

.vegas-transition-zoomOut2-out {
  transform: scale(0);
  opacity: 0;
}

/*******************************************/
/* kenburns animation */
/*******************************************/
.vegas-animation-kenburns {
  -webkit-animation: kenburns ease-out;
  animation: kenburns ease-out;
}

@-webkit-keyframes kenburns {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes kenburns {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
/*******************************************/
/* kenburnsDownLeft animation */
/*******************************************/
.vegas-animation-kenburnsDownLeft {
  -webkit-animation: kenburnsDownLeft ease-out;
  animation: kenburnsDownLeft ease-out;
}

@-webkit-keyframes kenburnsDownLeft {
  0% {
    transform: scale(1.5) translate(10%, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsDownLeft {
  0% {
    transform: scale(1.5) translate(10%, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*******************************************/
/* kenburnsDownRight animation */
/*******************************************/
.vegas-animation-kenburnsDownRight {
  -webkit-animation: kenburnsDownRight ease-out;
  animation: kenburnsDownRight ease-out;
}

@-webkit-keyframes kenburnsDownRight {
  0% {
    transform: scale(1.5) translate(-10%, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsDownRight {
  0% {
    transform: scale(1.5) translate(-10%, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*******************************************/
/* kenburnsDown animation */
/*******************************************/
.vegas-animation-kenburnsDown {
  -webkit-animation: kenburnsDown ease-out;
  animation: kenburnsDown ease-out;
}

@-webkit-keyframes kenburnsDown {
  0% {
    transform: scale(1.5) translate(0, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsDown {
  0% {
    transform: scale(1.5) translate(0, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*******************************************/
/* kenburnsLeft animation */
/*******************************************/
.vegas-animation-kenburnsLeft {
  -webkit-animation: kenburnsLeft ease-out;
  animation: kenburnsLeft ease-out;
}

@-webkit-keyframes kenburnsLeft {
  0% {
    transform: scale(1.5) translate(10%, 0);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsLeft {
  0% {
    transform: scale(1.5) translate(10%, 0);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*******************************************/
/* kenburnsRight animation */
/*******************************************/
.vegas-animation-kenburnsRight {
  -webkit-animation: kenburnsRight ease-out;
  animation: kenburnsRight ease-out;
}

@-webkit-keyframes kenburnsRight {
  0% {
    transform: scale(1.5) translate(-10%, 0);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsRight {
  0% {
    transform: scale(1.5) translate(-10%, 0);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*******************************************/
/* kenburnsUpLeft animation */
/*******************************************/
.vegas-animation-kenburnsUpLeft {
  -webkit-animation: kenburnsUpLeft ease-out;
  animation: kenburnsUpLeft ease-out;
}

@-webkit-keyframes kenburnsUpLeft {
  0% {
    transform: scale(1.5) translate(10%, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsUpLeft {
  0% {
    transform: scale(1.5) translate(10%, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*******************************************/
/* kenburnsUpRight animation */
/*******************************************/
.vegas-animation-kenburnsUpRight {
  -webkit-animation: kenburnsUpRight ease-out;
  animation: kenburnsUpRight ease-out;
}

@-webkit-keyframes kenburnsUpRight {
  0% {
    transform: scale(1.5) translate(-10%, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsUpRight {
  0% {
    transform: scale(1.5) translate(-10%, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*******************************************/
/* kenburnsUp animation */
/*******************************************/
.vegas-animation-kenburnsUp {
  -webkit-animation: kenburnsUp ease-out;
  animation: kenburnsUp ease-out;
}

@-webkit-keyframes kenburnsUp {
  0% {
    transform: scale(1.5) translate(0, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsUp {
  0% {
    transform: scale(1.5) translate(0, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
  padding-top: 0px;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
.copy {
  font-size: 80%;
  color: #A8A8A8;
  display: block;
}

@media screen and (max-width: 768px) {
  .copy {
    font-size: 12px;
    margin-top: 40px;
  }
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

@keyframes circlemove {
  0% {
    bottom: 97%;
  }
  100% {
    bottom: -3%;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes show {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
html {
  height: 100%;
}
html.is-fixed {
  height: 100vh;
}

body {
  position: relative;
  height: 100%;
  font-family:  "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", "Noto Serif JP", serif;
  color: #222;
  font-size: 16px;
  font-weight:300;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.index-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
}
.index-header .header__container {
  display: flex;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .index-header .header__container {
    padding: 0;
  }
}
.index-header__tel {
  display: flex;
  align-items: center;
  color: #fff;
  margin-left: auto;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .index-header__tel {
    display: none;
  }
}
.index-header__tel i {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.index-header__tel i svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.index-header__tel p {
  font-size: 24px;
}
.index-header__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .index-header__btn {
    margin-left: auto;
  }
}
.index-header__btn span {
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  opacity: 1;
  transform-origin: center;
  transition: 0.3s;
}
.index-header__btn span:nth-child(2) {
  transform: translateY(-12px);
}
.index-header__btn span:nth-child(3) {
  transform: translateY(10px);
}
.index-header__btn.is-active span {
  opacity: 0;
}
.index-header__btn.is-active span:nth-child(2) {
  opacity: 1;
  transform: translateY(0) rotate(45deg);
}
.index-header__btn.is-active span:nth-child(3) {
  opacity: 1;
  transform: translateY(0) rotate(-45deg);
}
.index-header__offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #bab0a2;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.index-header__offcanvas.is-show {
  opacity: 1;
  visibility: visible;
}

.header-nav {
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
}

.header-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size:clamp(14px, 1.2vw, 18px);
}

.header-nav__link p {
  font-size:clamp(14px, 2vw, 20px);
}
.header-nav__link small {
  font-size: 12px;
  margin-top: 8px;
}

.l-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .l-container {
    padding: 0 24px;
  }
}

header a{
  width: 100%;
}
.header-nav {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .header-nav {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .header-nav {
    font-size: 10px;
    margin-bottom: 24px;
  }
}
.header-nav__list {
  display: inline-flex;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header-nav__list {
    flex-wrap: wrap;
  }
}
.header-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .header-nav__item {
    margin-bottom: 12px;
  }
}
header nav li:first-child
{
  border-left: 1px solid #fff;
}
header nav li:last-child
{
  border-right: 1px solid #fff;
}


@media screen and (max-width: 480px) {
  .header-nav__item:last-child .header-nav__link {
    margin-right: 0;
  }
}


.header-nav__link {
  padding: 0 clamp(0.625rem, 0.137rem + 2vw, 4.963rem)!important;
}
@media screen and (max-width: 1000px) {
    .header-nav__link {
    padding: 0 1em!important;
  }
}
@media screen and (max-width: 1000px) {
  .header-nav__link {
    padding: 0;
    margin-right: 2em;
  }
}
.header-nav__link:hover {
  opacity: 0.8;
}
.header-nav__copy {
  color: #999;
}
@media screen and (max-width: 768px) {
  .header-nav__copy {
    font-size: 10px;
  }
}
.hd-info__tel-link{
  display: flex;
  align-items:center;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  gap:10px;
  line-height: 1.2;
}


.hd-info__tel{
  color: #fff;
  text-align: center;
}
.hd-info__tel-text{
  display: block;
  font-size: clamp(11px, 1.2vw, 15px);
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.2;
}
.hd-info__tel-number{
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {

  .hd-info__tel-text{
    font-size: 11px;
  }
  .hd-info__tel-number{
    font-size: 15px;
  }
}
.hd-info i{
  display: block;
  width: clamp(15px, 2vw, 35px);
  margin: auto;

}
@media screen and (max-width: 768px) {
  .hd-info i{
    display: none;
  }
}
header .hd-info{
  margin-bottom: 0;
}


.index-mv {
  position: relative;
  width: 100%;
  background:rgba(0, 0, 0, 0.9);
  color: #fff;
  transform: 0.3s;
  height:100vh;
}

@media screen and (max-width: 768px) {
  .index-mv {
    height:93vh;
    min-height: 480px;
  }
}

.index-mv__bg {
  position: absolute !important;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  background-color: transparent; /* 黒背景を透過に変更 */
}
.index-mv__contents {
  position: absolute;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  transform: translateX(-50%);
  z-index: 1;
  top: 31%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .index-mv__contents {
    top: 35%;

  }
}
.index-mv__logo {
  display: block;
  max-width: 360px;

}
@media screen and (max-width: 768px) {
  .index-mv__logo {
    width: 40vw;
    max-width: 250px;
  }
}
.index-mv__title{
  font-size: clamp(25px, 2.5vw, 40px);
  font-family:  "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-mv__title{
    font-size: 20px;
  }
}
.index-mv__title span{
  display: block;
  font-size: clamp(18px, 2vw, 30px);
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .index-mv__title span{
    font-size: 15px;
  }
}
.index-mv__desc {
  text-align: center;
  line-height: 2;
}
.index-nav__container{
  position: absolute;
  bottom: 5%;
  left:50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s; /* スライダーの読み込み時間に合わせて調整 */
  padding: 0 3%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .index-nav__container {
    padding: 0;
    width: 90%;
    bottom: 4%;
  }
}
.index-nav__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .index-nav__list {
    flex-wrap: wrap;
    gap: 10px;
    max-width: 450px;
    margin-inline: auto;
  }
}
.index-nav__item {
  width: 23%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index-nav__item {
    width: calc(50% - 5px);
  }
}
.index-nav__card {
  position: relative;
  display: block;
  background: #000;
  aspect-ratio: 425/241;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .index-nav__card {
    aspect-ratio: 2/1;
  }
}
.index-nav__card:hover{
  transform: scale(1.03);
}
.index-nav__card .card__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  transition: 0.3s;
}
.index-nav__card .card__body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  margin-inline: auto;

  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}
.index-nav__card .card__body .ja{
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .index-nav__card .card__body {
    padding: 12px;
    color: #fff;
  }
}
@media screen and (max-width: 1600px) {
  .index-nav__card .card__body .ja {
    font-size: 14px;
    color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .index-nav__card .card__body .ja {
    font-size: 10px;
  }
}
.index-nav__card .card__ttl {
  display: block;
  width: 100%;
  font-size: clamp(18px, 2.2vw, 35px);
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  margin-bottom: 8px;
}


svg{
  display: block;
}
header .hd-tel a{
  font-size: 24px;
}

.logo{
  opacity: 1;
  max-width: clamp(142px, 18vw, 323px);
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .logo{
    max-width: 142px;
  }
  .logo img{
    width: 100%;
  }
}

.index-footer{
  padding-top:40px;
  padding-bottom:40px;
  text-align: center;

}
header{
  height: 150px;
}
@media screen and (max-width: 768px) {
  header{
    height: 70px;
  }
}
.hd-btn-nav{
  width: 74px;
  height: 80px;
  margin-block:auto;
  transform: translateY(-20px);

}
@media screen and (max-width: 768px) {
  .hd-btn-nav{
    width: 63px;
    height: 50px;
    transform: translateY(0px);
  }
}
.hd-btn-nav span{
  left: 50%;
  transform: translateX(-50%);
}
.hd-btn-nav span:nth-of-type(1){
  width: clamp(43px, 6vw, 70px) ;
  top: 53%;
}
@media screen and (max-width: 768px) {
  .hd-btn-nav span:nth-of-type(1){
    top: 60%;
  }
}
.hd-btn-nav span:nth-of-type(2){
  width: clamp(43px, 6vw, 70px);
  top: 76%;
}
@media screen and (max-width: 768px) {
  .hd-btn-nav span:nth-of-type(2){
    top: 80%;

  }
}
.hd-btn-nav span:nth-of-type(3){
  width: clamp(43px, 6vw, 70px);
  bottom: 0%;
}

.hd-btn-nav p{
  text-align: center;
  color: #fff;
  font-size: clamp(10px, 1.5vw, 20px);
}
@media screen and (max-width: 768px) {
  .hd-btn-nav p{
    font-size: 13px;
  }
}
.hd-container{

  padding: 1% 3% 0 2%;
  height: 100%;
  align-items: normal!important;
}
header .hd-container
{
  position: relative;
}
header .hd-container::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.41) 64.62%);
  ;
  z-index: -1;
}


@media screen and (max-width: 1400px) {
  header .hd-container{
    padding: 10px 10px 0 10px;
  }
}
header .hd-nav{
  display: flex;
  padding: 0px 54px 0px 0;
  gap: 54px;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 1500px) {
  header .hd-nav{
    gap: 20px;
  }
}
@media screen and (max-width: 1300px) {
  header .hd-nav{
    padding: 0 20px 0 0;
  }
}
.index-nav__btn{
  position: absolute;
  bottom: 109%;
  left: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  width: 100%;
  padding: 20px 0 20px 5%;
  background: rgba(0, 0, 0, 0.7);
  gap:15px;
  transition: all 0.3s ease; /* 追加: トランジション設定 */
}
@media screen and (max-width: 768px) {
  .index-nav__btn{
    padding: 10px 5px;
    gap:5px;
  }
}
.index-nav__btn p{
  color: #fff;
  font-size: clamp(15px, 1.8vw, 22px);
  margin: 0 auto;
  transform: translateX(-20.5px);
}
@media screen and (max-width: 768px) {
  .index-nav__btn p{
    font-size: 14px;
    transform: translateX(-8px);
  }
}
.index-nav__btn i{
  width: 10%;
}
@media screen and (max-width: 768px) {
  .index-nav__btn i{
    width: 16px;
  }
}
.index-nav__btn:hover{
  transform: scale(1.03); /* scale プロパティではなく transform を使用 */
}

.footer-nav__list{
  display: flex;
  justify-content: space-between;
}
.footer-nav__link{
  font-size: 13px;
  color: #232323;

}
header nav a:hover{
  color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  header .hd-info__tel-link i{
    display: none;
  }
}
.remodal{
  height: 100%;
}
@media screen and (max-width: 768px) {
  .remodal{
    height: auto;
  }
}
.remodal .l-inner{
  height: auto;
  top: 50%;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .remodal .l-inner{
    top: 50%;
  }
}
.remodal-nav a{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  padding:0;

}
.remodal-nav li{
  margin:24px 0;
}
.remodal-nav small{
  font-size: 12px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .remodal-nav small{
    font-size: 12px;
    margin-top: 0px;

  }
}
