@charset "UTF-8";
/* Scss Document */
/*====================================================================
  index
====================================================================

Part name///
  01 common
  02 top
  03 product
  04 about
  05 store
  06 company
*/
/*====================================================================
  01 General_style
====================================================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  color: #111;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  background: transparent;
  color: #333;
}

a:hover {
  color: #333;
  text-decoration: none;
}

a:visited {
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333333;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* form clear */
  /*   -webkit-appearance: none !important;*/
}

a:hover {
  opacity: 0.7;
}

/* --------------------
Common
-------------------- */
/*.container h1, .container h2, .container h3, .container p, .container a {
  color: #000;
  font-size: 12px;
  line-height: 1.5em;
}*/
.container .bold {
  font-weight: bold;
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*---------------------------------------------------------
  Common
*/
.fl_left {
  float: left;
}

.fl_right {
  float: right;
}

.pc_contents {
  display: block !important;
}

.sp_contents {
  display: none !important;
}

.pc_contents_common {
  display: block !important;
}

.sp_contents_common {
  display: none !important;
}

.pc_br {
  display: inline;
  font-size: 10px !important;
}

.sp_br {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .pc_contents_common {
    display: none !important;
  }
  .sp_contents_common {
    display: block !important;
  }
}

@media screen and (max-width: 769px) {
  .pc_contents {
    display: none !important;
  }
  .sp_contents {
    display: block !important;
  }
  .pc_br {
    display: none;
  }
  body .sp_br {
    display: inline !important;
    font-size: 10px !important;
  }
}

input:focus {
  outline: 0;
}

body {
  background: #fff;
}

.header {
  height: 80px;
  width: 100%;
  padding: 0 110px 0 100px;
  display: flex;
  top: 0;
  z-index: 6;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 0px;
  background: #fff;
  position: fixed;
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px 0;
    position: relative;
    z-index: 5;
    position: fixed;
  }
}

.header h1 img {
  width: 120px;
}

@media (max-width: 768px) {
  .header h1 img {
    width: 125px;
  }
}

.header ul {
  width: 354px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header ul {
    display: none;
  }
}

.header ul li {
  position: relative;
}

.header ul li a {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 60px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0;
}

.header ul li .archive {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.header ul li .archive a {
  display: block;
  margin: 0 0 16px;
  line-height: 12px;
}

.header ul li:hover > .archive {
  overflow: visible;
  opacity: 1;
  transition: all 0.5s;
}

.sp_menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 140px 60px 60px 60px;
  background: #f7f5f5;
  z-index: 1;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  transform: translate3d(100%, 0, 0);
  transition: all 0.5s;
}

.sp_menu.active {
  transform: translate3d(0, 0, 0);
  transition: all 0.5s;
}

.sp_menu dt.on a {
  margin: 0 0 0px;
}

.sp_menu dt.on a .arrow {
  transform: rotate(0deg);
}

.sp_menu dt a {
  margin: 0 0 10px;
  position: relative;
}

.sp_menu dt a .arrow {
  position: absolute;
  left: 130px;
  top: 15px;
  transform: rotate(180deg);
}

.sp_menu dd {
  margin: 0 0 0px;
  height: 0;
  overflow: hidden;
}

.sp_menu dd.on {
  margin: 0 0 10px;
  height: auto;
  transition: auto 0.5s;
}

.sp_menu dd a {
  color: #111111;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
}

.sp_menu a {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 0 10px 0;
  display: block;
}

.sp_menu .archive a {
  color: #111111;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
  display: block;
}

.contents {
  padding: 0px 0 0 0;
}

@media (max-width: 768px) {
  .contents {
    padding: 80px 0 0 0;
  }
}

.contents.top .top__main {
  width: 65.625%;
  min-width: 840px;
  margin: auto;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .contents.top .top__main {
    padding: 0 20px;
    width: 100%;
    display: block;
    min-width: 100%;
  }
}

.contents.top .top__main .l {
  width: 61.90476%;
  margin: 0 80px 0 0;
}

@media (max-width: 768px) {
  .contents.top .top__main .l {
    width: 100%;
    margin: 10px auto 20px;
  }
}

.contents.top .top__main .l img {
  width: 100%;
}

@media (max-width: 768px) {
  .contents.top .top__main .r {
    width: 100%;
  }
}

.contents.top .top__main .r .h1 {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.contents.top .top__main .r .p1 {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 24px 0;
}

.contents.top .top__main .r .dl_wrap dl {
  display: flex;
  margin: 0 0 11px;
}

.contents.top .top__main .r .dl_wrap dl:last-child {
  margin: 0 0 24px;
}

.contents.top .top__main .r .dl_wrap dt {
  width: 48px;
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
}

.contents.top .top__main .r .dl_wrap dd {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
}

.contents.top .top__main .r .h3 {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.contents.top .top__main .r .link1 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 16px 0;
  text-decoration: underline;
  display: block;
}

.contents.top .top__main .r .r__ul li {
  display: inline-block;
  margin: 0 16px 0 0;
}

.contents.top .top__main .r .r__ul a {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
  text-decoration: underline;
}

.footer {
  margin: 120px auto 0;
}

@media (max-width: 768px) {
  .footer {
    margin: 40px auto 0;
  }
}

.footer .copy {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 20px 0;
  text-align: center;
}

/*====================================================================
*    common all
/*==================================================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

p {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #bfbfbf;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* form clear */
  -webkit-appearance: none !important;
  min-height: 0;
  min-width: 0;
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*====================================================================
*    mixin
/*==================================================================*/
/*====================================================================
*    Responsive
/*==================================================================*/
.pc_contents {
  display: block !important;
}

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

.sp_contents {
  display: none !important;
}

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

.pc_ib {
  display: inline-block !important;
}

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

.sp_ib {
  display: none !important;
}

@media (max-width: 768px) {
  .sp_ib {
    display: inline-block !important;
  }
}

.pc_inline {
  display: inline !important;
}

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

.sp_inline {
  display: none !important;
}

@media (max-width: 768px) {
  .sp_inline {
    display: inline !important;
  }
}

.pc_flex {
  display: flex !important;
}

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

.sp_flex {
  display: none !important;
}

@media (max-width: 768px) {
  .sp_flex {
    display: flex !important;
  }
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*====================================================================
*    All
/*==================================================================*/
/*::selection {
    background: #e2d7c5;
}

//Firefox
::-moz-selection {
    background: #e2d7c5;
}*/
/* html {
  font-size: calc(100vw / 12.8);

  @include bp768 {
    font-size: calc(100vw / 3.75);
  }
} */
body {
  width: 100%;
  margin: 0 auto;
  font-family: noto-sans-cjk-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #292929;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 66px;
  }
}

body a {
  color: #292929;
  display: block;
  text-decoration: none;
  transition: 0.3s all;
}

body a:hover {
  opacity: 0.8;
}

body img, body svg {
  width: 100%;
  height: auto;
  display: block;
}

body.open {
  overflow: hidden;
}

/*====================================================================
*    HEADER
/*==================================================================*/
.newHead {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  transform: translateY(0);
  transition: transform 1.6s cubic-bezier(0.41, 0.01, 0, 1);
  display: flex;
  align-items: center;
  /* height: 100px; */
  /* MENU OPEN */
}

.newHead::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: #A766D6;
  z-index: 1000;
}

