@charset "UTF-8";
/* webfont */
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("//fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
@import url("//cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/css/yakuhanjp.min.css");
/* local */
/* use
-----------------------------------------------------------------*/
/*==========================================================================

   mixin

===========================================================================*/
/*==========================================================================

   keyframes

===========================================================================*/
/* Scroll indicator bounce for MV */
@-webkit-keyframes mv_scrollview_anim {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    opacity: 1;
  }
}
@keyframes mv_scrollview_anim {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    opacity: 1;
  }
}
@-webkit-keyframes btnHoverIcon {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translate(1.25rem, -1.25rem);
            transform: translate(1.25rem, -1.25rem);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(1.25rem);
            transform: translate(1.25rem);
    opacity: 0;
  }
  51% {
    -webkit-transform: translate(-1.25rem, 1.25rem);
            transform: translate(-1.25rem, 1.25rem);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
@keyframes btnHoverIcon {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translate(1.25rem, -1.25rem);
            transform: translate(1.25rem, -1.25rem);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(1.25rem);
            transform: translate(1.25rem);
    opacity: 0;
  }
  51% {
    -webkit-transform: translate(-1.25rem, 1.25rem);
            transform: translate(-1.25rem, 1.25rem);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html {
  position: relative;
  min-height: 100%;
}
@media only screen and (max-width: 767px) {
  html {
    width: 100%;
    height: 100%;
  }
}
html.is-modalopen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*--------------------------------------------------------------------------
   head
---------------------------------------------------------------------------*/
head {
  font-family: "pc";
}
@media only screen and (max-width: 767px) {
  head {
    font-family: "sp";
  }
}

/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/
body {
  color: #fff;
  font-family: "YakuHanJP", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  background-color: #0C1927;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 320px;
    height: auto;
    font-size: 15px;
    line-height: 1.8;
  }
}

.os-mac body {
  font-weight: 500;
}

/*--------------------------------------------------------------------------
   a
---------------------------------------------------------------------------*/
a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:link, a:visited {
  text-decoration: none;
}

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
* {
  word-wrap: break-word;
  outline: none;
}

img {
  vertical-align: top;
}

ul, ol {
  list-style: none;
}

/* Placeholder
-----------------------------------------------*/
::-webkit-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

::-moz-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

:-ms-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

:-moz-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

/*--------------------------------------------------------------------------
   selection
---------------------------------------------------------------------------*/
::-moz-selection {
  background-color: #b3d4fc;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #fff;
  text-shadow: none;
}

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
}

/* Remove the stupid outer glow in Webkit */
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   all_page
---------------------------------------------------------------------------*/
.all_page_wrapper {
  opacity: 0;
  padding-right: 92px;
}

