@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #000;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 430px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #000;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wide-wrapper {
  width: 83.3333333333vw;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wide-wrapper {
    width: 95%;
  }
}

.wrapper {
  width: 69.4444444444vw;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* 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;
}

/* 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.
 */
small {
  font-size: 80%;
}

/**
 * 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;
}

.l-nav {
  display: none;
}
@media screen and (max-width: 430px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

header {
  background: #AF081A;
  height: 4.1666666667vw;
  position: fixed;
  z-index: 998;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header {
    height: 15.3846153846vw;
    height: 60px;
    max-height: 60px;
  }
}
header h1 {
  width: 6.5972222222vw;
  max-width: 100px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  header h1 {
    width: 25%;
    max-width: 120px;
  }
}
header .nav-toggle {
  display: none;
  position: relative;
  width: 60px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}
header .nav-toggle__line {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header .nav-toggle__line:nth-child(1) {
  top: 23px;
}
header .nav-toggle__line:nth-child(2) {
  top: 30px;
}
header .nav-toggle__line:nth-child(3) {
  top: 37px;
}
header .nav-overlay {
  display: none;
}
header .nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3611111111vw;
}
header .nav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5277777778vw;
}
header .nav ul a {
  color: #fff;
  padding: 1.25vw 0;
  font-size: max(13px, 0.12vw);
}
header .btn_container {
  width: 14.7222222222vw;
}
header .btn_container .link_btn {
  height: 4.1666666667vw;
  width: 100%;
}
header .btn_container .link_btn img {
  height: 4.1666666667vw;
  object-fit: contain;
  object-position: right;
}
header .btn_container .btn_min {
  height: 3.8194444444vw;
}
header .btn_container .btn_min img {
  height: 3.8194444444vw;
}

@media screen and (max-width: 768px) {
  header {
    padding: 0 12px;
  }
  header h1 {
    margin-left: 0;
  }
  header .nav-toggle {
    display: block;
  }
  header .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  header .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 360px);
    height: 100vh;
    background: url(../images/sp_menubg.webp) 0/cover no-repeat;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 50px 120px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
}
@media screen and (max-width: 768px) and (max-width: 430px) {
  header .nav {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
  header .nav ul li {
    width: 100%;
  }
  header .nav ul a {
    font-size: max(14px, 4.6vw);
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  header .btn_container {
    display: none;
  }
  header .btn_container .link_btn {
    width: 33.33%;
    height: 56px;
  }
  header .btn_container .link_btn img {
    height: 56px;
    object-position: center;
  }
  header .btn_container .btn_min {
    height: 56px;
  }
  header .btn_container .btn_min img {
    height: 56px;
  }
  body.is-nav-open {
    overflow: hidden;
  }
  body.is-nav-open .nav {
    transform: translateX(0);
  }
  body.is-nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  body.is-nav-open .nav-toggle__line:nth-child(1) {
    top: 27px;
    transform: translateX(-50%) rotate(45deg);
  }
  body.is-nav-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }
  body.is-nav-open .nav-toggle__line:nth-child(3) {
    top: 27px;
    transform: translateX(-50%) rotate(-45deg);
  }
}
.btn_container_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .btn_container_sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
  }
}

.fv {
  width: 100%;
  aspect-ratio: 1440/740;
  overflow: hidden;
  position: relative;
  margin-top: 1.7361111111vw;
}
@media screen and (min-width: 768px) {
  .fv {
    aspect-ratio: 1440/630;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 100svh;
    margin-top: 0;
    max-height: 100svh;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 430px) {
  .fv {
    margin-top: 0;
  }
}

.fv-slider,
.fv-slider .splide__track,
.fv-slider .splide__list,
.fv-slider .splide__slide {
  height: 100%;
}

.fv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv-slider::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.18);
  position: absolute;
  left: 0;
  top: 0;
}

.fv_cp {
  position: absolute;
  top: 8.3333333333vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 47.1527777778vw;
}
@media screen and (min-width: 768px) {
  .fv_cp {
    top: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .fv_cp {
    width: 95%;
    max-width: 600px;
    top: 11%;
  }
}

.scroll {
  position: absolute;
  left: 50%;
  bottom: 5.3472222222vw;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4166666667vw;
  z-index: 30;
  color: #fff;
  font-size: 1.0416666667vw;
  text-shadow: 0 0 6px #000;
}
@media screen and (min-width: 768px) {
  .scroll {
    bottom: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .scroll {
    bottom: 20.5128205128vw;
    font-size: 14px;
  }
}
@media screen and (max-width: 430px) {
  .scroll {
    bottom: auto;
    top: 58%;
  }
}

.scroll span img {
  display: block;
  animation: scroll-bounce 1.5s cubic-bezier(0.39, 0.58, 0.57, 1) infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.2777777778vw);
  }
}
.item_box {
  position: absolute;
  width: 13.8888888889vw;
  max-width: 220px;
  z-index: 10;
  bottom: 3.4722222222vw;
  right: 13.8888888889vw;
}
@media screen and (min-width: 768px) {
  .item_box {
    max-width: 230px;
  }
}
@media screen and (max-width: 767px) {
  .item_box {
    width: 48.7179487179vw;
    left: 50%;
    right: auto;
    bottom: 5.1282051282vw;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 430px) {
  .item_box {
    left: 15.3846153846vw;
    bottom: 28.2051282051vw;
    transform: none;
  }
}

.web_reserve {
  position: absolute;
  width: 10.0694444444vw;
  max-width: 150px;
  z-index: 10;
  bottom: 1.3194444444vw;
  right: 3.3333333333vw;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.4s ease;
  will-change: opacity, transform;
}
@media screen and (max-width: 767px) {
  .web_reserve {
    width: 31.0256410256vw;
    bottom: 4.8717948718vw;
    max-width: 121px;
  }
}
@media screen and (max-width: 430px) {
  .web_reserve {
    bottom: 25.641025641vw;
    width: 29.4871794872vw;
    max-width: 115px;
  }
}

.web_reserve.active {
  position: fixed;
  bottom: 3.4722222222vw;
  z-index: 999;
}
@media screen and (max-width: 430px) {
  .web_reserve.active {
    bottom: 17.4358974359vw;
    width: 25.1282051282vw;
    max-width: 100px;
  }
}

.web_reserve.is-fade {
  opacity: 0;
  transform: translateY(0.5555555556vw);
}

.web_reserve.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5555555556vw);
}

/*-----------------------------------------------
セクション 01
------------------------------------------------*/
.sec_01 {
  background: url(../images/sec_01_bg.webp) 0/cover no-repeat;
  padding: 5.2083333333vw 0 12.5vw;
  position: relative;
}
.sec_01::after {
  content: "";
  width: 100%;
  height: 14.7916666667vw;
  background: url(../images/sec_01_bg02.webp) 0/cover no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sec_01 {
    background: url(../images/sec_01_bg_sp.webp) 0/cover no-repeat;
    padding: 23.0769230769vw 0 43.5897435897vw;
  }
  .sec_01::after {
    background: url(../images/sec_01_bg02_SP.webp) 0/cover no-repeat;
    background-position: top;
    height: 23.0769230769vw;
  }
}
.sec_01 .sec_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-right: 3.6805555556vw;
}
@media screen and (max-width: 767px) {
  .sec_01 .sec_container {
    display: none;
  }
}
.sec_01 .sec_container .box_l {
  width: 31.875vw;
  max-width: 459px;
}
.sec_01 .sec_container .box_r {
  width: 39.0277777778vw;
  max-width: 562px;
}
.sec_01 .sec_item {
  width: 7.9861111111vw;
  max-width: 115px;
  position: absolute;
  right: 12.0833333333vw;
  bottom: 9.375vw;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .sec_01 .sec_item {
    width: 21.5384615385vw;
    bottom: 5.1282051282vw;
  }
}
@media screen and (max-width: 430px) {
  .sec_01 .sec_item {
    bottom: 10.2564102564vw;
  }
}
.sec_01 .sp_section {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_01 .sp_section {
    display: block;
    width: 97%;
    margin: 0 auto 0 0;
  }
}

