@charset "UTF-8";
/* google font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap");
/* ----------------------------------------------------
変数
-----------------------------------------------------*/
:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "Jost", sans-serif;
  --font-enja: "Jost", "Noto Sans JP", sans-serif;
}

/* ----------------------------------------------------
base設定
-----------------------------------------------------*/
html {
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
  width: 100%;
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-base);
}

body {
  background: #fff;
  color: #252525;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  width: 100%;
  min-width: 320px;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: normal;
}

body {
  color: #FFFFFF;
  background-color: #000000;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.show {
  opacity: 1;
  visibility: visible;
}

.close {
  opacity: 1;
  visibility: visible;
  background-color: #ffffff;
}

.obl::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../../common/images/ic_obl.svg") no-repeat bottom center;
  background-size: contain;
  margin-left: min(1vw, 0.5rem);
}

.obl-w {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: min(2vw, 0.5rem);
       column-gap: min(2vw, 0.5rem);
}
.obl-w::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../../common/images/ic_obl_w.svg") no-repeat;
  background-size: contain;
}

/* ----------------------------------------------------
ヘッダー
-----------------------------------------------------*/
.header {
  transition: all 0.3s ease;
  z-index: 900;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-block: 1rem;
  background-color: #000000;
}
.header.show {
  background-color: #000000;
}
@media screen and (max-width: 1100px) {
  .header.open {
    background-color: #000000 !important;
  }
}
.header__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  margin-inline: auto;
  max-width: 125rem;
  padding-inline: min(5vw, 3rem);
}
@media screen and (max-width: 1100px) {
  .header__container {
    padding-inline: min(5vw, 3rem) 0;
  }
}
.header__logo {
  padding-right: min(10vw, 4rem);
}
@media screen and (max-width: 639px) {
  .header__logo {
    max-width: 60vw;
  }
}
.header__nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-left: 1px solid #FFFFFF;
  padding-left: 2rem;
  margin-left: 1.5rem;
}
@media screen and (max-width: 1100px) {
  .header__nav {
    grid-template-columns: 1fr auto auto auto;
    border-left: none;
  }
}
@media screen and (max-width: 639px) {
  .header__nav {
    grid-template-columns: 1fr auto;
  }
}
.header__nav--insta {
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-right: 2rem;
}
.header__nav--insta:hover {
  filter: brightness(1.5);
}
@media screen and (max-width: 1100px) {
  .header__nav--insta {
    display: none;
  }
}
.header__nav--insta i {
  font-size: 4rem;
  background: linear-gradient(25deg, #feda75 0%, #feda75 25%, #ec1073 40%, #962fbf 70%, #4f5bd5 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__nav--eidailink {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.3s ease;
}
.header__nav--eidailink:hover {
  opacity: 0.5;
}
.header__nav--eidailink:hover::after {
  filter: brightness(1.5);
}
@media screen and (max-width: 1100px) {
  .header__nav--eidailink {
    display: none;
  }
}
.header__nav--eidailink::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../../common/images/ic_obl_w.svg") no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

/* ----------------------------------------------------
グローバルナビ
-----------------------------------------------------*/
/* ハンバーガーメニュー  */
.hamburger {
  display: none;
  text-align: center;
  position: relative;
  cursor: pointer;
  width: min(30vw, 6.5rem);
  height: min(30vw, 6rem);
}
@media screen and (max-width: 1100px) {
  .hamburger {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .hamburger {
    width: min(20vw, 5.4rem);
    height: min(20vw, 5rem);
  }
}
.hamburger > div {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 32%;
}
.hamburger > div > span {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background: #ffffff;
  left: 0;
  transition: 0.35s ease-in-out;
}
.hamburger > div > span:nth-child(1) {
  top: 0;
}
.hamburger > div > span:nth-child(2) {
  top: 48%;
}
.hamburger > div > span:nth-child(3) {
  bottom: 0;
}
.open .hamburger span:nth-child(1) {
  top: 48%;
  transform: rotate(315deg);
}
.open .hamburger span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open .hamburger span:nth-child(3) {
  bottom: 48%;
  transform: rotate(-315deg);
}

/* グローバルナビ  */
.naviset {
  color: #333333;
  display: none;
  z-index: 9998;
  position: absolute;
  top: 1rem;
  right: 0;
  background-color: #EFEFEF;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  height: calc(100vh - 6rem);
  background-attachment: fixed;
  min-width: 30rem;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .naviset {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .naviset {
    height: calc(100vh - 5rem);
  }
}
.naviset a,
.naviset div {
  transition: all 0.3s ease;
}
.naviset__container {
  position: relative;
  width: 100%;
  padding-inline: 2rem;
}
.naviset__inner {
  padding: min(5vw, 2rem);
}
.naviset__inner > ul {
  display: grid;
  border-bottom: #898989 1px solid;
  padding-bottom: min(5vw, 2rem);
}
.naviset__inner > ul > li {
  font-weight: 500;
  margin-top: 1.2rem;
}
.naviset__inner a,
.naviset__inner .u-accordion__btn p {
  display: block;
}
.naviset__child {
  padding-left: 1rem;
  height: 0;
}
.naviset__child > li a {
  display: grid;
  grid-template-columns: max-content auto;
  font-weight: 500;
  margin-top: 0.8rem;
}
.naviset__child > li a::before {
  font-size: 1.2rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  margin-right: min(5vw, 0.8rem);
  padding-top: min(2vw, 0.5rem);
}
.naviset__child > li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.naviset__toplink {
  font-weight: 700;
  font-size: 1.8rem;
}
.naviset__insta {
  line-height: 1;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: 2rem;
}
.naviset__insta a {
  display: flex;
  align-items: center;
  gap: min(3vw, 1rem);
}
.naviset__insta i {
  font-size: 4rem;
  background: linear-gradient(25deg, #feda75 0%, #feda75 25%, #ec1073 40%, #962fbf 70%, #4f5bd5 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.naviset__eidailink {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-weight: 500;
}

/* ----------------------------------------------------
PCメニュー
-----------------------------------------------------*/
.menu {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .menu {
    display: none;
  }
}
.menu li a {
  color: #ffffff;
  font-weight: 700;
  display: grid;
  align-items: center;
  padding-inline: min(6vw, 2rem);
  text-align: center;
  height: 7rem;
}
@media screen and (max-width: 1100px) {
  .menu li a {
    padding-inline: min(3vw, 1rem);
  }
}
.menu li:hover a {
  opacity: 0.5;
  transition: all 0.3s;
}

/* ----------------------------------------------------
フッター
-----------------------------------------------------*/
.footer {
  color: #ffffff;
  position: relative;
  background-color: #262626;
  padding-block: 6rem;
}
.footer a {
  color: #ffffff;
}
.footer a:hover {
  opacity: 0.5;
}
.footer__main {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: start;
  gap: 5rem;
}
@media screen and (max-width: 860px) {
  .footer__main {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 860px) {
  .footer__main.container {
    padding-inline: 0;
  }
}
.footer__info {
  display: grid;
  justify-items: center;
  align-items: start;
}
@media screen and (max-width: 860px) {
  .footer__info {
    padding-inline: min(5vw, 3rem);
  }
}
.footer__info img {
  max-width: 40vw;
}
.footer__info--insta {
  display: flex;
  align-items: center;
  gap: min(3vw, 1rem);
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s ease;
}
.footer__info--insta:hover {
  filter: brightness(1.5);
}
.footer__info--insta i {
  font-size: 4rem;
  background: linear-gradient(25deg, #feda75 0%, #feda75 25%, #ec1073 40%, #962fbf 70%, #4f5bd5 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 860px) {
  .footer__nav {
    padding-inline: min(5vw, 3rem);
  }
}
.footer__nav--list > li {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer__nav--child {
  margin-top: 0.5rem;
}
.footer__nav--child > li {
  font-weight: 400;
  margin-bottom: 0.3rem;
  padding-left: 1em;
  text-indent: -1em;
}
.footer__nav--child > li::before {
  content: "・";
}
.footer__showroom {
  background-color: #5C5C5C;
  padding: min(5vw, 3rem);
  font-size: 1.4rem;
}
.footer__showroom--title {
  font-size: 2rem;
  font-weight: 700;
}
.footer__showroom--btn {
  display: inline-block;
  position: relative;
  padding-block: 1rem;
  padding-inline: 2rem 4rem;
  background-color: #888888;
  transition: background-color 0.3s ease;
}
.footer__showroom--btn::after {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.footer__showroom--btn:hover {
  background-color: #adadad;
  opacity: 1 !important;
}
.footer__copy {
  text-align: center;
  padding-top: 4rem;
}

/* ----------------------------------------------------
ページトップ
-----------------------------------------------------*/
#page-top {
  position: absolute;
  bottom: 20px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 10px;
  }
}
#page-top > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 3.2rem;
  color: #ffffff;
  background-color: #898989;
}
@media screen and (max-width: 767px) {
  #page-top > a {
    font-size: 3.2rem;
  }
}
#page-top > a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* ----------------------------------------------------
フレーム
-----------------------------------------------------*/
main {
  padding-top: min(4.9vw, 6rem);
}

#top main {
  padding-top: 0;
}

/* ----------------------------------------------------
共通タイトル
-----------------------------------------------------*/
/* ページタイトル */
.page-title {
  color: #FFFFFF;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: min(10vw, 7rem);
  text-align: center;
  padding-block: min(22vw, 10rem) min(12vw, 8rem);
}

/* セクションタイトル */
.sec-title {
  font-size: min(6vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--font-enja);
}
.sec-title span {
  display: block;
  font-size: 50%;
  margin-top: min(2vw, 10px);
}/*# sourceMappingURL=common.css.map */