.is-loading .all_page_wrapper {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.all_page {
  background-color: #0C1927;
}
.load-complete .all_page_wrapper {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 1;
  overflow: visible;
}

.load-complete .all_page {
  overflow: visible;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .all_page_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-right: 0;
  }
  .is-loading .all_page_wrapper {
    position: static;
  }
  .all_page {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .is-loading .all_page {
    overflow-y: hidden;
  }
  .load-complete .all_page {
    overflow: hidden;
  }
}
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   all_wrap
---------------------------------------------------------------------------*/
.all_wrap {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 clamp(60px, 7.5vw, 120px);
}
@media only screen and (max-width: 1023px) {
  .all_wrap {
    max-width: none;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .all_wrap {
    max-width: none;
    padding: 0 20px;
  }
}

.all_wrap_s {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .all_wrap_s {
    max-width: none;
    padding: 0 20px;
  }
}

/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  *zoom: 1;
}
.l-grid:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid__item {
  display: block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  float: left;
}

.l-grid__item--1of2 {
  width: 50%;
}
.l-grid__item--1of3 {
  width: 33.33333333%;
}
.l-grid__item--1of4 {
  width: 25%;
}
.l-grid__item--1of5 {
  width: 20%;
}
.l-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-inline-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
}
.l-inline-grid__item {
  display: inline-block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-inline-grid__item--1of2 {
  width: 50%;
}
.l-inline-grid__item--1of3 {
  width: 33.33333333%;
}
.l-inline-grid__item--1of4 {
  width: 25%;
}
.l-inline-grid__item--1of5 {
  width: 20%;
}
.l-inline-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-flex-grid
---------------------------------------------------------------------------*/
.l-flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-flex-grid__item {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-flex-grid__item--full {
  width: 100%;
}
.l-flex-grid__item--1of2 {
  width: 50%;
}
.l-flex-grid__item--1of3 {
  width: 33.33333333%;
}
.l-flex-grid__item--1of4 {
  width: 25%;
}
.l-flex-grid__item--1of5 {
  width: 20%;
}
.l-flex-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   all_c_btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_c_btn a,
.all_c_btn button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: auto;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .all_c_btn a,
  .all_c_btn button {
    font-size: 16px;
  }
}
.all_c_btn a span,
.all_c_btn button span {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.all_c_btn a span._en,
.all_c_btn button span._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .all_c_btn a span._en,
  .all_c_btn button span._en {
    font-size: 18px;
  }
}
.all_c_btn a span::before,
.all_c_btn button span::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  z-index: 1;
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  scale: 0 1;
}
.all_c_btn a i,
.all_c_btn button i {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #2DC0FF;
}
@media only screen and (max-width: 767px) {
  .all_c_btn a i,
  .all_c_btn button i {
    width: 24px;
    height: 24px;
  }
}
.all_c_btn a i svg,
.all_c_btn button i svg {
  position: relative;
  width: 13px;
  height: 13px;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_c_btn a i svg,
  .all_c_btn button i svg {
    width: 12px;
    height: 12px;
  }
}
.all_c_btn a i svg path,
.all_c_btn button i svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.all_c_btn a i::before,
.all_c_btn button i::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 0%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.mode-pc .all_c_btn a:hover span::before {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  scale: 1 1;
}
.mode-pc .all_c_btn a:hover i {
  overflow: hidden;
}
.mode-pc .all_c_btn a:hover i svg {
  -webkit-animation: btnHoverIcon 0.7s ease forwards;
          animation: btnHoverIcon 0.7s ease forwards;
}
.mode-pc .all_c_btn a:hover i svg path {
  stroke: #2DC0FF;
}
.mode-pc .all_c_btn a:hover i::before {
  width: 100%;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

/*--------------------------------------------------------------------------
   all_c_title
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_c_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 5px;
}
.all_c_title ._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}
@media only screen and (max-width: 1023px) {
  .all_c_title ._en {
    font-size: clamp(32px, 6.25vw, 64px);
  }
}
@media only screen and (max-width: 767px) {
  .all_c_title ._en {
    font-size: 40px;
  }
}
.all_c_title ._jp {
  position: relative;
  padding: 2px 5px 2px 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56px;
  z-index: 1;
}
.all_c_title ._jp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top_mv_ttl_bg.png");
  background-size: 100% 100%;
  z-index: -1;
}

.all_c_title_m {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 5px;
}
.all_c_title_m::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 155px;
  width: calc(100% - 155px);
  height: 1px;
  background-color: #B8C2CE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
@media only screen and (min-width: 1535px) {
  .all_c_title_m::before {
    width: calc(100% - 155px + (100vw - 1535px) / 2);
  }
}
@media only screen and (max-width: 1023px) {
  .all_c_title_m::before {
    width: calc(100% - 155px + 20px);
  }
}
@media only screen and (max-width: 767px) {
  .all_c_title_m::before {
    width: calc(100% - 145px + 20px);
    left: 145px;
  }
}
.all_c_title_m ._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .all_c_title_m ._en {
    font-size: 18px;
  }
}
.all_c_title_m ._jp {
  position: relative;
  padding: 2px 5px 2px 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .all_c_title_m ._jp {
    padding-right: 30px;
    font-size: 14px;
  }
}
.all_c_title_m ._jp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top_mv_ttl_bg.png");
  background-size: 100% 100%;
  z-index: -1;
}

/* animation
-----------------------------------------------------------------*/
.all_c_title.is-custom span {
  opacity: 0;
}
.all_c_title.is-custom span::before {
  width: 0;
}

.all_c_title_m.is-custom::before {
  scale: 0 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.all_c_title_m.is-custom span {
  opacity: 0;
}
.all_c_title_m.is-custom span::before {
  width: 0;
}

.all_c_title.is-custom.is-animated span {
  opacity: 1;
  -webkit-transition: opacity 1s 0s;
  transition: opacity 1s 0s;
}
.all_c_title.is-custom.is-animated span::before {
  width: 100%;
  -webkit-transition: width 1s 0.5s;
  transition: width 1s 0.5s;
}

.all_c_title_m.is-custom.is-animated::before {
  scale: 1 1;
  -webkit-transition: scale 1s 0.5s;
  transition: scale 1s 0.5s;
}
.all_c_title_m.is-custom.is-animated span {
  opacity: 1;
  -webkit-transition: opacity 1s 0s;
  transition: opacity 1s 0s;
}
.all_c_title_m.is-custom.is-animated span::before {
  width: 100%;
  -webkit-transition: width 1s 0.8s;
  transition: width 1s 0.8s;
}

/*--------------------------------------------------------------------------
   all_c_lineobj
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_c_lineobj {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .all_c_lineobj svg {
    width: 227px;
    height: auto;
  }
}
.all_c_lineobj.is-custom svg .line_obj_1 {
  translate: 50% 0;
  opacity: 0;
}
.all_c_lineobj.is-custom svg .line_obj_2 {
  translate: 30% 0;
  opacity: 0;
}
.all_c_lineobj.is-custom svg .line_obj_3 {
  translate: 80% 0;
  opacity: 0;
}
.all_c_lineobj.is-custom.is-animated svg .line_obj_1 {
  translate: 0 0;
  opacity: 0.4;
  -webkit-transition: 1s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.all_c_lineobj.is-custom.is-animated svg .line_obj_2 {
  translate: 0 0;
  opacity: 0.4;
  -webkit-transition: 0.6s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.all_c_lineobj.is-custom.is-animated svg .line_obj_3 {
  translate: 0 0;
  opacity: 0.4;
  -webkit-transition: 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*--------------------------------------------------------------------------
   all_m_accordion
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_m_accordion {
  position: relative;
  width: 100%;
  margin-top: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 767px) {
  .all_m_accordion {
    margin-top: 25px;
  }
}
.all_m_accordion_title {
  font-size: 18px;
}
.all_m_accordion_title .title {
  position: relative;
  width: 100%;
  padding: 20px 100px 20px 50px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .all_m_accordion_title .title {
    padding: 20px 80px 20px 24px;
  }
}
.all_m_accordion_title .title .mark {
  display: inline-block;
  margin-right: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
}
.all_m_accordion_title .title::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.all_m_accordion_title .title:hover + .icon {
  background: #0c1927;
  scale: 1.2;
}
.all_m_accordion_title .title._mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.all_m_accordion_title .title._mark .mark {
  width: 15px;
  line-height: 1.5;
}
.all_m_accordion_title .title._mark .mark + span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.all_m_accordion_title .icon {
  position: absolute;
  display: block;
  top: 15px;
  right: 30px;
  translate: 0 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_m_accordion_title .icon {
    top: 15px;
    right: 20px;
  }
}
.all_m_accordion_title .icon::before, .all_m_accordion_title .icon::after {
  content: "";
  width: 17px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
.all_m_accordion_title .icon::after {
  rotate: 90deg;
}
.all_m_accordion_title.is-open .icon::after {
  rotate: 0deg;
}
.all_m_accordion_title.is-open + .all_m_accordion_text {
  pointer-events: all;
}
.all_m_accordion_text {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  height: 0;
  pointer-events: none;
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .all_m_accordion_text {
    line-height: 2;
  }
}
.all_m_accordion_text .em {
  color: #0C1927;
}
.all_m_accordion_text_inline {
  padding: 0 100px 20px 50px;
}
@media only screen and (max-width: 767px) {
  .all_m_accordion_text_inline {
    padding: 10px 24px 30px 24px;
  }
}
.all_m_accordion_text ._cap {
  font-size: 14px;
  margin-top: 1em;
}
.all_m_accordion_text ._cap + ._cap {
  margin-top: 0.2em;
}
.all_m_accordion a {
  position: relative;
  color: #5A93FF;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.all_m_accordion a .w {
  color: #fff;
}
.all_m_accordion a::after {
  position: relative;
  top: -2px;
  margin: 0 5px;
  content: url(../images/all_icon_blank.svg);
}
.all_m_accordion a:hover {
  color: #0C1927;
}
.all_m_accordion a:hover .w {
  color: #0C1927;
}
.all_m_accordion a:hover::after {
  content: url(../images/all_icon_blank_o.svg);
}

/*--------------------------------------------------------------------------
   cf
---------------------------------------------------------------------------*/
.cf {
  *zoom: 1;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/**
 *
 *  LOADER
 *
 */
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   loader
---------------------------------------------------------------------------*/
#Loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 767px) {
  #Loader {
    position: absolute;
    top: 56px;
    width: 100%;
    height: auto;
    aspect-ratio: 1920/1080;
  }
}

#Loader .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 1px;
  background: #0C1927;
}

