@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
:root {
  --zIndex: 100;
  --zIndex-main: calc(var(--zIndex) * 1);
  --zIndex-headerCta: calc(var(--zIndex) * 2);
  --zIndex-header: calc(var(--zIndex) * 3);
  --zIndex-menu: calc(var(--zIndex) * 4);
  --zIndex-menuBtn: calc(var(--zIndex) * 5);
  --zIndex-fixedBtn: calc(var(--zIndex) * 6);
  --zIndex-headerLogo: calc(var(--zIndex) * 7);
  --zIndex-overlay: calc(var(--zIndex) * 8);
  --zIndex-background: calc(var(--zIndex) - 101);
  --color-main: #111111;
  --color-white: #fff;
  --color-gray: #555a5f;
  --color-gray-light: #A3A3A3;
  --color-black: #000000;
  --color-placeholder: #C3C3C3;
  --color-blue: #02398e;
  --color-lightblue: #3c8aff;
  --fontColor-base: #111111;
  --background-blue: #02398e;
  --background-lightblue: #3c8aff;
  --background-lightGray: #f0f3f6;
  --background-gray: #555a5f;
  --background-white: #FFFFFF;
  --background-black: #111111;
  --background-blue-rgb: 2,57,142;
  --background-lightblue-rgb: 60,138,255;
  --background-lightGray-rgb: 247,247,247;
  --background-gray-rgb: 85,90,95;
  --background-white-rgb: 255,255,255;
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --fontFamily-en: "Poppins", sans-serif;
  --fontFamily-accent: "Montserrat", sans-serif;
  --fontFamily-phone: "Figtree", sans-serif;
  --lineHeight-base: calc(30 / 14);
  --fontSize-base: 1.4rem;
  --fontWeight-base: 500;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 800;
}

/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 430px) {
  html {
    font-size: 2.3255813953vw;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
}

a {
  text-decoration: none;
  color: var(--fontColor-base);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 539px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 540px) {
  .pc {
    display: none !important;
  }
}
/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  display: none;
  max-width: 540px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: var(--zIndex-header);
  height: 7.5rem;
}
@media screen and (max-width: 1024px) {
  .l-header {
    display: block;
    transition: all 0.4s ease-in-out;
    height: 17.4074074074vw;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  padding: 1.5rem 0 0 1.6rem;
  position: relative;
  z-index: var(--zIndex-headerLogo);
}
@media screen and (max-width: 430px) {
  .l-header__logo {
    padding: 0;
    width: 27.7777777778vw;
    top: 4.5vw;
    left: 5vw;
  }
}
.l-header__logo a {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__logo a {
    display: block;
  }
}
.l-header__logo img {
  width: 13.8rem;
}
.l-header__logoImgWhite {
  display: block;
}
.l-header__logoImgColor {
  display: none;
}
.l-header__gnav {
  display: none;
}
.l-header__gnav.menu_isOpen {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  overflow-y: scroll;
  padding: 0 1.6rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--zIndex-menu);
  width: 100%;
  height: 100vh;
  background-color: var(--background-lightGray);
}
@media screen and (max-width: 1024px) {
  .l-header__gnav.menu_isOpen {
    padding: 7rem 0;
  }
  .l-header__gnav.menu_isOpen::before {
    content: "";
    display: block;
    width: 100%;
    height: 7rem;
    background-color: var(--background-lightGray);
    position: fixed;
    top: 0;
    left: 0;
  }
}
.l-header__btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__btn {
    display: block;
    position: absolute;
    top: 3rem;
    right: 1rem;
    left: auto;
    transform: translateY(-50%);
    z-index: var(--zIndex-menuBtn);
  }
}
@media screen and (max-width: 1024px) and (max-width: 430px) {
  .l-header__btn {
    top: 7vw;
    right: 4vw;
  }
}
.l-header__snsList {
  display: flex;
  margin-top: 3rem;
  justify-content: center;
}
.l-header__snsItem {
  margin-right: 20px;
}
.l-header__tel {
  font-size: 2.8rem;
  font-family: var(--fontFamily-en);
  text-align: center;
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.l-header__tel::before {
  display: inline-block;
  content: "";
  width: 2.4rem;
  height: 3.1rem;
  background: url(../../assets/images/common/i_tel.svg) no-repeat center center/contain;
}
.l-header--underPage .l-header__logoImgWhite, .l-header.is-afterMv .l-header__logoImgWhite {
  display: none;
}
.l-header--underPage .l-header__logoImgColor, .l-header.is-afterMv .l-header__logoImgColor {
  display: block;
}
.l-header--underPage .c-btnMenu__bar, .l-header.is-afterMv .c-btnMenu__bar {
  background: var(--color-black);
}
.l-header--underPage .c-btnMenu__bar::before, .l-header--underPage .c-btnMenu__bar::after, .l-header.is-afterMv .c-btnMenu__bar::before, .l-header.is-afterMv .c-btnMenu__bar::after {
  background: var(--color-black);
}
.l-header--underPage .c-btnMenu__txt, .l-header.is-afterMv .c-btnMenu__txt {
  color: var(--color-black);
}
.l-header--underPage {
  background-color: initial;
}
@media screen and (max-width: 1024px) {
  .l-header._scrolled {
    background-color: var(--color-white);
  }
}
.l-header._scrolled .l-header__logoImgWhite {
  display: none;
}
.l-header._scrolled .l-header__logoImgColor {
  display: block;
}
.l-header._scrolled .c-btnMenu__bar {
  background: var(--color-black);
}
.l-header._scrolled .c-btnMenu__bar::before, .l-header._scrolled .c-btnMenu__bar::after {
  background: var(--color-black);
}
.l-header._scrolled .c-btnMenu__txt {
  color: var(--color-black);
}

._menu_isOpen .l-header__logoImgWhite {
  display: none;
}
._menu_isOpen .l-header__logoImgColor {
  display: block;
}

/* l-wrapper */
.l-wrapper {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    position: initial;
    height: auto;
  }
}

.l-main {
  left: 438px;
  position: relative;
  width: calc(100% - 438px);
}

/* l-main */
.l-main {
  left: 438px;
  position: relative;
  width: calc(100% - 438px);
}
@media screen and (max-width: 1024px) {
  .l-main {
    left: 0;
    width: 100%;
  }
}

/* l-menu */
.l-menu {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  width: 438px;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.l-menu::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-menu {
    display: none;
  }
}
.l-menu__logo {
  width: 153px;
  margin: 75px auto;
}
.l-menu__ctaList {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-menu__ctaList {
    width: 100%;
    margin: 0 auto 5rem auto;
  }
}
.l-menu__ctaLink {
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0.125em;
  color: var(--color-white);
  padding: 1.8rem 3rem;
  font-size: 1.7rem;
  transition: 0.4s;
}
@media screen and (max-width: 540px) {
  .l-menu__ctaLink {
    padding: 1.8rem 2rem;
  }
}
@media screen and (max-width: 430px) {
  .l-menu__ctaLink {
    font-size: 3.8888888889vw;
  }
}
.l-menu__ctaLink::before {
  display: inline-block;
  content: "";
  margin-right: 1rem;
}
.l-menu__ctaLink--catalog {
  background-color: rgba(var(--background-blue-rgb));
}
.l-menu__ctaLink--catalog:hover {
  background-color: rgba(var(--background-blue-rgb), 0.8);
}
.l-menu__ctaLink--catalog::before {
  width: 1.8rem;
  height: 1.5rem;
  background: url(../../assets/images/common/i_mail_w.svg) no-repeat center center/contain;
}
.l-menu__ctaLink--consultation {
  background-color: rgba(var(--background-lightblue-rgb));
}
.l-menu__ctaLink--consultation:hover {
  background-color: rgba(var(--background-lightblue-rgb), 0.8);
}
.l-menu__ctaLink--consultation::before {
  width: 1.8rem;
  height: 1.5rem;
  background: url(../../assets/images/common/i_home_w.svg) no-repeat center center/contain;
}
.l-menu__navArea {
  margin-top: 6.5rem;
}
.l-menu__navList {
  width: 350px;
  border-top: 1px solid #d0d7d7;
  border-bottom: 1px solid #d0d7d7;
  padding: 3rem 0 3rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .l-menu__navList {
    width: 100%;
  }
}
.l-menu__navItem {
  position: relative;
}
.l-menu__navItem:hover .l-menu__navLink__hover::before {
  width: 100%;
}
.l-menu__navItem a {
  display: block;
}
.l-menu__navItem::after {
  width: 2rem;
  height: 2rem;
  background: url(../../assets/images/common/i_arrow_menu.svg) no-repeat center center/contain;
  content: "";
  position: absolute;
  right: 3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}
