@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)
*/
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;
}

input[type="email"] {
  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: #E81411;
  --color-secondary: #070707;
  --color-third: #CB0C09;
  --font-oswald: "Oswald", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-ls-base: 0.02em;
  --container-width: 1080px;
  --grad-red: linear-gradient(to right, #CE0B07 0%, #9F100E 100%);
}

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: #000;
  background-color: #1D1D1D;
  text-align: left;
  font-size: 1.4rem;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.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 {
    overflow-x: hidden;
  }
}

/**
 # Layout
 */
/*--------------------------------------------------------------
    # footer.scss
--------------------------------------------------------------*/
/*  Common Banner
--------------------------------------------------------------*/
.l--commonbanner {
  padding: 60px 40px;
}

.l--commonbanner__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.l--commonbanner--list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 60px;
}

.l--commonbanner--list:last-child {
  margin: 0;
}

.l--commonbanner--list > li {
  width: calc(300 / 1080 * 100%);
  margin: 0 calc(10 / 1080 * 100%) 0;
}

.l--commonbanner__box {
  display: flex;
  align-items: center;
  min-height: 70px;
  border-radius: 3px;
  background-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;
}

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

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

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

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

.l--commonbanner__box span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  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;
}

.l--commonbanner__box span.en__title {
  font-family: var(--font-oswald);
  font-size: 1.3rem;
}

.l--commonbanner__box i {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/common/arrow02__red__right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  border: 0.5px solid #FFF;
}