@media (max-width: 768px) {
  .newHead::after {
    height: 100vh;
    /* 変数をサポートしていないブラウザのフォールバック */
    height: calc(var(--vh, 1vh) * 100);
  }
}

.newHead.hide {
  transform: translateY(-100%);
}

.newHead .head_box .btn_menu {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  background: none;
  display: block;
  position: absolute;
  top: 28px;
  left: 16px;
  width: 22px;
  z-index: 999;
}

.newHead .head_box .btn_menu .line {
  width: 100%;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s cubic-bezier(0.24, 0.06, 0.45, 0.95);
  display: block;
}

.newHead .head_box .btn_menu .line.line02 {
  width: 17px;
  margin-top: 6px;
}

.newHead .head_box .btn_menu .line.line03 {
  width: 12px;
  margin-top: 6px;
}

.newHead h1 {
  width: 141.42px;
  z-index: 999;
  position: absolute;
  top: 27px;
  left: 54.8px;
}

@media (max-width: 768px) {
  .newHead h1 {
    left: 0;
    right: 0;
    margin: auto;
  }
}

.newHead .headerInner {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  /* 変数をサポートしていないブラウザのフォールバック */
  z-index: 998;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95), visibility 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .newHead .headerInner {
    height: 100vh;
    /* 変数をサポートしていないブラウザのフォールバック */
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
}

.newHead .headerInner_menu {
  width: 63.671875%;
  background-color: #A766D6;
  position: relative;
}

@media (max-width: 768px) {
  .newHead .headerInner_menu {
    width: 100%;
    height: 80.3%;
  }
}

.newHead .headerInner_menu .listMenu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 19.877%;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) 1s;
}

@media (max-width: 768px) {
  .newHead .headerInner_menu .listMenu {
    left: 10.667%;
  }
}

.newHead .headerInner_menu .listMenu li:nth-child(n + 2) {
  margin-top: 15px;
}

.newHead .headerInner_menu .listMenu li a {
  color: #fff;
  line-height: 1;
  /* font-size: .5rem; */
  font-size: 50px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  /* @include bp1281 {
              font-size: 50px;
            } */
}

@media (max-width: 768px) {
  .newHead .headerInner_menu .listMenu li a {
    /* font-size: .3rem; */
    font-size: 30px;
  }
}

.newHead .headerInner_menu .listMenu li a:hover {
  opacity: 1;
  color: #292929;
}

.newHead .headerInner_btn {
  width: calc(100% - 63.671875%);
  position: relative;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) 1s;
}

@media (max-width: 768px) {
  .newHead .headerInner_btn {
    width: 100%;
    height: calc(100% - 80.3%);
  }
}

.newHead .headerInner_btn--txt {
  display: table;
  position: relative;
  margin-right: 13.123%;
}

@media (max-width: 768px) {
  .newHead .headerInner_btn--txt {
    margin-right: 0;
  }
}

.newHead .headerInner_btn--txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 109px;
  height: 2px;
  background-color: #872CC9;
  left: calc(100% + 19.5px);
}

@media (max-width: 768px) {
  .newHead .headerInner_btn--txt::after {
    width: 52.4px;
    left: calc(100% + 13px);
  }
}

.newHead .headerInner_btn--txt p {
  line-height: 1;
  /* font-size: .5rem; */
  font-size: 50px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  /* @include bp1281 {
            font-size: 50px;
          } */
}

@media (max-width: 768px) {
  .newHead .headerInner_btn--txt p {
    /* font-size: .23rem; */
    font-size: 23px;
  }
}

.newHead .headerInner_btn--circle {
  transform: rotate(0);
  width: 41.47%;
  max-width: 158px;
  animation: rotateAnim 10s linear infinite;
  animation-play-state: running;
  z-index: 2;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .newHead .headerInner_btn--circle {
    width: 41.53%;
    max-width: 76px;
  }
}

.newHead .headerInner_btn a {
  width: 81.935%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .newHead .headerInner_btn a {
    width: 48.8%;
    justify-content: space-between;
  }
}

.newHead .headerInner_btn a:hover {
  opacity: 1;
}

.newHead .headerInner_btn a:hover .headerInner_btn--txt::after {
  animation: entryHeadAnim 0.3s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0s forwards;
}

@media (max-width: 768px) {
  .newHead .headerInner_btn a:hover .headerInner_btn--txt::after {
    animation: entryHeadAnimSp 0.3s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0s forwards;
  }
}

@keyframes entryHeadAnim {
  0% {
    width: 0;
  }
  100% {
    width: 109px;
  }
}

@keyframes entryHeadAnimSp {
  0% {
    width: 0;
  }
  100% {
    width: 52.4px;
  }
}

.newHead .headerInner_btn a:hover .headerInner_btn--circle {
  animation-play-state: paused;
}

.newHead.open::after {
  animation: headAnim 1.2s cubic-bezier(0.41, 0.01, 0, 1) 0s forwards;
}

