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

   mixin

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

   mixin

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

   keyframes

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

ul, ol {
  list-style: none;
}

/* 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
-----------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   l-page
---------------------------------------------------------------------------*/
.l-page-wrapper {
  overflow: hidden;
}

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

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

.l-wrap-m {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-wrap-b {
  position: relative;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .l-wrap {
    max-width: none;
    padding: 0 30px;
  }
  .l-wrap-m {
    max-width: none;
    padding: 0 30px;
  }
  .l-wrap-b {
    max-width: none;
    padding: 0 30px;
  }
}
/*--------------------------------------------------------------------------
   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%;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   c-btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.c-btn-ico {
  max-width: 42px;
  max-height: 42px;
  width: 2.69vw;
  height: 2.69vw;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  .c-btn-ico {
    width: 32px;
    height: 32px;
  }
}
.c-btn-ico a,
.c-btn-ico 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;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #0075C4;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-ico__arrow img,
.c-btn-ico__arrow svg {
  width: 12px;
  height: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #0075C4;
}
.c-btn-ico__arrow img path,
.c-btn-ico__arrow svg path {
  fill: #0075C4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .c-btn-ico a:hover {
  background: #0075C4;
}
.mode-pc .c-btn-ico a:hover .c-btn-ico__arrow svg,
.mode-pc .c-btn-ico a:hover .c-btn-ico__arrow svg path,
.mode-pc .c-btn-ico a:hover .c-btn-ico__arrow2 svg,
.mode-pc .c-btn-ico a:hover .c-btn-ico__arrow2 svg path {
  fill: #fff;
}
.c-btn-ico--black a,
.c-btn-ico--black span {
  border: 0;
}
.c-btn-ico--black .c-btn-ico__arrow img,
.c-btn-ico--black .c-btn-ico__arrow svg {
  width: 8px;
  height: 12px;
  fill: #333;
}
.c-btn-ico--black .c-btn-ico__arrow img path,
.c-btn-ico--black .c-btn-ico__arrow svg path {
  fill: #333;
}
.c-btn-ico--black .c-btn-ico__arrow2 img,
.c-btn-ico--black .c-btn-ico__arrow2 svg {
  width: 13px;
  height: 15px;
  fill: #333;
}
.c-btn-ico--black .c-btn-ico__arrow2 img path,
.c-btn-ico--black .c-btn-ico__arrow2 svg path {
  fill: #333;
}
.c-btn-ico--white a,
.c-btn-ico--white span {
  background: transparent;
  border: 1px solid #fff;
}
.c-btn-ico--white .c-btn-ico__arrow svg {
  fill: #fff;
}
.c-btn-ico--white .c-btn-ico__arrow svg path {
  fill: #fff;
}

.mode-pc a:hover .c-btn-ico span {
  background: #0075C4;
}
.mode-pc a:hover .c-btn-ico__arrow svg,
.mode-pc a:hover .c-btn-ico__arrow svg path {
  fill: #fff;
}
.mode-pc a:hover .c-btn-ico__arrow2 svg,
.mode-pc a:hover .c-btn-ico__arrow2 svg path {
  fill: #fff;
}
.mode-pc a:hover .c-btn-ico--white a,
.mode-pc a:hover .c-btn-ico--white span {
  background: #fff;
}
.mode-pc a:hover .c-btn-ico--white .c-btn-ico__arrow svg,
.mode-pc a:hover .c-btn-ico--white .c-btn-ico__arrow svg path {
  fill: #0075C4;
}

.c-btn-more {
  max-width: 280px;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-btn-more {
    max-width: 224px;
  }
}
.c-btn-more a, .c-btn-more > 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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: transparent;
  color: #0075C4;
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-btn-more a::before, .c-btn-more > span::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0075C4;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.c-btn-more a .c-btn-more__arrow, .c-btn-more > span .c-btn-more__arrow {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "arrow";
  overflow: hidden;
}
.c-btn-more a .c-btn-more__arrow img,
.c-btn-more a .c-btn-more__arrow svg, .c-btn-more > span .c-btn-more__arrow img,
.c-btn-more > span .c-btn-more__arrow svg {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: arrow;
  -webkit-transition: none;
  transition: none;
}
.c-btn-more a .c-btn-more__arrow img:first-child,
.c-btn-more a .c-btn-more__arrow svg:first-child, .c-btn-more > span .c-btn-more__arrow img:first-child,
.c-btn-more > span .c-btn-more__arrow svg:first-child {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}
.c-btn-more a .c-btn-more__arrow img:last-child,
.c-btn-more a .c-btn-more__arrow svg:last-child, .c-btn-more > span .c-btn-more__arrow img:last-child,
.c-btn-more > span .c-btn-more__arrow svg:last-child {
  -webkit-transform: translate(-120%, 0%);
          transform: translate(-120%, 0%);
}
.mode-pc .c-btn-more a:hover::before, .mode-pc .c-btn-more > span:hover::before {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.mode-pc .c-btn-more a:hover .c-btn-more__arrow, .mode-pc .c-btn-more > span:hover .c-btn-more__arrow {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "arrow";
  overflow: hidden;
}
.mode-pc .c-btn-more a:hover .c-btn-more__arrow img,
.mode-pc .c-btn-more a:hover .c-btn-more__arrow svg, .mode-pc .c-btn-more > span:hover .c-btn-more__arrow img,
.mode-pc .c-btn-more > span:hover .c-btn-more__arrow svg {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: arrow;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mode-pc .c-btn-more a:hover .c-btn-more__arrow img:first-child,
.mode-pc .c-btn-more a:hover .c-btn-more__arrow svg:first-child, .mode-pc .c-btn-more > span:hover .c-btn-more__arrow img:first-child,
.mode-pc .c-btn-more > span:hover .c-btn-more__arrow svg:first-child {
  -webkit-transform: translate(120%, 0%);
          transform: translate(120%, 0%);
}
.mode-pc .c-btn-more a:hover .c-btn-more__arrow img:last-child,
.mode-pc .c-btn-more a:hover .c-btn-more__arrow svg:last-child, .mode-pc .c-btn-more > span:hover .c-btn-more__arrow img:last-child,
.mode-pc .c-btn-more > span:hover .c-btn-more__arrow svg:last-child {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.c-btn-more__txt {
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}
.c-btn-more__arrow img,
.c-btn-more__arrow svg {
  width: 18px;
  height: 14px;
  fill: #0075C4;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.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-pc .c-btn-gradation > span:hover {
  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 #0075C4;
  border-radius: 60px;
  background-color: #fff;
  font-weight: 600;
  color: #0075C4;
  -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-pc .c-btn-basic > span:hover {
  background-color: #0075C4;
  color: #fff;
}

.c-btn {
  position: relative;
  z-index: 0;
}
.c-btn a,
.c-btn span {
  width: 100%;
  height: 100%;
}
.c-btn--small {
  width: 284px;
  height: 52px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .c-btn--small {
    width: 100%;
  }
}
.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--mail-w span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.c-btn--mail-w 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_white.svg") no-repeat 50% 50%/cover;
  content: "";
}
.c-btn--download span {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 34px;
}
.c-btn--download span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../../assets/img/common/ico_save_white.svg") no-repeat 50% 50%/cover;
  content: "";
}

.c-btn-anchor {
  max-width: 400px;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-btn-anchor {
    max-width: 224px;
  }
}
.c-btn-anchor a, .c-btn-anchor > 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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: transparent;
  color: #0075C4;
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-btn-anchor a::before, .c-btn-anchor > span::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0075C4;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.c-btn-anchor a .c-btn-anchor__arrow, .c-btn-anchor > span .c-btn-anchor__arrow {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "arrow";
  overflow: hidden;
}
.c-btn-anchor a .c-btn-anchor__arrow svg,
.c-btn-anchor a .c-btn-anchor__arrow img, .c-btn-anchor > span .c-btn-anchor__arrow svg,
.c-btn-anchor > span .c-btn-anchor__arrow img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: arrow;
  -webkit-transition: none;
  transition: none;
}
.c-btn-anchor a .c-btn-anchor__arrow svg:first-child,
.c-btn-anchor a .c-btn-anchor__arrow img:first-child, .c-btn-anchor > span .c-btn-anchor__arrow svg:first-child,
.c-btn-anchor > span .c-btn-anchor__arrow img:first-child {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}
.c-btn-anchor a .c-btn-anchor__arrow svg:last-child,
.c-btn-anchor a .c-btn-anchor__arrow img:last-child, .c-btn-anchor > span .c-btn-anchor__arrow svg:last-child,
.c-btn-anchor > span .c-btn-anchor__arrow img:last-child {
  -webkit-transform: translate(0%, -120%);
          transform: translate(0%, -120%);
}
.mode-pc .c-btn-anchor a:hover::before, .mode-pc .c-btn-anchor > span:hover::before {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.mode-pc .c-btn-anchor a:hover .c-btn-anchor__arrow, .mode-pc .c-btn-anchor > span:hover .c-btn-anchor__arrow {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "arrow";
  overflow: hidden;
}
.mode-pc .c-btn-anchor a:hover .c-btn-anchor__arrow svg,
.mode-pc .c-btn-anchor a:hover .c-btn-anchor__arrow img, .mode-pc .c-btn-anchor > span:hover .c-btn-anchor__arrow svg,
.mode-pc .c-btn-anchor > span:hover .c-btn-anchor__arrow img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: arrow;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mode-pc .c-btn-anchor a:hover .c-btn-anchor__arrow svg:first-child,
.mode-pc .c-btn-anchor a:hover .c-btn-anchor__arrow img:first-child, .mode-pc .c-btn-anchor > span:hover .c-btn-anchor__arrow svg:first-child,
.mode-pc .c-btn-anchor > span:hover .c-btn-anchor__arrow img:first-child {
  -webkit-transform: translate(0%, 120%);
          transform: translate(0%, 120%);
}
.mode-pc .c-btn-anchor a:hover .c-btn-anchor__arrow svg:last-child,
.mode-pc .c-btn-anchor a:hover .c-btn-anchor__arrow img:last-child, .mode-pc .c-btn-anchor > span:hover .c-btn-anchor__arrow svg:last-child,
.mode-pc .c-btn-anchor > span:hover .c-btn-anchor__arrow img:last-child {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.c-btn-anchor__txt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .c-btn-anchor__txt {
    font-size: 1.6rem;
  }
}
.c-btn-anchor__arrow img,
.c-btn-anchor__arrow svg {
  width: 18px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .c-btn-anchor__arrow img,
  .c-btn-anchor__arrow svg {
    width: 12px;
    height: 17px;
  }
}
.c-btn-anchor__arrow img path,
.c-btn-anchor__arrow svg path {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

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

/* 入力 */
.c-input {
  width: 100%;
  height: 60px;
  padding: 0 10px 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .c-input {
    height: 50px;
    padding: 5px 15px;
    font-size: 14px;
  }
}

.c-textarea {
  width: 100%;
  max-height: 240px;
  padding: 16px 10px 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .c-textarea {
    max-height: 200px;
    padding: 10px 12px;
    font-size: 14px;
  }
}

.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;
}
.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;
}
.c-radio + label::after {
  left: 4px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-color: #0075C4;
  opacity: 0;
}
.c-radio:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.radio-list__item {
  display: block;
}
.radio-list__item label span {
  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) {
  .radio-list__item label span {
    padding-left: 25px;
  }
}
.radio-list__item label span::before, .radio-list__item label span::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: "";
}
.radio-list__item label span::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) {
  .radio-list__item label span::before {
    width: 18px;
    height: 18px;
  }
}
.radio-list__item label span::after {
  left: 4px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-color: #0075C4;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .radio-list__item label span::after {
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}
.radio-list__item label input:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(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: 30px;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-checkbox + label {
    padding-left: 28px;
  }
}
.c-checkbox + label::before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #b7b7b7;
  background: #fff;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-checkbox + label::before {
    top: 0;
    width: 20px;
    height: 20px;
  }
}
.c-checkbox + label::after {
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #0075C4;
  border-bottom: 3px solid #0075C4;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .c-checkbox + label::after {
    top: 2px;
    left: 6px;
    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 #0075C4;
  border-bottom: 3px solid #0075C4;
  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: 220px;
  height: 70px;
  background-color: #eee;
}
@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: 14px;
  height: 8px;
  background: url("../../assets/img/common/ico_arrow_select.svg") no-repeat 0 0/cover;
}
@media only screen and (max-width: 767px) {
  .c-select::before {
    right: 14px;
  }
}
.c-select select {
  width: 100%;
  height: 70px;
  padding: 0 0 0 15px;
  font-size: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-select select {
    height: 50px;
    padding-left: 10px;
    font-size: 14px;
  }
}

