
@charset "UTF-8";
@font-face {
  font-family: "Manrope-ExtraBold";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2"), url("../fonts/Manrope-ExtraBold.woff") format("woff"), url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
}

:root {
  --font-family-manrope: "Manrope-ExtraBold", Helvetica;
  --color-primary: #752700;
  --color-title: #5F1A00;
  --color-title-red: #E60012;
  --color-black: #140700;
  --color-marker: #FFE100;
  --color-yellow: #FFE300;

}

/* resetcss */
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-all;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table.table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

html {
  font-size: 62.5%;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}

blockquote,
q {
  quotes: '' '';
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

a:active,
a:focus {
  outline: 0;
}

/* base */
html {
  overflow: auto;
  visibility: visible;
}

body {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.5;
  color: #140700;
  text-align: justify;
  text-justify: inter-ideograph;
}

body.is-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

p {
  line-height: 1.7;
}

li {
  line-height: 1.8;
}

a,
a img {
  transition: opacity 0.5s;
}

a:hover,
a:hover img {
  opacity: 0.7;
}

/* LP */
.pc {
  display: none;
}

.lg {
  display: none;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.txt--primary {
  color: var(--color-title);
}

.txt--marker {
  background: linear-gradient(transparent 50%, var(--color-marker) 50%);
}

.txt--title {
  color: var(--color-title);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.txt--title .txt--marker {
  color: var(--color-title-red);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(transparent 60%, var(--color-marker) 60%);
}

.txt--title .txt--primary {
  font-size: 14px;
  font-weight: 800;
  padding-top: 5px;
}

.icon--title {
  max-width: 115px;
  margin: 0 auto;
}

.lp-icon-thunder {
  padding: 0 10px;
  background: url('../images/icon-thunder.svg') no-repeat center center/contain;
}

.lp-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 75px;
  transition: opacity 0.7s ease 0.5s;
  background: var(--color-black);
}

.lp-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.lp-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  height: 100%;
  margin: 0 auto;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
  z-index: 100;
}

.lp-header.js-active {
  opacity: 1;
}

.lp-header__logo {
  max-width: 150px;
  width: calc(100% - 50px);
}

.lp-header__placeholder {
  display: none;
  width: 100%;
  height: 75px;
}

.lp-gnav {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  height: 100%;
  transition: 0.3s ease-in-out;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.lp-gnav.is-open {
  visibility: visible;
  transition: 0.5s ease-in-out;
  opacity: 1;
  z-index: 1000;
  background: var(--color-black);
  pointer-events: visible;
  overflow-y: scroll;
}

.lp-gnav.is-open::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('../images/bg-spnav-top.svg') repeat-x top center/contain;
}

.lp-gnav.is-disabled {
  transition: none !important;
}

.lp-gnav .lp-header__logo {
  display: none;
}

.lp-gnav__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.lp-gnav__list {
  font-size: 16px;
  padding: 70px 20px 20px;
}

.lp-gnav__item {
  position: relative;
  padding: 10px;
}

.lp-gnav__link {
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.3s ease;
}

.lp-gnav__link:hover {
  color: var(--color-yellow);
  opacity: 1;
}

.lp-gnav__cta {
  margin-bottom: 20px;
}

.lp-gnav__logo {
  max-width: 200px;
  margin-top: auto;
  margin-bottom: 40px;
}

.lp-gnav-toggle {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 15px;
  cursor: pointer;
  z-index: 1;
}

.lp-gnav-toggle__item, .lp-gnav-toggle__item::before,
.lp-gnav-toggle__item::after {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  height: 2px;
  width: 25px;
  background: #fff;
  display: block;
  transform: translateY(-50%);
  border-radius: 2px;
  content: "";
  transition: 0.5s ease;
}

.lp-gnav-toggle__item::before {
  margin-top: -8px;
}

.lp-gnav-toggle__item::after {
  margin-top: 8px;
}

.lp-gnav-toggle.close {
  top: 75px;
}

.lp-gnav-toggle.close .lp-gnav-toggle__item {
  background: transparent;
}

.lp-gnav-toggle.close .lp-gnav-toggle__item::before {
  transform: rotate(-45deg);
  margin-top: 0;
  background: #fff;
}

.lp-gnav-toggle.close .lp-gnav-toggle__item::after {
  transform: rotate(45deg);
  margin-top: 0;
  background: #fff;
}

.lp-mainvisual {
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 375/668;
}

.lp-mainvisual__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lp-mainvisual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-mainvisual__product,
.lp-mainvisual__package {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.lp-mainvisual__product {
  position: absolute;
  top: 44%;
  left: -1.5%;
  width: 57%;
  transform: translateX(50px) scale(0.8);
  transition-delay: 0.3s;
}

.lp-mainvisual__package {
  position: absolute;
  top: 28.3%;
  left: 33.1%;
  width: 65%;
  transform: translateX(-50px) scale(0.8);
  transition-delay: 0.7s;
}

.lp-mainvisual.is-active .lp-mainvisual__product {
  opacity: 1;
  transform: translateX(0px) scale(1);
}

.lp-mainvisual.is-active .lp-mainvisual__package {
  opacity: 1;
  transform: translateX(0px) scale(1);
}

.lp-news {
  background: #F7F3EC;
  padding: 30px;
}

.lp-news__inner {
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid var(--color-primary);
}

.lp-news__title {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-news__title span {
  color: var(--color-black);
  font-size: 14px;
  padding-left: 20px;
}

.lp-news__item {
  padding: 10px 0;
  font-weight: 700;
}

.lp-news__link {
  position: relative;
  display: flex;
  gap: 20px;
  padding-right: 30px;
}

.lp-news__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url('../images/icon-arrow-news.svg') no-repeat center center/contain;
}

.lp-news__date {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--color-primary);
  margin-top: 2px;
}

.lp-news__loading {
  width: 100%;
  height: 27px;
}

.lp-about {
  background: linear-gradient(to bottom, #F7F3EC,#EBDBBE);
  padding: 30px 0 0;
}

.lp-about__outer {
  position: relative;
  padding: 0px 10px;
}

.lp-about__inner {
  padding: 0px 10px;
  margin-bottom: 60px;
}

.lp-about__logo {
  max-width: 225px;
  margin: 0 auto 30px;
}

.lp-about__title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  padding: 0 20px 20px;
}

.lp-about__title .lp-icon-thunder {
  padding: 15px;
}

.lp-about__text {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.lp-about__panel {
  position: relative;
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 30px;
  box-shadow: 0 3px 5px 5px rgba(0, 0, 0, 0.1);
}

.lp-about__panel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 72px;
  background: url('../images/icon-thunder-double.svg') no-repeat center center/contain;
}

.lp-about__panel-text {
  font-size: 14px;;
}

.lp-about__subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp-about__media {
  overflow: hidden;
  width: calc(100% + 60px);
  margin: 0 -30px;
  position: relative;
}

.lp-about__track {
  display: flex;
  width: max-content;
  animation: slideLoopLeft 30s linear infinite;
}

@keyframes slideLoopLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.lp-about__img {
  flex-shrink: 0;
  width: 360vw;
  margin-left: -14.4vw;
  object-fit: cover;
}

.lp-about__img:first-child {
  margin-left: 0;
}

.lp-product {
  position: relative;
  padding: 150px 10px 0;
}

.lp-product::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, transparent 42%,  #FFE300 100%);
}