@keyframes headAnim {
  0% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.newHead.open .head_box .btn_menu {
  top: 25px;
  left: 21px;
  width: 22px;
}

@media (max-width: 768px) {
  .newHead.open .head_box .btn_menu {
    top: 26px;
    left: 16px;
  }
}

.newHead.open .head_box .btn_menu .line {
  background-color: #872CC9;
}

@media (max-width: 768px) {
  .newHead.open .head_box .btn_menu .line {
    background-color: #fff;
  }
}

.newHead.open .head_box .btn_menu .line.line01 {
  transform: rotate(45deg) translate(5px, 10px);
}

.newHead.open .head_box .btn_menu .line.line02 {
  transform: translateX(100%);
  opacity: 0;
}

.newHead.open .head_box .btn_menu .line.line03 {
  width: 100%;
  margin-top: 0;
  transform: rotate(-45deg) translate(-3px, -1px);
}

@media (max-width: 768px) {
  .newHead.open .head_box .btn_menu .line.line03 {
    transform: rotate(-45deg) translate(-4px, 0px);
  }
}

.newHead.open .headerInner {
  visibility: visible;
  opacity: 1;
}

.newHead.open .headerInner_menu .listMenu {
  opacity: 1;
}

.newHead.open .headerInner_btn {
  opacity: 1;
}

/*====================================================================
*    COMMON
/*==================================================================*/
main {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* will-change: transform; */
}

main.open {
  overflow-y: hidden;
  overflow-x: hidden;
}

.entryArea {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 136px;
  z-index: 997;
}

@media (max-width: 768px) {
  .entryArea {
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #1E1E1E;
    height: 66px;
  }
}

.entryArea_circle {
  width: 100%;
  animation: rotateAnim 10s linear infinite;
  animation-play-state: running;
  z-index: 2;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .entryArea_circle {
    width: 50.42px;
    position: absolute;
    top: 8px;
    right: 18.773%;
  }
}

.entryArea_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .entryArea_txt {
    left: 18.933%;
    transform: translate(0, -50%);
    position: relative;
    display: table;
  }
}

.entryArea_txt p {
  color: #A766D6;
  line-height: 1;
  font-size: 24px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .entryArea_txt p {
    font-size: 20px;
  }
}

.entryArea_txt p span {
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: noto-sans-cjk-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #292929;
  display: block;
  margin: 5px 0 0;
}

@media (max-width: 768px) {
  .entryArea_txt p span {
    letter-spacing: 0.18em;
    color: #fff;
  }
}

@media (max-width: 768px) {
  .entryArea_txt::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50.24px;
    height: 1px;
    background-color: #fff;
    left: calc(100% + 11.5px);
  }
}

.entryArea a {
  width: 100%;
  height: 100%;
}

.entryArea a:hover {
  opacity: 1;
}

.entryArea a:hover .entryArea_circle {
  animation-play-state: paused;
}

/*====================================================================
*    TOP
/*==================================================================*/
#top {
  position: relative;
  overflow: hidden;
}

#top .heroArea {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 130px;
}

@media (max-width: 768px) {
  #top .heroArea {
    height: 100vh;
    /* 変数をサポートしていないブラウザのフォールバック */
    height: calc(var(--vh, 1vh) * 100);
    margin-bottom: 78px;
  }
}

#top .heroArea::before {
  content: "";
  width: 0;
  display: block;
  height: 100%;
  background-color: #000000;
  transition: width 0.3s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  #top .heroArea::before {
    height: 66.12%;
  }
}

#top .heroArea::after {
  content: "";
  width: 46%;
  display: block;
  height: 0;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.24, 0.06, 0.45, 0.95) 2s;
  /* animation: heightAnim 2s cubic-bezier(.24,.06,.45,.95) 1.5s; */
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  /* @keyframes heightAnim {
        0%{
          height: 0;
        }
        30%{
          height: 0;
        }
        50%{
          height: 100%;
        }
        70%{
          height: 100%;
        }
        90%{
          height: 0;
        }
        100%{
          height: 0;
        }
      } */
}

@media (max-width: 768px) {
  #top .heroArea::after {
    width: 0;
    height: calc(100% - 66.12%);
  }
}

#top .heroArea_wrap::after {
  content: "";
  width: 52.89%;
  display: block;
  height: 0;
  background-color: #000;
  transition: all 0.3s cubic-bezier(0.24, 0.06, 0.45, 0.95) 2s;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  #top .heroArea_wrap::after {
    width: 0;
    height: 66.12%;
    bottom: inherit;
    left: inherit;
    right: 0;
    top: 0;
  }
}

#top .heroArea_main {
  padding-top: 11.49vw;
  margin: 0 0 30px -19px;
  display: flex;
  align-items: center;
  width: 31.8%;
  position: relative;
}

@media (max-width: 768px) {
  #top .heroArea_main {
    padding-top: 18.067vw;
    margin: 0 0 15px -6px;
    width: 56%;
  }
}

#top .heroArea_sub {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0.4s;
  width: 20.86%;
  min-height: 48px;
  background-color: #fff;
  position: relative;
}

@media (max-width: 768px) {
  #top .heroArea_sub {
    width: 38.048%;
    min-height: 25.65px;
  }
}

#top .heroArea_sub--pic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 89.693%;
}

@media (max-width: 768px) {
  #top .heroArea_sub--pic {
    width: 86.627%;
  }
}

#top .heroArea_pic {
  position: absolute;
}

#top .heroArea_pic.pic01 {
  top: 12.6px;
  left: 32.96875%;
  width: 20.714%;
}

@media (max-width: 768px) {
  #top .heroArea_pic.pic01 {
    top: 7.467vw;
    left: inherit;
    right: 4.36%;
    width: 38.933%;
  }
}

#top .heroArea_pic.pic02 {
  top: 42.73vw;
  right: -4.6%;
  width: 49.375%;
  display: flex;
  align-items: center;
  opacity: 1;
  transition-delay: 2.5s;
}

@media (max-width: 768px) {
  #top .heroArea_pic.pic02 {
    top: 115.733vw;
    right: -6.933%;
    width: 74.667%;
  }
}

#top .heroArea_pic.pic03 {
  top: -16px;
  right: -19px;
  width: 40.563%;
  transition: transform 0.15s cubic-bezier(0.24, 0.06, 0.45, 0.95) 3.3s;
  transform: scale(0) translate3d(-50px, -50px, 600px);
  z-index: 3;
}

@media (max-width: 768px) {
  #top .heroArea_pic.pic03 {
    top: 75.36vw;
    right: inherit;
    left: 0;
    width: 95.624%;
  }
}

#top .heroArea .txtScale {
  transition: transform 0.2s cubic-bezier(0.24, 0.06, 0.45, 0.95);
  transform: scale(0) translate3d(-50px, -50px, 600px);
  /* transform-origin: 50% 50% 0px; */
}

