@charset "UTF-8";
/*---------------------------------
  variable
---------------------------------*/
/* color
---------------------------------*/
:root {
  --body: #333;
  --gray: #CED0D5;
  --light-gray: #ECEDF0;
  --border: #BDC2D0;
  --box01: #E5E7ED;
  --main-blue: #003792;
  --sub-blue: #95BDFF;
  --sub-blue2: #5083D8;
  --red: #B90039;
  --white: #fff;
  --main-grad: linear-gradient(to right, rgba(0,55,146,1) 0%,rgba(64,124,221,1) 100%);
  --sub-grad: linear-gradient(to right, rgba(234,0,72,1) 0%,rgba(203,125,0,1) 100%);
  --orange-grad: linear-gradient(to right, rgba(180,75,6,1) 0%,rgba(243,133,59,1) 100%);
  --jost: "Jost", sans-serif;
  --duration: .4s;
  --linear: cubic-bezier(0.250, 0.250, 0.750, 0.750);
  --ease: cubic-bezier(0.250, 0.100, 0.250, 1.000);
  --ease-in: cubic-bezier(0.420, 0.000, 1.000, 1.000);
  --ease-out: cubic-bezier(0.000, 0.000, 0.580, 1.000);
  --ease-in-out: cubic-bezier(0.420, 0.000, 0.580, 1.000);
  --easeInQuad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
  --easeInCubic: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  --easeInQuart: cubic-bezier(0.895, 0.030, 0.685, 0.220);
  --easeInQuint: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  --easeInSine: cubic-bezier(0.470, 0.000, 0.745, 0.715);
  --easeInExpo: cubic-bezier(0.950, 0.050, 0.795, 0.035);
  --easeInCirc: cubic-bezier(0.600, 0.040, 0.980, 0.335);
  --easeInBack: cubic-bezier(0.600, -0.280, 0.735, 0.045);
  --easeOutQuad: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  --easeOutCubic: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  --easeOutQuart: cubic-bezier(0.165, 0.840, 0.440, 1.000);
  --easeOutQuint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
  --easeOutSine: cubic-bezier(0.390, 0.575, 0.565, 1.000);
  --easeOutExpo: cubic-bezier(0.190, 1.000, 0.220, 1.000);
  --easeOutCirc: cubic-bezier(0.075, 0.820, 0.165, 1.000);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.320, 1.275);
  --easeInOutQuad: cubic-bezier(0.455, 0.030, 0.515, 0.955);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  --easeInOutQuart: cubic-bezier(0.770, 0.000, 0.275, 1.000);
  --easeInOutQuint: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  --easeInOutSine: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --easeInOutExpo: cubic-bezier(1.000, 0.000, 0.000, 1.000);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --easeInOutBack: cubic-bezier(0.680, -0.550, 0.265, 1.550);
  --easeBuruBuru: cubic-bezier(0.42, 0, 0.58, 1);
}

/*---------------------------------
  mixin
---------------------------------*/
/* ============================================================================

　_base

=============================================================================== */
/* ----------------------------------------------------------------------------
　reset
---------------------------------------------------------------------------- */
body, h1, h2, h3, h4, h5, ul, ol, li, dl, dt, dd, p, strong, address, a, span, div, section, header {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul, li {
  list-style: none;
}

ol {
  padding: 0 0 0 2rem;
  margin: 0 0 0 0;
}

ol li {
  list-style: decimal;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  cursor: pointer;
  color: #333;
}

address {
  font-style: normal;
}

img {
  width: 100%;
  border: 0;
  vertical-align: bottom;
}

/* ----------------------------------------------------------------------------
　font-size
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

/* ----------------------------------------------------------------------------
　font-family
---------------------------------------------------------------------------- */
body,
input,
button,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

/* ----------------------------------------------------------------------------
　overflow
---------------------------------------------------------------------------- */
body {
  overflow-x: hidden !important;
}

/* ----------------------------------------------------------------------------
　link
---------------------------------------------------------------------------- */
a {
  color: #262f36;
  text-underline-offset: 0.3rem;
}
a:hover {
  text-decoration: none;
}

/* ----------------------------------------------------------------------------
　is-visible
---------------------------------------------------------------------------- */
.is-visible-ld,
.is-visible-sd {
  display: none;
}

@media screen and (max-width: 1024px) {
  .is-visible-ld {
    display: block;
  }
  .is-hidden-ld {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .is-visible-sd {
    display: block;
  }
  .is-hidden-sd {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------
　widthdebug
---------------------------------------------------------------------------- */
#widthdebug {
  position: fixed;
  left: 0rem;
  bottom: 0rem;
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  z-index: 1000000;
}

/* ----------------------------------------------------------------------------
　main
---------------------------------------------------------------------------- */
main {
  font-size: 1.6rem;
  color: #262f36;
}

/* ----------------------------------------------------------------------------
　_mb
---------------------------------------------------------------------------- */
._mb0 {
  margin-bottom: 0rem !important;
}

._mb1 {
  margin-bottom: 1rem !important;
}

._mb2 {
  margin-bottom: 2rem !important;
}

._mb3 {
  margin-bottom: 3rem !important;
}

._mb4 {
  margin-bottom: 4rem !important;
}

._mb5 {
  margin-bottom: 5rem !important;
}

._mb6 {
  margin-bottom: 6rem !important;
}

._mb7 {
  margin-bottom: 7rem !important;
}

._mb8 {
  margin-bottom: 8rem !important;
}

._mb9 {
  margin-bottom: 9rem !important;
}

._mb10 {
  margin-bottom: 10rem !important;
}

._mb11 {
  margin-bottom: 11rem !important;
}

._mb12 {
  margin-bottom: 12rem !important;
}

._mb13 {
  margin-bottom: 13rem !important;
}

._mb14 {
  margin-bottom: 14rem !important;
}

._mb15 {
  margin-bottom: 15rem !important;
}

._mb16 {
  margin-bottom: 16rem !important;
}

._mb17 {
  margin-bottom: 17rem !important;
}

._mb18 {
  margin-bottom: 18rem !important;
}

._mb19 {
  margin-bottom: 19rem !important;
}

._mb20 {
  margin-bottom: 20rem !important;
}

._mb21 {
  margin-bottom: 21rem !important;
}

._mb22 {
  margin-bottom: 22rem !important;
}

._mb23 {
  margin-bottom: 23rem !important;
}

._mb24 {
  margin-bottom: 24rem !important;
}

._mb25 {
  margin-bottom: 25rem !important;
}

._mb26 {
  margin-bottom: 26rem !important;
}

._mb27 {
  margin-bottom: 27rem !important;
}

._mb28 {
  margin-bottom: 28rem !important;
}

._mb29 {
  margin-bottom: 29rem !important;
}

._mb30 {
  margin-bottom: 30rem !important;
}

/* ----------------------------------------------------------------------------
　_txt_right
---------------------------------------------------------------------------- */
._txt_right {
  text-align: right;
}

/* ----------------------------------------------------------------------------
　print
---------------------------------------------------------------------------- */
@media print {
  body {
    zoom: 0.55;
    -webkit-print-color-adjust: exact;
  }
  header {
    position: relative !important;
  }
  main {
    overflow-x: hidden;
  }
  .pagetop,
  #widthdebug,
  #gdpr {
    display: none !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  overflow-wrap: anywhere;
  line-break: strict;
  position: relative;
}
body.is-active::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(5, 41, 100, 0.8);
  backdrop-filter: blur(4px);
  z-index: 3;
}
body.top .l-under-header {
  display: none;
}
body.top .l-main {
  padding: 0;
}
body.top .breadcrumb > li {
  color: var(--white);
}
body.top .breadcrumb > li > a {
  color: var(--sub-blue);
}
body.top .breadcrumb > li > a::after {
  border-right-color: var(--sub-blue);
  border-bottom-color: var(--sub-blue);
}

a {
  color: inherit;
}
img {
  display: inline;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure, figcaption, pre, code, button {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

/*---------------------------------
  header
---------------------------------*/
.l-header {
  position: fixed;
  left: 0;
  bottom: 0;
  top: auto;
  background-color: var(--white);
  border-radius: 0 20px 0 0;
  width: 300px;
  -webkit-transition: var(--duration);
  transition: var(--duration);
  border: 1px solid var(--gray);
  z-index: 4;
  height: calc(100vh - 50px);
  opacity: 0;
  visibility: hidden;
}
.l-header.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .l-header {
    top: 0;
    bottom: auto;
    border-radius: 0 0 12px 0;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}

.sp__btn {
  border: none;
  background-color: var(--white);
  border-radius: 0 12px 0 0;
  border: 1px solid var(--gray);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 64px;
  height: 64px;
  cursor: pointer;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .sp__btn {
    display: none;
  }
}
.sp__btn.is-active {
  background-color: var(--light-gray);
}
.sp__btn.is-active > .bar > .line {
  display: none;
}
.sp__btn.is-active > .bar::before, .sp__btn.is-active > .bar::after {
  top: 50%;
}
.sp__btn.is-active > .bar::before {
  rotate: 45deg;
}
.sp__btn.is-active > .bar::after {
  rotate: -45deg;
}
.sp__btn > .bar {
  width: 24px;
  height: 20px;
  position: relative;
}
.sp__btn > .bar::before, .sp__btn > .bar::after {
  content: "";
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
.sp__btn > .bar > .line, .sp__btn > .bar::before, .sp__btn > .bar::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--body);
}
.sp__btn > .bar::before {
  top: calc(50% - 9px);
}
.sp__btn > .bar::after {
  top: calc(50% + 9px);
}
.sp__btn > .text {
  font-family: var(--jost);
  font-weight: 700;
}

.l-header__logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--gray);
}
@media (min-width: 1024px) {
  .l-header__logo {
    padding: 37px 20px 30px;
  }
}
.l-header__logo > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.l-header__logo > a > .text {
  font-size: 1.2rem;
  font-weight: 700;
}

.l-header__gnav {
  padding: 20px 20px 60px;
}
@media (min-width: 1024px) {
  .l-header__gnav {
    padding: 20px;
  }
}

.l-header__gnav__scroll {
  max-height: 340px;
  overflow-y: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .l-header__gnav__scroll {
    max-height: 500px;
  }
}

@-webkit-keyframes line-anime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 0;
  }
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    height: 120px;
  }
}