/* 幅 */
.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;
  }
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   c-btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.c-hdg-line {
  margin-bottom: clamp(30px, 3.0769230769vw, 40px);
  padding-bottom: 10px;
  border-bottom: 1px solid #0075C4;
}
.c-hdg-line span {
  display: inline-block;
  font-size: clamp(20px, 2.1538461538vw, 28px);
  font-weight: 500;
  color: #0075C4;
  line-height: 150%; /* 42px */
  letter-spacing: 5.6px;
}
@media only screen and (max-width: 767px) {
  .c-hdg-line span {
    letter-spacing: 4px;
  }
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   c-btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-spnav {
  display: none;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-page-header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-page-header {
  position: relative;
  height: clamp(0px, 11.9791666667vw, 230px);
}
@media only screen and (max-width: 767px) {
  .m-page-header {
    height: clamp(0px, 26.6666666667vw, 200px);
    margin-bottom: 38px;
  }
}
.m-page-header__obj {
  position: absolute;
}
.m-page-header__obj img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .m-page-header__obj img {
    width: 100%;
  }
}
.m-page-header__obj--left {
  top: 0;
  left: 0;
  width: clamp(0px, 20.46875vw, 393px);
}
@media only screen and (max-width: 767px) {
  .m-page-header__obj--left {
    width: clamp(0px, 41.8666666667vw, 314px);
  }
}
.m-page-header__obj--right {
  top: 0;
  right: 0;
  width: clamp(0px, 26.8229166667vw, 515px);
}
@media only screen and (max-width: 767px) {
  .m-page-header__obj--right {
    width: clamp(0px, 54.9333333333vw, 412px);
  }
}
.m-page-header__obj--spleft {
  display: none;
}
@media only screen and (max-width: 767px) {
  .m-page-header__obj--spleft {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(0px, 41.8666666667vw, 314px);
  }
}
.m-page-header__obj--spright {
  display: none;
}
@media only screen and (max-width: 767px) {
  .m-page-header__obj--spright {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(0px, 30.9333333333vw, 232px);
  }
}
.m-page-header__ttl {
  position: absolute;
  bottom: 0;
  left: clamp(0px, 10.6770833333vw, 205px);
  color: #0075C4;
}
@media only screen and (max-width: 767px) {
  .m-page-header__ttl {
    bottom: 0;
    left: clamp(0px, 5.3333333333vw, 40px);
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.m-page-header__ttl .en {
  display: block;
  margin-bottom: clamp(0px, 2.0833333333vw, 40px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 0.9375vw, 18px);
  font-weight: 500;
  letter-spacing: 3.6px;
  line-height: 1;
}
.m-page-header__ttl .ja {
  display: block;
  font-size: clamp(24px, 1.875vw, 36px);
  font-weight: 500;
  letter-spacing: 7.2px;
  line-height: 1;
}
.m-page-header__ttl .ja .solaie {
  font-family: "Montserrat", sans-serif;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-breadcrumbs
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-breadcrumbs {
  position: relative;
  padding: 0 clamp(0px, 2.0833333333vw, 40px);
}
@media only screen and (max-width: 767px) {
  .m-breadcrumbs {
    padding: clamp(0px, 2.6666666667vw, 20px) clamp(0px, 5.3333333333vw, 40px);
  }
  .m-breadcrumbs.is-scrollable {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    clip-path: inset(0);
  }
  .m-breadcrumbs.is-scrollable::-webkit-scrollbar {
    display: none;
  }
  .m-breadcrumbs.is-scrollable .m-breadcrumbs__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .m-breadcrumbs.is-scrollable .m-breadcrumbs__list::after {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: clamp(20px, 5.3333333333vw, 40px);
  }
}
.m-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .m-breadcrumbs__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.m-breadcrumbs__item {
  font-size: clamp(12px, 0.7291666667vw, 14px);
  line-height: 1.8;
  letter-spacing: 0.42px;
}
@media only screen and (max-width: 767px) {
  .m-breadcrumbs__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 0.72px;
  }
}
.m-breadcrumbs__item a {
  position: relative;
  margin-right: 20px;
  padding-right: 10px;
  color: #0075C4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-breadcrumbs__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  display: block;
  width: 10px;
  height: 1px;
  background: #0075C4;
}
.mode-pc .m-breadcrumbs__item a:hover {
  opacity: 0.7;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-navi-info
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*  m-navi-info
-----------------------------------------------------------------*/
.m-navi-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 2.9850746269vw, 40px);
  padding: clamp(0px, 4.4776119403vw, 60px);
  background-color: #EFF3FB;
}
@media only screen and (max-width: 767px) {
  .m-navi-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: clamp(0px, 5.2151238592vw, 40px);
    padding: clamp(0px, 5.2151238592vw, 40px) clamp(0px, 5.2151238592vw, 40px) 100px;
  }
}
.m-navi-info__img {
  width: clamp(0px, 32.0895522388vw, 430px);
}
@media only screen and (max-width: 767px) {
  .m-navi-info__img {
    width: 100%;
  }
}
.m-navi-info__img img {
  aspect-ratio: 430/287;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-navi-info__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-navi-info__body-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.m-navi-info__catch {
  color: #0075C4;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .m-navi-info__catch {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 390px) {
  .m-navi-info__catch {
    font-size: 16px;
  }
}
.m-navi-info__ttl {
  margin-top: 20px;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 4.8px;
}
@media only screen and (max-width: 767px) {
  .m-navi-info__ttl {
    margin-top: clamp(0px, 2.6075619296vw, 20px);
    font-size: 23px;
    line-height: 150%;
    letter-spacing: 2.3px;
    text-align: center;
  }
}
.m-navi-info__txt {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.48px;
}
@media only screen and (max-width: 767px) {
  .m-navi-info__txt {
    margin-top: clamp(0px, 2.6075619296vw, 20px);
    font-size: 15px;
  }
}
.m-navi-info .c-btn-more {
  margin-top: 20px;
  max-width: 210px;
}
.m-navi-info .c-btn-more a[target=_blank] svg {
  rotate: -45deg;
}
@media only screen and (max-width: 767px) {
  .m-navi-info .c-btn-more {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 200px;
  }
  .m-navi-info .c-btn-more__txt {
    font-size: 12px;
  }
  .m-navi-info .c-btn-more__arrow {
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
  .m-navi-info .c-btn-more__arrow svg {
    width: 13px;
    height: 10px;
  }
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-navi-return
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*  m-navi-return
-----------------------------------------------------------------*/
.m-navi-return {
  padding: clamp(0px, 6.25vw, 120px) 0 clamp(0px, 3.125vw, 60px);
}
@media only screen and (max-width: 767px) {
  .m-navi-return {
    padding: 60px 0 0;
  }
}
.m-navi-return .c-btn-more {
  max-width: 218px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .m-navi-return .c-btn-more {
    max-width: 224px;
  }
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-pager
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-pager__list {
  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;
}
.m-pager__item {
  margin: 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .m-pager__item {
    margin: 0 5px;
    font-size: clamp(10px, 4vw, 20px);
  }
}
.m-pager__item 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: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #0075C4;
  border-radius: 50%;
  color: #0075C4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-pager__item a {
    width: clamp(23px, 9.2vw, 46px);
    height: clamp(23px, 9.2vw, 46px);
  }
}
.mode-pc .m-pager__item a:hover, .m-pager__item a.is-current {
  color: #fff;
  background: #0075C4;
}
.m-pager__item--prev a, .m-pager__item--next a {
  position: relative;
}
.m-pager__item--prev a svg, .m-pager__item--next a svg {
  fill: #0075C4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-pager__item--prev a svg, .m-pager__item--next a svg {
    width: clamp(8.5px, 3.4vw, 17px);
    height: clamp(7px, 2.8vw, 14px);
  }
}
.mode-pc .m-pager__item--prev a:hover svg, .mode-pc .m-pager__item--next a:hover svg {
  fill: #fff;
}
.m-pager__item--prev a {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-navi-voice
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*  m-navi-voice
-----------------------------------------------------------------*/
.m-navi-voice {
  margin-top: clamp(100px, 8.8541666667vw, 170px);
  padding: clamp(100px, 5.7291666667vw, 110px) 0 clamp(80px, 5.2083333333vw, 100px);
  background: #EFF3FB;
}
@media only screen and (max-width: 767px) {
  .m-navi-voice {
    margin-top: clamp(0px, 13.3333333333vw, 100px);
    padding: clamp(0px, 14.6666666667vw, 110px) 0 clamp(0px, 13.3333333333vw, 100px);
  }
}
.m-navi-voice__hdg {
  font-size: clamp(20px, 2.1538461538vw, 28px);
  line-height: 200%; /* 56px */
  letter-spacing: 5.6px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .m-navi-voice__hdg {
    line-height: 150%;
    letter-spacing: 4px;
  }
}
.m-navi-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  gap: 3.155vw 3.155%;
  margin-top: clamp(0px, 3.0769230769vw, 40px);
}
@media only screen and (max-width: 767px) {
  .m-navi-voice__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-top: 30px;
  }
}
.m-navi-voice__item {
  width: 31.23%;
}
@media only screen and (max-width: 767px) {
  .m-navi-voice__item {
    width: auto;
  }
}
.m-navi-voice__item a {
  position: relative;
  display: block;
}
.m-navi-voice__item-picture {
  position: relative;
}
.m-navi-voice__item-img {
  aspect-ratio: 406/232;
}
.m-navi-voice__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.m-navi-voice__item-ico {
  position: absolute;
  right: 0;
  bottom: 0px;
}
.m-navi-voice__item-ico svg {
  translate: 0 -10%;
}
.m-navi-voice__item-num {
  margin-top: 15px;
  color: #0075C4;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 1.2307692308vw, 16px);
  line-height: 150%; /* 21px */
  letter-spacing: 0.42px;
}
@media only screen and (max-width: 767px) {
  .m-navi-voice__item-num {
    margin: 10px 0 5px;
  }
}
.m-navi-voice__item-txt {
  font-size: clamp(14px, 1.2307692308vw, 16px);
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .m-navi-voice__item-txt {
    font-size: 13px;
    letter-spacing: 0.45px;
  }
}
.m-navi-voice__item-tag {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-navi-voice__item-tag .tag {
  margin-right: 8px;
  color: #0075C4;
  font-size: clamp(12px, 1.0769230769vw, 14px);
  line-height: 150%; /* 21px */
  letter-spacing: 0.42px;
}
.m-navi-voice .c-btn-more {
  max-width: 218px;
  margin: clamp(0px, 2.6041666667vw, 50px) auto 0;
}
@media only screen and (max-width: 767px) {
  .m-navi-voice .c-btn-more {
    max-width: 200px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .m-navi-voice .c-btn-more__txt {
    font-size: 12px;
  }
}
.m-navi-voice .c-btn-more a {
  padding: 22px 0;
}
@media only screen and (max-width: 767px) {
  .m-navi-voice .c-btn-more a {
    padding: 12px 0;
  }
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-value-header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-value-header {
  position: relative;
  aspect-ratio: 1920/370;
  margin-bottom: clamp(0px, 2.2916666667vw, 44px);
}
@media only screen and (max-width: 767px) {
  .m-value-header {
    aspect-ratio: 750/540;
    margin-bottom: 0;
  }
}
.m-value-header__ttl {
  position: absolute;
  top: 50%;
  left: clamp(0px, 10.6770833333vw, 205px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0075C4;
}
@media only screen and (max-width: 767px) {
  .m-value-header__ttl {
    top: 20%;
    left: clamp(0px, 5.3333333333vw, 40px);
  }
}
.m-value-header__ttl .en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 1.875vw, 36px);
  font-weight: 500;
  letter-spacing: 0.9rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-value-header__ttl .en {
    font-size: clamp(28px, 7.4666666667vw, 56px);
    letter-spacing: 0.13em;
  }
}
.m-value-header__ttl .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: 38px;
  height: 38px;
  margin-left: 10px;
  background: #0075C4;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-indent: 0.1em;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-value-header__ttl .num {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }
}
.m-value-header__ttl--white .en {
  color: #fff;
}
.m-value-header__ttl--white .num {
  background: #fff;
  color: #0075C4;
}
.m-value-header__bg {
  width: 100%;
  height: 100%;
}
.m-value-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-navi-value
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*  m-navi-value
-----------------------------------------------------------------*/
.m-navi-value {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 767px) {
  .m-navi-value {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.m-navi-value__item {
  aspect-ratio: 640/450;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__item {
    aspect-ratio: 375/340;
    width: 100%;
    height: 100%;
  }
}
.m-navi-value__item a {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mode-pc .m-navi-value__item a:hover .m-navi-value__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.m-navi-value__item-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-inline: clamp(0px, 4.1666666667vw, 80px) 10px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__item-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 30px 10px 10px 15px;
  }
}
.m-navi-value__item-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 76, 128, 0.5);
  z-index: -1;
}
.m-navi-value__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  z-index: 1;
}
.m-navi-value__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.m-navi-value__item--hdg {
  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;
  width: 100%;
  height: 100%;
  padding-inline: clamp(0px, 1.0416666667vw, 20px);
  background: #0075C4;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__item--hdg {
    padding-inline: 15px;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.m-navi-value__item--hdg .m-navi-value__txt {
  text-align: center;
}
.m-navi-value__item--01 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__item--01 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.m-navi-value__item--02 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.m-navi-value__item--03 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.m-navi-value__item--04 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.m-navi-value__item--05 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
.m-navi-value__ico {
  position: absolute;
  right: 10%;
  bottom: 10%;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__ico {
    right: 8%;
  }
  .m-navi-value__ico.c-btn-ico {
    width: 30px;
    height: 30px;
  }
}
.m-navi-value__ico svg {
  translate: 0 -15%;
}
.m-navi-value__hdg {
  margin-top: clamp(0px, 1.0416666667vw, 20px);
  font-size: clamp(0px, 1.7708333333vw, 34px);
  font-weight: 500;
  color: #fff;
  line-height: 1.58;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__hdg {
    margin-top: clamp(0px, 2.6075619296vw, 20px);
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 2px;
  }
}
.m-navi-value__txt {
  margin-top: clamp(0px, 0.78125vw, 15px);
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-weight: 500;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.48px;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__txt {
    display: none;
  }
}
.m-navi-value__logo {
  margin-top: clamp(0px, 1.8229166667vw, 35px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(11px, 1.1458333333vw, 22px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .m-navi-value__logo {
    margin-top: 20px;
  }
}
.m-navi-value .c-value__hdg {
  font-size: clamp(0px, 0.8333333333vw, 16px);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .m-navi-value .c-value__hdg {
    font-size: 13px;
    letter-spacing: 2.6px;
  }
}
.m-navi-value .c-value__num {
  width: clamp(0px, 1.9791666667vw, 38px);
  height: clamp(0px, 1.9791666667vw, 38px);
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media only screen and (max-width: 767px) {
  .m-navi-value .c-value__num {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-lifestory-header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.m-lifestory-header {
  position: relative;
  aspect-ratio: 1920/540;
  margin-bottom: clamp(0px, 2.2916666667vw, 44px);
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header {
    aspect-ratio: 750/644;
    margin-bottom: 0;
  }
}
.m-lifestory-header__ttl {
  position: absolute;
  top: 50%;
  left: clamp(0px, 10.6770833333vw, 205px);
  translate: 0 -55%;
  color: #0075C4;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header__ttl {
    top: 10%;
    left: 20px;
    translate: 0 0;
  }
}
.m-lifestory-header__ttl .en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(9px, 0.9375vw, 18px);
  font-weight: 500;
  letter-spacing: 0.9rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header__ttl .en {
    font-size: clamp(12px, 3.2vw, 24px);
  }
}
.m-lifestory-header__ttl .ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(20px, 2.0833333333vw, 40px);
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header__ttl .ja {
    margin-top: clamp(20px, 5.3333333333vw, 40px);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.m-lifestory-header__ttl .ja--epilogue {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(7.5px, 0.78125vw, 15px);
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header__ttl .ja--epilogue {
    gap: clamp(5px, 1.3333333333vw, 10px);
  }
}
.m-lifestory-header__ttl .txt {
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 500;
  letter-spacing: 0.9rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header__ttl .txt {
    font-size: clamp(25px, 6.6666666667vw, 50px);
    line-height: 1.3;
  }
}
.m-lifestory-header__ttl .txt-en {
  margin-top: clamp(5px, 0.5208333333vw, 10px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12.5px, 1.3020833333vw, 25px);
  font-weight: 500;
  letter-spacing: 0.8rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header__ttl .txt-en {
    margin-top: clamp(5px, 1.3333333333vw, 10px);
    font-size: clamp(18px, 4.8vw, 36px);
  }
}
.m-lifestory-header__ttl .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: clamp(20px, 2.0833333333vw, 40px);
  height: clamp(20px, 2.0833333333vw, 40px);
  margin-left: 10px;
  background: #0075C4;
  border-radius: 50%;
  font-size: clamp(14px, 1.4583333333vw, 28px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-lifestory-header__ttl .num {
    width: clamp(25px, 6.6666666667vw, 50px);
    height: clamp(25px, 6.6666666667vw, 50px);
    font-size: clamp(20px, 5.3333333333vw, 40px);
    translate: 0 calc(clamp(5px, 1.3333333333vw, 10px) * -1);
    padding-bottom: 0.05em;
    padding-left: 0.025em;
  }
}
.m-lifestory-header__bg {
  width: 100%;
  height: 100%;
}
.m-lifestory-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
  m-keyword-modal
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* common 必要に応じて足す */
.mt10 {
  margin-top: 10px;
}

/* section
-----------------------------------------------------------------*/
.m-keyword-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  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;
  width: 100%;
  height: 100%;
  padding: clamp(0px, 5.2083333333vw, 100px) 0 20px 0;
  background: rgba(239, 243, 251, 0.9);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.m-keyword-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal {
    padding: 60px clamp(0px, 6vw, 45px) 20px;
  }
}
.m-keyword-modal__content {
  position: relative;
  max-width: 900px;
  width: calc(100% - 240px);
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__content {
    max-width: none;
    width: 100%;
  }
}
.m-keyword-modal__closebtn {
  position: absolute;
  top: -40px;
  right: -100px;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__closebtn {
    top: -50px;
    right: -10px;
  }
}
.m-keyword-modal__closebtn .btn {
  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: #0075C4;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__closebtn .btn {
    width: 40px;
    height: 40px;
  }
}
.mode-pc .m-keyword-modal__closebtn .btn:hover svg {
  opacity: 0.9;
}
.m-keyword-modal__closebtn .btn svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-keyword-modal__main {
  width: 100%;
  padding: clamp(0px, 6.6666666667vw, 60px) clamp(0px, 5.5555555556vw, 50px);
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 7px 5px 18px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 7px 5px 18px 0 rgba(0, 0, 0, 0.05);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__main {
    padding: 50px 25px;
  }
}
.m-keyword-modal__hdg {
  padding: 16px 0;
  border-radius: 60px;
  background: var(--bule_light, #EFF3FB);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0px, 2.6666666667vw, 24px);
  letter-spacing: 2.4px;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__hdg {
    font-size: clamp(16px, 4.2666666667vw, 32px);
    letter-spacing: 3.2px;
  }
}
.m-keyword-modal__ttl {
  position: relative;
  margin-top: clamp(0px, 4.4444444444vw, 40px);
  padding-bottom: clamp(0px, 5.5555555556vw, 50px);
  font-size: clamp(0px, 3.3333333333vw, 30px);
  color: #0075C4;
  text-align: center;
  letter-spacing: 3px;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__ttl {
    font-size: clamp(16px, 4.2666666667vw, 32px);
    padding-bottom: clamp(0px, 5.3333333333vw, 40px);
  }
}
.m-keyword-modal__ttl::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: #0075C4;
  content: "";
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__ttl::after {
    width: 75px;
  }
}
.m-keyword-modal__ttl + .m-keyword-modal__txt {
  margin-top: clamp(0px, 6.6666666667vw, 60px);
}
.m-keyword-modal__ttl + .m-keyword-modal__txt .caption {
  margin-top: clamp(0px, 1.1111111111vw, 10px);
}
.m-keyword-modal__lead {
  margin-top: clamp(0px, 5.5555555556vw, 50px);
  font-size: clamp(0px, 1.7777777778vw, 16px);
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__lead {
    font-size: 13px;
    line-height: 180%; /* 46.8px */
    letter-spacing: 0.78px;
  }
}
.m-keyword-modal__lead .caption {
  font-size: clamp(0px, 1.3333333333vw, 12px);
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__lead .caption {
    font-size: 11px;
  }
}
.m-keyword-modal__box {
  margin-top: clamp(0px, 6.6666666667vw, 60px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__box {
    margin-top: clamp(0px, 8vw, 60px);
  }
}
.m-keyword-modal__box + .m-keyword-modal__box {
  margin-top: clamp(0px, 6.6666666667vw, 60px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__box + .m-keyword-modal__box {
    margin-top: clamp(0px, 8vw, 60px);
  }
}
.m-keyword-modal__body {
  margin-top: clamp(0px, 3.3333333333vw, 30px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body {
    margin-top: 20px;
  }
}
.m-keyword-modal__body + .m-keyword-modal__body {
  margin-top: clamp(0px, 5.5555555556vw, 50px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body + .m-keyword-modal__body {
    margin-top: 30px;
  }
}
.m-keyword-modal__body-item {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body-item {
    width: auto;
    margin-top: 20px;
  }
}
.m-keyword-modal__body._flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body._flex {
    display: block;
  }
}
.m-keyword-modal__body._flex .m-keyword-modal__txt {
  margin-top: 0;
}
.m-keyword-modal__body._flex + .m-keyword-modal__txt {
  margin-top: clamp(0px, 4.4444444444vw, 40px);
}
.m-keyword-modal__body._reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.m-keyword-modal__body._flat {
  margin-top: clamp(0px, 2.2222222222vw, 20px);
}
.m-keyword-modal__body._flat .m-keyword-modal__img {
  margin-top: 20px;
}
.m-keyword-modal__body._img2 .m-keyword-modal__body-item1 {
  width: 42.5%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body._img2 .m-keyword-modal__body-item1 {
    width: auto;
  }
}
.m-keyword-modal__body._img2 .m-keyword-modal__body-item2 {
  width: 52.5%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body._img2 .m-keyword-modal__body-item2 {
    width: auto;
    margin-top: 20px;
  }
}
.m-keyword-modal__body._img2 .m-keyword-modal__body-item3 {
  width: 49.3%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body._img2 .m-keyword-modal__body-item3 {
    width: auto;
    margin-top: 10px;
  }
}
.m-keyword-modal__body._img2 .m-keyword-modal__body-item4 {
  width: 32.5%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body._img2 .m-keyword-modal__body-item4 {
    width: auto;
    margin-top: 10px;
  }
}
.m-keyword-modal__body._img2 .m-keyword-modal__body-item5 {
  width: 62.7%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body._img2 .m-keyword-modal__body-item5 {
    width: auto;
    margin-top: 10px;
  }
}
.m-keyword-modal__body._img3 .m-keyword-modal__body-item {
  width: 32.5%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__body._img3 .m-keyword-modal__body-item {
    width: auto;
    margin-top: 6px;
  }
}
.m-keyword-modal__subhdg {
  font-size: clamp(0px, 2.6666666667vw, 24px);
  color: #0075C4;
  line-height: 200%; /* 48px */
  letter-spacing: 2.4px;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__subhdg {
    font-size: clamp(0px, 4.8vw, 36px);
    line-height: 150%; /* 54px */
    letter-spacing: 3.6px;
  }
}
.m-keyword-modal__subhdg + .m-keyword-modal__img {
  margin-top: clamp(0px, 4.4444444444vw, 40px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__subhdg + .m-keyword-modal__img {
    margin-top: 20px;
  }
}
.m-keyword-modal__txt {
  font-size: clamp(0px, 1.7777777778vw, 16px);
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
  margin-top: clamp(0px, 2.2222222222vw, 20px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__txt {
    font-size: 13px;
    line-height: 180%; /* 46.8px */
    letter-spacing: 0.78px;
  }
}
.m-keyword-modal__txt strong {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__txt strong {
    display: inline-block;
    margin-bottom: 0.5em;
    font-size: 17px;
  }
}
.m-keyword-modal__txt + .m-keyword-modal__txt {
  margin-top: 2rem !important;
}
.m-keyword-modal__txt .caption {
  display: block;
  font-size: clamp(0px, 1.3333333333vw, 12px);
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
  margin-top: clamp(0px, 2.2222222222vw, 20px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__txt .caption {
    font-size: 11px;
  }
}
.m-keyword-modal__txt .caption + .caption {
  margin-top: clamp(0px, 1.1111111111vw, 10px);
}
.m-keyword-modal__subtxt {
  font-size: clamp(0px, 1.6666666667vw, 15px);
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
  margin-top: clamp(0px, 4.4444444444vw, 40px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__subtxt {
    font-size: 10px;
    line-height: 180%; /* 46.8px */
    letter-spacing: 0.78px;
  }
}
.m-keyword-modal__cap {
  font-size: clamp(8px, 1.3333333333vw, 12px);
  margin-top: clamp(0px, 3.3333333333vw, 30px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__cap {
    margin-top: 20px;
    font-size: 10px;
    line-height: 180%; /* 46.8px */
    letter-spacing: 0.78px;
  }
}
.m-keyword-modal__img {
  position: relative;
}
.m-keyword-modal__img img {
  width: 100%;
  height: auto;
}
.m-keyword-modal__img figcaption {
  margin-top: 0.5em;
  font-size: clamp(0px, 1.5555555556vw, 14px);
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__img figcaption {
    margin-top: 5px;
    font-size: 11px;
  }
}
.m-keyword-modal__img figcaption._white {
  color: #FFF;
}
.m-keyword-modal__img figcaption.sm {
  font-size: clamp(11px, 1.3333333333vw, 12px);
}
.m-keyword-modal__img + .m-keyword-modal__img {
  margin-top: clamp(0px, 2.2222222222vw, 20px) !important;
}
.m-keyword-modal__img + .m-keyword-modal__txt {
  margin-top: clamp(0px, 4.4444444444vw, 40px) !important;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__img + .m-keyword-modal__txt {
    margin-top: clamp(0px, 5.3333333333vw, 40px) !important;
  }
}
.m-keyword-modal__img .inside {
  position: absolute;
  right: 10px;
  bottom: 5px;
  letter-spacing: 0.42px;
}
.m-keyword-modal__img .right {
  color: #8C8C8C;
  text-align: right;
}
.m-keyword-modal__img .left {
  color: #8C8C8C;
  text-align: left;
}
.m-keyword-modal__img .ip {
  position: absolute;
  right: 10px;
  bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__img .ip {
    bottom: 10px;
  }
}
.m-keyword-modal__img .none {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__img .none {
    display: none;
  }
}
.m-keyword-modal__img._solo {
  width: 70%;
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__img._solo {
    width: auto;
    margin-top: 20px;
  }
}
.m-keyword-modal__img._solo90 {
  width: 90%;
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__img._solo90 {
    width: auto;
    margin-top: 20px;
  }
}
.m-keyword-modal__img2 {
  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-keyword-modal__img2 {
    display: block;
  }
}
.m-keyword-modal__img2 .item {
  width: 48.8%;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__img2 .item {
    width: auto;
    margin-top: 10px;
  }
}
.m-keyword-modal__img2 .item img {
  width: 100%;
  height: auto;
}
.m-keyword-modal__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(0px, 8.8888888889vw, 80px);
}
.m-keyword-modal__close-btn {
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .m-keyword-modal__close-btn:hover {
  opacity: 0.7;
}
.m-keyword-modal__close-ico {
  width: 20px;
  height: 20px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__close-ico {
    width: 14px;
    height: 14px;
  }
}
.m-keyword-modal__close-ico svg {
  width: 100%;
  height: 100%;
}
.m-keyword-modal__close-txt {
  margin-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0px, 2.2222222222vw, 20px);
  color: #0075C4;
  line-height: 200%; /* 40px */
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .m-keyword-modal__close-txt {
    margin-left: 10px;
    font-size: 17px;
  }
}

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

/* use
-----------------------------------------------------------------*/
/**
 *
 *  LOADER
 *
 */
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   loader
---------------------------------------------------------------------------*/
#Loader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  z-index: 9999999;
}

#Loader .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 5px;
  background: #0075C4;
}

#Loader .base {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 320px;
  height: 189px;
  background-image: url(../img/common/logo_loader.svg);
  background-size: contain;
  background-position: 50% 50%;
  opacity: 0;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  #Loader .base {
    width: 224px;
    height: 132px;
  }
}

.page-index #Loader {
  display: block;
}

/* trans
-------------------------------------------*/
/* anima
-------------------------------------------*/
.load-complete .g-main {
  opacity: 1;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.is-loading .page-index #Loader .base {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.is-loaded .page-index #Loader .base {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

.load-complete .page-index #Loader {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

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

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   .g-header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.g-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: white;
  -webkit-transition: height 0.4s, background-color 0.4s;
  transition: height 0.4s, background-color 0.4s;
}
.g-header.is-fixed {
  position: fixed;
}
.g-header__inline {
  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;
  position: relative;
  height: 100px;
  padding: 0 30px;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}
@media only screen and (max-width: 767px) {
  .g-header__inline {
    position: relative;
    display: block;
    padding: 0 20px;
    height: 56px;
    z-index: 10;
  }
}
.g-header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media only screen and (max-width: 767px) {
  .g-header__logo {
    display: block;
  }
}
.g-header__logo a {
  position: relative;
  display: inline-block;
}
.g-header__logo img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.g-header__mainlogo {
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .g-header__mainlogo {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 86px;
  }
}
.g-header__mainlogo ._w {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.g-header__tobulogo {
  width: 108px;
  translate: 0 -5px;
}
@media only screen and (max-width: 767px) {
  .g-header__tobulogo {
    position: absolute;
    top: 50%;
    left: 10px;
    translate: 0 -50%;
    width: 80px;
  }
}
.g-header__tobulogo ._w {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .g-header__tobulogo ._w {
    display: none;
  }
}
.g-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.g-header__mainlogo-sp {
  position: fixed;
  top: 22px;
  left: 15px;
  z-index: 9;
}
.g-header__tobulogo-sp {
  text-align: center;
  padding-top: 30px;
}
.g-header__gnav .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(15px, 1.5625vw, 30px);
}
@media only screen and (max-width: 767px) {
  .g-header__gnav .gnav {
    display: none;
  }
}
.g-header__gnav .gnav__item {
  position: relative;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .g-header__gnav .gnav__item {
    margin-left: 0;
    font-size: 20px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s linear;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s linear;
    transition: opacity 0.1s ease-in-out, transform 0.1s linear;
    transition: opacity 0.1s ease-in-out, transform 0.1s linear, -webkit-transform 0.1s linear;
  }
}
.g-header__gnav .gnav__item > a {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .g-header__gnav .gnav__item > a {
    position: relative;
    display: block;
    padding: 20px 0;
    font-size: 16px;
    line-height: 1;
  }
  .g-header__gnav .gnav__item > a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 14px;
    height: 18px;
    background: url("../img/common/ico_arrow_w.svg") no-repeat 50% 50%/contain;
  }
}
.g-header__gnav .gnav__item > a::after {
  display: block;
  width: 0;
  height: 2px;
  margin: 3px auto 0;
  background-color: #0075C4;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
  content: "";
}
@media only screen and (max-width: 767px) {
  .g-header__gnav .gnav__item > a::after {
    content: none;
  }
}
.mode-pc .g-header__gnav .gnav__item > a:hover, .mode-pc .g-header__gnav .gnav__item > a.current {
  color: #0075C4;
}
.mode-pc .g-header__gnav .gnav__item > a:hover::after, .mode-pc .g-header__gnav .gnav__item > a.current::after {
  width: 100%;
}
.g-header__infonav {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-header__infonav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
}
.g-header__infonav-item {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
}
.g-header__infonav-item a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .g-header__infonav-item a:hover {
  opacity: 0.7;
}
.g-header__infonav-item a[target=_blank] {
  padding-right: 20px;
  background: url("../img/common/ico_arrow_blank_w.svg") no-repeat 100% 50%/15px auto;
}
.g-header__spmenu {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-header__spmenu {
    display: block;
    width: 100%;
    height: 100%;
  }
  .g-header__spmenu::before {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.2;
  }
}
.g-header__menubtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-header__menubtn {
    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;
    position: fixed;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 99999;
    text-align: center;
    background-color: transparent;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.mode-pc .g-header__menubtn:hover .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;
  /*position: absolute;
  top: 15px;
  left: 19px;*/
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  -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: 35px;
    height: 25px;
  }
}
.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: #0075C4;
}
@media only screen and (max-width: 767px) {
  .g-header__menubtn .lines span {
    height: 1px;
  }
}
.g-header__menubtn .lines span:nth-of-type(1) {
  top: 2px;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.g-header__menubtn .lines span:nth-of-type(2) {
  top: 14px;
  -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: 50%;
  }
}
.g-header__menubtn .lines span:nth-of-type(3) {
  bottom: 2px;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}
.g-header__menubtn .txt {
  margin-top: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #0075C4;
}
.g-header__menuwrap {
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: #0075C4;
  overflow: auto;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .g-header__menulogo {
    width: 122px;
  }
  .g-header__menulogo img {
    width: 100%;
    height: auto;
  }
}
.g-header__menunav {
  margin-top: 80px;
}
.g-header__menunav .menunav__item {
  position: relative;
  border-bottom: 1px solid #fff;
}
.g-header__menunav .menunav__item:not(:first-of-type) {
  margin-top: 15px;
}
.g-header__menunav .menunav__item > a {
  display: block;
  position: relative;
  padding: 20px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.g-header__menunav .menunav__item > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background: url("../img/common/ico_arrow_half_w.svg") no-repeat 50% 50%/contain;
}
.g-header__menunav .menunav__item > a.ac, .g-header__menunav .menunav__item > p.ac {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .g-header__menunav .menunav__item > a.ac, .g-header__menunav .menunav__item > p.ac {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 50px);
    height: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .g-header__menunav .menunav__item > a.ac::before, .g-header__menunav .menunav__item > p.ac::before {
    content: none;
  }
}
.g-header__menunav .menunav__item .subnav-wrap {
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .g-header__menunav .menunav__item .subnav-wrap {
    pointer-events: all;
    -webkit-transition: height 0.4s ease-in-out;
    transition: height 0.4s ease-in-out;
  }
}
.g-header__menunav .menunav__item .subnav {
  margin-top: clamp(0px, 2.7777777778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .g-header__menunav .menunav__item .subnav {
    margin-top: 0;
    padding: 0 20px 30px;
  }
}
.g-header__menunav .menunav__item .subnav__item {
  position: relative;
  margin-top: clamp(0px, 1.3888888889vw, 20px);
  font-size: clamp(0px, 1.0256410256vw, 16px);
}
@media only screen and (max-width: 767px) {
  .g-header__menunav .menunav__item .subnav__item {
    font-size: 14px;
  }
  .g-header__menunav .menunav__item .subnav__item:not(:first-of-type) {
    margin-top: 20px;
  }
}
.g-header__menunav .menunav__item .subnav__item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .g-header__menunav .menunav__item .subnav__item a {
    display: block;
  }
  .g-header__menunav .menunav__item .subnav__item a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 14px;
    height: 18px;
    background: url(../img/common/ico_arrow_half_w.svg) no-repeat 50% 50%/contain;
  }
}
.g-header__menunav .menunav__item .acbtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-header__menunav .menunav__item .acbtn {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 50px;
    aspect-ratio: 1/1;
  }
  .g-header__menunav .menunav__item .acbtn::before, .g-header__menunav .menunav__item .acbtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 1px;
    background: #fff;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .g-header__menunav .menunav__item .acbtn::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .g-header__menunav .menunav__item .acbtn.is-open::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media only screen and (max-width: 767px) {
  .g-header__menutobulogo {
    width: 84px;
    margin: 20px auto 0;
  }
  .g-header__menutobulogo img {
    width: 100%;
    height: auto;
  }
}

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

