@charset "UTF-8";
/*!
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
*/
/**
 # Foundation
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,200;0,300;0,400;0,700;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* reset for form */
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

/*
	SASS Vars
---------------------------------------------------------------------------- */
/*
	CSS Vars
---------------------------------------------------------------------------- */
:root {
  --color-primary: #122284;
  --color-secondary: #070707;
  --font-base: "Roboto", sans-serif;
  --font-ls-base: 0.02em;
  --container-width: 1140px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif,-apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo, sans-serif;
  color: #070707;
  background-color: #F2F2F2;
  text-align: left;
  font-size: 1.5rem;
  font-weight: normal;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

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

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4.06vw;
    padding: 0;
  }
}

/**
 # Vendor CSS
 */
/**
 # Layout
 */
/*--------------------------------------------------------------
    # footer.scss
--------------------------------------------------------------*/
/*  Footer
--------------------------------------------------------------*/
.l--footer {
  border-top: 1px solid var(--color-primary);
  background-color: #FFF;
  padding: 40px 30px;
  position: relative;
}

.l--footer-copyright {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 900;
  font-family: var(--font-base);
}

@media screen and (max-width: 768px) {
  .l--footer {
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .l--footer-copyright {
    font-size: calc(10 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # header.scss
--------------------------------------------------------------*/
/*  Header
--------------------------------------------------------------*/
.l--header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 40;
  min-height: 100px;
  background-color: #FFF;
}

.l--header__inner {
  width: auto;
  position: relative;
  height: 100px;
  background-color: #FFF;
}

.l--header__logo {
  position: absolute;
  left: 20px;
  top: 25px;
  display: block;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  width: 192px;
}

.l--header__logo:hover {
  opacity: 0.45;
}

.l--header__logo img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.l--header__button {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  box-sizing: border-box;
  border: 3px solid #000;
}

.l--header__button:link {
  text-decoration: none;
}

.l--header__button:visited {
  text-decoration: none;
}

.l--header__button:hover {
  text-decoration: none;
}

.l--header__button:hover:after {
  width: 100%;
}

.l--header__button:hover span {
  color: #FFF;
}

.l--header__button:after {
  content: "";
  height: 100%;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #000;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  z-index: 1;
}

.l--header__button span {
  color: #000;
  letter-spacing: 0.06em;
  font-weight: 900;
  font-size: 1.4rem;
  position: relative;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .l--header {
    min-height: calc(70 / 390 * 100vw);
  }
  .l--header__inner {
    height: calc(70 / 390 * 100vw);
  }
  .l--header__logo {
    left: calc(20 / 390 * 100vw);
    top: calc(20 / 390 * 100vw);
    width: calc(140 / 390 * 100vw);
  }
  .l--header__button {
    margin: 0 auto;
    position: relative;
    right: inherit;
    top: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(200 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    box-sizing: border-box;
    border: calc(1.5 / 390 * 100vw) solid #000;
  }
  .l--header__button:after {
    display: none;
  }
  .l--header__button span {
    font-size: calc(14 / 390 * 100vw);
  }
}

/**
 # Objects -  Compornent -
 */
/**
 # Objects -  project -
 */
/*
    animation.scss
---------------------------------------------------------------------------- */
/*
    Config
--------------------------------------------------------------*/
.ani--clip__text {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

/*
    Common[contents]
--------------------------------------------------------------*/
.mask-ani-upper-t01,
.mask-ani-upper-t02,
.mask-ani-upper,
.mask-ani-upper.not-yet-visible {
  clip-path: inset(0 0 98% 0);
  opacity: 0.0;
  transition: clip-path 1.55s ease, opacity 1s ease;
  transition-delay: 0s;
  will-change: clip-path;
}

.mask-ani-upper.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0;
}

.mask-ani-upper-t01.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.mask-ani-upper-t02.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 1.5s;
}

.mask-ani-left-t01,
.mask-ani-left-t02,
.mask-ani-left,
.mask-ani-left.not-yet-visible {
  clip-path: inset(0 98% 0 0);
  opacity: 0.0;
  transition: clip-path 2.25s ease, opacity 1s ease;
  transition-delay: 0s;
  will-change: clip-path;
}

.mask-ani-left.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0;
}

.mask-ani-left-t01.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.mask-ani-left-t02.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 1.5s;
}

@keyframes loopScaleFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-loop-scale img {
  animation: loopScaleFade 6s ease-in-out infinite;
}

/*
    home[keyvisual]
--------------------------------------------------------------*/
body.preload {
  background-color: #FFF;
  transition: 5.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0s;
}

body.loaded {
  background-color: #F5F5F5;
}

body.preload .h--hero__main .ani--clip__text {
  clip-path: inset(0 100% 0 0);
  opacity: 0.5;
  transform: scale(1.125);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease-out, transform 1s ease-out;
}

body.loaded .h--hero__main .ani--clip__text {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: scale(1);
}

body.preload .h--hero__sub .ani--clip__text {
  clip-path: inset(0 100% 0 0);
  opacity: 0.5;
  transform: scale(1.025);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1s, opacity 1s ease-out, transform 1s ease-out;
}

body.loaded .h--hero__sub .ani--clip__text {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: scale(1);
}

body.preload .h--hero__photo img {
  opacity: 0.0;
  transform: scale(1.1) rotateZ(-3deg) translateY(15px);
  filter: brightness(1.2) contrast(0.8);
  transition: transform 1s cubic-bezier(0.09, 0.43, 0.1, 0.79) 1.5s, opacity 1s ease 1s, filter 1s ease 1s;
  will-change: transform, filter;
}

body.loaded .h--hero__photo img {
  opacity: 1.0;
  transform: scale(1) rotateZ(0deg) translateY(0);
  filter: brightness(1) contrast(1);
}

body.preload .l--header {
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 2.5s;
}

body.loaded .l--header {
  opacity: 1;
  transform: translateY(0);
}

body.preload .h--hero__news {
  opacity: 0;
  transform: translateX(-150px);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 3s;
}

body.loaded .h--hero__news {
  opacity: 1;
  transform: translateX(0);
}

/*
    interview[contents]
--------------------------------------------------------------*/
.mask-images-ani-left,
.mask-images-ani-left.not-yet-visible {
  clip-path: inset(0 0 0 100%);
  opacity: 1.0;
  transition: clip-path 1s ease, opacity 1s ease;
  transition-delay: 0s;
}

.mask-images-ani-left.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0s;
}

.mask-text-ani-right,
.mask-text-ani-right.not-yet-visible {
  clip-path: inset(0 100% 0 0);
  opacity: 1.0;
  transition: clip-path 0.75s ease, opacity 1s ease;
  transition-delay: 0s;
}