#top .heroArea .txtScale.txt01 {
  width: 31.59%;
  margin-right: 5.16%;
  transition-delay: .2s;
}

#top .heroArea .txtScale.txt02 {
  width: 28.86%;
  margin-right: 8.84%;
  transition-delay: .3s;
}

#top .heroArea .txtScale.txt03 {
  width: 25.57%;
  transition-delay: .4s;
}

#top .heroArea .txtScale.txt04 {
  width: 100%;
  margin-left: 4.5%;
  transition-delay: .4s;
}

#top .heroArea .txtScale.txt05 {
  width: 71.905%;
  transition-delay: .5s;
  margin: -0.547vw auto 0;
}

#top .heroArea .txtScale.txt06 {
  width: 88.625%;
  transition-delay: .6s;
  margin: 0.945vw auto 0;
}

#top .heroArea .txtScale.txt07 {
  width: 22.525%;
  margin-right: 4.59%;
  transition-delay: .6s;
}

#top .heroArea .txtScale.txt08 {
  width: 20.03%;
  margin-right: 5.06%;
  transition-delay: .7s;
}

#top .heroArea .txtScale.txt09 {
  width: 17.675%;
  margin-right: 8.7%;
  transition-delay: .8s;
}

#top .heroArea .txtScale.txt10 {
  width: 13.975%;
  transition-delay: .9s;
}

#top .heroArea.on::before {
  width: 52.89%;
}

@media (max-width: 768px) {
  #top .heroArea.on::before {
    width: 100%;
  }
}

#top .heroArea.on::after {
  height: 100%;
}

@media (max-width: 768px) {
  #top .heroArea.on::after {
    height: calc(100% - 66.12%);
    width: 100%;
  }
}

#top .heroArea.on .heroArea_wrap::after {
  height: 100%;
}

@media (max-width: 768px) {
  #top .heroArea.on .heroArea_wrap::after {
    height: 66.12%;
    width: 100%;
  }
}

#top .heroArea.on .heroArea_left {
  animation: kvAnim01 0.15s cubic-bezier(0.24, 0.06, 0.45, 0.95) 3s forwards;
  position: relative;
  z-index: 1;
}

@keyframes kvAnim01 {
  0% {
    transform: scale(0) translate3d(-50px, -50px, 600px);
    z-index: 1;
  }
  1% {
    z-index: 3;
  }
  100% {
    transform: scale(1) translate3d(0px, 0px, 0px);
    z-index: 3;
  }
}

#top .heroArea.on .heroArea_sub {
  opacity: 1;
}

#top .heroArea.on .heroArea_pic.pic02 {
  opacity: 0;
}

#top .heroArea.on .heroArea_pic.pic03 {
  transform: scale(1) translate3d(0px, 0px, 0px);
}

#top .heroArea.on .txtScale {
  transform: scale(1) translate3d(0px, 0px, 0px);
}

#top h2 {
  font-family: Georgia,serif;
  font-size: 50px;
  letter-spacing: 0;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media (max-width: 768px) {
  #top h2 {
    font-size: 30px;
  }
}

#top .newsArea {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 236px;
}

@media (max-width: 768px) {
  #top .newsArea {
    display: block;
    width: 89.333%;
    margin: 0 auto 110px;
  }
}

@media (max-width: 768px) {
  #top .newsArea h2 {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
}

#top .newsArea_cts {
  width: calc(100% - 215px);
  margin-top: 11px;
}

@media (max-width: 768px) {
  #top .newsArea_cts {
    width: 100%;
    margin-top: 40px;
  }
}

#top .newsArea_cts dl {
  display: flex;
}

@media (max-width: 768px) {
  #top .newsArea_cts dl {
    display: block;
  }
}

#top .newsArea_cts dl dt {
  width: 120px;
  background-color: #0A0A0A;
  margin-right: 20px;
  height: 26px;
}

@media (max-width: 768px) {
  #top .newsArea_cts dl dt {
    width: 100px;
    margin-right: 0;
    height: 20px;
  }
}

#top .newsArea_cts dl dt p {
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  line-height: 26px;
}

@media (max-width: 768px) {
  #top .newsArea_cts dl dt p {
    font-size: 12px;
    line-height: 20px;
  }
}

#top .newsArea_cts dl dd {
  width: calc(100% - 150px);
  margin-top: 2px;
}

@media (max-width: 768px) {
  #top .newsArea_cts dl dd {
    width: 100%;
    margin-top: 10px;
  }
}

#top .newsArea_cts dl dd p {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.625;
}

@media (max-width: 768px) {
  #top .newsArea_cts dl dd p {
    letter-spacing: 0;
  }
}

#top .newsArea_cts dl dd a {
  display: inline;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.625;
  text-decoration: underline;
}

@media (max-width: 768px) {
  #top .newsArea_cts dl dd a {
    letter-spacing: 0;
  }
}

#top .newsArea_cts dl:nth-child(n + 2) {
  margin-top: 25px;
}

@media (max-width: 768px) {
  #top .newsArea_cts dl:nth-child(n + 2) {
    margin-top: 20px;
  }
}

#top .newsArea_cts--btn {
  margin: 22px 70px 0 0;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  #top .newsArea_cts--btn {
    margin: 40px 0 0 0;
    justify-content: center;
  }
}

#top .philosophyArea {
  width: 100%;
  position: relative;
  padding: 10.16vw 0 18.67vw;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  #top .philosophyArea {
    padding: 33.227vw 0 0;
    margin-bottom: 170px;
  }
}

#top .philosophyArea::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../../images/top/bg_philosophy.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 53.59%;
  height: 100%;
}

@media (max-width: 768px) {
  #top .philosophyArea::before {
    background-image: url(../../images/top/bg_philosophy_sp.png);
    width: 66.667%;
    height: 77.68vw;
    bottom: inherit;
    top: 0;
  }
}

#top .philosophyArea::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: width 0.8s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0.4s;
  z-index: 3;
}

#top .philosophyArea h2 {
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 6.25%;
}

@media (max-width: 768px) {
  #top .philosophyArea h2 {
    bottom: inherit;
    top: 12px;
    left: 10px;
  }
}

#top .philosophyArea_cts--list {
  overflow: hidden;
  display: table;
}

