@charset "UTF-8";/*
*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
}

html.fixed {
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

.gBody {
}

body {
  position: relative;
}

body.p-home {
  padding-top: initial !important;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
}

/* 🌱 スマホではhoverを無効化 */
@media (hover: none) {
  a:hover, a:hover img {
    background-color: inherit;
    color: inherit;
    transform: none;
    transition: none;
  }
}

section.center {
  text-align: center;
}

@keyframes dash {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes anim-scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes MenuIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes MenuOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.loader-wrap {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loader-wrap.hide {
  opacity: 0;
}

section .column {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

section .column.fix-l {
  margin-left: var(--m-fix);
  padding-left: var(--m-xxs);
}

section .column.fix-r {
  margin-right: var(--m-fix);
  padding-left: var(--m-xxs);
}

.box {
  display: block;
}

.box.white {
  padding: var(--m-s);
  background: #fff;
}

.box.gray {
  padding: var(--m-s);
  background: #f9ddf9;
}

.wyp, .column, .u-inner, .box {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wyp.enter, .column.enter, .u-inner.enter, .box.enter {
  opacity: 1;
  animation: pop-up 0.7s ease forwards;
}

@keyframes pop-up {
  0% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-feature-settings: "palt";
}

h1 {
  line-height: 1.2;
}

h2, h3 {
  line-height: 1.4;
}

h4, h5, h6 {
  line-height: 1.4;
}

p {
  line-height: 1.8;
  /* 本文は読みやすく */
}

section h3.copy {
  font-size: var(--f-xxl);
  margin-bottom: var(--m-m);
  font-weight: var(--w-b);
  width: 100%;
}

section h3.copy + p {
}

.text_box p {
}

.text_box p + p {
  margin-top: var(--m-r);
}

.text_box .column {
  margin-top: var(--m-m);
}

.text_box .column.box {
  background-color: var(--c-05);
  padding: var(--m-s);
  border-radius: var(--m-xxs);
}

.contents section {
  padding-top: var(--m-xl);
  padding-bottom: var(--m-xxxl);
  position: relative;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes anim-scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

:root {
  --c-01: #094bae;
  --c-02: #5ac7dc;
  --c-03: #00b1e0;
  --c-04: #313846;
  --c-05: #171230;
  --c-06: #c7c8dd;
  --c-07: #f5f5f5;
  --c-08: #555;
  --c-09: #f7f8ff;
  --c-10: #2b3632;
  --f-icon: phosphor;
  --f-sans: 'Noto Sans JP', sans-serif;
  --f-serif: 'Noto Serif JP', serif;
  --f-en: 'Plus Jakarta Sans', sans-serif;
  --f-hand: 'Allura', serif;
  --bg-light: #f0f4f8;
  --f-max: clamp(3.8rem, 3.2vw, 32px);
  --f-xxxxl: clamp(3.4rem, 3.0vw, 28px);
  --f-xxxl: clamp(2.6rem, 2.2vw, 24px);
  --f-xxl: clamp(2.2rem, 1.8vw, 22px);
  --f-xl: clamp(1.8rem, 1.4vw, 20px);
  --f-l: clamp(1.5rem, 1.2vw, 18px);
  --f-m: clamp(1.2rem, 1.1vw, 16px);
  --f-r: clamp(1rem, 0.7vw, 14px);
  --f-s: clamp(0.9rem, 0.9vw, 12px);
  --f-xs: clamp(0.85rem, 0.8vw, 10px);
  --f-xxs: clamp(0.75rem, 0.6vw, 8px);
  --f-xxxs: clamp(0.5rem, 0.5vw, 6px);
  --w-r: 400;
  --w-m: 500;
  --w-b: 700;
  --w-eb: 800;
  --m-xxxl: 12vmax;
  --m-xxl: 8vmax;
  --m-xl: 6vmax;
  --m-l: 4vmax;
  --m-m: 2.5vmax;
  --m-r: 1.8vmax;
  --m-s: 1.2vmax;
  --m-xs: 0.8vmax;
  --m-xxs: 0.3vmax;
  --m-fix: calc(50% - 50vw);
  --max-w: 1200px;
  --l-m: 1.7;
  --transition: cubic-bezier(0.25, 0.1, 0.25, 1);
  --line-height: 1em;
}

.loader-wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: var(--bg-light);
  z-index: 99;
  flex-direction: column;
  left: 0;
  top: 0;
  gap: 1vw;
  pointer-events: none;
}

.loader-wrap p {
  display: block;
  font-size: 11px;
  font-family: system-ui;
  margin-bottom: 5rem;
}

.loader-wrap svg {
  fill: none;
  stroke: dodgerblue;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-dasharray: 118 118;
  animation: loader 1.4s infinite cubic-bezier(.4, 0, .3, 1), loading 1.2s infinite linear, colors 5.6s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes loader {
  from {
    stroke-dashoffset: 118;
  }

  to {
    stroke-dashoffset: -118;
  }
}

@keyframes loading {
  from {
    transform: none;
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }

  25% {
    stroke: #DE3E35;
  }

  50% {
    stroke: #F7C223;
  }

  75% {
    stroke: #1B9A59;
  }

  100% {
    stroke: #4285F4;
  }
}

body:not(.p-home) .gHeader {
}

.gHeader {
  width: 100%;
  position: absolute;
  color: #fff;
  opacity: 1;
  transition: none;
  z-index: 9;
  display: fi;
}

.gHeader > .u-inner {
  display: flex;
  max-width: initial;
  width: 96%;
  justify-content: space-between;
  padding-top: 3rem;
  align-items: flex-start;
  transition: none;
  opacity: 1;
  animation: none;
  /* position: fixed; */
}

.gHeader_title {
  width: clamp(150px, 20vw, 220px);
}

body.on .gHeader_title {
  /* opacity: 0; */
  /* animation: none; */
}

.gHeader > .u-inner h2 {
  font-size: var(--f-xs);
  grid-area: text;
  justify-self: flex-end;
}

.util_nav {
  display: flex;
  list-style: none;
  margin-top: 1em;
  align-items: center;
  margin-right: 3%;
}

.util_nav li:nth-child(1) {
  font-size: var(--f-m);
  font-family: var(--f-en);
  font-weight: var(--w-m);
  white-space: nowrap;
}

.util_nav li a {
  display: block;
  transition: color 0.3s;
}

.util_nav li a:hover {
  opacity: 1;
}

.util_nav li:nth-child(1) a {
  position: relative;
}

.util_nav li:nth-child(1) a:before {
  content: "\e3bb";
  font-family: var(--f-icon);
  font-weight: normal;
  margin-right: 0.1em;
  margin-left: -0.3em;
  bottom: -0.075em;
  position: relative;
}

.util_nav li:nth-child(2) a {
  width: auto;
  max-width: 30px;
}

@keyframes MenuIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes MenuOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gPageTop {
  position: fixed;
  z-index: 9;
  opacity: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  pointer-events: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  right: 2.4%;
  transition: opacity .3s;
  mix-blend-mode: difference;
  /* width: 6vw; */
  display: flex;
  justify-content: center;
  mix-blend-mode: multiply;
}

.on .gPageTop {
  opacity: 1;
  pointer-events: all;
}

.gPageTop.absolute {
  position: absolute;
  bottom: auto;
}

.gPageTop_button {
  text-decoration: none;
  display: flex;
  z-index: 1;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.gPageTop_button:hover {
  opacity: 1;
}

.gPageTop_button > .lnr:before {
  font-family: 'Linearicons-Free';
  font-size: 1.6rem;
  margin: 0;
  font-style: normal;
  font-weight: bold;
  position: relative;
}

.gPageTop_button b {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 0.6em;
  white-space: nowrap;
  color: #666;
}

.gPageTop_button b::-moz-selection {
  background: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}

.gPageTop_button b::selection {
  background: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}

.gPageTop_button i {
  height: 5em;
  width: 1px;
  background-color: rgb(102 102 102 / 10%);
  position: relative;
  overflow: hidden;
}

.gPageTop_button i:before {
  content: none;
}

.gPageTop_button i::after {
  content: "";
  background-color: #666;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  -webkit-animation: anim-scroll 1.5s ease-in-out 0s reverse infinite;
  animation: anim-scroll 1.5s ease-in-out 0s reverse infinite;
}

section h2.title, .gClosing h2.title {
  font-size: var(--f-xxxl);
  margin-bottom: var(--m-xl);
  display: flex;
  line-height: 1;
  position: relative;
  z-index: 1;
  flex-direction: column-reverse;
  width: 100%;
}

section h2.title + .text_box {
  margin-bottom: var(--m-xxl);
}

section h2 .u-en, .gClosing h2 .u-en {
  font-weight: var(--w-b);
  text-indent: -0.05em;
}

section.center {
  text-align: center;
  position: relative;
}

section h2 small, .gClosing h2 small {
  display: block;
  font-size: var(--f-xs);
  /* margin-left: 5px; */
  /* color: var(--c-01); */
  font-weight: var(--w-b);
  margin-top: 1.5em;
}

.gFooter_title .tagline {
  flex-basis: 52%;
}

.gFooter_title .tagline svg {
  margin: 0;
}

.gFooter_title .tagline b {
  font-size: .8em;
  line-height: 1;
}

.gFooter_title a {
  width: 200px;
  text-align: left;
}

.gFooter_title svg {
  height: auto;
  width: 100%;
  display: block;
  border: none;
  margin: 0;
}

.gFooter_title b {
  font-size: 0.8em;
  width: 100%;
  line-height: 1;
  margin-top: .4em;
  text-align: right;
  flex-basis: 45%;
  margin-left: auto;
  text-align: center;
  white-space: nowrap;
  font-size: max(0.9vw, 0.7rem);
}

/*
## クロージング
*/
.gClosing {
  position: relative;
  overflow: hidden;
  background: #1a6542;
}

.gClosing::before {
  /* content: ""; */
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  background: #0091ff;
  /* 好きな色コードに変更 */
}

.gClosing iframe {
  mix-blend-mode: hard-light;
  display: block;
  width: 100%;
  min-height: 70vh;
  -webkit-filter: grayscale(1) invert(1);
  /* filter: grayscale(0.3) invert(0.3); */
  filter: grayscale(0.5) contrast(0.8);
  /* filter: contrast(0.5); */
}

/*
## フッター
*/
.gFooter {
  color: #fff;
  position: relative;
  background-color: #1a6542;
}

.gFooter .u-inner {
  display: flex;
  padding-top: var(--m-xxl);
  padding-bottom: var(--m-xxxl);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  min-width: 90vw;
}

.gFootNav_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  align-items: flex-start;
  display: inline-flex;
  min-width: fit-content;
}

.gFootNav_list::before {
  /* content: ""; */
  display: block;
  order: 2;
  flex-basis: 80%;
  height: 1px;
  background: #fff;
}

.gFootNav_list::after {
  /* content: ""; */
  display: block;
  order: 4;
  flex-basis: 60%;
  height: 1px;
  background: #fff;
}

.gFootNav_list > li {
  /* margin-right: 3%; */
  flex-direction: column-reverse;
  display: flex;
  grid-column: span 1;
}

.gFootNav_list li:first-child {
  grid-column: span 5;
}

.gFootNav_list > li:nth-child(7) {
  /* order: 5; */
}

.gFootNav_list > li:nth-child(8) {
  /* order: 6; */
  /* margin-right: auto; */
  /* grid-row-start: 3; */
}

.gFootNav_list > li > a {
  font-weight: bold;
  display: flex;
  /* padding: 0.5rem; */
  justify-content: space-between;
}

.gFootNav_list > li > a:hover {
  opacity: 1;
  color: var(--c-02);
}

.gFootNav_list > li > ul {
  font-size: var(--f-xxs);
  list-style: none;
}

.gFootNav_list > li > ul li a {
  color: #ccc;
  display: block;
  /* align-items: center; */
}

.gFootNav_list > li > ul li a:before {
  content: "-";
  margin-right: 5px;
  display: inline-block;
  line-height: 1;
  top: -1px;
  /* vertical-align: baseline; */
}

.gFootNav_list {
  display: grid;
  grid-template-columns: repeat(5, auto);
  /* 1行目に5つのアイテム */
  grid-template-rows: auto auto;
  gap: 1rem 2rem;
  justify-content: flex-end;
}

.gFootNav .gNav_childList {
  /* all: initial; */
  position: static;
  opacity: initial;
  min-width: inherit;
  background: initial;
  transform: inherit;
  padding: inherit;
  pointer-events: all;
  margin-bottom: .5rem;
}

.gFooter .corporate {
  display: flex;
}

.gFooter_title {
  list-style: none;
  display: block;
  grid-template-columns: 0.4fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 0.6vw;
  grid-template-areas: "gr1 gr2" "gr1 gr3";
  /* width: 200px; */
  /* width: 320px; */
}

dl.logo {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo dt {
  max-width: 180px;
}

.gFooter_title .logo {
  grid-area: gr1;
}

.gFooter_title .type-en {
  grid-area: gr2;
  margin-top: 0.5rem;
}

.gFooter_title .type-jp {
  grid-area: gr3;
  width: 90%;
  margin: 0.1em auto 0;
}

.gFooter_title svg {
  height: auto;
  width: 100%;
  display: block;
  border: none;
  margin: 0;
  --type: var();
  --type: #fff;
  --tag: #f00;
}

.gFooter dl .coname {
  color: #5676b4;
  font-weight: var(--w-b);
  margin: 0.5rem auto;
  font-size: var(--f-s);
  line-height: 1.3;
  width: fit-content;
}

.gFooter dl .coname small {
  margin: 0 0.5em;
}

.gFooter dl dd {
  margin: 2rem auto;
  font-size: var(--f-s);
  text-align: center;
  line-height: 1.7;
}

.gFooter dl dd address {
  font-style: normal;
  text-align: center;
  line-height: 1.3;
}

.gFooter a {
  display: block;
  font-weight: var(--w-b);
  font-size: var(--f-m);
  font-family: var(--f-en);
}

.gFooter .gFootNav {
  /* flex-basis: 70%; */
  /* margin-top: var(--m-l); */
  /* max-width: 770px; */
  flex: 1;
  /* margin-left: auto; */
}

.gFooter .copyright {
  background-color: rgb(0 0 0 / 50%);
  padding: 2rem;
  font-weight: var(--w-b);
  line-height: 1;
  text-align: center;
  margin: 0;
  font-family: var(--f-en);
  color: rgb(255 255 255 / 20%);
  font-size: var(--f-r);
  text-transform: uppercase;
}

/*
## コンテンツ
*/
.contents a.link {
  color: var(--c-02);
  display: inline-block;
}

.contents a.link[target="_blank"]:after {
  content: "\e2e3";
  font-family: var(--f-icon);
  /* font-size: 90%; */
  font-weight: bold;
  margin-left: 0.2em;
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
}

.contents a.link:after {
  content: "\e92e";
  font-family: var(--f-icon);
  /* font-size: 90%; */
  font-weight: bold;
  margin: 0.2em;
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
}

.gBody aside ul {
  width: 100%;
}

.gVisual {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gVisual .u-inner {
  height: 40vh;
  display: flex;
  flex-direction: column;
  /* max-width: 90%; */
  min-width: 94vw;
  85vw:; }

.gVisual figure {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  /* margin: 0 var(--m-fix); */
  min-height: 420px;
}

.gVisual figure::after {
  /* content: ""; */
  background: linear-gradient(to bottom, rgb(0 0 0 / 10%), transparent 50%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gVisual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% 70%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.gVisual h1 {
  line-height: 1.3;
  display: flex;
  flex-direction: column-reverse;
  margin: auto;
  position: relative;
  width: 94%;
  /* text-indent: -0.5em; */
}

.gVisual .title .u-en {
  font-style: normal;
  font-family: var(--f-en);
  font-weight: var(--w-b);
  font-size: var(--f-max);
  text-indent: -0.1em;
  /* font-size: var(--f-xxxl); */
}

.gVisual .title small {
  display: block;
  margin-right: 3px;
  font-size: var(--f-xs);
  font-weight: var(--w-b);
  /* margin-left: 2px; */
  margin-top: 0.5rem;
  color: var(--c-01);
}

.gVisual .rotate {
  position: absolute;
  top: 5%;
  right: 7%;
  z-index: 1;
}

.constnote {
  line-height: 1;
  color: #f00;
  font-size: 12px;
  padding: .5rem;
  text-align: center;
}

.pnkz {
  /* text-align: right; */
  /* max-width: 1100px; */
  padding: 3rem 0;
}

.pnkz > .list {
  list-style: none;
  color: var(--c-08);
  display: flex;
  font-size: var(--f-xxs);
  font-weight: var(--w-m);
  line-height: 1;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.pnkz > .list li:first-child {
  color: #9f9f9f;
}

.pnkz > .list > li:not(:first-of-type):before {
  content: "─";
  /* content: "━"; */
  margin: 0 var(--m-xs);
  /* font-family: var(--f-icon); */
  /* font-size: 0.8em; */
  color: var(--c-02);
  line-height: 1;
  /* font-weight: bold; */
}

.introduction {
  position: relative;
  padding: var(--m-xl) 0 var(--m-l);
  display: block;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.introduction .copy {
  margin-bottom: var(--m-r);
  font-size: var(--f-m);
  font-weight: var(--w-m);
  /* line-height: 1.6; */
}

.contents header {
  text-align: center;
}

.page_title {
  margin-bottom: 3em;
}

/*
## 共通パーツ（仮）
*/
body:not(.p-home) .contents section .column table {
  width: 100%;
  margin-bottom: 2rem;
}

body:not(.p-home) .contents section .column table th {
  width: 20%;
  text-align: left;
  padding: 1rem;
  vertical-align: top;
  white-space: nowrap;
}

body:not(.p-home) .contents section .column table td {
  padding: 1rem;
}

body:not(.p-home) .contents section .column table td strong {
  display: block;
  margin-top: 1rem;
}

.contents section .column table td strong:first-of-type {
  margin-top: 0;
}

section ul {
  list-style: none;
  position: relative;
  list-style-position: initial;
}

.contents section h4 {
  font-size: var(--f-xl);
  font-weight: var(--w-b);
  margin: 0 0 var(--m-m);
  /* line-height: 1.5; */
}

.contents section h4 strong {
  color: var(--c-05);
  /* display: block; */
}

.contents section h5 {
  font-size: var(--f-m);
  font-weight: var(--w-b);
  margin-bottom: var(--m-xs);
  color: var(--c-01);
  min-height: calc(var(--f-m) * 2.8);
}

/*
## ここまで 共通パーツ（仮）
*/
.contents > section > .column {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--m-m);
}

.contents > section > .column:not(:first-of-type) {
  margin-top: var(--m-xl);
}

section h3.title {
  width: 100%;
  font-size: var(--f-m);
  margin-bottom: var(--m-s);
  color: var(--c-02);
  /* height: 2em; */
}

section h3.title em {
  font-style: normal;
}

section h4.title {
  font-size: var(--f-m);
}

@media screen and (max-width: 1024px) {
  .gBody {
  }
}

@media screen and (max-width: 767px) {
  .gBody {
    overflow: hidden;
  }

  section .column {
    flex-direction: column;
  }
}

@media print {
  body {
    width: 1080px;
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform-origin: 0 0;
  }

  .wyp, .column, .u-inner, .box {
    opacity: 1;
  }
}
