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

   mixin

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

   keyframes

===========================================================================*/
/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html {
  position: relative;
  min-height: 100%;
  font-size: 62.5%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  html {
    width: 100%;
    height: 100%;
  }
}
html.load-complete {
  overflow: visible;
}
html.is-menuopen, 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: #000;
  font-family: "YakuHanJP", "Noto sans JP", "Hiragino Sans", "Zen Kaku Gothic New", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  -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: 1.4rem;
    line-height: 1.5;
  }
}

.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;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* Placeholder
-----------------------------------------------*/
::-webkit-input-placeholder {
  color: #B7BEC4;
}

::-moz-placeholder {
  color: #B7BEC4;
}

:-ms-input-placeholder {
  color: #B7BEC4;
}

:-moz-placeholder {
  color: #B7BEC4;
}

/*--------------------------------------------------------------------------
   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
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   l-page
---------------------------------------------------------------------------*/
.l-page-wrapper {
  opacity: 0;
}

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

.load-complete .l-page-wrapper {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .l-page-wrapper {
    width: 100%;
    height: 100%;
  }
  .l-page {
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .is-loading .l-page {
    overflow-y: hidden;
  }
}
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   l-wrap
---------------------------------------------------------------------------*/
.l-wrap {
  position: relative;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.l-wrap-b {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3.125vw;
}

.l-wrap-s {
  position: relative;
  max-width: calc(1040px + 6.25vw);
  width: 100%;
  margin: 0 auto;
  padding: 0 3.125vw;
}

.c-wrap {
  padding: 0 76px;
}
@media screen and (max-width: 1200px) {
  .c-wrap {
    padding: 0 7.6%;
  }
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .l-wrap {
    max-width: none;
    padding: 0 15px;
  }
  .l-wrap-s {
    max-width: none;
    padding: 0 15px;
  }
  .c-wrap {
    padding: 0 20px;
  }
}
/* print
=================================================================*/
@media print {
  .l-wrap, .l-wrap-s, .c-wrap {
    padding: 0 20px !important;
    max-width: 100%;
    margin: 0 auto !important;
  }
}
/*--------------------------------------------------------------------------
   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%;
}

/*--------------------------------------------------------------------------
   c-btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.c-btn {
  position: relative;
  z-index: 0;
  width: 376px;
  height: 78px;
  border-radius: 50px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn {
    width: 275px;
    height: 60px;
  }
}
.c-btn::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 9;
}
.c-btn a,
.c-btn input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: #ccc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn a,
  .c-btn input {
    font-size: 13px;
  }
}
.c-btn--blue::before {
  right: 24px;
  width: 11px;
  height: 18px;
  background: url("../../asset/img/common/ico_arrow.svg") no-repeat 50% 50%/cover;
}
@media only screen and (max-width: 767px) {
  .c-btn--blue::before {
    width: 6px;
    height: 9px;
  }
}
.c-btn--blue a,
.c-btn--blue input {
  background: #103fc4;
}
.mode-pc .c-btn--blue a:hover, .mode-sp .c-btn--blue a:active,
.mode-pc .c-btn--blue input:hover,
.mode-sp .c-btn--blue input:active {
  background: #000;
}
.c-btn--white::before {
  content: none;
}
.c-btn--white a,
.c-btn--white input {
  background: #fff;
  color: #000;
}
.c-btn--white a::before,
.c-btn--white input::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  width: 11px;
  height: 18px;
  background: url("../../asset/img/common/ico_arrow_black.svg") no-repeat 50% 50%/cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-btn--white a::before,
  .c-btn--white input::before {
    width: 6px;
    height: 9px;
  }
}
.mode-pc .c-btn--white a:hover, .mode-sp .c-btn--white a:active,
.mode-pc .c-btn--white input:hover,
.mode-sp .c-btn--white input:active {
  background: #cae5f2;
}
.c-btn--blueback::before {
  left: 24px;
  width: 11px;
  height: 18px;
  background: url("../../asset/img/common/ico_arrow.svg") no-repeat 50% 50%/cover;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (max-width: 767px) {
  .c-btn--blueback::before {
    width: 6px;
    height: 9px;
  }
}
.c-btn--blueback a,
.c-btn--blueback input {
  background: #103fc4;
}
.mode-pc .c-btn--blueback a:hover, .mode-sp .c-btn--blueback a:active,
.mode-pc .c-btn--blueback input:hover,
.mode-sp .c-btn--blueback input:active {
  background: #000;
}
.c-btn--back::before {
  left: 24px;
  width: 11px;
  height: 18px;
  background: url("../../asset/img/common/ico_arrow.svg") no-repeat 50% 50%/cover;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (max-width: 767px) {
  .c-btn--back::before {
    width: 6px;
    height: 9px;
  }
}
.c-btn--back a,
.c-btn--back input {
  background: #5A5A5C;
}
.mode-pc .c-btn--back a:hover, .mode-sp .c-btn--back a:active,
.mode-pc .c-btn--back input:hover,
.mode-sp .c-btn--back input:active {
  background: #000;
}
.c-btn--article::before {
  left: 24px;
  width: 11px;
  height: 18px;
  background: url("../../asset/img/common/ico_arrow.svg") no-repeat 50% 50%/cover;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (max-width: 767px) {
  .c-btn--article::before {
    width: 6px;
    height: 9px;
  }
}
.c-btn--article a,
.c-btn--article input {
  background: #103fc4;
}
.mode-pc .c-btn--article a:hover, .mode-sp .c-btn--article a:active,
.mode-pc .c-btn--article input:hover,
.mode-sp .c-btn--article input:active {
  background: #000;
}
.c-btn--middle {
  width: 372px;
  height: 52px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .c-btn--middle {
    width: 100%;
    font-size: 16px;
  }
}
.c-btn--big {
  width: 312px;
  height: 76px;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .c-btn--big {
    width: 100%;
    height: 60px;
    font-size: 14px;
  }
}
.c-btn--mail span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.c-btn--mail span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background: url("../../assets/img/common/ico_mail.svg") no-repeat 50% 50%/cover;
  content: "";
}

.c-btn-blue {
  position: relative;
  width: 376px;
  height: 78px;
  border-radius: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-btn-blue {
    width: 275px;
    height: 60px;
  }
}
.c-btn-blue::before {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 18px;
  background: url("../../asset/img/common/ico_arrow.svg") no-repeat 50% 50%/cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-btn-blue::before {
    width: 6px;
    height: 9px;
  }
}
.c-btn-blue a,
.c-btn-blue input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: #103fc4;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn-blue a,
  .c-btn-blue input {
    font-size: 13px;
  }
}
.mode-pc .c-btn-blue a:hover, .mode-sp .c-btn-blue a:active,
.mode-pc .c-btn-blue input:hover,
.mode-sp .c-btn-blue input:active {
  background: #000;
}

.c-btn-gradation {
  width: 180px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-btn-gradation {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
}
.c-btn-gradation a, .c-btn-gradation > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#67e154), color-stop(50%, #43cb5c), to(#32b46f));
  background: linear-gradient(to right, #67e154 0%, #43cb5c 50%, #32b46f 100%);
  -webkit-box-shadow: 7px 7px 15px rgba(54, 182, 114, 0.4);
          box-shadow: 7px 7px 15px rgba(54, 182, 114, 0.4);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .c-btn-gradation a:hover, .mode-sp .c-btn-gradation a:active, .mode-pc .c-btn-gradation > span:hover, .mode-sp .c-btn-gradation > span:active {
  opacity: 0.8;
}

.c-btn-basic {
  display: inline-block;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-btn-basic {
    font-size: 14px;
  }
}
.c-btn-basic a, .c-btn-basic > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 17px 35px;
  border: 2px solid #0071bc;
  border-radius: 60px;
  background-color: #fff;
  font-weight: 600;
  color: #0071bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn-basic a, .c-btn-basic > span {
    padding: 16px 36px;
  }
}
.mode-pc .c-btn-basic a:hover, .mode-sp .c-btn-basic a:active, .mode-pc .c-btn-basic > span:hover, .mode-sp .c-btn-basic > span:active {
  background-color: #0071bc;
  color: #fff;
}

.c-btn-trans {
  width: 482px;
  height: 76px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-btn-trans {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}
.c-btn-trans a, .c-btn-trans > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-trans a::before, .c-btn-trans > span::before {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../../assets/img/common/ico_arrow_circle_white.svg") no-repeat 50% 50%/cover;
  content: "";
}
.mode-pc .c-btn-trans a:hover, .mode-sp .c-btn-trans a:active, .mode-pc .c-btn-trans > span:hover, .mode-sp .c-btn-trans > span:active {
  opacity: 0.8;
}

.c-btn-circle {
  width: 482px;
  height: 76px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-btn-circle {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}
.c-btn-circle a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  color: #0071bc;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-circle a::before {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../../assets/img/common/ico_arrow_circle.svg") no-repeat 50% 50%/cover;
  content: "";
}
.mode-pc .c-btn-circle a:hover, .mode-sp .c-btn-circle a:active {
  opacity: 0.8;
}

.c-btn-box {
  display: inline-block;
  border: 1px solid #C8C8C8;
  border-radius: 8px;
}
.c-btn-box__txt {
  position: relative;
  font-size: clamp(15px, 1.0416666667vw, 20px);
  font-weight: 700;
}
.c-btn-box__txt.is-pdf::after {
  content: "PDF";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 10px;
  padding: 3px 8px;
  background: #ff0000;
  border-radius: 20px;
  font-size: clamp(1rem, 0.72vw, 1.4rem);
  color: #fff;
  line-height: 1;
}
.c-btn-box__ico {
  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: 50%;
  right: 1.56vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 50%;
}
.c-btn-box__ico img {
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-btn-box a {
  display: block;
  position: relative;
  padding: 25px 6vw 25px 25px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-box a:hover {
  background-color: #0071bc;
  color: #fff;
}
.c-btn-box.mi-pc {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .c-btn-box.mi-pc {
    display: none;
  }
}

.c-btn-policy {
  display: inline-block;
  width: auto;
  height: 76px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .c-btn-policy {
    width: 100%;
    height: 85px;
    font-size: 13px;
  }
}
.c-btn-policy a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #C8C8C8;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn-policy a {
    padding: 0 15px;
    border-radius: 4px;
  }
}
.c-btn-policy a i {
  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: relative;
  width: 46px;
  height: 46px;
  margin-left: 50px;
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn-policy a i {
    width: 35px;
    height: 35px;
  }
}
.c-btn-policy a i img {
  width: 9px;
  height: 9px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.mode-pc .c-btn-policy a:hover, .mode-sp .c-btn-policy a:active {
  border: 1px solid #0071bc;
  background-color: #0071bc;
  color: #fff;
}

.c-btn-more {
  width: 376px;
  height: 78px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-btn-more {
    width: 270px;
    height: 60px;
  }
}
.c-btn-more button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #1D1D1D;
  border-radius: 60px;
  font-size: clamp(15px, 1.0416666667vw, 20px);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-more button::before, .c-btn-more button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  width: 18px;
  height: 2px;
  background: #1d1d1d;
}
@media only screen and (max-width: 767px) {
  .c-btn-more button::before, .c-btn-more button::after {
    right: 6%;
    width: 12px;
  }
}
.c-btn-more button::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-btn-more button.more {
  display: none;
}
.c-btn-more button.more.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mode-pc .c-btn-more button.more:hover, .mode-sp .c-btn-more button.more:active {
  background: #efefef;
  opacity: 0.8;
}
.c-btn-more button.close {
  display: none;
  background: #5A5A5C;
  color: #fff;
}
.c-btn-more button.close::before {
  background: #fff;
}
.c-btn-more button.close::after {
  content: none;
}
.c-btn-more button.close.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mode-pc .c-btn-more button.close:hover, .mode-sp .c-btn-more button.close:active {
  opacity: 0.8;
}

/*--------------------------------------------------------------------------
   c-ico
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.c-ico-link {
  width: 80px;
  aspect-ratio: 1/1;
  text-align: center;
}
.c-ico-link a, .c-ico-link > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #ccc;
  color: #fff;
}
.c-ico-link a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .c-ico-link a:hover, .mode-sp .c-ico-link a:active {
  opacity: 0.8;
}
.c-ico-link svg {
  fill: #fff;
}

.c-ico-arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-ico-arrow {
    width: 34px;
    height: 34px;
  }
}
.c-ico-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(-45deg) translate(-30%, -80%);
          transform: rotate(-45deg) translate(-30%, -80%);
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-ico-arrow::before {
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}

.c-ico-blank {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-ico-blank {
    width: 35px;
    height: 35px;
  }
}
.c-ico-blank::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/common/ico_blank.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-ico-blank::before {
    width: 15px;
    height: 15px;
  }
}

.c-ico-blank2 {
  position: relative;
  top: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.c-ico-blank2::before {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/ico_blank.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-ico-blank2::before {
    width: 15px;
    height: 15px;
  }
}
.c-ico-blank2--big {
  top: 10px;
  width: 36px;
  height: 36px;
}
.c-ico-blank2--big::before {
  width: 36px;
  height: 36px;
}

.c-ico-pdf {
  display: inline-block;
  position: relative;
  top: -2px;
  margin-left: 12px;
  padding: 3px 8px 4px 8px;
  font-family: "Oswald", sans-serif;
  font-size: 0.73vw;
  background-color: #e40004;
  border-radius: 30px;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .c-ico-pdf {
    font-size: 1rem;
  }
}

.c-ico-xls {
  display: inline-block;
  position: relative;
  top: -2px;
  margin-left: 12px;
  padding: 3px 8px 4px 8px;
  font-family: "Oswald", sans-serif;
  font-size: 0.73vw;
  background-color: #009542;
  border-radius: 30px;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .c-ico-xls {
    font-size: 1rem;
  }
}

.c-ico-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #fff100;
  border-radius: 50%;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 0.9375vw, 18px);
}
@media only screen and (max-width: 767px) {
  .c-ico-num {
    width: 34px;
    height: 34px;
  }
}

/*--------------------------------------------------------------------------
   c-sec-header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.c-sec-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 50px;
  color: #0071bc;
}
@media only screen and (max-width: 767px) {
  .c-sec-header {
    margin-bottom: 30px;
    padding: 0;
  }
}
.c-sec-header__hdg-en {
  font-family: "Oswald", sans-serif;
  font-size: 4.79vw; /*92*/
  letter-spacing: -0.05rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .c-sec-header__hdg-en {
    font-size: 4.2rem;
  }
}
.c-sec-header__hdg-en span {
  display: inline-block;
}
.c-sec-header__hdg-ja {
  position: relative;
  padding-left: 2.08vw;
  font-size: 2.81vw; /*54*/
}
@media only screen and (max-width: 767px) {
  .c-sec-header__hdg-ja {
    padding-left: 15px;
    font-size: 1.4rem;
  }
}
.c-sec-header__hdg-ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 70%;
  background-color: #0071bc;
  -webkit-transform: rotate(30deg) translateY(-50%);
          transform: rotate(30deg) translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .c-sec-header__hdg-ja::before {
    width: 1px;
  }
}
.c-sec-header--white {
  color: #fff;
}
.c-sec-header--white .c-sec-header__hdg-ja::before {
  background-color: #fff;
}