#top .philosophyArea_cts--list .philosophyWrap {
  transform: translate3d(0px, 200%, 0px) rotate(10deg);
  transition: transform 0.8s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0.4s;
}

#top .philosophyArea_cts--list p {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.667;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #top .philosophyArea_cts--list p {
    font-size: 14px;
    line-height: 1.643;
    margin-top: 10px;
  }
}

#top .philosophyArea_cts--list:nth-child(1) {
  margin: 0 0 7.8125vw 18.28%;
}

@media (max-width: 768px) {
  #top .philosophyArea_cts--list:nth-child(1) {
    margin: 0 20px 9.333vw auto;
    width: 50.4%;
  }
}

#top .philosophyArea_cts--list:nth-child(1) .philosophyTtl {
  width: 163.3px;
}

@media (max-width: 768px) {
  #top .philosophyArea_cts--list:nth-child(1) .philosophyTtl {
    width: 90.72px;
  }
}

#top .philosophyArea_cts--list:nth-child(2) {
  margin: 0 0 7.8125vw 30.625%;
}

@media (max-width: 768px) {
  #top .philosophyArea_cts--list:nth-child(2) {
    margin: 0 20px 9.333vw auto;
    width: 71.467%;
  }
}

#top .philosophyArea_cts--list:nth-child(2) .philosophyTtl {
  width: 141.37px;
}

@media (max-width: 768px) {
  #top .philosophyArea_cts--list:nth-child(2) .philosophyTtl {
    width: 72.54px;
  }
}

#top .philosophyArea_cts--list:nth-child(3) {
  margin: 0 0 0 45.08%;
}

@media (max-width: 768px) {
  #top .philosophyArea_cts--list:nth-child(3) {
    margin: 0 auto;
    width: 89.33%;
  }
}

#top .philosophyArea_cts--list:nth-child(3) .philosophyTtl {
  width: 181.72px;
}

@media (max-width: 768px) {
  #top .philosophyArea_cts--list:nth-child(3) .philosophyTtl {
    width: 91.64px;
  }
}

#top .philosophyArea_cts--list.on .philosophyWrap {
  transform: translate3d(0px, 0px, 0px) rotate(0deg);
}

#top .philosophyArea.on::after {
  width: 0;
}

#top .valueArea {
  position: relative;
  width: 100%;
  max-width: 1034px;
  margin: 0 auto 190px;
}

@media (max-width: 768px) {
  #top .valueArea {
    width: 89.33%;
    margin: 0 auto 90px;
  }
}

#top .valueArea h2 {
  width: 235.28px;
  margin: 0 0 4.297vw auto;
  -webkit-writing-mode: inherit;
  -ms-writing-mode: inherit;
  writing-mode: inherit;
}

@media (max-width: 768px) {
  #top .valueArea h2 {
    width: 123.16px;
    margin: 0 0 153.44vw auto;
  }
}

#top .valueArea_cts--list {
  transform: scale(0);
  opacity: 0;
}

#top .valueArea_cts--list p {
  margin-top: 21px;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.778;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list p {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.643;
  }
}

#top .valueArea_cts--list.list01 {
  position: absolute;
  top: 11.5625vw;
  left: 0;
  width: 58.07%;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list01 {
    top: 30.4vw;
    width: 64.26%;
  }
}

#top .valueArea_cts--list.list01 h3 {
  width: 349px;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list01 h3 {
    width: 157px;
  }
}

#top .valueArea_cts--list.list02 {
  position: absolute;
  top: 27.484vw;
  left: 0;
  display: flex;
  flex-direction: row-reverse;
  transform: scale(0) translateX(-87.5%);
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list02 {
    top: 92.533vw;
    left: 7.463%;
    transform: scale(0) translateX(-72.5%);
  }
}

#top .valueArea_cts--list.list02 h3 {
  width: 25px;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list02 h3 {
    width: 18px;
  }
}

#top .valueArea_cts--list.list02 p {
  transform: rotate(90deg) translate(19.5%, -46%);
  width: 37.814%;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list02 p {
    transform: rotate(90deg) translate(18.5%, -40%);
    width: 91.045%;
  }
}

#top .valueArea_cts--list.list03 {
  width: 32.98%;
  margin: 0 auto 14.6875vw;
  transform: scale(0) translateX(-40px);
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list03 {
    width: 100%;
    margin: 0 auto 47.173vw;
    transform: scale(0) translateX(0);
  }
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list03 h3 {
    width: 260px;
  }
}

#top .valueArea_cts--list.list04 {
  position: absolute;
  top: 49.14vw;
  right: 6.286%;
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list04 {
    top: 122.836vw;
    right: 2.985%;
  }
}

#top .valueArea_cts--list.list04 h3 {
  width: 25px;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list04 h3 {
    width: 18px;
  }
}

#top .valueArea_cts--list.list04 p {
  transform: rotate(90deg) translate(16.5%, -33%);
  width: 51.16%;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list04 p {
    transform: rotate(90deg) translate(7%, -12%);
    width: 89.552%;
  }
}

#top .valueArea_cts--list.list05 {
  width: 66.73%;
  margin: 0 0 12.5vw;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list05 {
    position: absolute;
    width: auto;
    margin: 0;
    top: 280.267vw;
    left: 0;
    display: flex;
    flex-direction: row-reverse;
    transform: scale(0) translateX(-72.5%);
  }
}

#top .valueArea_cts--list.list05 h3 {
  width: 244.24px;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list05 h3 {
    width: 18px;
  }
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list05 p {
    transform: rotate(90deg) translate(22%, -50%);
    width: 100%;
    white-space: nowrap;
  }
}

#top .valueArea_cts--list.list06 {
  width: 32.88%;
  margin: 0 0 12.5vw 20.986%;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list06 {
    width: 63.747%;
    margin: 0;
  }
}

#top .valueArea_cts--list.list06 h3 {
  width: 333.72px;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list06 h3 {
    width: 100%;
  }
}

#top .valueArea_cts--list.list07 {
  width: 45.764%;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list07 {
    width: 56.516%;
    margin: 0 0 46.347vw auto;
  }
}

#top .valueArea_cts--list.list07 h3 {
  width: 245px;
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.list07 h3 {
    width: 180px;
  }
}

#top .valueArea_cts--list.on {
  animation: icnAnim 0.5s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
}

@keyframes icnAnim {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#top .valueArea_cts--list.on.list02 {
  animation: icnAnimList02 0.5s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
}