.g-header.is-scroll {
  background-color: rgba(255, 255, 255, 0.95) !important;
}
.g-header.is-scroll .g-header__inline {
  height: 80px;
}
@media only screen and (max-width: 767px) {
  .g-header.is-scroll .g-header__inline {
    height: 56px;
  }
}

/*menu open*/
.is-menuopen .g-header__logo, .is-menuopen .g-header__tobulogo {
  display: none;
}
.is-menuopen .g-header__tobulogo {
  display: block;
}
.is-menuopen .g-header .gnav__item a {
  color: #fff;
}
s .is-menuopen .g-header__mainlogo {
  display: none;
}
.is-menuopen .g-header .lines span {
  background-color: #fff;
}
.is-menuopen .g-header .lines span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .is-menuopen .g-header .lines span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) 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(-11px) rotate(45deg);
          transform: translateY(-11px) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .is-menuopen .g-header .lines span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
  }
}
.is-menuopen .g-header__menuwrap {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

/*カレント*/
.page-solaie .g-header .gnav__item--solaie > a,
.page-navi .g-header .gnav__item--navi > a,
.page-information .g-header .gnav__item--information > a {
  color: #0075C4;
}
.page-solaie .g-header .gnav__item--solaie > a::after,
.page-navi .g-header .gnav__item--navi > a::after,
.page-information .g-header .gnav__item--information > a::after {
  width: 100% !important;
}
@media only screen and (max-width: 767px) {
  .page-solaie .g-header .gnav__item--solaie > a::after,
  .page-navi .g-header .gnav__item--navi > a::after,
  .page-information .g-header .gnav__item--information > a::after {
    display: none;
  }
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   .g-footer
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.l-page__footer {
  padding-top: clamp(0px, 6.4102564103vw, 100px);
}
@media only screen and (max-width: 767px) {
  .l-page__footer {
    padding-top: 70px;
  }
}
.l-page__footer .pagetop {
  margin-bottom: 40px;
}
.l-page__footer .pagetop a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin: 0 auto;
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-page__footer .pagetop a .ico svg {
  fill: #333;
}
.mode-pc .l-page__footer .pagetop a:hover {
  color: #0075C4;
}
.mode-pc .l-page__footer .pagetop a:hover .pagetop__bg img {
  scale: 1.1;
}
.mode-pc .l-page__footer .pagetop a:hover .ico svg {
  fill: #0075C4;
}
.l-page__footer .pagetop__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;
  gap: 10px;
  z-index: 2;
}
.l-page__footer .pagetop__txt .txt {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.l-page__footer .pagetop__txt .ico svg {
  width: 12px;
  height: 16px;
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.g-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(0px, 5.7692307692vw, 90px) clamp(0px, 2.5641025641vw, 40px);
  background-color: #0075C4;
}
@media only screen and (max-width: 767px) {
  .g-footer__contents {
    display: block;
    padding: 50px 30px;
  }
}
.g-footer__fnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 1440px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav {
    display: block;
  }
}
.g-footer__fnav-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(0px, 4.1666666667vw, 60px);
  width: 76%;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-list {
    display: block;
    width: 100% !important;
  }
}
.g-footer__fnav-list::after {
  position: absolute;
  top: 0;
  right: calc(clamp(0px, 0vw, 0px) * -1);
  width: 1px;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  content: "";
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-list::after {
    content: none;
  }
}
.g-footer__fnav-item {
  position: relative;
  width: 22%;
  line-height: 1;
}
.g-footer__fnav-item:nth-child(1) {
  width: 21%;
}
.g-footer__fnav-item:nth-child(2) {
  width: 25%;
}
.g-footer__fnav-item:nth-child(3) {
  width: 27%;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item {
    width: 100% !important;
    border-bottom: 1px solid #fff;
  }
  .g-footer__fnav-item:not(:first-of-type) {
    margin-top: 15px;
  }
}
.g-footer__fnav-item > a, .g-footer__fnav-item > div > a, .g-footer__fnav-item > span {
  position: relative;
  font-size: clamp(0px, 1.4102564103vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item > a, .g-footer__fnav-item > div > a, .g-footer__fnav-item > span {
    position: relative;
    display: block;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
  }
  .g-footer__fnav-item > a::before, .g-footer__fnav-item > div > a::before, .g-footer__fnav-item > span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 14px;
    height: 18px;
    background: url("../img/common/ico_arrow_half_w.svg") no-repeat 50% 50%/contain;
  }
}
.mode-pc .g-footer__fnav-item > a:hover, .mode-pc .g-footer__fnav-item > div a:hover {
  opacity: 0.7;
}
.g-footer__fnav-item > div:not(:first-of-type) {
  margin-top: clamp(0px, 2.7777777778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item > div:not(:first-of-type) {
    margin-top: 0;
    padding-top: 15px;
    border-top: 1px solid #fff;
  }
}
.g-footer__fnav-item > a.ac, .g-footer__fnav-item > p.ac {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item > a.ac, .g-footer__fnav-item > p.ac {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 50px);
    height: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .g-footer__fnav-item > a.ac::before, .g-footer__fnav-item > p.ac::before {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item > a.ac.mi-pc {
    display: none;
  }
}
.g-footer__fnav-item > p.ac.mi-pc {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item > p.ac {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mode-pc .g-footer__fnav-item p:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item .subnav-wrap {
    height: 0;
    overflow: hidden;
    pointer-events: none;
    pointer-events: all;
    -webkit-transition: height 0.4s ease-in-out;
    transition: height 0.4s ease-in-out;
  }
}
.g-footer__fnav-item .subnav {
  margin-top: clamp(0px, 2.7777777778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item .subnav {
    margin-top: 0;
    padding: 0 20px 30px;
  }
}
.g-footer__fnav-item .subnav__item {
  position: relative;
  margin-top: clamp(0px, 1.3888888889vw, 20px);
  font-size: clamp(0px, 1.0256410256vw, 16px);
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item .subnav__item {
    font-size: 14px;
  }
  .g-footer__fnav-item .subnav__item:not(:first-of-type) {
    margin-top: 20px;
  }
}
.g-footer__fnav-item .subnav__item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item .subnav__item a {
    display: block;
  }
  .g-footer__fnav-item .subnav__item a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 14px;
    height: 18px;
    background: url("../img/common/ico_arrow_half_w.svg") no-repeat 50% 50%/contain;
  }
}
.mode-pc .g-footer__fnav-item .subnav__item a:hover {
  opacity: 0.7;
}
.g-footer__fnav-item .acbtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .g-footer__fnav-item .acbtn {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 50px;
    aspect-ratio: 1/1;
  }
  .g-footer__fnav-item .acbtn::before, .g-footer__fnav-item .acbtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 1px;
    background: #fff;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .g-footer__fnav-item .acbtn::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .g-footer__fnav-item .acbtn.is-open::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.g-footer__infonav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .g-footer__infonav {
    margin-top: 40px;
  }
}
.g-footer__infonav-item {
  font-size: clamp(0px, 0.8974358974vw, 14px);
}
@media only screen and (max-width: 767px) {
  .g-footer__infonav-item {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
  }
}
.g-footer__infonav-item a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .g-footer__infonav-item a:hover {
  opacity: 0.7;
}
.g-footer__infonav-item a[target=_blank] {
  padding-right: clamp(0px, 1.2820512821vw, 20px);
  background: url("../img/common/ico_arrow_blank_w.svg") no-repeat 100% 50%/clamp(0px, 0.9615384615vw, 15px) auto;
}
@media only screen and (max-width: 767px) {
  .g-footer__infonav-item a[target=_blank] {
    padding-right: 20px;
    background: url("../img/common/ico_arrow_blank_w.svg") no-repeat 100% 50%/15px auto;
  }
}
.g-footer__bottom {
  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;
  padding: clamp(0px, 6.4102564103vw, 100px) clamp(0px, 3.8461538462vw, 60px);
}
@media only screen and (max-width: 767px) {
  .g-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 45px 15px 25px;
  }
}
.g-footer__logo {
  max-width: 300px;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .g-footer__logo {
    max-width: 152px;
    margin-bottom: 30px;
  }
}
.g-footer__logo span {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .g-footer__logo span {
    font-size: 18px;
  }
}
.g-footer__logo img {
  width: 100%;
  height: auto;
}
.g-footer__tobulogo {
  max-width: 120px;
  margin-left: -30px;
}
.g-footer__tobulogo img {
  width: 100%;
  height: auto;
}
.g-footer__copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #333;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .g-footer__copyright {
    margin-top: 30px;
    font-size: 11px;
    text-align: center;
  }
}

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

.page-index .g-main {
  opacity: 1;
}
/*# sourceMappingURL=base.css.map */