@charset "UTF-8";
/* Scss Document */
html {
  width: 100%;
  height: 100%;
  min-width: 120rem;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 62.5%;
  scroll-padding-top: 7vw;
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7vw;
  }
}
@media only screen and (max-width: 640px) {
  html {
    min-width: 100%;
    font-size: 2vw;
    scroll-padding-top: 12.5vw;
  }
}

body {
  font-size: 1.6rem;
  font-weight: 600;
  width: 100%;
  height: 100%;
  min-width: 120rem;
  letter-spacing: 0.1em;
  text-rendering: optimizeSpeed;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media only screen and (max-width: 640px) {
  body {
    min-width: 100%;
    letter-spacing: 0.05em;
    -webkit-overflow-scrolling: auto;
  }
}

a,
.hover {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

a:hover,
.hover:hover {
  opacity: 0.6;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.sp {
  display: none;
}
@media only screen and (max-width: 640px) {
  .sp {
    display: inherit;
  }
}

@media only screen and (max-width: 640px) {
  .pc {
    display: none;
  }
}

.anchor {
  position: absolute;
  top: -7vw;
  left: 0;
}
@media only screen and (max-width: 640px) {
  .anchor {
    top: -12.5vw;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .inner {
    padding: 0 4vw;
    width: 100%;
  }
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header {
  padding-left: 6rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 7vw;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .header {
    height: 12.5vw;
    padding: 0 4vw 0;
  }
}
.header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(0, 0, 0, 0.85);
}
.header-logo img {
  width: auto;
  height: 9rem;
}
@media only screen and (max-width: 640px) {
  .header-logo img {
    width: 6rem;
    height: auto;
  }
}
.header-logo span {
  margin-top: 1em;
  margin-left: 1em;
  font-size: 1.6rem;
}
.header a {
  text-decoration: none;
}
.header-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0.5vw;
  right: 13vw;
}
@media only screen and (max-width: 640px) {
  .header-tel {
    padding: 0 4vw;
    width: 100%;
    position: static;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header-tel li {
  margin-left: 2em;
  font-size: 2.4rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 640px) {
  .header-tel li {
    margin-left: 0;
    display: block;
    width: 48%;
    text-align: center;
    font-size: 4.6875vw;
  }
}
.header-tel a {
  color: rgba(0, 0, 0, 0.85);
}
@media only screen and (max-width: 640px) {
  .header-tel a,
  .header-tel span {
    display: block;
    text-align: center;
  }
}
.header-tel span {
  margin-right: 1em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
}
@media only screen and (max-width: 640px) {
  .header-tel span {
    display: inline-block;
  }
}
.header-tel .tokyo span {
  border-bottom: solid 2px #E51C24;
}
.header-tel .osaka span {
  border-bottom: solid 2px #0071B4;
}

@media only screen and (max-width: 640px) {
  .open .header {
    background: rgba(255, 255, 255, 0.9);
  }
  .open .global-nav {
    display: block;
  }
  .open .global-nav-menu-item {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5vw;
    height: 2px;
    margin: -1px 0 0 -2.5vw;
    background: #9E2126;
    background-color: transparent;
  }
  .open .global-nav-menu-item:before, .open .global-nav-menu-item:after {
    top: 0;
  }
  .open .global-nav-menu-item:before {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .open .global-nav-menu-item:after {
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
}
.global-nav {
  margin: 0;
  width: 72%;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .global-nav {
    padding-bottom: 32vw;
    display: none;
    background: rgba(255, 255, 255, 0.9);
    overflow: auto;
    -webkit-overflow-scrolling: auto;
    position: absolute;
    top: 12.5vw;
    left: 0;
    width: 100%;
    height: 100vh;
  }
}
.global-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .global-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.global-nav-item {
  padding-bottom: 1vw;
  margin-right: 3em;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .global-nav-item {
    margin: 0;
    border-bottom: solid 2px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    width: 100%;
    font-size: 3.75vw;
  }
}
.global-nav-item a {
  color: rgba(0, 0, 0, 0.85);
  display: block;
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
@media only screen and (max-width: 640px) {
  .global-nav-item a {
    padding: 1em;
  }
}
.global-nav-item.contact {
  padding-bottom: 0;
  margin-right: 0;
  width: 10vw;
  height: 7vw;
}
@media only screen and (max-width: 640px) {
  .global-nav-item.contact {
    margin: 2em 0;
    width: 90%;
    height: auto;
  }
}
.global-nav-item.contact a {
  padding: 1em;
  color: #fff;
  background: #9E2126;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 640px) {
  .global-nav-item.contact a {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.global-nav-item.contact a span {
  display: block;
  font-size: 3.75vw;
}
.global-nav-item.contact a .en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
}
.global-nav-menu {
  padding: 0;
  border: none;
  background: none;
  display: none;
}
@media only screen and (max-width: 640px) {
  .global-nav-menu {
    margin: 1em 0;
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .global-nav-menu-outer {
    position: relative;
    width: 5vw;
    height: 4vw;
  }
}
.global-nav-menu-item {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5vw;
  height: 2px;
  margin: -1px 0 0 -2.5vw;
  background: #9E2126;
}
.global-nav-menu-item:before, .global-nav-menu-item:after {
  display: block;
  position: absolute;
  left: 0;
  width: 5vw;
  height: 2px;
  background: #9E2126;
  content: "";
  -webkit-transition: top 200ms, -webkit-transform 200ms;
  transition: top 200ms, -webkit-transform 200ms;
  transition: transform 200ms, top 200ms;
  transition: transform 200ms, top 200ms, -webkit-transform 200ms;
}
.global-nav-menu-item:before {
  top: -400%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.global-nav-menu-item:after {
  top: 400%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.main {
  min-width: 100%;
}

.content {
  margin-bottom: 12rem;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .content {
    margin-bottom: 6rem;
  }
  .content:first-child {
    padding-top: 0;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 3rem;
  width: 120rem;
}
@media only screen and (max-width: 640px) {
  .inner {
    width: 100%;
  }
}
.inner.md {
  width: 95rem;
}
.inner.lg {
  width: 133rem;
}
.inner.xl {
  width: 158rem;
}
.inner.full {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .inner.md, .inner.lg, .inner.xl, .inner.full {
    width: 100%;
  }
}

.page-title {
  padding: 7vw 0 0;
  margin-bottom: 10rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .page-title {
    padding-top: 12.5vw;
    margin-bottom: 5rem;
  }
}
.page-title-bg {
  background-size: cover;
  background-position: center center;
  height: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 640px) {
  .page-title-bg {
    height: 20rem;
  }
}
.page-title.no-bg {
  padding-top: 14rem;
}
.page-title.no-bg .page-title-bg {
  height: 10rem;
}
@media only screen and (max-width: 1400px) {
  .page-title.no-bg {
    padding-top: 9vw;
  }
}
@media only screen and (max-width: 640px) {
  .page-title.no-bg {
    padding-top: 14.5vw;
  }
}
.page-title .en {
  font-size: 4rem;
}
@media only screen and (max-width: 640px) {
  .page-title .en {
    margin-right: 0;
    display: block;
    font-size: 6.25vw;
  }
}
.page-title .en:first-letter {
  color: #9E2126;
}
.page-title .jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .page-title .jp {
    font-size: 4.6875vw;
  }
}
@media only screen and (max-width: 640px) {
  .page-title {
    padding-top: 12.5vw;
  }
}

.title-l {
  margin: 1.5em auto 1.5em;
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 640px) {
  .title-l {
    font-size: 4.0625vw;
  }
}

.title-m {
  margin: 1.5em auto 1.5em;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 640px) {
  .title-m {
    font-size: 3.75vw;
  }
}

.title-s {
  margin: 1.5em auto 1.5em;
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.footer {
  background: #EEE;
}
.footer .inner {
  padding: 7rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .footer .inner {
    padding: 7vw 4vw;
    display: block;
  }
}
.footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 55%;
}
@media only screen and (max-width: 640px) {
  .footer-company {
    margin-bottom: 3rem;
    display: block;
    width: 100%;
  }
}
.footer-company .address-item {
  width: 48%;
}
@media only screen and (max-width: 640px) {
  .footer-company .address-item {
    margin-bottom: 2em;
    width: 100%;
  }
}
.footer-company .address-item h3 {
  margin-bottom: 0.5em;
  font-size: 2.8rem;
}
@media only screen and (max-width: 640px) {
  .footer-company .address-item h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }
}
.footer-company .business-hours {
  margin-top: 4rem;
  width: 100%;
}
.footer-company .business-hours .notes {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.3;
}
.footer-contact {
  font-size: 2.2rem;
  width: 40%;
}
@media only screen and (max-width: 640px) {
  .footer-contact {
    font-size: 1.8rem;
    width: 100%;
  }
}
.footer-contact .btn-contact {
  margin-top: 2rem;
}
.footer-contact .btn-contact a {
  padding: 1.5em;
  display: block;
  color: #fff;
  background: #9E2126;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .footer-contact .btn-contact a {
    padding: 1em;
  }
}
.footer-bottom {
  color: #fff;
  background: #9E2126;
  font-size: 1.4rem;
}
.footer-bottom .inner {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .footer-bottom .inner {
    display: block;
  }
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 640px) {
  .footer-bottom .copyright {
    margin-top: 1em;
  }
}

.mt-l {
  margin-top: 4em;
}

.mt-ml {
  margin-top: 3em;
}

.mt-m {
  margin-top: 2em;
}

.mt-s {
  margin-top: 1em;
}

.mt-ss {
  margin-top: 0.5em;
}

.mt-0 {
  margin-top: 0;
}

.mb-l {
  margin-bottom: 4em;
}

.mb-ml {
  margin-bottom: 3em;
}

.mb-m {
  margin-bottom: 2em;
}

.mb-s {
  margin-bottom: 1em;
}

.mb-ss {
  margin-bottom: 0.5em;
}

.mb-0 {
  margin-bottom: 0;
}