.lp-product__panel {
  position: relative;
  background: var(--color-black);
  color: #fff;
  padding: 80px 50px 30px;
  margin-bottom: 30px;
}

.lp-product__panel::before,
.lp-product__panel::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
}

.lp-product__panel::before {
  left: -5px;
  background: url('../images/bg-product-l-sp.svg') no-repeat bottom center/contain;
}

.lp-product__panel::after {
  right: -5px;
  background: url('../images/bg-product-r-sp.svg') no-repeat bottom center/contain;
}

.lp-product__media--l {
  z-index: 2;
  position: absolute;
  width: 200px;
  top: -100px;
  left: calc(50% - 285px);
}

.lp-product__media--r {
  z-index: 2;
  position: absolute;
  width: 210px;
  top: -95px;
  right: calc(50% - 285px);
}

.lp-product__media--main {
  position: absolute;
  width: 176px;
  height: 112px;
  top: calc(0% - 56px);
  left: calc(50% - 88px);
}

.lp-product__media--logo {
  position: absolute;
  width: 125px;
  top: -60px;
  left: 43%;
  transform: translate(-50%, -50%);
}

.lp-product__title {
  color: var(--color-yellow);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.lp-product__text {
  font-size: 15px;
  margin-bottom: 30px;
}

.lp-product__img img{
   max-width: calc(100% + 50px);
   margin-right: -50px;
}

.lp-product__img-spbt {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto -10px;
}

.lp-map {
  background: #F7F3EC;
}

.lp-map__heading {
  position: relative;
  padding: 20px;
  margin-bottom: 30px;
}

.lp-map__heading-thunder {
  position: relative;
  width: 70px;
  margin-top: -30px;
  margin-bottom: 10px;
}

.lp-map__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.lp-map__item {
  aspect-ratio: 1/1;
  width: calc(100% / 3);
}

.lp-map__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.lp-map__link:hover {
  opacity: 1;
}

.lp-map__link img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.lp-map__link .normal {
  opacity: 1;
  z-index: 1;
}

.lp-map__link .hover {
  opacity: 0;
  z-index: 2;
}

.lp-map__link:hover .normal {
  opacity: 0;
}

.lp-map__link:hover .hover {
  opacity: 1;
}

.lp-map__inner {
  padding: 0 20px;
}

.lp-map__img {
  margin: -40px auto 40px;
}

.lp-play {
  padding: 80px 0 100px;
}

.lp-play__heading {
  position: relative;
  z-index: 2;
  margin-bottom: -60px;
}

.lp-play__zakuzaku {
  position: absolute;
  top: -70px;
  left: calc(50% - 160px);
  width: 102px;
  animation: shakeLeftRight 1s ease-in-out infinite;
}

@keyframes shakeLeftRight {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-5px); }
  50%  { transform: translateX(5px); }
  75%  { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.lp-play__slider {
  position: relative;
  padding-left: 10px;
}

.lp-play__slider .swiper-button-prev,
.lp-play__slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.lp-play__slider .swiper-button-prev {
  background-image: url('../images/icon-arrow-left-play-slider.png');
  left: -5px;
}

.lp-play__slider .swiper-button-next {
  background-image: url('../images/icon-arrow-right-play-slider.png');
  right: -5px;
}

.lp-play__slide-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.lp-play__slide-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 40px 30px;
  height: 100%;
}

