@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: #000000;
  word-break: break-all;
  padding-top: 52px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
  }
}
body.is_fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

a:active {
  text-decoration: none;
  color: #000 !important;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

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

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.section__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 8.5333333333vw;
  }
}

.titleArea {
  position: relative;
}

.section__title--en {
  position: absolute;
  top: -65px;
}
@media screen and (max-width: 768px) {
  .section__title--en {
    top: -50px;
  }
}
@media screen and (max-width: 768px) {
  .section__title--en img {
    transform: scale(0.7);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  box-sizing: border-box;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
    background: transparent;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  max-width: 95%;
  padding: 10px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    justify-content: flex-end;
    padding: 28px 0;
    width: 90%;
  }
}
.header__logo.active {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    display: none !important;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
}
.header__search {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__search {
    display: none;
  }
}

.fixed__tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(-37%, -50%) rotate(90deg);
  border-radius: 36px;
  background: #000;
  padding: 5px;
  z-index: 10000;
}
.fixed__tab.active {
  opacity: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .fixed__tab {
    transform: translate(0);
    top: 16px;
    left: 20px;
  }
}
.fixed__tab--lists {
  display: flex;
}
.fixed__tab--list {
  border-radius: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fixed__tab--list a {
  padding: 5px 20px;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .fixed__tab--list a {
    padding: 6px 12px;
  }
}
.fixed__tab--list a:hover {
  opacity: 1;
}
.fixed__tab--list:nth-child(3) a {
  padding: 5px 10px;
}
@media screen and (max-width: 768px) {
  .fixed__tab--list:nth-child(3) a {
    padding: 6px 10px;
  }
}
.fixed__tab--list:nth-child(3) a img {
  height: 25px;
}
@media screen and (max-width: 768px) {
  .fixed__tab--list:nth-child(3) a img {
    height: 18px;
  }
}
.fixed__tab--list img {
  height: 18px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .fixed__tab--list img {
    height: 12px;
  }
}
.fixed__tab--list .on {
  display: none;
}
.fixed__tab--list .off {
  display: block;
}
.fixed__tab--list.active .on {
  display: block;
}
.fixed__tab--list.active .off {
  display: none;
}

.header__btns {
  width: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__btns {
    width: 30px;
    gap: 8px;
  }
}
.header__btns span {
  background: #fff;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__btns span {
    background: #000;
  }
}
@media screen and (max-width: 768px) {
  .header__btns.active span {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .header__btns.bk-visible span {
    background: #fff;
  }
}

/* メニュー表示時のアニメーション（ハンバーガーが×になる） */
.header__btns.active .header__btn:nth-child(1) {
  transform: translateY(9px) rotate(20deg);
}
@media screen and (max-width: 768px) {
  .header__btns.active .header__btn:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
}

.header__btns.active .header__btn:nth-child(2) {
  transform: translateY(-5px) rotate(-20deg);
}
@media screen and (max-width: 768px) {
  .header__btns.active .header__btn:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }
}

/* メニュー本体 */
.hamburger__nav {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
  background: #000;
  transition: opacity 0.5s ease;
  overflow-y: auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
}
.hamburger__nav--inner {
  padding: 70px 0 80px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--inner {
    width: 100%;
    padding: 6.1333333333vw 5.3333333333vw;
  }
}
.hamburger__nav--search {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--search {
    display: block;
    margin: 9.6vw 0;
  }
}
.hamburger__nav--search form {
  position: relative;
  width: 100%;
}
.hamburger__nav--search form input {
  width: 100%;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  padding: 15px 17px;
  box-sizing: border-box;
  color: #fff;
}
.hamburger__nav--search form input::-moz-placeholder {
  color: #fff;
}
.hamburger__nav--search form input::placeholder {
  color: #fff;
}
.hamburger__nav--search form button {
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__nav--logo {
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--logo {
    width: 46.9333333333vw;
    margin-bottom: 0;
  }
}
.hamburger__nav--main {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-bottom: 76px;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--main {
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16vw;
  }
}
.hamburger__nav--main li a {
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--main li a {
    font-size: 6.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__nav--main li {
    text-align: center;
  }
}
.hamburger__nav--sns {
  padding: 35px 0;
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--sns {
    padding: 8vw 0;
    margin-bottom: 8vw;
    gap: 12px;
  }
}
.hamburger__nav--sns .text span {
  color: #fff;
  font-size: 11px;
}
.hamburger__nav--sns .bl {
  position: relative;
  padding-left: 40px;
}
.hamburger__nav--sns .bl::before {
  content: "";
  height: 72px;
  width: 1px;
  background: #fff;
  position: absolute;
  left: 10px;
  top: -30px;
  transform: rotate(30deg);
}
.hamburger__nav--footer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--footer {
    display: block;
  }
}
.hamburger__nav--footer ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .hamburger__nav--footer ul {
    margin-bottom: 29.3333333333vw;
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
  }
}
.hamburger__nav--footer ul a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.hamburger__nav--footer .copy {
  font-size: 13px;
  color: #fff;
}