@keyframes icnAnimList02 {
  0% {
    opacity: 0;
    transform: scale(0) translateX(-87.5%);
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: scale(1.1) translateX(-87.5%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(-87.5%);
  }
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.on.list02 {
    animation: icnAnimList02Sp 0.5s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
  }
  @keyframes icnAnimList02Sp {
    0% {
      opacity: 0;
      transform: scale(0) translateX(-72.5%);
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
      transform: scale(1.1) translateX(-72.5%);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateX(-72.5%);
    }
  }
}

#top .valueArea_cts--list.on.list03 {
  animation: icnAnimList03 0.5s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
}

@keyframes icnAnimList03 {
  0% {
    opacity: 0;
    transform: scale(0) translateX(-40px);
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: scale(1.1) translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(-40px);
  }
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.on.list03 {
    animation: icnAnimList03Sp 0.5s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
  }
  @keyframes icnAnimList03Sp {
    0% {
      opacity: 0;
      transform: scale(0) translateX(0);
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
      transform: scale(1.1) translateX(0);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateX(0);
    }
  }
}

@media (max-width: 768px) {
  #top .valueArea_cts--list.on.list05 {
    animation: icnAnimList05Sp 0.5s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
  }
  @keyframes icnAnimList05Sp {
    0% {
      opacity: 0;
      transform: scale(0) translateX(-72.5%);
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
      transform: scale(1.1) translateX(-72.5%);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateX(-72.5%);
    }
  }
}

#top .messageArea {
  width: 100%;
  position: relative;
  margin-bottom: 200px;
}

@media (max-width: 768px) {
  #top .messageArea {
    margin-bottom: 190px;
  }
}

#top .messageArea h2 {
  margin: 0 0 0 6.25%;
  position: relative;
  z-index: 4;
}

@media (max-width: 768px) {
  #top .messageArea h2 {
    margin: 0 0 0 4%;
  }
}

#top .messageArea_pic {
  width: 78.125%;
  position: relative;
  margin-top: -19.84375vw;
}

@media (max-width: 768px) {
  #top .messageArea_pic {
    width: 100%;
    margin-top: -17.067vw;
  }
}

#top .messageArea_pic::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #A766D6;
  z-index: 3;
}

#top .messageArea_pic .picWrap {
  opacity: 0;
  transition-delay: .8s;
}

#top .messageArea_pic.on::after {
  animation: picAnim 1s cubic-bezier(0.41, 0.01, 0, 1) 0.4s forwards;
}

@keyframes picAnim {
  0% {
    width: 0;
    left: 0;
    right: inherit;
  }
  30% {
    width: 100%;
    left: 0;
    right: inherit;
  }
  70% {
    width: 100%;
  }
  100% {
    width: 0;
    right: 0;
    left: inherit;
  }
}

#top .messageArea_pic.on .picWrap {
  opacity: 1;
}

#top .messageArea_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10.3%;
  z-index: 2;
  width: 432.72px;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s linear 1.4s;
}

@media (max-width: 768px) {
  #top .messageArea_txt {
    /* top: 65.867vw; */
    right: 20px;
    width: 136.95px;
    transition: opacity .4s linear 1.4s;
  }
}

#top .messageArea_txt.on {
  opacity: 1;
}

@media (max-width: 768px) {
  #top .messageArea_bottom {
    width: 89.33%;
    margin: 0 auto;
  }
}

#top .messageArea_lead {
  width: 100%;
  max-width: 999.52px;
  margin: 145px auto 110px;
}

@media (max-width: 768px) {
  #top .messageArea_lead {
    width: 89.242%;
    margin: 40px 0 30px;
  }
}

#top .messageArea_cts {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

#top .messageArea_cts p {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 2.25;
}

@media (max-width: 768px) {
  #top .messageArea_cts p {
    font-size: 16px;
    line-height: 1.75;
  }
}

#top .messageArea_cts p .name {
  text-align: right;
  display: block;
  margin-top: 50px;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
}

@media (max-width: 768px) {
  #top .messageArea_cts p .name {
    margin-top: 40px;
    font-size: 16px;
  }
}

#top .interviewArea {
  width: 100%;
  margin-bottom: 220px;
}

@media (max-width: 768px) {
  #top .interviewArea {
    margin-bottom: 140px;
  }
}

#top .interviewArea h2 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 50px;
  text-align: right;
  -webkit-writing-mode: inherit;
  -ms-writing-mode: inherit;
  writing-mode: inherit;
}

@media (max-width: 768px) {
  #top .interviewArea h2 {
    width: 89.33%;
    margin: 0 auto 40px;
  }
}

#top .interviewArea_box {
  display: flex;
  flex-wrap: wrap;
}

#top .interviewArea_box--list {
  width: calc(100% / 3);
}

@media (max-width: 768px) {
  #top .interviewArea_box--list {
    width: 50%;
  }
}

#top .interviewArea_box--list a {
  overflow: hidden;
  position: relative;
}

#top .interviewArea_box--list a img {
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.24, 0.06, 0.45, 0.95);
}

#top .interviewArea_box--list a .moreBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 117.76px;
  height: 48.36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #292929;
  z-index: 2;
}

@media (max-width: 768px) {
  #top .interviewArea_box--list a .moreBtn {
    width: 50px;
    height: 25px;
  }
}

#top .interviewArea_box--list a .moreBtn p {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  margin-right: 10px;
  color: #A766D6;
}

@media (max-width: 768px) {
  #top .interviewArea_box--list a .moreBtn p {
    font-size: 10px;
    letter-spacing: 0.04em;
    margin-right: 3px;
    transform: scale(0.8);
  }
}

#top .interviewArea_box--list a .moreBtn div {
  width: 8px;
  transition: transform 0.5s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0s;
}

@media (max-width: 768px) {
  #top .interviewArea_box--list a .moreBtn div {
    width: 3.38px;
  }
}

#top .interviewArea_box--list a:hover {
  opacity: 1;
}

#top .interviewArea_box--list a:hover img {
  transform: scale(1.05);
}

#top .interviewArea_box--list a:hover .moreBtn div {
  transform: translateX(5px);
}

#top .interviewArea_box--list.cs {
  position: relative;
}