#Loader .base {
  display: none;
}

.home #Loader {
  background-image: url(../images/all_loader_bg.jpg);
  background-position: 50% 100%;
  background-size: cover;
}
.home #Loader .base {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 30px;
  left: 0;
  display: block;
  background-image: url(../images/all_loader_logo.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 482px auto;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .home #Loader .base {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 241px auto;
  }
}

/* trans
-------------------------------------------*/
.is-loading #Loader {
  opacity: 1;
}

.is-loading #Loader .base {
  top: 0px;
  opacity: 1;
  -webkit-transition: top 0.4s ease-in-out, opacity 0.6s ease-in-out;
  transition: top 0.4s ease-in-out, opacity 0.6s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* anima
-------------------------------------------*/
.load-complete #Loader {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.load-complete #Loader .base {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  top: 30px;
  opacity: 0;
}

/*--------------------------------------------------------------------------
   SHOW / HIDE
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*
 show / hide
 -- レスポンシブ用 表示/非表示
*/
.all_mi_pc {
  display: block;
}

@-moz-document url-prefix() {
  .all_mi_pc.lh0 {
    line-height: 0;
  }
}
img.all_mi_pc {
  display: inline;
}

.all_mi_sp {
  display: none;
}

/* media query -> sp
========================================*/
@media only screen and (max-width: 767px) {
  .all_mi_pc,
  img.all_mi_pc {
    display: none;
  }
  .all_mi_sp {
    display: block;
  }
  img.all_mi_sp {
    display: inline;
  }
}
/*--------------------------------------------------------------------------
   TEXT
---------------------------------------------------------------------------*/
/*
 note
 -- 改行時、一文字目に余白を持たせる
*/
.all_mi_note,
.all_mi_list_note li {
  padding-left: 1em;
  text-indent: -1em;
}