.other_menu {
  margin-top: 1.6666666667vw;
}

.other-menu-slider .splide__track {
  overflow: hidden;
}

.other-menu-slider .splide__slide {
  display: flex;
  align-items: center;
}

.other-menu-slider .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}

/*-----------------------------------------------
セクション 02
------------------------------------------------*/
.sec_02 {
  background: url(../images/sec_02_bg.webp) 0/cover no-repeat;
  background-position: bottom;
  padding: 6.9444444444vw 0 0;
}
@media screen and (max-width: 767px) {
  .sec_02 {
    background: url(../images/sec_02_bg_sp.webp) 0/cover no-repeat;
    padding: 0;
  }
}
.sec_02 .sec_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 2.4305555556vw;
}
@media screen and (max-width: 767px) {
  .sec_02 .sec_container {
    display: none;
  }
}
.sec_02 .sec_container .box_l {
  width: 38.9583333333vw;
  max-width: 561px;
}
.sec_02 .sec_container .box_r {
  width: 36.1805555556vw;
  max-width: 521px;
}
.sec_02 .sp_section {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_02 .sp_section {
    display: block;
  }
}
.sec_02 .menu {
  width: 91.6666666667vw;
  max-width: 1320px;
  margin: 5.5555555556vw 0 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_02 .menu {
    width: 100%;
    margin: 9.2307692308vw auto 0;
  }
}
.sec_02 .rev {
  margin: 5.5555555556vw auto 0 0;
}
@media screen and (max-width: 767px) {
  .sec_02 .rev {
    width: 100%;
    margin: 9.2307692308vw auto 0;
  }
}
@media screen and (min-width: 768px) {
  .sec_02 .wapper_menu {
    max-width: 1500px;
    margin: 0 auto;
  }
}
.sec_02 .other {
  margin-top: 9.7222222222vw;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec_02 .other {
    width: 100%;
    display: block;
    margin-top: 19.2307692308vw;
  }
}
.sec_02 .other p {
  width: 31.1111111111vw;
  max-width: 448px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_02 .other p {
    width: 100%;
    margin: 0;
    max-width: none;
  }
}
.sec_02 .other .border {
  display: block;
  position: absolute;
  width: 30%;
  left: 0;
  height: 1px;
  background: #390909;
}
@media screen and (max-width: 767px) {
  .sec_02 .other .border {
    display: none;
  }
}
.sec_02 .other .border::after {
  content: "";
  width: 0.2777777778vw;
  height: 0.2777777778vw;
  border-radius: 50%;
  background: #390909;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec_02 .other .border.left {
  left: auto;
  right: 0;
}
.sec_02 .other .border.left::after {
  right: auto;
  left: 0;
}
.sec_02 .other-menu-slider {
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .sec_02 .other-menu-slider {
    margin-top: 8.2051282051vw;
  }
}