.l-menu__navLink {
  font-size: 1.7rem;
  line-height: 2.8;
  padding: 0 0 0 3rem;
  font-weight: var(--fontWeight-semiBold);
}
@media screen and (max-width: 430px) {
  .l-menu__navLink {
    padding: 0 0 0 2rem;
    font-size: 16px;
  }
}
.l-menu__navLink__hover {
  position: relative;
  text-decoration: none;
  transition: 0.4s;
}
@media screen and (max-width: 430px) {
  .l-menu__navLink__hover {
    position: initial;
  }
}
.l-menu__navLink__hover::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--background-black);
  transition: 0.4s;
}
.l-menu__navBnr {
  width: 350px;
  margin: 5rem auto;
  transition: 0.4s;
}
@media screen and (max-width: 430px) {
  .l-menu__navBnr {
    width: 100%;
  }
}
.l-menu__navBnr:hover {
  opacity: 0.85;
}
.l-menu__body {
  font-size: 1.6rem;
  margin-top: 4.5rem;
  text-align: center;
  line-height: 1.7;
}
.l-menu__tel {
  font-family: var(--fontFamily-phone);
  font-weight: var(--fontWeight-semiBold);
  font-size: 3.6rem;
}
.l-menu__tel a {
  color: var(--fontColor-base);
}
.l-menu__tel::before {
  display: inline-block;
  content: "TEL .";
  font-size: 2.6rem;
}
.l-menu__privacy {
  margin-top: 2.5rem;
  color: var(--fontColor-base);
}
.l-menu__privacyLink {
  text-decoration: underline;
}
.l-menu__snsList {
  margin: 6rem auto;
  display: flex;
  justify-content: center;
}
.l-menu__snsItem {
  border-radius: 50%;
  display: block;
  background-color: var(--color-black);
  transition: 0.4s;
  margin: 0 0.5rem;
}
.l-menu__snsItem:hover {
  background-color: var(--color-blue);
}

.c-gnav .l-menu__navItem {
  position: initial;
  display: block;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 6rem 2rem;
  background-image: url(../../assets/images/common/i_arrow_menu.svg);
}

.c-gnav .l-menu__navItem::after {
  content: none;
}

.c-gnav .l-menu__navItem::after {
  position: initial;
}

.c-gnav .l-menu__navLink__hover::before {
  content: none;
}

.c-gnav .l-menu__navLink__hover {
  position: initial;
}

/* l-btn */
.l-btn__ctaBody {
  left: 438px;
  position: relative;
  width: calc(100% - 438px);
  position: fixed;
  top: auto;
  bottom: 2rem;
  z-index: var(--zIndex-fixedBtn);
}
.l-btn__ctaBody._menu_isOpen {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-btn__ctaBody {
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
  }
}
.l-btn__ctaArea {
  width: 88%;
  max-width: 480px;
  margin: 0 auto;
}
.l-btn__ctaList {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-btn__ctaItem {
  width: 100%;
}
.l-btn__ctaLink {
  text-align: center;
  letter-spacing: 0.125em;
  color: var(--color-white);
  padding: 1.5rem 0;
  font-size: 2rem;
  transition: 0.4s;
  width: 100%;
  display: block;
}
@media screen and (max-width: 540px) {
  .l-btn__ctaLink {
    font-size: 3.7037037037vw;
  }
}
.l-btn__ctaLink::before {
  display: inline-block;
  content: "";
  margin-right: 1rem;
}
.l-btn__ctaLink--catalog {
  border-radius: 5px 0px 0px 5px;
  background-color: rgba(var(--background-blue-rgb));
}
.l-btn__ctaLink--catalog:hover {
  background-color: rgba(var(--background-blue-rgb), 0.8);
}
.l-btn__ctaLink--catalog::before {
  width: 2.4rem;
  height: 1.9rem;
  background: url(../../assets/images/common/i_mail_w.svg) no-repeat center center/contain;
}
@media screen and (max-width: 540px) {
  .l-btn__ctaLink--catalog::before {
    width: 4.4444444444vw;
    height: 3.5185185185vw;
  }
}
.l-btn__ctaLink--consultation {
  border-radius: 0px 5px 5px 0px;
  background-color: rgba(var(--background-lightblue-rgb));
}
.l-btn__ctaLink--consultation:hover {
  background-color: rgba(var(--background-lightblue-rgb), 0.8);
}
.l-btn__ctaLink--consultation::before {
  width: 2.4rem;
  height: 2rem;
  background: url(../../assets/images/common/i_home_w.svg) no-repeat center center/contain;
}
@media screen and (max-width: 540px) {
  .l-btn__ctaLink--consultation::before {
    width: 4.4444444444vw;
    height: 3.5185185185vw;
  }
}

/* l-contents */
.l-contents__slide {
  height: 100%;
  width: calc(100% - 438px);
  top: 0;
  right: 0;
  z-index: var(--zIndex-background);
  position: fixed;
}
@media screen and (max-width: 1024px) {
  .l-contents__slide {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 430px) {
  .l-contents__slide {
    display: none;
  }
}

.swiper-container {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
}
.swiper-container .slide-img {
  width: 100%;
  height: 100%;
}
.swiper-container .slide-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* l-footer */
.l-footer {
  padding: 6.5rem 0 14rem;
  background-color: var(--background-gray);
  text-align: center;
}
.l-footer__logo {
  width: 17rem;
  margin: 0 auto;
}
.l-footer__instaArea {
  display: flex;
  align-items: center;
  margin-top: 6rem;
  gap: 1.5rem;
  justify-content: center;
}
.l-footer__body {
  font-size: 1.6rem;
  margin-top: 4.5rem;
  text-align: center;
  line-height: 1.7;
  color: var(--color-white);
}
@media screen and (max-width: 540px) {
  .l-footer__body {
    font-size: 2.962962963vw;
  }
}
.l-footer__tel {
  font-family: var(--fontFamily-phone);
  font-weight: var(--fontWeight-semiBold);
  font-size: 3.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 540px) {
  .l-footer__tel {
    font-size: 6.6666666667vw;
  }
  .l-footer__tel a {
    color: var(--color-white);
  }
}
.l-footer__tel::before {
  display: inline-block;
  content: "TEL .";
  font-size: 2.6rem;
}
@media screen and (max-width: 540px) {
  .l-footer__tel::before {
    font-size: 4.8148148148vw;
  }
}
.l-footer__privacy {
  margin-top: 2.5rem;
}
.l-footer__privacyLink {
  text-decoration: underline;
  color: var(--color-white);
}

/* l-inner */
.l-inner {
  width: 83%;
  max-width: 100%;
  margin: auto;
  background-color: red;
}

/* l-section */
.l-section {
  padding: 6rem 0 0 0;
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .l-section {
    width: 83.3333333333vw;
  }
}

/* c-site */
.c-site {
  max-width: 540px;
  width: 100%;
  overflow-y: scroll;
  position: relative;
  z-index: var(--zIndex-main);
  right: 0;
  left: 0;
  margin: auto;
  background-color: var(--color-white);
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.4);
}
.c-site::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-site {
    overflow-y: auto;
    margin: auto;
  }
}
.c-site__inner {
  display: none;
  display: flex;
  min-height: 100vh;
}
.c-site__inner.indexPage {
  min-height: auto;
}
.c-site__sideBar {
  display: none;
}
.c-site__content {
  width: 100%;
}

/* c-gnav*/
.c-gnav {
  padding: 5rem 0;
  width: 80vw;
  margin: 0 auto;
}
.c-gnav__list {
  display: flex;
  flex-direction: column;
}

/* c-btnMenu*/
.c-btnMenu {
  cursor: pointer;
  width: 5.2rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
}
.c-btnMenu__bar {
  display: inline-block;
  width: 74.0384615385%;
  height: 1.5px;
  background-color: var(--color-white);
  position: relative;
}
.c-btnMenu__bar::before, .c-btnMenu__bar::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu__bar::before {
  top: 0.9rem;
}
.c-btnMenu__bar::after {
  top: -0.9rem;
}
.c-btnMenu__txt {
  width: 100%;
  font-family: var(--fontFamily-en);
  color: var(--color-white);
  text-transform: capitalize;
  text-align: center;
  mix-blend-mode: difference;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
}
.c-btnMenu__txtOpen {
  display: block;
}
.c-btnMenu__txtClose {
  display: none;
}