.lp-play__img {
  aspect-ratio: 16/9;
  object-fit: cover;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 5px 5px 0px 0px #000;
  margin-bottom: 20px;
}

.lp-play__content {
  flex-grow: 1;
  background: #fff;
  padding: 20px 25px;
  border-radius: 20px;
}

.lp-play__subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp-play__subtitle .txt--s {
  font-size: 14px;
}

.lp-play__text {
  font-size: 16px;
  margin-bottom: 20px;
}

.lp-play__thumbs {
  width: 100%;
  padding: 10px 0 10px 10px;
}

.lp-play__thumbs .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-play__thumbs .swiper-slide {
  width: 25%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
}

.lp-play__thumbs .swiper-slide-thumb-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: #EF001E 5px solid;
}

.lp-factory {
  margin-top: -75px;
  padding-top: 75px;
}

.lp-factory__panel {
  background: #fff;
  padding: 40px 0 50px;
  border-radius: 50px 50px 0px 0px;
  box-shadow: 0px -8px 10px -5px rgba(0, 0, 0, 0.1);
}

.lp-factory__inner {
  position: relative;
  padding: 0px 20px;
}

.lp-factory__title {
  margin-top: -100px;
  margin-bottom: 20px;
}

.lp-factory__topimg {
  margin-bottom: 0px;
}

.lp-factory__content {
  margin-bottom: 20px;
}

.lp-factory__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-factory__text {
  font-size: 16px;
}

.lp-factory__slider {
  position: relative;
  padding-top: 50px;
  margin-top: -10px;
}

.lp-factory__slide {
  margin-bottom: 10px;
}

.lp-factory__slider .swiper-button-prev,
.lp-factory__slider .swiper-button-next {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
  position: absolute;
  top: 30px;
  z-index: 10;
}

.lp-factory__slider .swiper-button-prev {
  background-image: url('../images/icon-arrow-left-factory-slider.png');
  left: -3px;
}

.lp-factory__slider .swiper-button-next {
  background-image: url('../images/icon-arrow-right-factory-slider.png');
  right: -3px;
}

.lp-factory__thumbs {
  width: calc(100% + 7px);
  padding-left: 5px;
  margin: 0 -3px 0 -4px;
}

.lp-factory__thumbs .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-factory__thumbs .swiper-slide {
  width: 25%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 5px;
}

.lp-factory__thumbs .swiper-slide-thumb-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: #EF001E 5px solid;
  border-radius: 5px;
}

.lp-tour {
  padding: 40px 0 50px;
}

