@charset "utf-8";
/* CSS Document */

/* Base */
.l-content-body, .l-wrapper, .l-content, .l-content-main {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.t-mode-rwd .l-content-main {
  padding: 0 !important;
}
.t-mode-rwd .l-header {
  z-index: -100;
}
.t-mode-rwd.is-sticky .l-header {
  z-index: 1001;
}
.article-inner {
  max-width: 1030px;
  margin: 0 auto;
  padding: 70px 15px;
}
.article-inner > *:first-child {
  margin-top: 0;
}
.article-inner > *:last-child {
  margin-bottom: 0;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .t-mode-rwd .l-content-body[data-type="full"] .l-content-main {
    padding: 0 !important;
  }
  .l-footer {
    margin-top: -1px;
  }
}
@media screen and (min-width: 768px) {
  .l-content-related[data-type="full"] {
    max-width: 1000px;
    float: none;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 80px 15px 100px;
  }
  .t-mode-rwd[data-type="simple"] .l-content {
    margin-top: -110px;
  }
}
@media screen and (max-width: 767px) {
  html[lang="ja"] .m-header-logo {
    margin-left: 0 !important;
    left: 12px !important;
  }
  .l-content-body[data-type="full"] {
    margin: 0;
  }
  .l-content-related[data-type="lp"] {
    margin: 0;
  }
  .t-mode-rwd[data-type="simple"] .l-wrapper {
    padding-top: 0;
  }
  .article-inner {
    padding: 55px 10px;
  }
  .t-mode-rwd[data-type="simple"] .l-footer {
    position: relative;
    z-index: 5;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

/* Section Color */
section {
  background-color: #fff;
  color: #333;
}
section[data-type="blk"] {
  background-color: #1e1e1e;
  color: #ccc;
}
section[data-type="gray"] {
  background-color: #f2f2f2;
  color: #333;
}

/* Main Visual */
.hdg-main {
  width: 100%;
  margin: 0;
  padding: 100px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: #fff url("../img/hdg_main_bg_pc.svg") center center;
  background-size: cover;
}
.hdg-main::before {
  content: '';
  display: block;
  align-self: flex-start;
  width: 15%;
  margin-right: 50px;
  height: 6px;
  background-color: #272f32;
  flex-shrink: 5;
}
.hdg-main::after {
  content: '';
  display: block;
  align-self: flex-end;
  width: 15%;
  margin-left: 50px;
  height: 6px;
  background-color: #c67d75;
  flex-shrink: 5;
}
.hdg-main-box {
  width: 70%;
  height: 100%;
  background: rgba(255,255,255,.9);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hdg-main-lv1 {
  margin: 0px auto 70px;
}
.hdg-main-lv1 > h1 {
  font-size: 4.6rem;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2rem;
  padding-left: 0.2rem;
}
.hdg-main-lv1 > h1 > span {
  display: inline-block;
}
.main-writer {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.main-writer-img {
  overflow: hidden;
  border-radius: 50%;
  max-width: 220px;
}
.main-writer-text {
  margin-top: 20px;
}
.main-writer-text span {
  display: inline-block;
}
.main-writer-text > *:first-child {
  margin-top: 0;
}
.main-writer-text > .role {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-writer-text > .role::after {
  content: '';
  display: block;
  width: 50px;
  margin: 14px auto 12px;
  border-bottom: 2px solid #c67d75;
}
.main-writer-text > .role > span {
  font-size: 1.6rem;
}
.main-writer-text > .role {
  font-size: 1.6rem;
}
.main-writer-text h3 {
  margin: 6px auto 23px;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  padding-left: 0.2rem;
  color: #c67d75;
}
.main-writer-text > .company {
  font-weight: 600;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .hdg-main {
    flex-direction: column;
    background: #fff url("../img/hdg_main_bg_sp.svg") center center;
    background-size: cover;
    padding: 0 15px;
  }
  .hdg-main::before {
    margin-bottom: 40px;
    width: 6px;
    height: 70px;
  }
  .hdg-main::after {
    margin-top: 40px;
    width: 6px;
    height: 70px;
  }
  .hdg-main-box {
    width: 100%;
    padding: 50px 10px 30px;
  }
}


/* Hedding h2 */
.hdg-sec-lv2 {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #896955;
  padding-top: 70px;
}
.hdg-sec-lv2::before, .hdg-sec-lv2::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 15vw;
  height: 5px;
  background-color: #896955;
  flex-shrink: 2;
}
.hdg-sec-lv2[data-type="white"] {
  color: #fff;
}
.hdg-sec-lv2[data-type="white"]::before, .hdg-sec-lv2[data-type="white"]::after {
  background-color: #fff;
}
.hdg-sec-lv2 h2 {
  font-size: 3.8rem;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2rem;
  padding-left: 0.2rem;
  margin: 0 30px;
  flex-grow: 2;
}
.hdg-sec-lv2 h2 > span {
  display: inline-block;
}
.hdg-sec-lv2 + * {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .hdg-sec-lv2  {
    padding-top: 50px;
  }
  .hdg-sec-lv2 h2 {
    font-size: 2.4rem;
    margin: 0 20px;
  }
  .hdg-sec-lv2::before, .hdg-sec-lv2::after {
    max-width: 12vw;
  }
}

/* Staff Introduction */
.staff-introduction {
  display: flex;
}
.staff-introduction > div {
  width: 50%;
  padding: 50px;
}
.staff-introduction > .area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-introduction > .area > .hdg-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0 20px;
  border-top: 8px solid #c67d75;
  border-bottom: 8px solid #c67d75;
}
.staff-introduction > .area > .hdg-area > h2 {
  color: #272f32;
  font-family: alternate-gothic-no-3-d, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 9rem;
  letter-spacing: 0.8rem;
  padding-left: 0.8rem;
  line-height: 1;
}
.staff-introduction > .staff {
  background-color: #c67d75;
  color: #fff;
}
.staff-introduction > .staff > .staff-inner {
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.staff-introduction > .staff > .staff-inner:first-child {
  margin-top: 0;
}
.staff-introduction > .staff > .staff-inner > .staff-image {
  width: 30%;
  overflow: hidden;
  border-radius: 50%;
  max-width: 200px;
  background: #272f32;
  border: 6px solid #fff;
}
.staff-introduction > .staff > .staff-inner > .staff-text {
  width: 70%;
  padding-left: 20px;
}
.staff-introduction > .staff > .staff-inner > .staff-text > *:first-child {
  margin-top: 0;
}
.staff-introduction > .staff > .staff-inner > .staff-text > h3 {
  color: #272f32;
  font-weight: 600;
  font-size: 1.8rem;
}
.nagoya .staff-introduction > .staff > .staff-inner > .staff-text a {
  color: #fff;
}
.taipei .staff-introduction > .area {
  background: #c67d75;
}
.taipei .staff-introduction > .area > .hdg-area {
  border-top: 8px solid #272f32;
  border-bottom: 8px solid #272f32;
}
.taipei .staff-introduction > .area > .hdg-area > h2 {
  color: #fff;
}
.taipei .staff-introduction > .staff {
  background-color: #fff;
  color: #272f32;
}
.taipei .staff-introduction > .staff > .staff-inner > .staff-image {
  border: 6px solid #c67d75;
}
.taipei .staff-introduction > .staff > .staff-inner > .staff-text > h3 {
  color: #c67d75;
}
@media screen and (orientation: portrait) {
  .staff-introduction > .staff > .staff-inner {
    flex-direction: column;
    margin-top: 70px;
  }
  .staff-introduction > .staff > .staff-inner > .staff-image {
    width: 100%;
  }
  .staff-introduction > .staff > .staff-inner > .staff-text {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .staff-introduction {
    flex-direction: column;
  }
  .staff-introduction > div {
    width: 100%;
    padding: 50px 15px;;
  }
  .staff-introduction > .area > .hdg-area {
    padding: 30px 0 20px;
    border-top: 8px solid #c67d75;
    border-bottom: 8px solid #c67d75;
  }
  .staff-introduction > .area > .hdg-area > h2 {
    font-size: 6rem;
  }
  .staff-introduction > .staff > .staff-inner {
    flex-direction: column;
    margin-top: 70px;
  }
  .staff-introduction > .staff > .staff-inner > .staff-image {
    width: 100%;
  }
  .staff-introduction > .staff > .staff-inner > .staff-text {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .taipei .staff-introduction > .area {
    background: #272f32;
  }
  .taipei .staff-introduction > .area > .hdg-area {
    border-top: 8px solid #c67d75;
    border-bottom: 8px solid #c67d75;
  }

}

/* Culture Infomation */
#culture-info {
  background-color: #272f32;
}
.culture-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture-wrapper .m-btn-culture {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.culture-wrapper .m-btn-culture a {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  color: #c67d75;
  border-radius: 5px;
  border: 3px solid #c67d75;
  background: #fff;
  padding: 10px 54px;
  font-weight: 600;
}
.culture-wrapper .m-btn-culture a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .culture-wrapper .m-btn-culture {
    margin-top: 40px;
  }
  .culture-wrapper .m-btn-culture a {
    font-size: 1.6rem;
    padding: 8px 32px;
  }
}


/* Loading */
#loading-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 2000;
  background-color: #000;
  opacity: 1;
  top: 0;
  left: 0;
}
.loading-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; }
}
.spinner {
  position: relative;
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px); 
}
.spinner > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; 
}
.spinner > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.spinner > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.spinner > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.spinner > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
.loading-txt {
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 1.8rem;
  margin-top: 25px;
  color: rgba(255,255,255,0.3);
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  -webkit-background-size: 65px 100%;
  -moz-background-size: 65px 100%;
  background-size: 65px 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-animation-name: shimmer;
  -moz-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 1.6s;
  -moz-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #222;
}
@-moz-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-o-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

/* Logo Animation */
#logo-anime {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 180px;
  width: 50%;
}