/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar::before, .c-btnMenu.btnMenu_isOn .c-btnMenu__bar::after {
  top: 0;
  background-color: var(--color-black);
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar::before {
  transform: rotate(25deg);
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar::after {
  transform: rotate(-25deg);
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__txt {
  color: var(--color-black);
  font-family: var(--fontFamily-en);
  font-weight: var(--fontWeight-semiBold);
  letter-spacing: 0.075em;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__txtOpen {
  display: none;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__txtClose {
  display: block;
}

/* c-ttl*/
.c-ttl--center {
  text-align: center;
}
.c-ttl__ja {
  font-weight: var(--fontWeight-semiBold);
  font-size: 1.8rem;
  letter-spacing: 0.055em;
  line-height: 1.8;
  padding-top: 1.5rem;
}
@media screen and (max-width: 540px) {
  .c-ttl__ja {
    font-size: 3.3333333333vw;
    padding-top: 0.7rem;
  }
}
.c-ttl__en {
  font-family: var(--fontFamily-en);
  font-weight: var(--fontWeight-semiBold);
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  .c-ttl__en {
    font-size: 8.8888888889vw;
  }
}

.heading {
  background-color: #ff1111;
  color: #FFFFFF;
  display: inline;
  text-align: center;
  padding: 0.5rem 2rem;
}

.c_mttl {
  position: relative;
  font-size: 2.6rem;
  line-height: 1.5454545455;
  font-weight: var(--fontWeight-semiBold);
  padding: 2.5rem 0;
}
@media screen and (max-width: 540px) {
  .c_mttl {
    font-size: 5.3333333333vw;
    line-height: 1.55;
    padding: 4.5333333333vw 0;
  }
}
.c_mttl::before {
  position: absolute;
  content: "";
  width: 4rem;
  height: 0.3rem;
  background-color: var(--background-black);
  top: 0;
  left: 0;
}
@media screen and (max-width: 540px) {
  .c_mttl::before {
    width: 7.2vw;
    height: 0.5333333333vw;
  }
}

.c_sttl {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.6153846154;
  font-weight: var(--fontWeight-semiBold);
  margin-bottom: 0.2rem;
  padding: 1rem 0;
  border-bottom: 2px solid #d0d7d7;
}
@media screen and (max-width: 540px) {
  .c_sttl {
    font-size: 4.8vw;
    line-height: 1.5555555556;
    padding: 4.5333333333vw 0;
  }
}
.c_sttl::before {
  position: absolute;
  content: "";
  width: 7rem;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid var(--background-blue);
}
@media screen and (max-width: 540px) {
  .c_sttl::before {
    width: 12.8vw;
  }
}

.c_sttl2 {
  font-size: 1.9rem;
  line-height: 2.2105263158;
  font-weight: var(--fontWeight-semiBold);
  padding: 1rem 0;
  border-bottom: 1px solid #d0d7d7;
}
@media screen and (max-width: 540px) {
  .c_sttl2 {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}

.c-text {
  font-size: 1.9rem;
  line-height: 1.7142857143;
  font-weight: var(--fontWeight-medium);
}
@media screen and (max-width: 540px) {
  .c-text {
    font-size: 3.7333333333vw;
  }
}

/* c-btn */
.c-btn {
  display: inline-block;
  font-size: 2rem;
  color: var(--color-white);
  text-align: center;
  padding: 1.5rem 0;
  position: relative;
  background: var(--background-black);
  border: 2px solid var(--color-main);
  border-radius: 5px;
  transition: ease 0.3s;
  width: 450px;
  letter-spacing: 0.015em;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .c-btn {
    font-size: 3.7333333333vw;
    width: 82.9333333333vw;
    padding: 4.8vw 0;
  }
}
.c-btn span {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--background-white);
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: url(../../assets/images/common/i_arrow_w.svg) center right/3rem auto no-repeat;
  transition: all 0.3s;
  z-index: 3;
}
@media screen and (max-width: 540px) {
  .c-btn::after {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    right: 5.3333333333vw;
    background: url(../../assets/images/common/i_arrow_w.svg) center right/5.5555555556vw auto no-repeat;
  }
}
.c-btn:hover span {
  color: var(--fontColor-base);
}
.c-btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.c-btn:hover::after {
  background: url(../../assets/images/common/i_arrow_b.svg) center right/3rem auto no-repeat;
}
@media screen and (max-width: 540px) {
  .c-btn:hover::after {
    background: url(../../assets/images/common/i_arrow_b.svg) center right/5.5555555556vw auto no-repeat;
  }
}
.c-btn--color {
  color: var(--color-white);
  background-color: var(--color-main);
}
.c-btn--color::after {
  right: 1.2rem;
  background-image: url(../../assets/images/common/i_arrow_btn_w.svg);
}
.c-btn--color:hover::after {
  right: 0;
}
.c-btn--submit {
  cursor: pointer;
  width: 100%;
  font-size: 1.6rem;
  padding: 1.2rem;
  background-color: var(--color-main);
  color: var(--color-white);
  border: 1px solid var(--color-main);
}
@media screen and (max-width: 540px) {
  .c-btn--submit {
    font-size: 2.962962963vw;
  }
}
.c-btn--submit::before {
  background-image: url(../../assets/images/common/i_arrow_btn_w.svg);
}

/* c-insta*/
.c-insta {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  background-color: var(--color-black);
}
@media screen and (max-width: 540px) {
  .c-insta {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}

.l-footer .c-insta {
  width: 64px;
  height: 64px;
  background-color: var(--color-white);
}

/* c-facebook*/
.c-facebook {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  background-color: var(--color-black);
}
@media screen and (max-width: 540px) {
  .c-facebook {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}

.l-footer .c-facebook {
  width: 64px;
  height: 64px;
  background-color: var(--color-white);
}

/* c-cartWorks*/
.c-cardWorks {
  display: block;
  color: var(--fontColor-base);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-cardWorks__imgArea {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.c-cardWorks__imgArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-cardWorks__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.c-cardWorks__txtArea {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.c-cardWorks__ttl {
  font-size: 2rem;
  line-height: 1.55;
  padding-top: 0.5rem;
}
@media screen and (max-width: 540px) {
  .c-cardWorks__ttl {
    font-size: 3.7037037037vw;
  }
}
.c-cardWorks__txt {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.2rem;
}
@media screen and (max-width: 540px) {
  .c-cardWorks__txt {
    font-size: 2.2222222222vw;
  }
}
.c-cardWorks__date {
  color: var(--color-main);
  font-size: 1.6rem;
  margin-left: 1rem;
  font-weight: var(--fontWeight-semiBold);
}
@media screen and (max-width: 540px) {
  .c-cardWorks__date {
    font-size: 2.962962963vw;
  }
}

/* c-cardNews */
.c-cardNews {
  display: flex;
  gap: 2rem;
}
.c-cardNews__imgArea {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 130px;
}
@media screen and (max-width: 540px) {
  .c-cardNews__imgArea {
    width: 24.0740740741vw;
  }
}
.c-cardNews__imgArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-cardNews__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.c-cardNews__date {
  font-family: var(--fontFamily-en);
  font-weight: var(--fontWeight-semiBold);
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  .c-cardNews__date {
    font-size: 2.962962963vw;
  }
}
.c-cardNews__ttl {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: var(--fontWeight-regular);
}
@media screen and (max-width: 540px) {
  .c-cardNews__ttl {
    font-size: 3.3333333333vw;
  }
}

/* c-cardLineup*/
.c-cardLineup {
  display: block;
  color: var(--fontColor-base);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-cardLineup__imgArea {
  width: 100%;
  position: relative;
}
.c-cardLineup__imgArea .casa-cubu {
  position: absolute;
  right: 2rem;
  bottom: -8rem;
  width: 21rem;
}
@media screen and (max-width: 540px) {
  .c-cardLineup__imgArea .casa-cubu {
    width: 38.8888888889vw;
  }
}
.c-cardLineup__imgArea .fullorder {
  position: absolute;
  right: 0;
  bottom: -7rem;
  width: 28.5rem;
}
@media screen and (max-width: 540px) {
  .c-cardLineup__imgArea .fullorder {
    width: 52.7777777778vw;
  }
}
.c-cardLineup__txtArea {
  margin-top: 4rem;
}
@media screen and (max-width: 540px) {
  .c-cardLineup__txtArea {
    width: 83.3333333333vw;
  }
}
.c-cardLineup__ttl {
  font-size: 4rem;
  font-family: var(--fontFamily-en);
  font-weight: var(--fontWeight-semiBold);
  line-height: 1;
}
@media screen and (max-width: 540px) {
  .c-cardLineup__ttl {
    font-size: 7.4074074074vw;
  }
}
.c-cardLineup__txt {
  font-size: 2rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 2.5;
  margin-top: 0.5rem;
}
@media screen and (max-width: 540px) {
  .c-cardLineup__txt {
    font-size: 3.7037037037vw;
  }
}

.c-cardPoint__ttl {
  border-bottom: 1px solid #d0d7d7;
  font-size: 1.9rem;
  padding-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2em;
  padding-bottom: 1rem;
}
@media screen and (max-width: 540px) {
  .c-cardPoint__ttl {
    font-size: 15px;
  }
}
.c-cardPoint__ttl::before {
  content: "";
  display: inline;
  width: 1em;
  height: 1em;
  background: url(../../assets/images/common/i_arrow_g.svg) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.c-cardPoint__mttl {
  font-size: 1.9rem;
  padding-bottom: 0.3rem;
  position: relative;
  padding-left: 1.2em;
  padding-bottom: 1rem;
  line-height: 1.6842105263;
}
@media screen and (max-width: 540px) {
  .c-cardPoint__mttl {
    font-size: 15px;
  }
}
.c-cardPoint__mttl::before {
  content: "";
  display: inline;
  width: 1em;
  height: 1em;
  background: url(../../assets/images/common/i_arrow_g.svg) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0.3em;
}
.c-cardPoint__sttl {
  font-size: 1.7rem;
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8823529412;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 540px) {
  .c-cardPoint__sttl {
    font-size: 14px;
  }
}
.c-cardPoint__sttl::before {
  content: "";
  display: inline;
  width: 1em;
  height: 1em;
  background: url(../../assets/images/common/i_arrow_g.svg) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0.3em;
}
.c-cardPoint__txt {
  padding-top: 1rem;
  font-size: 1.7rem;
  line-height: 1.8823529412;
}
@media screen and (max-width: 540px) {
  .c-cardPoint__txt {
    font-size: 14px;
  }
}

.c-cardLineup__list {
  margin: 4rem 0;
}
@media screen and (max-width: 540px) {
  .c-cardLineup__list {
    margin: 2rem 0;
  }
}
.c-cardLineup__list-item {
  background-color: #555a5f;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 0;
  font-weight: var(--fontWeight-semiBold);
}
@media screen and (max-width: 540px) {
  .c-cardLineup__list-item {
    font-size: 3.7037037037vw;
  }
}
.c-cardLineupBtn {
  margin: 3rem 0;
}

.c-cardPlan__block {
  padding: 1.5rem 0 0 0;
}

/* c-cardVoice*/
.c-cardVoice {
  display: block;
  color: var(--fontColor-base);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-cardVoice__imgArea {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.c-cardVoice__imgArea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-cardVoice__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.c-cardVoice__txtArea {
  margin-top: 2rem;
}
@media screen and (max-width: 540px) {
  .c-cardVoice__txtArea {
    width: 83.3333333333vw;
  }
}
.c-cardVoice__ttl {
  font-size: 2rem;
  line-height: 2.5;
  margin-top: 0.5rem;
}
@media screen and (max-width: 540px) {
  .c-cardVoice__ttl {
    font-size: 3.7037037037vw;
  }
}

/* c-cardFlow */
.c-cardFlow__Area {
  margin-bottom: 5rem;
}
.c-cardFlow__num {
  font-size: 3.2rem;
  font-family: var(--fontFamily-en);
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-blue);
}
.c-cardFlow__body {
  background-color: var(--background-white);
  padding: 2.5rem 3rem;
}
.c-cardFlow__txt {
  padding-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 540px) {
  .c-cardFlow__txt {
    font-size: 13px;
  }
}

/* c-tag */
.c-tag {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--color-main);
  border: 1.5px solid var(--color-main);
  padding: 0.2rem 1rem;
  background-color: var(--background-white);
}
@media screen and (max-width: 540px) {
  .c-tag {
    font-size: 2.5925925926vw;
  }
}

/* c-support*/
.c-support__navArea {
  width: 450px;
  margin: 3rem auto;
}
@media screen and (max-width: 540px) {
  .c-support__navArea {
    width: 83.3333333333vw;
    margin: 2rem auto;
  }
}
.c-support__navList {
  display: flex;
  flex-direction: column;
}
.c-support__navLink {
  border-bottom: 1px solid #d0d7d7;
  padding: 2.5rem 1.5rem;
  font-size: 1.8rem;
  font-weight: var(--fontWeight-semiBold);
  display: block;
  position: relative;
}
.c-support__navLink:hover .c-support__navLink__hover::before {
  width: 100%;
}
@media screen and (max-width: 540px) {
  .c-support__navLink {
    font-size: 15px;
  }
}
.c-support__navLink__hover {
  position: relative;
  text-decoration: none;
  transition: 0.4s;
}
@media screen and (max-width: 430px) {
  .c-support__navLink__hover {
    position: inherit;
  }
}
.c-support__navLink__hover::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--background-black);
  transition: 0.4s;
}
.c-support__navLink::after {
  width: 3rem;
  height: 3rem;
  background: url(../../assets/images/common/i_arrow_blue.svg) no-repeat center center/contain;
  content: "";
  position: absolute;
  right: 2.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .c-support__navLink::after {
    width: 5.5555555556vw;
    height: 5.5555555556vw;
  }
}

/* c-table */
.c-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--fontFamily-accent);
  font-size: 1.2rem;
  line-height: 1.8333333333;
}
.c-table--singleWork, .c-table--singleEvent {
  border-top: 1px solid var(--background-lightGray);
  border-right: 1px solid var(--background-lightGray);
}
.c-table tbody {
  background-color: var(--color-white);
}
.c-table tbody tr {
  border-bottom: 1px solid var(--background-lightGray);
}
.c-table tbody th {
  height: 5rem;
  width: 11.6rem;
  padding: 1rem 1.4rem;
  text-align: left;
  font-weight: var(--fontWeight-regular);
  background-color: var(--background-gray);
}
.c-table tbody td {
  padding: 1rem 1.4rem;
}

/* c-sns*/
.c-insta, .c-facebook {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* c-anime */
.c-anime {
  opacity: 0;
  transition-duration: 1.2s;
  transition-timing-function: ease;
  animation-delay: 0.4s;
}
.c-anime--fadeUp {
  transform: translateY(50px);
}
.c-anime--delay {
  transition-delay: 0.6s;
}
.c-anime--delay2 {
  transition-delay: 1s;
}
.c-anime--delay3 {
  transition-delay: 1.4s;
}
.c-anime.start {
  opacity: 1;
  transform: translateY(0);
}

/* c-breadcrumb*/
.c-breadcrumb {
  font-size: 1.3rem;
}
.c-breadcrumb__link {
  display: inline-block;
  color: #b7b7b7;
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}
.c-breadcrumb__link:not(:first-child) {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
}
.c-breadcrumb__link:not(:first-child)::before {
  content: "＞";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%);
  color: #b7b7b7;
}
.c-breadcrumb__txt {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
}
.c-breadcrumb__txt::before {
  content: "＞";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%);
  color: #b7b7b7;
}

/* c-pagenation */
.c-pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 5rem;
}
.c-pagenation li {
  font-family: var(--fontFamily-en);
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.6rem;
}
.c-pagenation li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
}
.c-pagenation li a.next, .c-pagenation li a.prev {
  color: var(--color-gray-light);
}
.c-pagenation li span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagenation li .current {
  border-radius: 50px;
  background-color: var(--background-lightGray);
}

/* c-cartEvent*/
.c-cardEvent {
  display: block;
  color: var(--fontColor-base);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-cardEvent__imgArea {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 354/235;
}
.c-cardEvent__imgArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-cardEvent__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0rem 3rem 0rem 3rem;
}
.c-cardEvent__txtArea {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.8rem !important;
}
.c-cardEvent__ttl {
  font-size: 2rem;
  line-height: 1.55;
  padding-top: 0.5rem;
}
@media screen and (max-width: 540px) {
  .c-cardEvent__ttl {
    font-size: 3.7037037037vw;
  }
}
.c-cardEvent__txt {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.2rem;
}
@media screen and (max-width: 540px) {
  .c-cardEvent__txt {
    font-size: 2.2222222222vw;
  }
}
.c-cardEvent__date {
  color: var(--color-main);
  font-size: 1.6rem;
  margin-left: 1rem;
  font-weight: var(--fontWeight-semiBold);
}
@media screen and (max-width: 540px) {
  .c-cardEvent__date {
    font-size: 2.962962963vw;
  }
}

/* c-copyright */
.c-copyright {
  font-size: 1.3rem;
  padding-top: 6rem;
  text-align: center;
  font-family: var(--fontFamily-phone);
  font-weight: var(--fontWeight-regular);
  color: var(--color-white);
}
@media screen and (max-width: 540px) {
  .c-copyright {
    font-size: 2.4074074074vw;
    padding-top: 4rem;
  }
}

/* p-mv */
.p-mv {
  color: var(--color-white);
  position: relative;
}
.p-mv__inner {
  max-width: 105.9rem;
  padding: 0 1.6rem;
  margin: auto;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.p-mv__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (max-width: 430px) {
  .p-mv__inner::before {
    height: 98.5%;
  }
}
.p-mv__txt {
  font-size: 2.6rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7307692308;
  letter-spacing: 0.115em;
  position: initial;
  top: 0;
  left: 0;
  transform: none;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 430px) {
  .p-mv__txt {
    font-size: 4.8148148148vw;
  }
}
.p-mv__sliderArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.p-mv__sliderArea::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.p-mv__sliderArea .swiper {
  width: 100%;
  height: 100%;
}
.p-mv__sliderArea .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.p-mv__sliderArea .swiper-slide {
  width: 100%;
  height: 100%;
}
.p-mv__sliderArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mv .videoArea {
  padding: 166.67% 0 0 0;
  position: relative;
}
.p-mv .videoArea .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-mv .swiper-container {
  position: relative;
}
.p-mv .swiper-paginationMv {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}
.p-mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0;
}
.p-mv .swiper-pagination-bullet {
  background-color: var(--background-white);
  height: 10px;
  width: 10px;
}

/* p-eventTop */
.p-eventTop {
  width: 495px;
  margin: 5rem 0 0 auto;
}
@media screen and (max-width: 540px) {
  .p-eventTop {
    width: 91.6666666667vw;
  }
}
.p-eventTop__btnArea {
  margin: 8rem auto 0;
}
.p-eventTop .swiper-container {
  width: initial;
  height: initial;
  position: relative;
}
.p-eventTop .swiper-container .slide-img {
  width: auto;
  height: auto;
}
.p-eventTop .swiper-button-prevEvents,
.p-eventTop .swiper-button-nextEvents {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.p-eventTop .swiper-button-prevEvents.swiper-button-disabled,
.p-eventTop .swiper-button-nextEvents.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.p-eventTop .swiper-button-prevEvents.swiper-button-hidden,
.p-eventTop .swiper-button-nextEvents.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.p-eventTop .swiper-navigation-disabled .swiper-button-prevEvents,
.p-eventTop .swiper-navigation-disabled .swiper-button-nextEvents {
  display: none !important;
}
.p-eventTop .swiper-button-prevEvents,
.p-eventTop .swiper-rtl .swiper-button-nextEvents {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.p-eventTop .swiper-button-nextEvents,
.p-eventTop .swiper-rtl .swiper-button-prevEvents {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.p-eventTop .swiper-button-prevEvents, .p-eventTop .swiper-button-nextEvents {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-main);
  top: 2.5rem;
}
.p-eventTop .swiper-button-prevEvents::after, .p-eventTop .swiper-button-nextEvents::after {
  content: "";
}
.p-eventTop .swiper-button-prevEvents {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  transform: rotate(180deg);
  left: auto;
  right: 10rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-eventTop .swiper-button-prevEvents {
    top: -10rem;
  }
}
.p-eventTop .swiper-button-nextEvents {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  right: 3.5rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-eventTop .swiper-button-nextEvents {
    top: -10rem;
  }
}
.p-eventTop .swiper-paginationEvents {
  bottom: -4.5rem !important;
  left: -22.5px !important;
}
@media screen and (max-width: 430px) {
  .p-eventTop .swiper-paginationEvents {
    left: -4.1666666667vw !important;
  }
}
.p-eventTop .swiper-paginationEvents {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.p-eventTop .swiper-paginationEvents.swiper-pagination-hidden {
  opacity: 0;
}
.p-eventTop .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-eventTop .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0;
}
.p-eventTop .swiper-pagination-bullet {
  background-color: var(--background-black);
  height: 10px;
  width: 10px;
}
.p-eventTop .swiper-slide img {
  height: auto;
  width: 100%;
}

/* p-lineupTop */
.p-lineupTop {
  width: 100%;
  margin: 5rem 0 0 0;
}
.p-lineupTop__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-lineupTop__inner {
    width: 83.3333333333vw;
  }
}
.p-lineupTop__btnArea {
  margin: 10rem auto;
  width: 450px;
}
@media screen and (max-width: 540px) {
  .p-lineupTop__btnArea {
    width: 83.3333333333vw;
  }
}
.p-lineupTop .swiper-container {
  width: initial;
  height: initial;
  position: relative;
}
.p-lineupTop .swiper-container .slide-img {
  width: auto;
  height: auto;
}
.p-lineupTop .swiper-button-prevLineup,
.p-lineupTop .swiper-button-nextLineup {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.p-lineupTop .swiper-button-prevLineup.swiper-button-disabled,
.p-lineupTop .swiper-button-nextLineup.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.p-lineupTop .swiper-button-prevLineup.swiper-button-hidden,
.p-lineupTop .swiper-button-nextLineup.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.p-lineupTop .swiper-navigation-disabled .swiper-button-prevLineup,
.p-lineupTop .swiper-navigation-disabled .swiper-button-nextLineup {
  display: none !important;
}
.p-lineupTop .swiper-button-prevLineup,
.p-lineupTop .swiper-rtl .swiper-button-nextLineup {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.p-lineupTop .swiper-button-nextLineup,
.p-lineupTop .swiper-rtl .swiper-button-prevLineup {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.p-lineupTop .swiper-button-prevLineup, .p-lineupTop .swiper-button-nextLineup {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-main);
  top: 2.5rem;
}
.p-lineupTop .swiper-button-prevLineup::after, .p-lineupTop .swiper-button-nextLineup::after {
  content: "";
}
.p-lineupTop .swiper-button-prevLineup {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  transform: rotate(180deg);
  left: auto;
  right: 10rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-lineupTop .swiper-button-prevLineup {
    top: -10rem;
  }
}
.p-lineupTop .swiper-button-nextLineup {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  right: 3.5rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-lineupTop .swiper-button-nextLineup {
    top: -10rem;
  }
}
.p-lineupTop .swiper-paginationLineup {
  bottom: -4.5rem !important;
}
.p-lineupTop .swiper-paginationLineup {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.p-lineupTop .swiper-paginationLineup.swiper-pagination-hidden {
  opacity: 0;
}
.p-lineupTop .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-lineupTop .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0;
}
.p-lineupTop .swiper-pagination-bullet {
  background-color: var(--background-black);
  height: 10px;
  width: 10px;
}
.p-lineupTop .swiper-slide img {
  height: auto;
  width: 100%;
}

/* p-voiceTop */
.p-voiceTop {
  width: 100%;
  margin: 5rem 0 0 0;
}
.p-voiceTop__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-voiceTop__inner {
    width: 83.3333333333vw;
  }
}
.p-voiceTop__btnArea {
  margin: 10rem auto;
  width: 450px;
}
@media screen and (max-width: 540px) {
  .p-voiceTop__btnArea {
    width: 83.3333333333vw;
  }
}
.p-voiceTop .swiper-container {
  width: initial;
  height: initial;
  position: relative;
}
.p-voiceTop .swiper-container .slide-img {
  width: auto;
  height: auto;
}
.p-voiceTop .swiper-button-prevVoice,
.p-voiceTop .swiper-button-nextVoice {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.p-voiceTop .swiper-button-prevVoice.swiper-button-disabled,
.p-voiceTop .swiper-button-nextVoice.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.p-voiceTop .swiper-button-prevVoice.swiper-button-hidden,
.p-voiceTop .swiper-button-nextVoice.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.p-voiceTop .swiper-navigation-disabled .swiper-button-prevVoice,
.p-voiceTop .swiper-navigation-disabled .swiper-button-nextVoice {
  display: none !important;
}
.p-voiceTop .swiper-button-prevVoice,
.p-voiceTop .swiper-rtl .swiper-button-nextVoice {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.p-voiceTop .swiper-button-nextVoice,
.p-voiceTop .swiper-rtl .swiper-button-prevVoice {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.p-voiceTop .swiper-button-prevVoice, .p-voiceTop .swiper-button-nextVoice {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-main);
  top: 2.5rem;
}
.p-voiceTop .swiper-button-prevVoice::after, .p-voiceTop .swiper-button-nextVoice::after {
  content: "";
}
.p-voiceTop .swiper-button-prevVoice {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  transform: rotate(180deg);
  left: auto;
  right: 10rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-voiceTop .swiper-button-prevVoice {
    top: -10rem;
  }
}
.p-voiceTop .swiper-button-nextVoice {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  right: 3.5rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-voiceTop .swiper-button-nextVoice {
    top: -10rem;
  }
}
.p-voiceTop .swiper-paginationVoice {
  bottom: -4.5rem !important;
}
.p-voiceTop .swiper-paginationVoice {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.p-voiceTop .swiper-paginationVoice.swiper-pagination-hidden {
  opacity: 0;
}
.p-voiceTop .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-voiceTop .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0;
}
.p-voiceTop .swiper-pagination-bullet {
  background-color: var(--background-black);
  height: 10px;
  width: 10px;
}
.p-voiceTop .swiper-slide img {
  height: auto;
  width: 100%;
}

/* p-newsTop */
.p-newsTop__body {
  margin-top: 2rem;
}
.p-newsTop__item {
  padding: 2rem 0;
  border-bottom: 1px solid #d0d7d7;
}
.p-newsTop__btnArea {
  margin: 5rem auto 0;
}

/* p-conceptTop */
.p-conceptTop {
  width: 100%;
  margin-top: 6rem;
  background: url(../images/top/concept_img.jpg) no-repeat;
  background-size: cover;
  height: 640px;
}
@media screen and (max-width: 540px) {
  .p-conceptTop {
    height: 118.5185185185vw;
  }
}
.p-conceptTop__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-conceptTop__inner {
    width: 83.3333333333vw;
  }
}
.p-conceptTop .c-ttl__ja {
  color: var(--color-white);
}
.p-conceptTop .c-ttl__en {
  color: var(--color-white);
}
.p-conceptTop__txtArea {
  padding-top: 6rem;
}
@media screen and (max-width: 540px) {
  .p-conceptTop__txtArea {
    padding-top: 4rem;
  }
}
.p-conceptTop__txt {
  font-size: 1.8rem;
  line-height: 2.7777777778;
  color: var(--color-white);
  font-weight: var(--fontWeight-medium);
}
@media screen and (max-width: 540px) {
  .p-conceptTop__txt {
    font-size: 3.3333333333vw;
  }
}
.p-conceptTop__btnArea {
  margin-top: 6rem;
}
@media screen and (max-width: 540px) {
  .p-conceptTop__btnArea {
    margin-top: 4rem;
  }
}
.p-conceptTop-btn {
  border-bottom: 1.2px solid #FFFFFF;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: var(--fontWeight-semiBold);
  padding: 0 10rem 2rem 1rem;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .p-conceptTop-btn {
    font-size: 3.3333333333vw;
    padding: 0 10rem 1.2rem 1rem;
  }
}
.p-conceptTop-btn::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: url(../../assets/images/common/i_arrow_btn.svg) center right/3rem auto no-repeat;
  transition: all 0.3s;
}
@media screen and (max-width: 540px) {
  .p-conceptTop-btn::before {
    top: 0.1rem;
    width: 4.6296296296vw;
    height: 4.6296296296vw;
    background: url(../../assets/images/common/i_arrow_btn.svg) center right/4.6296296296vw auto no-repeat;
  }
}
.p-conceptTop-btn:hover::before {
  right: 0;
}

/* p-concept */
.p-concept {
  padding: 6rem 0 0 0;
}
.p-concept__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-concept__inner {
    width: 83.3333333333vw;
  }
}
.p-concept .c-ttl {
  font-size: 3.4rem;
  letter-spacing: 0.088em;
  line-height: 1.6764705882;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 540px) {
  .p-concept .c-ttl {
    font-size: 6.2962962963vw;
  }
}
.p-concept__txtArea {
  padding-top: 4rem;
}
@media screen and (max-width: 540px) {
  .p-concept__txtArea {
    padding-top: 3rem;
  }
}
.p-concept__txt {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: var(--fontWeight-semiBold);
  padding-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .p-concept__txt {
    font-size: 14px;
  }
}
.p-concept__imgArea {
  padding-top: 2rem;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.p-concept__imgArea img {
  max-width: 540px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .p-concept__imgArea img {
    max-width: 100vw;
  }
}
.p-concept__body {
  background-color: var(--background-lightGray);
  padding: 6rem 0;
}
.p-concept__body .c-ttl {
  font-size: 3.2rem;
  letter-spacing: 0.022em;
  line-height: 1.625;
  font-weight: var(--fontWeight-semiBold);
  padding-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .p-concept__body .c-ttl {
    font-size: 5.9259259259vw;
    padding-bottom: 3rem;
  }
}
.p-concept__body .p-concept__txt {
  font-size: 1.7rem;
  line-height: 1.9411764706;
  font-weight: var(--fontWeight-regular);
  padding-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .p-concept__body .p-concept__txt {
    font-size: 14px;
  }
}
.p-concept__body .p-concept__imgArea {
  margin: 2rem 0 6rem 0;
  width: 100%;
}
.p-concept__body .p-concept__imgArea img {
  max-width: 450px;
}
@media screen and (max-width: 540px) {
  .p-concept__body .p-concept__imgArea img {
    max-width: 83.3333333333vw;
  }
}

/* p-performance */
.p-performance {
  padding: 6rem 0;
}
.p-performance__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-performance__inner {
    width: 83.3333333333vw;
  }
}
.p-performance__txt {
  font-size: 1.7rem;
  line-height: 1.8823529412;
  font-weight: var(--fontWeight-regular);
  padding-bottom: 1rem;
}
@media screen and (max-width: 540px) {
  .p-performance__txt {
    font-size: 14px;
  }
}
.p-performance__imgArea {
  margin-bottom: 4.5rem;
}
.p-performance__body {
  padding: 3rem 0 0 0;
}
.p-performance__body .c-ttl {
  font-size: 3.2rem;
  letter-spacing: 0.022em;
  line-height: 1.625;
  font-weight: var(--fontWeight-bold);
  padding-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .p-performance__body .c-ttl {
    font-size: 5.9259259259vw;
    padding-bottom: 3rem;
  }
}
.p-performance__body .p-performance__txt {
  padding-top: 1.5rem;
}
.p-performance__body .p-performance__imgArea {
  margin: 2rem 0 0 0;
  width: 100%;
}
.p-performance__list {
  margin-top: 4rem;
}
.p-performance__Item {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: var(--fontWeight-regular);
  padding-bottom: 2rem;
  color: #a8a8a8;
}
@media screen and (max-width: 540px) {
  .p-performance__Item {
    font-size: 2.7777777778vw;
  }
}

/* p-after-service */
.p-after-service {
  padding: 6rem 0;
}
.p-after-service__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-after-service__inner {
    width: 83.3333333333vw;
  }
}
.p-after-service__txt {
  font-size: 1.7rem;
  line-height: 1.8823529412;
  font-weight: var(--fontWeight-regular);
  padding-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .p-after-service__txt {
    font-size: 14px;
  }
}
.p-after-service__imgArea {
  margin-bottom: 4.5rem;
}
.p-after-service__body {
  padding: 3rem 0 0 0;
}
.p-after-service__body .c-ttl {
  font-size: 3.2rem;
  letter-spacing: 0.022em;
  line-height: 1.625;
  font-weight: var(--fontWeight-bold);
  padding-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .p-after-service__body .c-ttl {
    font-size: 5.9259259259vw;
    padding-bottom: 3rem;
  }
}
.p-after-service__body .p-after-service__txt {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.p-after-service__body .p-after-service__imgArea {
  margin: 2rem 0 0 0;
  width: 100%;
}
.p-after-service__body h5 {
  font-size: 1.7rem;
  font-weight: var(--fontWeight-semiBold);
  padding: 0;
  margin: 0;
  line-height: 1;
}
.p-after-service__body h5:first-of-type {
  margin-top: 2rem;
}
.p-after-service__list {
  margin-top: 2rem;
}
.p-after-service__Item {
  font-size: 1.7rem;
  line-height: 1.8823529412;
  font-weight: var(--fontWeight-regular);
  padding-bottom: 0.5rem;
  padding-left: 1em;
  text-indent: -1em;
}
.p-after-service__Item::before {
  content: "・";
}
@media screen and (max-width: 540px) {
  .p-after-service__Item {
    font-size: 14px;
  }
}

/* p-lineup */
.p-lineup {
  padding: 4rem 0 6rem 0;
}
.p-lineup__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-lineup__inner {
    width: 83.3333333333vw;
  }
}
.p-lineup__imgArea {
  padding-top: 2rem;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.p-lineup__imgArea img {
  max-width: 540px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .p-lineup__imgArea img {
    max-width: 100vw;
  }
}
.p-lineup-casa-cube__imgArea {
  padding-top: 2rem;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.p-lineup-casa-cube__imgArea img {
  max-width: 540px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .p-lineup-casa-cube__imgArea img {
    max-width: 100vw;
  }
}
.p-lineup-casa-cube__imgArea .casa-cube__ph {
  position: absolute;
  width: 300px;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -50px;
}
@media screen and (max-width: 540px) {
  .p-lineup-casa-cube__imgArea .casa-cube__ph {
    width: 55.5555555556vw;
    bottom: -9.2592592593vw;
  }
}
.p-lineup .c-ttl {
  font-size: 3.2rem;
  letter-spacing: 0.088em;
  line-height: 1.625;
  font-weight: var(--fontWeight-bold);
  padding-top: 7rem;
}
@media screen and (max-width: 540px) {
  .p-lineup .c-ttl {
    font-size: 5.9259259259vw;
  }
}
.p-lineup__txtArea {
  padding-top: 3rem;
}
@media screen and (max-width: 540px) {
  .p-lineup__txtArea {
    padding-top: 2rem;
  }
}
.p-lineup__txtArea.hiraya {
  padding-top: 8rem;
}
.p-lineup__txt {
  font-size: 1.7rem;
  line-height: 1.8823529412;
  font-weight: var(--fontWeight-medium);
  padding-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .p-lineup__txt {
    font-size: 14px;
  }
}
.p-lineup__body {
  padding: 4rem 0;
}
.p-lineup__body .p-lineup__txt {
  padding-top: 3rem;
  font-size: 1.7rem;
  line-height: 1.8823529412;
}
@media screen and (max-width: 540px) {
  .p-lineup__body .p-lineup__txt {
    font-size: 14px !important;
  }
}
.p-lineup__body .c_sttl {
  padding-top: 5rem;
}
.p-lineup__pointList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 3rem;
}
.p-lineup__pointList__wrap {
  width: 450px;
  margin: 3rem auto 7rem auto;
}
@media screen and (max-width: 540px) {
  .p-lineup__pointList__wrap {
    width: 83.3333333333vw;
  }
}
.p-lineup__pointList2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}
.p-lineup__pointList2__wrap {
  width: 450px;
  margin: 3rem auto 7rem auto;
}
@media screen and (max-width: 540px) {
  .p-lineup__pointList2__wrap {
    width: 83.3333333333vw;
  }
}
.p-lineup__pointList3 {
  display: flex;
  flex-direction: column;
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-lineup__pointList3 {
    width: 83.3333333333vw;
  }
}
.p-lineup__section {
  padding: 7rem 0 0 0;
}
.p-lineup__section .c_mttl {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-lineup__section .c_mttl {
    width: 83.3333333333vw;
  }
}
.p-lineup__bg {
  background: var(--background-lightGray);
  padding: 7rem 0;
  margin: 7rem 0;
}
@media screen and (max-width: 540px) {
  .p-lineup__bg {
    padding: 5rem 0;
    margin: 5rem 0;
  }
}
.p-lineup__bg .c_mttl {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-lineup__bg .c_mttl {
    width: 83.3333333333vw;
  }
}
.c_mttl.casa-cube,
.c_mttl.full-order,
.c_mttl.performance,
.c_mttl.after-service,
.c_mttl.privacy {
  margin: 0;
}
.c_mttl.casa-cube {
  margin-top: 5rem;
  padding-bottom: 0;
}
@media screen and (max-width: 540px) {
  .c_mttl.casa-cube {
    font-size: 5.3333333333vw;
  }
}
.p-lineupCasa img {
  max-width: 540px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .p-lineupCasa img {
    max-width: 100vw;
  }
}
.p-lineupCasa .swiper-container {
  width: initial;
  height: initial;
  position: relative;
}
.p-lineupCasa .swiper-container .slide-img {
  width: auto;
  height: auto;
}
.p-lineupCasa .swiper-slide img {
  height: auto;
  width: 100%;
}
.p-lineupCasa .swiper-button-prevCasa1,
.p-lineupCasa .swiper-button-nextCasa1,
.p-lineupCasa .swiper-button-prevCasa2,
.p-lineupCasa .swiper-button-nextCasa2 {
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  top: var(--swiper-navigation-top-offset, 50%);
  position: absolute;
}
.p-lineupCasa .swiper-button-prevCasa1.swiper-button-disabled,
.p-lineupCasa .swiper-button-nextCasa1.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.p-lineupCasa .swiper-button-prevCasa1.swiper-button-hidden,
.p-lineupCasa .swiper-button-nextCasa1.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.p-lineupCasa .swiper-navigation-disabled .swiper-button-prevCasa1,
.p-lineupCasa .swiper-navigation-disabled .swiper-button-nextCasa1,
.p-lineupCasa .swiper-navigation-disabled .swiper-button-prevCasa2,
.p-lineupCasa .swiper-navigation-disabled .swiper-button-nextCasa2 {
  display: none !important;
}
.p-lineupCasa .swiper-button-prevCasa1,
.p-lineupCasa .swiper-rtl .swiper-button-nextCasa1,
.p-lineupCasa .swiper-button-prevCasa2,
.p-lineupCasa .swiper-rtl .swiper-button-nextCasa2 {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.p-lineupCasa .swiper-button-nextCasa1,
.p-lineupCasa .swiper-rtl .swiper-button-prevCasa1,
.p-lineupCasa .swiper-button-nextCasa2,
.p-lineupCasa .swiper-rtl .swiper-button-prevCasa2 {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.p-lineupCasa .swiper-button-prevCasa1, .p-lineupCasa .swiper-button-nextCasa1, .p-lineupCasa .swiper-button-prevCasa2, .p-lineupCasa .swiper-button-nextCasa2 {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-main);
}
.p-lineupCasa .swiper-button-prevCasa1::after, .p-lineupCasa .swiper-button-nextCasa1::after, .p-lineupCasa .swiper-button-prevCasa2::after, .p-lineupCasa .swiper-button-nextCasa2::after {
  content: "";
}
.p-lineupCasa .swiper-button-prevCasa1, .p-lineupCasa .swiper-button-prevCasa2 {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  transform: rotate(180deg);
  left: 0;
}
.p-lineupCasa .swiper-button-nextCasa1, .p-lineupCasa .swiper-button-nextCasa2 {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  right: 0;
}
.p-lineupCasa .swiper-paginationCasa1, .p-lineupCasa .swiper-paginationCasa2 {
  bottom: -4.5rem !important;
  left: -22.5px !important;
}
@media screen and (max-width: 430px) {
  .p-lineupCasa .swiper-paginationCasa1, .p-lineupCasa .swiper-paginationCasa2 {
    left: -4.1666666667vw !important;
  }
}
.p-lineupCasa .swiper-paginationCasa1, .p-lineupCasa .swiper-paginationCasa2 {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.p-lineupCasa .swiper-paginationCasa1.swiper-pagination-hidden, .p-lineupCasa .swiper-paginationCasa2.swiper-pagination-hidden {
  opacity: 0;
}
.p-lineupCasa .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-lineupCasa .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0;
}
.p-lineupCasa .swiper-pagination-bullet {
  background-color: var(--background-black);
  height: 10px;
  width: 10px;
}

.js-accordion {
  cursor: pointer;
}
.js-accordion span::before {
  position: absolute;
  content: "";
  top: 1px;
  right: 1rem;
  bottom: 0;
  width: 18px;
  height: 3px;
  margin: auto;
  background: #000000;
}
.js-accordion span::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 1rem;
  bottom: 0;
  width: 18px;
  height: 3px;
  margin: auto;
  background: #000000;
  transform: rotate(-90deg);
  transition: transform 0.4s;
}
.js-accordion.active span::after {
  transform: rotate(0deg);
}

.c-cardPlan__block__body {
  display: none;
}
.c-cardPlan__block__def {
  margin-top: 2rem;
}
.c-cardPlan__block__def-tit {
  font-size: 19px;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--background-lightGray);
}
@media screen and (max-width: 540px) {
  .c-cardPlan__block__def-tit {
    font-size: 15px;
  }
}
.c-cardPlan__block__def-data {
  font-size: 17px;
  padding: 0.7rem 0;
}
@media screen and (max-width: 540px) {
  .c-cardPlan__block__def-data {
    font-size: 14px;
  }
}
.c-cardPlan__block__imgArea {
  margin: 0 0 2rem 0;
}

/* p-about */
.p-about {
  margin-top: 6rem;
  background-color: var(--background-lightGray);
}
.p-about__imgArea {
  width: 100%;
}
.p-about__inner {
  width: 450px;
  position: relative;
  top: -7rem;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .p-about__inner {
    width: 83.3333333333vw;
    top: -svw(70);
  }
}
.p-about__body {
  padding-top: 2rem;
  background-color: var(--background-white);
  margin-bottom: 6rem;
}
.p-about__def {
  width: 390px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
}
@media screen and (max-width: 540px) {
  .p-about__def {
    width: 72.2222222222vw;
    font-size: 14px;
  }
}
.p-about__def-tit {
  border-bottom: 1px solid #d0d7d7;
  padding-bottom: 0.5rem;
  font-weight: var(--fontWeight-semiBold);
}
.p-about__def-data {
  padding-top: 0.5rem;
  margin-bottom: 3rem;
  line-height: 1.6666666667;
}
.p-about__def-data a:link {
  text-decoration: underline;
}
.p-about__map__ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: var(--fontWeight-semiBold);
  letter-spacing: 0.055em;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 540px) {
  .p-about__map__ttl {
    font-size: 5.1851851852vw;
  }
}
.p-about__mapArea {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.p-about__mapArea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-about__btnArea {
  margin-top: 3rem;
}

/* p-flow */
.p-flow__inner {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-flow__inner {
    width: 83.3333333333vw;
  }
}
.p-flow__txtArea {
  padding-top: 6rem;
  margin-bottom: 6rem;
}
.p-flow__txt {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  font-weight: var(--fontWeight-semiBold);
  padding-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .p-flow__txt {
    font-size: 14px;
  }
}
.p-flow__body {
  background-color: var(--background-lightGray);
  padding: 4rem 0;
}
.p-flow__stepList {
  position: relative;
}
.p-flow__stepList::after {
  content: "";
  width: 15px;
  height: calc(100% - 10rem);
  position: absolute;
  background: rgba(var(--background-gray-rgb), 0.1);
  top: 10rem;
  right: 150px;
  z-index: -1;
}
@media screen and (max-width: 430px) {
  .p-flow__stepList::after {
    width: 2.7777777778vw;
    right: 27.7777777778vw;
  }
}

/* p-feature */
.p-feature {
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 0;
  position: relative;
}
.p-feature::before {
  content: "";
  background-color: var(--background-lightGray);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 3.2rem);
  z-index: -1;
}
.p-feature__imgArea {
  aspect-ratio: 1213/698;
  width: calc(100% - 3.2rem);
  margin: 0 0 0 auto;
}
.p-feature__imgArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-feature__inner {
  max-width: 105.8rem;
  padding: 0 3.2rem;
  margin: auto;
}
.p-feature__ttl {
  font-family: var(--fontFamily-accent);
  font-size: 3.4rem;
  line-height: 1.4769230769;
  font-weight: var(--font-weight-regular);
  transform: translateY(-3rem);
  padding-left: 1.6rem;
}
.p-feature__txtArea {
  max-width: 100%;
  padding-right: 0;
  padding-bottom: 3.2rem;
  margin: 0 0 0 auto;
}
.p-feature__txt {
  font-size: 1.4rem;
  line-height: 2.4285714286;
}

/* p-works */
.p-works__inner {
  display: flex;
  flex-direction: column;
  padding: 0 1.6rem;
}
.p-works__header {
  width: 100%;
  padding-left: 0;
}
.p-works__body {
  flex: 1;
  margin-top: 3rem;
}
.p-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 0;
}
.p-works__btnArea {
  width: 22rem;
  margin: 5rem auto 0;
}

/* p-worksTop */
.l-sectionWorks {
  background-color: var(--background-lightGray);
  width: 100%;
  padding-bottom: 6rem;
}
.l-sectionWorks .c-ttl {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .l-sectionWorks .c-ttl {
    width: 83.3333333333vw;
  }
}

.p-worksTop {
  width: 495px;
  margin: 5rem 0 0 auto;
}
@media screen and (max-width: 540px) {
  .p-worksTop {
    width: 91.6666666667vw;
  }
}
.p-worksTop__btnArea {
  margin: 8rem auto 0;
}
.p-worksTop .swiper-container {
  width: initial;
  height: initial;
  position: relative;
}
.p-worksTop .swiper-container .slide-img {
  width: auto;
  height: auto;
}
.p-worksTop .swiper-button-prevWorks,
.p-worksTop .swiper-button-nextWorks {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.p-worksTop .swiper-button-prevWorks.swiper-button-disabled,
.p-worksTop .swiper-button-nextWorks.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.p-worksTop .swiper-button-prevWorks.swiper-button-hidden,
.p-worksTop .swiper-button-nextWorks.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.p-worksTop .swiper-navigation-disabled .swiper-button-prevWorks,
.p-worksTop .swiper-navigation-disabled .swiper-button-nextWorks {
  display: none !important;
}
.p-worksTop .swiper-button-prevWorks,
.p-worksTop .swiper-rtl .swiper-button-nextWorks {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.p-worksTop .swiper-button-nextWorks,
.p-worksTop .swiper-rtl .swiper-button-prevWorks {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.p-worksTop .swiper-button-prevWorks, .p-worksTop .swiper-button-nextWorks {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-main);
  top: 2.5rem;
}
.p-worksTop .swiper-button-prevWorks::after, .p-worksTop .swiper-button-nextWorks::after {
  content: "";
}
.p-worksTop .swiper-button-prevWorks {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  transform: rotate(180deg);
  left: auto;
  right: 10rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-worksTop .swiper-button-prevWorks {
    top: -10rem;
  }
}
.p-worksTop .swiper-button-nextWorks {
  background: url(../../assets/images/common/i_arrow_slide.png) center/contain no-repeat;
  right: 3.5rem;
  top: -12rem;
}
@media screen and (max-width: 540px) {
  .p-worksTop .swiper-button-nextWorks {
    top: -10rem;
  }
}
.p-worksTop .swiper-paginationWorks {
  bottom: -4.5rem !important;
  left: -22.5px !important;
}
@media screen and (max-width: 430px) {
  .p-worksTop .swiper-paginationWorks {
    left: -4.1666666667vw !important;
  }
}
.p-worksTop .swiper-paginationWorks {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.p-worksTop .swiper-paginationWorks.swiper-pagination-hidden {
  opacity: 0;
}
.p-worksTop .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-worksTop .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0;
}
.p-worksTop .swiper-pagination-bullet {
  background-color: var(--background-black);
  height: 10px;
  width: 10px;
}
.p-worksTop .swiper-slide img {
  height: auto;
  width: 100%;
}

/* p-support */
.p-support {
  background-color: var(--background-lightGray);
  width: 100%;
  padding-bottom: 6rem;
}
.p-support .c-ttl {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-support .c-ttl {
    width: 83.3333333333vw;
  }
}

/* p-company */
.p-company {
  padding-top: 0;
  padding-bottom: 9rem;
  position: relative;
}
.p-company::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 1.8rem);
  background-color: var(--background-lightGray);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-company__tableArea {
  max-width: 90rem;
  margin: 4.6rem auto 0;
}
.p-company__areaArea {
  max-width: 90rem;
  margin: 5.4rem auto 0;
}
.p-company__areaTtl {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-regular);
  font-size: 2.4rem;
  text-align: center;
  transform: translateY(50%);
}
.p-company__areaNote {
  margin-top: 1.6rem;
}

/* p-mvUnder */
.p-mvUnder {
  text-align: center;
  padding: 7.5rem 0 0;
  line-height: 1.2;
}
@media screen and (max-width: 540px) {
  .p-mvUnder {
    padding: 25.9259259259vw 0 0;
  }
}
.p-mvUnder__ttl {
  font-size: 1.8rem;
  font-weight: var(--fontWeight-semiBold);
  letter-spacing: 0.1em;
  padding-top: 1rem;
}
@media screen and (max-width: 540px) {
  .p-mvUnder__ttl {
    font-size: 3.3333333333vw;
  }
}
.p-mvUnder__txt {
  font-family: var(--fontFamily-en);
  font-size: 4.6rem;
  font-weight: var(--fontWeight-semiBold);
}
@media screen and (max-width: 540px) {
  .p-mvUnder__txt {
    font-size: 8.5185185185vw;
  }
}

/* p-breadcrumb */
.p-breadcrumb {
  padding-top: 7rem;
}
@media screen and (max-width: 540px) {
  .p-breadcrumb {
    padding-top: 6rem;
  }
}
.p-breadcrumb__inner {
  /* width: 450px; */
  margin: 0 auto;
}
/* @media screen and (max-width: 540px) {
  .p-breadcrumb__inner {
    width: 83.3333333333vw;
  }
} */
.p-breadcrumb__inner {
  margin: 0rem 3rem 0rem 3rem;
}

/* p-tagList */
.p-tagList__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-tagList__list {
    justify-content: flex-start;
  }
}
.p-tagList__item {
  min-width: 19.2rem;
}
@media screen and (max-width: 768px) {
  .p-tagList__item {
    min-width: initial;
    width: calc(50% - 0.4rem);
    font-size: 1.2rem;
  }
}
.p-tagList__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--fontColor-base);
  font-size: 1.6rem;
  border: 1px solid var(--color-gray);
  line-height: 1.4;
  text-align: center;
  padding: 1.2rem 1rem;
}
@media screen and (max-width: 768px) {
  .p-tagList__link {
    font-size: 1.2rem;
  }
}
.p-tagList__link:hover, .p-tagList__link.active {
  color: var(--color-white);
  background-color: var(--color-gray);
}