@keyframes line-anime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 0;
  }
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    height: 120px;
  }
}
.l-header__gnav__scroll__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.2rem;
  color: var(--gray);
  position: absolute;
  top: 100px;
  right: 20px;
  z-index: 1;
}
@media (min-width: 1024px) {
  .l-header__gnav__scroll__text {
    display: none;
  }
}
.l-header__gnav__scroll__text::before {
  content: "";
  width: 4px;
  height: 120px;
  position: absolute;
  right: 6px;
  top: 55px;
  background: url(../images/common/scroll-arrow.svg) no-repeat left top/cover;
  -webkit-animation: 2s ease-in-out 1s infinite running line-anime;
          animation: 2s ease-in-out 1s infinite running line-anime;
}

.l-header__gnav__item {
  margin-top: 12px;
}
.l-header__gnav__item:first-of-type {
  margin-top: 0;
}

.l-header__gnav__hdg-lv2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.l-header__gnav__categories__hdg {
  display: inline-block;
  padding-right: 28px;
  position: relative;
}
.l-header__gnav__categories__hdg > .hdg {
  font-size: 1.2rem;
  color: var(--main-blue);
  font-weight: 700;
}

.categories__button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.categories__button.is-active::before {
  rotate: 180deg;
}
.categories__button.is-active::after {
  content: none;
}
.categories__button::before, .categories__button::after {
  content: "";
  position: absolute;
  background-color: var(--body);
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
.categories__button::before {
  width: 12px;
  height: 2px;
  right: 0;
  top: 8px;
}
.categories__button::after {
  width: 2px;
  height: 12px;
  right: 5px;
  top: 3px;
}

.l-header__gnav__categories__item {
  display: none;
}

.l-header__gnav__button {
  margin: 25px auto 0;
  width: 200px;
  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;
}

.l-header__gnav__link {
  margin: 20px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header__gnav__link > li {
  margin-top: 4px;
}
.l-header__gnav__link > li:first-child {
  margin-top: 0;
}
.l-header__gnav__link > li > a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding-left: 28px;
  position: relative;
  color: var(--main-blue);
}
.l-header__gnav__link > li > a::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/common/icon-arrow.svg) no-repeat left top/cover;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
@media (any-hover: hover) {
  .l-header__gnav__link > li > a:hover {
    text-decoration: underline;
  }
  .l-header__gnav__link > li > a:hover::before {
    left: -2px;
  }
}

.l-under-header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  background-color: var(--white);
  padding: 20px 0;
  height: auto;
  z-index: 2;
}
@media (min-width: 1024px) {
  .l-under-header {
    display: none;
  }
}

.l-under-header__logo > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.l-under-header__logo > a > .text {
  font-size: 1.2rem;
  font-weight: 700;
}

.l-header {
  display: none !important;
}

.l-under-header {
  display: none !important;
}

.sp__btn {
  display: none !important;
}

/*---------------------------------
  fullwidth-header
---------------------------------*/
body {
  padding-top: 80px !important;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 65px !important;
  }
}

