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

   mixin

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

   keyframes

===========================================================================*/
/*--------------------------------------------------------------------------
   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: "Zen Kaku Gothic New", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  background-color: #E1AE1F;
  -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: 16px;
    line-height: 2;
  }
}

.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;
}

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

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

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

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .all_page_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .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;
  }
}
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   all_wrap
---------------------------------------------------------------------------*/
.all_wrap {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.all_wrap_s {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .all_wrap {
    max-width: none;
    padding: 0 20px;
  }
  .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 {
  position: relative;
  width: 280px;
  height: 80px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .all_c_btn {
    width: 220px;
    height: 56px;
  }
}
.all_c_btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 32px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  background-color: #033C83;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .all_c_btn a {
    height: 56px;
    padding: 0 20px;
    font-size: 16px;
  }
}
.all_c_btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FFE700;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
}
.all_c_btn a span {
  position: relative;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.all_c_btn a i {
  position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
  width: 36px;
  height: 36px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .all_c_btn a i {
    right: 10px;
    width: 32px;
    height: 32px;
  }
}
.all_c_btn a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  background-color: #FFE700;
  border-radius: 1000px;
  opacity: 0.4;
  content: "";
}
@media only screen and (max-width: 767px) {
  .all_c_btn a i::before {
    right: 10px;
    width: 36px;
    height: 36px;
  }
}
.all_c_btn a i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  background-color: #FFE700;
  border-radius: 1000px;
  scale: 0.8;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_c_btn a i::after {
    right: 10px;
    width: 36px;
    height: 36px;
  }
}
.all_c_btn a i img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
.mode-pc .all_c_btn a:hover, .mode-sp .all_c_btn a:active {
  background-color: #FFE700;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.mode-pc .all_c_btn a:hover span, .mode-sp .all_c_btn a:active span {
  color: #033C83;
}
.mode-pc .all_c_btn a:hover::after, .mode-sp .all_c_btn a:active::after {
  width: 100%;
}
.mode-pc .all_c_btn a:hover i::after, .mode-sp .all_c_btn a:active i::after {
  scale: 1;
  background-color: #fff;
}