#top .interviewArea_box--list.cs .csMain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#top .interviewArea_box--list.cs .csMain .cs {
  width: 184px;
  height: 27px;
  background-color: #A766D6;
  margin-bottom: 15px;
  color: #1E1E1E;
  text-align: center;
  line-height: 27px;
  font-size: 14px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  #top .interviewArea_box--list.cs .csMain .cs {
    width: 100px;
    height: 20px;
    margin-bottom: 10px;
    line-height: 20px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

#top .interviewArea_box--list.cs .csMain .txt {
  color: #fff;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #top .interviewArea_box--list.cs .csMain .txt {
    line-height: 1.333;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
}

#top .hrArea {
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 180px;
}

@media (max-width: 768px) {
  #top .hrArea {
    display: block;
    width: 89.33%;
    margin: 0 auto 140px;
    position: relative;
  }
}

@media (max-width: 768px) {
  #top .hrArea h2 {
    position: absolute;
    top: 0;
    left: 0;
  }
}

#top .hrArea_cts {
  width: calc(100% - 9.464%);
  margin-left: 9.464%;
  max-width: 800px;
}

@media (max-width: 768px) {
  #top .hrArea_cts {
    width: 100%;
    margin-left: 0;
  }
}

#top .hrArea_cts--ttl {
  width: 380.12px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #top .hrArea_cts--ttl {
    width: 151.45px;
    margin: 0 0 40px 56px;
  }
}

#top .hrArea_cts--txt {
  font-size: 18px;
  line-height: 1.778;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  #top .hrArea_cts--txt {
    font-size: 14px;
    line-height: 1.714;
    margin-bottom: 20px;
  }
}

#top .hrArea_cts--box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#top .hrArea_cts--box p {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-right: 26px;
}

@media (max-width: 768px) {
  #top .hrArea_cts--box p {
    font-size: 16px;
    margin-right: 20px;
  }
}

#top .hrArea_cts--box .hrPic {
  width: 160px;
}

@media (max-width: 768px) {
  #top .hrArea_cts--box .hrPic {
    width: 123px;
  }
}

#top .entryBtnArea {
  width: 100%;
  max-width: 866px;
  margin: 0 auto 240px;
  height: 210px;
  background-color: #1E1E1E;
  position: relative;
}

@media (max-width: 768px) {
  #top .entryBtnArea {
    width: 92%;
    height: 92px;
  }
}

#top .entryBtnArea_txt {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 20.09%;
  transition: transform 0.2s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0s;
  display: table;
}

@media (max-width: 768px) {
  #top .entryBtnArea_txt {
    left: 11.884%;
  }
}

#top .entryBtnArea_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 217.99px;
  height: 1px;
  background-color: #fff;
  left: calc(100% + 16.6px);
}

@media (max-width: 768px) {
  #top .entryBtnArea_txt::after {
    width: 80px;
    height: 1px;
  }
}

#top .entryBtnArea_txt p {
  color: #A766D6;
  line-height: 1;
  font-size: 55px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}

@media (max-width: 768px) {
  #top .entryBtnArea_txt p {
    font-size: 32px;
  }
}

#top .entryBtnArea_txt p span {
  line-height: 1;
  font-size: 23px;
  letter-spacing: 0.18em;
  font-weight: 500;
  font-family: noto-sans-cjk-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #fff;
  display: block;
  margin: 10px 0 0 4px;
}

@media (max-width: 768px) {
  #top .entryBtnArea_txt p span {
    font-size: 12px;
    letter-spacing: 0.22em;
    margin: 5px 0 0 2px;
  }
}

#top .entryBtnArea_circle {
  position: absolute;
  top: 30px;
  transform: rotate(0);
  right: 18.82%;
  width: 151.73px;
  animation: rotateAnim 10s linear infinite;
  animation-play-state: running;
  z-index: 2;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  #top .entryBtnArea_circle {
    top: 9px;
    right: 11.884%;
    width: 74.04px;
  }
}

#top .entryBtnArea a {
  width: 100%;
  height: 100%;
}

#top .entryBtnArea a:hover {
  opacity: 1;
}

#top .entryBtnArea a:hover .entryBtnArea_txt {
  transform: translate(10px, -50%);
}

#top .entryBtnArea a:hover .entryBtnArea_txt::after {
  animation: entryAnim 0.5s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0.2s forwards;
}

@keyframes entryAnim {
  0% {
    width: 0;
  }
  100% {
    width: 217.99px;
  }
}

@media (max-width: 768px) {
  #top .entryBtnArea a:hover .entryBtnArea_txt::after {
    animation: entryAnimSp 0.5s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0.2s forwards;
  }
  @keyframes entryAnimSp {
    0% {
      width: 0;
    }
    100% {
      width: 80px;
    }
  }
}

#top .entryBtnArea a:hover .entryBtnArea_circle {
  animation-play-state: paused;
}

.fwBold {
  font-weight: 700;
}

.viewAllBtn {
  display: flex;
  align-items: center;
}

.viewAllBtn p {
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  margin-right: 10px;
}

.viewAllBtn div {
  width: 9px;
  transition: transform 0.5s cubic-bezier(0.24, 0.06, 0.45, 0.95) 0s;
}

.viewAllBtn:hover div {
  transform: translateX(5px);
}

.fade {
  opacity: 0;
  transition: transform .4s ease .2s, opacity .4s linear .2s;
  transform: translate3d(0, 20px, 0);
}

@media (max-width: 768px) {
  .fade {
    transition: transform .4s ease .4s, opacity .4s linear .4s;
  }
}

.fade.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.interview h2,
.interview h3,
.interview h4,
.interview h5,
.interview h6,
.interview p,
.interview span,
.interview dd,
.interview dl,
.interview dt,
.interview strong,
.interview a {
  font-family: "Noto Sans JP", sans-serif;
  color: #0a0a0a;
}

.interview img {
  width: 100%;
  vertical-align: top;
}

.interview__mainArea {
  margin: 160px auto 100px;
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  .interview__mainArea {
    margin: 30px auto 50px;
  }
}

.interview__pagetitle {
  width: 50px;
  position: absolute;
  top: -10%;
  left: 8%;
}

@media (max-width: 768px) {
  .interview__pagetitle {
    position: static;
    margin-bottom: 31px;
    width: 23px;
  }
}

.interview__answerPeson {
  position: absolute;
  top: 40%;
  right: 0%;
  transform: translate(-50%, -50%);
  text-align: left;
}