/* p-archive */
.p-archive {
  padding: 7rem 0;
}
@media screen and (max-width: 540px) {
  .p-archive {
    padding: 3.5rem 0;
  }
}
.p-archive__inner {
  /* width: 450px; */
  /* width: 100%; */
  margin: auto;
  margin: 0rem 3rem 0rem 3rem;
}
/* @media screen and (max-width: 540px) {
  .p-archive__inner {
    max-width: 83.3333333333vw;
  }
} */
.p-archive__list {
  display: flex;
  flex-direction: column;
  /* margin: 0rem 3rem 0rem 3rem; */
}
.p-archive__item {
  padding-bottom: 5rem;
}
.p-archive__pagination {
  margin-bottom: 6rem;
}
.p-archive .p-eventArchive, .p-archive .p-lineupArchive, .p-archive .p-worksArchive, .p-archive .p-voiceArchive {
  width: 100%;
}

/* p-mvWork */
.p-mvWork {
  height: calc(100svh - 5rem);
  width: 100%;
  position: relative;
}
.p-mvWork::before {
  display: none;
}
.p-mvWork__txtArea {
  width: 31.8rem;
  max-width: 100%;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.2rem 2.2rem;
}
.p-mvWork__ttl {
  font-family: var(--fontFamily-accent);
  font-size: 1.4rem;
  font-weight: var(--fontWeight-regular);
  line-height: 1.5;
  margin-top: 0.4rem;
}
.p-mvWork__imgArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-mvWork__imgArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* p-singleWork */
.p-singleWork {
  padding: 4rem 0;
}
.p-singleWork__inner {
  /* width: 450px; */
  margin: auto;
}
/* @media screen and (max-width: 540px) {
  .p-singleWork__inner {
    max-width: 83.3333333333vw;
  }
} */
.c_mttl {
  margin: 0rem 3rem 0rem 3rem;
}
.p-singleWork__imgArea {
  padding-top: 6rem;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.p-singleWork__imgArea img {
  max-width: 540px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .p-singleWork__imgArea img {
    max-width: 100vw;
  }
}
.p-singleWork__galleryArea {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.p-singleWork__galleryArea img {
  max-width: 540px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .p-singleWork__galleryArea img {
    max-width: 100vw;
  }
}
.p-singleWork__txtArea {
  margin-top: 4rem;
}
.p-singleWork__txt {
  font-size: 1.7rem;
  line-height: 1.8823529412;
  font-weight: var(--fontWeight-medium);
}
@media screen and (max-width: 540px) {
  .p-singleWork__txt {
    font-size: 3.1481481481vw;
  }
}

/* p-singleEvent */
.p-singleEvent {
  padding-top: 10rem;
}
.p-singleEvent__inner {
  max-width: 97.2rem;
  padding: 0 1.6rem;
  margin: 0 auto;
}
.p-singleEvent__header {
  margin-top: 5.4rem;
}
.p-singleEvent__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.p-singleEvent__thumb {
  margin-top: 2.4rem;
}
.p-singleEvent__thumb img {
  max-width: 100%;
  height: auto;
}
.p-singleEvent__btnArea {
  max-width: 40rem;
  margin: 3.6rem auto 0;
}
.p-singleEvent__body {
  margin-top: 6.4rem;
}
.p-singleEvent__content h2, .p-singleEvent__content h3 {
  margin-top: 2rem;
}
.p-singleEvent__content p {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  margin-top: 2rem;
}
.p-singleEvent__content figure {
  margin-top: 2.8rem;
}
.p-singleEvent__content figure img {
  max-width: 100%;
}
.p-singleEvent__txtArea {
  font-size: 1.7rem;
  padding: 0rem 3rem 0rem 3rem;
}
.p-singleEvent__txt {
  font-size: 1.7rem;
  line-height: 2.1428571429;
  margin-top: 2rem;
}
.p-singleEvent__txtArea h1,
.p-singleEvent__txtArea h1 span {
  font-size: 3.0rem;
}
.p-singleEvent__txtArea h2,
.p-singleEvent__txtArea h2 span {
  font-size: 2.8rem;
}
.p-singleEvent__txtArea h3,
.p-singleEvent__txtArea h3 span {
  font-size: 2.6rem;
}
.p-singleEvent__txtArea h4,
.p-singleEvent__txtArea h4 span {
  font-size: 2.2rem;
}
.p-singleEvent__txtArea span,
.p-singleEvent__txt span {
  font-size: 1.7rem;
  display:inline-block;
  /* padding: 0rem 3rem 0rem 3rem; */
}
.p-singleEvent__txtArea .no-padding {
  width: calc(100% + 6rem);
  margin-left: -3rem;
  margin-right: -3rem;
  max-width: none;
}
.p-singleEvent__imgArea {
  margin-top: 2.8rem;
}
.p-singleEvent__imgArea img {
  width: 100%;
  height: auto;
}
.p-singleEvent__tableArea {
  margin-top: 4rem;
}
.p-singleEvent__applyArea {
  padding-top: 5rem;
  padding-bottom: 6.6rem;
  background-color: var(--background-lightGray);
  margin-top: 2rem;
}
.p-singleEvent__applyTtl {
  font-family: var(--fontFamily-accent);
  font-size: 2.4rem;
  font-weight: var(--fontWeight-regular);
  text-align: center;
}
.p-singleEvent__applyForm {
  margin-top: 3.8rem;
}
.p-singleEvent__btnArea {
  max-width: 20rem;
  margin: 6.4rem auto 0;
}

/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}

/* u-txt */
/* u-display */
.u-display--pcNone {
  display: block !important;
}
.u-display--spNone {
  display: none !important;
}
.u-display--inlineBlock {
  display: inline-block;
}

/* add */
iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}

main.services {
  height: 100%;
}

main.services iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* PC用デフォルト */
.p-singleEvent__txtArea h1 {
  font-size: 4.6rem;
}
.p-singleEvent__txtArea h2 {
  font-size: 2.6rem;
}
.p-singleEvent__txtArea h3 {
  font-size: 2.2rem;
}
.p-singleEvent__txtArea h4 {
  font-size: 1.9rem;
}

/* スマホ用（540px以下） */
@media screen and (max-width: 540px) {
  .p-singleEvent__txtArea h1 {
    font-size: 8.5185185185vw;
  }
  .p-singleEvent__txtArea h2 {
    font-size: 5.3333333333vw;
  }
  .p-singleEvent__txtArea h3 {
    font-size: 4.8vw;
  }
  .p-singleEvent__txtArea h4 {
    font-size: 4.2666666667vw;
  }
}
/* add */