/*--------------------------------------------------------------------------
   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: "Montserrat", 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: #e1ae1f;
  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: #E1AE1F;
}
.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: #E1AE1F;
}
.all_m_accordion a:hover .w {
  color: #E1AE1F;
}
.all_m_accordion a:hover::after {
  content: url(../images/all_icon_blank_o.svg);
}

/*--------------------------------------------------------------------------
   all_lower_header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_lower_header {
  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: 56.25vw;
  /*a {
    position: relative;
    transition: .2s;

    &::after {
      position: relative;
      top: -2px;
      margin: 0 5px;
      content: url(../images/all_icon_blank.svg);
    }

    &:hover {
      //color: $key-color;

      .w {
        color: $key-color;
      }

      &::after {
        content: url(../images/all_icon_blank_o.svg);
      }
    }
  }*/
}
@media only screen and (max-width: 767px) {
  .all_lower_header {
    height: 177.6vw;
  }
}
.all_lower_header::after {
  position: absolute;
  bottom: -5vw;
  left: -10%;
  width: 120%;
  height: 15vw;
  border-top-left-radius: 50vw 15vw;
  border-top-right-radius: 50vw 15vw;
  background: #E1AE1F;
  content: "";
}
@media only screen and (max-width: 767px) {
  .all_lower_header::after {
    height: 16vw;
    border-top-left-radius: 50vw 18vw;
    border-top-right-radius: 50vw 18vw;
  }
}
.all_lower_header_bg {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 767px) {
  .all_lower_header_bg {
    aspect-ratio: 375/666;
  }
}
.all_lower_header_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.all_lower_header_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;
}
.all_lower_header_title_text {
  position: relative;
  margin-top: 20px;
}
.all_lower_header_title_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #033C83;
  z-index: 1;
}
.all_lower_header_title_text .text {
  position: relative;
  display: inline-block;
  padding: 0 2px;
  font-size: clamp(44px, 5vw, 80px);
  line-height: 1.2;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .all_lower_header_title_text .text {
    margin-top: 10px;
  }
}
/* animation
-----------------------------------------------------------------*/
.all_lower_header_title_text::before {
  scale: 0 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.all_lower_header_title_text .text {
  opacity: 0;
}

.load-complete .all_lower_header_title_text::before {
  scale: 1 1;
  -webkit-transition: scale 0.6s ease-in-out;
  transition: scale 0.6s ease-in-out;
}
.load-complete .all_lower_header_title_text .text {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.load-complete .all_lower_header_title_text:nth-child(1)::before,
.load-complete .all_lower_header_title_text:nth-child(1) .text {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.load-complete .all_lower_header_title_text:nth-child(2)::before,
.load-complete .all_lower_header_title_text:nth-child(2) .text {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

/*--------------------------------------------------------------------------
  all_breadcrumb
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
}
.all_breadcrumb_item {
  font-size: clamp(14px, 0.875vw, 14px);
  color: #131313;
}
@media only screen and (max-width: 767px) {
  .all_breadcrumb_item {
    font-size: 13px;
  }
}
.all_breadcrumb_item a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.all_breadcrumb_item a::after {
  padding-left: 1em;
  content: "－";
}
@media only screen and (max-width: 767px) {
  .all_breadcrumb_item a::after {
    padding-left: 0.5em;
  }
}
.mode-pc .all_breadcrumb_item a:hover, .mode-sp .all_breadcrumb_item a:active {
  opacity: 1;
}
.all_breadcrumb_item:not(:first-of-type) {
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  .all_breadcrumb_item:not(:first-of-type) {
    margin-left: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .all_breadcrumb--white {
    color: #fff;
  }
}

/*--------------------------------------------------------------------------
   all_contents_nav
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_contents_nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: clamp(40px, 5.3125vw, 85px);
}
@media only screen and (max-width: 767px) {
  .all_contents_nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 32px;
  }
}
.all_contents_nav_btn {
  position: relative;
  height: 48px;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .all_contents_nav_btn {
    width: 48.35%;
    height: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 400px) {
  .all_contents_nav_btn {
    font-size: 10px;
  }
}
.all_contents_nav_btn._small {
  width: 14%;
}
@media only screen and (max-width: 767px) {
  .all_contents_nav_btn._small {
    width: 48.35%;
  }
}
.all_contents_nav_btn._middle {
  width: 22%;
}
@media only screen and (max-width: 767px) {
  .all_contents_nav_btn._middle {
    width: 48.35%;
  }
}
.all_contents_nav_btn._large {
  width: 26%;
}
@media only screen and (max-width: 767px) {
  .all_contents_nav_btn._large {
    width: 48.35%;
  }
}
.all_contents_nav_btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.all_contents_nav_btn a span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  padding-left: 10%;
  border: 1px solid #033C83;
  border-radius: 30px;
  color: #033C83;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_contents_nav_btn a span {
    padding-left: 10px;
  }
}
.all_contents_nav_btn a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 28px;
  height: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/all_icon_nav.svg) 50% 50%/cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_contents_nav_btn a span::after {
    width: 18px;
    height: 18px;
  }
}
.mode-pc .all_contents_nav_btn a:hover span {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
.mode-pc .all_contents_nav_btn a:hover span::after {
  -webkit-transform: translateY(-50%) scale(1.3);
          transform: translateY(-50%) scale(1.3);
}
.all_contents_nav_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_contents_nav_text {
    line-height: 2;
  }
}
.all_contents_nav_text .em {
  color: #E1AE1F;
}
.all_contents_nav_text_inline {
  padding: 0 100px 20px 50px;
}
@media only screen and (max-width: 767px) {
  .all_contents_nav_text_inline {
    padding: 10px 24px 30px 24px;
  }
}
.all_contents_nav_text ._cap {
  font-size: 14px;
  margin-top: 1em;
}
.all_contents_nav_text ._cap + ._cap {
  margin-top: 0.2em;
}

/*--------------------------------------------------------------------------
  all_content
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_content {
  position: relative;
  width: 100%;
}
.all_content_header_title {
  line-height: 0;
}
.all_content_header_title_en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 800;
  line-height: 1.6;
}
.all_content_header_title_en._orange {
  color: #E1AE1F;
}
.all_content_header_title_ja {
  display: inline-block;
  padding: 3px;
  background: #033C83;
  font-size: clamp(14px, 0.875vw, 14px);
  line-height: 1;
}
.all_content_header_copy {
  margin-top: clamp(32px, 4vw, 64px);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .all_content_header_copy {
    line-height: 1.5;
  }
}
.all_content_header_copy._black {
  color: #131313;
}
.all_content_header._center {
  text-align: center;
}
/*--------------------------------------------------------------------------
  all_loop
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_loop {
  overflow: hidden;
}
.all_loop_list {
  -webkit-animation: marquee-loop 30s linear infinite;
          animation: marquee-loop 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 0 10rem;
}
.all_loop_list_item {
  list-style: none;
  padding: 0;
}
.all_loop_list_item img {
  display: block;
  width: auto;
}

@-webkit-keyframes marquee-loop {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-loop {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*--------------------------------------------------------------------------
  all_sp-entry
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_sp-entry {
  display: none;
}
@media only screen and (max-width: 767px) {
  .all_sp-entry {
    display: block;
    position: fixed;
    bottom: 12px;
    right: 12px;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 99;
  }
}
.all_sp-entry.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.all_sp-entry .all_c_btn {
  width: 192px;
  height: 48px;
}
.all_sp-entry .all_c_btn a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0;
  background: #fff;
  border: 1px solid #033C83;
  color: #033C83;
}
.all_sp-entry .all_c_btn a::after {
  z-index: -1;
}
/*--------------------------------------------------------------------------
   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: #E1AE1F;
}

#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: relative;
  width: 100%;
}
.all_page_header .header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  z-index: 999;
}
.all_page_header .header_title {
  position: absolute;
  top: 70px;
  left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_title {
    display: block;
    position: absolute;
    top: 26px;
    left: 20px;
  }
}
.all_page_header .header_title_logo {
  line-height: 1;
}
.all_page_header .header_title_logo img {
  width: 214px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_title_logo img {
    width: 172px;
  }
}
.all_page_header .header_title_site {
  margin-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 0.875vw, 14px);
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_title_site {
    margin: 4px 0 0;
  }
}
.all_page_header .header_entry {
  position: absolute;
  top: 32px;
  right: 102px;
}
.all_page_header .header_entry .all_c_btn {
  width: 228px;
  height: 64px;
}
.all_page_header .header_entry .all_c_btn a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0;
  background: #fff;
  border: 1px solid #033C83;
  color: #033C83;
}
.all_page_header .header_entry .all_c_btn a::after {
  z-index: -1;
}
.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: 32px;
  right: 26px;
  width: 64px;
  height: 64px;
  background: #033C83;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_menubtn {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
}
.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: 32px;
  height: 16px;
  font-size: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: none;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_menubtn .lines {
    width: 20px;
    height: 10px;
  }
}
.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: 2px;
  -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) {
  top: 7px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_menubtn .lines span:nth-of-type(2) {
    top: 4px;
  }
}
.all_page_header .header_menubtn .lines span:nth-of-type(3) {
  bottom: 0;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}
.all_page_header .header_wrap {
  z-index: 9;
  position: fixed;
  top: 10px;
  right: 10px;
  max-width: 480px;
  width: 100%;
  padding-bottom: 30px;
  background-color: #033C83;
  border-radius: 12px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_wrap {
    top: 0;
    right: 0;
    width: calc(100% - 10px);
    margin-left: auto;
    border-radius: 0;
  }
}
.all_page_header .header_wrap_entry {
  position: absolute;
  top: 22px;
  right: 92px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_wrap_entry {
    top: 12px;
    right: 70px;
  }
}
.all_page_header .header_wrap_entry .all_c_btn {
  width: 228px;
  height: 64px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_wrap_entry .all_c_btn {
    width: 192px;
    height: 48px;
  }
}
.all_page_header .header_wrap_entry .all_c_btn a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0;
  background: #fff;
  border: 1px solid #033C83;
  color: #033C83;
}
.all_page_header .header_wrap_entry .all_c_btn a::after {
  z-index: -1;
}
.all_page_header .header_nav {
  padding: 100px 32px 0;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_nav {
    padding: 68px 28px 0;
  }
}
.all_page_header .header .gnav_item {
  padding: 20px 0;
  border-bottom: 2px dashed #fff;
}
.all_page_header .header .gnav_item._nolink .gnav_item_menu,
.all_page_header .header .gnav_item._nolink .gnav_item_submenu {
  opacity: 0.4;
}
.all_page_header .header .gnav_item_menu {
  margin-right: -5px;
}
.all_page_header .header .gnav_item_menu > a,
.all_page_header .header .gnav_item_menu span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header .gnav_item_menu > a,
  .all_page_header .header .gnav_item_menu span {
    -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;
  }
}
.all_page_header .header .gnav_item_menu > a:hover .en {
  color: #033C83;
}
.all_page_header .header .gnav_item_menu > a:hover .en::after {
  -webkit-transform: scaleX(1.02) translateY(-50%);
          transform: scaleX(1.02) translateY(-50%);
}
.all_page_header .header .gnav_item_menu .en {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 3.25vw, 52px);
  font-weight: 800;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all_page_header .header .gnav_item_menu .en::after {
  background: #FFE700;
  content: "";
  display: block;
  height: 1em;
  left: -0.1%;
  position: absolute;
  top: 50%;
  -webkit-transform: scaleX(0) translateY(-50%);
          transform: scaleX(0) translateY(-50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
  z-index: -1;
}
.all_page_header .header .gnav_item_menu .ja {
  position: relative;
  bottom: 8px;
  display: inline-block;
  margin-left: 6px;
  padding: 1px 1px 3px;
  background: #fff;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 800;
  color: #033C83;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header .gnav_item_menu .ja {
    bottom: inherit;
  }
}
.all_page_header .header .gnav_item_submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header .gnav_item_submenu {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .all_page_header .header .gnav_item_submenu_item {
    width: 36%;
  }
}
.all_page_header .header .gnav_item_submenu_item:nth-child(n+2) {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header .gnav_item_submenu_item:nth-child(n+2) {
    margin-left: 0;
  }
}
.all_page_header .header .gnav_item_submenu_item_text {
  font-size: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all_page_header .header .gnav_item_submenu_item_icon {
  position: relative;
}
.all_page_header .header .gnav_item_submenu_item_icon svg {
  fill: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all_page_header .header .gnav_item_submenu_item a {
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all_page_header .header .gnav_item_submenu_item a::after {
  background: #FFE700;
  content: "";
  display: block;
  height: 1em;
  left: -0.1%;
  position: absolute;
  top: 50%;
  -webkit-transform: scaleX(0) translateY(-50%);
          transform: scaleX(0) translateY(-50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
  z-index: -1;
}
.all_page_header .header .gnav_item_submenu_item a:hover::after {
  -webkit-transform: scaleX(1.02) translateY(-50%);
          transform: scaleX(1.02) translateY(-50%);
}
.all_page_header .header .gnav_item_submenu_item a:hover .gnav_item_submenu_item_text {
  color: #033C83;
}
.all_page_header .header .gnav_item_submenu_item a:hover .gnav_item_submenu_item_icon svg {
  fill: #033C83;
}
.all_page_header .header_companysite {
  margin-top: clamp(15px, 1.25vw, 20px);
  font-size: clamp(16px, 1vw, 16px);
  text-align: right;
}
.all_page_header .header_companysite a {
  position: relative;
  display: inline-block;
  padding-right: 22px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.all_page_header .header_companysite a::before {
  position: absolute;
  top: 2px;
  right: 0;
  width: 19px;
  height: 14px;
  content: "";
  background: url("../images/all_icon_blank_white.svg");
}
.all_page_header .header_companysite a:hover {
  opacity: 0.8;
}

/*menu open*/
.is-menuopen .header_menubtn {
  border: 1px solid #fff;
}
.is-menuopen .header .lines span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-30deg);
          transform: translateY(6px) rotate(-30deg);
}
@media only screen and (max-width: 767px) {
  .is-menuopen .header .lines span:nth-of-type(1) {
    -webkit-transform: translateY(3px) rotate(-30deg);
            transform: translateY(3px) rotate(-30deg);
  }
}
.is-menuopen .header .lines span:nth-of-type(2) {
  opacity: 0;
}
.is-menuopen .header .lines span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(30deg);
          transform: translateY(-8px) rotate(30deg);
}
@media only screen and (max-width: 767px) {
  .is-menuopen .header .lines span:nth-of-type(3) {
    -webkit-transform: translateY(-5px) rotate(30deg);
            transform: translateY(-5px) rotate(30deg);
  }
}
.is-menuopen .header_wrap {
  height: auto !important;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .is-menuopen .header_wrap {
    height: 100vh !important;
  }
}

/*--------------------------------------------------------------------------
   .footer
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.footer {
  position: relative;
}
.footer_entry {
  padding: 30px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.footer_entry .footer_entry_slider {
  width: 100vw;
  overflow: hidden;
}
.footer_entry .footer_entry_slider_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.footer_entry .footer_entry_slider._top .footer_entry_slider_wrap {
  -webkit-animation: entry-loop-right 50s linear infinite;
          animation: entry-loop-right 50s linear infinite;
}
@-webkit-keyframes entry-loop-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes entry-loop-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.footer_entry .footer_entry_slider._bottom .footer_entry_slider_wrap {
  -webkit-animation: entry-loop-left 50s linear infinite;
          animation: entry-loop-left 50s linear infinite;
}
@-webkit-keyframes entry-loop-left {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes entry-loop-left {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.footer_entry .footer_entry_slider_item {
  margin: 0 !important;
  padding: 0 !important;
  width: auto; /* 必要に応じてwidth: autoまたはwidth: 100% */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_entry .footer_entry_slider_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_entry .footer_entry_slider_item_inner .footer_entry_slider_item_img {
  width: 160px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer_entry .footer_entry_slider_item_inner .footer_entry_slider_item_img {
    width: 120px;
  }
}
.footer_entry .footer_entry_slider_item_inner img {
  width: 140px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .footer_entry .footer_entry_slider_item_inner img {
    width: 100px;
  }
}
.footer_entry .footer_entry_slider_item_inner .footer_entry_slider_item_link {
  overflow: hidden;
  border-radius: 8px;
}
.footer_entry .footer_entry_slider_item_inner a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0 10px;
}
.footer_entry .footer_entry_slider_item_inner a::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #033C83;
  content: "";
  scale: 0 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  z-index: 1;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
.footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_text {
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 164px;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_text {
    font-size: 100px;
  }
}
.footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 96px;
  height: 96px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_icon {
    width: 64px;
    height: 64px;
  }
}
.footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 1000px;
  opacity: 0.4;
  content: "";
}
.footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 1000px;
  scale: 0.8;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_icon img {
  position: relative;
  width: 20px;
  height: auto;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .footer_entry .footer_entry_slider_item_inner a .footer_entry_slider_item_link_icon img {
    width: 12px;
  }
}
.mode-pc .footer_entry .footer_entry_slider_item_inner a:hover::after, .mode-sp .footer_entry .footer_entry_slider_item_inner a:active::after {
  scale: 1 1;
}
.mode-pc .footer_entry .footer_entry_slider_item_inner a:hover .footer_entry_slider_item_link_icon::after, .mode-sp .footer_entry .footer_entry_slider_item_inner a:active .footer_entry_slider_item_link_icon::after {
  scale: 1;
  background-color: #fff;
}
.footer_main {
  position: relative;
  overflow: hidden;
  padding: clamp(0px, 5vw, 80px) 0 30.25vw;
}
@media only screen and (max-width: 767px) {
  .footer_main {
    padding: 60px 0 clamp(0px, 80vw, 300px);
  }
}
.footer_main_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer_main_flex {
    display: block;
  }
}
.footer_main_flex_item {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer_main_flex_item {
    width: auto;
  }
}
.footer_bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer_bg_img {
  width: 100%;
}
.footer_bg_img img {
  width: 100%;
  height: auto;
}
.footer_bg_text {
  position: absolute;
  right: clamp(0px, 5vw, 80px);
  bottom: clamp(0px, 3.125vw, 50px);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 800;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .footer_bg_text {
    right: 10px;
    bottom: 24px;
  }
}
.footer_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer_title {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.footer_title_logo {
  max-width: 236px;
  width: 100%;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .footer_title_logo {
    max-width: 220px;
    width: 65.67%;
  }
}
.footer_title_logo img {
  width: 100%;
  height: auto;
}
.footer_title_site {
  margin-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 0.875vw, 14px);
}
@media only screen and (max-width: 767px) {
  .footer_title_site {
    margin-left: 8px;
  }
}
.footer_companysite {
  margin-top: clamp(15px, 1.25vw, 20px);
  font-size: clamp(16px, 1vw, 16px);
}
.footer_companysite a {
  position: relative;
  display: inline-block;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_companysite a::before {
  position: absolute;
  top: 2px;
  right: -22px;
  width: 19px;
  height: 14px;
  content: "";
  background: url("../images/all_icon_blank_white.svg");
}
.footer_companysite a:hover {
  opacity: 0.7;
}
.footer_nav {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer_nav {
    width: auto;
    margin-top: 50px;
  }
}
.footer_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .footer_nav_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer_nav_item {
  position: relative;
  font-size: clamp(12px, 1vw, 16px);
}
@media only screen and (max-width: 767px) {
  .footer_nav_item {
    width: 50%;
    font-size: 15px;
  }
  .footer_nav_item:first-of-type {
    width: 100% !important;
  }
  .footer_nav_item:nth-child(even) {
    width: 45%;
  }
  .footer_nav_item:nth-child(odd) {
    width: 55%;
  }
}
.footer_nav_item:nth-child(n+2) {
  margin-left: clamp(0px, 1.875vw, 30px);
}
@media only screen and (max-width: 767px) {
  .footer_nav_item:nth-child(n+2) {
    margin: 10px 0 0;
  }
}
.footer_nav_item a {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 0;
}
.footer_nav_item a::after {
  background: #033C83;
  content: "";
  display: block;
  height: 1em;
  left: -0.1%;
  position: absolute;
  top: 50%;
  -webkit-transform: scaleX(0) translateY(-50%);
          transform: scaleX(0) translateY(-50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
  z-index: -1;
}
.footer_nav_item a:hover::after {
  -webkit-transform: scaleX(1.02) translateY(-50%);
          transform: scaleX(1.02) translateY(-50%);
}
.footer_nav_item span {
  opacity: 0.6;
}
.footer_nav_item span + * {
  opacity: 0.6;
}
.footer_nav_item_lower {
  margin-top: 5px;
}
.footer_nav_item_lower_item {
  position: relative;
}
.footer_nav_item_lower_item::before {
  content: "－";
  margin-right: 5px;
}
.footer_privacy {
  margin-top: clamp(0px, 5vw, 80px);
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer_privacy {
    margin: 10px 0 0;
    text-align: left;
  }
}
.footer_privacy a {
  position: relative;
  display: inline-block;
  padding-right: 22px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_privacy a::before {
  position: absolute;
  top: 2px;
  right: 0px;
  width: 19px;
  height: 14px;
  content: "";
  background: url("../images/all_icon_blank_white.svg") 50% 50%/cover;
}
@media only screen and (max-width: 767px) {
  .footer_privacy a::before {
    width: 18px;
    height: 13px;
  }
}
.footer_privacy a:hover {
  opacity: 0.7;
}
.footer_copyright {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer_copyright {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------------------
   .main
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.main {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .main {
    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
-----------------------------------------------------------------*/
main.main {
  overflow: hidden;
}

.top .header .header_title,
.top .header .header_entry {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.top .header.is-show .header_title,
.top .header.is-show .header_entry {
  opacity: 1;
  pointer-events: all;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #top_mv
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_mv {
  position: relative;
  overflow: hidden;
}
.top_mv_content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top_mv_content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top_mv_cover.webp");
  background-size: cover;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  opacity: 1;
  z-index: -2;
}
.top_mv_maintxt {
  position: absolute;
  top: 20px;
  left: 50%;
  translate: -50% 0;
  max-width: 1600px;
  width: 100%;
  padding: 0 90px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_maintxt {
    top: 30px;
    padding: 0 20px;
  }
}
.top_mv_maintxt img {
  width: 100%;
  height: auto;
}
.top_mv_hdg {
  position: absolute;
  right: 90px;
  bottom: 45px;
  z-index: 6;
}
@media only screen and (max-width: 767px) {
  .top_mv_hdg {
    max-width: 200px;
    width: 40%;
    right: 30px;
    bottom: 35px;
  }
  .top_mv_hdg img {
    width: 100%;
    height: auto;
  }
}
.top_mv_title {
  position: absolute;
  top: 50%;
  left: 0%;
  translate: 25vh -20%;
  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: 6px;
  z-index: 6;
}
@media only screen and (max-width: 767px) {
  .top_mv_title {
    left: 20px;
    translate: 0 50%;
  }
}
.top_mv_title strong {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.top_mv_title strong:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #033C83;
  border-radius: 7px;
  translate: -50% -50%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  z-index: 1;
}
.top_mv_title strong span {
  position: relative;
  display: inline-block;
  padding: 10px 8px;
  font-size: 20px;
  font-family: 700;
  color: #fff;
  z-index: 2;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_mv_title strong span {
    padding: 5px 4px;
    font-size: 14px;
  }
}
.top_mv_obj .obj1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .top_mv_obj .obj1 {
    display: inline-block;
    width: 40%;
  }
  .top_mv_obj .obj1 img {
    width: 100%;
    height: auto;
  }
}
.top_mv_obj .obj2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .top_mv_obj .obj2 {
    display: inline-block;
    width: 50%;
    z-index: 3;
  }
  .top_mv_obj .obj2 img {
    width: 100%;
    height: auto;
  }
}
.top_mv_obj .obj3 {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_obj .obj3 {
    display: none;
  }
}
.top_mv_obj .obj3 img {
  max-width: 1600px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .top_mv_txtside {
    display: none;
  }
}
.top_mv_txtside .txt1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_mv_txtside .txt2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_mv_txtside img {
  width: auto;
  height: 100%;
}
.top_mv_img1 img {
  height: auto;
}
.top_mv_img1 .img1 {
  position: absolute;
  top: 0%;
  left: 50%;
  translate: -50vh 10%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .top_mv_img1 .img1 {
    top: 0%;
    left: 0;
    translate: -50% 60%;
  }
}
.top_mv_img1 .img1 img {
  width: clamp(134.5px, 16.8125vw, 269px);
}
.top_mv_img1 .img2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -68vh 30%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_img1 .img2 {
    left: 0;
    translate: -20% 55%;
  }
}
.top_mv_img1 .img2 img {
  width: clamp(300px, 31.4375vw, 503px);
}
.top_mv_img1 .img3 {
  position: absolute;
  top: 50%;
  right: 50%;
  translate: calc(50vh + 30%) -50%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_img1 .img3 {
    top: 50%;
    right: 0;
    translate: 50% -150%;
  }
}
.top_mv_img1 .img3 img {
  width: clamp(122.5px, 15.3125vw, 245px);
}
.top_mv_img2 img {
  height: auto;
}
.top_mv_img2 .img1 {
  position: absolute;
  top: 0;
  left: 0;
  translate: -30% -20%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_img2 .img1 {
    top: 0%;
    left: 0;
    translate: -40% -30%;
  }
}
.top_mv_img2 .img1 img {
  width: clamp(328.5px, 41.0625vw, 657px);
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: img2Y;
          animation-name: img2Y;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.top_mv_img2 .img2 {
  position: absolute;
  top: 0;
  right: 0;
  translate: 0% -50%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_img2 .img2 {
    translate: 30% -35%;
    rotate: -10deg;
  }
}
.top_mv_img2 .img2 img {
  width: clamp(234px, 29.25vw, 468px);
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: img2Y;
          animation-name: img2Y;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.top_mv_img2 .img3 {
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 35% 35%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_img2 .img3 {
    translate: 35% 40%;
  }
}
.top_mv_img2 .img3 img {
  width: clamp(252px, 55.25vw, 884px);
  -webkit-animation-duration: 14s;
          animation-duration: 14s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: img2Y;
          animation-name: img2Y;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.top_mv_img2 .img4 {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -35vw -25vh;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_img2 .img4 {
    top: 0;
    left: 0;
    translate: 25vw 10vw;
    z-index: 4;
  }
}
.top_mv_img2 .img4 img {
  width: clamp(91px, 11.375vw, 182px);
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: img2Y;
          animation-name: img2Y;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.top_mv_img2 .img5 {
  position: absolute;
  top: 50%;
  right: 50%;
  translate: 35vw -5vh;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .top_mv_img2 .img5 {
    translate: 35vw 18vh;
  }
}
.top_mv_img2 .img5 img {
  width: clamp(92px, 11.5vw, 184px);
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: img2Y;
          animation-name: img2Y;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@-webkit-keyframes img2Y {
  0% {
    translate: 0 0;
  }
  51% {
    translate: 0 -10%;
  }
  to {
    translate: 0 0;
  }
}
@keyframes img2Y {
  0% {
    translate: 0 0;
  }
  51% {
    translate: 0 -10%;
  }
  to {
    translate: 0 0;
  }
}
.top_mv_main_wrap {
  position: relative;
  z-index: -1;
}
.top_mv_main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 85%;
  aspect-ratio: 1;
  padding: 20px;
  pointer-events: none;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .top_mv_main {
    width: 150vw;
    height: auto;
    padding: 10px;
  }
}
.top_mv_main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top_mv_mask.webp");
  background-size: cover;
  border-radius: 50%;
  z-index: 1;
}
.top_mv_main::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
}
.top_mv_main_circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: calc(100% - 40px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.top_mv_main_circle_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.top_mv_main_circle_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .top_mv_main_circle_inner {
    width: 100vw;
    height: 140vw;
  }
}
.top_mv_main_circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_mv_message {
  padding: 300vh 0 50vh;
  width: 480px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .top_mv_message {
    width: 300px;
  }
}
.top_mv_message_inline {
  position: relative;
  z-index: 1;
}
.top_mv_message_txt {
  color: #131313;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.4px;
}
@media only screen and (max-width: 767px) {
  .top_mv_message_txt {
    font-size: 18px;
  }
}
.top_mv_message_txt:not(:first-child) {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .top_mv_message_txt:not(:first-child) {
    margin-top: 20px;
  }
}
.top_mv_message_txt strong {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.top_mv_message_txt strong:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #033C83;
  border-radius: 4px;
  translate: -50% -50%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  z-index: 1;
}
.top_mv_message_txt strong span {
  position: relative;
  display: inline-block;
  padding: 6px 4px;
  color: #fff;
  z-index: 2;
  line-height: 1;
}
.top_mv_message_btn {
  width: 300px;
  margin-top: 64px;
}
@media only screen and (max-width: 767px) {
  .top_mv_message_btn {
    width: 260px;
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------------------
   .top_works
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.top_works {
  position: relative;
  padding: 246px 0 236px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .top_works {
    padding: 160px 0 160px;
  }
}
.top_works::before {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(1096px, 137vw, 2192px);
  height: clamp(1100.5px, 137.5625vw, 2201px);
  translate: -40% -55%;
  background-image: url(../images/top_works_bg.webp);
  background-size: cover;
  content: "";
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .top_works::before {
    width: clamp(1200px, 312.5vw, 2400px);
    height: clamp(1200px, 312.5vw, 2400px);
    translate: -65% -50%;
  }
}
.top_works .all_wrap_s {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.top_works_hdg {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .top_works_hdg {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 408x;
  }
}
@media only screen and (max-width: 767px) {
  .top_works_hdg img {
    width: 108%;
    height: auto;
    margin-left: -4%;
  }
}
.top_works_txt {
  margin-bottom: 68px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .top_works_txt {
    margin-bottom: 64px;
  }
}
.top_works_coming {
  padding: 130px 0 100px;
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 767px) {
  .top_works_coming {
    padding: 55px 0 44px;
    border-radius: 4px;
  }
}
.top_works_coming_hdg {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_works_coming_hdg {
    font-size: 28px;
  }
}
.top_works_coming_txt {
  font-size: 16px;
  line-height: 2.25;
}
@media only screen and (max-width: 767px) {
  .top_works_coming_txt {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------------------
   animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* init
-----------------------------------------------------------------*/
.top .header_menubtn {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.top_mv_maintxt {
  opacity: 0;
  translate: -50% 20px;
}
.top_mv_hdg {
  opacity: 0;
  translate: 0 20px;
}
.top_mv_title strong:after {
  scale: 0 1;
}
.top_mv_title strong span {
  opacity: 0;
}
.top_mv_obj .obj1 {
  opacity: 0;
}
.top_mv_obj .obj2 {
  opacity: 0;
}
.top_mv_obj .obj3 {
  opacity: 0;
}
.top_mv_txtside {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.top_mv_txtside .txt1 {
  opacity: 0;
}
.top_mv_txtside .txt2 {
  opacity: 0;
}
.top_mv_img1 .img1 img,
.top_mv_img1 .img2 img,
.top_mv_img1 .img3 img {
  translate: 0 20px;
  opacity: 0;
}
.top_mv_img2 .img1 img,
.top_mv_img2 .img2 img,
.top_mv_img2 .img3 img,
.top_mv_img2 .img4 img,
.top_mv_img2 .img5 img {
  scale: 1.2;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, scale 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, scale 0.6s ease-in-out;
}
.top_mv_main_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  scale: 3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top_mv_main::after {
  opacity: 1;
}

.top_works::before {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

/* animated
-----------------------------------------------------------------*/
.load-complete .top .header_menubtn {
  opacity: 1;
  pointer-events: all;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.load-complete .top_mv_maintxt {
  translate: -50% 0;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out, translate 0.6s ease-in-out;
  transition: opacity 0.4s ease-in-out, translate 0.6s ease-in-out;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.load-complete .top_mv_hdg {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out, translate 0.6s ease-in-out;
  transition: opacity 0.4s ease-in-out, translate 0.6s ease-in-out;
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.load-complete .top_mv_title strong:after {
  scale: 1 1;
  -webkit-transition: scale 0.6s ease-in-out;
  transition: scale 0.6s ease-in-out;
}
.load-complete .top_mv_title strong span {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.load-complete .top_mv_title strong:nth-child(1):after,
.load-complete .top_mv_title strong:nth-child(1) span {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.load-complete .top_mv_title strong:nth-child(2):after,
.load-complete .top_mv_title strong:nth-child(2) span {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.load-complete .top_mv_title strong:nth-child(3):after,
.load-complete .top_mv_title strong:nth-child(3) span {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.load-complete .top_mv_obj .obj1,
.load-complete .top_mv_obj .obj2,
.load-complete .top_mv_obj .obj3 {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.load-complete .top_mv_txtside .txt1,
.load-complete .top_mv_txtside .txt2 {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.load-complete .top_mv_img1 .img1 img,
.load-complete .top_mv_img1 .img2 img,
.load-complete .top_mv_img1 .img3 img {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out, translate 0.6s ease-in-out;
  transition: opacity 0.4s ease-in-out, translate 0.6s ease-in-out;
}
.load-complete .top_mv_img1 .img1:nth-child(1) img,
.load-complete .top_mv_img1 .img2:nth-child(1) img,
.load-complete .top_mv_img1 .img3:nth-child(1) img {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.load-complete .top_mv_img1 .img1:nth-child(2) img,
.load-complete .top_mv_img1 .img2:nth-child(2) img,
.load-complete .top_mv_img1 .img3:nth-child(2) img {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.load-complete .top_mv_img1 .img1:nth-child(3) img,
.load-complete .top_mv_img1 .img2:nth-child(3) img,
.load-complete .top_mv_img1 .img3:nth-child(3) img {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.load-complete .top_mv_main_wrap {
  scale: 1;
  -webkit-transition: scale 0.8s ease-in-out;
  transition: scale 0.8s ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.load-complete .top_mv_main::after {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.load-complete .top_mv_message_inline {
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
}

.top_mv_img2.is-animated .img1 img,
.top_mv_img2.is-animated .img2 img,
.top_mv_img2.is-animated .img3 img,
.top_mv_img2.is-animated .img4 img,
.top_mv_img2.is-animated .img5 img {
  scale: 1;
  opacity: 1;
}

.top_mv_main_wrap.is-animated .top_mv_main::after {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.top_mv_content.is-animated::after {
  opacity: 0;
}

.top_mv_img2.is-animated.is-hide .img1 img,
.top_mv_img2.is-animated.is-hide .img2 img,
.top_mv_img2.is-animated.is-hide .img3 img,
.top_mv_img2.is-animated.is-hide .img4 img,
.top_mv_img2.is-animated.is-hide .img5 img {
  opacity: 0;
}

.top_mv_main_wrap.is-animated.is-hide {
  scale: 0;
  -webkit-transition: scale 0.6s ease-in-out;
  transition: scale 0.6s ease-in-out;
}

.top_mv_txtside.is-hide {
  opacity: 0;
}

.top_mv_message_inline.is-hide {
  opacity: 0;
}

.top_works.is-animated::before {
  opacity: 1;
}

.is-scroll-ready .top_mv_maintxt,
.is-scroll-ready .top_mv_hdg,
.is-scroll-ready .top_mv_title strong:after,
.is-scroll-ready .top_mv_title strong span,
.is-scroll-ready .top_mv_obj .obj1,
.is-scroll-ready .top_mv_obj .obj2,
.is-scroll-ready .top_mv_obj .obj3,
.is-scroll-ready .top_mv_txtside .txt1,
.is-scroll-ready .top_mv_txtside .txt2,
.is-scroll-ready .top_mv_img1 .img1 img,
.is-scroll-ready .top_mv_img1 .img2 img,
.is-scroll-ready .top_mv_img1 .img3 img,
.is-scroll-ready .top_mv_main_wrap,
.is-scroll-ready .top_mv_main::after {
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}
.is-scroll-ready .top_mv_main_wrap {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

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

   mixin

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

   keyframes

===========================================================================*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
.appeal .main {
  overflow: hidden;
}
.appeal .all_wrap_s {
  width: 100%;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
[data-figure-modal] {
  cursor: pointer;
}

.js-figureModal {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 9999;
}

.js-figureModal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: calc(100% - 40px);
  overflow-y: auto;
  pointer-events: none;
  position: relative;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
}

.js-figureModal__inner::-webkit-scrollbar {
  display: none;
  opacity: 0;
}

.js-figureModal__content {
  padding: 100px 0;
  pointer-events: auto;
}

.js-figureModal__figure img {
  width: 100%;
}

.js-figureModal__closeButton {
  border: none !important;
  color: #fff;
  margin-top: 20px;
  outline: none !important;
  text-align: center;
}

.js-figureModal__background {
  background-color: hsla(0, 0%, 7%, 0.8);
  bottom: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}

.js-figureModal__image {
  margin: 0 auto;
  max-width: 45rem;
}

.js-figureModal__iframe {
  max-width: 75rem;
  width: min(100vw - 40px, 140vh);
}

.js-figureModal__iframe iframe {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------------------
  .appeal_message
---------------------------------------------------------------------------*/
.appeal_message {
  position: relative;
  z-index: 1;
  padding-top: clamp(0px, 7.5vw, 120px);
}
@media only screen and (max-width: 767px) {
  .appeal_message {
    padding-top: 100px;
  }
}
.appeal_message::after {
  position: absolute;
  bottom: -30vw;
  left: -60%;
  width: 87.5vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#E1AE1F), color-stop(40%, #E1AE1F), color-stop(60%, rgba(255, 240, 70, 0.4)), to(rgba(255, 240, 70, 0.6)));
  background: linear-gradient(to bottom, #E1AE1F 0%, #E1AE1F 40%, rgba(255, 240, 70, 0.4) 60%, rgba(255, 240, 70, 0.6) 100%);
  content: "";
  z-index: -1;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
@media only screen and (max-width: 767px) {
  .appeal_message::after {
    content: none;
  }
}
.appeal_message_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: clamp(35px, 4.375vw, 70px);
}
@media only screen and (max-width: 767px) {
  .appeal_message_content {
    display: block;
  }
}
.appeal_message_title {
  width: 43.33%;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 800;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .appeal_message_title {
    width: auto;
  }
}
.appeal_message_body {
  max-width: 680px;
  width: 56.66%;
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  .appeal_message_body {
    max-width: none;
    width: auto;
    margin-top: 40px;
    padding-left: 0;
  }
}
.appeal_message_text {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .appeal_message_text {
    font-weight: 18px;
  }
}
.appeal_message_text:nth-child(n+2) {
  margin-top: 1em;
}
.appeal_message_sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(20px, 1.875vw, 30px);
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .appeal_message_sign {
    margin-top: 30px;
  }
}
.appeal_message_sign_s {
  margin-right: 10px;
  font-size: clamp(13px, 1vw, 16px);
}
@media only screen and (max-width: 767px) {
  .appeal_message_sign_s {
    font-weight: 16px;
  }
}
.appeal_message_sign_l {
  font-size: clamp(16px, 1.5vw, 24px);
}
@media only screen and (max-width: 767px) {
  .appeal_message_sign_l {
    font-weight: 20px;
  }
}
.appeal_message .all_loop {
  margin-top: clamp(60px, 7.5vw, 120px);
}
@media only screen and (max-width: 767px) {
  .appeal_message .all_loop {
    margin-top: 90px;
  }
}
.appeal_message .all_loop_list {
  gap: 0 3vw;
}
@media only screen and (max-width: 767px) {
  .appeal_message .all_loop_list {
    gap: 0 20px;
  }
}
.appeal_message .all_loop_list_item {
  width: 164.8vw;
}
@media only screen and (max-width: 767px) {
  .appeal_message .all_loop_list_item {
    width: 1705px;
  }
}
.appeal_message .all_loop_list_item img {
  height: 13.5vw;
}
@media only screen and (max-width: 767px) {
  .appeal_message .all_loop_list_item img {
    width: 100%;
    height: 140px;
  }
}

/*--------------------------------------------------------------------------
  .appeal_business
---------------------------------------------------------------------------*/
.appeal_business {
  position: relative;
  margin-top: clamp(30px, 3.125vw, 50px);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .appeal_business {
    margin-top: 40px;
  }
}
.appeal_business_content {
  position: relative;
  padding: clamp(70px, 9.25vw, 148px) clamp(50px, 6.625vw, 106px) clamp(70px, 9.25vw, 148px) clamp(65px, 8.375vw, 134px);
  background: #fff;
  border-radius: 4vw;
}
@media only screen and (max-width: 767px) {
  .appeal_business_content {
    margin: 0 -14px;
    padding: clamp(60px, 17.0666666667vw, 64px) 24px;
  }
}
.appeal_business .all_content_header {
  padding-bottom: 6vw;
}
@media only screen and (max-width: 767px) {
  .appeal_business .all_content_header {
    padding-bottom: 20px;
  }
}
.appeal_business_mv {
  position: absolute;
  top: 9.25vw;
  right: clamp(50px, 6.625vw, 106px);
  aspect-ratio: 528/598;
  max-width: 527px;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .appeal_business_mv {
    position: relative;
    top: inherit;
    right: inherit;
    width: 100%;
    margin-top: 40px;
  }
}
.appeal_business_mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.appeal_business_text {
  width: 50%;
  margin-top: clamp(20px, 1.875vw, 30px);
  font-size: clamp(16px, 1vw, 16px);
  font-weight: 700;
  line-height: 2;
  color: #131313;
}
@media only screen and (max-width: 767px) {
  .appeal_business_text {
    max-width: none;
    width: auto;
  }
}
.appeal_business_example {
  margin-top: clamp(40px, 5.25vw, 84px);
  padding: clamp(0px, 3.75vw, 60px) clamp(0px, 4vw, 64px) clamp(0px, 4.25vw, 68px);
  background: #FDF7E9;
  border-radius: clamp(20px, 1.5vw, 24px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .appeal_business_example {
    padding: 40px 20px;
    border-radius: 12px;
  }
}
.appeal_business_example_title {
  position: relative;
  display: inline-block;
}
.appeal_business_example_title_fuki {
  position: absolute;
  top: -24px;
  left: -74px;
  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;
  font-size: 16px;
  font-weight: 800;
  width: 64px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: #033C83;
}
@media only screen and (max-width: 767px) {
  .appeal_business_example_title_fuki {
    top: -4px;
    left: -54px;
    width: 48px;
    font-size: 13px;
  }
}
.appeal_business_example_title_fuki::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 2px;
  width: 14px;
  aspect-ratio: 1/1;
  background: #033C83;
  -webkit-transform: rotate(80deg);
          transform: rotate(80deg);
}
@media only screen and (max-width: 767px) {
  .appeal_business_example_title_fuki::after {
    right: 1px;
    bottom: 5px;
    font-size: 13px;
  }
}
.appeal_business_example_title_text {
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 800;
  color: #131313;
}
@media only screen and (max-width: 767px) {
  .appeal_business_example_title_text {
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.appeal_business_example_title_text span {
  border-bottom: 3px dashed #131313;
}
@media only screen and (max-width: 767px) {
  .appeal_business_example_title_text span {
    display: inline-block;
  }
}
.appeal_business_example_gallery {
  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: flex-start;
  margin-top: clamp(23px, 3.5vw, 56px);
}
@media only screen and (max-width: 767px) {
  .appeal_business_example_gallery {
    display: block;
    margin-top: 30px;
  }
}
.appeal_business_example_item {
  max-width: 198px;
  width: 18.43%;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  .appeal_business_example_item {
    max-width: none;
    min-width: 140px;
    width: 44.44%;
  }
}
.appeal_business_example_item:nth-child(even) {
  margin-top: clamp(25px, 3.125vw, 50px);
}
@media only screen and (max-width: 767px) {
  .appeal_business_example_item:nth-child(even) {
    margin: -14% 0 -10% auto;
  }
}
.appeal_business_example_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.appeal_business_promotion {
  margin-top: clamp(38px, 4.75vw, 76px);
  border-radius: 0.75rem;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .appeal_business_promotion {
    margin-top: 48px;
  }
}
.appeal_business_promotion img {
  max-width: 100%;
  height: auto;
}
.appeal_business_promotion:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------------------
  .appeal_numbers
---------------------------------------------------------------------------*/
.appeal_numbers {
  position: relative;
  z-index: 3;
  padding-top: clamp(0px, 8.75vw, 140px);
}
@media only screen and (max-width: 767px) {
  .appeal_numbers {
    padding-top: 100px;
  }
}
.appeal_numbers .all_content_header_copy {
  position: relative;
  display: inline-block;
}
.appeal_numbers .all_content_header_copy::after {
  content: "?";
  position: absolute;
  top: -0.5rem;
  right: -2.5rem;
  font-size: clamp(40px, 3.625vw, 58px);
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media only screen and (max-width: 767px) {
  .appeal_numbers .all_content_header_copy::after {
    top: inherit;
    right: 0.5rem;
    bottom: -0.2rem;
    font-size: 38px;
  }
}
.appeal_numbers_content {
  margin-top: clamp(35px, 4.375vw, 70px);
}
@media only screen and (max-width: 767px) {
  .appeal_numbers_content {
    margin-top: 50px;
  }
}
.appeal_numbers_content_title {
  display: inline-block;
  margin-bottom: clamp(5px, 0.625vw, 10px);
  padding-bottom: 6px;
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 800;
  border-bottom: 2px dashed #fff;
  line-height: 1.3;
}
.appeal_numbers_content_item {
  margin-top: clamp(12px, 1.5vw, 24px);
}
.appeal_numbers_content_item img {
  width: 100%;
  height: auto;
}
.appeal_numbers_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .appeal_numbers_flex {
    display: block;
  }
}
.appeal_numbers_flex_item {
  width: 49%;
}
@media only screen and (max-width: 767px) {
  .appeal_numbers_flex_item {
    width: auto;
  }
}
.appeal_numbers_flex._three .appeal_numbers_flex_item {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  .appeal_numbers_flex._three .appeal_numbers_flex_item {
    width: auto;
  }
}

/*--------------------------------------------------------------------------
  .appeal_welfare
---------------------------------------------------------------------------*/
.appeal_welfare {
  position: relative;
  z-index: 3;
  background: #fff;
  margin-top: clamp(70px, 9.25vw, 148px);
  padding: clamp(70px, 8.75vw, 140px) 0;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare {
    margin-top: 100px;
    padding: 100px 0;
  }
}
.appeal_welfare_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: clamp(40px, 3.75vw, 60px);
  color: #131313;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare_list {
    display: block;
  }
}
.appeal_welfare_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 33.3333%;
  width: 1px;
  height: 100%;
  background: #ddd;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare_list::before {
    content: none;
  }
}
.appeal_welfare_list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 66.6666%;
  width: 1px;
  height: 100%;
  background: #ddd;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare_list::after {
    content: none;
  }
}
.appeal_welfare_item {
  width: 33.3333333333%;
  padding: 2% 3%;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare_item {
    width: auto;
    padding: 20px 0;
  }
}
.appeal_welfare_item:nth-child(3n+1) {
  padding-left: 0;
}
.appeal_welfare_item:nth-child(1), .appeal_welfare_item:nth-child(2), .appeal_welfare_item:nth-child(3) {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare_item:nth-child(1), .appeal_welfare_item:nth-child(2), .appeal_welfare_item:nth-child(3) {
    padding-top: 20px;
  }
}
.appeal_welfare_item_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.appeal_welfare_item_header_icon {
  max-width: 40px;
  aspect-ratio: 1/1;
}
.appeal_welfare_item_header_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.appeal_welfare_item_header_text {
  margin-left: clamp(10px, 1vw, 16px);
  font-size: clamp(12px, 1.5vw, 24px);
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare_item_header_text {
    font-size: 20px;
  }
}
.appeal_welfare_item_header_text small {
  font-size: clamp(10px, 0.875vw, 14px);
}
.appeal_welfare_item_text {
  margin-top: 15px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .appeal_welfare_item_text {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------------
  .appeal_gallery
---------------------------------------------------------------------------*/
.appeal_gallery {
  position: relative;
  z-index: 3;
  padding-top: clamp(70px, 8.75vw, 140px);
  padding-bottom: clamp(0px, 12.5vw, 200px);
}
@media only screen and (max-width: 767px) {
  .appeal_gallery {
    padding-top: 100px;
    padding-bottom: clamp(0px, 43.7333333333vw, 164px);
  }
}
.appeal_gallery .all_loop {
  margin-top: clamp(35px, 4.375vw, 70px);
}
.appeal_gallery .all_loop_list {
  gap: 0 1.4vw;
}
@media only screen and (max-width: 767px) {
  .appeal_gallery .all_loop_list {
    gap: 0 20px;
  }
}
.appeal_gallery .all_loop_list_item {
  width: 122.375vw;
}
@media only screen and (max-width: 767px) {
  .appeal_gallery .all_loop_list_item {
    width: 1470px;
  }
}
.appeal_gallery .all_loop_list_item img {
  height: 26.125vw;
}
@media only screen and (max-width: 767px) {
  .appeal_gallery .all_loop_list_item img {
    width: 100%;
    height: 320px;
  }
}

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

   mixin

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

   keyframes

===========================================================================*/
/*--------------------------------------------------------------------------
   animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* init
-----------------------------------------------------------------*/
.appeal_business_example_gallery .appeal_business_example_item {
  opacity: 0;
  translate: 0 50px;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out;
}

.appeal_numbers_content .appeal_numbers_content_item {
  opacity: 0;
  translate: 0 50px;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out;
}

/* animated
-----------------------------------------------------------------*/
.appeal_business_example_gallery.is-animated .appeal_business_example_item {
  opacity: 1;
  translate: 0 0;
}
.appeal_business_example_gallery.is-animated .appeal_business_example_item:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.appeal_business_example_gallery.is-animated .appeal_business_example_item:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.appeal_business_example_gallery.is-animated .appeal_business_example_item:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.appeal_business_example_gallery.is-animated .appeal_business_example_item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.appeal_business_example_gallery.is-animated .appeal_business_example_item:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.appeal_numbers_content.is-animated .appeal_numbers_content_item {
  opacity: 1;
  translate: 0 0;
}
.appeal_numbers_content.is-animated .appeal_numbers_content_item[data-no="1"] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.appeal_numbers_content.is-animated .appeal_numbers_content_item[data-no="2"] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.appeal_numbers_content.is-animated .appeal_numbers_content_item[data-no="3"] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.appeal_numbers_content.is-animated .appeal_numbers_content_item[data-no="4"] {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.appeal_numbers_content.is-animated .appeal_numbers_content_item[data-no="5"] {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.appeal_numbers_content.is-animated .appeal_numbers_content_item[data-no="6"] {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.appeal_numbers_content.is-animated .appeal_numbers_content_item[data-no="7"] {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
/*# sourceMappingURL=style.css.map */