@media (max-width: 768px) {
  .interview__answerPeson {
    transform: translate(-10%, -50%);
  }
}

.interview__answerPeson--belongs {
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .interview__answerPeson--belongs {
    font-size: 14px;
    margin-bottom: 19px;
  }
}

.interview__answerPeson--name {
  font-size: 30px;
  letter-spacing: 0.19em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .interview__answerPeson--name {
    font-size: 28px;
    writing-mode: vertical-rl;
    margin: 0 0 0 auto;
  }
}

.interview .contents-wrap {
  position: relative;
}

.interview .contents-wrap .entryPC {
  position: fixed;
  right: 40px;
  bottom: 40px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
}

@media (max-width: 768px) {
  .interview .contents-wrap .entryPC {
    display: none;
  }
}

.interview .contents-wrap .entryPC .entry1 {
  width: 136px;
  margin: 0 auto 18.1px;
  position: relative;
}

.interview .contents-wrap .entryPC .entry1 img {
  width: 100%;
  animation: rotateAnim 10s linear infinite;
}

.interview .contents-wrap .entryPC .entry1__inner {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.interview .contents-wrap .entryPC .entry1__inner strong {
  color: #E0E0E0;
  line-height: 1;
  font-size: 24px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.interview .contents-wrap .entryPC .entry1__inner p {
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #292929;
  display: block;
  margin: 5px 0 0;
  text-align: center;
}

.interview .contents-wrap .entryPC .message1 {
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.66;
  color: #1e1e1e;
  position: relative;
  margin: 0 auto;
  width: 96px;
}

.interview .contents-wrap .entryPC .message1 .arrow {
  position: relative;
}

.interview .contents-wrap .entryPC .message1 .arrow::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 6px;
  height: 15px;
  background: url("../../images/interview/arrow04.png") no-repeat;
  background-size: 100%;
  top: 5px;
  right: -16px;
}

.interview__contentArea {
  width: 700px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .interview__contentArea {
    width: 89.3%;
  }
}

.interview__contentArea--profile {
  width: 100%;
  display: flex;
  margin: 0 auto 100px;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 768px) {
  .interview__contentArea--profile {
    width: 89.5%;
    margin: 0 auto 79px;
    display: block;
  }
}

.interview__contentArea--profile .profileImg {
  width: 22px;
  margin-right: 68px;
}

@media (max-width: 768px) {
  .interview__contentArea--profile .profileImg {
    display: none;
  }
}

.interview__contentArea--profile .profileExplain {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.71;
  width: 610px;
}

@media (max-width: 768px) {
  .interview__contentArea--profile .profileExplain {
    font-size: 12px;
    width: 100%;
  }
}

.interview__contentArea--box {
  margin: 0 auto 100px;
  text-align: left;
}

.interview__contentArea--box .interviewer {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.87;
  font-weight: bold;
  margin: 0 auto 30px;
}

.interview__contentArea--box .interviewer span {
  color: #E0E0E0;
}

@media (max-width: 768px) {
  .interview__contentArea--box .interviewer {
    font-size: 15px;
  }
}

.interview__contentArea--box .WhoAnswers {
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (max-width: 768px) {
  .interview__contentArea--box .WhoAnswers {
    font-size: 14px;
  }
}

.interview__picArea {
  width: 950px;
  margin: 0 auto 150px;
}

@media (max-width: 768px) {
  .interview__picArea {
    width: 100%;
    margin: 0 auto;
  }
}

.interview__schedule {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.interview__EntryArea {
  margin: 100px auto 407px;
}

@media (max-width: 768px) {
  .interview__EntryArea {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
  }
}

.interview__EntryArea--box {
  width: 866px;
  margin: 0 auto;
  background: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 142px;
}

@media (max-width: 768px) {
  .interview__EntryArea--box {
    width: 66vw;
    margin: auto 0 0 0;
    padding: 0;
    height: 80px;
    padding: 0 15%;
  }
}

.interview__EntryArea--box .message {
  position: relative;
}

.interview__EntryArea--box .message p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 23px;
  letter-spacing: 0.18em;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .interview__EntryArea--box .message p {
    font-size: 12px;
  }
}

.interview__EntryArea--box .message strong {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 55px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #E0E0E0;
}

@media (max-width: 768px) {
  .interview__EntryArea--box .message strong {
    font-size: 20px;
  }
}

.interview__EntryArea--box .message::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 168%;
  height: 1px;
  background: #ffffff;
  top: 55%;
  left: 189%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .interview__EntryArea--box .message::before {
    width: 51.54px;
    left: 166%;
    opacity: 0.6;
  }
}

@media (max-width: 340px) {
  .interview__EntryArea--box .message::before {
    left: 150%;
  }
}

.interview__EntryArea--box .logo {
  width: 151.73px;
  animation: rotateAnim 10s linear infinite;
}

@media (max-width: 768px) {
  .interview__EntryArea--box .logo {
    width: 55px;
  }
}

.interview__EntryArea--recruitJobList {
  font-size: 23px;
  letter-spacing: 0.18em;
  line-height: 2;
  text-align: center;
  position: relative;
  width: 287px;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .interview__EntryArea--recruitJobList {
    width: 34vw;
    font-size: calc(12 * (100vw / 375));
    text-align: left;
    background: #ffffff;
    border: solid 0.5px #1e1e1e;
    height: 80px;
    margin: 0 0 0 auto;
    padding: 13% 13%;
    line-height: 21px;
  }
}

@media (max-width: 340px) {
  .interview__EntryArea--recruitJobList {
    padding: 10%;
  }
}

.interview__EntryArea--recruitJobList u {
  text-decoration: none;
}

@media (max-width: 768px) {
  .interview__EntryArea--recruitJobList u {
    display: block;
    text-decoration: underline;
  }
}

.interview__EntryArea--recruitJobList::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 11px;
  height: 15px;
  background: url("../../images/interview/arrow04.png") no-repeat;
  background-size: 100%;
  top: 18px;
  right: -8px;
}

@media (max-width: 768px) {
  .interview__EntryArea--recruitJobList::before {
    top: 25px;
    right: 6%;
  }
}

p.interview__answerPeson--name {
  font-family: Noto Serif JP Medium;
}

.l-footer a {
  color: #fff !important;
}

header.newHead + section {
  display: none !important;
}

#top .interviewArea h2 {
  text-align: left;
  margin: 0 0 50px;
}