/* animation
-----------------------------------------------------------------*/
.c-sec-header__hdg.is-animate .c-sec-header__hdg-en span {
  opacity: 0;
  -webkit-transform: rotateY(-90deg);
          transform: rotateY(-90deg);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.c-sec-header__hdg.is-animate .c-sec-header__hdg-ja {
  opacity: 0;
  translate: 0 50%;
}

.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span {
  -webkit-animation: rotateAnimation 1s forwards;
          animation: rotateAnimation 1s forwards;
}
@-webkit-keyframes rotateAnimation {
  to {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotateAnimation {
  to {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(2) {
  -webkit-animation-delay: 0.025s;
          animation-delay: 0.025s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(3) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(4) {
  -webkit-animation-delay: 0.075s;
          animation-delay: 0.075s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(5) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(6) {
  -webkit-animation-delay: 0.125s;
          animation-delay: 0.125s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(7) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(8) {
  -webkit-animation-delay: 0.175s;
          animation-delay: 0.175s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(9) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(10) {
  -webkit-animation-delay: 0.225s;
          animation-delay: 0.225s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(11) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(12) {
  -webkit-animation-delay: 0.275s;
          animation-delay: 0.275s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(13) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(14) {
  -webkit-animation-delay: 0.325s;
          animation-delay: 0.325s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(15) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(16) {
  -webkit-animation-delay: 0.375s;
          animation-delay: 0.375s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(17) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(18) {
  -webkit-animation-delay: 0.425s;
          animation-delay: 0.425s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(19) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-en span:nth-child(20) {
  -webkit-animation-delay: 0.475s;
          animation-delay: 0.475s;
}
.c-sec-header__hdg.is-animated .c-sec-header__hdg-ja {
  opacity: 1;
  translate: 0 0;
  -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;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* print
-----------------------------------------------------------------*/
@media print {
  /* アニメーション無効化 */
  .c-sec-header__hdg,
  .c-sec-header__hdg-en span,
  .c-sec-header__hdg-ja {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  /* 初期状態で非表示/変形を上書きして常時表示に */
  .c-sec-header__hdg.is-animate .c-sec-header__hdg-en span,
  .c-sec-header__hdg.is-animated .c-sec-header__hdg-en span {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .c-sec-header__hdg.is-animate .c-sec-header__hdg-ja,
  .c-sec-header__hdg.is-animated .c-sec-header__hdg-ja {
    opacity: 1 !important;
    translate: 0 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
/*--------------------------------------------------------------------------
   form
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
input,
button,
select,
textarea {
  border-radius: 0;
  -ms-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

form input,
form textarea {
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
}

/* 入力 */
.c-input {
  width: 100%;
  height: 90px;
  height: 4.6875vw;
  padding: 0 10px 0 2vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff;
  font-size: clamp(1.5rem, 1.1vw, 2rem);
}
@media only screen and (max-width: 767px) {
  .c-input {
    height: 56px;
    padding: 0 15px;
    font-size: 13px;
  }
}
.c-input--short {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .c-input--short {
    width: 60%;
  }
}

p + .c-input {
  margin-top: 10px;
}

.c-textarea {
  width: 100%;
  max-height: 240px;
  padding: 1.45vw 10px 15px 2vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  background: #fff;
  font-size: clamp(1.5rem, 1.1vw, 2rem);
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .c-textarea {
    max-height: 120px;
    padding: 15px;
    font-size: 13px;
  }
}

.c-input.ipt-err,
.c-textarea.ipt-err {
  background-color: #ffe4e4;
}

/* radio */
.c-radio + label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-radio + label {
    padding-left: 20px;
  }
}
.c-radio + label::before, .c-radio + label::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: "";
}
.c-radio + label::before {
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #b7b7b7;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .c-radio + label::before {
    width: 14px;
    height: 14px;
  }
}
.c-radio + label::after {
  left: 4px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-color: #0071bc;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .c-radio + label::after {
    left: 3px;
    margin-top: -4px;
    width: 8px;
    height: 8px;
  }
}
.c-radio:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.radio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -25px;
  gap: 15px 40px;
}
@media only screen and (max-width: 767px) {
  .radio-list {
    margin: 0 -20px -15px 0;
    gap: 15px 25px;
  }
}
.radio-list__item {
  font-size: clamp(1.5rem, 1.1vw, 2rem);
  font-weight: 500;
}

.radio-list__item {
  display: block;
  /*label {
    span {
      position: relative;
      display: inline-block;
      padding-left: 30px;
      border-radius: 50%;
      box-sizing: border-box;
      vertical-align: middle;
      cursor: pointer;

      @include mq-sp {
        padding-left: 25px;
      }

      &::before,
      &::after {
        position: absolute;
        top: 50%;
        border-radius: 50%;
        content: '';
      }

      &::before {
        left: 0;
        width: 20px;
        height: 20px;
        transform: translateY(-50%);
        border: 1px solid #b7b7b7;
        background: #fff;

        @include mq-sp {
          width: 18px;
          height: 18px;
        }
      }

      &::after {
        left: 4px;
        width: 12px;
        height: 12px;
        margin-top: -6px;
        background-color: $key-color;
        opacity: 0;

        @include mq-sp {
          width: 10px;
          height: 10px;
          margin-top: -5px;
        }
      }
    }

    input:checked + span::after {
      opacity: 1;
      transform: scale(1);
    }
  }*/
}

/* checkbox */
.c-checkbox {
  visibility: hidden;
  position: absolute;
}
.c-checkbox + label {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 40px;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-checkbox + label {
    padding-left: 22px;
  }
}
.c-checkbox + label::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #CFD4E1;
  border-radius: 2px;
  background: #fff;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-checkbox + label::before {
    top: 3px;
    width: 14px;
    height: 14px;
  }
}
.c-checkbox + label::after {
  display: block;
  position: absolute;
  top: 8px;
  left: 6px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #103fc4;
  border-bottom: 3px solid #103fc4;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .c-checkbox + label::after {
    top: 2px;
    left: 5px;
    width: 8px;
    height: 14px;
  }
}

.c-checkbox:checked + label::after {
  opacity: 1;
}

.mwform-checkbox-field .c-checkbox + span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 30px;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .mwform-checkbox-field .c-checkbox + span {
    padding-left: 28px;
  }
}
.mwform-checkbox-field .c-checkbox + span::before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #b7b7b7;
  background: #fff;
  content: "";
}
@media only screen and (max-width: 767px) {
  .mwform-checkbox-field .c-checkbox + span::before {
    top: 0;
    width: 20px;
    height: 20px;
  }
}
.mwform-checkbox-field .c-checkbox + span::after {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #0071bc;
  border-bottom: 3px solid #0071bc;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .mwform-checkbox-field .c-checkbox + span::after {
    top: 2px;
    left: 6px;
    width: 8px;
    height: 14px;
  }
}
.mwform-checkbox-field .c-checkbox:checked + span::after {
  opacity: 1;
}

/* select */
.c-select {
  position: relative;
  display: inline-block;
  width: 230px;
  height: 52px;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #333;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-select {
    height: 50px;
  }
}
.c-select.ipt-err {
  background-color: #ffe4e4;
}
.c-select::before {
  position: absolute;
  display: inline-block;
  content: "";
  pointer-events: none;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 9px;
  background: url("../../asset/img/common/ico_arrow_down.svg") no-repeat 0 0/cover;
}
@media only screen and (max-width: 767px) {
  .c-select::before {
    right: 14px;
  }
}
.c-select select {
  width: 100%;
  height: 52px;
  font-size: clamp(1.3rem, 0.93vw, 1.8rem);
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .c-select select {
    height: 50px;
    padding: 0 10px;
    font-size: 1.3rem;
  }
}

/* 幅 */
.ipt-w132 {
  width: 132px;
}
@media only screen and (max-width: 767px) {
  .ipt-w132 {
    width: 70px;
  }
}

.ipt-w220 {
  width: 220px;
}
@media only screen and (max-width: 767px) {
  .ipt-w220 {
    width: 100%;
  }
}

.ipt-w270 {
  width: 270px;
}
@media only screen and (max-width: 767px) {
  .ipt-w270 {
    width: 100%;
  }
}

.ipt-w320 {
  width: 320px;
}
@media only screen and (max-width: 767px) {
  .ipt-w320 {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .ipt-sp-w70 {
    width: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .ipt-sp-w100 {
    width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .ipt-sp-w150 {
    width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .ipt-sp-w200 {
    width: 200px;
  }
}

/*--------------------------------------------------------------------------
   c-hdg
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.c-hdg {
  margin-bottom: 2.6vw;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .c-hdg {
    margin-bottom: 25px;
  }
}
.c-hdg__ja {
  display: block;
  font-size: clamp(23px, 2.0833333333vw, 40px);
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .c-hdg__ja {
    font-size: clamp(23px, 6.1333333333vw, 46px);
  }
}
.c-hdg__en {
  display: block;
  font-size: clamp(13px, 1.0416666667vw, 20px);
  color: #0071bc;
  text-indent: 2px;
}
@media only screen and (max-width: 767px) {
  .c-hdg__en {
    font-size: clamp(15px, 3.4666666667vw, 26px);
  }
}
.c-hdg--white {
  color: #fff;
}
.c-hdg--white .c-hdg__en {
  color: #fff;
}

.c-hdg-cube {
  position: relative;
  font-weight: 700;
}
.c-hdg-cube::before {
  display: inline-block;
  margin-right: 5px;
  color: #00aeef;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  scale: 0.8;
  content: "■";
}

/*--------------------------------------------------------------------------
   c-box
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.c-box {
  padding: clamp(20px, 4.8vw, 60px);
  border-radius: 10px;
  border: 3.12vw solid #F0F0F0;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-box {
    border-radius: 8px;
    border-width: 5.33vw;
  }
}

/*--------------------------------------------------------------------------
   c-viewmore
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.c-viewmore {
  position: relative;
  z-index: 0;
}
.c-viewmore a,
.c-viewmore span {
  position: relative;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, 1.6949152542vw, 20px);
  font-weight: 400;
  color: #0071bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-viewmore a,
  .c-viewmore span {
    font-size: 11px;
  }
}
.c-viewmore a::before,
.c-viewmore span::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 9;
  width: 98px;
  height: 8px;
  background: url("../../asset/img/common/img_arrow_b.svg") no-repeat 50% 50%/contain;
}
@media only screen and (max-width: 767px) {
  .c-viewmore a::before,
  .c-viewmore span::before {
    width: 58px;
    height: 6px;
  }
}
.mode-pc .c-viewmore a:hover, .mode-sp .c-viewmore a:active {
  opacity: 0.8;
}
.c-viewmore--white a,
.c-viewmore--white span {
  color: #fff;
}
.c-viewmore--white a::before,
.c-viewmore--white span::before {
  background: url("../../asset/img/common/img_arrow_w.svg") no-repeat 50% 50%/contain;
}
/*--------------------------------------------------------------------------
   c-bg
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.c-bg {
  position: absolute;
  top: -7.4vw;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .c-bg {
    top: -12vw;
  }
}
.c-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.c-bg--yellow::before {
  background-color: #fff100;
  clip-path: polygon(0 0, 100% 8.85vw, 100% 100%, 0 calc(100% - 8.85vw));
}
.c-bg--blue::before {
  background: -webkit-gradient(linear, left top, right top, from(#2c90ce), to(#00aeef));
  background: linear-gradient(to right, #2c90ce 0%, #00aeef 100%);
  clip-path: polygon(0 8.85vw, 100% 0, 100% calc(100% - 8.85vw), 0 100%);
}
.c-bg--gray::before {
  background-color: #272829;
  clip-path: polygon(0 8.85vw, 100% 0, 100% calc(100% - 8.85vw), 0 100%);
}

/*--------------------------------------------------------------------------
  animation
---------------------------------------------------------------------------*/
.is-custombg .c-bg--yellow {
  clip-path: inset(0 0 0 100%);
}
.is-custombg .c-bg--blue {
  clip-path: inset(0 100% 0 0);
}
.is-custombg .c-bg--gray {
  clip-path: inset(0 100% 0 0);
}
.is-custombg .g-footer .c-bg--yellow,
.is-custombg .g-footer .c-bg--blue,
.is-custombg .g-footer .c-bg--gray {
  clip-path: inset(0 0 0 0);
}

.is-custombg.is-animated .c-bg--yellow {
  -webkit-animation: customBgIn2 0.6s 0.2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: customBgIn2 0.6s 0.2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
.is-custombg.is-animated .c-bg--blue {
  -webkit-animation: customBgIn1 0.6s 0s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: customBgIn1 0.6s 0s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
.is-custombg.is-animated .c-bg--gray {
  -webkit-animation: customBgIn1 0.6s 0s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: customBgIn1 0.6s 0s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
.is-custombg.is-animated.m-page-header .c-bg--yellow {
  -webkit-animation: customBgIn2 0.6s 0.7s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: customBgIn2 0.6s 0.7s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
.is-custombg.is-animated.m-page-header .c-bg--blue {
  -webkit-animation: customBgIn1 0.6s 0.4s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: customBgIn1 0.6s 0.4s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
.is-custombg.is-animated.m-page-header .c-bg--gray {
  -webkit-animation: customBgIn1 0.6s 0.4s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: customBgIn1 0.6s 0.4s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
.is-custombg.is-animated .g-footer .c-bg--yellow,
.is-custombg.is-animated .g-footer .c-bg--blue,
.is-custombg.is-animated .g-footer .c-bg--gray {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes customBgIn1 {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes customBgIn1 {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes customBgIn2 {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes customBgIn2 {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* print
-----------------------------------------------------------------*/
@media print {
  /* アニメーションを無効化 */
  .c-bg,
  .c-bg::before {
    position: absolute !important;
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
    will-change: auto !important;
    pointer-events: none !important;
  }
  /* 最終状態（表示済み）に固定 */
  .is-custombg .c-bg--yellow,
  .is-custombg .c-bg--blue,
  .is-custombg .c-bg--gray {
    clip-path: inset(0 0 0 0) !important;
  }
  .is-custombg.m-page-header .c-bg--yellow,
  .is-custombg.m-page-header .c-bg--blue,
  .is-custombg.m-page-header .c-bg--gray {
    clip-path: inset(0 0 0 0) !important;
  }
  .is-custombg .g-footer .c-bg--yellow,
  .is-custombg .g-footer .c-bg--blue,
  .is-custombg .g-footer .c-bg--gray {
    clip-path: inset(0 0 0 0) !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
/*--------------------------------------------------------------------------
   m-more-btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-more-btn {
  position: relative;
}
.m-more-btn__body {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .m-more-btn__body {
    margin-left: 0;
  }
}
.m-more-btn__body a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-more-btn__txt {
  margin-right: 1.56vw;
  font-family: "Oswald", sans-serif;
  font-size: 1.25vw;
  font-weight: 800;
  border-bottom: 3px solid #000;
  line-height: 1.4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .m-more-btn__txt {
    margin-right: 10px;
    font-size: 1.6rem;
    border-bottom-width: 2px;
  }
}
.m-more-btn__ico.c-ico-link {
  width: 5.2vw;
}
@media only screen and (max-width: 767px) {
  .m-more-btn__ico.c-ico-link {
    width: 52px;
  }
  .m-more-btn__ico.c-ico-link svg {
    width: 8px;
    height: auto;
  }
}
.m-more-btn__ico span {
  background-color: #fff100;
  border: 1px solid #fff100;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.m-more-btn__ico svg path {
  fill: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mode-pc .m-more-btn a:hover .m-more-btn__txt, .mode-sp .m-more-btn a:active .m-more-btn__txt {
  color: #0071bc;
  border-bottom: 3px solid #0071bc;
}
.mode-pc .m-more-btn a:hover .m-more-btn__ico span, .mode-sp .m-more-btn a:active .m-more-btn__ico span {
  background-color: #0071bc;
  border-color: #0071bc;
}
.mode-pc .m-more-btn a:hover .m-more-btn__ico span svg path, .mode-sp .m-more-btn a:active .m-more-btn__ico span svg path {
  fill: #fff;
}
.m-more-btn--white .m-more-btn__txt {
  border-bottom-color: #fff;
}
.m-more-btn--white a {
  color: #fff;
}
.mode-pc .m-more-btn--white a:hover .m-more-btn__txt, .mode-sp .m-more-btn--white a:active .m-more-btn__txt {
  color: #fff100;
  border-bottom-color: #fff100;
}
.mode-pc .m-more-btn--white a:hover .m-more-btn__ico span, .mode-sp .m-more-btn--white a:active .m-more-btn__ico span {
  background-color: #fff;
  border-color: #0071bc;
}
.mode-pc .m-more-btn--white a:hover .m-more-btn__ico span svg path, .mode-sp .m-more-btn--white a:active .m-more-btn__ico span svg path {
  fill: #0071bc;
}

/*--------------------------------------------------------------------------
   m-cookie-policy
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-cookie-policy {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  padding: 20px;
  background-color: #2C90CE;
  display: none;
}
.m-cookie-policy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .m-cookie-policy__content {
    display: block;
  }
}
.m-cookie-policy__body {
  width: calc(100% - 180px);
}
@media only screen and (max-width: 767px) {
  .m-cookie-policy__body {
    width: auto;
  }
}
.m-cookie-policy__txt {
  font-size: 1.3rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .m-cookie-policy__txt {
    font-size: 1.2rem;
  }
}
.m-cookie-policy__agree {
  width: 160px;
}
@media only screen and (max-width: 767px) {
  .m-cookie-policy__agree {
    width: 100%;
    margin: 10px auto 0;
  }
}
.m-cookie-policy__btn {
  width: 100%;
  padding: 20px 5px;
  background-color: #103FC4;
  font-size: 1.5rem;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-cookie-policy__btn {
    padding: 10px 5px;
    font-size: 1.3rem;
  }
}
.mode-pc .m-cookie-policy__btn:hover, .mode-sp .m-cookie-policy__btn:active {
  opacity: 0.7;
}

/*--------------------------------------------------------------------------
   m-page-header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-page-header {
  position: relative;
  padding: 5.6vw 30px 8.1vw 60px;
  margin-bottom: 6.25vw;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .m-page-header {
    padding: 30px 20px 60px 8vw;
    margin-bottom: 30px;
  }
}
.m-page-header .c-bg {
  top: 0;
}
.m-page-header .c-bg--blue::before {
  clip-path: polygon(0 0, 100% 0%, 100% 64%, 0% 100%);
}
@media only screen and (max-width: 767px) {
  .m-page-header .c-bg--blue::before {
    height: 85%;
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
  }
}
.m-page-header .c-bg--yellow::before {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 60%);
}
@media only screen and (max-width: 767px) {
  .m-page-header .c-bg--yellow::before {
    height: 83%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
  }
}
.m-page-header__hdg {
  color: #fff;
}
.m-page-header__hdg-ja {
  display: block;
  font-size: clamp(2.4rem, 2.91vw, 5.6rem);
  line-height: 1.5;
}
.m-page-header__hdg-ja .small {
  font-size: clamp(1.2rem, 1.25vw, 2.4rem);
}
.m-page-header__hdg-en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.04vw, 2rem);
  font-weight: 600;
}

/*--------------------------------------------------------------------------
   m-breadcrumbs
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-breadcrumbs {
  position: absolute;
  top: 20px;
  right: 1.56vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (max-width: 767px) {
  .m-breadcrumbs {
    position: relative;
    top: inherit;
    right: inherit;
    margin-top: 13.3vw;
    padding-left: 0;
    line-height: 2;
  }
}
.m-breadcrumbs__item {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .m-breadcrumbs__item {
    font-size: 9px;
  }
}
.m-breadcrumbs__item a {
  display: inline-block;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-breadcrumbs__item a::after {
  padding-left: 1em;
  content: "／";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-breadcrumbs__item a::after {
    padding-left: 0.5em;
  }
}
.mode-pc .m-breadcrumbs__item a:hover, .mode-sp .m-breadcrumbs__item a:active {
  opacity: 1;
}
.m-breadcrumbs__item:not(:first-of-type) {
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  .m-breadcrumbs__item:not(:first-of-type) {
    margin-left: 0.5em;
  }
}
.m-breadcrumbs--white {
  color: #989898;
}
.m-breadcrumbs--white a {
  opacity: 1;
  color: #5a5a5a;
}
.m-breadcrumbs--white a::after {
  color: #5a5a5a;
}
.m-breadcrumbs--white a:hover {
  color: #989898;
}
.m-breadcrumbs--white a:hover::after {
  color: #989898;
}

/*--------------------------------------------------------------------------
   m-linkbnr
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-linkbnr {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10.41vw;
  aspect-ratio: 18/5;
  width: 100%;
  height: 100%;
  background: url("../../asset/img/tech/img_report.jpg") no-repeat 50% 50%/cover;
}
@media only screen and (max-width: 767px) {
  .m-linkbnr {
    aspect-ratio: 67/44;
  }
}
.m-linkbnr__hdg {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.m-linkbnr__hdg .ja {
  display: block;
  font-size: clamp(2rem, 2.08vw, 4rem);
}
.m-linkbnr__hdg .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.04vw, 2rem);
}
@media only screen and (max-width: 767px) {
  .m-linkbnr__hdg .en {
    margin-top: 5px;
  }
}
.m-linkbnr__txt {
  margin-top: 1.3vw;
  font-size: clamp(1.5rem, 1.1vw, 2rem);
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .m-linkbnr__txt {
    margin-top: 10px;
  }
}
.m-linkbnr__btn {
  max-width: 376px;
  width: 19.58vw;
  max-height: 78px;
  height: 4.06vw;
  margin-top: 2.5vw;
  font-size: clamp(1.5rem, 1.1vw, 2rem);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .m-linkbnr__btn {
    width: 50.13vw;
    height: 10.4vw;
    margin-top: 20px;
  }
}
.m-linkbnr__btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 60px;
  color: #fff;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-linkbnr__btn a::before {
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-linkbnr__btn a::before {
    top: calc(50% - 3px);
    right: 4.26vw;
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}
.mode-pc .m-linkbnr__btn a:hover, .mode-sp .m-linkbnr__btn a:active {
  background: #0071bc;
  border-color: #0071bc;
}
/*--------------------------------------------------------------------------
   m-policy
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .m-policy .c-hdg {
    margin-bottom: 15px;
  }
}
.m-policy__item {
  border-bottom: 1px solid #E6E6E6;
}
.m-policy__item .item {
  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) {
  .m-policy__item .item {
    display: block;
    padding: 20px 0px;
  }
}
.m-policy__item .item__hdg {
  width: 26vw;
  padding: 40px 10px;
  font-size: clamp(15px, 1.25vw, 22px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__hdg {
    width: 100%;
    margin-bottom: 1em;
    padding: 0;
  }
}
.m-policy__item .item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 10px 40px 80px;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content {
    width: 100%;
    padding: 0 0;
  }
}
.m-policy__item .item__content a {
  color: #0071bc;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-policy__item .item__content a:hover {
  text-decoration: none;
}
.m-policy__item .item__content .hdg {
  font-size: clamp(13px, 1.0416666667vw, 20px);
  font-weight: 700;
}
.m-policy__item .item__content .hdg--mt {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .hdg--mt {
    margin-top: 1rem;
  }
}
.m-policy__item .item__content .txt {
  font-size: clamp(13px, 1.0416666667vw, 20px);
  font-weight: 500;
}
.m-policy__item .item__content .txt--mt {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .txt--mt {
    margin-top: 0.5rem;
  }
}
.m-policy__item .item__content .txt--mts {
  margin-top: 1rem;
}
.m-policy__item .item__content .txt--right {
  margin-top: 3rem;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .txt--right {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .txt--caption {
    font-size: 11px;
  }
}
.m-policy__item .item__content .txt + .hdg {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .txt + .hdg {
    margin-top: 1.5rem;
  }
}
.m-policy__item .item__content .list {
  position: relative;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .list {
    margin-top: 1rem;
  }
}
.m-policy__item .item__content .list--mt0 {
  margin-top: 0;
}
.m-policy__item .item__content .list > li {
  font-size: clamp(13px, 1.04vw, 20px);
  font-weight: 500;
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .list > li {
    line-height: 1.8;
  }
}
.m-policy__item .item__content .list > li:not(:first-of-type) {
  margin-top: 0.5rem;
}
.m-policy__item .item__content .list--dot {
  padding-left: 1rem;
}
.m-policy__item .item__content .list--dot > li {
  padding-left: 0.7em;
  text-indent: -0.7em;
  line-height: 1.5;
}
.m-policy__item .item__content .list--dot > li::before {
  content: "・ ";
}
.m-policy__item .item__content .list--num > li {
  padding-left: 0.9em;
  text-indent: -0.9em;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .list--num > li {
    padding-left: 1em;
    text-indent: -1em;
  }
}
.m-policy__item .item__content .list--alphabet > li {
  list-style-type: lower-alpha;
}
.m-policy__item .item__content .list__lower {
  margin-left: 1rem;
}
.m-policy__item .item__content .list__lower li {
  margin-left: 0;
  text-indent: 0;
  line-height: 2;
}
.m-policy__item .item__content .lower {
  margin: 2rem 0 0 2rem;
}
@media only screen and (max-width: 767px) {
  .m-policy__item .item__content .lower {
    margin: 1rem 0 0 1rem;
  }
}
.m-policy__box + .m-policy__box {
  margin-top: clamp(50px, 5.2083333333vw, 100px);
}

/*--------------------------------------------------------------------------
   m-column-page
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-column-page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .m-column-page {
    display: block;
  }
}
.m-column-page .mt30 {
  margin-top: clamp(15px, 1.5625vw, 30px);
}
.m-column-page .mt40 {
  margin-top: clamp(20px, 2.0833333333vw, 40px);
}
.m-column-page .mt50 {
  margin-top: clamp(25px, 2.6041666667vw, 50px);
}
.m-column-page .mt60 {
  margin-top: clamp(30px, 3.125vw, 60px);
}
.m-column-page .mt70 {
  margin-top: clamp(35px, 3.6458333333vw, 70px);
}
.m-column-page__side {
  width: clamp(200px, 14.1666666667vw, 272px);
  overflow: visible !important;
}
@media screen and (max-width: 1100px) {
  .m-column-page__side {
    position: relative;
    width: auto;
    overflow: hidden !important;
  }
}
.m-column-page__side .ps__rail-x {
  opacity: 1 !important;
  height: 2px;
  background-color: #c8c8c8;
}
.m-column-page__side .ps__rail-x .ps__thumb-x {
  bottom: 0px;
  height: 2px;
  background-color: #0071bc;
}
.m-column-page__sidenav {
  position: sticky;
  top: 135px;
}
@media screen and (max-width: 1200px) {
  .m-column-page__sidenav {
    top: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .m-column-page__sidenav {
    position: relative;
    top: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(10px, 0.78125vw, 15px);
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: hidden !important;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .m-column-page__sidenav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1000px;
  }
  .m-column-page__sidenav .ps__rail-x {
    opacity: 1 !important;
    height: 2px;
    background-color: #c8c8c8;
  }
  .m-column-page__sidenav .ps__rail-x .ps__thumb-x {
    bottom: 0px;
    height: 2px;
    background-color: #0071bc;
  }
}
.m-column-page__sidenav-item {
  aspect-ratio: 272/73;
  font-size: clamp(11px, 0.8333333333vw, 16px);
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1100px) {
  .m-column-page__sidenav-item {
    display: inline-block;
    aspect-ratio: auto;
    font-size: 13px;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .m-column-page__sidenav-item {
    min-width: 0;
    height: 40px;
    font-size: 12px;
  }
}
.m-column-page__sidenav-item 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: 100%;
  padding-inline: 2.08vw;
  background-color: #F0F0F0;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .m-column-page__sidenav-item a {
    padding: 20px 30px 20px 20px;
  }
}
.m-column-page__sidenav-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("../../asset/img/common/ico_arrow_down.svg") no-repeat 50% 50%/cover;
}
@media screen and (max-width: 1100px) {
  .m-column-page__sidenav-item a::after {
    right: 10px;
  }
}
.m-column-page__sidenav-item a:hover, .m-column-page__sidenav-item a.is-current {
  background-color: #0071bc;
  color: #fff;
}
.m-column-page__sidenav-item a:hover::after, .m-column-page__sidenav-item a.is-current::after {
  background: url("../../asset/img/common/ico_arrow_down_w.svg") no-repeat 50% 50%/cover;
}
.m-column-page__sidenav-item:not(:last-of-type) {
  margin-bottom: clamp(10px, 0.78125vw, 15px);
}
@media screen and (max-width: 1100px) {
  .m-column-page__sidenav-item:not(:last-of-type) {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .m-column-page__sidenav.mi-sp {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.m-column-page__body {
  width: calc(100% - 200px - 7.7%);
}
@media screen and (max-width: 1290px) {
  .m-column-page__body {
    width: calc(100% - 200px - 20px);
  }
}
@media screen and (max-width: 1100px) {
  .m-column-page__body {
    width: auto;
    margin: 30px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .m-column-page__body {
    margin-top: 50px;
  }
}
.m-column-page__hdg {
  margin-top: clamp(50px, 5.2083333333vw, 100px);
  margin-bottom: clamp(20px, 2.0833333333vw, 40px);
  font-size: clamp(23px, 2.0833333333vw, 40px);
  font-weight: 700;
  line-height: 1.5;
}
.m-column-page__hdg .small {
  font-size: clamp(12px, 1.0416666667vw, 20px);
}
.m-column-page__hdg .num {
  font-family: "Oswald", sans-serif;
}
.m-column-page__hdg--first {
  margin-top: 0;
}
.m-column-page__hdg-h3 {
  font-size: clamp(18px, 1.5625vw, 30px);
  font-weight: 700;
  line-height: 1.5;
}
.m-column-page__hdg-h3 .num {
  font-family: "Oswald", sans-serif;
}
.m-column-page__hdg-h4 {
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}
.m-column-page__hdg-h4 .num {
  font-family: "Oswald", sans-serif;
}
.m-column-page__txt {
  font-size: clamp(13px, 1.0416666667vw, 20px);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .m-column-page__txt {
    line-height: 1.7;
  }
}
.m-column-page__txt + .m-column-page__txt {
  margin-top: 2rem;
}
.m-column-page__txt--mt40 {
  margin-top: clamp(20px, 2.0833333333vw, 40px);
}
.m-column-page__caption {
  margin-top: 0.5rem;
  font-size: clamp(11px, 1.0416666667vw, 20px);
  font-weight: 500;
}
.m-column-page__caption--end {
  margin-top: clamp(30px, 3.6458333333vw, 70px);
}
.m-column-page__cap-list {
  margin-top: 1rem;
  font-size: clamp(13px, 1.0416666667vw, 20px);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .m-column-page__cap-list {
    font-size: 11px;
    line-height: 1.7;
  }
}
.m-column-page__m-caption {
  margin-top: clamp(10px, 0.78125vw, 15px);
  font-size: clamp(11px, 0.8333333333vw, 16px);
  font-weight: 500;
  text-align: right;
  line-height: 1.3;
}
.m-column-page .modal {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .m-column-page .modal__img {
    width: 52%;
    margin: auto;
  }
}
.m-column-page .modal__img img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.m-column-page .modal__btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .m-column-page .modal__btn {
    right: 28%;
    height: 38px;
  }
}
.m-column-page .modal__btn-txt {
  width: 0;
  overflow: hidden;
  pointer-events: none;
  font-size: clamp(11px, 1.0416666667vw, 20px);
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-column-page .modal__btn-ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
}
@media only screen and (max-width: 767px) {
  .m-column-page .modal__btn-ico {
    width: 38px;
  }
}
.m-column-page .modal__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #103fc4;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-column-page .modal__btn a:hover {
  padding-left: 20px;
}
.m-column-page .modal__btn a:hover .modal__btn-txt {
  width: auto;
  overflow: auto;
  pointer-events: all;
}
.m-column-page__img {
  width: 100%;
  margin-top: clamp(30px, 3.125vw, 60px);
}
.m-column-page__img-box {
  position: relative;
}
.m-column-page__img figure {
  padding: clamp(20px, 4.8vw, 60px);
  border-radius: 10px;
  border: 3.12vw solid #F0F0F0;
  background: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .m-column-page__img figure {
    border-radius: 8px;
    border-width: 5.33vw;
  }
}
.m-column-page__img figure img {
  max-width: 100%;
  height: auto;
}
.m-column-page__img-caption {
  margin-top: 1rem;
  font-size: clamp(11px, 1.0416666667vw, 20px);
  font-weight: 500;
}
.m-column-page__img--noframe figure {
  padding: 0;
  border-radius: 0;
  border: 0;
}
.m-column-page__img--nogap figure {
  padding: 0 !important;
  background: #F0F0F0;
}
.m-column-page__img--mt0 {
  margin-top: 0;
}
.m-column-page h2 + .m-column-page__img,
.m-column-page h3 + .m-column-page__img,
.m-column-page h4 + .m-column-page__img {
  margin-top: clamp(10px, 1.5625vw, 30px);
}
.m-column-page__imgcap img {
  width: 100%;
  height: auto;
}
.m-column-page__imgcap figcaption {
  margin-top: 0.5rem;
  font-size: clamp(11px, 0.9375vw, 18px);
  font-weight: 500;
}
.m-column-page__imgcap--right figcaption {
  text-align: right;
}
.m-column-page__numlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(15px, 1.5625vw, 30px);
  margin-top: clamp(25px, 2.6041666667vw, 50px);
}
@media only screen and (max-width: 767px) {
  .m-column-page__numlist {
    display: block;
  }
}
.m-column-page__numlist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1vw 1.56vw;
  border: 1px solid #C8C8C8;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .m-column-page__numlist-item {
    width: auto;
    padding: 25px 15px;
    border-radius: 0;
    border-top: 0;
  }
  .m-column-page__numlist-item:first-child {
    border: 1px solid #C8C8C8;
    border-radius: 8px 8px 0 0;
  }
  .m-column-page__numlist-item:last-child {
    border-radius: 0 0 8px 8px;
  }
}
.m-column-page__numlist-item .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1vw;
  font-size: clamp(15px, 1.0416666667vw, 20px);
  font-weight: 500;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .m-column-page__numlist-item .txt {
    margin-left: 12px;
  }
}
.m-column-page__numlist._col2 .m-column-page__numlist-item {
  width: calc(50% - clamp(7.5px, 0.78125vw, 15px));
}
@media only screen and (max-width: 767px) {
  .m-column-page__numlist._col2 .m-column-page__numlist-item {
    width: 100%;
  }
}
.m-column-page__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column {
    display: block;
  }
}
.m-column-page__column-sub {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column-sub {
    margin: 30px 0 0;
  }
}
.m-column-page__column-item {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column-item {
    margin: 15px 0 0;
  }
}
.m-column-page__column-item:first-of-type {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column-item:first-of-type {
    margin: 0;
  }
}
.m-column-page__column-item--two {
  width: 49%;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column-item--two {
    width: auto;
  }
}
.m-column-page__column-item--three {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column-item--three {
    width: auto;
  }
}
.m-column-page__column--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.m-column-page__column--reverse .m-column-page__column-sub {
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column--reverse .m-column-page__column-sub {
    margin: 30px 0 0;
  }
}
.m-column-page__column .m-column-page__img {
  margin-top: 0;
}
.m-column-page__column .m-column-page__img figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 12px;
  border-width: 1.56vw;
}
@media only screen and (max-width: 767px) {
  .m-column-page__column .m-column-page__img figure {
    padding: 20px;
    border-width: 5.33vw;
  }
}
.m-column-page .table-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: clamp(15px, 1.0416666667vw, 20px) 0 clamp(40px, 4.1666666667vw, 80px);
  border-top: 2px solid #5A5A5C;
}
@media only screen and (max-width: 767px) {
  .m-column-page .table-outline {
    display: block;
    border-top-width: 1px;
  }
}
.m-column-page .table-outline__hdg {
  width: 20%;
  padding: 1.56vw 10px;
  border-bottom: 1px solid #E6E6E6;
  font-size: clamp(13px, 1.0416666667vw, 20px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .m-column-page .table-outline__hdg {
    width: auto;
    padding: 15px 0 0;
    border-bottom: 0;
  }
}
.m-column-page .table-outline__txt {
  width: 80%;
  padding: 1.56vw 0;
  border-bottom: 1px solid #E6E6E6;
  font-size: clamp(13px, 1.0416666667vw, 20px);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .m-column-page .table-outline__txt {
    width: auto;
    padding: 5px 0 15px;
  }
}

/*--------------------------------------------------------------------------
   m-reqruit-graduates-nav
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-reqruit-graduates-nav {
  position: relative;
  z-index: 1;
}
.m-reqruit-graduates-nav__entry {
  position: relative;
  z-index: 2;
}
.m-reqruit-graduates-nav__entry .entry-box {
  position: relative;
  background-color: #0177D1;
  padding: clamp(90px, 7.2916666667vw, 140px) 20px;
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__entry .entry-box {
    padding: clamp(39px, 10.15625vw, 78px) 20px;
  }
}
.m-reqruit-graduates-nav__entry .entry-box__hdg {
  text-align: center;
  color: #fff;
  line-height: 1;
}
.m-reqruit-graduates-nav__entry .entry-box__hdg ._ja {
  display: block;
  font-size: clamp(26px, 2.0833333333vw, 40px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__entry .entry-box__hdg ._ja {
    font-size: clamp(20px, 5.2083333333vw, 40px);
  }
}
.m-reqruit-graduates-nav__entry .entry-box__hdg ._en {
  display: block;
  margin-top: clamp(20px, 1.5625vw, 30px);
  font-family: "Oswald", sans-serif;
  font-size: clamp(13px, 1.0416666667vw, 20px);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__entry .entry-box__hdg ._en {
    margin-top: 14px;
    font-size: clamp(10px, 2.6041666667vw, 20px);
  }
}
.m-reqruit-graduates-nav__entry .entry-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  max-width: 840px;
  margin: 50px auto 0;
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__entry .entry-box__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 25px auto 0;
  }
}
.m-reqruit-graduates-nav__entry .entry-box__item {
  width: clamp(200px, 40vw, 400px);
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__entry .entry-box__item {
    width: clamp(200px, 52.0833333333vw, 400px);
    margin: 0 auto;
  }
}
.m-reqruit-graduates-nav__entry .entry-box__item img {
  width: 100%;
  height: auto;
}
.m-reqruit-graduates-nav__entry .entry-box__item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-reqruit-graduates-nav__entry .entry-box__item a:hover {
  opacity: 0.7;
}
.m-reqruit-graduates-nav__entry .entry-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFF100;
  clip-path: polygon(40% 0, 100% 0, 100% 15%, 40% 0%);
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__entry .entry-box::before {
    clip-path: polygon(10% 0, 100% 0, 100% 10%, 10% 0%);
  }
}
.m-reqruit-graduates-nav__entry .c-btn {
  width: 400px;
  height: 90px;
  margin: clamp(0px, 2.0833333333vw, 40px) auto 0;
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__entry .c-btn {
    width: 70%;
    height: 60px;
    margin-top: 25px;
  }
}
.m-reqruit-graduates-nav__bg {
  position: relative;
  z-index: 1;
  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: 100%;
  height: clamp(700px, 59.8958333333vw, 1150px);
  background-image: url(../img/recruit/img_bottom_mv.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: calc(clamp(190px, 19.7916666667vw, 380px) * -1);
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__bg {
    height: clamp(436px, 113.5416666667vw, 872px);
    margin-top: calc(clamp(60px, 15.625vw, 120px) * -1);
  }
}
.m-reqruit-graduates-nav__bg .bg-txt {
  translate: 0 100%;
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__bg .bg-txt {
    translate: 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__bg .bg-txt img {
    width: clamp(286px, 77.0833333333vw, 592px);
    height: auto;
  }
}
.m-reqruit-graduates-nav__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #0071bc;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0% 10%);
}
@media only screen and (max-width: 767px) {
  .m-reqruit-graduates-nav__bg::before {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0% 8%);
  }
}

/*--------------------------------------------------------------------------
   m-footbg
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-footbg {
  position: relative;
  width: 100%;
  padding: 40px 0 50px;
  background-color: #f0f0f0;
}
@media only screen and (max-width: 767px) {
  .m-footbg {
    padding: 40px 0 30px;
  }
}
.m-footbg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 340px);
  background-color: #f0f0f0;
  content: "";
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .m-footbg {
    height: calc(100% + 100px);
  }
}

/*--------------------------------------------------------------------------
   m-foot-list
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-foot-list {
  position: relative;
}
.m-foot-list .m-more-btn {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .m-foot-list .m-more-btn {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 26px;
  }
}
.m-foot-list .m-more-btn__ico span {
  background-color: #0071bc;
  border: 1px solid #0071bc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.m-foot-list .m-more-btn__ico svg path {
  fill: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mode-pc .m-foot-list .m-more-btn a:hover .m-more-btn__txt, .mode-sp .m-foot-list .m-more-btn a:active .m-more-btn__txt {
  color: #0071bc;
  border-bottom: 3px solid #0071bc;
}
.mode-pc .m-foot-list .m-more-btn a:hover .m-more-btn__ico span, .mode-sp .m-foot-list .m-more-btn a:active .m-more-btn__ico span {
  background-color: #fff100;
  border-color: #fff100;
}
.mode-pc .m-foot-list .m-more-btn a:hover .m-more-btn__ico span svg path, .mode-sp .m-foot-list .m-more-btn a:active .m-more-btn__ico span svg path {
  fill: #000;
}
.m-foot-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2vw;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__body {
    display: block;
    border-radius: 4px;
  }
}
.m-foot-list__article {
  width: calc(25% - 1.5vw);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__article {
    width: 100%;
  }
  .m-foot-list__article:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
  }
}
.m-foot-list__article > a,
.m-foot-list__article button {
  display: block;
  position: relative;
  padding: 25px 6vw 25px 25px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__article > a,
  .m-foot-list__article button {
    padding: 25px 50px 25px 15px;
    border-radius: 0;
  }
}
.mode-pc .m-foot-list__article > a:hover, .mode-sp .m-foot-list__article > a:active,
.mode-pc .m-foot-list__article button:hover,
.mode-sp .m-foot-list__article button:active {
  background: #0071bc;
}
.mode-pc .m-foot-list__article > a:hover .m-foot-list__article-hdg, .mode-sp .m-foot-list__article > a:active .m-foot-list__article-hdg,
.mode-pc .m-foot-list__article button:hover .m-foot-list__article-hdg,
.mode-sp .m-foot-list__article button:active .m-foot-list__article-hdg {
  color: #fff;
}
.m-foot-list__article button {
  text-align: left;
}
.m-foot-list__article button.is-open {
  border-radius: 8px 8px 0 0;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__article button.is-open {
    border-radius: 0;
  }
}
.m-foot-list__article button .m-foot-list__article-ico {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.m-foot-list__article-hdg {
  font-size: clamp(1.5rem, 1.1vw, 2rem);
  font-weight: 700;
}
.m-foot-list__article-ico {
  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: 50%;
  right: 1.56vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__article-ico {
    width: 35px;
    height: 35px;
  }
}
.m-foot-list__article-ico img {
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__article-ico img {
    width: 10px;
    height: auto;
  }
}
.m-foot-list .m-foot-list__body--3 .m-foot-list__article {
  width: calc(33.3333333333% - 1.3333333333vw);
}
@media only screen and (max-width: 767px) {
  .m-foot-list .m-foot-list__body--3 .m-foot-list__article {
    width: 100%;
  }
}
.m-foot-list__accordion-body {
  position: relative;
  background: #fff;
  border-radius: 0 0 8px 8px;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__accordion-body {
    border-radius: 0;
  }
}
.m-foot-list__accordion-list {
  padding: 0 20px 20px 40px;
}
@media only screen and (max-width: 767px) {
  .m-foot-list__accordion-list {
    padding: 0 20px 15px;
  }
}
.m-foot-list__accordion-item {
  font-size: clamp(1.3rem, 0.83vw, 1.6rem);
  font-weight: 500;
  line-height: 1.8;
}
.m-foot-list__accordion-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .m-foot-list__accordion-item a:hover, .mode-sp .m-foot-list__accordion-item a:active {
  color: #0071bc;
}
.m-foot-list__accordion-btn.is-open + .m-foot-list__accordion-body {
  pointer-events: all;
}
.m-foot-list__accordion-btn.is-open .m-foot-list__article-ico img {
  -webkit-transform: translateY(0%) rotate(90deg);
          transform: translateY(0%) rotate(90deg);
}

/* 印刷対応
-----------------------------------------------------------------*/
@media print {
  .m-foot-list__article > a,
  .m-foot-list__article button {
    padding: 25px 50px 25px 15px;
  }
  .m-foot-list__article-hdg {
    font-size: 12px !important;
  }
  .m-foot-list__article-ico {
    width: 35px !important;
    height: 35px !important;
  }
  .m-foot-list__article-ico img {
    width: 10px !important;
    height: auto !important;
  }
}
/*--------------------------------------------------------------------------
  m-footer-fixbtns
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-footer-fixbtns {
  display: none;
}
@media only screen and (max-width: 767px) {
  .m-footer-fixbtns {
    position: fixed;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 10px;
    z-index: 9999;
  }
  .m-footer-fixbtns:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    content: "";
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .m-footer-fixbtns__entry {
    position: relative;
    min-width: 25.5%;
    margin-left: 10px;
    z-index: 0;
  }
  .m-footer-fixbtns__entry-hdg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 10.6vw;
    padding: 10px 0;
    border-radius: 30px;
    background: #0071bc;
    font-family: "Oswald", sans-serif;
    font-size: 5.53vw;
    font-weight: 400;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 1;
  }
  .m-footer-fixbtns__entry-hdg--entry {
    background: #F3BD39;
  }
  .m-footer-fixbtns__entry-hdg--entry + .m-footer-fixbtns__entry-list {
    background: #F3BD39;
  }
  .m-footer-fixbtns__entry-hdg--mypage {
    background: #F68D31;
  }
  .m-footer-fixbtns__entry-hdg--mypage + .m-footer-fixbtns__entry-list {
    background: #F68D31;
  }
  .m-footer-fixbtns__entry-hdg--mynavi {
    background: #F0522B;
    font-family: "YakuHanJP", "Noto sans JP", "Hiragino Sans", "Zen Kaku Gothic New", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
    font-size: 4.68vw;
    font-weight: 500;
  }
  .m-footer-fixbtns__entry-hdg--mynavi + .m-footer-fixbtns__entry-list {
    background: #F0522B;
  }
  .m-footer-fixbtns__entry-hdg.is-active + .m-footer-fixbtns__entry-list {
    opacity: 1;
    pointer-events: all;
  }
  .m-footer-fixbtns__entry-list {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    padding: 10px 10px 10.6vw;
    background: #0071bc;
    border-radius: 6.38vw;
    text-align: center;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
  }
  .m-footer-fixbtns__entry-link {
    font-family: "Oswald", sans-serif;
    font-size: 5.53vw;
    font-weight: 400;
    white-space: nowrap;
  }
  .m-footer-fixbtns__entry-link a {
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.is-menuopen .m-footer-fixbtns::before {
  opacity: 0;
}

/*--------------------------------------------------------------------------
   #m-entry
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-entry {
  position: relative;
  z-index: 0;
  padding: 16vw 0 8.3vw;
  background: #0071bc;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .m-entry {
    padding: 90px 0 17vw;
  }
}
.m-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: calc(100% + 20vw);
  height: 6vw;
  background: #f9f9f9;
  border-bottom-right-radius: 100% 200px;
  border-bottom-left-radius: 100% 200px;
  margin-left: -10vw;
}
@media only screen and (max-width: 767px) {
  .m-entry::before {
    height: 10vw;
    border-bottom-right-radius: 100% 60px;
    border-bottom-left-radius: 100% 60px;
  }
}
.m-entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .m-entry__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.m-entry__hdg {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .m-entry__hdg {
    text-align: center;
  }
}
.m-entry__hdg .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(74px, 10.5084745763vw, 124px);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .m-entry__hdg .en {
    font-size: 48px;
    text-align: center;
  }
}
.m-entry__hdg .ja {
  display: block;
  margin-top: 16px;
  font-size: clamp(24px, 2.7118644068vw, 32px);
  font-weight: 300;
  white-space: nowrap;
  -webkit-transform: scaleX(0.6);
          transform: scaleX(0.6);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-entry__hdg .ja {
    margin-top: 10px;
    font-size: 30px;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    text-align: center;
  }
}
.m-entry__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media only screen and (max-width: 767px) {
  .m-entry__btns {
    margin-top: 12.7vw;
    gap: 4.25vw;
  }
}
.m-entry__entry {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 440px;
  height: 100px;
  border-radius: 50px;
  z-index: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .m-entry__entry {
    max-width: 360px;
    width: 76.5vw;
    height: 19vw;
  }
}
.m-entry__entry--entry {
  background: #F3BD39;
}
.m-entry__entry--mypage {
  background: #F68D31;
}
.m-entry__entry--mynavi {
  background: #F0522B;
}
.m-entry__entry--mynavi .m-entry__entry-hdg,
.m-entry__entry--mynavi .m-entry__entry-txt {
  font-family: "YakuHanJP", "Noto sans JP", "Hiragino Sans", "Zen Kaku Gothic New", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  font-size: 32px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .m-entry__entry--mynavi .m-entry__entry-hdg,
  .m-entry__entry--mynavi .m-entry__entry-txt {
    font-size: 6.38vw;
  }
}
.m-entry__entry-wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-entry__entry-hdg, .m-entry__entry-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-entry__entry-hdg, .m-entry__entry-txt {
    font-size: 7.23vw;
  }
}
.m-entry__entry-hdg.is-active, .m-entry__entry-txt.is-active {
  opacity: 0;
  pointer-events: none;
}
.m-entry__entry-hdg.is-active + .m-entry__entry-wrap, .m-entry__entry-txt.is-active + .m-entry__entry-wrap {
  opacity: 1;
  pointer-events: all;
}
.m-entry__entry-txt {
  width: 48%;
  padding-left: 56px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .m-entry__entry-txt {
    width: 50%;
    padding-left: 32px;
  }
}
.m-entry__entry-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .m-entry__entry-list {
    gap: 25px;
    width: 50%;
  }
}
.m-entry__entry-link {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 400;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .m-entry__entry-link {
    font-size: 6.8vw;
  }
}
.m-entry__entry-link a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .m-entry__entry-link a:hover, .mode-sp .m-entry__entry-link a:active {
  color: #103fc4;
}
@media only screen and (max-width: 767px) {
  .m-entry__link {
    width: 100%;
    margin-top: 15px;
  }
}
.m-entry__btn {
  position: relative;
  max-width: 578px;
  width: clamp(360px, 48.9830508475vw, 578px);
  margin-bottom: 40px;
  aspect-ratio: 578/152;
  border-radius: 80px;
  border: 2px solid #fff;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .m-entry__btn {
    max-width: 290px;
    width: 100%;
    margin: 20px auto 0;
  }
}
.m-entry__btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .m-entry__btn a:hover .m-entry__btn-txt, .mode-sp .m-entry__btn a:active .m-entry__btn-txt {
  color: #fff;
}
.mode-pc .m-entry__btn a:hover .m-entry__btn-ico::before, .mode-sp .m-entry__btn a:active .m-entry__btn-ico::before {
  top: -30%;
  right: -26px;
  width: clamp(360px, 48.9830508475vw, 578px);
  height: 300%;
  border-radius: 0;
}
.m-entry__btn-txt {
  position: relative;
  z-index: 5;
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 2.1875vw, 42px);
  color: #0071bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-entry__btn-txt {
    font-size: 17px;
  }
}
.m-entry__btn-txt .ja {
  font-size: clamp(26px, 2.6271186441vw, 31px);
}
@media only screen and (max-width: 767px) {
  .m-entry__btn-txt .ja {
    font-size: 17px;
  }
}
.m-entry__btn-ico {
  position: absolute;
  top: 50%;
  right: clamp(10px, 2.2033898305vw, 26px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(80px, 8.6440677966vw, 102px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: clamp(13px, 1.3559322034vw, 16px);
  color: #fff;
  text-align: center;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .m-entry__btn-ico {
    width: 50px;
    font-size: 8px;
  }
}
.m-entry__btn-ico::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0071bc;
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*--------------------------------------------------------------------------
   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;
  background: rgb(255, 255, 255);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 9999999;
}

#Loader .base {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
  width: 356px;
  height: 117px;
  background-image: url(../img/common/loading.svg);
  background-size: contain;
  background-position: 50% 50%;
  opacity: 0;
  z-index: 9;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
/* trans
-------------------------------------------*/
.is-loading #Loader .base {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.load-complete #Loader {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.load-complete #Loader .base {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 1s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 1s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 1s 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);
}

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

img.mi-pc {
  display: inline;
}

.mi-sp {
  display: none;
}

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

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

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   HOVER
---------------------------------------------------------------------------*/
/*
 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.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -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.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -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.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -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.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -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.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/*--------------------------------------------------------------------------
   .g-header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.l-page__header {
  z-index: 0;
}
.g-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100px;
  background-color: #0071bc;
}
@media only screen and (max-width: 767px) {
  .g-header {
    height: 60px;
  }
}
.g-header.is-fixed {
  position: fixed;
}
.g-header__logo {
  position: absolute;
  top: 50%;
  left: 45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 77;
}
@media screen and (max-width: 900px) {
  .g-header__logo {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .g-header__logo {
    left: 18px;
  }
}
.g-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header__logo-img {
  width: clamp(207px, 41.4vw, 414px);
}
@media only screen and (max-width: 767px) {
  .g-header__logo-img {
    width: 207px;
  }
}
.g-header__logo-img img {
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: auto;
}
.g-header__btns {
  position: absolute;
  top: 50%;
  right: 110px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 77;
}
@media only screen and (max-width: 767px) {
  .g-header__btns {
    display: none;
  }
}
.g-header__entry {
  position: relative;
  min-width: 120px;
  margin-left: 10px;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .g-header__entry {
    min-width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .g-header__entry {
    min-width: 120px;
  }
}
.g-header__entry-hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  padding: 10px 0;
  border-radius: 30px;
  background: #0071bc;
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 1.3541666667vw, 26px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .g-header__entry-hdg {
    font-size: 20px;
  }
}
@-webkit-keyframes e_menu_bounce {
  5% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
  10% {
    -webkit-transform: scale(0.8, 1);
            transform: scale(0.8, 1);
  }
  15% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes e_menu_bounce {
  5% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
  10% {
    -webkit-transform: scale(0.8, 1);
            transform: scale(0.8, 1);
  }
  15% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.mode-pc .g-header__entry-hdg:hover + .g-header__entry-list, .mode-sp .g-header__entry-hdg.is-open + .g-header__entry-list {
  opacity: 1;
  pointer-events: all;
}
.g-header__entry-hdg--entry {
  background: #F3BD39;
}
.g-header__entry-hdg--entry + .g-header__entry-list {
  background: #F3BD39;
}
.g-header__entry-hdg--mypage {
  background: #F68D31;
}
.g-header__entry-hdg--mypage + .g-header__entry-list {
  background: #F68D31;
}
.g-header__entry-hdg--mynavi {
  background: #F0522B;
  font-family: "YakuHanJP", "Noto sans JP", "Hiragino Sans", "Zen Kaku Gothic New", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  font-size: clamp(20px, 1.1458333333vw, 22px);
}
.g-header__entry-hdg--mynavi + .g-header__entry-list {
  background: #F0522B;
}
.g-header__entry-list {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  padding: 50px clamp(10px, 0.9375vw, 18px) 20px;
  background: #0071bc;
  border-radius: 30px;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .g-header__entry-list {
    top: calc(100% + 15px);
    left: inherit;
    right: -60px;
    width: 110px;
    -webkit-transform: none;
            transform: none;
  }
}
.mode-pc .g-header__entry-list:hover {
  opacity: 1;
  pointer-events: all;
}
.g-header__entry-link {
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 1.3541666667vw, 26px);
  white-space: nowrap;
}
.g-header__entry-link a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .g-header__entry-link a:hover {
  color: #103fc4;
}
.g-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: 50%;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-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) {
  .g-header__menubtn {
    right: 16px;
    width: 30px;
    height: 30px;
  }
}
.mode-pc .g-header__menubtn:hover .lines, .mode-sp .g-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);
  }
}
.g-header__menubtn .lines {
  position: relative;
  padding: 0;
  width: 20px;
  height: 18px;
  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) {
  .g-header__menubtn .lines {
    width: 14px;
    height: 9px;
  }
}
.g-header__menubtn .lines:focus {
  outline: none;
}
.g-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: #0071bc;
}
@media only screen and (max-width: 767px) {
  .g-header__menubtn .lines span {
    height: 1px;
  }
}
.g-header__menubtn .lines span:nth-of-type(1) {
  top: 0px;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.g-header__menubtn .lines span:nth-of-type(2) {
  top: calc(50% - 1px);
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .g-header__menubtn .lines span:nth-of-type(2) {
    top: 4px;
  }
}
.g-header__menubtn .lines span:nth-of-type(3) {
  bottom: 0;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}
.g-header__wrap {
  background: rgba(0, 113, 188, 0.95);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.g-header__sp-logo {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-header__sp-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 16px;
    left: 18px;
  }
  .g-header__sp-logo-img img {
    width: 94px;
  }
  .g-header__sp-logo-txt {
    margin-left: 10px;
    font-size: 9px;
    color: #fff;
  }
}
.g-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1220px;
  width: 100%;
  margin-inline: auto;
  padding: 150px 20px 50px;
}
@media only screen and (max-width: 767px) {
  .g-header__nav {
    display: block;
    padding-top: 60px;
  }
}
.g-header__nav .gnav {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .g-header__nav .gnav {
    border-bottom: 1px solid #fff;
  }
}
.g-header__nav .gnav + .gnav {
  margin-top: clamp(30px, 4.2372881356vw, 50px);
}
@media only screen and (max-width: 767px) {
  .g-header__nav .gnav + .gnav {
    margin-top: 0;
  }
}
.g-header__nav .gnav__ttl {
  padding-bottom: 15px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, 3.9830508475vw, 47px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  border-bottom: 1px solid #fff;
}
.g-header__nav .gnav__hdg {
  margin-top: clamp(10px, 1.2711864407vw, 15px);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .g-header__nav .gnav__hdg {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    padding: 15px 0;
  }
}
.g-header__nav .gnav__hdg .ja {
  display: inline-block;
  font-size: clamp(25px, 2.5423728814vw, 30px);
  line-height: 1.3;
  white-space: nowrap;
  -webkit-transform: scaleX(0.6);
          transform: scaleX(0.6);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.g-header__nav .gnav__hdg .en {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-header__nav .gnav__hdg .en {
    display: inline-block;
  }
}
.g-header__nav .gnav__hdg a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .g-header__nav .gnav__hdg a:hover, .mode-sp .g-header__nav .gnav__hdg a:active {
  color: #fff100;
}
.g-header__nav .gnav__acbtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-header__nav .gnav__acbtn {
    position: absolute;
    top: 10px;
    right: 0;
    display: inline-block;
    width: 40px;
    aspect-ratio: 1/1;
  }
  .g-header__nav .gnav__acbtn::before, .g-header__nav .gnav__acbtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 1px;
    background: #fff;
  }
  .g-header__nav .gnav__acbtn::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .g-header__nav .gnav__acbtn.is-open::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .g-header__nav .gnav__acbtn.is-open + .gnav__list-wrap {
    pointer-events: all;
    -webkit-transition: height 0.4s, border 0.1s;
    transition: height 0.4s, border 0.1s;
  }
}
@media only screen and (max-width: 767px) {
  .g-header__nav .gnav__list-wrap {
    display: block;
    margin-top: 0;
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    -webkit-transition: height 0.4s, border 0.4s;
    transition: height 0.4s, border 0.4s;
  }
}
.g-header__nav .gnav__list {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .g-header__nav .gnav__list {
    margin-top: 0;
    padding: 10px 0 25px;
  }
}
.g-header__nav .gnav__item:not(:first-of-type) {
  margin-top: 20px;
}
.g-header__nav .gnav__item > a, .g-header__nav .gnav__item > span {
  position: relative;
  display: block;
  padding-left: 25px;
  font-size: clamp(15px, 1.5254237288vw, 18px);
  color: #fff;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.g-header__nav .gnav__item > a::before, .g-header__nav .gnav__item > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("../img/common/ico_arrow_w.svg") no-repeat 50% 50%/contain;
}
.g-header__nav .gnav__item > a.is-active, .mode-pc .g-header__nav .gnav__item > a:hover, .mode-sp .g-header__nav .gnav__item > a:active, .g-header__nav .gnav__item > span.is-active, .mode-pc .g-header__nav .gnav__item > span:hover, .mode-sp .g-header__nav .gnav__item > span:active {
  color: #fff100;
}
.g-header__nav .gnav--01 .gnav__hdg .en {
  margin-left: -40px;
}
.g-header__nav .gnav--02 .gnav__hdg .en {
  margin-left: -96px;
}
.g-header__nav .gnav--03 .gnav__hdg .en {
  margin-left: -56px;
}
.g-header__nav .gnav--04 .gnav__hdg .en {
  margin-left: -62px;
}
.g-header__nav .gnav--05 .gnav__hdg .en {
  margin-left: -30px;
}
.g-header__block {
  width: 26.27%;
}
@media screen and (max-width: 1200px) {
  .g-header__block {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .g-header__block {
    width: auto;
  }
}

.is-menuanim .g-header__wrap {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

/*menu open*/
.is-menuopen .g-header__logo-img {
  background: none;
}
.is-menuopen .g-header__logo-img img {
  opacity: 1;
}
.is-menuopen .g-header__logo-txt {
  color: #fff;
}
.is-menuopen .g-header__menubtn {
  background: #fff;
}
.is-menuopen .g-header .lines span {
  background: #0071bc;
}
.is-menuopen .g-header .lines span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .is-menuopen .g-header .lines span:nth-of-type(1) {
    display: inline-block;
    -webkit-transform: translateY(3px) rotate(-45deg);
            transform: translateY(3px) rotate(-45deg);
  }
}
.is-menuopen .g-header .lines span:nth-of-type(2) {
  opacity: 0;
}
.is-menuopen .g-header .lines span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .is-menuopen .g-header .lines span:nth-of-type(3) {
    display: inline-block;
    -webkit-transform: translateY(-5px) rotate(45deg);
            transform: translateY(-5px) rotate(45deg);
  }
}
.is-menuopen .g-header__wrap {
  height: 100% !important;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  overflow: auto;
}

/*--------------------------------------------------------------------------
   .g-footer
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.g-footer {
  position: relative;
  padding: 1.2vw 0 2vw;
  background: #cae5f2;
}
@media only screen and (max-width: 767px) {
  .g-footer {
    padding: 20px 0 19vw;
  }
}
.g-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-footer__nav-item {
  margin: 0 6px;
  font-size: clamp(12px, 1.1016949153vw, 13px);
}
@media only screen and (max-width: 767px) {
  .g-footer__nav-item {
    font-size: 11px;
  }
}
.g-footer__nav-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .g-footer__nav-item a:hover, .mode-sp .g-footer__nav-item a:active {
  color: #0071bc;
}
.g-footer__copyright {
  margin-top: 20px;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .g-footer__copyright {
    margin-top: 15px;
    font-size: 10px;
  }
}
.g-footer__pagetop {
  position: absolute;
  right: 76px;
  bottom: 100px;
  z-index: 999;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .g-footer__pagetop {
    right: 20px;
    bottom: 20px;
  }
}
.g-footer__pagetop.is-show {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.g-footer__pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid #0071bc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .g-footer__pagetop a {
    width: 56px;
    height: 56px;
  }
}
.mode-pc .g-footer__pagetop a:hover, .mode-sp .g-footer__pagetop a:active {
  background-color: #fff100;
  border: 1px solid #fff100;
}
.mode-pc .g-footer__pagetop a:hover i, .mode-sp .g-footer__pagetop a:active i {
  translate: 0 -25%;
}
.g-footer__pagetop i {
  display: block;
  line-height: 1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: translate 0.4s;
  transition: translate 0.4s;
}
.g-footer__pagetop i svg {
  width: 10px;
  height: 16px;
}
@media only screen and (max-width: 767px) {
  .g-footer__pagetop i svg {
    width: 8px;
    height: auto;
  }
}
.g-footer__pagetop i svg path {
  fill: #0071bc;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

/*--------------------------------------------------------------------------
   .g-main
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.g-main {
  overflow: hidden;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .g-main {
    padding-top: 60px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 12mm;
  }
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  /* A4の印刷可能幅で固定（A3に出してもA4比率は維持） */
  .l-page-wrapper {
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .l-page__header {
    height: 100px !important;
  }
  .g-header {
    position: static !important;
    height: 100px !important;
  }
  .g-header__logo {
    width: 102px !important;
    top: 15px !important;
    left: 15px !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .g-header__wrap {
    height: 100px !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .g-header__pcnav .gnav {
    right: 15px !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .g-header__pcnav .gnav__item > a, .g-header__pcnav .gnav__item > span {
    padding: 15px 0.88vw !important;
    font-size: 1.25vw !important;
  }
  .g-header__pcnav .gnav__item:first-of-type a, .g-header__pcnav .gnav__item:first-of-type span {
    padding-left: 0 !important;
  }
  .g-header__pcnav .gnav__item:last-of-type a, .g-header__pcnav .gnav__item:last-of-type span {
    padding-right: 0 !important;
  }
  .g-header__pcnav .snav {
    height: 48px !important;
  }
  .g-header__pcnav .snav__item--txt {
    margin-right: 15px !important;
  }
  .g-header__pcnav .snav__item--txt a {
    font-size: 14px !important;
  }
  .g-header__pcnav .snav__item--lang {
    margin-right: 15px !important;
  }
  .g-header__pcnav .snav__item--lang select {
    width: 80px !important;
    height: 32px !important;
    font-size: 12px !important;
  }
  .g-header__pcnav .snav__item--search {
    margin-right: 15px !important;
  }
  .g-header__pcnav .snav__item--search form .gsc-search-box .gsib_a input {
    width: 150px !important;
  }
  .g-header__pcnav .snav__item--reqruit a, .g-header__pcnav .snav__item--contact a {
    width: 130px !important;
    height: 48px !important;
    font-size: 12px !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .g-header__pcnav .snav__item--contact a {
    background-color: #103fc4 !important;
  }
  .g-header__megamenu {
    top: 100px !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .g-header__megamenu .megamenu {
    padding: 30px 20px !important;
  }
  .g-header__megamenu .link-box__item {
    font-size: 12px !important;
  }
  .g-header__megamenu .megamenu__overlay {
    display: none !important;
  }
  .g-footer__pagetop {
    display: none !important;
  }
  .g-footer .g-footer__logo {
    width: 200px !important;
  }
  .g-footer .g-footer__contact-btn {
    width: 240px !important;
    height: 60px !important;
  }
  .g-footer .g-footer__nav-item-ja {
    font-size: 15px !important;
  }
  .g-footer .g-footer__nav-item-en {
    font-size: 11px !important;
  }
  .g-footer .lower-nav__item {
    font-size: 11px !important;
  }
  .g-footer .g-footer__policy-nav-item {
    font-size: 11px !important;
  }
  .g-footer .g-footer__aside {
    margin-top: 40px;
  }
  .g-footer .g-footer__content {
    padding: 40px 20px 100px;
  }
  .m-cookie-policy {
    display: none !important;
  }
  .m-single-slider .swiper-wrapper {
    position: relative !important;
    -webkit-transform: none !important;
            transform: none !important;
    aspect-ratio: 1160/720 !important;
    display: block !important;
  }
  .m-single-slider .swiper-wrapper .swiper-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: none !important;
  }
  .m-single-slider .swiper-wrapper .swiper-slide.swiper-slide-active {
    display: block !important;
  }
  .works-detail .works-detail__outline {
    width: 30vw !important;
  }
  .m-footbg {
    margin-top: 100px !important;
  }
  .m-slide {
    width: calc(100vw - 40px) !important;
  }
  .m-slide .swiper-slide {
    width: calc((100vw - 40px) / 4 - 30px) !important;
  }
}
/*# sourceMappingURL=base.css.map */