.mask-text-ani-right.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.meta-text-ani,
.meta-text-ani.not-yet-visible {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
  transition-delay: 0s;
}

.meta-text-ani.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.0s;
}

/*
    Common[contents]
--------------------------------------------------------------*/
.fade-up-scale,
.fade-up-scale.not-yet-visible {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.fade-up-t01,
.fade-up-t02,
.fade-up-t03,
.fade-up,
.fade-up.not-yet-visible {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-t01.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.fade-up-t02.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}

.fade-up-t03.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.25s;
}

/*  Gmenu
--------------------------------------------------------------*/
.l--gmenu-list {
  display: flex;
  align-items: center;
  position: absolute;
  right: 185px;
  top: 20px;
}

.l--gmenu-list li {
  margin: 0 25px 0;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l--gmenu-list li span {
  display: block;
  text-align: center;
}

.l--gmenu-list li a {
  color: #000;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  display: block;
  position: relative;
}

.l--gmenu-list li a:link {
  text-decoration: none;
}

.l--gmenu-list li a:visited {
  text-decoration: none;
}

.l--gmenu-list li a:hover {
  text-decoration: none;
}

.l--gmenu-list li a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  display: block;
  left: 0;
  bottom: -10px;
  position: absolute;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--gmenu-list li a:hover:after {
  width: 100%;
}

.l--gmenu-list__jp {
  letter-spacing: 0.06em;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.42857;
  margin: 0 0 4px;
}

.l--gmenu-list__en {
  letter-spacing: 0.16em;
  font-family: var(--font-base);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.45455;
}

.burger--wrap {
  display: block;
}

@media screen and (max-width: 768px) {
  body.scroll-lock {
    overflow: hidden;
    height: 100%;
  }
  .l--gmenu-list {
    display: block;
    right: inherit;
    top: inherit;
    position: relative;
    padding: 0 0 calc(25 / 390 * 100vw);
  }
  .l--gmenu-list li {
    margin: 0;
    min-height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--color-primary);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .l--gmenu-list li span {
    display: block;
    text-align: center;
  }
  .l--gmenu-list li a {
    padding: 0 0 calc(20 / 390 * 100vw);
  }
  .l--gmenu-list li a:after {
    display: none;
  }
  .l--gmenu-list li a:hover:after {
    display: none;
  }
  .l--gmenu-list__jp {
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(5 / 390 * 100vw);
  }
  .l--gmenu-list__en {
    font-size: calc(10 / 390 * 100vw);
  }
  .burger--wrap {
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    top: calc(15 / 390 * 100vw);
    right: calc(20 / 390 * 100vw);
    position: absolute;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    border-radius: 50%;
  }
  .burger {
    width: calc(20 / 390 * 100vw);
    height: calc(12 / 390 * 100vw);
    z-index: 9999;
    display: flex;
    align-items: center;
    position: relative;
  }
  .burger .line {
    width: calc(18 / 390 * 100vw);
    height: 1.0px;
    background: #FFF;
    transition: 0.3s;
    right: 0;
    position: absolute;
  }
  .burger::before {
    content: "";
    position: absolute;
    width: calc(20 / 390 * 100vw);
    height: 1.0px;
    top: 0;
    right: 0;
    background: #FFF;
    transition: 0.6s;
  }
  .burger::after {
    content: "";
    position: absolute;
    width: calc(18 / 390 * 100vw);
    height: 1.0px;
    bottom: 0;
    right: 0;
    background: #FFF;
    transition: 0.8s;
  }
  .navigation.nav-active {
    display: block;
    z-index: 300;
    animation: show 0.25s linear 0s;
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .navigation {
    display: none;
    opacity: 0.0;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(18, 34, 132, 0.85);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
  }
  .navigation .navigation--content {
    background: #FFF;
    border-top: 1px solid #DDD;
    padding: calc(50 / 390 * 100vw) 0;
    height: auto;
    width: 100%;
    position: relative;
    right: 0;
    z-index: 100;
  }
  .burger-active::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    height: 1.0px;
  }
  .burger-active::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    width: 100%;
    height: 1.0px;
  }
  .burger-active > .line {
    transform: scale(0);
  }
  .nav-active {
    top: calc(70 / 390 * 100vw);
    right: 0;
    opacity: 1.0;
  }
  .burger-active .line {
    background-color: #FFF;
  }
}

/**
 # Objects -  pages -
 */
/*--------------------------------------------------------------
    # _home.scss
--------------------------------------------------------------*/
/*
    Hero [.h--hero]
--------------------------------------------------------------*/
.h--hero {
  width: 100vw;
  height: calc(960 / 1400 * 100vw);
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

.h--hero__main {
  position: absolute;
  z-index: 10;
  width: calc(600 / 1400 * 100vw);
  left: calc(80 / 1400 * 100vw);
  top: calc(450 / 1400 * 100vw);
}

.h--hero__main img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--hero__sub {
  position: absolute;
  z-index: 10;
  width: calc(355 / 1400 * 100vw);
  left: calc(80 / 1400 * 100vw);
  top: calc(580 / 1400 * 100vw);
  display: block;
}

.h--hero__sub img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--hero__photo {
  position: absolute;
  z-index: 5;
  width: calc(1220 / 1400 * 100vw);
  right: calc(-90 / 1400 * 100vw);
  top: calc(133 / 1400 * 100vw);
}

.h--hero__photo img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--hero__news {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: calc(40 / 1400 * 100vw);
  background-color: #FFF;
  padding: 20px 40px;
  border-radius: 0 25px 25px 0;
}

.h--hero__news > li {
  display: flex;
}

.h--hero__news-date {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-base);
}

.h--hero__news-text {
  margin: 0 0 0 30px;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  font-family: var(--font-base);
}