.hamburger__nav.active {
  z-index: 999;
  opacity: 1;
}

.header__right--search {
  display: none;
  background: #000;
  position: absolute;
  left: -220%;
}
@media screen and (max-width: 768px) {
  .header__right--search {
    display: none !important;
  }
}
.header__right--search form {
  position: relative;
  width: 120%;
}
.header__right--search form input {
  width: 100%;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  padding: 10px 17px;
  box-sizing: border-box;
  color: #fff;
}
.header__right--search form input::-moz-placeholder {
  color: #fff;
}
.header__right--search form input::placeholder {
  color: #fff;
}
.header__right--search form button {
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.header__right--search.is-active {
  display: block;
}

.Tabs__presentation-slider {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  height: 80%;
  width: 33.333%;
  border-radius: 18px;
  background: #fff;
  transition: left 0.25s, width 0.25s;
}

/* 各タブがアクティブなときの位置調整 */
.fixed__tab--list:first-child.active ~ .Tabs__presentation-slider {
  left: 1%;
}

.fixed__tab--list:nth-child(2).active ~ .Tabs__presentation-slider {
  left: 33.333%;
}
@media screen and (max-width: 768px) {
  .fixed__tab--list:nth-child(2).active ~ .Tabs__presentation-slider {
    left: 30.333%;
  }
}

.fixed__tab--list:nth-child(3).active ~ .Tabs__presentation-slider {
  left: 65.666%;
}
@media screen and (max-width: 768px) {
  .fixed__tab--list:nth-child(3).active ~ .Tabs__presentation-slider {
    left: 64%;
  }
}

.footer {
  position: relative;
  z-index: 100;
}
.footer__main {
  background: #EFE7DD;
}
.footer__main--inner {
  width: 95%;
  margin: 0 auto;
  padding: 127px 0 95px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1320px) {
  .footer__main--inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__main--inner {
    padding: 20.2666666667vw 5.3333333333vw 4vw;
    flex-direction: column;
  }
}
.footer__left {
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 1320px) {
  .footer__left {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__left {
    display: block;
    margin-bottom: 26.6666666667vw;
  }
}
.footer__logo {
  max-width: 300px;
}
@media screen and (max-width: 1320px) {
  .footer__logo {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    display: block;
    width: 56.5333333333vw;
    margin-bottom: 11.2vw;
  }
}
.footer__nav--main {
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 20px 90px;
}
@media screen and (max-width: 1320px) {
  .footer__nav--main {
    gap: 20px 60px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav--main {
    gap: 14px 70px;
    padding-bottom: 34px;
  }
}
.footer__nav--main li a {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1320px) {
  .footer__nav--main li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav--main li a {
    font-size: 4.5333333333vw;
  }
}
.footer__nav--sub {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__nav--sub {
    gap: 37px;
  }
}
.footer__nav--sub a {
  font-size: 14px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__nav--sub a {
    font-size: 3.2vw;
  }
}
.footer__right {
  display: flex;
  gap: 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__right {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer__company {
    margin-bottom: 10px;
  }
}
.footer__company .head {
  font-size: 14px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .footer__company .head {
    font-size: 3.4666666667vw;
  }
}
.footer__company .name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer__company .name {
    font-size: 3.2vw;
  }
}
.footer__address p {
  margin-bottom: 22px;
  line-height: 2;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__address p {
    line-height: 1.4;
    margin-bottom: 13px;
  }
}
.footer .topBtn {
  margin-top: 80px;
}
@media screen and (max-width: 1320px) {
  .footer .topBtn {
    width: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .topBtn {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20.2666666667vw;
  }
}
.footer__sub {
  background: #000;
  padding: 20px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .footer__sub {
    padding: 5px 5.3333333333vw 14px;
  }
}
.footer__sub--inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__sub--menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__sub--menu {
    gap: 17px;
  }
}
.footer__sub--menu li a {
  line-height: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__sub--menu li a {
    font-size: 2.6666666667vw;
  }
}
.footer__copy {
  font-size: 13px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 2.9333333333vw;
    margin-top: 9.3333333333vw;
  }
}
.footer__copy small {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__copy small {
    color: #000;
  }
}

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  transform: translateY(30px);
  /* 下に少しずらす */
  transition: opacity 1s ease, transform 1s ease;
  /* アニメーションの設定 */
}

.fade-in.active {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}/*# sourceMappingURL=style.css.map */