@charset "UTF-8";
/* Scss Document */
html {
  width: 100%;
  height: 100%;
  min-width: 1200px;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-style: normal;
  font-size: 62.5%;
}
@media only screen and (max-width: 640px) {
  html {
    min-width: 100%;
  }
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  height: 100%;
  min-width: 1200px;
  letter-spacing: 0.1em;
  text-rendering: optimizeSpeed;
  font-feature-settings: "palt";
  color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 1.5s ease 0s 1 normal;
}
@media only screen and (max-width: 640px) {
  body {
    min-width: 100%;
    font-size: calc(24 / 760 * 100vw);
    letter-spacing: 0.05em;
    -webkit-overflow-scrolling: auto;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a,
img,
video {
  width: auto;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

a,
.hover {
  color: rgba(0, 0, 0, 0.9);
  transition: opacity 0.3s ease;
  text-decoration: none;
}
a:hover, a:hover,
.hover:hover,
.hover:hover {
  opacity: 0.6;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  border: none !important;
}

.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;
  position: relative;
  max-width: 1200px;
  min-width: 1200px;
}
@media only screen and (max-width: 1200px) {
  .inner {
    max-width: 120rem;
    min-width: 120rem;
  }
}
@media only screen and (max-width: 640px) {
  .inner {
    padding: 0 calc(50 / 760 * 100vw);
    width: 100%;
    min-width: 100%;
  }
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
}
.flex-box.-reverse {
  flex-direction: row-reverse;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 10rem;
  z-index: 100;
}
@media only screen and (max-width: 640px) {
  .header {
    height: calc(150 / 760 * 100vw);
  }
}
.header .inner {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding: 3.6rem 0 0 3rem;
}
@media only screen and (max-width: 640px) {
  .header .inner {
    display: block;
    padding: 0;
  }
}
.header .header-logo {
  width: calc(194 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .header .header-logo {
    width: 19.4rem;
  }
}
@media only screen and (max-width: 640px) {
  .header .header-logo {
    width: calc(330 / 760 * 100vw);
    height: calc(150 / 760 * 100vw);
    padding: 0 calc(40 / 760 * 100vw);
    display: flex;
    align-items: center;
  }
}
.header .header-logo a {
  display: block;
  font-size: 0;
  line-height: 0;
}

.open .global-nav {
  display: flex;
  justify-content: space-between;
}
.open .global-nav-menu-item {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 3vw;
  height: 2px;
  margin: -1px 0 0;
  background: #434343;
  background-color: transparent;
}
.open .global-nav-menu-item:before, .open .global-nav-menu-item:after {
  background: #fff;
  top: 0;
}
.open .global-nav-menu-item:before {
  transform: rotate(225deg);
}
.open .global-nav-menu-item:after {
  transform: rotate(-225deg);
}

.global-nav {
  margin: 0;
  padding-left: 70%;
  display: none;
  width: 100%;
  background: #ede8e2;
  background-size: auto 100%;
  overflow: auto;
  -webkit-overflow-scrolling: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(8px);
}
@media only screen and (max-width: 640px) {
  .global-nav {
    padding-left: 0;
  }
}
.global-nav-list {
  padding-left: 6rem;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.global-nav-list .global-nav-item {
  position: relative;
  margin-bottom: 1.5em;
  padding-left: 1.8em;
  font-size: 1.4rem;
  font-weight: bold;
}
.global-nav-list .global-nav-item:before {
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  content: "+";
  font-size: 2rem;
  font-weight: 200;
}
@media only screen and (max-width: 640px) {
  .global-nav-list .global-nav-item {
    font-size: calc(28 / 760 * 100vw);
  }
}
.global-nav-list .global-nav-item span {
  opacity: 0.3;
}
.global-nav-list .global-nav-item .btn-open {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 8vw;
  height: 8vw;
  top: 2.5vw;
  right: 3vw;
  z-index: 1;
}
.global-nav-list .global-nav-item .btn-open:before {
  content: "＋";
  font-size: 2rem;
  font-weight: 300;
  font-weight: bold;
  color: #fff;
}
.global-nav-list .global-nav-item .btn-open.open:before {
  content: "－";
}
.global-nav-sub {
  margin: 1rem 0 0 3.5rem;
}
.global-nav-sub li {
  margin-top: 0.5em;
  font-size: 1.2rem;
  font-weight: normal;
}
.global-nav-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  overflow: hidden;
}
.global-nav-img img {
  max-width: initial;
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .global-nav-img {
    display: none;
  }
}
.global-nav-menu {
  padding: 0;
  border: none;
  position: absolute;
  border-radius: 3rem;
  top: 2rem;
  right: 2rem;
  height: 6rem;
  width: 6rem;
  display: block;
  background: none;
  z-index: 100;
  background: #434343;
}
@media only screen and (max-width: 640px) {
  .global-nav-menu {
    top: calc(30 / 760 * 100vw);
    right: calc(30 / 760 * 100vw);
    border-radius: calc(45 / 760 * 100vw);
    width: calc(90 / 760 * 100vw);
    height: calc(90 / 760 * 100vw);
  }
}
.global-nav-menu-outer {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 640px) {
  .global-nav-menu-outer {
    width: calc(30 / 760 * 100vw);
    height: calc(30 / 760 * 100vw);
  }
}
.global-nav-menu-item {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.2rem;
  height: 1px;
  margin: -1px 0 0;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  .global-nav-menu-item {
    width: calc(32 / 760 * 100vw);
  }
}
.global-nav-menu-item:before, .global-nav-menu-item:after {
  display: block;
  position: absolute;
  left: 0;
  width: 2.2rem;
  height: 1px;
  background: #fff;
  content: "";
  transition: transform 200ms, top 200ms;
}
@media only screen and (max-width: 640px) {
  .global-nav-menu-item:before, .global-nav-menu-item:after {
    width: calc(32 / 760 * 100vw);
  }
}
.global-nav-menu-item:before {
  top: -0.9rem;
  transform: rotate(0deg);
}
@media only screen and (max-width: 640px) {
  .global-nav-menu-item:before {
    top: calc(-10 / 760 * 100vw);
  }
}
.global-nav-menu-item:after {
  top: 0.9rem;
  transform: rotate(0deg);
}
@media only screen and (max-width: 640px) {
  .global-nav-menu-item:after {
    top: calc(10 / 760 * 100vw);
  }
}
.global-nav-pc {
  margin: 0 12rem 0 auto;
}
.global-nav-pc-list {
  display: flex;
}
.global-nav-pc-list li {
  margin-left: 2em;
  font-size: 1.5rem;
}
.global-nav-pc-list li span {
  opacity: 0.3;
}
@media only screen and (max-width: 640px) {
  .global-nav-pc {
    display: none;
  }
}

.main {
  margin-top: 10rem;
  line-height: 1.9;
}
@media only screen and (max-width: 640px) {
  .main {
    margin-top: calc(150 / 760 * 100vw);
  }
}

.page-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 32rem;
  line-height: 1.2;
}
@media only screen and (max-width: 640px) {
  .page-ttl {
    height: calc(200 / 760 * 100vw);
  }
}
.page-ttl .en {
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 6.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 640px) {
  .page-ttl .en {
    font-size: calc(70 / 760 * 100vw);
  }
}
.page-ttl .jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .page-ttl .jp {
    font-size: calc(40 / 760 * 100vw);
  }
}
.page-ttl .page-sttl {
  margin-top: 1em;
}
.breadcrumb ol {
  padding: 1.5em;
  font-size: 1.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 640px) {
  .breadcrumb ol {
    font-size: calc(20 / 760 * 100vw);
  }
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li:before {
  content: ">";
  margin: 0 0.5em;
}
.breadcrumb li:first-child:before {
  content: none;
}
.breadcrumb li a {
  text-decoration: underline;
}
.breadcrumb li a:hover {
  text-decoration: none;
}

.footer {
  margin-top: 0;
  padding: 100px 0;
  background: #F6F6F6;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .footer {
    padding: calc(100 / 760 * 100vw) 0;
  }
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-logo {
  margin-bottom: 2rem;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .footer .footer-logo {
    margin-bottom: calc(20 / 760 * 100vw);
    text-align: center;
  }
}
.footer .footer-logo a {
  color: #434343;
}
.footer .footer-logo img {
  display: inline-block;
  width: 24rem;
  margin-bottom: 2rem;
  color: #434343;
}
@media only screen and (max-width: 640px) {
  .footer .footer-logo img {
    width: calc(313 / 760 * 100vw);
    margin: 0 auto 0.5em;
  }
}
.footer .footer-logo .jp {
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  .footer .footer-logo .jp {
    margin-bottom: 2.5em;
    font-size: calc(24 / 760 * 100vw);
  }
}
.footer .footer-nav {
  width: 600px;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .footer .footer-nav {
    display: none;
  }
}
.footer .footer-nav-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 370px;
}
.footer .footer-nav-list a {
  color: #434343;
}
.footer .footer-nav-list span {
  opacity: 0.3;
}
.footer .footer-nav-item {
  position: relative;
  margin-bottom: 1.5em;
  padding-left: 1.8em;
  font-size: 1.4rem;
  font-weight: bold;
}
.footer .footer-nav-item:before {
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  content: "+";
  font-size: 2rem;
  font-weight: 200;
}
.footer .footer-nav-sub {
  margin: 1rem 0 0 3.5rem;
}
.footer .footer-nav-sub li {
  margin-top: 0.5em;
  font-size: 1.2rem;
  font-weight: normal;
}
.footer .footer-tel {
  font-size: 3.4rem;
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-weight: 500;
}
.footer .footer-open {
  margin-bottom: 1.5em;
}
.footer .footer-info {
  width: 400px;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .footer .footer-info {
    width: 100%;
    text-align: center;
  }
}
.footer .footer-address {
  margin-bottom: 1.5em;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (max-width: 640px) {
  .footer .footer-address {
    margin-bottom: calc(30 / 760 * 100vw);
    font-size: calc(20 / 760 * 100vw);
  }
}
.footer .footer-ico {
  margin-bottom: 40px;
}
@media only screen and (max-width: 640px) {
  .footer .footer-ico {
    margin-bottom: calc(50 / 760 * 100vw);
    text-align: center;
  }
}
.footer .footer-ico li {
  display: inline-block;
  margin-left: 20px;
}
@media only screen and (max-width: 640px) {
  .footer .footer-ico li {
    width: calc(58 / 760 * 100vw);
    margin: 0 calc(10 / 760 * 100vw);
  }
}
.footer .footer-copy {
  font-size: 1.4rem;
}
@media only screen and (max-width: 640px) {
  .footer .footer-copy {
    font-size: calc(20 / 760 * 100vw);
  }
}

.floating-btn {
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  z-index: 10;
}
@media only screen and (max-width: 640px) {
  .floating-btn {
    right: calc(10 / 760 * 100vw);
    bottom: calc(10 / 760 * 100vw);
  }
}
.floating-btn li {
  margin: -0.8rem 0 0;
}
@media only screen and (max-width: 640px) {
  .floating-btn li {
    width: calc(130 / 760 * 100vw);
    height: calc(130 / 760 * 100vw);
    margin-top: calc(-10 / 760 * 100vw);
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.c-ttl-ja {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  z-index: 1;
  position: relative;
}
.c-ttl-ja::before {
  content: "OUTLINE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(225, 225, 225, 0.8);
  text-align: center;
  font-family: "Akrobat ExtraLight";
  font-size: 12.8rem;
  font-weight: 100;
  line-height: normal;
  z-index: -1;
}
@media only screen and (max-width: 640px) {
  .c-ttl-ja::before {
    font-size: 7.5rem;
  }
}

.c-ttl-en {
  color: rgba(212, 212, 212, 0.8);
  text-align: center;
  font-family: "Akrobat ExtraLight";
  font-size: 128px;
  font-weight: 100;
  line-height: normal;
  display: block;
}
@media only screen and (max-width: 640px) {
  .c-ttl-en {
    font-size: calc(100 / 760 * 100vw);
  }
}/*# sourceMappingURL=common.css.map */