@charset "UTF-8";
:root {
  --color-default: #333;
  --color-inverted: white;
  --color-black: black;
  --color-link: inherit;
  --color-gray: #ccc;
  --bg-default: white;
  --bg-inverted: #333;
  --bg-light: url(/images/common/bg_light.jpg);
  --bg-dark: url(/images/common/bg_dark.jpg);
  --basic-margin: 40px;
  --wide-margin: 70px;
  --mobile-basic-margin: 27px;
  --section-padding: 96px;
  --mobile-section-padding: 40px;
  --mobile-content-padding: 15px;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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,
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;
  font-size: 100%;
  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;
}

select,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

/*
====================================================================
 BASIC
====================================================================
*/
html,
body {
  min-width: 1240px;
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-default);
}

body {
  position: relative;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

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

button {
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transform: scale(1);
}
button:active, button:focus {
  transform: none !important;
}

small {
  font-size: 70%;
}

sup {
  font-size: 50%;
}

@media (width >= 768px) {
  .sp {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (width >= 1200px) {
  .tb {
    display: none !important;
  }
}
/*
====================================================================
 COMMON
====================================================================
*/
main {
  width: 100%;
}

.en {
  display: block;
  font-family: Futura, "Century Gothic", CenturyGothic, Futura, Jost;
}
.is-mac .en {
  font-weight: normal !important;
}

.jp {
  display: block;
}

.section--page-title {
  background-image: var(--bg-dark);
  background-position: center top;
  background-repeat: repeat;
  color: var(--color-inverted);
  padding: 0;
  height: 386px;
  display: flex;
  align-items: flex-end;
}
.section--page-title h2 .en::after {
  background-color: var(--bg-default);
}
.section--page-title h1 {
  padding: var(--basic-margin) 0;
}
.section--page-title h1 span {
  line-height: 1;
}
.section--page-title h1 span.en {
  position: relative;
  padding-bottom: 35px;
  font-weight: 600;
}
.section--page-title h1 span.en::after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 35px;
  background-color: var(--bg-default);
  rotate: 45deg;
  bottom: 4px;
  left: 53px;
}
.section--page-title h1 span.jp {
  transition-delay: 1s;
}

.section-block {
  padding: var(--section-padding) 0;
}
.section-block:last-child {
  padding-bottom: calc(var(--section-padding) + 16px);
}
.section-block__container {
  padding: 0 var(--basic-margin);
}
.section-block__header {
  margin-bottom: var(--basic-margin);
}
.section-block__body {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

h2 span {
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 1s var(--ease-out-cubic), transform 1s var(--ease-out-quint);
  line-height: 1;
}
h2 span.en {
  position: relative;
  padding-bottom: 28px;
}
h2 span.en::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 25px;
  background-color: var(--bg-inverted);
  rotate: 45deg;
  scale: 0;
  transform-origin: top right;
  bottom: -2px;
  left: 52px;
  transition: scale 0.5s;
  transition-delay: 0.5s;
}
.in-viewport h2 span.en::after {
  scale: 1;
}
h2 span.jp {
  transition-delay: 1s;
}
.in-viewport h2 span {
  opacity: 1;
  transform: translateY(0);
}

.nowrap {
  white-space: nowrap;
}

.breadcrumbs {
  padding: 0 var(--basic-margin);
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
}
.breadcrumbs ul li {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li:not(:last-child)::after {
  content: "＞";
}
.breadcrumbs ul li a {
  padding: 4px 0;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  .pc {
    display: none !important;
  }
  /*
  ====================================================================
   SP / BASIC
  ====================================================================
  */
  html,
  body {
    min-width: initial;
  }
  /*
  ====================================================================
   SP / COMMON
  ====================================================================
  */
  .section-block {
    padding: var(--mobile-section-padding) 0;
  }
  .section-block__container {
    padding: 0 var(--mobile-content-padding) !important;
  }
  .section-block__header {
    margin-bottom: var(--mobile-basic-margin);
  }
  .section--page-title {
    padding-top: 23.7%;
    height: auto;
  }
  .section--page-title h1 {
    padding: calc(var(--basic-margin) / 2) 0;
  }
  .section--page-title h1 span.en {
    padding-bottom: 27px;
    margin-bottom: 4px;
  }
  .section--page-title h1 span.en::after {
    width: 2px;
    height: 25px;
    bottom: 0;
    left: 45px;
  }
  h2 span {
    opacity: 0;
    transform: translateY(40%);
    transition: opacity 1s var(--ease-out-cubic), transform 1s var(--ease-out-quint);
    text-align: center;
  }
  h2 span.en {
    padding-bottom: 20px;
    margin-bottom: 4px;
  }
  h2 span.en::after {
    height: 25px;
    bottom: -6px;
    left: calc(50% + 5px);
  }
  .breadcrumbs {
    padding: 0 var(--mobile-content-padding);
  }
  .nowrap {
    white-space: normal;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/* Noto Sans Regular */
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/noto-sans-jp-regular.woff2") format("woff2");
}
/* Noto Sans Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-sans-jp-bold.woff2") format("woff2");
}
/* Noto Sans Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-sans-jp-medium.woff2") format("woff2");
}
/* Noto Sans Medium */
@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/jost-medium.woff2") format("woff2");
}
body {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
  color: var(--color-default);
}

em {
  font-style: normal;
}

small {
  font-size: 70%;
}

sup {
  font-size: 50%;
}

address {
  font-style: normal;
}

h1 .en {
  font-size: 72px;
  font-weight: 600;
}
h1 .jp {
  font-size: 28px;
  font-weight: 600;
}

h2 .en {
  font-size: 51px;
  font-weight: 600;
}
h2 .jp {
  font-size: 20px;
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  body {
    font-size: 17px;
    line-height: 1.6;
  }
  .section--page-title h1 .en {
    font-size: 48px;
  }
  .section--page-title h1 .jp {
    font-size: 20px;
  }
  h2 {
    font-weight: 600;
  }
  h2 .en {
    font-size: 45px;
  }
  h2 .jp {
    font-size: 20px;
  }
  h3 {
    font-weight: 600;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
.button {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  position: relative;
  font-family: "Century Gothic", CenturyGothic, Futura, Jost, "Noto Sans", sans-serif;
}
.button::before {
  content: "";
  display: block;
  position: static;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid var(--color-inverted);
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.5s;
}
.button::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-inverted);
  border-right: 1px solid var(--color-inverted);
  transform: rotate(45deg);
  left: 6px;
  transition: border-color 0.5s;
}
.button span {
  display: block;
}
.footer__content .button span {
  font-weight: 600;
}
.button--contact {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--bg-default);
  border: 1px solid var(--color-inverted);
  border-radius: 26px;
  color: var(--color-default);
  padding: 0 10px 0 2px;
  transition: background-color 0.5s, color 0.5s;
}
.button--contact span {
  padding-bottom: 2px;
}
.button--contact::before {
  background-color: var(--bg-inverted);
  border-color: var(--bg-inverted);
}
.button--contact::after {
  left: 8px;
}
.button:hover {
  background-color: transparent;
  color: var(--color-inverted);
}
.button:hover::before {
  background-color: var(--bg-default);
  border-color: var(--color-inverted);
}
.button:hover::after {
  border-color: var(--color-default);
}

/*
====================================================================
 HEADER
====================================================================
*/
.header {
  position: relative;
  width: 100%;
  z-index: 3;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
}
.header__container {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: 1fr auto 60px;
  -moz-column-gap: var(--basic-margin);
       column-gap: var(--basic-margin);
  align-items: center;
  background-color: var(--bg-default);
}
.header-menu__list {
  display: flex;
  -moz-column-gap: var(--basic-margin);
       column-gap: var(--basic-margin);
  height: 60px;
}
.header-menu__item {
  transition: opacity 0.5s linear;
}
.header-menu__item a {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  white-space: nowrap;
  color: var(--color-black);
}
.header-menu__item a span {
  display: block;
}
.header-menu__item a span.en {
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.header-menu__item a span.jp {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateY(100%) translateX(-50%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.header-menu__item a:hover span.en {
  opacity: 0;
  transform: translateY(-100%);
}
.header-menu__item a:hover span.jp {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/*
====================================================================
 MEGA MENU
====================================================================
*/
.mega-menu__button {
  background-color: var(--color-default);
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 9999;
  transition: background-color 0.3s ease-out;
}
.mega-menu__button span {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--bg-default);
  transition: background-color 0.3s;
}
.mega-menu__button span::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--bg-default);
  top: -6px;
  transition: transform 0.3s, background-color 0.3s;
}
.mega-menu__button span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--bg-default);
  bottom: -6px;
  transition: transform 0.3s, background-color 0.3s;
}
.mega-menu__button.is-active {
  background-color: var(--bg-default);
}
.mega-menu__button.is-active span {
  background-color: transparent;
}
.mega-menu__button.is-active span::before {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--bg-inverted);
}
.mega-menu__button.is-active span::after {
  bottom: 0;
  transform: rotate(45deg);
  background-color: var(--bg-inverted);
}