/*--------------------------------------------------------------------------
   IMAGE
---------------------------------------------------------------------------*/
/*
 max
 -- 横幅に合わせて画像を最大化
*/
.all_mi_img_max {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   HOVER
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*
 hov01
 -- 透過
*/
/* setting */
/* core */
.mi-hov01 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01:hover {
  opacity: 0.7;
}

.mi-hov01-all > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01-all > *:hover {
  opacity: 0.7;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   init
---------------------------------------------------------------------------*/
.is-animate.is-fadein {
  opacity: 0;
}
.is-animate.is-fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.is-animate.is-fadedown {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.is-animate.is-fadeleft {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.is-animate.is-faderight {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.is-animate.is-fadezoom {
  opacity: 0;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

/*--------------------------------------------------------------------------
   animated
---------------------------------------------------------------------------*/
.is-animated.is-fadein {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeup {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadedown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeleft {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-faderight {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadezoom {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/*--------------------------------------------------------------------------
   .header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_page_header {
  position: fixed;
  width: 92px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .all_page_header {
    width: 100%;
    height: auto;
  }
}
.all_page_header::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background-color: rgba(184, 194, 206, 0.4);
  content: "";
}
@media only screen and (max-width: 767px) {
  .all_page_header::before {
    content: none;
  }
}
.all_page_header .header {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header {
    width: 100%;
    top: 0;
  }
}
.all_page_header .header_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 25, 39, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
.all_page_header .header_menubtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_menubtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 0;
    right: 0px;
    width: 36px;
    height: 36px;
    background: #2DC0FF;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    z-index: 10;
  }
}
.mode-pc .all_page_header .header_menubtn:hover .lines, .mode-sp .all_page_header .header_menubtn:active .lines {
  -webkit-animation: h_menu_bounce 2s ease-in-out;
          animation: h_menu_bounce 2s ease-in-out;
}
@-webkit-keyframes h_menu_bounce {
  5% {
    -webkit-transform: scale(1.5, 1);
            transform: scale(1.5, 1);
  }
  10% {
    -webkit-transform: scale(0.7, 1);
            transform: scale(0.7, 1);
  }
  15% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes h_menu_bounce {
  5% {
    -webkit-transform: scale(1.5, 1);
            transform: scale(1.5, 1);
  }
  10% {
    -webkit-transform: scale(0.7, 1);
            transform: scale(0.7, 1);
  }
  15% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.all_page_header .header_menubtn .lines {
  position: relative;
  padding: 0;
  width: 24px;
  height: 6px;
  font-size: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: none;
}
.all_page_header .header_menubtn .lines:focus {
  outline: none;
}
.all_page_header .header_menubtn .lines span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
.all_page_header .header_menubtn .lines span:nth-of-type(1) {
  top: 0px;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.all_page_header .header_menubtn .lines span:nth-of-type(2) {
  bottom: 0;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_nav {
    position: fixed;
    top: 0;
    right: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 178px;
    height: 100%;
    background-color: #B8C2CE;
    translate: 100% 0;
    z-index: 5;
  }
}
.all_page_header .header_nav .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_nav .gnav {
    gap: 30px;
  }
}
.all_page_header .header_nav .gnav_item {
  width: 100%;
}
.all_page_header .header_nav .gnav_item a {
  position: relative;
  display: block;
  padding: 0 0 0 12px;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 2;
  letter-spacing: -0.01em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_nav .gnav_item a {
    padding: 0 0 0 30px;
    font-size: 20px;
    color: #0C1927;
    line-height: 1;
  }
}
.all_page_header .header_nav .gnav_item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background-color: #2DC0FF;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_nav .gnav_item a::before {
    left: -2px;
    width: 4px;
  }
}
.mode-pc .all_page_header .header_nav .gnav_item a:hover::before, .all_page_header .header_nav .gnav_item a._current::before {
  opacity: 1;
}
.all_page_header .header_nav .gnav_item a[data-id=contact] {
  color: #2DC0FF;
}

.is-menuanim .header_nav {
  -webkit-transition: translate 0.4s ease-in-out;
  transition: translate 0.4s ease-in-out;
}
.is-menuanim .header_overlay {
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

/*menu open*/
.is-menuopen .header .lines span:nth-of-type(1) {
  -webkit-transform: translateY(2px) rotate(-25deg);
          transform: translateY(2px) rotate(-25deg);
}
.is-menuopen .header .lines span:nth-of-type(2) {
  -webkit-transform: translateY(-3px) rotate(25deg);
          transform: translateY(-3px) rotate(25deg);
}
.is-menuopen .header_nav {
  translate: 0 0;
}
.is-menuopen .header_overlay {
  pointer-events: all;
  opacity: 1;
}

/*--------------------------------------------------------------------------
   .footer
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.footer {
  position: relative;
}
.footer_pagetop {
  border-bottom: 1px solid #B8C2CE;
}
.footer_pagetop_txt {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer_pagetop_txt {
    font-size: 15px;
  }
}
.footer_pagetop_txt::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  z-index: 1;
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  scale: 0 1;
}
.footer_pagetop_icon {
  position: relative;
  top: -3px;
  margin-left: 20px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 0 10px;
}
.mode-pc .footer_pagetop:hover .footer_pagetop_txt::before, .mode-sp .footer_pagetop:active .footer_pagetop_txt::before {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  scale: 1 1;
}
.footer_logo {
  padding: 0 20px 50px;
}
@media only screen and (max-width: 767px) {
  .footer_logo {
    padding: 0 20px 40px;
  }
}
.footer_logo_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1250px;
  width: 100%;
  padding-top: 50px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer_logo_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
  }
}
.footer_logo_list::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(100% + 50px);
  background-color: #B8C2CE;
  content: "";
}
@media only screen and (max-width: 767px) {
  .footer_logo_list::before {
    content: none;
  }
}
.footer_logo_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .footer_logo_item {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .footer_logo_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_logo_item:nth-child(1) {
  padding-right: 65px;
}
@media only screen and (max-width: 767px) {
  .footer_logo_item:nth-child(1) {
    padding: 0 0 40px;
  }
  .footer_logo_item:nth-child(1)::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #B8C2CE;
    content: "";
  }
}
.footer_logo_item:nth-child(2) {
  padding-left: 70px;
}
@media only screen and (max-width: 767px) {
  .footer_logo_item:nth-child(2) {
    padding: 40px 0 0;
  }
}
.mode-pc .footer_logo_item a:hover, .mode-sp .footer_logo_item a:active {
  color: #0C1927;
}
.footer_logo_img {
  max-width: 230px;
  width: 40%;
}
@media only screen and (max-width: 1023px) {
  .footer_logo_img {
    max-width: 100%;
    width: 100%;
  }
}
.footer_logo_img img {
  width: 100%;
  height: auto;
}
.footer_logo_txt {
  width: 55%;
  margin-left: auto;
}
@media only screen and (max-width: 1023px) {
  .footer_logo_txt {
    width: 100%;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_logo_txt {
    margin-top: 22px;
  }
}
.footer_logo_txt_ttl {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2DC0FF;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .footer_logo_txt_ttl {
    font-size: 12px;
  }
}
.footer_logo_txt_jp {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .footer_logo_txt_jp {
    font-size: 15px;
  }
}
.footer_logo_txt_jp2 {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .footer_logo_txt_jp2 {
    font-size: 13px;
  }
}
.footer_logo_txt_en {
  margin-top: 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
}
@media only screen and (max-width: 767px) {
  .footer_logo_txt_en {
    font-size: 14px;
  }
}
.footer_main {
  padding: 80px 20px;
  background: #EBEBEB;
}
@media only screen and (max-width: 767px) {
  .footer_main {
    padding: 64px 20px;
  }
}
.footer_main_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer_main_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 55px;
  }
}
.footer_main_logo {
  width: 30.72%;
}
.footer_main_logo_img._01 {
  mix-blend-mode: multiply;
}
.footer_main_logo_img._01 img {
  width: clamp(178px, 35.6vw, 356px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .footer_main_logo_img._01 img {
    width: clamp(268px, 71.4666666667vw, 536px);
  }
}
.footer_main_logo_img._02 {
  margin: 15px 0 0 clamp(47.5px, 9.5vw, 95px);
}
@media only screen and (max-width: 767px) {
  .footer_main_logo_img._02 {
    margin: 15px 0 0 clamp(50px, 13.3333333333vw, 100px);
    width: clamp(275px, 73.3333333333vw, 550px);
  }
}
.footer_main_logo_img._02 img {
  width: clamp(142.5px, 28.5vw, 285px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .footer_main_logo_img._02 img {
    width: clamp(275px, 73.3333333333vw, 550px);
  }
}
.footer_main_office {
  width: 41.92%;
  margin-left: auto;
  color: #0C1927;
}
@media only screen and (max-width: 1023px) {
  .footer_main_office {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .footer_main_office {
    width: 100%;
  }
}
.footer_main_office_box:nth-child(2) {
  margin-top: 48px;
}
.footer_main_office_name ._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .footer_main_office_name ._en {
    font-size: 18px;
  }
}
.footer_main_office_name ._jp {
  margin-left: 20px;
  font-size: 13px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .footer_main_office_name ._jp {
    margin-left: 12px;
    font-size: 13px;
  }
}
.footer_main_office_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
@media only screen and (max-width: 1023px) {
  .footer_main_office_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .footer_main_office_info {
    gap: 15px;
  }
}
.footer_main_office_info_address {
  font-size: 14px;
  font-weight: 400;
}
.footer_main_office_info_tel {
  margin-top: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 14px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .footer_main_office_info_tel {
    margin-top: 8px;
  }
}
.footer_main_office_info_jp {
  width: 49%;
}
@media only screen and (max-width: 1023px) {
  .footer_main_office_info_jp {
    width: 100%;
  }
}
.footer_main_office_info_jp .footer_main_office_info_address {
  line-height: 1.5;
}
.footer_main_office_info_en {
  width: 51%;
}
@media only screen and (max-width: 1023px) {
  .footer_main_office_info_en {
    width: 100%;
  }
}
.footer_main_office_info_en .footer_main_office_info_address {
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.45;
}
.footer_copyright {
  padding: 10px 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .footer_copyright {
    padding: 20px;
  }
}

/*--------------------------------------------------------------------------
   .main
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.main {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .main {
    padding-right: 0;
    opacity: 1;
  }
}

.home .main {
  opacity: 1;
}

.load-complete .main {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #top_mv
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_mv {
  position: relative;
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .top_mv {
    margin-bottom: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .top_mv::before {
    content: "";
    position: absolute;
    top: 0;
    right: 36px;
    width: 1px;
    height: calc(100% + 190px);
    background-color: rgba(184, 194, 206, 0.4);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 3;
  }
}
.top_mv_inner {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .top_mv_inner {
    width: calc(100vw - 36px);
    height: calc(var(--vh) * 100);
  }
}
.top_mv_inner::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #B8C2CE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .top_mv_inner::before {
    width: calc(100% + 36px);
  }
}
.top_mv_text {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .top_mv_text {
    top: 100px;
  }
}
.top_mv_text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #B8C2CE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
.top_mv_logo {
  padding: 0 30px 30px;
}
@media only screen and (max-width: 767px) {
  .top_mv_logo {
    width: calc(100vw - 52px);
    padding: 0 5px 15px 12px;
  }
}
.top_mv_logo img {
  display: block;
  width: clamp(513px, 64.125vw, 1026px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .top_mv_logo img {
    width: 100%;
  }
}
.top_mv_ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  translate: 0 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 30px;
}
@media only screen and (max-width: 767px) {
  .top_mv_ttl {
    padding: 8px 20px 8px 15px;
  }
}
.top_mv_ttl_1 {
  position: relative;
  z-index: 2;
  font-size: clamp(6px, 1.171875vw, 12px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .top_mv_ttl_1 {
    font-size: clamp(7px, 1.8666666667vw, 14px);
  }
}
.top_mv_ttl_2 {
  position: relative;
  z-index: 2;
  font-size: clamp(11px, 2.1484375vw, 22px);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .top_mv_ttl_2 {
    font-size: clamp(16px, 4.2666666667vw, 32px);
  }
}
.top_mv_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top_mv_ttl_bg.png");
  background-size: 100% 100%;
  z-index: 1;
}
.top_mv_copy {
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 0 150%;
  color: #E8EDEF;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(8px, 1.5625vw, 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .top_mv_copy {
    bottom: -15vw;
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.8;
  }
}
.top_mv_copy .em {
  color: #2DC0FF;
}
.top_mv_scrollview {
  position: absolute;
  bottom: 0px;
  right: 30px;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 50px;
  gap: 10px;
  -webkit-transform: none;
          transform: none;
  z-index: 3;
}
.top_mv_scrollview_txt {
  font-size: 16px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #B8C2CE;
}
@media only screen and (max-width: 767px) {
  .top_mv_scrollview_txt {
    font-size: 14px;
  }
}
.top_mv_scrollview_icon {
  display: block;
  width: 14px;
  height: 18px;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .top_mv_scrollview_icon {
    width: 8px;
    height: 11px;
  }
}
.top_mv_scrollview_icon img {
  width: 100%;
  height: auto;
}
.top_mv_movie {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 92px);
  height: 80%;
}
@media only screen and (max-width: 767px) {
  .top_mv_movie {
    width: calc(100% + 36px);
  }
}
.top_mv_movie::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(12, 25, 39, 0)), color-stop(80%, #0C1927));
  background: linear-gradient(0deg, rgba(12, 25, 39, 0) 0%, #0C1927 80% #0C1927 100%);
  z-index: 2;
}
.top_mv_movie::after {
  content: "";
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left bottom, left top, from(#0C1927), color-stop(20%, #0C1927), to(rgba(12, 25, 39, 0)));
  background: linear-gradient(0deg, #0C1927 0%, #0C1927 20%, rgba(12, 25, 39, 0) 100%);
  z-index: 2;
}
.top_mv_movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

/*--------------------------------------------------------------------------
   #top_about
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_about {
  position: relative;
  padding-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .top_about {
    padding-bottom: 250px;
  }
}
.top_about .all_c_lineobj {
  position: absolute;
  bottom: -120px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .top_about .all_c_lineobj {
    bottom: 0;
    right: -60px;
    translate: 0 100%;
  }
}
.top_about .all_c_title_m {
  margin-bottom: 100px;
  position: relative;
  background-color: #0C1927;
}
@media only screen and (max-width: 767px) {
  .top_about .all_c_title_m {
    margin-bottom: 80px;
  }
}
.top_about_subtitle {
  margin-bottom: 20px;
  text-overflow: ellipsis;
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .top_about_subtitle {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
.top_about_subtitle_en {
  position: relative;
  margin-bottom: 60px;
  padding: 0 0 0 28px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .top_about_subtitle_en {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.top_about_subtitle_en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 80%;
  translate: 0 -50%;
  background-color: #2DC0FF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
.top_about_textarea {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_about_textarea::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 1px;
  background-color: #B8C2CE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
@media only screen and (max-width: 1023px) {
  .top_about_textarea::before {
    right: -20px;
    width: calc(100% + 40px);
  }
}
@media only screen and (max-width: 767px) {
  .top_about_textarea::before {
    right: 0px;
    width: calc(100vw + 20px);
  }
}
.top_about_textarea_jp {
  width: 50%;
  padding: 45px 45px 0 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea_jp {
    width: 100%;
    padding: 32px 0;
  }
}
.top_about_textarea_jp .text {
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea_jp .text {
    font-size: 15px;
  }
}
.top_about_textarea_jp .text + .text {
  margin-top: 0.5em;
}
.top_about_textarea_en {
  position: relative;
  width: 50%;
  padding: 45px 0 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea_en {
    width: 100%;
    padding: 32px 0;
  }
}
.top_about_textarea_en .text {
  color: #FFF;
  font-family: "Josefin Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.68px;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea_en .text {
    font-size: 17px;
  }
}
.top_about_textarea_en .text + .text {
  margin-top: 0.5em;
}
.top_about_textarea_en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #B8C2CE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea_en::before {
    width: 100%;
    height: 1px;
    opacity: 0.5;
  }
}

/*--------------------------------------------------------------------------
   #top_message
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_message {
  position: relative;
  padding-bottom: 240px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_message {
    padding-bottom: 200px;
  }
}
.top_message .all_c_title_m {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .top_message .all_c_title_m {
    margin-bottom: 80px;
  }
}
.top_message .top_message_textbox .all_c_lineobj {
  position: absolute;
  bottom: -50px;
  right: 0;
  translate: 0 100%;
}
@media only screen and (max-width: 767px) {
  .top_message .top_message_textbox .all_c_lineobj {
    bottom: -40px;
    right: -50px;
  }
}
.top_message .top_message_person .all_c_lineobj_1 {
  position: absolute;
  top: 80px;
  right: 80px;
  translate: 100% 0;
}
@media only screen and (max-width: 767px) {
  .top_message .top_message_person .all_c_lineobj_1 {
    top: 35px;
    right: -120px;
    translate: 0 0;
  }
}
.top_message .top_message_person .all_c_lineobj_2 {
  position: absolute;
  bottom: 120px;
  left: 0px;
  translate: -50% 0;
}
@media only screen and (max-width: 767px) {
  .top_message .top_message_person .all_c_lineobj_2 {
    top: auto;
    bottom: 30px;
    left: -55px;
    translate: 0 0;
  }
}
.top_message_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(0px, 10.7142857143vw, 150px);
}
@media only screen and (max-width: 1023px) {
  .top_message_flex {
    display: block;
  }
}
.top_message_person {
  position: relative;
  margin-left: calc(clamp(80px, 10vw, 160px) * -1);
  width: clamp(0px, 34.5714285714vw, 484px);
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  .top_message_person {
    width: 75%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_person {
    width: calc(100vw - 20px);
  }
}
.top_message_person_img {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .top_message_person_img {
    margin-bottom: 40px;
  }
}
.top_message_person_img img {
  display: block;
  width: 100%;
  height: auto;
}
.top_message_person_txt {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: clamp(29px, 4.1428571429vw, 58px);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .top_message_person_txt {
    gap: clamp(35px, 9.3333333333vw, 70px);
  }
}
.top_message_person_txt::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #B8C2CE;
}
.top_message_person_txt::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #B8C2CE;
}
.top_message_person_txt_position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
}
.top_message_person_txt_position ._ja {
  font-size: clamp(7px, 1vw, 14px);
}
@media only screen and (max-width: 1023px) {
  .top_message_person_txt_position ._ja {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_person_txt_position ._ja {
    font-size: clamp(14px, 3.7333333333vw, 28px);
  }
}
.top_message_person_txt_position ._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(7px, 1vw, 14px);
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 1023px) {
  .top_message_person_txt_position ._en {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_person_txt_position ._en {
    font-size: clamp(14px, 3.7333333333vw, 28px);
  }
}
.top_message_person_txt_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: clamp(15px, 2.1428571429vw, 30px);
  border-left: 1px solid #fff;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .top_message_person_txt_name {
    padding-left: clamp(35px, 9.3333333333vw, 70px);
  }
}
.top_message_person_txt_name ._ja {
  font-size: clamp(9px, 1.2857142857vw, 18px);
}
@media only screen and (max-width: 1023px) {
  .top_message_person_txt_name ._ja {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_person_txt_name ._ja {
    font-size: clamp(18px, 4.8vw, 36px);
  }
}
.top_message_person_txt_name ._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(7px, 1vw, 14px);
  font-weight: 300;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 1023px) {
  .top_message_person_txt_name ._en {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_person_txt_name ._en {
    font-size: clamp(14px, 3.7333333333vw, 28px);
  }
}
.top_message_subtitle {
  margin-bottom: 20px;
  padding-right: 20px;
  text-overflow: ellipsis;
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1023px) {
  .top_message_subtitle {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_subtitle {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
.top_message_subtitle_en {
  position: relative;
  margin-bottom: 60px;
  padding: 0 20px 0 28px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 1023px) {
  .top_message_subtitle_en {
    padding: 0 0 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_subtitle_en {
    margin-bottom: 48px;
    font-size: 14px;
  }
}
.top_message_subtitle_en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #2DC0FF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
.top_message_textbox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 180px;
}
@media only screen and (max-width: 1023px) {
  .top_message_textbox {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .top_message_textbox {
    padding-top: 0;
  }
}
.top_message_textarea {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_message_textarea::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 1px;
  background-color: #B8C2CE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
@media only screen and (max-width: 1023px) {
  .top_message_textarea::before {
    left: auto;
    right: -20px;
    width: calc(100% + 40px);
  }
}
@media only screen and (max-width: 767px) {
  .top_message_textarea::before {
    right: 0;
    width: calc(100vw + 20px);
  }
}
.top_message_textarea_jp {
  width: calc(46% - 15px);
  padding: 45px 45px 0 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea_jp {
    width: 100%;
    padding: 48px 0 32px;
  }
}
.top_message_textarea_jp .text {
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea_jp .text {
    font-size: 15px;
  }
}
.top_message_textarea_jp .text + .text {
  margin-top: 0.5em;
}
.top_message_textarea_en {
  position: relative;
  width: calc(54% + 15px);
  padding: 45px 15px 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea_en {
    width: 100%;
    padding: 32px 0;
  }
}
.top_message_textarea_en .text {
  color: #FFF;
  font-family: "Josefin Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.68px;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea_en .text {
    font-size: 17px;
  }
}
.top_message_textarea_en .text + .text {
  margin-top: 0.5em;
}
.top_message_textarea_en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #B8C2CE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea_en::before {
    width: 100%;
    height: 1px;
    opacity: 0.5;
  }
}

/*--------------------------------------------------------------------------
   #top_project
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_project_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #B8C2CE;
  border-bottom: 1px solid #B8C2CE;
}
@media only screen and (max-width: 767px) {
  .top_project_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 0.5px solid #B8C2CE;
    border-bottom: 0.5px solid #B8C2CE;
  }
}
.top_project_item {
  position: relative;
  z-index: 0;
  width: 50%;
  aspect-ratio: 754/540;
}
@media only screen and (max-width: 767px) {
  .top_project_item {
    width: 100%;
    aspect-ratio: 376/280;
  }
}
.top_project_item:nth-child(n+2) {
  border-left: 1px solid #B8C2CE;
}
@media only screen and (max-width: 767px) {
  .top_project_item:nth-child(n+2) {
    border-left: none;
    border-top: 0.5px solid #B8C2CE;
  }
}
.top_project_item_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_project_item_inner {
    padding: 20px;
  }
}
.mode-pc .top_project_item_inner:hover .top_project_item_bg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top_project_item_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top_project_item_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top_project_item_ttl {
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
}
.top_project_item_ttl1 {
  font-size: clamp(22px, 4.296875vw, 44px);
  font-weight: 300;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_project_item_ttl1 {
    font-size: clamp(32px, 8.5333333333vw, 64px);
  }
}
.top_project_item_ttl2 {
  font-size: clamp(16px, 3.125vw, 32px);
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .top_project_item_ttl2 {
    font-size: clamp(24px, 6.4vw, 48px);
  }
}
.top_project_link {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 25px;
}
@media only screen and (max-width: 767px) {
  .top_project_link {
    right: 20px;
    bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 10px;
  }
}

/*--------------------------------------------------------------------------
   #top_info
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_info {
  position: relative;
  padding-top: 280px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_info {
    padding-top: 200px;
  }
}
.top_info .all_wrap {
  max-width: 100%;
}
.top_info_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(25px, 4.1666666667vw, 50px);
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .top_info_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.top_info_nav {
  width: 150px;
}
@media only screen and (max-width: 767px) {
  .top_info_nav {
    width: 100vw;
    margin-left: -20px;
  }
}
.top_info_nav_list {
  position: relative;
  padding-left: 16px;
}
@media only screen and (max-width: 767px) {
  .top_info_nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-left: 0;
  }
}
.top_info_nav_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(184, 194, 206, 0.4);
}
@media only screen and (max-width: 767px) {
  .top_info_nav_list::before {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1PX;
  }
}
.top_info_nav_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .top_info_nav_item {
    width: 50%;
    padding-bottom: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top_info_nav_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: 1px;
  height: 100%;
  background: #2DC0FF;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_info_nav_item::before {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
}
.top_info_nav_item ._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}
.top_info_nav_item ._jp {
  font-size: 13px;
  font-weight: 400;
}
.top_info_nav_item:nth-child(n+2) {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .top_info_nav_item:nth-child(n+2) {
    margin-top: 0;
  }
}
.top_info_nav_item:hover, .top_info_nav_item._current {
  opacity: 1;
}
.top_info_nav_item:hover::before, .top_info_nav_item._current::before {
  opacity: 1;
}
.top_info_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 1023px) {
  .top_info_content {
    margin-right: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .top_info_content {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top_info_content_box {
    padding-top: 32px;
  }
}
.top_info_content_year {
  margin: 40px 0 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.top_info_content_year:first-of-type {
  margin-top: 0;
}
.top_info_content_item {
  padding: 35px 35px 35px 0;
  border-bottom: 1px solid #B8C2CE;
}
@media only screen and (max-width: 1023px) {
  .top_info_content_item {
    padding: 35px 20px 35px 0;
  }
}
@media only screen and (max-width: 767px) {
  .top_info_content_item {
    padding: 32px 0;
  }
}
.top_info_content_item:first-of-type {
  border-top: 1px solid #B8C2CE;
}
@media only screen and (max-width: 767px) {
  .top_info_content_item:first-of-type {
    border-top: none;
  }
}
.top_info_content_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.top_info_content_head .date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_info_content_head .date {
    font-size: 14px;
  }
}
.top_info_content_head .cat {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-left: 10px;
  padding: 3px 12px 4px 12px;
  border: 1px solid #2DC0FF;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 300;
  color: #2DC0FF;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_info_content_head .cat {
    padding: 5px 10px 5px 10px;
    font-size: 13px;
  }
}
.top_info_content_txt {
  max-width: 1440px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .top_info_content_txt {
    font-size: 18px;
  }
}
.top_info_content_txt._en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .top_info_content_txt._en {
    font-size: 18px;
  }
}
.top_info_content_txt a {
  color: #2DC0FF;
  text-decoration: underline;
}
.top_info_content_txt a:hover {
  text-decoration: none;
}
.top_info_btn {
  width: 171px;
  margin: 40px auto 0;
}
.top_info_btn button {
  position: relative;
  margin: 0 auto;
  width: 171px;
  height: 48px;
  border: 1px solid #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  border-radius: 100px;
  color: #fff;
  padding-right: 0;
  padding-top: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top_info_btn button span {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  translate: -8px 0;
}
.top_info_btn button span::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  z-index: 1;
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  scale: 0 1;
}
.mode-pc .top_info_btn button:hover span::before {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  scale: 1 1;
}
.top_info_btn button::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: 0px;
  pointer-events: none;
}
.top_info .all_c_lineobj {
  position: absolute;
}
.top_info .all_c_lineobj._info1 {
  top: 195px;
  left: 50%;
}
@media only screen and (max-width: 767px) {
  .top_info .all_c_lineobj._info1 {
    top: 125px;
    left: auto;
    right: -50px;
  }
}
.top_info .all_c_lineobj._info2 {
  top: 730px;
  left: -25px;
}
@media only screen and (max-width: 767px) {
  .top_info .all_c_lineobj._info2 {
    display: none;
  }
}

/*--------------------------------------------------------------------------
   #top_contact
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 200px;
  width: 100%;
  height: 100%;
  padding: 80px 20px;
  border-top: 1px solid #B8C2CE;
  border-bottom: 1px solid #B8C2CE;
  z-index: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_contact {
    padding: 40px 20px;
  }
}
.top_contact_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  max-width: 996px;
  width: 100%;
  padding: 64px clamp(60px, 7.5vw, 120px);
  background: linear-gradient(93deg, rgba(248, 248, 248, 0.08) 2.17%, rgba(248, 248, 248, 0) 76.96%);
  backdrop-filter: blur(10px);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .top_contact_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 44px 32px;
  }
}
.top_contact_info_txtarea {
  max-width: 452px;
  margin-left: auto;
  text-align: right;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .top_contact_info_txtarea {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }
}
.top_contact_info_txt {
  font-size: 15px;
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  .top_contact_info_txt .all_mi_sp {
    display: block;
  }
}
.top_contact_info_btn {
  margin: 15px 0 0 auto;
}
.mode-pc .top_contact_info:hover .all_c_btn span::before {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  scale: 1 1;
}
.mode-pc .top_contact_info:hover .all_c_btn i {
  overflow: hidden;
}
.mode-pc .top_contact_info:hover .all_c_btn i svg {
  -webkit-animation: btnHoverIcon 0.7s ease forwards;
          animation: btnHoverIcon 0.7s ease forwards;
}
.mode-pc .top_contact_info:hover .all_c_btn i svg path {
  stroke: #2DC0FF;
}
.mode-pc .top_contact_info:hover .all_c_btn i::before {
  width: 100%;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.top_contact_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.top_contact_movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.32;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  rotate: 15deg;
  scale: 2.2;
}
@media only screen and (min-width: 1500px) {
  .top_contact_movie video {
    scale: 2.5;
  }
}
@media only screen and (min-width: 1750px) {
  .top_contact_movie video {
    scale: 2.8;
  }
}
@media only screen and (min-width: 1920px) {
  .top_contact_movie video {
    scale: 3.2;
  }
}
@media only screen and (min-width: 2200px) {
  .top_contact_movie video {
    scale: 3.5;
  }
}
@media only screen and (min-width: 2500px) {
  .top_contact_movie video {
    scale: 4;
  }
}
@media only screen and (min-width: 2800px) {
  .top_contact_movie video {
    -o-object-fit: cover;
       object-fit: cover;
    rotate: 0deg;
    scale: 1;
  }
}
@media only screen and (max-width: 767px) {
  .top_contact_movie video {
    rotate: 5deg;
    scale: 1.8;
  }
}

/*--------------------------------------------------------------------------
   animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* Mv
-----------------------------------------------------------------*/
.all_page_header::before {
  scale: 1 0;
}

.header {
  opacity: 0;
}

.top_mv::before {
  scale: 1 0;
}

.top_mv_logo {
  opacity: 0;
}

.top_mv_ttl span {
  opacity: 0;
}
.top_mv_ttl::before {
  width: 0;
}

.top_mv_copy {
  opacity: 0;
}

.top_mv_text::before {
  width: 0;
}

.top_mv_inner::before {
  scale: 0 1;
}

.top_mv_movie {
  opacity: 0;
}

.top_mv_scrollview {
  opacity: 0;
}

.load-complete .all_page_header::before {
  scale: 1 1;
  -webkit-transition: scale 1s 1.5s;
  transition: scale 1s 1.5s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.load-complete .header {
  opacity: 1;
  -webkit-transition: opacity 1s 2s;
  transition: opacity 1s 2s;
}
.load-complete .top_mv::before {
  scale: 1 1;
  -webkit-transition: scale 1.5s 1.5s;
  transition: scale 1.5s 1.5s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.load-complete .top_mv_logo {
  opacity: 1;
  -webkit-transition: opacity 5s 0.6s;
  transition: opacity 5s 0.6s;
}
.load-complete .top_mv_ttl span {
  opacity: 1;
  -webkit-transition: opacity 1s 1s;
  transition: opacity 1s 1s;
}
.load-complete .top_mv_ttl::before {
  width: 100%;
  -webkit-transition: width 0.6s 1s;
  transition: width 0.6s 1s;
}
.load-complete .top_mv_copy {
  opacity: 1;
  -webkit-transition: opacity 1s 1.2s;
  transition: opacity 1s 1.2s;
}
.load-complete .top_mv_text::before {
  width: 100%;
  -webkit-transition: width 1s 1s;
  transition: width 1s 1s;
}
.load-complete .top_mv_inner::before {
  scale: 1 1;
  -webkit-transition: scale 1s 1s;
  transition: scale 1s 1s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.load-complete .top_mv_movie {
  opacity: 1;
  -webkit-transition: opacity 5s 2s;
  transition: opacity 5s 2s;
}
.load-complete .top_mv_scrollview {
  opacity: 1;
  -webkit-transition: opacity 1s 2s;
  transition: opacity 1s 2s;
}

/* About
-----------------------------------------------------------------*/
.top_about_textarea.is-custom::before {
  scale: 0 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.top_about_textarea.is-custom .top_about_textarea_en::before {
  scale: 1 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea.is-custom .top_about_textarea_en::before {
    scale: 0 1;
  }
}

.top_about_textarea.is-custom.is-animated::before {
  scale: 1 1;
  -webkit-transition: 1s 0;
  transition: 1s 0;
}
.top_about_textarea.is-custom.is-animated .top_about_textarea_en::before {
  scale: 1 1;
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_about_textarea.is-custom.is-animated .top_about_textarea_en::before {
    scale: 0 1;
  }
}

@media only screen and (max-width: 767px) {
  .top_about_textarea_en.is-custom.is-animated::before {
    -webkit-transition: 1s 0s !important;
    transition: 1s 0s !important;
    scale: 1 1 !important;
  }
}

/* Message
-----------------------------------------------------------------*/
.top_message_textarea.is-custom::before {
  scale: 0 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.top_message_textarea.is-custom .top_message_textarea_en::before {
  scale: 1 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea.is-custom .top_message_textarea_en::before {
    scale: 0 1;
  }
}

.top_message_person_txt.is-custom::before, .top_message_person_txt.is-custom::after {
  scale: 0 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.top_message_textarea.is-custom.is-animated::before {
  scale: 1 1;
  -webkit-transition: 1s 0;
  transition: 1s 0;
}
.top_message_textarea.is-custom.is-animated .top_message_textarea_en::before {
  scale: 1 1;
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_message_textarea.is-custom.is-animated .top_message_textarea_en::before {
    scale: 0 1;
  }
}

.top_message_person_txt.is-custom.is-animated::before {
  scale: 1 1;
  -webkit-transition: scale 1s 0s;
  transition: scale 1s 0s;
}
.top_message_person_txt.is-custom.is-animated::after {
  scale: 1 1;
  -webkit-transition: scale 1s 0.2s;
  transition: scale 1s 0.2s;
}

@media only screen and (max-width: 767px) {
  .top_message_textarea_en.is-custom.is-animated::before {
    -webkit-transition: 1s 0s !important;
    transition: 1s 0s !important;
    scale: 1 1 !important;
  }
}
/*# sourceMappingURL=style.css.map */