@media screen and (max-width: 768px) {
  .h--hero {
    width: 100vw;
    height: calc(840 / 390 * 100vw);
  }
  .h--hero__main {
    width: calc(345 / 390 * 100vw);
    left: calc(20 / 390 * 100vw);
    top: calc(590 / 390 * 100vw);
  }
  .h--hero__main img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .h--hero__sub {
    width: calc(188 / 390 * 100vw);
    left: calc(20 / 390 * 100vw);
    top: calc(710 / 390 * 100vw);
  }
  .h--hero__photo {
    width: calc(358 / 390 * 100vw);
    right: inherit;
    left: calc(20 / 390 * 100vw);
    top: calc(90 / 390 * 100vw);
  }
  .h--hero__news {
    bottom: calc(20 / 390 * 100vw);
    padding: calc(15 / 390 * 100vw) calc(20 / 390 * 100vw);
    border-radius: 0 calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .h--hero__news > li {
    display: block;
  }
  .h--hero__news-date {
    font-size: calc(12 / 390 * 100vw);
    display: block;
    margin: 0 0 calc(5 / 390 * 100vw);
  }
  .h--hero__news-text {
    margin: 0;
    font-size: calc(12 / 390 * 100vw);
  }
}

/*
    Navigation [.nav--menu]
--------------------------------------------------------------*/
.nav--menu {
  position: fixed;
  top: 120px;
  right: -100px;
  z-index: 20;
  opacity: 0;
  transition: right 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
  background-color: var(--color-primary);
  border-radius: 6px;
  width: calc(220 / 1400 * 100%);
}

.nav--menu.is-active {
  right: 30px;
  opacity: 1;
  pointer-events: auto;
}

.nav--menu-list {
  padding: 6px;
}

.nav--menu-list > li a {
  padding: 20px 15px;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-weight: 900;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.nav--menu-list > li a span {
  color: #FFF;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.nav--menu-list > li a:link {
  text-decoration: none;
}

.nav--menu-list > li a:visited {
  text-decoration: none;
}

.nav--menu-list > li a:hover {
  text-decoration: none;
  background-color: #FFF;
  background-image: url(../images/common/arrow__02__bl.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 17.44px 11.46px;
}

.nav--menu-list > li a:hover span {
  color: var(--color-primary);
}

.nav--menu-list > li.active a {
  background-color: #FFF;
  background-image: url(../images/common/arrow__02__bl.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 17.44px 11.46px;
}

.nav--menu-list > li.active a span {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .nav--menu {
    display: none;
    position: fixed;
    top: 120px;
    right: -100px;
    z-index: 20;
    opacity: 0;
    transition: right 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
    background-color: var(--color-primary);
    border-radius: 6px;
    width: calc(220 / 1400 * 100%);
  }
  .nav--menu.is-active {
    right: 30px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav--menu-list {
    padding: 6px;
  }
  .nav--menu-list > li a {
    padding: 20px 15px;
    display: block;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-weight: 900;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
  }
  .nav--menu-list > li a span {
    color: #FFF;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
  }
  .nav--menu-list > li a:link {
    text-decoration: none;
  }
  .nav--menu-list > li a:visited {
    text-decoration: none;
  }
  .nav--menu-list > li a:hover {
    text-decoration: none;
    background-color: #FFF;
    background-image: url(../images/common/arrow__02__bl.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 17.44px 11.46px;
  }
  .nav--menu-list > li a:hover span {
    color: var(--color-primary);
  }
  .nav--menu-list > li.active a {
    background-color: #FFF;
    background-image: url(../images/common/arrow__02__bl.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 17.44px 11.46px;
  }
  .nav--menu-list > li.active a span {
    color: var(--color-primary);
  }
}

/*
    Message [.h--message]
--------------------------------------------------------------*/
.h--message__wrap {
  padding: 0 30px;
  margin: 0 0 80px;
  position: relative;
}

.h--message {
  padding: 100px 0 0;
}

.h--message .c--headline__wrapper {
  position: absolute;
  top: -50px;
  z-index: 10;
  left: 0;
  right: 0;
  margin: 0 auto 0;
}

.h--message__photo {
  position: absolute;
}

.h--message__photo img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--message__photo.photo01 {
  width: 402px;
  top: 146px;
  left: 48px;
  width: calc(402 / 1400 * 100vw);
  top: calc(146 / 1400 * 100vw);
  left: calc(48 / 1400 * 100vw);
}

.h--message__photo.photo02 {
  width: calc(335 / 1400 * 100vw);
  bottom: calc(22 / 1400 * 100vw);
  right: calc(20 / 1400 * 100vw);
}

.h--message__copy {
  font-size: 3.0rem;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.66667;
  text-align: center;
  letter-spacing: 0.12em;
  margin: 0 0 40px;
  position: relative;
  z-index: 15;
}

.h--message__text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.12em;
}

.h--message__inner {
  border-radius: 40px;
  background-color: #FFF;
  padding: 160px 30px 140px;
  position: relative;
}

.h--message__cinner {
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .photo01 {
    width: 402px;
    top: 146px;
    left: 48px;
  }
  .photo02 {
    width: 335px;
    bottom: 22px;
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .h--message__wrap {
    padding: 0 calc(20 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
    position: relative;
  }
  .h--message {
    padding: calc(60 / 390 * 100vw) 0 calc(20 / 390 * 100vw);
  }
  .h--message .c--headline__wrapper {
    position: absolute;
    top: calc(-20 / 390 * 100vw);
  }
  .h--message__photo {
    position: absolute;
  }
  .h--message__photo img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .h--message__photo.photo01 {
    width: calc(120 / 390 * 100vw);
    top: inherit;
    left: calc(40 / 390 * 100vw);
    bottom: calc(20 / 390 * 100vw);
  }
  .h--message__photo.photo02 {
    width: calc(120 / 390 * 100vw);
    bottom: calc(20 / 390 * 100vw);
    right: calc(40 / 390 * 100vw);
  }
  .h--message__copy {
    font-size: calc(23 / 390 * 100vw);
    line-height: 1.73913;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--message__text {
    font-size: calc(12 / 390 * 100vw);
    line-height: 1.83333;
    text-align: left;
    letter-spacing: 0.12em;
  }
  .h--message__text br {
    display: none;
  }
  .h--message__inner {
    border-radius: calc(20 / 390 * 100vw);
    padding: calc(80 / 390 * 100vw) calc(15 / 390 * 100vw) 140px;
    position: relative;
  }
  .h--message__cinner {
    margin: 0 auto;
  }
}

/*
    Employee Benefits [.h--eb]
--------------------------------------------------------------*/
.h--eb {
  padding: 50px 0 0;
}

.h--eb__wrap {
  padding: 0 30px;
}

.h--eb__inner {
  border-radius: 40px;
  background-color: #FFF;
  padding: 70px 30px;
}

.h--eb__cinner {
  max-width: 1060px;
  margin: 0 auto;
}

.h--eb-section {
  margin: 0 0 60px;
}

.h--eb-section-box {
  padding: 0 40px;
  margin: 0 0 40px;
}

.h--eb-section-box p {
  font-size: 1.5rem;
  line-height: 2.0;
  font-weight: 500;
}

.h--eb-section-cbox {
  background-color: #F5F5F5;
  border-radius: 10px;
  margin: 0 0 35px;
}

.h--eb-section-cbox:last-child {
  margin: 0;
}

.h--eb-section-cbox__inner {
  padding: 30px 25px 20px;
}

.h--eb-section-cbox-list {
  display: flex;
  flex-wrap: wrap;
}

.h--eb-section-cbox-list > li {
  margin: 0 25px 15px 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0 0 0 10px;
  position: relative;
}

.h--eb-section-cbox-list > li:before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5em;
}

.h--eb-section__title {
  margin: 0 0 20px;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 900;
}

.h--eb-headline {
  border-bottom: 5px solid var(--color-primary);
  margin: 0 0 45px;
  padding: 0 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.h--eb-headline__number {
  width: 90px;
  display: block;
  font-size: 6.0rem;
  font-weight: 900;
  font-family: var(--font-base);
  color: var(--color-primary);
  line-height: 1.0;
}

.h--eb-headline__number .number__title {
  display: block;
  font-style: normal;
  font-family: var(--font-base);
  color: rgba(18, 34, 132, 0.5);
  font-size: 1.8rem;
  letter-spacing: 0.16em;
}

.h--eb-headline__title {
  width: calc(890 / 1060 * 100%);
  display: block;
  font-size: 3.6rem;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.5;
}

.h--eb-headline__photo {
  width: calc(80 / 1060 * 100%);
  display: block;
}

.h--eb-headline__photo img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

@media screen and (max-width: 768px) {
  .h--eb {
    padding: calc(20 / 390 * 100vw) 0 0;
  }
  .h--eb__wrap {
    padding: 0 calc(20 / 390 * 100vw);
  }
  .h--eb__inner {
    border-radius: calc(20 / 390 * 100vw);
    padding: calc(20 / 390 * 100vw) calc(15 / 390 * 100vw);
  }
  .h--eb__cinner {
    max-width: initial;
  }
  .h--eb-section {
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .h--eb-section-box {
    padding: 0;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--eb-section-box p {
    font-size: calc(12 / 390 * 100vw);
    line-height: 1.5;
  }
  .h--eb-section-cbox {
    border-radius: calc(10 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .h--eb-section-cbox__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .h--eb-section-cbox-list {
    display: flex;
    flex-wrap: wrap;
  }
  .h--eb-section-cbox-list > li {
    margin: 0 calc(10 / 390 * 100vw) calc(10 / 390 * 100vw) 0;
    font-size: calc(11 / 390 * 100vw);
    letter-spacing: 0.06em;
    padding: 0 0 0 calc(10 / 390 * 100vw);
  }
  .h--eb-section-cbox-list > li:before {
    width: calc(3 / 390 * 100vw);
    height: calc(3 / 390 * 100vw);
    top: 0.5em;
  }
  .h--eb-section__title {
    margin: 0 0 calc(10 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
  .h--eb-headline {
    border-bottom: calc(2.5 / 390 * 100vw) solid var(--color-primary);
    margin: 0 0 calc(20 / 390 * 100vw);
    padding: 0 0 calc(15 / 390 * 100vw);
  }
  .h--eb-headline__number {
    width: calc(60 / 390 * 100vw);
    font-size: calc(30 / 390 * 100vw);
  }
  .h--eb-headline__number .number__title {
    font-size: calc(10 / 390 * 100vw);
  }
  .h--eb-headline__title {
    width: calc(280 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
  }
  .h--eb-headline__photo {
    width: calc(40 / 390 * 100vw);
    display: block;
  }
  .h--eb-headline__photo img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
}

/*
    Achievement [.h--achievement]
--------------------------------------------------------------*/
.h--achievement {
  padding: 50px 30px 0;
}

.h--achievement__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.h--achievement-list {
  display: flex;
  flex-wrap: wrap;
}

.h--achievement-box {
  width: calc(320 / 1060 * 100%);
  margin: 0 calc(50 / 1060 * 100%) 40px 0;
  background-color: #FFF;
  border-radius: 20px;
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.15));
}

.h--achievement-box:nth-child(3n) {
  margin: 0 0 40px 0;
}

.h--achievement-box__inner {
  padding: 50px 20px;
}

.h--achievement-box__title {
  color: var(--color-primary);
  margin: 0 0 25px;
  text-align: center;
}

.h--achievement-box__title .title__main {
  font-size: 2.5rem;
  letter-spacing: 0.12em;
  font-weight: 900;
  display: block;
  margin: 0 0 5px;
  line-height: 1.2;
}

.h--achievement-box__title .title__exp {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  display: block;
  line-height: 2.30769;
}

.h--achievement__photo {
  margin: 0 auto 20px;
  text-align: center;
}

.h--achievement__photo img {
  height: 75px;
}

.h--achievement__number {
  text-align: center;
}

.h--achievement__number span {
  letter-spacing: -0.02em;
  font-size: 7.0rem;
  font-family: var(--font-base);
  font-weight: 900;
  color: var(--color-primary);
}

.h--achievement__number .number__value {
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: var(--color-primary);
}

.h--achievement__number .number__value.jp {
  margin-left: 0.2em;
  font-size: 2.6rem;
}

.h--achievement__number.is--small span {
  font-size: 5.5rem;
}

.h--achievement__number.is--small .number__value {
  font-size: 2.0rem;
}

.h--achievement__number.is--small .number__value.jp {
  margin-left: 0.2em;
  font-size: 2.5rem;
}

.h--achievement__number.is--pt--20 {
  padding: 20px 0 0;
}

.h--achievement__caution {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--color-primary);
  display: block;
}

@media screen and (max-width: 768px) {
  .h--achievement {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .h--achievement__inner {
    max-width: initial;
  }
  .h--achievement-box {
    width: calc(170 / 390 * 100vw);
    margin: 0 calc(10 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
    border-radius: calc(10 / 390 * 100vw);
  }
  .h--achievement-box:nth-child(3n) {
    margin: 0 calc(10 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .h--achievement-box:nth-child(2n) {
    margin: 0 0 calc(20 / 390 * 100vw) 0;
  }
  .h--achievement-box__inner {
    padding: calc(20 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .h--achievement-box__title {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--achievement-box__title .title__main {
    font-size: calc(15 / 390 * 100vw);
    margin: 0 0 calc(0 / 390 * 100vw);
    line-height: 1.33333;
    letter-spacing: 0.035em;
  }
  .h--achievement-box__title .title__exp {
    font-size: calc(10 / 390 * 100vw);
    line-height: 2;
  }
  .h--achievement__photo {
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  .h--achievement__photo img {
    height: calc(50 / 390 * 100vw);
  }
  .h--achievement__number span {
    font-size: calc(40 / 390 * 100vw);
  }
  .h--achievement__number .number__value {
    font-size: calc(16 / 390 * 100vw);
  }
  .h--achievement__number .number__value.jp {
    font-size: calc(12 / 390 * 100vw);
  }
  .h--achievement__number.is--small span {
    font-size: calc(30 / 390 * 100vw);
  }
  .h--achievement__number.is--small .number__value {
    font-size: calc(15 / 390 * 100vw);
  }
  .h--achievement__number.is--small .number__value.jp {
    font-size: calc(15 / 390 * 100vw);
  }
  .h--achievement__number.is--pt--20 {
    padding: 0;
  }
  .h--achievement__caution {
    font-size: calc(10 / 390 * 100vw);
  }
}

/*
    Interview [.h--interview]
--------------------------------------------------------------*/
.h--interview {
  padding: 80px 30px;
}

.h--interview__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.h--interview-text {
  margin: 0 0 50px;
  padding: 0 50px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2;
}

.h--interview-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 60px;
}

.h--interview-list > li {
  width: calc(360 / 1120 * 100%);
  margin: 0 calc(20 / 1120 * 100%) 20px 0;
  background-color: #FFF;
  border-radius: 20px;
}

.h--interview-list > li:nth-child(3n) {
  margin: 0 0 20px 0;
}

.h--interview-box {
  padding: 10px;
  display: block;
}

.h--interview-box:link {
  text-decoration: none;
}

.h--interview-box:visited {
  text-decoration: none;
}

.h--interview-box:hover .h--interview__photo img {
  transform: scale(1.1);
}

.h--interview__photo {
  aspect-ratio: 340 / 360;
  overflow: hidden;
  border-radius: 20px;
}

.h--interview__photo img {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  transform: scale(1);
  width: 100%;
  height: auto;
  aspect-ratio: 340 / 360;
  object-fit: cover;
  border-radius: 20px;
}

.h--interview-meta {
  padding: 20px 10px;
}

.h--interview-meta__role {
  background-color: var(--color-primary);
  border-radius: 3px;
  padding: 7.5px 15px;
  display: inline-block;
  margin: 0 0 15px;
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.h--interview-meta__name {
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 15px;
}

.h--interview-meta__since {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .h--interview {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--interview__inner {
    max-width: initial;
  }
  .h--interview-text {
    margin: 0 0 calc(25 / 390 * 100vw);
    padding: 0;
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.84615;
  }
  .h--interview-text br {
    display: none;
  }
  .h--interview-list {
    display: flex;
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .h--interview-list > li {
    width: calc(170 / 390 * 100vw);
    margin: 0 calc(10 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
    border-radius: calc(10 / 390 * 100vw);
  }
  .h--interview-list > li:nth-child(3n) {
    margin: 0 calc(10 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .h--interview-list > li:nth-child(2n) {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--interview-box {
    padding: calc(10 / 390 * 100vw);
  }
  .h--interview__photo {
    aspect-ratio: 340 / 360;
    overflow: hidden;
    border-radius: calc(10 / 390 * 100vw);
  }
  .h--interview__photo img {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
    transform: scale(1);
    width: 100%;
    height: auto;
    aspect-ratio: 340 / 360;
    object-fit: cover;
    border-radius: calc(10 / 390 * 100vw);
  }
  .h--interview-meta {
    padding: calc(10 / 390 * 100vw) 0;
  }
  .h--interview-meta__role {
    border-radius: calc(1.5 / 390 * 100vw);
    padding: calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    font-size: calc(11 / 390 * 100vw);
    letter-spacing: 0.12em;
    font-weight: 700;
  }
  .h--interview-meta__name {
    font-size: calc(15 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .h--interview-meta__since {
    font-size: calc(12 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # _components.scss
--------------------------------------------------------------*/
/*  Common [config]
--------------------------------------------------------------*/
.clearance--box {
  height: 100px;
}

.c--headline {
  max-width: 1160px;
  margin: 0 auto;
}

.c--headline__wrapper {
  padding: 0 30px;
}

.c--headline__en {
  color: rgba(204, 204, 204, 0.5);
  font-family: var(--font-base);
  letter-spacing: 0.12em;
  font-size: 12.0rem;
  font-weight: 900;
  display: block;
}

.c--headline__jp {
  color: var(--color-primary);
  letter-spacing: 0.06em;
  font-size: 3.2rem;
  font-weight: 900;
  display: block;
  position: relative;
  top: -40px;
}

.c--headline__jp:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  left: -80px;
  top: 17.5px;
}

.c--headline.entext__small .c--headline__en {
  font-size: 8.0rem;
}

.c--headline.type02 {
  text-align: center;
  margin: 0 auto 50px;
}

.c--headline.type02 .c--headline__jp {
  top: inherit;
  margin: 20px;
}

.c--headline.type02 .c--headline__jp:before {
  width: 1px;
  height: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -80px;
}

.c--button__wrap {
  display: flex;
  justify-content: center;
}

.c--button__type01 {
  width: 280px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 5px solid var(--color-primary);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--button__type01:link {
  text-decoration: none;
}

.c--button__type01:visited {
  text-decoration: none;
}

.c--button__type01:hover {
  text-decoration: none;
  background-color: var(--color-primary);
}

.c--button__type01:hover span {
  color: #FFF;
}

.c--button__type01 span {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--button__type02 {
  width: 220px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 30px;
  border: 5px solid var(--color-primary);
  background-color: var(--color-primary);
  position: relative;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--button__type02:link {
  text-decoration: none;
}

.c--button__type02:visited {
  text-decoration: none;
}

.c--button__type02:hover {
  text-decoration: none;
  background-color: #FFF;
}

.c--button__type02:hover span {
  color: var(--color-primary);
}

.c--button__type02:hover i {
  background-image: url(../images/common/arrow__02__bl.svg);
}

.c--button__type02 span {
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--button__type02 i {
  position: absolute;
  width: 14.57px;
  height: 9.57px;
  display: block;
  position: absolute;
  background-image: url(../images/common/arrow__02__wh.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  right: 30px;
  top: 21.5px;
}

.p--headline {
  padding: 40px 0;
}

.p--headline .c--headline.type02 {
  margin: 0 auto;
}

.p--headline .c--headline.type02 .c--headline__jp {
  margin: 20px 20px 0;
}

.c--headline__lebel02 {
  border-bottom: 5px solid var(--color-primary);
  padding: 0 0 20px 20px;
  margin: 0 0 30px;
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .clearance--box {
    height: calc(70 / 390 * 100vw);
  }
  .c--headline {
    max-width: initial;
  }
  .c--headline__wrapper {
    padding: 0 calc(20 / 390 * 100vw);
  }
  .c--headline__en {
    font-size: calc(40 / 390 * 100vw);
  }
  .c--headline__jp {
    font-size: calc(20 / 390 * 100vw);
    top: calc(-20 / 390 * 100vw);
  }
  .c--headline__jp:before {
    content: "";
    display: block;
    width: calc(40 / 390 * 100vw);
    left: calc(-50 / 390 * 100vw);
    top: calc(10 / 390 * 100vw);
  }
  .c--headline.entext__small .c--headline__en {
    font-size: calc(25 / 390 * 100vw);
  }
  .c--headline.type02 {
    text-align: center;
    margin: 0 auto calc(30 / 390 * 100vw);
  }
  .c--headline.type02 .c--headline__jp {
    top: inherit;
    margin: calc(20 / 390 * 100vw);
  }
  .c--headline.type02 .c--headline__jp:before {
    width: 1px;
    height: calc(30 / 390 * 100vw);
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(-40 / 390 * 100vw);
  }
  .c--button__type01 {
    width: calc(240 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    border: calc(2.5 / 390 * 100vw) solid var(--color-primary);
  }
  .c--button__type01 span {
    font-size: calc(14 / 390 * 100vw);
  }
  .c--button__type02 {
    width: calc(240 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    border-radius: calc(25 / 390 * 100vw);
    border: calc(2.5 / 390 * 100vw) solid var(--color-primary);
  }
  .c--button__type02 span {
    font-size: calc(14 / 390 * 100vw);
  }
  .c--button__type02 i {
    position: absolute;
    width: calc(14.57 / 390 * 100vw);
    height: calc(9.57 / 390 * 100vw);
    right: calc(20 / 390 * 100vw);
    top: calc(19.5 / 390 * 100vw);
  }
  .p--headline {
    padding: calc(20 / 390 * 100vw) 0;
  }
  .p--headline .c--headline.type02 .c--headline__jp {
    margin: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .c--headline__lebel02 {
    border-bottom: calc(2.5 / 390 * 100vw) solid var(--color-primary);
    padding: 0 0 calc(15 / 390 * 100vw) calc(0 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: normal;
  }
}

/*  Common [layout]
--------------------------------------------------------------*/
.s--content__wrapper {
  background-color: #FFF;
  padding: 100px 30px;
}

.s--content__inner {
  max-width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .s--content__wrapper {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .s--content__inner {
    max-width: initial;
  }
}

/*  Common [banner]
--------------------------------------------------------------*/
.c--navs {
  background-color: #FFF;
  padding: 60px 30px 130px;
}

.c--navs__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.c--navs-list {
  display: flex;
  justify-content: space-between;
}

.c--navs-list > li {
  width: calc(330 / 1060 * 100%);
}

.c--navs-list-box {
  display: block;
  margin: 0 0 50px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--navs-list-box:link {
  text-decoration: none;
}

.c--navs-list-box:visited {
  text-decoration: none;
}

.c--navs-list-box:hover .c--navs-list-box__photo img {
  transform: scale(1.1);
}

.c--navs-list-box__title {
  text-align: center;
}

.c--navs-list-box__title > .title__jp {
  color: var(--color-primary);
  letter-spacing: 0.02em;
  font-size: 1.8rem;
  font-weight: 900;
  display: block;
  margin: 0 0 5px;
  line-height: 1.66667;
}

.c--navs-list-box__title > .title__en {
  color: var(--color-primary);
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  font-family: var(--font-base);
  font-weight: 900;
  display: block;
  margin: 0 0 5px;
}

.c--navs-list-box__photo {
  margin: 0 0 35px;
  position: relative;
}

.c--navs-list-box__photo__inner {
  aspect-ratio: 330 / 200;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.c--navs-list-box__photo:after {
  content: "";
  background-image: url(../images/common/arrow__01.svg);
  background-size: cover;
  background-position: center;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.c--navs-list-box__photo img {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  width: 100%;
  vertical-align: bottom;
  height: auto;
  object-fit: cover;
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .c--navs {
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw) calc(60 / 390 * 100vw);
  }
  .c--navs__inner {
    max-width: initial;
  }
  .c--navs-list {
    display: block;
    margin: 0 0 calc(40 / 390 * 100vw);
  }
  .c--navs-list > li {
    width: calc(300 / 390 * 100vw);
    margin: 0 auto;
  }
  .c--navs-list-box {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .c--navs-list-box__title > .title__jp {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(5 / 390 * 100vw);
  }
  .c--navs-list-box__title > .title__en {
    font-size: calc(12 / 390 * 100vw);
    margin: 0 0 calc(5 / 390 * 100vw);
  }
  .c--navs-list-box__photo {
    margin: 0 0 calc(20 / 390 * 100vw);
    position: relative;
  }
  .c--navs-list-box__photo__inner {
    border-radius: calc(20 / 390 * 100vw);
  }
  .c--navs-list-box__photo:after {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    bottom: calc(-15 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # _pages.scss
--------------------------------------------------------------*/
/*  Pages [interview]
--------------------------------------------------------------*/
.interview--content__wrapper {
  padding: 0 30px 110px;
}

.interview--content__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.interview--main {
  width: calc(1000 / 1340 * 100%);
  background-color: #FFF;
  border-radius: 6px 6px 0 0;
  padding: 0 0 80px;
}

.interview--head {
  background-color: var(--color-primary);
  border-radius: 6px 6px 0 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.interview--head__blank {
  width: calc(280 / 1000 * 100%);
}

.interview--head__photo {
  width: calc(720 / 1000 * 100%);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.interview--head__photo img {
  transform: scale(1);
  aspect-ratio: 720 / 530;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0 6px 0 0;
  vertical-align: bottom;
}

.interview--head__c-content {
  z-index: 15;
  position: absolute;
  left: calc(30 / 1400 * 100vw);
  bottom: calc(40/ 1400 * 100vw);
}

.interview--head__name {
  margin: 0 0 calc(20 / 1400 * 100vw);
  font-size: calc(35/ 1400 * 100vw);
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #FFF;
}

.interview--head__name em {
  font-style: normal;
  font-size: calc(14/ 1400 * 100vw);
}

.interview--head__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: calc(240/ 1400 * 100vw);
  margin: 0 0 calc(15/ 1400 * 100vw);
}

.interview--head__meta dt {
  width: calc(80/ 1400 * 100vw);
  height: calc(30/ 1400 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  box-sizing: border-box;
  margin: 0 0 calc(20/ 1400 * 100vw);
  font-size: calc(13/ 1400 * 100vw);
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #FFF;
}

.interview--head__meta dd {
  width: calc(150/ 1400 * 100vw);
  margin: 0 0 calc(20/ 1400 * 100vw);
  font-size: calc(13.5/ 1400 * 100vw);
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #FFF;
}

.interview--head__copy span {
  margin: 0 0 calc(13/ 1400 * 100vw);
  display: inline-block;
  padding: calc(13/ 1400 * 100vw);
  background-color: #FFF;
  position: relative;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: calc(34/ 1400 * 100vw);
}

.interview--section {
  position: relative;
  padding: 0 0 100px;
}

.interview--section:last-child {
  padding: 0;
}

.interview--section__content {
  padding: calc(60 / 1000 * 100%) calc(90 / 1000 * 100%) 0;
}

.interview--section-title {
  margin: 0 0 calc(40/ 1400 * 100vw);
  background-color: var(--color-primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFF;
  padding: 16px 30px;
  position: relative;
}

.interview--section-title:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: -14px;
  left: 60px;
  background-image: url(../images/common/arrow__03__under.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.interview--section p {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 2;
  margin: 0 0 calc(50/ 1400 * 100vw);
}

.interview--section-figure {
  width: calc(520/ 1400 * 100vw);
  margin: 120px auto 70px;
}

.interview--section-figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.interview--section-button {
  width: 320px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid var(--color-primary);
  border-radius: 6px;
  background-image: url(../images/common/arrow__01__upper.svg);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center right 15px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.interview--section-button span {
  font-size: 1.6rem;
  color: var(--color-primary);
  font-weight: 700;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.interview--section-button:link {
  text-decoration: none;
}

.interview--section-button:visited {
  text-decoration: none;
}

.interview--section-button:hover {
  background-color: var(--color-primary);
}

.interview--section-button:hover span {
  color: #FFF;
}

.interview--nav {
  width: calc(300 / 1340 * 100%);
  background-color: #FFF;
  position: sticky;
  top: 140px;
  border-radius: 6px;
  border: 3px solid var(--color-primary);
  box-sizing: border-box;
}

.interview--nav--list > li > a {
  display: block;
  padding: calc(30 / 300 * 100%) calc(60 / 300 * 100%) calc(30 / 300 * 100%) calc(40 / 300 * 100%);
  position: relative;
  font-size: 1.6rem;
  line-height: 1.625;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  font-weight: 900;
  border-bottom: 1px solid var(--color-primary);
  background-image: url(../images/common/arrow__01__under.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.interview--nav--list > li > a:before {
  content: "";
  background-color: #A1ADF7;
  width: 9px;
  height: 9px;
  position: absolute;
  top: calc(40 / 1400 * 100vw);
  left: calc(10 / 1400 * 100vw);
  display: block;
  border-radius: 50%;
}

.interview--nav--list > li > a:link {
  text-decoration: none;
}

.interview--nav--list > li > a:visited {
  text-decoration: none;
}

.interview--nav--list > li > a:hover {
  text-decoration: none;
  background-color: var(--color-primary);
  color: #FFF;
}

.interview--nav--list > li.active a {
  background-color: var(--color-primary);
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .interview--content__wrapper {
    padding: 0 calc(20 / 390 * 100vw) calc(50 / 390 * 100vw);
  }
  .interview--content__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .interview--main {
    width: auto;
    border-radius: calc(6 / 390 * 100vw) calc(6 / 390 * 100vw) 0 0;
    padding: 0 0 calc(40 / 390 * 100vw);
  }
  .interview--head {
    background-color: var(--color-primary);
    border-radius: calc(6 / 390 * 100vw) calc(6 / 390 * 100vw) 0 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .interview--head__blank {
    display: none;
  }
  .interview--head__photo {
    order: 1;
    width: auto;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin: 0;
  }
  .interview--head__photo img {
    width: 100%;
    height: auto;
    border-radius: calc(6 / 390 * 100vw) calc(6 / 390 * 100vw) 0 0;
    vertical-align: bottom;
  }
  .interview--head__c-content {
    order: 2;
    z-index: 15;
    position: relative;
    left: inherit;
    bottom: inherit;
    padding: calc(15 / 390 * 100vw);
  }
  .interview--head__name {
    margin: 0 0 calc(20 / 390 * 100vw);
    font-size: calc(20 / 390 * 100vw);
  }
  .interview--head__name em {
    font-size: calc(15 / 390 * 100vw);
  }
  .interview--head__meta {
    width: calc(300 / 390 * 100vw);
    margin: 0 0 calc(15/ 390 * 100vw);
  }
  .interview--head__meta dt {
    width: calc(80/ 390 * 100vw);
    height: calc(30/ 390 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    box-sizing: border-box;
    margin: 0 0 calc(10/ 390 * 100vw);
    font-size: calc(12/ 390 * 100vw);
  }
  .interview--head__meta dd {
    width: calc(210/ 390 * 100vw);
    margin: 0 0 calc(10/ 390 * 100vw);
    font-size: calc(12.0/ 390 * 100vw);
  }
  .interview--head__copy span {
    margin: 0 0 calc(13/ 390 * 100vw);
    display: inline-block;
    padding: calc(5/ 390 * 100vw);
    font-size: calc(18/ 390 * 100vw);
    letter-spacing: normal;
  }
  .interview--section {
    position: relative;
    padding: 0 0 calc(50/ 390 * 100vw);
  }
  .interview--section__content {
    padding: calc(20/ 390 * 100vw) calc(15/ 390 * 100vw) 0;
  }
  .interview--section-title {
    margin: 0 0 calc(20/ 390 * 100vw);
    border-radius: calc(30/ 390 * 100vw);
    font-size: calc(14/ 390 * 100vw);
    padding: calc(15/ 390 * 100vw) calc(20/ 390 * 100vw);
  }
  .interview--section-title:after {
    content: "";
    width: calc(15/ 390 * 100vw);
    height: calc(15/ 390 * 100vw);
    bottom: calc(-15/ 390 * 100vw);
    left: calc(50/ 390 * 100vw);
  }
  .interview--section p {
    font-size: calc(12/ 390 * 100vw);
    letter-spacing: 0.12em;
    line-height: 2;
    margin: 0 0 calc(30/ 390 * 100vw);
  }
  .interview--section-figure {
    width: calc(280/ 390 * 100vw);
    margin: calc(25/ 390 * 100vw) auto calc(50/ 390 * 100vw);
  }
  .interview--section-button {
    width: calc(240/ 390 * 100vw);
    height: calc(50/ 390 * 100vw);
    border: calc(2.5/ 390 * 100vw) solid var(--color-primary);
    border-radius: calc(6/ 390 * 100vw);
    background-size: calc(20/ 390 * 100vw) calc(20/ 390 * 100vw);
    background-position: center right calc(10/ 390 * 100vw);
  }
  .interview--section-button span {
    font-size: calc(14/ 390 * 100vw);
    letter-spacing: normal;
  }
  .interview--nav {
    display: none;
  }
}

/*  Pages [outline]
--------------------------------------------------------------*/
.outline--section {
  margin: 0 0 80px;
}

.outline--section:last-child {
  margin: 0;
}

.outline--maincopy__wrapper {
  text-align: center;
}

.outline .outline--maincopy {
  display: inline-block;
  margin: 0 0 60px;
  line-height: 1.43478;
  font-size: 4.6rem;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.12em;
  position: relative;
}

.outline .outline--maincopy:before {
  content: "";
  width: 15.64px;
  height: 29.21px;
  position: absolute;
  top: 0;
  left: -40px;
  background-image: url(../images/common/icon__brackets__left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.outline .outline--maincopy:after {
  content: "";
  width: 15.64px;
  height: 29.21px;
  position: absolute;
  bottom: 0;
  right: -40px;
  background-image: url(../images/common/icon__brackets__right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.outline .outline--lead {
  text-align: center;
}

.outline p {
  font-size: 1.5rem;
  line-height: 2.0;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.outline p .c--marker {
  color: var(--color-primary);
  background: linear-gradient(transparent 60%, #E6E8F2 40%);
}

@media screen and (max-width: 768px) {
  .outline--section {
    margin: 0 0 calc(40 / 390 * 100vw);
  }
  .outline--section:last-child {
    margin: 0;
  }
  .outline .outline--maincopy {
    display: inline-block;
    margin: 0 0 calc(30 / 390 * 100vw);
    line-height: 1.68;
    font-size: calc(22.5 / 390 * 100vw);
    letter-spacing: 0.06em;
    position: relative;
  }
  .outline .outline--maincopy:before {
    content: "";
    width: calc(10.64 / 390 * 100vw);
    height: calc(24.21 / 390 * 100vw);
    left: calc(-20 / 390 * 100vw);
  }
  .outline .outline--maincopy:after {
    content: "";
    width: calc(10.64 / 390 * 100vw);
    height: calc(24.21 / 390 * 100vw);
    right: calc(-20 / 390 * 100vw);
  }
  .outline .outline--lead {
    text-align: left;
  }
  .outline .outline--lead br {
    display: none;
  }
  .outline p {
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0.06em;
  }
}

/*  Pages [faq]
--------------------------------------------------------------*/
.faq--section {
  margin: 0 0 100px;
}

.faq--section:last-child {
  margin: 0;
}

.faq--title {
  margin: 0 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px;
  border-bottom: 1px solid #CED2E6;
  cursor: pointer;
}

.faq--title__qicon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq--title__qicon em {
  font-size: 3.0rem;
  color: #FFF;
  font-family: var(--font-base);
  font-weight: 900;
}

.faq--title__text {
  width: calc(860 / 980 * 100%);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: var(--color-primary);
}

.faq--title__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq--title__icon i {
  width: 10px;
  height: 10px;
  background-image: url(../images/common/icon__faq.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.faq--title__icon.active i {
  transform: rotate(45deg);
  transform-origin: center center;
}

.faq--box__wrapper {
  display: none;
}

.faq--box {
  display: flex;
  justify-content: space-between;
}

.faq--box__answer {
  width: calc(900 / 980 * 100%);
  border-radius: 6px;
  background-color: #F5F5F5;
  margin: 0 0 30px;
}

.faq--box__answer p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}

.faq--box__answer h4 {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 0 0 15px;
}

.faq--box__answer ol {
  list-style: none;
  counter-reset: my-counter;
  margin: 20px 0 30px;
}

.faq--box__answer ol:last-child {
  margin: 20px 0 0;
}

.faq--box__answer ol li {
  padding-left: 2.0em;
  counter-increment: my-counter;
  position: relative;
  margin: 0 0 1.0em;
  line-height: 1.5;
}

.faq--box__answer ol li::before {
  content: counter(my-counter) "";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-base);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background-color: var(--color-primary);
  font-weight: 600;
  font-size: 1.2rem;
  color: #FFF;
}

.faq--box__answer__inner {
  padding: 30px;
}

.faq--title__aicon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #C1000F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq--title__aicon em {
  font-size: 3.0rem;
  color: #FFF;
  font-family: var(--font-base);
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .faq--section {
    margin: 0 0 calc(50 / 390 * 100vw);
  }
  .faq--section:last-child {
    margin: 0;
  }
  .faq--title {
    margin: 0 0 calc(20 / 390 * 100vw);
    padding: 0 0 calc(20 / 390 * 100vw);
  }
  .faq--title__qicon {
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .faq--title__qicon em {
    font-size: calc(20 / 390 * 100vw);
  }
  .faq--title__text {
    width: calc(270 / 350 * 100%);
    font-size: calc(15 / 390 * 100vw);
    line-height: 1.25;
  }
  .faq--title__icon {
    width: calc(25 / 390 * 100vw);
    height: calc(25 / 390 * 100vw);
    border-radius: calc(2 / 390 * 100vw);
  }
  .faq--title__icon i {
    width: calc(10 / 390 * 100vw);
    height: calc(10 / 390 * 100vw);
  }
  .faq--title__icon.active i {
    transform: rotate(45deg);
    transform-origin: center center;
  }
  .faq--box__answer {
    width: calc(300 / 350 * 100%);
    border-radius: calc(3 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .faq--box__answer p {
    font-size: calc(13 / 390 * 100vw);
    line-height: 2;
  }
  .faq--box__answer h4 {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .faq--box__answer ol {
    margin: calc(20 / 390 * 100vw) 0 calc(20 / 390 * 100vw);
  }
  .faq--box__answer ol:last-child {
    margin: calc(20 / 390 * 100vw) 0 0;
  }
  .faq--box__answer ol li {
    font-size: calc(13 / 390 * 100vw);
  }
  .faq--box__answer ol li::before {
    width: calc(20 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
  }
  .faq--box__answer__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .faq--title__aicon {
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .faq--title__aicon em {
    font-size: calc(20 / 390 * 100vw);
  }
}

/**
 # Objects -  utility -
 */
/*========== utility.scss ==========*/
.u-radius5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.u-radiusC {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

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

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

/*--------------------------------------------------------------
    # _print.scss
--------------------------------------------------------------*/
@media print {
  .l--header {
    opacity: 100;
    position: relative;
    width: 100%;
  }
  .fadein {
    opacity: 1.0;
    transform: translate(0, 0);
  }
  .keyVisual__pritBlock {
    display: block !important;
  }
  .keyVisual__pritBlock img {
    width: 100%;
  }
  .keyVisual {
    height: auto !important;
  }
  .h--productsBox__thum {
    width: 640px;
    height: 480px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: -60px;
  }
  .h--productsBox__thum img {
    width: 100%;
    transition: none !important;
  }
  .h--productsBox__thumCover {
    width: 640px;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: none;
    z-index: 10;
    transition: none !important;
  }
  .h--productsBox__title {
    position: absolute;
    margin: 0;
    padding: 0;
    text-align: center;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    color: #FFF;
    line-height: 1.0;
  }
  .h--productsBox__titleEn {
    font-family: var(--font-main);
    display: block;
    font-size: 3.2rem;
    margin: 0 0 10px;
  }
  .h--productsBox__titleJp {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=style.css.map */