/*-----------------------------------------------
セクション 03
------------------------------------------------*/
.sec_03 {
  background: url(../images/sec_03_bg.webp) 0/cover no-repeat;
  padding: 0;
  padding-bottom: 5.5555555556vw;
  position: relative;
}
.sec_03::after, .sec_03::before {
  content: "";
  width: 100%;
  height: 14.8611111111vw;
  background: url(../images/red_top.webp) 0/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sec_03::after, .sec_03::before {
    background: url(../images/red_top_sp.webp) 0/cover no-repeat;
    height: 26.9230769231vw;
    top: -1px;
  }
}
.sec_03::after {
  background: url(../images/red_bottom.webp) 0/cover no-repeat;
  top: auto;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec_03::after {
    background: url(../images/red_bottom_sp.webp) 0/cover no-repeat;
    height: 48.7179487179vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 {
    background: url(../images/sec_03_bg_sp.webp) 0/cover no-repeat;
    padding: 20.5128205128vw 0;
  }
}
.sec_03 .sec_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 7.7777777778vw 1.3888888889vw 0 6.8055555556vw;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .sec_03 .sec_container {
    flex-direction: column-reverse;
    padding: 0;
  }
}
.sec_03 .box_l {
  width: 31.5972222222vw;
  max-width: 455px;
}
@media screen and (max-width: 767px) {
  .sec_03 .box_l {
    width: 100%;
    max-width: none;
  }
}
.sec_03 .sec03-slider .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.sec_03 .sec03-slider .splide__pagination {
  position: static;
  margin-top: 1.6666666667vw;
  gap: 0.6944444444vw;
}
.sec_03 .sec03-slider .splide__pagination__page {
  background: #BAB8B8;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .sec_03 .sec03-slider .splide__pagination__page {
    width: 12px;
    height: 12px;
  }
}
.sec_03 .sec03-slider .splide__pagination__page.is-active {
  background: #B71728 !important;
  transform: none;
}
.sec_03 .box_r {
  width: 39.0972222222vw;
  max-width: 563px;
}
@media screen and (max-width: 767px) {
  .sec_03 .box_r {
    width: 100%;
    max-width: none;
  }
}
.sec_03 .border {
  width: 62.5vw;
  max-width: 900px;
  margin: 1.4583333333vw auto 0;
}
@media screen and (max-width: 767px) {
  .sec_03 .border {
    width: 95%;
  }
}
.sec_03 .sec_03_map {
  width: 73.4027777778vw;
  max-width: 1057px;
  margin: 5.4861111111vw auto 0 6.8055555556vw;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .sec_03 .sec_03_map {
    width: 100%;
    margin: 10.2564102564vw auto 0;
  }
}