.mega-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s linear;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: var(--wide-margin) var(--basic-margin);
  background: url(../images/common/bg_megamenu.png) center top/cover no-repeat;
  color: var(--color-inverted);
}
.mega-menu.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s linear;
}
.mega-menu__body {
  max-height: 100%;
  overflow-y: scroll;
  display: grid;
  grid-template-columns: repeat(2, auto);
}
.mega-menu__info {
  padding-right: calc(var(--wide-margin) + 16px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  background: url(../images/common/triple_lines.svg) right top repeat-y;
}
.mega-menu__logo {
  padding: calc(var(--wide-margin) * 2) 0;
}
.mega-menu__footer .button {
  display: inline-flex;
  font-size: 16px;
  line-height: 1.5;
}
.mega-menu__footer .button--contact {
  background-color: var(--color-inverted);
  border-radius: 26px;
  color: var(--color-default);
  padding: 0 10px 0 2px;
  margin-right: 80px;
}
.mega-menu__footer .button--contact span {
  padding-bottom: 2px;
}
.mega-menu__footer .button--contact::before {
  background-color: var(--bg-inverted);
  border-color: var(--bg-inverted);
}
.mega-menu__footer .button--contact::after {
  left: 8px;
}
.mega-menu__footer .copyright {
  width: 100%;
  font-size: 14px;
  margin-top: 20px;
}
.mega-menu__nav {
  padding-left: var(--wide-margin);
}
.mega-menu__item:not(:last-child) {
  margin-bottom: calc(var(--basic-margin) / 2);
}
.mega-menu__item li a {
  line-height: 2.5;
  font-size: 16px;
}
.mega-menu__heading {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 1em;
       column-gap: 1em;
  line-height: 1.5;
}
.mega-menu__heading a {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 1em;
       column-gap: 1em;
  line-height: 1.5;
}
.mega-menu__heading:not(:first-of-type) {
  margin-top: calc(var(--basic-margin) / 2);
}
.mega-menu__heading .en {
  font-size: 36px;
  font-weight: 600;
}
.mega-menu__heading .jp {
  font-size: 18px;
  font-weight: 500;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / HEADER
  ====================================================================
  */
  .header__container {
    height: 55px;
    align-items: center;
    padding: 0 var(--mobile-content-padding);
    grid-template-columns: 1fr 40px;
    transition: background-color 0.3s;
  }
  .header__logo {
    background: url(/images/common/logo_inverted.svg) left center/241.25px auto no-repeat;
    position: relative;
    z-index: 10000;
  }
  .header__logo img {
    transition: opacity 0.3s;
  }
  .header.is-opened {
    background-color: transparent;
  }
  .header.is-opened .header__logo img {
    opacity: 0;
  }
  .mega-menu__button {
    width: 40px;
    height: 40px;
  }
  .mega-menu__button span {
    top: 50%;
    left: calc(50% - 7px);
    width: 14px;
    height: 1px;
  }
  .mega-menu__button span::before {
    height: 1px;
    top: -4px;
  }
  .mega-menu__button span::after {
    height: 1px;
    bottom: -4px;
  }
  .mega-menu {
    padding: 55px 0 100px 0;
    overflow-y: unset;
    background: url(../images/sp/common/bg_megamenu.png) center top/cover no-repeat;
  }
  .mega-menu__body {
    display: block;
    border-top: 1px solid var(--color-inverted);
  }
  .mega-menu__info {
    display: none;
  }
  .mega-menu__nav {
    padding-left: 0;
  }
  .mega-menu__item {
    margin-bottom: 0 !important;
    border-bottom: 1px solid var(--color-inverted);
    padding: var(--mobile-content-padding);
  }
  .mega-menu__item ul {
    padding-left: var(--mobile-content-padding);
  }
  .mega-menu__item li {
    margin-top: 30px;
  }
  .mega-menu__item li .button {
    font-size: 12px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .mega-menu__item li .button span {
    line-height: 1.4;
  }
  .mega-menu__item:nth-child(2) .mega-menu__heading {
    position: relative;
  }
  .mega-menu__item:nth-child(2) .mega-menu__heading::after {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 13px;
    border-top: 1px solid var(--color-inverted);
    border-right: 1px solid var(--color-inverted);
    right: 10px;
    top: calc(50% - 9px);
    rotate: 135deg;
    transition: rotate 0.5s;
  }
  .mega-menu__item:nth-child(2) .mega-menu__heading.is-active::after {
    rotate: -45deg;
  }
  .mega-menu__item:nth-child(3) .mega-menu__heading {
    position: relative;
  }
  .mega-menu__item:nth-child(3) .mega-menu__heading::after {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 13px;
    border-top: 1px solid var(--color-inverted);
    border-right: 1px solid var(--color-inverted);
    right: 10px;
    top: calc(50% - 9px);
    rotate: 135deg;
    transition: rotate 0.5s;
  }
  .mega-menu__item:nth-child(3) .mega-menu__heading.is-active::after {
    rotate: -45deg;
  }
  .mega-menu__heading {
    display: block;
    line-height: 1.35;
  }
  .mega-menu__heading a {
    display: block;
    line-height: 1.35;
  }
  .mega-menu__heading .en {
    font-size: 18px;
  }
  .mega-menu__heading .jp {
    font-size: 12px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (768px < width) and (width < 1200px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*
====================================================================
 FOOTER
====================================================================
*/
.footer {
  padding: var(--basic-margin);
  margin-top: -16px;
  background-image: var(--bg-dark);
  background-position: center top;
  background-repeat: repeat;
  color: var(--color-inverted);
  border-radius: 16px 16px 0 0;
}
.footer h2 .en::after {
  background-color: var(--bg-default);
}
.footer__container {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
}
.footer address {
  font-family: "Noto Sans", sans-serif;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.footer .copyright {
  line-height: 1;
}

.footer-menu {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: calc(var(--basic-margin) * 4);
}
.footer-menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  line-height: 1.35;
  row-gap: 6px;
}
.footer-menu__item:not(:last-child) {
  padding-left: 2px;
}
.footer-menu .button--contact {
  font-size: 16px;
  padding-top: 1px;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / FOOTER
  ====================================================================
  */
  .footer {
    padding: var(--basic-margin) var(--mobile-content-padding);
    background-image: url(../images/sp/common/bg_dark.jpg);
    background-position: left top;
    background-repeat: repeat-y;
    background-size: 100% auto;
  }
  .footer__container {
    padding-top: 0;
    display: block;
  }
  .footer address {
    margin-bottom: 5px;
  }
  .footer__info {
    display: block;
    margin-top: 50px;
  }
  .footer .copyright {
    margin-top: 14px;
  }
  .footer-menu {
    width: 100%;
    margin-bottom: 70px;
  }
  .footer-menu__list {
    grid-template-columns: repeat(2, 50%);
    row-gap: 15px;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__item:not(:last-child) {
    font-size: 18px;
  }
  .footer-menu .button--contact {
    border-radius: 6px;
    background-color: var(--bg-default);
    color: var(--color-default);
  }
  .footer-menu .button--contact::before {
    flex-shrink: 0;
  }
  .footer-menu .button--contact span {
    padding-bottom: 0;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=global.css.map */