.lp-tour__heading {
  position: relative;
  overflow: hidden;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

.lp-tour__heading-track {
  position: absolute;
  top: calc(50% - 40px);
  left: 0;
  display: flex;
  width: max-content;
  animation: slideLoopRight 30s linear infinite;
}

.lp-tour__heading-img {
  flex-shrink: 0;
  height: 80px;
  width: auto;
  margin-left: -1%;
}

.lp-tour__heading-img:first-child {
  margin-left: 0;
}

@keyframes slideLoopRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.lp-tour__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.lp-tour__list {
  margin-bottom: 20px;
}

.lp-tour__item {
  border-top: 1px solid #d9d9d9;
  padding: 20px;
}

.lp-tour__subtitle {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-tour__subtitle::before {
  position: absolute;
  content: "";
  background: var(--color-title-red);
  width: 10px;
  height: 10px;
  border-radius: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lp-tour__body {
  font-size: 16px;
}

.lp-tour__index {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding-left: 9%;
}

.lp-tour__notes-list {
  color: #ff0000;
  list-style: disc;
  padding-left: 20px;
}

.lp-tour__schedule {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
}

.lp-tour__btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.lp-tour__btn-logo {
  width: 190px;
  z-index: 2;
  margin: 0 auto -10px;
}

.lp-tour__btn-link {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  border: 8px solid var(--color-yellow);
  background: var(--color-yellow);
  border-radius: 100px;
  color: #fff;
  padding: 10px 0 10px 10px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.5s ease;
}

.lp-tour__btn-link:hover {
  color: var(--color-black);
  opacity: 1;
}

.lp-tour__btn-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lp-tour__btn-link:hover .lp-tour__btn-arrow path {
  stroke: var(--color-black);
}

.lp-tour__btn-link::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background :var(--color-black);
  border-radius: 100px;
}


.lp-tour__btn-link::after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  pointer-events: none;
}

.lp-tour__btn-text {
  position: relative;
  z-index: 1;
}

.lp-tour__btn-arrow {
  position: relative;
  width: 35px;
  margin: 0;
  z-index: 1;
}

.lp-tour__btn .lp-tour__btn-arrow path {
  transition: all 0.5s ease 0.1s;
  transition-property: stroke;
}

.lp-shop {
  margin-top: -40px;
  padding-top: 40px;
}

.lp-shop__outer {
  position: relative;
  padding: 0 0 30px;
  background: linear-gradient(180deg, #fff 0px,  #fff 60px, #363636  60px, #363636 100%);
}

.lp-shop__outer::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url('../images/bg-shop-top.svg') no-repeat center top / 300% 60px;
}

.lp-shop__inner {
  padding: 90px 30px 20px;
}

.lp-shop__title {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lp-shop__logo {
  width: 140px;
  margin-left: auto;
  margin-bottom: 20px;
}

.lp-shop__subtitle {
  text-align: center;
  color: var(--color-yellow);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp-shop__text {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.lp-shop__slider {
  height: 80px;
  position: relative;
  padding: 0;
}

.lp-shop__slider .swiper-wrapper {
  display: flex;
  transition-timing-function: linear !important;
}

.lp-shop__slide {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-shop__slide img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  border-radius: 10px;
}

.lp-toyohashi {
  position: relative;
  background: #EAE1D0;
  padding: 10px 0 0;
}

.lp-toyohashi__inner {
  padding: 0px 30px;
}

.lp-toyohashi__bg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.lp-toyohashi__title {
  position: relative;
  z-index: 1;
  max-width: 235px;
  margin: 0 auto;
}

.lp-toyohashi__map {
  margin-top: -30px;
  margin-bottom: 30px;
}

.lp-toyohashi__subtitle {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.lp-toyohashi__text {
  font-size: 16px;
  margin-bottom: 10px;
}

.lp-access {
  background: #EAE1D0;
  padding: 40px 0 10px;
}

.lp-access__wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-access__map {
  aspect-ratio: 3/2;
  margin-bottom: 30px;
}

.lp-access__map-iframe {
  width: 100%;
  height: 100%;
}

.lp-access__info-item {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  color: #0f0f0f;
}

.lp-access__icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.lp-access__icon.icon--location {
  background: url('../images/icon-location.png') no-repeat center center/contain;
}

.lp-access__icon.icon--phone {
  background: url('../images/icon-phone.png') no-repeat center center/contain;
}

.lp-access__icon.icon--schedule {
  background: url('../images/icon-schedule.png') no-repeat center center/contain;
}

.lp-access__icon.icon--train {
  background: url('../images/icon-train.png') no-repeat center center/contain;
}

.lp-access__icon.icon--car {
  background: url('../images/icon-car.png') no-repeat center center/contain;
}

.lp-access__info-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.lp-access__info-text {
  font-size: 16px;
}

.lp-access__img {
  display: block;
  margin: 0 auto 30px;
}

.lp-access__list {
  list-style: disc;
  padding-left: 20px;
}


.lp-faq {
  background: #F7F3EC;
  padding: 40px 20px 30px;
}

.lp-faq__item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 20px 0 0;
  overflow: hidden;
}

.lp-faq__item.lp-faq__item--open {
  padding-bottom: 20px;
}

.lp-faq__question {
  display: flex;
  padding: 0px 40px 0px 10px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
}

.lp-faq__label {
  font-size: 30px;
  font-weight: bold;
  margin-right: 8px;
  line-height: 0.8;
  flex-shrink: 0;
  white-space: nowrap;
}

.lp-faq__label--question {
  color: #EF001E;
}

.lp-faq__label--answer {
  color: #752700;
}

.lp-faq__text {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-faq__question::after {
  content: '+';
  font-size: 20px;
  color: #EF001E;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lp-faq__answer {
  display: flex;
  padding: 0px 40px 0px 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 0;
  margin-top: 20px;
  transition: height 300ms ease;
}

.lp-faq__item--open .lp-faq__question::after {
  content: '−';
}

.lp-contact {
  background: url('../images/bg-contact-sp.jpg') no-repeat top right/contain;
  padding: 40px 35px 40px;
}

.lp-contact__inner {
  max-width: 400px;
  margin: 0 auto;
}

.lp-contact__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
}

.lp-contact__title span {
  font-family: var(--font-family-manrope);
  font-size: 28px;
  letter-spacing: 0.3rem;
  color: #EFDB06;
  display: block;
}

.lp-contact__tel {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.lp-contact__email {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}

.lp-contact__time {
  font-size: 16px;
  margin-bottom: 15px;
}

.lp-contact__text {
  max-width: 410px;
  font-size: 14px;
  line-height: 1.5;
}

.lp-link {
  background: #D5CBB9;
  padding: 40px 10px;
}

.lp-link__btn {
  background: #ccc;
  color: #fff;
  padding: 30px 30px;
}

.lp-footer {
  width: 100%;
  background: #0f0f0f;
  color: #fff
}

.lp-footer__inner {
  padding: 50px 20px;
  max-width: 340px;
  margin: 0 auto;
}

.lp-footer__nav {
  text-align: center;
  margin-bottom: 30px;
}

.lp-footer__link {
  display: inline-block;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.lp-footer__link:hover {
  color: var(--color-yellow);
  opacity: 1;
}

.lp-footer__logo {
  display: block;
  max-width: 400px;
  margin-bottom: 25px;
}

.lp-footer__address {
  max-width: 300px;
  font-size: 16px;
  margin-bottom: 30px;
}

.lp-footer__links {
  max-width: 220px;
  margin: 0 auto 30px;
}

.lp-footer__links .btn {
  position: relative;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  height: 60px;
  border: 3px solid var(--color-yellow);
  margin-bottom: 20px;
  overflow: hidden;
  transition: color 0.3s ease;
}

.lp-footer__links .btn:hover {
  color: var(--color-black);
  opacity: 1;
}

.lp-footer__links .btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.lp-footer__links .btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.lp-footer__links .btn span {
  position: relative;
}

.lp-footer__copy {
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
}

.lp-sticky-cta {
  pointer-events: none;
  z-index: 100;
  position: fixed;
  bottom: 5px;
  left: 50%;
  width: 315px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lp-sticky-cta.is-visible {
  cursor: pointer;
  pointer-events: visible;
  opacity: 1;
}

.lp-sticky-cta img {
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  .txt--title {
    margin-bottom: 50px;
  }

  .txt--title .txt--marker {
    font-size: 60px;
  }

  .txt--title .txt--primary {
    font-size: 20px;
  }

  .icon--title {
    max-width: 255px;
  }

  .lp-header {
    height: 100px;
  }

  .lp-header__inner {
    justify-content: center;
    padding: 0 25px;
    max-width: 1250px;
  }

  .lp-header__logo {
    max-width: calc(150px + 2.5vw);
  }

  .lp-header__placeholder {
    height: 100px;
  }

  .lp-gnav {
    display: block;
    z-index: 0;
    pointer-events: visible;
    visibility: visible;
    position: static;
    opacity: 1;
    height: 100%;
  }

  .lp-gnav::before {
    display: none!important;
  }

  .lp-gnav__inner {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .lp-gnav__list {
    display: flex;
    position: relative;
    padding: 20px 0 20px 20px;
    font-size: 1.4vw;
  }

  .lp-gnav__item {
    padding: 7px;
  }

  .lp-gnav__item:last-of-type {
    padding-right: 0;
  }

  .lp-gnav-toggle {
     display: none;
  }

  .lp-mainvisual {
    aspect-ratio: 144/67;
  }

  .lp-mainvisual__product {
    top: 40%;
    left: 13.1%;
    width: 37.7%;
    transform: translateX(100px) scale(0.8);
  }

  .lp-mainvisual__package {
    top: 32.5%;
    left: 41.8%;
    width: 41.5%;
    transform: translateX(-100px) scale(0.8);
  }

  .lp-news {
    padding: 50px 20px;
  }

  .lp-news__inner {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .lp-news__title {
    font-size: 36px;
    padding-top: 5px;
    margin-bottom: 0px;
    width: 30%;
  }

  .lp-news__title span {
    padding-left: 20px;
  }

  .lp-news__list {
    width: 70%;
  }

  .lp-news__item {
    padding: 25px 0;
  }

  .lp-news__link {
    gap: 50px;
    padding-right: 40px;
  }

  .lp-news__date {
    font-size: 12px;
    padding-left: 20px;
    color: var(--color-primary);
  }

  .lp-about {
    padding: 50px 0 0;
  }

  .lp-about__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
  }

  .lp-about__media--l,
  .lp-about__media--r {
    position: absolute;
    width: 400px;
  }

  .lp-about__media--l img,
  .lp-about__media--r img:not(.lp-about__img--logo) {
    border-radius: 15px;
  }


  .lp-about__media--l {
    left: calc(50% - 700px);
    top: 140px;
  }

  .lp-about__media--r {
    right: calc(50% - 700px);
    top: 200px;
  }

  .lp-about__img--01 {
    width: 420px;
    padding-left: 20px;
    margin-bottom: 30px;
  }

  .lp-about__img--02 {
    width: 250px;
    margin-left: -40px;
    margin-bottom: 80px;
  }

  .lp-about__img--03 {
    width: 420px;
    margin-left: -20px;
    margin-bottom: 30px;
  }

  .lp-about__img--04 {
    width: 280px;
    margin-left: 20px;
  }

  .lp-about__img--logo {
    width: 233px;
    margin-left: 0;
  }

  .lp-about__img--05 {
    width: 240px;
    margin-right: -30px;
    margin-bottom: 20px;
  }

  .lp-about__img--06 {
    width: 380px;
    margin-right: -20px;
    margin-bottom: 70px;
  }

  .lp-about__img--07 {
    width: 240px;
    margin-right: -30px;
    margin-bottom: 20px;
  }

  .lp-about__img--08 {
    width: 380px;
    margin-right: -40px;
    margin-bottom: 0px;
  }

  .lp-about__outer {
    position: relative;
    padding: 0px 10px;
    max-width: 570px;
  }

  .lp-about__inner {
    padding: 0px 10px;
    margin-bottom: 80px;
  }

  .lp-about__logo {
    max-width: 350px;
    margin: 0 auto 60px;
  }

  .lp-about__title {
    font-size: 35px;
    padding: 0 20px 40px;
  }

  .lp-about__title .lp-icon-thunder {
    padding: 20px;
  }

  .lp-about__text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 2.5;
  }

  .lp-about__panel {
    padding: 40px 50px;
    margin: 0 auto;
  }

  .lp-about__panel::before {
    top: calc(0% + 10px);
    left: calc(100% - 10px);
    transform: translate(-50%, -50%);
    width: 100px;
    height: 80px;
  }

  .lp-about__panel-text {
    font-size: 16px;
    line-height: 2;
  }

  .lp-about__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .lp-product {
    padding: 280px 10px 0;
  }

  .lp-product::after {
    height: 150px;
  }

  .lp-product__panel {
    width: 100%;
    max-width: 1040px;
    padding: 80px 100px 40px;
    margin: 0 auto 30px;
  }

  .lp-product__panel::before,
  .lp-product__panel::after {
    width: 67px;
  }

  .lp-product__panel::before {
    background: url('../images/bg-product-l-pc.svg') no-repeat bottom center/cover;
  }

  .lp-product__panel::after {
    background: url('../images/bg-product-r-pc.svg') no-repeat bottom center/cover;
  }

  .lp-product__media--l {
    z-index: 2;
    position: absolute;
    width: 480px;
    top: -300px;
    left: calc(50% - 800px);
  }

  .lp-product__media--r {
    z-index: 2;
    position: absolute;
    width: 500px;
    top: -290px;
    right: calc(50% - 805px);
  }

  .lp-product__media--main {
    width: 500px;
    height: 320px;
    top: calc(0% - 25px - 160px);
    left: calc(50% + 20px - 250px)
  }

  .lp-product__media--logo {
    position: absolute;
    width: 360px;
    top: -160px;
    left: 35%;
    transform: translate(-50%, -50%);
  }

  .lp-product__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .lp-product__content {
    width: 50%;
    max-width: 410px;
    padding: 30px 30px 40px;
  }

  .lp-product__img {
    width: 48%;
  }

  .lp-product__img img{
    margin-right: 0;
  }


  .lp-product__title {
    text-align: left;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .lp-product__text {
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 2.5;
  }

  .lp-product__img img{
    max-width: calc(100% + 90px);
    margin-right: -90px;
  }

  .lp-product__img-spbt {
    max-width: 600px;
    margin: 0 auto;
  }

  .lp-map {
    padding: 20px 0 0;
  }

  .lp-map__heading {
    position: relative;
    padding: 20px 0 30px;
    margin-bottom: 30px;
  }

  .lp-map__heading-thunder {
    position: relative;
    z-index: 1;
    width: 100px;
    margin-top: -100px;
    margin-bottom: 10px;
  }

  .lp-map__nav {
    position: relative;
  }

  .lp-map__list {
    gap: 30px;
    max-width: 550px;
  }

  .lp-map__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 100px;
  }

  .lp-map__img {
    margin: -90px auto 0px;
  }

  .lp-play {
    padding: 100px 0 180px;
    margin-top: -20px;
  }

  .lp-play__heading {
    position: relative;
    z-index: 2;
    margin-bottom: -120px;
  }

  .lp-play__zakuzaku {
    position: absolute;
    top: -90px;
    left: calc(50% - 400px);
    width: 240px;
  }

  .lp-play__slider {
    position: relative;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .lp-play__slider .swiper-button-prev,
  .lp-play__slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    position: absolute;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    z-index: 10;
  }

  .lp-play__slider .swiper-button-prev {
    background-image: url('../images/icon-arrow-left-play-slider.png');
    left: calc(50% - 40vw - 20px);
    top: calc(50% + 20px);
  }

  .lp-play__slider .swiper-button-next {
    background-image: url('../images/icon-arrow-right-play-slider.png');
    right: calc(50% - 40vw - 20px);
    top: calc(50% + 20px);
  }

  .lp-play__slide {
    width: 80%;
    max-width: 1200px;
  }

  .lp-play__slide-inner {
    position: relative;
    padding: 120px 60px 40px;
  }

  .lp-play__img {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .lp-play__content {
    width: 100%;
    padding: 40px 30px;
    border-radius: 25px;
  }

  .lp-play__subtitle {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .lp-play__subtitle .txt--s {
    font-size: 25px;
  }

  .lp-play__subtitle .lp-icon-thunder {
    padding: 20px;
  }

  .lp-play__text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .lp-play__thumbs {
    max-width: 770px;
  }

  .lp-play__thumbs .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .lp-factory {
    margin-top: -120px;
    padding-top: 120px;
  }

  .lp-factory__panel {
    padding: 40px 0 100px;
    border-radius: 70px 70px 0px 0px;
  }

  .lp-factory__inner {
    position: relative;
    padding: 0px 20px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .lp-factory__title {
    margin-top: -150px;
    margin-bottom: 20px;
  }

  .lp-factory__topimg {
    position: relative;
    z-index: 20;
    width: 430px;
    margin-bottom: 0px;
    margin-left: 0;
  }

  .lp-factory__content {
    margin-bottom: 20px;
  }

  .lp-factory__subtitle {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
  }

  .lp-factory__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .lp-factory__slider {
    position: relative;
    padding-top: 0px;
    margin-top: -150px;
  }

  .lp-factory__slide {
    margin-bottom: 10px;
  }

  .lp-factory__slider .swiper-button-prev,
  .lp-factory__slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    position: absolute;
    top: calc(50% - 70px);
    z-index: 10;
  }

  .lp-factory__slider .swiper-button-prev {
    background-image: url('../images/icon-arrow-left-factory-slider.png');
    left: 0px;
  }

  .lp-factory__slider .swiper-button-next {
    background-image: url('../images/icon-arrow-right-factory-slider.png');
    right: 0px;
  }

  .lp-factory__slide-inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 80px 60px 40px;
    gap: 20px;
  }

  .lp-factory__content {
    margin-top: 100px;
    width: 45%;
  }

  .lp-factory__img {
    width: 55%;
  }

  .lp-factory__slider-wrapper {
    position: relative;
  }

  .lp-factory__thumbs {
    width: calc(50% + 10px);
    padding: 10px;
    position: absolute;
    bottom: -40px;
    right: 48px;
    margin: 0;
  }

  .lp-factory__thumbs .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
  }

  .lp-factory__thumbs .swiper-slide {
    width: 25%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 5px;
  }

  .lp-tour {
    padding: 100px 0 150px;
  }

  .lp-tour__heading {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .lp-tour__heading {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .lp-tour__heading-track {
    top: calc(50% - 110px);
    animation: slideLoopRight 50s linear infinite;
  }

  .lp-tour__heading-img {
    height: 220px;
  }

  .lp-tour__title {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0.3rem;
  }

  .lp-tour__content {
    position: relative;
    z-index: 1;
    padding: 0px 20px;
  }

  .lp-tour__object {
    position: relative;
    height: 80px;
  }

  .lp-tour__object-l,
  .lp-tour__object-r {
    position: absolute;
    width: 300px;
  }

  .lp-tour__object-l {
    top: calc(50% - 100px);
    left: 0;
  }

  .lp-tour__object-r {
    top: calc(50% - 100px);
    right: 0;
  }

  .lp-tour__list {
    max-width: 850px;
    margin: 0 auto 70px;
  }

  .lp-tour__item {
    border-top: 1px solid #d9d9d9;
    padding: 20px;
    display: flex;
    gap: 30px;
  }

  .lp-tour__subtitle {
    margin-bottom: 0px;
    width: 100px;
  }

  .lp-tour__index {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 750px;
    padding-left: 9%;
  }

  .lp-tour__schedule {
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .lp-tour__btn {
    max-width: 520px;
    margin: 0 auto;
  }

  .lp-tour__btn-logo {
    width: 330px;
    margin-bottom: -22px;
  }

  .lp-tour__btn-link {
    font-size: 30px;
    padding: 25px 0 25px 20px;
    border-radius: 100px;
    border: 16px solid var(--color-yellow);
  }

  .lp-tour__btn-arrow {
    width: 50px;
    margin-left: 10px;
  }

  .lp-shop {
    margin-top: -110px;
    padding-top: 110px;
  }

  .lp-shop__outer {
    padding: 0 0 40px;
    background: linear-gradient(180deg, #fff 0px,  #fff 90px, #363636 90px, #363636 100%);
  }

  .lp-shop__outer::before {
    top: 0px;
    background:
      url('../images/bg-shop-top.svg') repeat-x top center / 100% 90px;
  }

  .lp-shop__inner {
    padding: 160px 30px 40px;
    max-width: 1220px;
    margin: 0 auto;
  }

  .lp-shop__wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 45px;
  }

  .lp-shop__content {
    width: 42%;
  }

  .lp-shop__img {
    width: 58%;
  }

  .lp-shop__title {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .lp-shop__logo {
    width: 255px;
    margin-bottom: 45px;
  }

  .lp-shop__subtitle {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
    padding-left: 0px;
  }

  .lp-shop__text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 10px;
    padding-left: 5px;
  }

  .lp-shop__slider {
    height: 190px;
  }

  .lp-shop__slide {
    padding: 10px;
  }

  .lp-shop__slide img {
    border-radius: 20px;
  }

  .lp-toyohashi {
    position: relative;
    background: #EAE1D0;
    padding: 20px 0 40px;
  }

  .lp-toyohashi__inner {
    padding: 0px 30px;
  }

  .lp-toyohashi__bg {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
  }

  .lp-toyohashi__title {
    max-width: 440px;
    margin: 0 auto 30px;
  }

  .lp-toyohashi__wrapper {
    display: flex;
    justify-content: center;
    max-width: 1500px;
    gap: 40px;
    margin: 0 auto;
  }

  .lp-toyohashi__map {
    margin-top: -150px;
    margin-bottom: 30px;
    width: 45%;
  }

  .lp-toyohashi__content {
    width: 55%;
  }

  .lp-toyohashi__subtitle {
    font-size: 3.2vw;
    margin-bottom: 20px;
  }

  .lp-toyohashi__text {
    display: block;
    max-width: 530px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .lp-toyohashi__img {
    max-width: calc(100% + 30px);
    margin-left: 0;
    margin-right: -30px;
  }

  .lp-access {
    background: #EAE1D0;
    padding: 70px 0 80px;
  }

  .lp-access__wrapper {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 20px;
  }

  .lp-access__map {
    width: 50%;
    aspect-ratio: 3/2;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
  }

  .lp-access__map-iframe {
    width: 100%;
    height: 100%;
  }

  .lp-access__info {
    width: 50%;
    padding-left: 60px;
    margin-bottom: 50px;
  }

  .lp-access__info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #0f0f0f;
  }

  .lp-access__logo {
    width: 400px;
    margin: 0 0 40px;;
  }

  .lp-access__icon {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  .lp-access__train {
    width: 50%;
  }

  .lp-access__car {
    width: 50%;
    padding-left: 60px;
  }

  .lp-access__info-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .lp-access__img {
    display: block;
    margin-left: 0px;
    padding-left: 40px;
    margin-bottom: 0;
  }

  .lp-faq {
    background: #F7F3EC;
    padding: 80px 20px 80px;
  }

  .lp-faq__list {
    max-width: 960px;
    margin: 0 auto;
  }

  .lp-faq__item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 16px;
    padding: 30px 0 0;
    overflow: hidden;
  }

  .lp-faq__item.lp-faq__item--open {
    padding-bottom: 30px;
  }

  .lp-faq__question {
    display: flex;
    padding: 0px 40px 0px 30px;
    cursor: pointer;
    position: relative;
    font-weight: 700;
  }

  .lp-faq__question .lp-faq__text{
    font-size: 20px;
  }

  .lp-faq__label {
    font-size: 41px;
    font-weight: bold;
    margin-right: 20px;
    line-height: 0.8;
  }

  .lp-faq__label--question {
    color: #EF001E;
  }

  .lp-faq__label--answer {
    display: flex;
    align-items: center;

  }

  .lp-faq__text {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
  }

  .lp-faq__question::after {
    content: '+';
    font-size: 20px;
    color: #EF001E;
    position: absolute;
    right: 16px;
    top: calc(50% - 5px);
    transform: translateY(-50%);
  }

  .lp-faq__answer {
    display: flex;
    padding: 0px 40px 0px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 0;
    margin-top: 25px;
    transition: height 300ms ease;
  }

  .lp-faq__item--open .lp-faq__question::after {
    content: '−';
  }

  .lp-contact {
    background: url('../images/bg-contact-pc.jpg') no-repeat center center/cover;
    padding: 40px 40px 60px;
  }

  .lp-contact__inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .lp-contact__title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .lp-contact__title span {
    font-size: 60px;
    letter-spacing: 0.5rem;
    line-height: 1.2;
  }

  /* .lp-contact__tel {
    font-size: 38px;
    margin-bottom: 0px;
  } */

  .lp-contact__email {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .lp-contact__time {
    margin-bottom: 30px;
  }

  .lp-contact__text {
    font-size: 14px;
  }

  .lp-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 40px;
    max-width: 1040px;
    margin: 0 auto;
  }

  .lp-footer__nav {
    text-align: left;
    order: 1;
    width: 45%;
    padding-left: 30px;
  }

  .lp-footer__group {
    order: 0;
    width: 50%;
  }

  .lp-footer__logo {
    display: block;
    max-width: 435px;
    margin-bottom: 30px;
  }

  .lp-footer__address {
    max-width: none;
    font-size: 16px;
  }

  .lp-footer__links {
    max-width: 250px;
    margin: 0;
  }

  .lp-footer__links .btn span {
    padding: 5px;
  }

  .lp-footer__copy {
    width: 45%;
    padding-left: 30px;
    order: 3;
    font-size: 16px;
    text-align: center;
    margin: -40px 0 0 auto;
  }

  .lp-sticky-cta {
    left: auto;
    bottom: 30px;
    right: 30px;
    width: 200px;
    height: 280px;
    transform: none;
  }

  .lp-sticky-cta img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
  }

  .lp-sticky-cta .normal,
  .lp-sticky-cta .hover {
    opacity: 0;
  }

  .lp-sticky-cta.is-visible .normal {
    opacity: 1;
    z-index: 1;
  }

  .lp-sticky-cta.is-visible .hover {
    opacity: 0;
    z-index: 2;
  }

  .lp-sticky-cta.is-visible:hover .normal {
    opacity: 0;
  }

  .lp-sticky-cta.is-visible:hover .hover {
    opacity: 1;
  }
}

@media screen and (min-width: 1200px) {
  .lg {
    display: block;
  }

  .lp-header__logo {
    max-width: 270px;
  }

  .lp-gnav__list {
    font-size: 17px;
  }

  .lp-gnav__item {
    padding: 10px;
  }

  .lp-play__zakuzaku {
    left: calc(50% - 600px);
  }

  .lp-play__slide-inner {
    flex-direction: row;
    align-items: start;
    padding: 120px 60px 40px;
    height: 100%;
  }

  .lp-play__img {
    position: relative;
    width: 50%;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-left: 0;
  }

  .lp-play__content {
    width: 62%;
    margin-left: -5%;
    margin-top: 30px;
    padding: 40px 40px 30px 80px;
    border-radius: 25px;
    height: calc(100% - 30px);
  }

  .lp-play__subtitle {
    font-size: 30px;
  }

  .lp-factory__slide-inner {
    align-items: flex-start;
  }

  .lp-factory__slider .swiper-button-prev,
  .lp-factory__slider .swiper-button-next {
    top: calc(50% - 55px);
  }

  .lp-tour__index {
    padding-left: 108px;
  }

  .lp-toyohashi__subtitle {
    font-size: 35px;
  }

  .lp-map__img {
    padding-right: 70px;
  }
}

@media screen and (min-width: 1330px) {
  .lp-play__subtitle {
    font-size: 36px;
  }
}

@media screen and (min-width: 1500px) {
  .lp-play__slider .swiper-button-prev {
    left: calc(50% - 620px);
  }
  .lp-play__slider .swiper-button-next {
    right: calc(50% - 620px);
  }
}