.fullwidth-header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 80px;
  z-index: 21;
  background-color: #fff;
  padding: 0 1.5rem 0 4rem;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .fullwidth-header {
    padding: 0 1.5rem 0 1.5rem;
    height: 65px;
  }
}
.fullwidth-header .fullwidth-header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.fullwidth-header .fullwidth-header__logo a {
  display: block;
  width: 230px;
  text-decoration: none;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
  position: relative;
  top: -0.2rem;
}
@media screen and (max-width: 768px) {
  .fullwidth-header .fullwidth-header__logo a {
    width: 190px;
  }
}
.fullwidth-header .fullwidth-header__logo a:hover {
  opacity: 0.8;
}
.fullwidth-header .fullwidth-header__logo .txt {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .fullwidth-header .fullwidth-header__logo .txt {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
}
.fullwidth-header .fullwidth-header__logo .image img {
  width: 100%;
}
.fullwidth-header .fullwidth-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}
@media screen and (max-width: 1200px) {
  .fullwidth-header .fullwidth-header__link {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .fullwidth-header .fullwidth-header__link {
    display: none;
  }
}
.fullwidth-header .fullwidth-header__link li a {
  position: relative;
  padding: 0 2rem 0.2rem 0;
  background: linear-gradient(to top, currentColor 1px, transparent 0%) no-repeat;
  -webkit-transition: 0.5s var(--easeOutQuad);
  transition: 0.5s var(--easeOutQuad);
  background-position: 0% 100%;
  background-size: 0% 1px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #003792;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .fullwidth-header .fullwidth-header__link li a {
    font-size: 1.4rem;
  }
}
.fullwidth-header .fullwidth-header__link li a::before {
  background: url(../images/common/icon-arrow.svg) no-repeat 0 0/cover;
  content: "";
  height: 20px;
  right: 0;
  position: absolute;
  top: 0.4rem;
  -webkit-transition: var(--duration);
  transition: var(--duration);
  width: 20px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 1200px) {
  .fullwidth-header .fullwidth-header__link li a::before {
    top: 0.1rem;
  }
}
.fullwidth-header .fullwidth-header__link li a:hover {
  background-size: 100% 1px;
}
.fullwidth-header .fullwidth-header__link li a:hover::before {
  -webkit-transform: translateX(5px) scale(-1, 1);
          transform: translateX(5px) scale(-1, 1);
}
.fullwidth-header .fullwidth-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
}
@media screen and (max-width: 1200px) {
  .fullwidth-header .fullwidth-header__btn {
    gap: 0 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .fullwidth-header .fullwidth-header__btn {
    display: none;
  }
}
.fullwidth-header .fullwidth-header__btn li {
  width: 200px;
}
@media screen and (max-width: 1200px) {
  .fullwidth-header .fullwidth-header__btn li {
    width: 160px;
  }
}
.fullwidth-header .fullwidth-header__btn li a {
  display: block;
  border-radius: 100px;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  padding: 1.3rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .fullwidth-header .fullwidth-header__btn li a {
    font-size: 1.4rem;
  }
}
.fullwidth-header .fullwidth-header__btn li a::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #333;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
  opacity: 0;
}
.fullwidth-header .fullwidth-header__btn li a:hover:before {
  opacity: 1;
}
.fullwidth-header .fullwidth-header__btn li.btn_contact a {
  background: var(--main-grad);
}
.fullwidth-header .fullwidth-header__btn li.btn_mm a {
  background: -webkit-gradient(linear, left top, right top, from(#e90147), to(#cc7b01));
  background: linear-gradient(to right, #e90147 0%, #cc7b01 100%);
}
.fullwidth-header .header-menu_open {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 80px;
  aspect-ratio: 1;
  background: none;
  border: none;
  position: absolute;
  top: 0rem;
  right: 0rem;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  .fullwidth-header .header-menu_open {
    width: 80px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .fullwidth-header .header-menu_open {
    width: 65px;
  }
}
.fullwidth-header .header-menu_open .header-menu_open_txt {
  font-size: 1.1rem;
  font-weight: 700;
  position: absolute;
  left: 0rem;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  font-family: var(--jost);
}
.fullwidth-header .header-menu_open .header-menu_open_txt .close {
  display: none;
}
.fullwidth-header .header-menu_open .header-menu_open_inner {
  width: 45%;
  aspect-ratio: 1/0.7;
  position: absolute;
  top: 19%;
  left: 27.5%;
  z-index: 2;
}
.fullwidth-header .header-menu_open .header-menu_open_inner span.header-menu_open_inner2 {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.fullwidth-header .header-menu_open .header-menu_open_inner span.header-menu_open_inner2::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s var(--easeOutQuad);
  transition: 0.2s var(--easeOutQuad);
}
.fullwidth-header .header-menu_open .header-menu_open_inner::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s var(--easeOutQuad);
  transition: 0.2s var(--easeOutQuad);
}
@media (any-hover: hover) {
  .fullwidth-header .header-menu_open:hover .header-menu_open_inner:before {
    top: 25%;
  }
}
.fullwidth-header .header-menu_open .header-menu_open_inner::after {
  content: "";
  position: absolute;
  top: calc((100% - 2px) / 2);
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s var(--easeOutQuad);
  transition: 0.2s var(--easeOutQuad);
}
@media (any-hover: hover) {
  .fullwidth-header .header-menu_open:hover .header-menu_open_inner span:before {
    bottom: 25%;
  }
}
.fullwidth-header .header-menu_open.active {
  background-color: #f4f5f8;
}
.fullwidth-header .header-menu_open.active .header-menu_open_txt .open {
  display: none;
}
.fullwidth-header .header-menu_open.active .header-menu_open_txt .close {
  display: block;
}
.fullwidth-header .header-menu_open.active .header-menu_open_inner::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 40%;
  background-color: #000;
}
.fullwidth-header .header-menu_open.active .header-menu_open_inner::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 40%;
  background-color: #000;
}
.fullwidth-header .header-menu_open.active .header-menu_open_inner span:before {
  display: none;
}

#sp-fullwidth-header-menu {
  position: fixed;
  top: 80px;
  left: 0rem;
  width: 100%;
  height: calc(100% - 80px);
  background-color: rgba(55, 83, 131, 0.9);
  z-index: 20;
  display: none;
  font-size: 1.6rem;
  overflow-y: auto;
  overscroll-behavior-y: none;
  padding: 5rem 0;
}
#sp-fullwidth-header-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: spFullwidthHeaderMenuAnime 0.4s var(--easeOutQuad) 0s forwards;
          animation: spFullwidthHeaderMenuAnime 0.4s var(--easeOutQuad) 0s forwards;
}
@-webkit-keyframes spFullwidthHeaderMenuAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes spFullwidthHeaderMenuAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
#sp-fullwidth-header-menu::-webkit-scrollbar {
  width: 5px;
}
#sp-fullwidth-header-menu::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  #sp-fullwidth-header-menu {
    top: 65px;
    height: calc(100% - 65px);
  }
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__inner {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 5rem 0;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__link__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__link li:not(:last-child) {
  margin-bottom: 3rem;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__link li a {
  position: relative;
  padding: 0 2rem 0 0;
  background: linear-gradient(to top, currentColor 1px, transparent 0%) no-repeat;
  -webkit-transition: 0.5s var(--easeOutQuad);
  transition: 0.5s var(--easeOutQuad);
  background-position: 0% 100%;
  background-size: 0% 1px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #003792;
  text-decoration: none;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__link li a::before {
  background: url(../images/common/icon-arrow.svg) no-repeat 0 0/cover;
  content: "";
  height: 20px;
  right: 0;
  position: absolute;
  top: 0.4rem;
  -webkit-transition: var(--duration);
  transition: var(--duration);
  width: 20px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__link li a:hover {
  background-size: 100% 1px;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__link li a:hover::before {
  -webkit-transform: translateX(-3px) scale(-1, 1);
          transform: translateX(-3px) scale(-1, 1);
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__btn li {
  width: 250px;
  margin: 0 auto;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__btn li:not(:last-child) {
  margin-bottom: 1.5rem;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__btn li a {
  display: block;
  border-radius: 100px;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  padding: 1.6rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__btn li a::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #333;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
  opacity: 0;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__btn li a:hover:before {
  opacity: 1;
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__btn li.btn_contact a {
  background: var(--main-grad);
}
#sp-fullwidth-header-menu .sp-fullwidth-header-menu__btn li.btn_mm a {
  background: -webkit-gradient(linear, left top, right top, from(#e90147), to(#cc7b01));
  background: linear-gradient(to right, #e90147 0%, #cc7b01 100%);
}

/*---------------------------------
  footer
---------------------------------*/
.btn_pagetop {
  z-index: 2;
}
@media (min-width: 1024px) {
  .btn_pagetop {
    z-index: 7;
  }
}

footer {
  border-top: 1px solid var(--gray);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  footer {
    z-index: 6;
  }
}

/*---------------------------------
  main
---------------------------------*/
.l-main {
  overflow: hidden;
  padding: 20px 0 80px;
  background-color: var(--light-gray);
  position: relative;
}
@media (min-width: 1024px) {
  .l-main {
    padding: 40px 0 120px;
  }
}
.l-main::before {
  content: "";
  width: 100%;
  height: 680px;
  background: url(../images/common/bg-01.png) no-repeat center top/contain;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1024px) {
  .l-main::before {
    background-size: cover;
  }
}

.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1160px) {
  .l-inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 94%;
  }
}

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

　_footer

=============================================================================== */
footer {
  font-size: 1.6rem;
  padding: 6.5rem 0 0;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#003792), to(#407CDD));
  background: linear-gradient(to bottom, #003792 0%, #407CDD 100%);
  z-index: 5;
}
footer .footer-contact {
  position: absolute;
  top: 0rem;
  right: 0rem;
}
@media screen and (max-width: 768px) {
  footer .footer-contact {
    position: relative;
    margin-bottom: 3.5rem;
  }
}
footer .footer-contact a {
  display: block;
  width: 280px;
  background-color: #fff;
  color: #262f36;
  font-weight: 600;
  text-decoration: none;
  padding: 1.5rem 0;
  border-radius: 100px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
@media screen and (max-width: 768px) {
  footer .footer-contact a {
    width: 100%;
    font-size: 1.5rem;
    padding: 1.2rem 0;
  }
}
footer .footer-contact a::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #fff;
  border-radius: 100px;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
  opacity: 0;
}
footer .footer-contact a:hover {
  background: none;
  color: #fff;
}
footer .footer-contact a:hover::before {
  opacity: 1;
}
footer .footer-contact a:hover::after {
  background: url("../../assets/img/icon_arrow_right_white.svg") 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
footer .footer-contact a::after {
  content: "";
  position: absolute;
  top: calc((100% - 10px) / 2);
  right: 2rem;
  width: 10px;
  aspect-ratio: 1/1.2;
  background: url("../../assets/img/icon_arrow_right_black.svg") 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
footer .footer__inner {
  width: 1200px;
  margin: 0 auto 4rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  footer .footer__inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer__inner {
    width: 82%;
    display: block;
    margin-bottom: 6rem;
  }
}
footer .footer__inner .footer__solution {
  margin-bottom: 7rem;
}
footer .footer__inner .footer__solution .logo {
  margin-bottom: 2.5rem;
  width: 275px;
  background: url("../../assets/img/logo_argo_solution.svg") 0 0 no-repeat;
  background-size: 100% auto;
  aspect-ratio: 1/0.268115942;
  font-size: 0rem;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__solution .logo {
    width: 100%;
    margin-bottom: 3.5rem;
  }
}
footer .footer__inner .footer__solution .main_menu {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}
footer .footer__inner .footer__solution .main_menu li a {
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 2.5rem 0 0;
  text-decoration: none;
  background: linear-gradient(to top, currentColor 1px, transparent 0%) no-repeat;
  -webkit-transition: 0.5s var(--easeOutQuad);
  transition: 0.5s var(--easeOutQuad);
  background-position: 0% 100%;
  background-size: 0% 1px;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__solution .main_menu li a {
    font-size: 1.6rem;
  }
}
footer .footer__inner .footer__solution .main_menu li a:hover {
  background-size: 100% 1px;
}
footer .footer__inner .footer__solution .main_menu li a::after {
  content: "";
  position: absolute;
  top: calc((100% - 10px) / 2);
  right: 0rem;
  width: 10px;
  aspect-ratio: 1/1.1;
  background: url("../../assets/img/icon_arrow_right_white.svg") 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
footer .footer__inner .footer__solution .main_menu li a:hover::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
footer .footer__inner .footer__solution .sub_menu {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__solution .sub_menu {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__solution .sub_menu li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
footer .footer__inner .footer__solution .sub_menu li a {
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 0 1rem 0 0;
  background: linear-gradient(to top, currentColor 1px, transparent 0%) no-repeat;
  -webkit-transition: 0.5s var(--easeOutQuad);
  transition: 0.5s var(--easeOutQuad);
  background-position: 0% 100%;
  background-size: 0% 1px;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__solution .sub_menu li a {
    font-size: 1.5rem;
  }
}
footer .footer__inner .footer__solution .sub_menu li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 1rem;
  right: 0rem;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
footer .footer__inner .footer__solution .sub_menu li a:hover {
  background-size: 100% 1px;
}
footer .footer__inner .footer__solution .sub_menu li a:hover::after {
  -webkit-transform: translateX(3px) rotate(45deg);
          transform: translateX(3px) rotate(45deg);
}
footer .footer__inner .footer__corpo .logo {
  margin-bottom: 2.5rem;
  width: 275px;
  background: url("../../assets/img/logo_argo_corpo.svg") 0 0 no-repeat;
  background-size: 100% auto;
  aspect-ratio: 1/0.268115942;
  font-size: 0rem;
}
footer .footer__inner .footer__corpo > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 5rem;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__corpo > ul {
    display: block;
  }
}
footer .footer__inner .footer__corpo > ul > li {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__corpo > ul > li:not(:last-child) {
    margin-bottom: 4rem;
  }
}
footer .footer__inner .footer__corpo > ul > li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 145px;
          flex: 0 0 145px;
}
footer .footer__inner .footer__corpo > ul > li > a {
  display: block;
}
footer .footer__inner .footer__corpo > ul > li > a span {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 0 2rem 0 0;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__corpo > ul > li > a span {
    font-size: 1.6rem;
  }
}
footer .footer__inner .footer__corpo > ul > li > a span::after {
  content: "";
  position: absolute;
  top: calc((100% - 10px) / 2);
  right: 0rem;
  width: 10px;
  aspect-ratio: 1/1.1;
  background: url("../../assets/img/icon_arrow_right_white.svg") 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
footer .footer__inner .footer__corpo > ul > li > a:hover span::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
footer .footer__inner .footer__corpo > ul > li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 2rem;
  border-top: 1px solid #C0CDD6;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
footer .footer__inner .footer__corpo > ul > li ul li a {
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 0 1rem 0 0;
  background: linear-gradient(to top, currentColor 1px, transparent 0%) no-repeat;
  -webkit-transition: 0.5s var(--easeOutQuad);
  transition: 0.5s var(--easeOutQuad);
  background-position: 0% 100%;
  background-size: 0% 1px;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__corpo > ul > li ul li a {
    font-size: 1.5rem;
  }
}
footer .footer__inner .footer__corpo > ul > li ul li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 1rem;
  right: 0rem;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
footer .footer__inner .footer__corpo > ul > li ul li a:hover {
  background-size: 100% 1px;
}
footer .footer__inner .footer__corpo > ul > li ul li a:hover::after {
  -webkit-transform: translateX(3px) rotate(45deg);
          transform: translateX(3px) rotate(45deg);
}
footer .footer-pagetop {
  position: fixed;
  right: 1rem;
  z-index: 5;
  font-size: 0rem;
  padding-bottom: 2rem;
  display: none;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.2));
}
footer .footer-pagetop span {
  display: block;
  width: 65px;
  aspect-ratio: 1;
  position: relative;
}
footer .footer-pagetop span::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background: url("../../assets/img/pagetop.svg") 0% 0 no-repeat;
  background-size: 200% auto;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
footer .footer-pagetop span::after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background: url("../../assets/img/pagetop.svg") 100% 0 no-repeat;
  background-size: 200% auto;
  opacity: 0;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
footer .footer-pagetop:hover span::before {
  opacity: 0;
}
footer .footer-pagetop:hover span::after {
  opacity: 1;
}
footer .footer-pagetop.active {
  display: block;
}
footer .footer__copyright {
  font-size: 1.2rem;
  color: #262F36;
  text-align: center;
  background-color: #fff;
  padding: 1rem 0;
}

/*---------------------------------
  box
---------------------------------*/
.box__01 {
  margin-top: 20px;
  border-radius: 8px;
  background-color: var(--box01);
  border: 1px solid var(--border);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .box__01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .box__01 {
    padding: 32px;
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .box__01__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.box__01__content h4 + .box__01__text {
  margin-top: 20px;
}
.box__01__content .box__01__text > p {
  margin-top: 0;
}

.box__01__image img {
  width: 100% !important;
}
@media (min-width: 768px) {
  .box__01__image {
    width: 40%;
  }
}

.box__01__figure {
  margin-top: 13px;
}
.box__01__figure:first-child {
  margin-top: 0;
}
.box__01__figure > img {
  margin-top: 0 !important;
}

.box__02 {
  margin-top: 20px;
  border-radius: 8px;
  background-color: var(--white);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .box__02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .box__02 {
    gap: 40px;
  }
}

.box__02__image img {
  width: 100% !important;
}
@media (min-width: 768px) {
  .box__02__image {
    width: 31.8%;
  }
}
.box__02__image > img {
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  .box__02__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.box__02__content p {
  margin-top: 12px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .box__02__content .button__block {
    text-align: right;
  }
}

/*---------------------------------
  _bg_white
---------------------------------*/
._bg_white {
  margin-top: 20px;
  border-radius: 8px;
  background-color: #fff;
  padding: 20px;
}
._bg_white img {
  margin-top: 0rem !important;
}
@media (min-width: 1024px) {
  ._bg_white {
    padding: 32px;
  }
}

/*---------------------------------
  link
---------------------------------*/
.link__list {
  margin-top: 32px;
}
.link__list > li {
  margin-top: 12px;
  position: relative;
  padding-left: 22px;
  font-size: 1.6rem;
}
.link__list > li:first-child {
  margin-top: 0;
}
.link__list > li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--main-blue);
  position: absolute;
  left: 0;
  top: 8px;
}
.link__list > li > a {
  color: var(--main-blue);
  text-decoration: underline;
}
.link__list > li > a::after {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  margin-bottom: 2px;
  background-color: var(--main-blue);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.link__list > li > a[download]::after {
  content: "";
  -webkit-mask-image: url(../images/common/icon-download.svg);
  mask-image: url(../images/common/icon-download.svg);
}
.link__list > li > a[target=_blank]::after {
  content: "";
  -webkit-mask-image: url(../images/common/icon-blank.svg);
  mask-image: url(../images/common/icon-blank.svg);
}
.link__list > li > a[href$=".pdf"]::after {
  content: "";
  -webkit-mask-image: url(../images/common/icon-pdf.svg);
  mask-image: url(../images/common/icon-pdf.svg);
}
.link__list > li > a:hover {
  text-decoration: none;
}

/*---------------------------------
  btn
---------------------------------*/
.section__button {
  margin: 40px auto 0;
  width: 280px;
}

.button__block {
  margin-top: 20px;
  text-align: center;
}
.button__block + .button__block {
  margin-top: 20px;
}

.buttons-block {
  padding: 40px 0;
  background-color: var(--light-gray);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .buttons-block {
    padding: 60px 0;
  }
}

.buttons-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .buttons-block__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 35px;
  }
}
.buttons-block__list > li {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .buttons-block__list > li {
    margin: 0;
  }
}

.button__01 {
  text-decoration: none;
  background: var(--main-grad);
  border-radius: 100vmax;
  display: block;
  padding: 14px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
@media (any-hover: hover) {
  .button__01:hover::before {
    background: var(--body);
  }
}
.button__01._arrow::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--white);
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
  rotate: 180deg;
  -webkit-mask-image: url(../images/common/icon-arrow.svg);
  mask-image: url(../images/common/icon-arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.button__01._orange {
  background: -webkit-gradient(linear, left top, right top, from(#e90147), to(#cc7b01));
  background: linear-gradient(to right, #e90147 0%, #cc7b01 100%);
}
.button__01::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: var(--duration);
  transition: var(--duration);
  width: 100%;
}
.button__01 > .text {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 700;
}

.button__02 {
  text-decoration: none;
  background: var(--sub-grad);
  border-radius: 100vmax;
  display: inline-block;
  min-width: 280px;
  padding: 16px 36px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
@media (any-hover: hover) {
  .button__02:hover::before {
    background: var(--red);
  }
}
.button__02::before, .button__02::after {
  content: "";
  position: absolute;
}
.button__02::after {
  width: 20px;
  height: 20px;
  background-color: var(--white);
  right: 18px;
  top: 50%;
  translate: 0 -50%;
  rotate: 180deg;
  -webkit-mask-image: url(../images/common/icon-arrow.svg);
  mask-image: url(../images/common/icon-arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.button__02::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: var(--duration);
  transition: var(--duration);
  width: 100%;
}
.button__02 > .text {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 700;
}

/*---------------------------------
  hdg
---------------------------------*/
.hdg__lv1__01 {
  line-height: 110%;
  padding-left: 12px;
  border-left: 8px solid var(--main-blue);
  font-weight: 700;
}
@media (min-width: 1024px) {
  .hdg__lv1__01 {
    padding-left: 16px;
    margin-top: 32px;
  }
}
.hdg__lv1__01 > .large {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .hdg__lv1__01 > .large {
    font-size: 2.8rem;
  }
}
.hdg__lv1__01 > .small {
  font-size: 1.4rem;
  padding-left: 4px;
}
@media (min-width: 1024px) {
  .hdg__lv1__01 > .small {
    font-size: 2rem;
    padding-left: 8px;
  }
}

.hdg__lv2__01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1024px) {
  .hdg__lv2__01 {
    gap: 0;
  }
}
.hdg__lv2__01._white > .en {
  color: var(--sub-blue);
}
.hdg__lv2__01._white > .jp {
  color: var(--white);
}
.hdg__lv2__01._black > .en {
  color: var(--main-blue);
}
.hdg__lv2__01._black > .jp {
  color: var(--body);
}
.hdg__lv2__01 > .en {
  font-family: var(--jost);
  font-size: 1.4rem;
  text-transform: uppercase;
}
.hdg__lv2__01 > .jp {
  color: var(--white);
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .hdg__lv2__01 > .jp {
    font-size: 3.2rem;
    letter-spacing: 0.1em;
  }
}

.hdg__lv2__02 {
  font-size: 1.8rem;
  padding-bottom: 16px;
  text-align: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hdg__lv2__02 {
    margin-top: 80px;
    font-size: 2rem;
  }
}
.hdg__lv2__02::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: var(--main-blue);
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 0;
}

/*---------------------------------
  list
---------------------------------*/
.categorie__list {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 8px;
}
.categorie__list > li {
  border: 1px solid var(--gray);
  border-radius: 13px;
  background-color: var(--white);
  font-size: 1.2rem;
  padding: 3px 9px 3px 18px;
  position: relative;
  font-weight: 500;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
.categorie__list > li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--main-blue);
  border-bottom: 1px solid var(--main-blue);
  rotate: -45deg;
  position: absolute;
  left: 7px;
  top: 52%;
  translate: 0 -50%;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
.categorie__list > li:has(a) {
  padding: 0;
}
@media (any-hover: hover) {
  .categorie__list > li:has(a):hover {
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
  }
  .categorie__list > li:has(a):hover::before {
    opacity: 0;
  }
}
.categorie__list > li:has(a) > a {
  display: block;
  text-decoration: none;
  padding: 3px 9px 3px 18px;
}

.article__block {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .article__block {
    margin-top: 80px;
  }
}

.article__list {
  width: 87.5925925926%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .article__list {
    width: 100%;
  }
}
.article__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 55px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .article__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 55px 20px;
  }
}
@media (min-width: 1024px) {
  .article__list {
    gap: 55px 35px;
  }
}
.article__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .article__list > li {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media (min-width: 1024px) {
  .article__list > li {
    width: calc(33.3333333333% - 23.3333333333px);
  }
}
@media screen and (max-width: 768px) {
  .article__list > li {
    display: block;
  }
}
.article__list > li > a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--white);
  padding: 0 14px 20px;
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--gray);
}
@media (any-hover: hover) {
  .article__list > li > a:hover .article__list__image > img {
    scale: 1.1;
  }
}

.article__list__image {
  width: 84%;
  margin: -20px auto 0;
  -webkit-box-shadow: 0 3px 6px rgba(42, 49, 56, 0.16);
          box-shadow: 0 3px 6px rgba(42, 49, 56, 0.16);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .article__list__image {
    width: 100%;
  }
}
.article__list__image > img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}

.article__list__date {
  margin-top: 10px;
  position: relative;
  padding-left: 30px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article__list__date::before, .article__list__date::after {
  content: "";
  position: absolute;
}
.article__list__date::before {
  background: url(../images/common/icon-star.svg) no-repeat left top/cover;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
.article__list__date::after {
  width: calc(100% - 105px);
  height: 1px;
  background-color: var(--main-blue);
  right: 0;
  top: 50%;
}
.article__list__date > .text {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--jost);
  color: var(--main-blue);
  padding-right: 8px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.article__list__title {
  margin-top: 8px;
  font-size: 1.6rem;
}

.movie__list {
  margin: 32px auto 0;
  width: 87.5925925926%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .movie__list {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .movie__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .movie__list > li {
    width: calc(33.3333333333% - 23.3333333333px);
  }
}
.movie__list > li > a {
  text-decoration: none;
}
@media (any-hover: hover) {
  .movie__list > li > a:hover img {
    scale: 1.05;
  }
}

.movie__list__image {
  border-radius: 6px;
  overflow: hidden;
}
.movie__list__image > img {
  width: 100%;
  aspect-ratio: 1/0.4545454545;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}

.movie__list__title {
  margin-top: 8px;
  font-size: 8px;
  font-size: 1.6rem;
}
.movie__list__title::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  margin-bottom: 2px;
  background-color: var(--body);
  -webkit-mask-image: url(../images/common/icon-blank.svg);
  mask-image: url(../images/common/icon-blank.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.product__list {
  width: 87.5925925926%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product__list {
    width: 100%;
  }
}
.product__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 55px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .product__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 55px 20px;
  }
}
@media (min-width: 1024px) {
  .product__list {
    gap: 60px 35px;
  }
}
@media (min-width: 768px) {
  .product__list > li {
    width: calc(50% - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .product__list > li {
    width: calc(50% - 17.5px);
  }
}
.product__list > li > a {
  text-decoration: none;
  display: block;
  background-color: var(--white);
  padding: 0 20px 20px;
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--gray);
}
@media (any-hover: hover) {
  .product__list > li > a:hover .product__list__image > img {
    scale: 1.1;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
}

.product__list__image {
  width: 84%;
  margin: -20px auto 0;
  -webkit-box-shadow: 0 3px 6px rgba(42, 49, 56, 0.16);
          box-shadow: 0 3px 6px rgba(42, 49, 56, 0.16);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .product__list__image {
    max-width: 264px;
  }
}
.product__list__image {
  aspect-ratio: 1/0.3846153846;
  background-color: #fff;
  position: relative;
}
.product__list__image > img {
  width: 100%;
  -webkit-transition: var(--duration);
  transition: var(--duration);
  position: absolute;
  left: 0rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product__list__title {
  margin-top: 10px;
  font-size: 1.6rem;
  color: var(--main-blue);
  font-weight: 700;
}

.product__list__text {
  margin-top: 12px;
}
.product__list__text._large {
  font-size: 1.6rem;
}
.product__list__text._small {
  font-size: 1.4rem;
}

.product__list__tag {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.product__list__tag > li {
  border-radius: 13px;
  background-color: var(--box01);
  font-size: 1.2rem;
  padding: 3px 9px;
  position: relative;
  font-weight: 500;
}

/*---------------------------------
  breadcrumb
---------------------------------*/
.breadcrumb {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  display: none;
}
@media (min-width: 1024px) {
  .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.breadcrumb > li {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--body);
}
.breadcrumb > li > a {
  color: var(--main-blue);
  position: relative;
  text-decoration: underline;
}
.breadcrumb > li > a:hover {
  text-decoration: none;
}
.breadcrumb > li > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--main-blue);
  border-bottom: 1px solid var(--main-blue);
  position: absolute;
  right: -10px;
  top: 5px;
  rotate: -45deg;
}

/*---------------------------------
  pagenation
---------------------------------*/
.navigation.pagination {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .navigation.pagination {
    margin-top: 66px;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .nav-links {
    gap: 8px;
  }
}
.nav-links > a {
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
@media (any-hover: hover) {
  .nav-links > a:hover {
    opacity: 0.7;
  }
}
.nav-links > .page-numbers {
  width: 40px;
  height: 40px;
  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;
  text-decoration: none;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: var(--body);
  font-family: var(--jost);
}
@media (min-width: 1024px) {
  .nav-links > .page-numbers {
    width: 48px;
    height: 48px;
  }
}
.nav-links > .page-numbers.next {
  rotate: 180deg;
}
.nav-links > .page-numbers.prev {
  opacity: 0.2;
}
.nav-links > .page-numbers.current {
  background-color: var(--main-blue);
  border-radius: 4px;
  font-size: 2.4rem;
  color: var(--white);
}
@media (min-width: 1024px) {
  .nav-links > .page-numbers.current {
    border-radius: 8px;
  }
}

/*---------------------------------
  text
---------------------------------*/
.section__text--small {
  text-align: center;
  margin-top: 12px;
  font-size: 1.2rem;
}

/*---------------------------------
  top
---------------------------------*/
.main-visual {
  background-color: var(--light-gray);
  padding-bottom: 55px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .main-visual {
    background: url("../images/common/bg-01.png") 0 50% no-repeat;
    background-size: 100% auto;
    background-color: var(--light-gray);
    padding-bottom: 80px;
  }
}

.main-visual__top {
  padding: 40px 0 76px;
  margin-bottom: 0px;
  background: url(../images/top/mv-bg-sp.png) no-repeat center top/100% 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .main-visual__top {
    background: url(../images/top/mv-bg-pc.png) no-repeat center top/100% 100%;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__top {
    padding: 40px 0 45px;
  }
}

.constellation {
  position: absolute;
  left: 50%;
  top: 0;
  width: 600px;
  -webkit-transform: translateX(-70%);
          transform: translateX(-70%);
}
@media (min-width: 768px) {
  .constellation {
    left: auto;
    max-width: 1066px;
    right: 0;
    width: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.main-visual__content {
  color: var(--white);
}
@media (min-width: 1024px) {
  .main-visual__content {
    margin-top: 75px;
  }
}

.main-visual__hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
@media screen and (max-width: 768px) {
  .main-visual__hdg {
    gap: 0px;
  }
}
.main-visual__hdg > .text {
  color: #B0BFD1;
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .main-visual__hdg > .text {
    text-align: left;
  }
}
.main-visual__hdg > .image > img {
  width: 266px;
}
@media (min-width: 1024px) {
  .main-visual__hdg > .image > img {
    width: 355px;
  }
}
.main-visual__hdg > .image > .text {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 6px;
  position: relative;
  top: 0.7rem;
}
@media screen and (max-width: 768px) {
  .main-visual__hdg > .image > .text {
    font-size: 1.2rem;
    margin-left: 2px;
  }
}

.main-visual__text {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.main-visual__text:first-of-type {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .main-visual__text:first-of-type {
    margin-top: 32px;
  }
}
.main-visual__text._small {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 160%;
}

.main-visual__bottom {
  position: relative;
}
.main-visual__bottom::before {
  content: "";
  width: 100%;
  height: 680px;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 1024px) {
  .main-visual__bottom::before {
    background-size: cover;
  }
}
.top-solution {
  position: relative;
  padding: 32px 0;
}
@media (min-width: 1024px) {
  .top-solution {
    padding: 60px 0;
  }
}
.top-solution::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/solution-bg.png) no-repeat left top/cover;
  z-index: 0;
}

.top-solution__figure {
  width: 90%;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-solution__figure {
    width: 100%;
  }
}

.top-solution__text {
  margin: 36px auto 0;
  font-size: 1.6rem;
  color: var(--white);
  width: 92%;
}
@media (min-width: 768px) {
  .top-solution__text {
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .top-solution__text {
    margin-top: 40px;
  }
}

.top-industry {
  padding: 40px 0 60px;
  background-color: var(--light-gray);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .top-industry {
    padding: 40px 0 100px;
  }
}

.industry__list {
  margin: 32px auto 0;
  width: 88%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .industry__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .industry__list {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .industry__list > li {
    width: calc(33.3333333333% - 26.6666666667px);
  }
}
.industry__list > li > a {
  display: block;
  position: relative;
  text-decoration: none;
}
@media (any-hover: hover) {
  .industry__list > li > a:hover .industry__list__image {
    opacity: 0.6;
  }
}

.industry__list__image {
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
.industry__list__image img {
  width: 100%;
  aspect-ratio: 151/82;
}

.industry__list__hdg {
  background-color: rgba(5, 41, 100, 0.65);
  backdrop-filter: blur(2px);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

/*---------------------------------
  category_tab
---------------------------------*/
.category_wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#003792), to(#407cdd));
  background: linear-gradient(to bottom, #003792 0%, #407cdd 100%);
  border-radius: 10px;
  padding: 2.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .category_wrapper {
    padding: 1.2rem;
    margin-top: 2rem;
  }
}

body.top .category_wrapper {
  background: none !important;
  background-color: rgba(1, 43, 84, 0.7) !important;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  body.top .category_wrapper {
    margin-top: 5rem;
  }
}
body.top .category_wrapper .category_tab {
  padding: 0 7%;
}
@media screen and (max-width: 768px) {
  body.top .category_wrapper .category_tab {
    padding: 0 0%;
  }
}

.category_tab {
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .category_tab {
    padding: 0 0;
    margin-bottom: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.category_tab button {
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
  padding: 0 3rem 1.5rem;
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .category_tab button {
    width: 50%;
    font-size: 1.2rem;
    padding: 1rem 0rem 0.5rem;
  }
}
.category_tab button::after {
  content: "";
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  width: 100%;
  height: 1px;
  background-color: #c0cdd6;
}
.category_tab button:hover {
  color: #8BC6FF;
}
.category_tab button:hover::after {
  background-color: #8BC6FF;
}
.category_tab button.active {
  font-weight: 700;
}
.category_tab button.active::after {
  background-color: #2286e6;
}

.category_list {
  display: none;
}
@media screen and (max-width: 768px) {
  .category_list {
    overflow-y: auto;
    overscroll-behavior-y: none;
    max-height: 150px;
    padding-right: 1rem;
  }
  .category_list::-webkit-scrollbar {
    width: 3px;
  }
  .category_list::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
  }
}
.category_list.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 1.2rem;
  -webkit-animation: categoryListAnime 0.5s var(--easeOutQuad) 0s forwards;
          animation: categoryListAnime 0.5s var(--easeOutQuad) 0s forwards;
}
@media screen and (max-width: 768px) {
  .category_list.active {
    gap: 0.5rem 0.5rem;
  }
}
@-webkit-keyframes categoryListAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes categoryListAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.category_list li a {
  display: inline-block;
  position: relative;
  border: 1px solid #87bbed;
  border-radius: 100px;
  font-size: 1.4rem;
  color: #fff;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  -webkit-transition: 0.4s var(--easeOutQuad);
  transition: 0.4s var(--easeOutQuad);
}
@media screen and (max-width: 768px) {
  .category_list li a {
    font-size: 1rem;
    padding: 0.2rem 0.8rem;
  }
}
.category_list li a:hover {
  background-color: #2286e6;
}
.category_list li a.active {
  border: 1px solid #fff;
  background-color: #fff;
  color: #0054a7;
}

/*---------------------------------
  detail
---------------------------------*/
.detail__block {
  max-width: 950px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .detail__block {
    margin-top: 35px;
  }
}

.detail__head {
  width: calc(100% + 130px);
  position: relative;
  left: -65px;
}
@media screen and (max-width: 1160px) {
  .detail__head {
    width: 100%;
    left: 0rem;
  }
}

.detail__date {
  position: relative;
  padding-left: 30px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail__date::before, .detail__date::after {
  content: "";
  position: absolute;
}
.detail__date::before {
  background: url(../images/common/icon-star.svg) no-repeat left top/cover;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
.detail__date::after {
  width: calc(100% - 105px);
  height: 1px;
  background-color: var(--sub-blue2);
  right: 0;
  top: 50%;
}
.detail__date > .text {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--jost);
  color: var(--main-blue);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.detail__hdg {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .detail__hdg {
    font-size: 2.4rem;
  }
}

.detail__body {
  margin-top: 25px;
  line-height: 1.75;
}
@media (min-width: 1024px) {
  .detail__body {
    margin-top: 50px;
  }
}
.detail__body > *:first-child {
  margin-top: 0;
}
.detail__body em {
  font-weight: 700;
}
.detail__body img {
  margin: 20px auto 0;
  width: auto;
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .detail__body img {
    margin-top: 40px;
  }
}
.detail__body h2 {
  margin-top: 64px;
  font-size: 1.8rem;
  padding-bottom: 16px;
  text-align: center;
  position: relative;
}
@media (min-width: 1024px) {
  .detail__body h2 {
    margin-top: 80px;
    font-size: 2rem;
  }
}
.detail__body h2::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: var(--main-blue);
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 0;
}
.detail__body h3 {
  margin-top: 32px;
  font-size: 1.6rem;
  color: var(--main-blue);
}
@media (min-width: 1024px) {
  .detail__body h3 {
    margin-top: 40px;
  }
}
.detail__body h4 {
  font-size: 1.8rem;
  color: var(--main-blue);
}
@media (min-width: 1024px) {
  .detail__body h4 {
    font-size: 2rem;
  }
}
.detail__body h5 {
  font-size: 1.6rem;
  color: var(--main-blue);
}
.detail__body h6 {
  font-size: 1.6rem;
}
.detail__body pre {
  font-family: inherit;
  white-space: normal;
}
.detail__body blockquote,
.detail__body pre,
.detail__body p,
.detail__body pre {
  font-size: 1.6rem;
  margin-top: 20px;
}
.detail__body iframe {
  margin: 20px auto 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  max-width: 800px !important;
  display: block;
}
.detail__body ol,
.detail__body ul {
  font-size: 1.6rem;
  margin-top: 20px;
}
.detail__body ul > li {
  padding-left: 22px;
  position: relative;
  margin-top: 12px;
}
.detail__body ul > li:first-child {
  margin-top: 0;
}
.detail__body ul > li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--main-blue);
  position: absolute;
  left: 0;
  top: 8px;
}
.detail__body ol {
  list-style-type: decimal;
  list-style-position: inside;
  padding: 0 0 0 2rem;
}
.detail__body ol > li {
  margin-top: 12px;
}
.detail__body ol > li:first-child {
  margin-top: 0;
}
.detail__body .wp-block-group p {
  font-size: 1.2rem;
}
.detail__body table {
  margin-top: 20px;
}
.detail__body table thead {
  border: none;
  color: var(--white);
}
.detail__body table thead th {
  background-color: var(--main-blue);
}
.detail__body table th,
.detail__body table td {
  border: 1px solid var(--border);
  font-size: 1.6rem;
  background-color: var(--white);
}

.section__block {
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .section__block {
    margin-top: 80px;
  }
}

.contact__box {
  width: 87.5925925926%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__box {
    width: 100%;
  }
}
.contact__box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  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;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 36px;
  }
}

.contact__text {
  font-size: 1.6rem;
  font-weight: 500;
}

#download .download-thumbnail {
  width: 400px;
  margin: 3rem auto 0rem;
}
@media screen and (max-width: 768px) {
  #download .download-thumbnail {
    width: 100%;
  }
}
#download .download-thumbnail img {
  width: 100%;
}
#download .download-ttl {
  text-align: center;
  margin-top: 1rem;
}

/*---------------------------------
  top
---------------------------------*/
.u-sp {
  display: block;
}
@media (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

.u-tab {
  display: none;
}
@media (min-width: 768px) {
  .u-tab {
    display: block;
  }
}

.u-pc {
  display: none;
}
@media (min-width: 1024px) {
  .u-pc {
    display: block;
  }
}

.u-pc-none {
  display: block;
}
@media (min-width: 1024px) {
  .u-pc-none {
    display: none;
  }
}