.l--commonbanner__box__inner {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .l--commonbanner {
    padding: calc(60 / 390 * 100vw) calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
  .l--commonbanner__inner {
    max-width: initial;
  }
  .l--commonbanner--list {
    display: block;
    margin: 0;
  }
  .l--commonbanner--list > li {
    width: auto;
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .l--commonbanner__box {
    min-height: calc(70 / 390 * 100vw);
    border-radius: calc(3 / 390 * 100vw);
  }
  .l--commonbanner__box span {
    font-size: calc(15 / 390 * 100vw);
  }
  .l--commonbanner__box span.en__title {
    font-size: calc(12 / 390 * 100vw);
  }
  .l--commonbanner__box i {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    border-radius: calc(3 / 390 * 100vw);
  }
  .l--commonbanner__box__inner {
    padding: 0 calc(20 / 390 * 100vw);
  }
}

/*  Footer
--------------------------------------------------------------*/
.l--footer {
  background-color: #FFF;
  position: relative;
}

.l--footer:before {
  content: "";
  position: absolute;
  background-color: #1D1D1D;
  width: 100%;
  height: 80px;
}

.l--footer__banner {
  padding: 0 40px;
}

.l--footer__banner--inner {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: flex;
  position: relative;
}

.l--footer__banner--inner:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #EF5B5A;
  position: absolute;
  left: 50%;
  z-index: 10;
}

.l--footer__banner--box {
  border: 0.5px solid var(--color-primary);
  width: calc(650 / 1300 * 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  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;
}

.l--footer__banner--box:nth-child(1) {
  border-radius: 20px 0 0 20px;
}

.l--footer__banner--box:nth-child(2) {
  border-radius: 0 20px 20px 0;
}

.l--footer__banner--box:link {
  text-decoration: none;
}

.l--footer__banner--box:visited {
  text-decoration: none;
}

.l--footer__banner--box:hover {
  text-decoration: none;
  background-color: #1D1D1D;
  border: 0.5px solid #555;
}

.l--footer__banner--box:hover .box__icons {
  transform: scale(1.35);
}

.l--footer__banner--box--title {
  text-align: center;
  position: relative;
  padding: 20px 0 0;
}

.l--footer__banner--box--title span {
  display: block;
}

.l--footer__banner--box--title:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  top: 0;
}

.l--footer__banner--box--title .jp__title {
  font-size: 2.0rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: #FFF;
  margin: 0 0 6px;
}

.l--footer__banner--box--title .en__title {
  font-size: 6.0rem;
  font-weight: 900;
  color: #FFF;
  margin: 0 0 24px;
  font-family: var(--font-roboto);
}

.l--footer__banner--box--icons {
  width: 80px;
  height: 80px;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.l--footer__banner--box--icons .box__icons {
  width: 14.57px;
  height: 9.57px;
  transform: scale(1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--footer__banner--box--icons .box__icons img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
  vertical-align: top;
}

.l--footer--content {
  padding: 0 20px;
  border-bottom: 1px solid #D1D1D1;
}

.l--footer--content__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
}

.l--footer__logo {
  display: block;
  width: 168px;
  margin: 0 0 20px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

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

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

.l--footer__address {
  font-size: 1.3rem;
  color: #454545;
  line-height: 2;
}

.l--footer--meta {
  width: calc(310 / 1080 * 100%);
  border-right: 1px solid #D1D1D1;
  padding: 0 0 40px;
}

.l--footer--nav {
  width: calc(770 / 1080 * 100%);
  display: flex;
  padding: 0 0 40px;
}

.l--footer--nav__list {
  margin-left: calc(40 / 1080 * 100%);
}

.l--footer--nav__list:first-child {
  width: calc(580 / 1080 * 100%);
}

.l--footer--nav__list a {
  position: relative;
  display: inline-block;
}

.l--footer--nav__list a:link {
  text-decoration: none;
  color: #000;
}

.l--footer--nav__list a:visited {
  text-decoration: none;
  color: #000;
}

.l--footer--nav__list a:hover {
  text-decoration: none;
  color: #000;
}

.l--footer--nav__list a:hover:after {
  width: 100%;
}

.l--footer--nav__list a:after {
  content: "";
  background-color: #222;
  height: 1px;
  width: 0;
  position: absolute;
  bottom: -1.5px;
  left: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--footer--nav__list dt {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.0em;
}

.l--footer--nav__list dd {
  font-size: 1.3rem;
  margin: 0 0 0.75em;
  line-height: 1.25;
}

.l--footer--secondry {
  padding: 30px 20px 85px;
}

.l--footer--secondry__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.l--footer--copyright {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.l--footer__line {
  width: 100%;
  height: 10px;
  border: none;
  margin: 0;
  background: var(--grad-red);
}

@media screen and (max-width: 768px) {
  .l--footer:before {
    height: calc(60 / 390 * 100vw);
    top: calc(-1.5 / 390 * 100vw);
  }
  .l--footer__banner {
    padding: 0 calc(20 / 390 * 100vw);
  }
  .l--footer__banner--inner {
    max-width: initial;
    margin: 0 auto calc(40 / 390 * 100vw);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .l--footer__banner--inner:before {
    display: none;
  }
  .l--footer__banner--box {
    width: auto;
    height: calc(220 / 390 * 100vw);
  }
  .l--footer__banner--box:nth-child(1) {
    border-radius: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) 0 0;
    border-bottom: 1px solid #FFFFFF40;
  }
  .l--footer__banner--box:nth-child(2) {
    border-radius: 0 0 calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .l--footer__banner--box--title {
    padding: calc(20 / 390 * 100vw) 0 0;
  }
  .l--footer__banner--box--title:before {
    width: calc(10 / 390 * 100vw);
    height: calc(10 / 390 * 100vw);
  }
  .l--footer__banner--box--title .jp__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(6 / 390 * 100vw);
  }
  .l--footer__banner--box--title .en__title {
    font-size: calc(40 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .l--footer__banner--box--icons {
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .l--footer__banner--box--icons .box__icons {
    width: calc(14.57 / 390 * 100vw);
    height: calc(9.57 / 390 * 100vw);
  }
  .l--footer--content {
    padding: 0;
  }
  .l--footer--content__inner {
    max-width: initial;
    margin: 0 auto;
    display: block;
  }
  .l--footer__logo {
    width: calc(160 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .l--footer__address {
    font-size: calc(12 / 390 * 100vw);
    line-height: 1.5;
  }
  .l--footer--meta {
    width: auto;
    border-right: none;
    padding: 0 calc(20 / 390 * 100vw) calc(30 / 390 * 100vw);
    border-bottom: calc(1 / 390 * 100vw) solid #D1D1D1;
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .l--footer--nav {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .l--footer--nav__list {
    width: calc(170 / 390 * 100vw);
    margin-left: calc(20 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
  }
  .l--footer--nav__list:first-child {
    width: calc(170 / 390 * 100vw);
  }
  .l--footer--nav__list dt {
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .l--footer--nav__list dd {
    font-size: calc(11 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    line-height: 1.5;
  }
  .l--footer--secondry {
    padding: calc(35 / 390 * 100vw) calc(20 / 390 * 100vw) calc(50 / 390 * 100vw);
  }
  .l--footer--secondry__inner {
    max-width: initial;
  }
  .l--footer--copyright {
    font-size: calc(11 / 390 * 100vw);
  }
  .l--footer__line {
    height: calc(10 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # header.scss
--------------------------------------------------------------*/
/*  Header
--------------------------------------------------------------*/
.l--header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 40;
  height: 100px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--header__inner {
  width: auto;
  position: relative;
  height: 100px;
}

.l--header__logo {
  position: absolute;
  background-color: #FFF;
  width: 200px;
  height: 100px;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

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

.l--header__logo img {
  width: 140px;
  height: auto;
}

.l--header__contact {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  width: 160px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background-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;
}

.l--header__contact span {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-roboto);
  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;
}

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

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

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

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

.l--header.js--scrolled-effect {
  background-color: #07070799;
}

@media screen and (max-width: 768px) {
  .l--header {
    height: calc(60 / 390 * 100vw);
  }
  .l--header__inner {
    height: calc(60 / 390 * 100vw);
  }
  .l--header__logo {
    width: calc(150 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
  }
  .l--header__logo img {
    width: calc(118 / 390 * 100vw);
  }
  .l--header__contact {
    position: relative;
    margin: 0 auto;
    top: inherit;
    right: inherit;
    display: flex;
    width: calc(320 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
  }
  .l--header__contact span {
    font-size: calc(16 / 390 * 100vw);
  }
  .l--header.js--scrolled-effect {
    background: rgba(0, 0, 0, 0.85);
  }
}

/**
 # Objects -  Compornent -
 */
/**
 # Objects -  project -
 */
/*
    animation.scss
---------------------------------------------------------------------------- */
/*
    Opening & KV
--------------------------------------------------------------*/
#openning {
  display: none;
}

body.loading #openning {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #1D1D1D;
}

body.loading #openning::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: var(--grad-red);
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1);
}

body.loaded #openning {
  top: 0;
  animation: opanime01 0.75s ease-out 0.0s forwards;
}

body.loaded #openning::before {
  top: 100%;
  animation: opanime02 0.75s ease-out forwards;
}

@keyframes opanime02 {
  0% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}

@-webkit-keyframes opanime02 {
  0% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}

@keyframes opanime01 {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}

@-webkit-keyframes opanime01 {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}

body.loading .slide-media {
  transform: scale(1.25);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 1s;
}

body.loaded .slide-media {
  transform: scale(1);
  opacity: 1.0;
}

body.loading .l--header {
  transform: scale(0.975) translateY(-100px);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 1.5s;
}

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

body.loading .h--hero--topics {
  transform: scale(1) translateX(300px);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 1.75s;
}

body.loaded .h--hero--topics {
  transform: scale(1) translateX(0);
  opacity: 1.0;
}

body.loading .vc--controll--block {
  transform: scale(1) translateX(300px);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 1.75s;
}

body.loaded .vc--controll--block {
  transform: scale(1) translateX(0);
  opacity: 1.0;
}

body.loading .scroll--down {
  transform: scale(1) translateY(60px);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 2s;
}

body.loaded .scroll--down {
  transform: scale(1) translateY(0);
  opacity: 1.0;
}

.h--message .h--headline.ver01 .en__title {
  transition: all 1.2s ease;
  font-size: 10.5rem;
  opacity: 0.0;
}

.h--message.is-active .h--headline.ver01 .en__title {
  transition: all 1.2s ease;
  font-size: 16.0rem;
  opacity: 1.0;
}

.h--message {
  background: #1D1D1D;
  overflow: hidden;
}

.h--message.is-active {
  opacity: 1.0;
}

.h--message::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-red);
  opacity: 0;
  transition: opacity 1.25s ease;
  z-index: 0;
}

.h--message.is-active::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .h--message .h--headline.ver01 .en__title {
    font-size: calc(36 / 390 * 100vw);
  }
  .h--message.is-active .h--headline.ver01 .en__title {
    font-size: calc(56 / 390 * 100vw);
  }
}

/*
    Config
--------------------------------------------------------------*/
.ani--clip__text {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

/*
    Common[mask]
--------------------------------------------------------------*/
.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;
}

/*
    Common[fade]
--------------------------------------------------------------*/
.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;
}

/*
    text-efect-ls
--------------------------------------------------------------*/
.h--headline.ver01 .text-efect-ls {
  opacity: 1.0;
  transition: all 2.2s ease;
  font-size: 1.5rem;
}

.h--headline.ver01 .text-efect-ls.is-visible {
  opacity: 1;
  font-size: 16.0rem;
}

.h--headline.ver02 .text-efect-ls {
  opacity: 1.0;
  transition: all 1.2s ease;
  font-size: 10.5rem;
}

.h--headline.ver02 .text-efect-ls.is-visible {
  opacity: 1.0;
  font-size: 16.0rem;
}

@media screen and (max-width: 768px) {
  .h--headline.ver01 .text-efect-ls {
    font-size: calc(36 / 390 * 100vw);
  }
  .h--headline.ver01 .text-efect-ls.is-visible {
    font-size: calc(56 / 390 * 100vw);
  }
  .h--headline.ver02 .text-efect-ls {
    font-size: calc(36 / 390 * 100vw);
  }
  .h--headline.ver02 .text-efect-ls.is-visible {
    font-size: calc(56 / 390 * 100vw);
  }
}

/*
    Common[mask images]
--------------------------------------------------------------*/
.mask-images-ani-left,
.mask-images-ani-left.not-yet-visible {
  clip-path: inset(0 0 0 100%);
  opacity: 1.0;
  transition: clip-path 1.0s 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-images-ani-right,
.mask-images-ani-right.not-yet-visible {
  clip-path: inset(0 100% 0 0);
  opacity: 1.0;
  transition: clip-path 1.0s ease, opacity 1s ease;
  transition-delay: 0s;
}

.mask-images-ani-right.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;
}

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

.l--gmenu--list .submenu--exit {
  position: relative;
}

.l--gmenu--list > li {
  margin: 0 40px 0 0;
}

.l--gmenu--list > li:last-child {
  margin: 0;
}

.l--gmenu--list__box {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  position: relative;
  cursor: pointer;
}

.l--gmenu--list__box:link {
  text-decoration: none;
}

.l--gmenu--list__box:visited {
  text-decoration: none;
}

.l--gmenu--list__box:hover {
  text-decoration: none;
}

.l--gmenu--list__box:after {
  content: "";
  width: 100%;
  height: 0;
  background-color: #FFF;
  display: block;
  left: 0;
  bottom: 0;
  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__box.active:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  margin: 0 auto;
}

.l--gmenu--list__box:hover:after {
  height: 10px;
}

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

.l--gmenu--list__box .en__title {
  color: #FFF;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-family: var(--font-roboto);
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.l--gmenu--list__box .jp__title {
  color: #FFF;
  font-weight: 100;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
}

.l--gmenu--submenu {
  position: absolute;
  background-color: white;
  padding: 20px;
  border-radius: 6px;
  top: 90px;
  width: 100%;
}

.l--gmenu--submenu > li.submenu-parents {
  border-bottom: 1px solid #DEDEDE;
  margin: 0 0 10px;
  padding: 0 0 10px;
}

.l--gmenu--submenu > li > a {
  font-size: 1.2rem;
  display: block;
  line-height: 1.53846;
  -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--submenu > li > a:link {
  text-decoration: none;
  color: #000;
}

.l--gmenu--submenu > li > a:visited {
  text-decoration: none;
  color: #000;
}

.l--gmenu--submenu > li > a:hover {
  text-decoration: none;
  color: #000;
  opacity: 0.45;
}

.l--gmenu--submenu > li.submenu-parents a {
  font-size: 1.3rem;
  background-image: url(../images/common/arrow03__red__right.svg);
  background-repeat: no-repeat;
  background-size: 7.5px 7.5px;
  background-position: left 0.5em;
  font-weight: 500;
  padding: 0 0 0 15px;
}

.l--gmenu--submenu .submenu-child {
  margin: 15px 0 0;
}

.l--gmenu--submenu .submenu-child > li a {
  padding: 0 0 10px 30px;
  font-size: 1.3rem;
  margin: 0 0 5px;
  font-weight: 400;
  position: relative;
  background: none;
  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;
}

.l--gmenu--submenu .submenu-child > li a:link {
  text-decoration: none;
  color: #000;
}

.l--gmenu--submenu .submenu-child > li a:visited {
  text-decoration: none;
  color: #000;
}

.l--gmenu--submenu .submenu-child > li a:hover {
  text-decoration: none;
  color: #000;
  opacity: 0.45;
}

.l--gmenu--submenu .submenu-child > li a:before {
  content: "";
  width: 5px;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 0.55em;
  left: 15px;
}

.l--gmenu--submenu {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.l--gmenu--submenu.w280__width {
  min-width: 280px;
}

.l--gmenu--submenu.w540__width {
  min-width: 540px;
}

@media screen and (min-width: 769px) {
  .submenu--exit:hover > .l--gmenu--submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
  }
}

@media screen and (max-width: 768px) {
  .l--gmenu--submenu {
    display: none;
  }
  .submenu--exit.open > .l--gmenu--submenu {
    display: block;
  }
}

.burger--wrap {
  display: block;
}

@media screen and (max-width: 768px) {
  body.scroll-lock {
    overflow: hidden;
    height: 100%;
  }
  .l--gmenu--list {
    display: block;
    align-items: center;
    position: relative;
    right: inherit;
    top: inherit;
    margin: 0 0 calc(40 / 390 * 100vw);
  }
  .l--gmenu--list .submenu--exit {
    background-image: url(../images/common/icon__open.svg);
    background-size: calc(15 / 390 * 100vw) calc(15 / 390 * 100vw);
    background-repeat: no-repeat;
    background-position: right calc(15 / 390 * 100vw);
  }
  .l--gmenu--list .submenu--exit.open {
    background-image: url(../images/common/icon__close.svg);
  }
  .l--gmenu--list > li {
    margin: 0 0 calc(60 / 390 * 100vw);
  }
  .l--gmenu--list > li:last-child {
    margin: 0;
  }
  .l--gmenu--list__box {
    min-height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
    position: relative;
  }
  .l--gmenu--list__box.active:before {
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    top: calc(-15 / 390 * 100vw);
  }
  .l--gmenu--list__box .en__title {
    font-size: calc(24 / 390 * 100vw);
    margin: 0 0 calc(5 / 390 * 100vw);
  }
  .l--gmenu--list__box .jp__title {
    font-size: calc(13 / 390 * 100vw);
  }
  .l--gmenu--submenu {
    margin-top: calc(25 / 390 * 100vw);
    position: relative;
    width: auto;
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    background: none;
    padding: calc(10 / 390 * 100vw);
    box-shadow: none;
    border-radius: 0;
    opacity: 1.0;
    visibility: inherit;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10;
  }
  .l--gmenu--submenu.w280__width {
    min-width: auto;
  }
  .l--gmenu--submenu.w540__width {
    min-width: auto;
  }
  .l--gmenu--submenu > li.submenu-parents {
    border-bottom: 1px solid #FFFFFF50;
    margin: 0 0 calc(10 / 390 * 100vw);
    padding: 0 0 calc(10 / 390 * 100vw);
  }
  .l--gmenu--submenu > li > a {
    font-size: 1.2rem;
    display: block;
    line-height: 1.53846;
    -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--submenu > li > a:link {
    text-decoration: none;
    color: #FFF;
  }
  .l--gmenu--submenu > li > a:visited {
    text-decoration: none;
    color: #FFF;
  }
  .l--gmenu--submenu > li > a:hover {
    text-decoration: none;
    color: #FFF;
    opacity: 0.45;
  }
  .l--gmenu--submenu > li.submenu-parents a {
    font-size: calc(14 / 390 * 100vw);
    background-image: url(../images/common/arrow03__wh__right.svg);
    background-size: calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
    background-position: left 0.55em;
    padding: 0 0 0 calc(15 / 390 * 100vw);
  }
  .l--gmenu--submenu .submenu-child {
    margin: calc(10 / 390 * 100vw) 0 0;
  }
  .l--gmenu--submenu .submenu-child > li a {
    padding: 0 0 calc(5 / 390 * 100vw) calc(30 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(5 / 390 * 100vw);
    background: none;
  }
  .l--gmenu--submenu .submenu-child > li a:link {
    text-decoration: none;
    color: #FFF;
  }
  .l--gmenu--submenu .submenu-child > li a:visited {
    text-decoration: none;
    color: #FFF;
  }
  .l--gmenu--submenu .submenu-child > li a:hover {
    text-decoration: none;
    color: #FFF;
    opacity: 0.45;
  }
  .l--gmenu--submenu .submenu-child > li a:before {
    content: "";
    width: calc(5 / 390 * 100vw);
    height: 1px;
    background-color: #FFF;
    top: 0.55em;
    left: calc(15 / 390 * 100vw);
  }
  .burger--wrap {
    width: calc(45 / 390 * 100vw);
    height: calc(45 / 390 * 100vw);
    top: calc(8.5 / 390 * 100vw);
    right: calc(10 / 390 * 100vw);
    position: absolute;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #FFF;
    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(20 / 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(20 / 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(0, 0, 0, 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 {
    border-top: 1px solid #555;
    padding: calc(60 / 390 * 100vw) calc(20 / 390 * 100vw);
    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(60 / 390 * 100vw);
    right: 0;
    opacity: 1.0;
  }
  .burger-active .line {
    background-color: #FFF;
  }
}

/**
 # Objects -  pages -
 */
/*--------------------------------------------------------------
    # _home.scss
--------------------------------------------------------------*/
/*
    Common & Config
--------------------------------------------------------------*/
.h--headline {
  margin: 0 0 40px;
  position: relative;
  z-index: 10;
}

.h--headline .jp__title {
  color: #FFF;
  font-size: 3.2rem;
  letter-spacing: 0.24em;
  font-weight: 800;
  display: block;
}

.h--headline.ver01 .jp__title {
  margin: 0 0 0 calc(110 / 1400 * 100vw);
  position: relative;
  padding: 30px 0 0 30px;
}

.h--headline.ver01 .jp__title:before {
  content: "";
  background-color: #FFF;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 1.35em;
  left: 0;
}

.h--headline.ver01 .en__title {
  font-family: var(--font-roboto);
  font-weight: 900;
  color: #B2B2B220;
  letter-spacing: 0.08em;
  position: absolute;
  left: 30%;
  transform: translateX(-30%) scaleX(1);
  margin: 0 auto;
  top: -100px;
}

.h--headline.ver02 .jp__title {
  text-align: center;
  position: relative;
  padding: 30px 0 0;
}

.h--headline.ver02 .jp__title:before {
  content: "";
  background-color: #FFF;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.h--headline.ver02 .en__title {
  font-family: var(--font-roboto);
  font-weight: 900;
  color: #B2B2B220;
  letter-spacing: 0.08em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
  margin: 0 auto;
  top: -120px;
}

@media screen and (max-width: 768px) {
  .h--headline {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--headline .jp__title {
    font-size: calc(20 / 390 * 100vw);
  }
  .h--headline.ver01 {
    padding: 0 0 calc(0 / 390 * 100vw);
  }
  .h--headline.ver01 .jp__title {
    padding: calc(30 / 390 * 100vw) 0 0;
    text-align: center;
    margin: 0;
  }
  .h--headline.ver01 .jp__title:before {
    top: calc(5 / 390 * 100vw);
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    top: 0.5em;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .h--headline.ver01 .en__title {
    font-size: calc(56 / 390 * 100vw);
    top: calc(-20 / 390 * 100vw);
  }
  .h--headline.ver02 {
    padding: 0 0 calc(0 / 390 * 100vw);
  }
  .h--headline.ver02 .jp__title {
    padding: calc(30 / 390 * 100vw) 0 0;
  }
  .h--headline.ver02 .jp__title:before {
    top: calc(5 / 390 * 100vw);
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
  }
  .h--headline.ver02 .en__title {
    font-size: calc(56 / 390 * 100vw);
    top: calc(-20 / 390 * 100vw);
  }
}

/*
    Hero [.h--hero]
--------------------------------------------------------------*/
.h--hero {
  width: 100%;
  position: relative;
}

.h--hero__inner {
  position: relative;
  width: auto;
}

.video.slide-media {
  position: relative;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: auto;
}

.vc--controll--block {
  position: absolute;
  z-index: 10;
  right: 60px;
  bottom: 40px;
}

.vc--controll--block .vc--controll__button {
  width: 30px;
  height: 30px;
  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;
  background-image: url(/assets/images/home/icon__stop.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.vc--controll--block .vc--controll__button:hover {
  opacity: 0.65;
}

.vc--controll--block .vc--controll__button.paused {
  background-image: url(/assets/images/home/icon__play.png);
}

.vc--controll--block .vc--controll__button.play__on {
  background-image: url(/assets/images/home/icon__play.png);
}

.h--hero--topics {
  position: absolute;
  z-index: 10;
  left: 30px;
  bottom: 30px;
  background-color: #00000070;
}

.h--hero--topics__inner {
  padding: 30px 20px;
}

.h--hero--topics__title {
  margin: 0 0 25px;
}

.h--hero--topics__title .title__en {
  font-weight: 800;
  font-family: var(--font-oswald);
  color: #FFF;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
  margin-right: 10px;
}

.h--hero--topics__title .title__jp {
  font-weight: 400;
  font-size: 1.2rem;
  color: #FFF;
}

.h--hero--topics--list > li {
  margin: 0 0 10px;
}

.h--hero--topics--list > li:last-child {
  margin: 0;
}

.h--hero--topics--list__date {
  font-weight: 700;
  margin-right: 10px;
  color: #FFF;
  font-size: 1.4rem;
  margin-right: 10px;
}

.h--hero--topics--list__text {
  color: #FFF;
  font-size: 1.2rem;
}

.h--hero--topics--list__text a {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.h--hero--topics--list__text a:link {
  text-decoration: underline;
  color: #FFF;
}

.h--hero--topics--list__text a:visited {
  text-decoration: underline;
  color: #FFF;
}

.h--hero--topics--list__text a:hover {
  text-decoration: underline;
  color: #FFF;
  opacity: 0.45;
}

#vc--hero {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 10;
}

#vc--hero .vc--hero-text {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  color: #FFF;
  font-family: var(--font-main);
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}

#vc--hero .vc--hero-text i {
  display: block;
  margin: 0 10px;
  width: 27px;
}

#vc--hero .vc--hero-text i img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.scroll--down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 10;
}

.scroll--down__text {
  text-orientation: mixed;
  margin-bottom: 10px;
}

.scroll--down__line {
  position: relative;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.scroll--down__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 20px;
  background: var(--color-primary);
  animation: scrollDown 1.8s infinite ease-in-out;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(60px);
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .h--hero {
    padding: calc(60 / 390 * 100vw) 0 0;
    overflow: hidden;
  }
  .video.slide-media {
    position: relative;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: auto;
  }
  .vc--controll--block {
    right: calc(20 / 390 * 100vw);
    bottom: calc(20 / 390 * 100vw);
  }
  .vc--controll--block .vc--controll__button {
    width: calc(20 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
  }
  .h--hero--topics {
    position: relative;
    z-index: 10;
    right: inherit;
    left: inherit;
    bottom: inherit;
    background-color: #00000070;
  }
  .h--hero--topics__inner {
    padding: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--hero--topics__title {
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .h--hero--topics__title .title__en {
    font-size: calc(20 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
  }
  .h--hero--topics__title .title__jp {
    font-size: calc(12 / 390 * 100vw);
  }
  .h--hero--topics--list > li {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .h--hero--topics--list__date {
    font-size: calc(13 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
  }
  .h--hero--topics--list__text {
    font-size: calc(12 / 390 * 100vw);
  }
  #vc--hero {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 10;
  }
  #vc--hero .vc--hero-text {
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    color: #FFF;
    font-family: var(--font-main);
    letter-spacing: 0.2em;
    font-size: 1.2rem;
  }
  #vc--hero .vc--hero-text i {
    display: block;
    margin: 0 10px;
    width: 27px;
  }
  #vc--hero .vc--hero-text i img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .scroll--down {
    display: none;
  }
}

/*
    Message [.h--message]
--------------------------------------------------------------*/
.h--message {
  padding: 100px 20px 120px;
  position: relative;
}

.h--message .h--headline.ver01 .jp__title:before {
  background-color: #FFF;
}

.h--message__inner {
  max-width: 1400px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h--message__images {
  width: calc(640 / 1400 * 100%);
}

.h--message__images img {
  left: -20px;
  position: relative;
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--message--content {
  width: calc(720 / 1400 * 100%);
}

.h--message--content .h--message__title {
  font-size: 3.2rem;
  color: #FFF;
  font-weight: 800;
  line-height: 1.5625;
  margin: 0 0 25px;
}

.h--message--content .h--message__text {
  font-size: 1.5rem;
  line-height: 1.86667;
  letter-spacing: 0.04em;
  color: #FFF;
  margin: 0 0 2.5em;
}

@media screen and (max-width: 768px) {
  .h--message {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .h--message__inner {
    max-width: initial;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .h--message__images {
    order: 2;
    width: auto;
    margin: 0 calc(-20 / 390 * 100vw);
  }
  .h--message__images img {
    left: inherit;
    position: relative;
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .h--message--content {
    order: 1;
    width: auto;
    margin: 0 0 calc(40 / 390 * 100vw);
  }
  .h--message--content .h--message__title {
    font-size: calc(18 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .h--message--content .h--message__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    margin: 0 0 1.5em;
  }
}

/*
    Product [.h--product]
--------------------------------------------------------------*/
.h--product {
  padding: 20px 20px 120px;
  position: relative;
}

.h--product__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.h--product__figure {
  position: absolute;
  width: 672px;
  height: 666px;
  top: -100px;
  right: 0;
  z-index: 5;
  overflow: hidden;
}

.h--product--expblock {
  margin: 0 auto 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
}

.h--product--expblock .c--button--list {
  margin: 0;
}

.h--product--expblock__lead {
  line-height: 1.86667;
  font-size: 1.5rem;
  color: #FFF;
  width: calc(800 / 1080 * 100%);
}

.h--product--box {
  padding: 0 0 30px;
  margin: 0 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.h--product--box:after {
  content: "";
  width: calc(1080 / 1200 * 100%);
  height: 1px;
  background-color: #FFFFFF20;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.h--product--box:nth-child(2n) .h--product--box__figure {
  order: 2;
}

.h--product--box:nth-child(2n) .h--product--box__figure img {
  left: inherit;
}

.h--product--box:nth-child(2n) .h--product--box--content {
  order: 1;
  padding: 0 0 0 calc(180 / 1200 * 100%);
}

.h--product--box__label {
  display: inline-flex;
  padding: 5px 10px;
  margin: 0 0 15px;
  color: #FFF;
  border: 1px solid #FFF;
  font-size: 1.2rem;
  font-weight: 600;
}

.h--product--box__figure {
  width: calc(540 / 1200 * 100%);
}

.h--product--box__figure a {
  display: block;
  aspect-ratio: 540 / 340;
  overflow: hidden;
  position: relative;
}

.h--product--box__figure a:hover img {
  transform: translate(2px, -2px);
  filter: hue-rotate(5deg) contrast(1.2);
  transform: scale(1.05);
  opacity: 0.8;
}

.h--product--box__figure a:hover::before {
  opacity: 1;
}

.h--product--box__figure img {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  max-width: 100%;
  border-radius: 6px;
  height: auto;
  position: relative;
}

.h--product--box--content {
  width: calc(620 / 1200 * 100%);
}

.h--product--box__title {
  font-size: 2.0rem;
  font-weight: 800;
  color: #FFF;
  margin: 0 0 20px;
  line-height: 1.5;
}

.h--product--box__text {
  font-size: 1.4rem;
  color: #FFF;
  margin: 0 0 25px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .h--product {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
    overflow: hidden;
  }
  .h--product__inner {
    max-width: initial;
  }
  .h--product__figure {
    width: calc(672 / 390 * 100vw);
    height: calc(666 / 390 * 100vw);
    top: calc(-100 / 390 * 100vw);
    right: calc(-100 / 390 * 100vw);
    z-index: -1;
  }
  .h--product--expblock {
    margin: 0 auto calc(25 / 390 * 100vw);
    display: block;
    max-width: initial;
  }
  .h--product--expblock__lead {
    line-height: 1.69231;
    font-size: calc(13 / 390 * 100vw);
    width: auto;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--product--box {
    padding: 0 calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
    margin: 0 calc(-20 / 390 * 100vw) calc(30 / 390 * 100vw);
    display: block;
  }
  .h--product--box:after {
    content: "";
    width: calc(420 / 390 * 100vw);
  }
  .h--product--box:nth-child(2n) .h--product--box--content {
    padding: 0;
  }
  .h--product--box__figure {
    width: 100%;
    margin: 0 calc(0 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--product--box__figure a {
    display: block;
    aspect-ratio: 540 / 340;
    overflow: hidden;
    position: relative;
  }
  .h--product--box__figure img {
    border-radius: 0;
  }
  .h--product--box--content {
    width: auto;
  }
  .h--product--box__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    line-height: 1.25;
  }
  .h--product--box__text {
    font-size: calc(13 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
    line-height: 1.69231;
  }
  .h--product--box__text br {
    display: none;
  }
}

/*
    Company [.h--company]
--------------------------------------------------------------*/
.h--company {
  padding: 50px 20px 120px;
  background: var(--grad-red);
  position: relative;
}

.h--company__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.h--company--content {
  width: calc(560 / 1080 * 100%);
}

.h--company__blank {
  width: calc(450 / 1080 * 100%);
}

.h--company__images {
  margin-right: calc(43.57142857% - 43.57142857vw);
  width: 610px;
  height: auto;
  object-fit: cover;
}

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

.h--company--list {
  padding: 10px 0 0;
  margin: 0 0 50px;
}

.h--company--list__box {
  border-bottom: 1px solid #840C08;
  padding: 30px 0 20px;
  display: block;
  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;
}

.h--company--list__box i {
  position: absolute;
  width: 18px;
  height: 18px;
  display: block;
  right: 15px;
  top: 2.15em;
  background-image: url(../images/common/arrow03__wh__right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.h--company--list__box span {
  color: #FFF;
  font-size: 2.0rem;
  font-weight: 800;
  padding: 0 0 0 50px;
  position: relative;
}

.h--company--list__box span:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #FFF;
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 20px;
  top: 0.65em;
}

.h--company--list__box:link {
  text-decoration: none;
}

.h--company--list__box:visited {
  text-decoration: none;
}

.h--company--list__box:hover {
  text-decoration: none;
}

.h--company--list__box:hover:before {
  width: 100%;
}

.h--company--list__box:hover span {
  color: var(--color-primary);
}

.h--company--list__box:hover span:before {
  background-color: var(--color-primary);
}

.h--company--list__box:hover i {
  background-image: url(../images/common/arrow03__red__right.svg);
  right: 10px;
}

.h--company--list__box:before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background-color: #FFF;
  top: 0;
  left: 0;
  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;
}

@media screen and (max-width: 768px) {
  .h--company {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .h--company__inner {
    display: block;
    max-width: initial;
  }
  .h--company--content {
    width: auto;
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .h--company__blank {
    width: auto;
  }
  .h--company__images {
    margin-right: 0;
    width: auto;
    height: auto;
    object-fit: cover;
    margin: 0 calc(-20 / 390 * 100vw);
  }
  .h--company--list {
    padding: 0;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--company--list__box {
    padding: calc(15 / 390 * 100vw) 0 calc(15 / 390 * 100vw);
  }
  .h--company--list__box i {
    width: calc(15 / 390 * 100vw);
    height: calc(15 / 390 * 100vw);
    display: block;
    right: calc(20 / 390 * 100vw);
    top: 1.15em;
  }
  .h--company--list__box span {
    font-size: calc(16 / 390 * 100vw);
    padding: 0 0 0 calc(30 / 390 * 100vw);
  }
  .h--company--list__box span:before {
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    left: calc(10 / 390 * 100vw);
  }
}

/*
    News [.h--news]
--------------------------------------------------------------*/
.h--news {
  padding: 50px 20px 120px;
}

.h--news .c--news--archives--box {
  border-bottom: 1px solid #FFFFFF20;
}

.h--news .c--news--archives__date {
  color: #FFF;
}

.h--news .c--news--archives__category--label {
  background-color: #FFF;
  color: var(--color-primary);
}

.h--news .c--news--archives__text {
  color: #FFF;
}

.h--news .c--button--list {
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .h--news {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--news .c--button--list {
    margin: calc(15 / 390 * 100vw) 0 0;
  }
}

/*--------------------------------------------------------------
    # _components.scss
--------------------------------------------------------------*/
/*  Common [Layout]
--------------------------------------------------------------*/
.l--wrapper {
  position: relative;
  padding: 0 40px;
}

.l--container {
  background-color: #F5F5F5;
  border-radius: 6px;
  padding: 70px 30px;
}

.bg--ver01 {
  background-color: #E3E3E3;
  margin: 0 -30px -70px;
  border-radius: 0 0 6px 6px;
}

.bg--ver01__inner {
  padding: 70px 30px 120px;
}

.cmn--sub {
  font-size: 0.5em;
  vertical-align: sub;
  font-weight: 500;
  vertical-align: -0.1em;
}

.cmn--sub.ver01 {
  font-size: 1.0em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  bottom: -.40em;
}

.l--main .cmn--mb10 {
  margin-bottom: 10px;
}

.cmn--caution--exp {
  margin: 0 0 0.5em;
  font-size: 1.3rem;
}

.cmn--caution--list {
  margin: 0 0 30px;
}

.cmn--caution--list > li {
  position: relative;
  margin: 0 0 4px;
  font-size: 1.2rem;
  padding-left: 1.0em;
}

.cmn--caution--list > li:before {
  content: "";
  background-color: var(--color-secondary);
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.45em;
}

@media screen and (max-width: 768px) {
  .l--wrapper {
    position: relative;
    padding: 0 calc(10 / 390 * 100vw);
  }
  .l--container {
    border-radius: calc(6 / 390 * 100vw);
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .bg--ver01 {
    margin: 0 calc(-20 / 390 * 100vw) -70px;
    border-radius: 0 0 calc(6 / 390 * 100vw) calc(6 / 390 * 100vw);
  }
  .bg--ver01__inner {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .l--main .cmn--mb10 {
    margin-bottom: calc(10 / 390 * 100vw);
  }
  .cmn--caution--exp {
    font-size: calc(13 / 390 * 100vw);
  }
  .cmn--caution--list {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
}

/*  Common [Headline]
--------------------------------------------------------------*/
.c--headline {
  background: var(--grad-red);
  padding: 100px 0 0;
  position: relative;
}

.c--headline:after {
  content: "";
  height: 150px;
  width: 100%;
  background: var(--grad-red);
  position: absolute;
  bottom: -150px;
}

.c--headline__main--photo {
  min-height: 480px;
  width: calc(1320 / 1400 * 100%);
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c--headline__main--photo.product {
  background-image: url(../images/product/main.jpg);
}

.c--headline__main--photo.product__punching {
  background-image: url(../images/product/punching/main.jpg);
}

.c--headline__main--photo.product__paper_tube {
  background-image: url(../images/product/paper_tube/main.jpg);
}

.c--headline__main--photo.product__cutting_rewinding {
  background-image: url(../images/product/cutting_rewinding/main.jpg);
}

.c--headline__main--photo.product__tape {
  background-image: url(../images/product/tape/main.jpg);
}

.c--headline__main--photo.product__application_tape {
  background-image: url(../images/product/tape/application_tape/main.jpg);
}

.c--headline__main--photo.product__doublesided_tape {
  background-image: url(../images/product/tape/doublesided_tape/main.jpg);
}

.c--headline__main--photo.product__printing_tape {
  background-image: url(../images/product/tape/printing_tape/main.jpg);
}

.c--headline__main--photo.company {
  background-image: url(../images/company/main.jpg);
}

.c--headline__main--photo.history {
  background-image: url(../images/company/main__history.jpg);
}

.c--headline__main--photo.recruit {
  background-image: url(../images/recruit/main.jpg);
}

.c--headline__main--photo.news {
  background-image: url(../images/news/main.jpg);
}

.c--headline--meta {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c--headline--meta.no__flex {
  display: block;
}

.c--headline--meta.no__flex .c--topicpath__list {
  margin: 30px 0 0;
}

.c--headline__title .title__jp {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 0 15px;
}

.c--headline__title .title__jp:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  top: 45%;
  left: 0;
}

.c--headline__title .title__jp em {
  font-size: 2.2rem;
}

.c--headline__title .title__jp.title__jp--small {
  font-size: 2.8rem;
  line-height: 1.4375;
}

.c--headline__title .title__en {
  font-size: 3.6rem;
  font-weight: 900;
  font-family: var(--font-oswald);
  letter-spacing: 0.03em;
  color: #FFFFFF40;
}

.c--headline__title .title__en.title__en--small {
  font-size: 3.0rem;
  line-height: 1.15385;
}

.c--headline--l2 {
  text-align: center;
  margin: 0 0 60px;
  padding: 0 0 20px;
  position: relative;
}

.c--headline--l2 span {
  display: block;
}

.c--headline--l2:after {
  content: "";
  background-color: var(--color-third);
  width: 60px;
  height: 3px;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.c--headline--l2 .title__en {
  font-family: var(--font-oswald);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  margin: 0 0 15px;
  color: var(--color-third);
}

.c--headline--l2 .title__jp {
  letter-spacing: 0.04em;
  font-size: 3.6rem;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c--headline {
    padding: calc(60 / 390 * 100vw) 0 0;
  }
  .c--headline:after {
    content: "";
    position: absolute;
    height: calc(80 / 390 * 100vw);
    bottom: calc(-70 / 390 * 100vw);
  }
  .c--headline__main--photo {
    min-height: calc(450 / 390 * 100vw);
    width: calc(370 / 390 * 100vw);
  }
  .c--headline--meta {
    padding: calc(20 / 390 * 100vw);
    display: block;
  }
  .c--headline--meta.no__flex {
    display: block;
  }
  .c--headline--meta.no__flex .c--topicpath__list {
    margin: calc(20 / 390 * 100vw) 0 0;
  }
  .c--headline__title .title__jp {
    padding: 0 0 0 calc(10 / 390 * 100vw);
    font-size: calc(20 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    line-height: 1.3;
  }
  .c--headline__title .title__jp:before {
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    top: 45%;
    left: 0;
  }
  .c--headline__title .title__jp em {
    font-size: calc(14 / 390 * 100vw);
  }
  .c--headline__title .title__jp.title__jp--small {
    font-size: calc(16 / 390 * 100vw);
    line-height: 1.5;
  }
  .c--headline__title .title__en {
    font-size: calc(20 / 390 * 100vw);
  }
  .c--headline__title .title__en.title__en--small {
    font-size: calc(16 / 390 * 100vw);
    line-height: 1.5;
  }
  .c--headline--l2 {
    margin: 0 0 calc(30 / 390 * 100vw);
    padding: 0 0 calc(20 / 390 * 100vw);
  }
  .c--headline--l2:after {
    width: calc(40 / 390 * 100vw);
    height: calc(3 / 390 * 100vw);
  }
  .c--headline--l2 .title__en {
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .c--headline--l2 .title__jp {
    font-size: calc(22 / 390 * 100vw);
  }
}

/*  Common [Table]
--------------------------------------------------------------*/
.c--table__scroll--text {
  display: none;
}

.c--table__ver01 {
  width: 100%;
}

.c--table__ver01 thead th {
  background-color: #E3E3E3;
  border: 1px solid #BCBCBC;
  font-size: 1.4rem;
  padding: 20px;
  text-align: center;
  font-weight: 700;
}

.c--table__ver01 td {
  border: 1px solid #E5E5E5;
  padding: 10px;
  font-size: 1.4rem;
  line-height: 1.71429;
}

.c--table__ver01 .align__center {
  text-align: center;
}

.c--table__ver01 .align__left {
  text-align: left;
}

.c--table__ver01 .align__right {
  text-align: right;
}

.c--table__ver01 .bg__color {
  background-color: #FAFAFA;
}

.c--table__ver02 {
  width: 100%;
}

.c--table__ver02__wrapper {
  max-width: 960px;
  margin: 0 auto 80px;
}

.c--table__ver02 th {
  border-bottom: 1px solid #CB0C09;
  padding: 30px 10px 20px 20px;
  width: calc(200 / 960 * 100%);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.c--table__ver02 td {
  border-bottom: 1px solid #D3D3D3;
  padding: 30px 10px 20px 20px;
  width: calc(760 / 960 * 100%);
  font-size: 1.4rem;
  line-height: 1.71429;
}

@media screen and (max-width: 768px) {
  .c--table__scroll--text {
    display: block;
    margin: 0 0 calc(20 / 390 * 100vw);
    color: #9e9e9e;
    font-size: calc(12 / 390 * 100vw);
  }
  .c--table__wrapper {
    overflow-x: auto;
  }
  .c--table__ver01 {
    width: 700px;
  }
  .c--table__ver01 thead th {
    font-size: calc(13 / 390 * 100vw);
    padding: calc(10 / 390 * 100vw);
  }
  .c--table__ver01 td {
    border: 1px solid #E5E5E5;
    padding: calc(10 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
  .c--table__ver02__wrapper {
    max-width: initial;
    margin: 0 auto calc(40 / 390 * 100vw);
  }
  .c--table__ver02 th {
    padding: calc(30 / 390 * 100vw) calc(10 / 390 * 100vw) calc(15 / 390 * 100vw) calc(15 / 390 * 100vw);
    width: calc(100 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
  .c--table__ver02 td {
    padding: calc(30 / 390 * 100vw) calc(10 / 390 * 100vw) calc(15 / 390 * 100vw) calc(15 / 390 * 100vw);
    width: calc(200 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
}

/*  Common [Button]
--------------------------------------------------------------*/
.c--button--list {
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}

.c--button--list.align__left {
  justify-content: end;
}

.c--button__ver01 {
  display: flex;
  align-items: center;
  -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__ver01:link {
  text-decoration: none;
}

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

.c--button__ver01:hover {
  text-decoration: none;
}

.c--button__ver01:hover i {
  transform: scale(1.15);
}

.c--button__ver01:hover span::after {
  width: 100%;
}

.c--button__ver01 span {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  letter-spacing: 0.04em;
  margin-right: 15px;
  white-space: nowrap;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  position: relative;
}

.c--button__ver01 span:after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background-color: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
  -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__ver01 i {
  width: 40px;
  height: 40px;
  display: block;
  background-image: url(../images/common/arrow__button__bk.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -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);
}

.c--button__ver01.wh__button span {
  color: #FFF;
}

.c--button__ver01.wh__button span:after {
  background-color: #FFF;
}

.c--button__ver01.wh__button i {
  background-image: url(../images/common/arrow__button__wh.svg);
}

.c--button__ver02 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 80px;
  border-radius: 6px;
  background-color: #FFF;
  background-image: url(../images/common/arrow__button__bk.svg);
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: right 20px center;
  -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__ver02:link {
  text-decoration: none;
}

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

.c--button__ver02:hover {
  background-color: #000;
  background-image: url(../images/common/arrow__button__wh.svg);
}

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

.c--button__ver02 span {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.12em;
  -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__ver03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 80px;
  border-radius: 6px;
  background-color: var(--color-third);
  background-image: url(../images/common/arrow__button__wh.svg);
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: right 20px center;
  -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__ver03:link {
  text-decoration: none;
}

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

.c--button__ver03:hover {
  background-color: #000;
  background-image: url(../images/common/arrow__button__wh.svg);
}

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

.c--button__ver03 span {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: 0.12em;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

@media screen and (max-width: 768px) {
  .c--button--list {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .c--button--list.align__left {
    justify-content: center;
  }
  .c--button__ver01 span {
    font-size: calc(14 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
  }
  .c--button__ver01 i {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
  }
  .c--button__ver02 {
    width: calc(240 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
    background-size: calc(30 / 390 * 100vw) calc(30 / 390 * 100vw);
    background-position: right calc(10 / 390 * 100vw) center;
  }
  .c--button__ver02 span {
    font-size: calc(16 / 390 * 100vw);
  }
  .c--button__ver03 {
    width: calc(240 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
    background-size: calc(30 / 390 * 100vw) calc(30 / 390 * 100vw);
    background-position: right 20px center;
  }
  .c--button__ver03 span {
    font-size: calc(16 / 390 * 100vw);
  }
}

/*  Common [Topic Path]
--------------------------------------------------------------*/
.c--topicpath__list {
  display: flex;
  align-items: center;
}

.c--topicpath__separation {
  margin: 0 20px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #FFF;
  border-radius: 50%;
}

.c--topicpath__box {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 25px;
  border-radius: 15px;
  background-color: #FFF;
}

.c--topicpath__box span {
  font-size: 1.2rem;
  font-family: var(--font-roboto);
  font-weight: 900;
  color: #CA0A07;
}

.c--topicpath__box.links {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  background-color: #FFFFFF20;
}

.c--topicpath__box.links a:link {
  text-decoration: none;
}

.c--topicpath__box.links a:visited {
  text-decoration: none;
}

.c--topicpath__box.links span {
  color: #FFF;
}

.c--topicpath__box.links:hover {
  text-decoration: none;
  background-color: #FFFFFF;
}

.c--topicpath__box.links:hover span {
  color: #CA0A07;
}

@media screen and (max-width: 768px) {
  .c--topicpath__list {
    margin: calc(15 / 390 * 100vw) 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .c--topicpath__list > li {
    margin: 0 calc(5 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .c--topicpath__separation {
    margin: 0 calc(10 / 390 * 100vw);
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    flex: 0 0 auto;
  }
  .c--topicpath__box {
    flex: 0 0 auto;
    height: auto;
    padding: calc(5 / 390 * 100vw) calc(15 / 390 * 100vw);
    border-radius: calc(15 / 390 * 100vw);
  }
  .c--topicpath__box span {
    font-size: calc(11 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # _pages.scss
--------------------------------------------------------------*/
/*  Pages [product]
--------------------------------------------------------------*/
.p--product__mainlead {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  line-height: 2;
  text-align: center;
  margin: 0 0 50px;
}

.p--product--section {
  margin: 0 0 120px;
}

.p--product__sublead__content {
  max-width: 960px;
  margin: 0 auto 70px;
}

.p--product__sublead {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.04em;
}

.p--product--section__text {
  font-size: 1.5rem;
  line-height: 1.86667;
  text-align: center;
}

.p--product--index--box {
  margin: 0 auto 75px;
  max-width: 1080px;
}

.p--product--index--box__figure {
  margin: 0 0 20px;
}

.p--product--index--box__figure a {
  aspect-ratio: 1080 / 400;
  overflow: hidden;
  display: block;
}

.p--product--index--box__figure a:hover img {
  transform: scale(1.1);
}

.p--product--index--box__figure 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;
  transform: scale(1);
}

.p--product--index--box__title {
  margin: 0 0 15px;
}

.p--product--index--box__title .en__title {
  font-family: var(--font-oswald);
  font-weight: 800;
  letter-spacing: 0.048em;
  line-height: 1.2;
  font-size: 2.8rem;
  color: #D5D5D5;
  display: block;
  margin: 0 0 10px;
}

.p--product--index--box__title .jp__title {
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-size: 3.2rem;
  display: block;
}

.p--product--index--box__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p--product--index--box__text {
  width: calc(880 / 1070 * 100%);
  padding: 0 calc(20 / 1080 * 100%) 0 0;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p--product--define {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
}

.p--product--define__title {
  min-width: 130px;
  padding: 0 20px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid #000;
  background-color: #FFF;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-right: 20px;
}

.p--product--define__content {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.p--product--case__main {
  max-width: 1080px;
  margin: 0 auto 60px;
}

.p--product--case__main img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--case__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.p--product--case__list > li {
  width: calc(300 / 960 * 100%);
  margin: 0 calc(30 / 960 * 100%) 30px 0;
  background-color: #FFF;
}

.p--product--case__list > li:nth-child(3n) {
  margin: 0 0 30px;
}

.p--product--case__list > li.case__links__box {
  position: relative;
  padding: 0 0 60px;
}

.p--product--case__list > li.case__links__box .c--button--list {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.p--product--case--content__inner {
  padding: 20px;
}

.p--product--case--content .c--button--list {
  margin: 15px 0 0;
}

.p--product--case__image img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--case__image.case__links {
  overflow: hidden;
  aspect-ratio: 300 / 200;
  display: block;
}

.p--product--case__image.case__links img {
  transform: scale(1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.p--product--case__image.case__links:hover img {
  transform: scale(1.15);
}

.p--product--case__title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.57143;
  text-align: center;
  margin: 0 0 20px;
}

.p--product--case__text {
  font-size: 1.4rem;
  line-height: 1.71429;
}

.p--product--caseflow__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto 50px;
}

.p--product--caseflow__list > li:last-child {
  margin: 0;
}

.p--product--caseflow__list--box {
  width: calc(220 / 960 * 100%);
  background-color: #FFF;
}

.p--product--caseflow__list--box:last-child {
  margin: 0;
}

.p--product--caseflow--content__inner {
  padding: 20px;
}

.p--product--caseflow__image img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--caseflow__title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.375;
  text-align: center;
}

.p--product--caseflow__list--next {
  padding: 60px 0 0;
  margin: 0 calc(20 / 960 * 100%) 0;
  width: calc(100 / 960 * 100%);
}

.p--product--caseflow__list--next .circle__explain {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #212121;
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  color: #FFF;
  font-size: 1.1rem;
  border-radius: 50%;
  text-align: center;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.p--product--caseflow__list--next .arrow__icon {
  width: 48px;
  margin: 0 auto;
}

.p--product--caseflow__list--next .arrow__icon img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--facility__main {
  max-width: 1080px;
  margin: 0 auto 60px;
}

.p--product--facility__main img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--facility__lead {
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 60px;
  line-height: 2;
}

.p--product--facility__cols {
  max-width: 960px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
}

.p--product--facility__cols.cols__6__4 .p--product--facility__image {
  width: calc(560 / 960 * 100%);
}

.p--product--facility__cols.cols__6__4 .p--product--facility--contents {
  width: calc(370 / 960 * 100%);
}

.p--product--facility--other {
  max-width: 960px;
  margin: 0 auto 60px;
  background-color: #FFF;
  border: 3px solid #E2E2E2;
}

.p--product--facility--other__inner {
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p--product--facility--other .p--product--define {
  margin: 0;
}

.p--product--facility--other__content .p--product--define {
  margin: 0 0 20px;
}

.p--product--facility--other__content .p--product--define:last-child {
  margin: 0;
}

.p--product--facility--other__title {
  font-weight: 800;
  font-size: 2.0rem;
}

.p--product--facility__image img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--facility--contents__title {
  font-size: 2.0rem;
  font-weight: 800;
  margin: 0 0 15px;
}

.p--product--facility--contents__figure {
  margin: 0 0 20px;
}

.p--product--facility--contents__figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--facility--contents__text {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.71429;
  margin: 0 0 2.0em;
}

.p--product--facility--contents__text:last-child {
  margin: 0;
}

.p--product--facility--crbox {
  max-width: 960px;
  margin: 0 auto 50px;
}

.p--product--facility--crbox__title {
  background-color: #212121;
  padding: 20px;
  font-size: 2.4rem;
  color: #FFF;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-align: center;
  margin: 0 0 20px;
}

.p--product--facility--crbox--list {
  display: flex;
  justify-content: space-between;
}

.p--product--facility--crbox--list > li {
  width: calc(460 / 960 * 100%);
}

.p--product--facility--crbox__main {
  margin: 0 0 30px;
}

.p--product--facility--crbox__main img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--facility--crbox--list__title {
  font-weight: 800;
  font-size: 2.0rem;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.p--product--facility--crcbox {
  margin: 0 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p--product--facility--crcbox__text {
  width: calc(640 / 960 * 100%);
  line-height: 2;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.p--product--facility--crcbox__content {
  width: calc(300 / 960 * 100%);
}

.p--product--facility--crcbox__content .text__exp {
  line-height: 1.38462;
  font-size: 1.3rem;
}

.p--product--facility--crbox__figure {
  width: calc(370 / 460 * 100%);
  margin: 20px auto 0;
}

.p--product--facility--crbox__figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--flow__text {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2;
  margin: 0 0 40px;
}

.p--product--flow--number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -30px;
  top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p--product--flow--number em {
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-oswald);
}

.p--product--flow__box {
  max-width: 640px;
  margin: 0 auto 90px;
  background-color: #FFF;
  border-radius: 6px;
  position: relative;
}

.p--product--flow__box:after {
  content: "";
  width: 32px;
  height: 48px;
  display: block;
  background-image: url(../images/common/arrow01__red__under.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}

.p--product--flow__box:last-child::after {
  display: none;
}

.p--product--flow__box.arrow__none:after {
  display: none;
}

.p--product--flow--box__inner {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p--product--flow__image {
  width: calc(300 / 600 * 100%);
}

.p--product--flow__content {
  width: calc(280 / 600 * 100%);
}

.p--product--flow__content p {
  line-height: 2;
  font-size: 1.4rem;
}

.p--product--flow__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.p--product--flowpoint__box {
  max-width: 720px;
  margin: 0 auto 80px;
  box-sizing: border-box;
  border: 1px dashed #000;
  background-color: #FFF;
  border-radius: 6px;
}

.p--product--flowpoint__box.tape__ver {
  max-width: 640px;
}

.p--product--flowpoint__box.tape__ver .p--product--flowpoint__box__inner {
  display: block;
}

.p--product--flowpoint__box.tape__ver .p--product--flowpoint__box__title {
  text-align: center;
  font-size: 1.6rem;
}

.p--product--flowpoint__box.tape__ver ul {
  text-align: center;
}

.p--product--flowpoint__box.tape__ver ul > li {
  margin: 0 0 10px;
}

.p--product--flowpoint__box__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 25px;
}

.p--product--flowpoint__box__content {
  width: calc(320 / 670 * 100%);
}

.p--product--flowpoint__box__title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 15px;
}

.p--product--flowpoint__box__text {
  font-size: 1.2rem;
  line-height: 1.66667;
}

.p--product--flowpoint__box__figure {
  width: calc(330 / 670 * 100%);
}

.p--product--flowpoint__box__figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--tape--box {
  max-width: 960px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}

.p--product--tape--box__image {
  width: calc(420 / 960 * 100%);
}

.p--product--tape--box__image img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--product--tape--box__content {
  width: calc(500 / 960 * 100%);
}

.p--product--tape--box__content .p--product--define__title {
  min-width: 80px;
}

.p--product--tape--box__title {
  font-size: 2.0rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.p--product--tape--box__text {
  font-size: 1.3rem;
  line-height: 1.84615;
  letter-spacing: 0.04em;
  margin: 0 0 35px;
}

.p--product--tape--box__data {
  width: 100%;
  margin: 0 0 30px;
}

.p--product--tape--box__data thead th {
  text-align: center;
  vertical-align: middle;
  background-color: var(--color-secondary);
  border: 1px solid #FAFAFA;
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12.5px 20px;
}

.p--product--tape--box__data thead th em {
  font-size: 0.8rem;
}

.p--product--tape--box__data tbody td {
  text-align: center;
  vertical-align: middle;
  background-color: #FFF;
  border: 1px solid #E5E5E5;
  font-size: 1.1rem;
  padding: 12.5px 5px;
}

@media screen and (max-width: 768px) {
  .p--product__mainlead {
    margin: 0 0 calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    text-align: left;
    margin: 0 0 calc(25 / 390 * 100vw);
  }
  .p--product__mainlead br {
    display: none;
  }
  .p--product--section {
    margin: 0 0 calc(40 / 390 * 100vw);
  }
  .p--product__sublead__content {
    max-width: initial;
    margin: 0 auto calc(35 / 390 * 100vw);
  }
  .p--product--section__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    text-align: left;
  }
  .p--product__sublead {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    text-align: left;
  }
  .p--product--index--box {
    margin: 0 auto calc(60 / 390 * 100vw);
    max-width: initial;
  }
  .p--product--index--box__figure {
    margin: 0 calc(-20 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p--product--index--box__title {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--index--box__title .en__title {
    font-size: calc(18 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--index--box__title .jp__title {
    font-size: calc(24 / 390 * 100vw);
    display: block;
  }
  .p--product--index--box__wrap {
    display: block;
  }
  .p--product--index--box__text {
    width: auto;
    padding: 0;
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--product--define {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--define__title {
    min-width: calc(120 / 390 * 100vw);
    padding: 0 calc(20 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    border: calc(2 / 390 * 100vw) solid #000;
    font-size: calc(11 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
  }
  .p--product--define__content {
    font-size: calc(12 / 390 * 100vw);
  }
  .p--product--case__main {
    max-width: initial;
    margin: 0 calc(-20 / 390 * 100vw) calc(30 / 390 * 100vw);
  }
  .p--product--case__list {
    max-width: initial;
  }
  .p--product--case__list > li {
    width: calc(160 / 390 * 100vw);
    margin: 0 calc(10 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .p--product--case__list > li:nth-child(3n) {
    margin: 0 calc(10 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }
  .p--product--case__list > li:nth-child(2n) {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--product--case__list > li.case__links__box {
    padding: 0 0 calc(40 / 390 * 100vw);
  }
  .p--product--case__list > li.case__links__box .c--button--list {
    bottom: calc(20 / 390 * 100vw);
  }
  .p--product--case--content__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .p--product--case--content .c--button--list {
    margin: calc(10 / 390 * 100vw) 0 0;
  }
  .p--product--case__title {
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.42857;
    text-align: left;
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .p--product--case__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
  .p--product--caseflow__list {
    display: block;
    flex-wrap: wrap;
    max-width: initial;
    margin: 0 auto calc(60 / 390 * 100vw);
    border-bottom: 1px solid #CCCCCC90;
  }
  .p--product--caseflow__list > li:last-child {
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  .p--product--caseflow__list--box {
    width: calc(200 / 390 * 100vw);
    margin: 0 auto calc(0 / 390 * 100vw);
    background-color: #FFF;
  }
  .p--product--caseflow__list--box:last-child {
    margin: 0 auto calc(10 / 390 * 100vw);
  }
  .p--product--caseflow--content__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .p--product--caseflow__title {
    font-size: calc(15 / 390 * 100vw);
    line-height: 1.33333;
  }
  .p--product--caseflow__list--next {
    padding: calc(10 / 390 * 100vw) 0;
    margin: calc(20 / 960 * 100%) auto;
    width: calc(260 / 960 * 100%);
  }
  .p--product--caseflow__list--next .circle__explain {
    width: calc(90 / 390 * 100vw);
    height: calc(90 / 390 * 100vw);
    margin: 0 auto calc(10 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
  .p--product--caseflow__list--next .arrow__icon {
    width: calc(40 / 390 * 100vw);
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .p--product--caseflow__list--next .arrow__icon img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .p--product--facility__main {
    max-width: initial;
    margin: 0 calc(-20 / 390 * 100vw) calc(30 / 390 * 100vw);
  }
  .p--product--facility__lead {
    font-size: calc(13 / 390 * 100vw);
    text-align: left;
    margin: 0 0 calc(30 / 390 * 100vw);
    line-height: 1.69231;
  }
  .p--product--facility__lead br {
    display: none;
  }
  .p--product--facility__cols {
    max-width: initial;
    display: block;
    margin: 0 auto calc(40 / 390 * 100vw);
  }
  .p--product--facility__cols.cols__6__4 .p--product--facility__image {
    width: auto;
  }
  .p--product--facility__cols.cols__6__4 .p--product--facility--contents {
    width: auto;
  }
  .p--product--facility--other {
    max-width: initial;
    margin: 0 auto calc(30 / 390 * 100vw);
    border: calc(3 / 390 * 100vw) solid #E2E2E2;
  }
  .p--product--facility--other__inner {
    padding: calc(15 / 390 * 100vw);
    display: block;
  }
  .p--product--facility--other .p--product--define {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--facility--other__content .p--product--define {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--facility--other__content .p--product--define:last-child {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--facility--other__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
    text-align: center;
  }
  .p--product--facility__image {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--product--facility--contents__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .p--product--facility--contents__figure {
    margin: 0 auto calc(15 / 390 * 100vw);
    width: calc(300 / 390 * 100vw);
  }
  .p--product--facility--contents__figure img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .p--product--facility--contents__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
  .p--product--facility--crbox {
    max-width: initial;
    margin: 0 auto calc(50 / 390 * 100vw);
  }
  .p--product--facility--crbox__title {
    padding: calc(15 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .p--product--facility--crbox--list {
    display: block;
  }
  .p--product--facility--crbox--list > li {
    width: auto;
  }
  .p--product--facility--crbox__main {
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .p--product--facility--crbox__main img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .p--product--facility--crbox--list__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .p--product--facility--crcbox {
    margin: 0 0 calc(20 / 390 * 100vw);
    display: block;
  }
  .p--product--facility--crcbox__text {
    width: auto;
    line-height: 1.69231;
    font-size: calc(13 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--product--facility--crcbox__content {
    width: auto;
  }
  .p--product--facility--crcbox__content .text__exp {
    line-height: 1.38462;
    font-size: calc(12 / 390 * 100vw);
  }
  .p--product--facility--crbox__figure {
    width: calc(280 / 390 * 100vw);
    margin: calc(20 / 390 * 100vw) auto;
  }
  .p--product--facility--crbox__figure img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .p--product--flow__text {
    font-size: calc(13 / 390 * 100vw);
    text-align: left;
    line-height: 1.69231;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--product--flow--number {
    left: calc(-20 / 390 * 100vw);
    top: calc(-20 / 390 * 100vw);
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .p--product--flow--number em {
    font-size: calc(16 / 390 * 100vw);
  }
  .p--product--flow__box {
    max-width: calc(300 / 390 * 100vw);
    margin: 0 auto calc(40 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
  }
  .p--product--flow__box:after {
    width: calc(24 / 390 * 100vw);
    height: calc(36 / 390 * 100vw);
    bottom: calc(-30 / 390 * 100vw);
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
  }
  .p--product--flow--box__inner {
    padding: calc(15 / 390 * 100vw);
    display: block;
  }
  .p--product--flow__image {
    width: auto;
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--flow__image img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .p--product--flow__content {
    width: auto;
  }
  .p--product--flow__content p {
    line-height: 1.69231;
    font-size: calc(13 / 390 * 100vw);
  }
  .p--product--flow__title {
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--flowpoint__box {
    max-width: calc(300 / 390 * 100vw);
    margin: 0 auto calc(30 / 390 * 100vw);
    border: calc(1 / 390 * 100vw) dashed #000;
    border-radius: calc(6 / 390 * 100vw);
  }
  .p--product--flowpoint__box.tape__ver {
    max-width: calc(280 / 390 * 100vw);
  }
  .p--product--flowpoint__box.tape__ver .p--product--flowpoint__box__inner {
    display: block;
  }
  .p--product--flowpoint__box.tape__ver .p--product--flowpoint__box__title {
    text-align: center;
    font-size: calc(14 / 390 * 100vw);
  }
  .p--product--flowpoint__box.tape__ver ul {
    text-align: left;
  }
  .p--product--flowpoint__box.tape__ver ul > li {
    margin: 0 0 calc(10 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
  .p--product--flowpoint__box__inner {
    display: block;
    padding: calc(15 / 390 * 100vw);
  }
  .p--product--flowpoint__box__content {
    width: auto;
  }
  .p--product--flowpoint__box__title {
    font-size: calc(20 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--flowpoint__box__text {
    font-size: calc(12 / 390 * 100vw);
    line-height: 1.66667;
  }
  .p--product--flowpoint__box__figure {
    width: calc(200 / 390 * 100vw);
    margin: 0 auto;
  }
  .p--product--tape--box {
    max-width: initial;
    margin: 0 auto calc(40 / 390 * 100vw);
    display: block;
  }
  .p--product--tape--box__image {
    width: auto;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--product--tape--box__content {
    width: auto;
  }
  .p--product--tape--box__content .p--product--define__title {
    min-width: calc(100 / 390 * 100vw);
  }
  .p--product--tape--box__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--product--tape--box__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--product--tape--box__data {
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .p--product--tape--box__data thead th {
    font-size: calc(10 / 390 * 100vw);
    padding: calc(10 / 390 * 100vw);
  }
  .p--product--tape--box__data thead th em {
    font-size: calc(7 / 390 * 100vw);
  }
  .p--product--tape--box__data tbody td {
    font-size: calc(10 / 390 * 100vw);
    padding: calc(10 / 390 * 100vw);
  }
}

/*  Pages [Company]
--------------------------------------------------------------*/
.p--company--message {
  position: relative;
  padding: 0 0 90px;
}

.p--company--message__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.p--company--message__block {
  display: flex;
  justify-content: space-between;
}

.p--company--message__contents {
  width: calc(640 / 1080 * 100%);
}

.p--company--message__contents p {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.86667;
  margin: 0 0 3.0rem;
}

.p--company--message__photo {
  width: calc(400 / 1080 * 100%);
}

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

.p--company--message__caption {
  display: block;
  margin: 15px 0 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.p--company--message__caption .caption__title {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 20px;
}

.p--company--message__caption .caption__sign {
  display: block;
  width: 130px;
}

.p--company--message__copy {
  font-size: 3.2rem;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1.625;
  margin: 0 0 35px;
  font-weight: 800;
}

@media screen and (max-width: 1100px) {
  .p--company--message__copy br {
    display: none;
  }
}

.p--company--philosophy {
  margin: 0 -30px;
  background-color: #2E2E2E;
  padding: 90px 30px;
}

.p--company--philosophy .c--headline--l2 .title__jp {
  color: #FFF;
}

.p--company--philosophy--lead {
  text-align: center;
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 45px;
}

.p--company--philosophy__define__box {
  border-radius: 3px;
  background-color: #FFF;
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 40px;
}

.p--company--philosophy__define__box:last-child {
  margin: 0 auto 0;
}

.p--company--philosophy__define .philosophy__title {
  border-bottom: 1px solid #D9D9D9;
  padding: 0 0 20px;
  margin: 0 0 20px;
  position: relative;
  color: #000;
  letter-spacing: 0.04em;
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
}

.p--company--philosophy__define .philosophy__text {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 2;
}

.p--company--profile {
  padding: 90px 0;
}

.p--history {
  position: relative;
  padding: 0;
  background-image: url(../images/company/history__bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p--history__inner {
  padding: 90px 0 70px;
}

.p--history__title {
  font-family: var(--font-roboto);
  font-size: 20.0rem;
  color: #FFFFFF20;
  font-weight: 900;
  letter-spacing: 0.08em;
  position: absolute;
  margin: 0 auto;
  top: 30px;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

.p--history__title--sub {
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 40px;
  text-align: center;
}

.p--history__text {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  font-weight: 400;
  margin: 0 0 50px;
}

.p--company--sustainability {
  margin: 0 -30px;
  background-color: #E3E3E3;
  padding: 90px 30px;
}

.p--company--sustainability__box {
  background-color: #FFF;
  max-width: 960px;
  margin: 0 auto 60px;
  border-radius: 6px;
}

.p--company--sustainability__box:last-child {
  margin: 0 auto;
}

.p--company--sustainability__box__inner.sus01 {
  padding: 50px 75px;
}

.p--company--sustainability__box__inner.sus02 {
  padding: 50px 65px;
}

.p--company--sustainability__box__inner.sus03 {
  padding: 40px;
}

.p--company--sustainability--title {
  border-radius: 6px 6px 0 0;
  background-color: var(--color-third);
  text-align: center;
  padding: 32px 0;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 800;
}

.p--company--sustainability__text {
  line-height: 1.71429;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 60px;
}

.p--company--sustainability__graph {
  display: flex;
  justify-content: space-between;
}

.p--company--sustainability__graph--figure {
  width: calc(360 / 800 * 100%);
}

.p--company--sustainability__graph--figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--company--sustainability__define__wrapper {
  margin: 0 0 30px;
  padding: 30px 40px;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
}

.p--company--sustainability__define .define__title {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  border-bottom: 1px solid #D9D9D9;
  padding: 0 0 10px;
}

.p--company--sustainability__define .define__title--number {
  padding: 10px 20px 10px 10px;
  margin-right: 20px;
  font-family: var(--font-oswald);
  font-weight: 700;
  color: var(--color-third);
  font-size: 4.0rem;
  border-right: 1px solid #D9D9D9;
}

.p--company--sustainability__define .define__title--text {
  font-size: 2.4rem;
  font-weight: 800;
}

.p--company--sustainability__define .define__contents {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}

.p--company--sustainability--links {
  margin: 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 36px;
  padding: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: var(--color-primary);
  border-radius: 3px;
  background-image: url(/assets/images/common/arrow03__wh__right.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: center right 10px;
  border: 2px solid var(--color-primary);
  margin: 0 auto 30px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.p--company--sustainability--links:link {
  text-decoration: none;
  color: #FFF;
}

.p--company--sustainability--links:visited {
  text-decoration: none;
  color: #FFF;
}

.p--company--sustainability--links:hover {
  text-decoration: none;
  color: #000;
  background-color: #FFF;
  background-image: url(/assets/images/common/arrow03__red__right.svg);
}

.p--company--sustainability__close--text {
  margin: 0 0 15px;
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
  font-weight: 600;
}

.p--company--sustainability__close--caution {
  margin: 0 0 15px;
  font-size: 1.2rem;
  line-height: 1.66667;
  text-align: center;
}

.p--company--sustainability__closebox {
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  max-width: 740px;
  margin: 0 auto 20px;
}

.p--company--sustainability__closebox__inner {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p--company--sustainability__closebox__figure {
  width: calc(220 / 700 * 100%);
}

.p--company--sustainability__closebox__figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--company--sustainability__closebox__content {
  width: calc(440 / 700 * 100%);
}

.p--company--sustainability__closebox__content .closebox__figure {
  width: 255px;
  margin: 0 0 20px;
}

.p--company--sustainability__closebox__content .closebox__figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.p--company--sustainability__closebox__content .closebox__text {
  font-size: 1.6rem;
  line-height: 1.875;
}

.p--company--access {
  padding: 90px 0 0;
}

.p--company--access__iframe {
  width: 100%;
  height: 460px;
  margin: 0 0 40px;
}

.p--company--access__iframe iframe {
  width: 100%;
  vertical-align: bottom;
  height: 460px;
}

.p--company--access__info {
  max-width: 740px;
  margin: 0 auto 30px;
  display: flex;
}

.p--company--access .access__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  width: 170px;
  height: 30px;
  padding: 5px 20px;
  background-color: #FFF;
  box-sizing: border-box;
  border: 2px solid #000;
  font-size: 1.3rem;
  font-weight: 600;
}

.p--company--access .access__list {
  margin: 8px 0 0;
}

.p--company--access .access__list > li {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p--company--message {
    padding: 0 0 calc(35 / 390 * 100vw);
  }
  .p--company--message__inner {
    max-width: initial;
  }
  .p--company--message__block {
    display: block;
  }
  .p--company--message__contents {
    width: auto;
  }
  .p--company--message__contents p {
    font-size: calc(13 / 390 * 100vw);
    line-height: 2;
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .p--company--message__photo {
    width: calc(240 / 390 * 100vw);
    margin: 0 auto;
  }
  .p--company--message__photo img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .p--company--message__caption {
    margin: calc(15 / 390 * 100vw) 0 0;
  }
  .p--company--message__caption .caption__title {
    font-size: calc(14 / 390 * 100vw);
    margin-right: calc(15 / 390 * 100vw);
  }
  .p--company--message__caption .caption__sign {
    width: calc(100 / 390 * 100vw);
  }
  .p--company--message__copy {
    font-size: calc(20 / 390 * 100vw);
    line-height: 1.5;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--company--philosophy {
    margin: 0 calc(-20 / 390 * 100vw);
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p--company--philosophy--lead {
    text-align: left;
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
    line-height: 1.42857;
  }
  .p--company--philosophy__define__box {
    border-radius: calc(3 / 390 * 100vw);
    max-width: initial;
    margin: 0 auto calc(15 / 390 * 100vw);
    padding: calc(20 / 390 * 100vw);
  }
  .p--company--philosophy__define .philosophy__title {
    padding: 0 0 calc(15 / 390 * 100vw) calc(15 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .p--company--philosophy__define .philosophy__title:before {
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    top: 0.5em;
  }
  .p--company--philosophy__define .philosophy__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
  .p--company--profile {
    padding: calc(40 / 390 * 100vw) 0;
  }
  .p--history__inner {
    padding: calc(40 / 390 * 100vw) 0 calc(25 / 390 * 100vw);
  }
  .p--history__title {
    font-size: calc(60 / 390 * 100vw);
    top: calc(20 / 390 * 100vw);
  }
  .p--history__title--sub {
    font-size: calc(20 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--history__text {
    font-size: calc(13 / 390 * 100vw);
    padding: 0 calc(20 / 390 * 100vw);
    line-height: 2;
    text-align: left;
    margin: 0 0 calc(25 / 390 * 100vw);
  }
  .p--company--sustainability {
    margin: 0 calc(-20 / 390 * 100vw);
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p--company--sustainability__box {
    margin: 0 auto calc(30 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
  }
  .p--company--sustainability__box__inner.sus01 {
    padding: calc(25 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p--company--sustainability__box__inner.sus02 {
    padding: calc(25 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p--company--sustainability__box__inner.sus03 {
    padding: calc(20 / 390 * 100vw);
  }
  .p--company--sustainability--title {
    border-radius: calc(6 / 390 * 100vw) calc(6 / 390 * 100vw) 0 0;
    padding: calc(15 / 390 * 100vw) 0;
    font-size: calc(18 / 390 * 100vw);
  }
  .p--company--sustainability__text {
    line-height: 1.53846;
    font-size: calc(13 / 390 * 100vw);
    margin: 0 0 calc(30 / 390 * 100vw);
    text-align: left;
  }
  .p--company--sustainability__graph {
    display: block;
  }
  .p--company--sustainability__graph--figure {
    width: calc(270 / 390 * 100vw);
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  .p--company--sustainability__define__wrapper {
    margin: 0 0 calc(15 / 390 * 100vw);
    padding: calc(15 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
  }
  .p--company--sustainability__define .define__title {
    margin: 0 0 calc(15 / 390 * 100vw);
    padding: 0 0 calc(10 / 390 * 100vw);
  }
  .p--company--sustainability__define .define__title--number {
    padding: calc(10 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
    font-size: calc(30 / 390 * 100vw);
  }
  .p--company--sustainability__define .define__title--text {
    font-size: calc(16 / 390 * 100vw);
    line-height: 1.33333;
  }
  .p--company--sustainability__define .define__contents {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
  .p--company--sustainability__close--text {
    margin: 0 0 calc(15 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    line-height: 2;
    text-align: left;
  }
  .p--company--sustainability__close--text br {
    display: none;
  }
  .p--company--sustainability__close--caution {
    margin: 0 0 calc(15 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
    line-height: 1.5;
    text-align: left;
  }
  .p--company--sustainability__close--caution br {
    display: none;
  }
  .p--company--sustainability__closebox {
    border-radius: calc(6 / 390 * 100vw);
    max-width: initial;
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  .p--company--sustainability__closebox__inner {
    padding: calc(20 / 390 * 100vw);
    display: block;
  }
  .p--company--sustainability__closebox__figure {
    width: calc(160 / 390 * 100vw);
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  .p--company--sustainability__closebox__content {
    width: auto;
  }
  .p--company--sustainability__closebox__content .closebox__figure {
    width: calc(200 / 390 * 100vw);
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  .p--company--sustainability__closebox__content .closebox__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
  .p--company--sustainability__closebox__content .closebox__text br {
    display: none;
  }
  .p--company--access {
    padding: calc(40 / 390 * 100vw) 0 0;
  }
  .p--company--access__iframe {
    height: calc(280 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--company--access__iframe iframe {
    width: 100%;
    vertical-align: bottom;
    height: calc(280 / 390 * 100vw);
  }
  .p--company--access__info {
    max-width: initial;
    margin: 0 auto calc(15 / 390 * 100vw);
    display: block;
  }
  .p--company--access .access__title {
    margin-right: calc(20 / 390 * 100vw);
    width: calc(160 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    padding: calc(5 / 390 * 100vw) calc(20 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
  .p--company--access .access__list {
    margin: calc(10 / 390 * 100vw) 0 0;
  }
  .p--company--access .access__list > li {
    margin: 0 0 calc(10 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
}

/*  Pages [Company History]
--------------------------------------------------------------*/
.p--history__lead {
  margin: 0 0 50px;
  text-align: center;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 2.22222;
  letter-spacing: 0.04em;
}

.p--history__wrapper {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.p--history__wrapper:before {
  content: "";
  border-right: 1px dashed var(--color-third);
  width: 1px;
  height: 100%;
  position: absolute;
  left: calc(196 / 1080 * 100%);
}

.p--history--box {
  margin: 0 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p--history--box__title {
  width: calc(190 / 1080 * 100%);
  font-weight: 700;
  color: var(--color-third);
  font-family: var(--font-oswald);
}

.p--history--box__title span {
  font-size: 4.0rem;
  margin-right: 10px;
}

.p--history--box__title em {
  font-size: 2.4rem;
}

.p--history--box__point {
  width: calc(100 / 1080 * 100%);
  display: block;
}

.p--history--box__point i {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  background-color: var(--color-third);
}

.p--history--content {
  width: calc(790 / 1080 * 100%);
  border-radius: 6px;
  background-color: #FFF;
}

.p--history--content__inner {
  padding: 30px;
}

.p--history--content--date {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.p--history--content--text {
  line-height: 1.71429;
  font-size: 1.4rem;
  margin: 0 0 1.0em;
}

.p--history--content--text:last-child {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .p--history__lead {
    margin: 0 0 calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    text-align: left;
    line-height: 1.85714;
  }
  .p--history__lead br {
    display: none;
  }
  .p--history__wrapper {
    max-width: initial;
  }
  .p--history__wrapper:before {
    content: "";
    border-right: calc(1 / 390 * 100vw) dashed var(--color-third);
    width: calc(1 / 390 * 100vw);
    left: calc(97.5 / 390 * 100vw);
  }
  .p--history--box {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--history--box__title {
    width: calc(100 / 390 * 100vw);
  }
  .p--history--box__title span {
    font-size: calc(24 / 390 * 100vw);
    margin-right: calc(5 / 390 * 100vw);
  }
  .p--history--box__title em {
    font-size: calc(14 / 390 * 100vw);
  }
  .p--history--box__point {
    width: calc(40 / 390 * 100vw);
    display: block;
  }
  .p--history--box__point i {
    width: calc(10 / 390 * 100vw);
    height: calc(10 / 390 * 100vw);
  }
  .p--history--content {
    width: calc(210 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
  }
  .p--history--content__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .p--history--content--date {
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .p--history--content--text {
    line-height: 1.5;
    font-size: calc(12 / 390 * 100vw);
  }
}

/*  Pages [Recruit]
--------------------------------------------------------------*/
.p--recruit--message {
  padding: 0 30px;
}

.p--recruit--message__inner {
  max-width: 960px;
  margin: 0 auto;
}

.p--recruit--message__lead {
  margin: 0 0 50px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.22222;
  letter-spacing: 0.04em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p--recruit--message {
    padding: 0 calc(20 / 390 * 100vw);
  }
  .p--recruit--message__inner {
    max-width: initial;
  }
  .p--recruit--message__lead {
    margin: 0 0 calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    text-align: left;
    line-height: 1.85714;
  }
  .p--recruit--message__lead br {
    display: none;
  }
}

/*  Pages [News]
--------------------------------------------------------------*/
.c--news--archives {
  padding: 0 0 40px;
}

.c--news--archives__inner {
  max-width: 800px;
  margin: 0 auto;
}

.c--news--archives--list {
  border-top: 1px solid #1D1D1D20;
}

.c--news--archives--box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #1D1D1D20;
  padding: 40px 20px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--news--archives--box:link {
  text-decoration: none;
}

.c--news--archives--box:visited {
  text-decoration: none;
}

.c--news--archives--box:hover {
  text-decoration: none;
  background-color: #CCCCCC30;
}

.c--news--archives__date {
  width: calc(120 / 760 * 100%);
  font-size: 1.6rem;
  font-family: var(--font-oswald);
  color: #000;
  font-weight: 700;
  line-height: 1.42857;
}

.c--news--archives__category {
  width: calc(110 / 760 * 100%);
}

.c--news--archives__category--label {
  display: flex;
  width: 80px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-third);
  font-family: var(--font-oswald);
  font-size: 1.1rem;
  color: #FFF;
  line-height: 1.42857;
}

.c--news--archives__text {
  width: calc(540 / 760 * 100%);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #000;
  line-height: 1.42857;
}

.c--news--single {
  padding: 0 0 40px;
}

.c--news--single__inner {
  max-width: 800px;
  margin: 0 auto;
}

.c--news--single__meta {
  padding: 0 0 20px;
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 20px;
}

.c--news--single__meta--info {
  display: flex;
  align-items: center;
}

.c--news--single__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.33333;
}

.c--news--single__date {
  font-size: 1.6rem;
  font-family: var(--font-oswald);
  color: #000;
  font-weight: 700;
  line-height: 1.42857;
  margin-right: 20px;
}

.c--news--single__category--label {
  display: flex;
  width: 80px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-third);
  font-family: var(--font-oswald);
  font-size: 1.1rem;
  color: #FFF;
  line-height: 1.42857;
}

@media screen and (max-width: 768px) {
  .c--news--archives {
    padding: 0 0 calc(20 / 390 * 100vw);
  }
  .c--news--archives__inner {
    max-width: initial;
  }
  .c--news--archives--box {
    padding: calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
    display: block;
  }
  .c--news--archives__date {
    width: auto;
    font-size: calc(14 / 390 * 100vw);
    margin: 0 calc(10 / 390 * 100vw) calc(5 / 390 * 100vw) 0;
    display: inline-block;
  }
  .c--news--archives__category {
    width: auto;
    margin: 0 0 calc(5 / 390 * 100vw);
    display: inline-block;
  }
  .c--news--archives__category--label {
    width: calc(80 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
    font-size: calc(11 / 390 * 100vw);
    line-height: 1.42857;
  }
  .c--news--archives__text {
    width: auto;
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.42857;
  }
  .c--news--single {
    padding: 0 0 calc(20 / 390 * 100vw);
  }
  .c--news--single__inner {
    max-width: initial;
  }
  .c--news--single__meta {
    padding: 0 0 calc(15 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .c--news--single__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    line-height: 1.25;
  }
  .c--news--single__date {
    font-size: calc(13 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
  }
  .c--news--single__category {
    width: auto;
    margin: 0 0 calc(5 / 390 * 100vw);
  }
  .c--news--single__category--label {
    width: calc(100 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
    font-size: calc(11 / 390 * 100vw);
    line-height: 1.42857;
  }
}

/*  Pages [Common]
--------------------------------------------------------------*/
.c--contents__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.c--contents__main {
  width: calc(740 / 1080 * 100%);
}

.c--contents--nav {
  width: calc(300 / 1080 * 100%);
  box-sizing: border-box;
  border: 5px solid #CCCCCC50;
  position: sticky;
  top: 100px;
}

.c--contents--nav__inner {
  padding: 20px;
}

.c--contents--nav__title {
  display: flex;
  align-items: start;
  margin: 0 0 15px;
}

.c--contents--nav__title svg {
  width: 20px;
  margin-right: 10px;
}

.c--contents--nav__title span {
  font-weight: 600;
  font-size: 1.5rem;
}

.c--contents--nav--list {
  margin: 0;
}

.c--contents--nav--list > li {
  margin: 0 0 15px;
}

.c--contents--nav--list > li:last-child {
  margin: 0;
}

.c--contents--nav--list > li > a {
  display: block;
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.42857;
  font-size: 1.4rem;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--contents--nav--list > li > a:link {
  text-decoration: none;
  color: #000;
}

.c--contents--nav--list > li > a:visited {
  text-decoration: none;
  color: #000;
}

.c--contents--nav--list > li > a:hover {
  text-decoration: none;
  color: #000;
  opacity: 0.45;
}

.c--contents--nav--list > li > a:before {
  position: absolute;
  content: "";
  top: calc(70% - 6px);
  left: -10px;
  display: inline-block;
  vertical-align: middle;
  color: #888888;
  line-height: 1;
  width: 6.5px;
  height: 6.5px;
  border: 1px solid currentColor;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: currentcolor;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: currentcolor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 8.5px;
}

.c--contents--section {
  margin: 0 0 3.0em;
}

.c--contents p {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 0 1.5em;
}

.c--contents a {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--contents a:link {
  text-decoration: underline;
  color: var(--color-third);
}

.c--contents a:visited {
  text-decoration: underline;
  color: var(--color-third);
}

.c--contents a:hover {
  text-decoration: underline;
  color: var(--color-third);
  opacity: 0.45;
}

.c--contents--box {
  box-sizing: border-box;
  border: 5px solid #CCCCCC50;
}

.c--contents--box__inner {
  padding: 30px;
}

.c--contents__main p {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 0 1.5em;
}

.c--contents__main p.p--center {
  text-align: center;
}

.c--contents__main p.p--right {
  text-align: right;
}

.c--contents__main h2 {
  font-weight: 600;
  font-size: 2.4rem;
  margin: 0 0 20px;
}

.c--contents__main h3 {
  font-weight: 600;
  font-size: 1.8rem;
  margin: 30px 0 20px;
  color: #333;
}

.c--contents__main h4 {
  font-weight: 600;
  font-size: 1.6rem;
  margin: 30px 0 20px;
  color: #333;
}

.c--contents__main ol {
  margin: 0 0 2.5em;
}

.c--contents__main ol > li {
  font-size: 1.5rem;
  margin: 0 0 0.75em;
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.33333;
}

.c--contents__main .c--contents--caution > li {
  line-height: 1.38462;
  font-size: 1.2rem;
}

.c--contents__main ul > li {
  font-size: 1.5rem;
  margin: 0 0 0.75em;
  line-height: 1.33333;
  position: relative;
  padding: 0 0 0 20px;
}

.c--contents__main ul > li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50%;
  background-color: #000;
  top: 0.65em;
  left: 0;
}

@media screen and (max-width: 768px) {
  .c--contents__inner {
    max-width: initial;
    display: flex;
    flex-direction: column;
  }
  .c--contents__main {
    width: auto;
    order: 2;
  }
  .c--contents--nav {
    width: 100%;
    order: 1;
    border: calc(3 / 390 * 100vw) solid #CCCCCC50;
    position: relative;
    top: inherit;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .c--contents--nav__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .c--contents--nav__title {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .c--contents--nav__title svg {
    width: calc(15 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
  }
  .c--contents--nav__title span {
    font-size: calc(14 / 390 * 100vw);
  }
  .c--contents--nav--list > li {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .c--contents--nav--list > li > a {
    padding: 0 0 0 calc(15 / 390 * 100vw);
    line-height: 1.5;
    font-size: calc(12 / 390 * 100vw);
  }
  .c--contents--nav--list > li > a:before {
    width: calc(6.5 / 390 * 100vw);
    height: calc(6.5 / 390 * 100vw);
    margin-left: calc(5.5 / 390 * 100vw);
  }
  .c--contents--section {
    margin: 0 0 2.0em;
  }
  .c--contents p {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.53846;
  }
  .c--contents a {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
    word-break: break-all;
  }
  .c--contents a:link {
    text-decoration: underline;
    color: var(--color-third);
  }
  .c--contents a:visited {
    text-decoration: underline;
    color: var(--color-third);
  }
  .c--contents a:hover {
    text-decoration: underline;
    color: var(--color-third);
    opacity: 0.45;
  }
  .c--contents--box {
    border: calc(3 / 390 * 100vw) solid #CCCCCC50;
  }
  .c--contents--box__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .c--contents__main p {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    margin: 0 0 1.5em;
  }
  .c--contents__main p.p--center {
    text-align: left;
  }
  .c--contents__main p.p--right {
    text-align: right;
  }
  .c--contents__main h2 {
    font-size: calc(18 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    line-height: 1.33333;
  }
  .c--contents__main h3 {
    font-size: calc(16 / 390 * 100vw);
    margin: calc(15 / 390 * 100vw) 0;
  }
  .c--contents__main h4 {
    font-size: calc(16 / 390 * 100vw);
    margin: calc(15 / 390 * 100vw) 0;
  }
  .c--contents__main ol {
    margin: 0 0 2.0em;
  }
  .c--contents__main ol > li {
    font-size: calc(13 / 390 * 100vw);
    margin: 0 0 0.75em;
    padding-left: 1.5em;
    text-indent: -1.5em;
    line-height: 2.15385;
  }
  .c--contents__main .c--contents--caution > li {
    line-height: 1.45455;
    font-size: calc(11 / 390 * 100vw);
  }
  .c--contents__main ul > li {
    font-size: calc(13 / 390 * 100vw);
    margin: 0 0 0.75em;
    line-height: 1.38462;
    position: relative;
    padding: 0 0 0 calc(15 / 390 * 100vw);
  }
  .c--contents__main ul > li:before {
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    top: 0.65em;
    left: 0;
  }
}

/*  Pages [Contact]
--------------------------------------------------------------*/
.p--contact--contents {
  max-width: 960px;
  margin: 0 auto;
}

.p--contact__lead {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
  margin: 0 0 60px;
}

.p--contact__exp {
  text-align: right;
}

.p--contact__caution {
  color: var(--color-third);
  font-weight: 900;
}

.p--contact__wrap {
  background-color: #FFF;
  border-radius: 6px;
  margin: 30px 0 0;
}

.p--contact__inner {
  padding: 80px 40px;
}

.p--contact--box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid #D9D9D9;
}

.p--contact--box__title {
  width: calc(250 / 880 * 100%);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  padding: 0 0 0 calc(20 / 880 * 100%);
}

.p--contact--box__content {
  width: calc(630 / 880 * 100%);
  padding: 0 calc(20 / 880 * 100%) 0 0;
}

.p--contact--box__cols2 {
  display: flex;
  justify-content: space-between;
}

.p--contact--box__cols2 > li {
  width: 47.5%;
}

.p--contact--box__address {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
}

.p--contact--box__address:last-child {
  margin: 0;
}

.p--contact--box__address--title {
  width: calc(100 / 610 * 100%);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin: 0 15px 0 0;
  font-weight: 700;
}

.p--contact--box__address--content {
  width: calc(510 / 610 * 100%);
}

.p--contact--confirm__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 30px;
}

.p--contact--confirm__text {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 50px;
}

.p--contact--error__exp {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 30px;
}

.p--contact--error--list {
  margin: 0 0 60px;
}

.p--contact--error--list > li {
  margin: 0 0 40px;
  padding: 0 40px 40px;
  border-bottom: 1px solid #D9D9D9;
  color: var(--color-primary);
  font-weight: 700;
}

.p--contact--thanks__text {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

.p--contact--thanks__text a {
  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;
  font-weight: 700;
  margin: 2.5em 0 0;
}

.p--contact--thanks__text a:link {
  text-decoration: underline;
  color: var(--color-third);
}

.p--contact--thanks__text a:visited {
  text-decoration: underline;
  color: var(--color-third);
}

.p--contact--thanks__text a:hover {
  text-decoration: underline;
  color: var(--color-third);
  opacity: 0.45;
}

.p--contact .inputtext--type01[type="text"],
.p--contact .inputtext--type01[type="email"] {
  padding: 20px;
  border-radius: 6px;
  background-color: #F5F5F5;
  border: 3px solid #F5F5F5;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 500;
}

.p--contact .inputtext--type01[type="text"]::placeholder,
.p--contact .inputtext--type01[type="email"]::placeholder {
  color: #B7B7B7;
  font-size: 1.4rem;
  font-weight: 500;
}

.p--contact .inputtext--type01[type="text"]:focus,
.p--contact .inputtext--type01[type="email"]:focus {
  background-color: #FFF;
  border: 3px solid #CCC;
}

.p--contact__buttonlist {
  display: flex;
  justify-content: center;
}

.p--contact__buttonlist > li {
  margin: 0 10px;
}

.p--contact__button {
  background-color: var(--color-primary);
  border-radius: 6px;
  width: 320px;
  height: 80px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #FFF;
  letter-spacing: 0.12em;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.p--contact__button:hover {
  background-color: var(--color-secondary);
}

.p--contact__button.back__button {
  background-color: #666;
}

.p--contact__button.back__button:hover {
  opacity: 0.65;
}

.p--contact .textarea--type01 {
  padding: 20px;
  border-radius: 6px;
  background-color: #F5F5F5;
  border: 3px solid #F5F5F5;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 500;
  min-height: 200px;
}

.p--contact select {
  position: relative;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 20px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  outline: none;
}

.p--contact .select__container {
  position: relative;
  width: 50%;
  border-radius: 6px;
  background-color: #F5F5F5;
  border: 3px solid #F5F5F5;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 500;
}

.p--contact .select__container:focus {
  background-color: #FFF;
  border: 3px solid #CCC;
}

.p--contact .select__container:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 1.75em;
  width: 7.5px;
  height: 7.5px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  pointer-events: none;
  transform: translateY(-50%) rotate(-135deg);
}

.p--contact .c__w100 {
  width: 100%;
}

.p--contact .c__w50 {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p--contact--contents {
    max-width: initial;
  }
  .p--contact__lead {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    text-align: left;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--contact__lead br {
    display: none;
  }
  .p--contact__exp {
    text-align: right;
    font-size: calc(12 / 390 * 100vw);
  }
  .p--contact__wrap {
    border-radius: calc(6 / 390 * 100vw);
    margin: calc(20 / 390 * 100vw) 0 0;
  }
  .p--contact__inner {
    padding: calc(20 / 390 * 100vw);
  }
  .p--contact--box {
    display: block;
    margin: 0 0 calc(20 / 390 * 100vw);
    padding: 0 0 calc(20 / 390 * 100vw);
  }
  .p--contact--box__title {
    width: auto;
    font-size: calc(14 / 390 * 100vw);
    padding: 0 0 calc(15 / 390 * 100vw);
  }
  .p--contact--box__content {
    width: auto;
    padding: 0;
  }
  .p--contact--box__cols2 {
    display: flex;
    justify-content: space-between;
  }
  .p--contact--box__cols2 > li {
    width: 47.5%;
  }
  .p--contact--box__address {
    display: flex;
    align-items: center;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--contact--box__address:last-child {
    margin: 0;
  }
  .p--contact--box__address--title {
    width: calc(100 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    margin: 0 calc(15 / 390 * 100vw) 0 0;
  }
  .p--contact--box__address--content {
    width: calc(200 / 390 * 100vw);
  }
  .p--contact--confirm__title {
    font-size: calc(16 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .p--contact--confirm__text {
    text-align: left;
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(25 / 390 * 100vw);
  }
  .p--contact--error__exp {
    text-align: left;
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .p--contact--error--list {
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .p--contact--error--list > li {
    margin: 0 0 calc(20 / 390 * 100vw);
    padding: 0 calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p--contact--thanks__text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.69231;
    text-align: left;
  }
  .p--contact .inputtext--type01[type="text"],
  .p--contact .inputtext--type01[type="email"] {
    padding: calc(15 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
    border: calc(3 / 390 * 100vw) solid #F5F5F5;
    font-size: calc(13 / 390 * 100vw);
  }
  .p--contact .inputtext--type01[type="text"]::placeholder,
  .p--contact .inputtext--type01[type="email"]::placeholder {
    font-size: calc(13 / 390 * 100vw);
  }
  .p--contact__buttonlist {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .p--contact__buttonlist > li {
    margin: 0 calc(10 / 390 * 100vw) calc(15 / 390 * 100vw);
  }
  .p--contact__button {
    border-radius: calc(6 / 390 * 100vw);
    width: calc(240 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    margin: 0 auto;
  }
  .p--contact .textarea--type01 {
    padding: calc(10 / 390 * 100vw);
    border-radius: calc(6 / 390 * 100vw);
    border: calc(3 / 390 * 100vw) solid #F5F5F5;
    font-size: calc(13 / 390 * 100vw);
    min-height: calc(160 / 390 * 100vw);
  }
  .p--contact select {
    padding: calc(15 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }
  .p--contact .select__container {
    position: relative;
    width: 100%;
    border-radius: calc(6 / 390 * 100vw);
    border: calc(3 / 390 * 100vw) solid #F5F5F5;
    font-size: calc(13 / 390 * 100vw);
  }
  .p--contact .select__container:after {
    right: calc(10 / 390 * 100vw);
    top: 1.75em;
    width: calc(7.5 / 390 * 100vw);
    height: calc(7.5 / 390 * 100vw);
    border-top: calc(2 / 390 * 100vw) solid #000;
    border-left: calc(2 / 390 * 100vw) solid #000;
    pointer-events: none;
    transform: translateY(-50%) rotate(-135deg);
  }
  .p--contact .c__w100 {
    width: 100%;
  }
  .p--contact .c__w50 {
    width: 50%;
  }
}

/**
 # 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 */