/*-----------------------------------------------
セクション 03-04
------------------------------------------------*/
.sec-03-04 img {
  height: 41.6666666667vw;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec-03-04 img {
    height: 128.2051282051vw;
    max-height: 500px;
  }
}

/*-----------------------------------------------
セクション 04
------------------------------------------------*/
.sec_04 {
  background: url(../images/sec_04_bg.webp) 0/cover no-repeat;
  padding: 8.3333333333vw 0 11.5277777778vw;
}
@media screen and (max-width: 767px) {
  .sec_04 {
    padding: 20.5128205128vw 0;
    background: url(../images/sec_04_bg_sp.webp) 0/cover no-repeat;
  }
}
.sec_04 .info {
  width: 80.7638888889vw;
  max-width: 1163px;
}
@media screen and (max-width: 767px) {
  .sec_04 .info {
    width: 90%;
    margin: 0 auto;
  }
}
.sec_04 .map {
  margin: 8.3333333333vw auto 0;
}
@media screen and (max-width: 767px) {
  .sec_04 .map {
    margin-top: 16.4102564103vw;
  }
}
.sec_04 .map iframe {
  width: 100%;
  height: 27.0833333333vw;
}
@media screen and (max-width: 767px) {
  .sec_04 .map iframe {
    margin: 0 auto;
    height: 100vw;
    max-height: 390px;
  }
}

/*-------------------------------s----------------
stores
------------------------------------------------*/
.stores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #000;
}
@media screen and (max-width: 767px) {
  .stores {
    display: flex;
    flex-direction: column;
  }
}
.stores a {
  width: 100%;
}
.stores img {
  object-fit: cover;
}

footer {
  background: #000000;
  padding: 1.1111111111vw 5.1282051282vw;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 4.1025641026vw 5.1282051282vw;
    margin-bottom: 14.1025641026vw;
  }
}
footer p {
  text-align: center;
  font-size: max(12px, 0.09vw);
  color: #fff;
}