@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&family=M+PLUS+Rounded+1c&family=Noto+Sans+JP:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
  --base: #222222;
  --linkbase: #474C52;
  --linkbase02: #7B7D80;
  --main: #0050A5;
  --bgBlue1: #EBF4FF;
}

html {
  /*
  scroll-behavior: smooth;
  */
  font-size: 62.5%;
  font-size: 1.0416666666vw;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.7777777778vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  background: #FFF;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  /*
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  */
  font-optical-sizing: auto;
  color: var(--base);
}
@media only screen and (max-width: 768px) {
  body {
    min-width: initial;
    overflow: hidden;
    overflow-y: scroll;
    line-height: 1.4285714286;
    font-size: 1.4rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-optical-sizing: auto;
}

label {
  cursor: pointer;
}

img {
  width: 100%;
  vertical-align: middle;
}

a,
button {
  transition: 0.3s opacity;
}

a {
  color: var(--blue1);
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1920px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 768px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .inline-sp {
    display: inline;
  }
}

.no-link {
  pointer-events: none;
}

.scroll-header {
  scroll-margin-top: 9rem;
}
@media only screen and (max-width: 768px) {
  .scroll-header {
    scroll-margin-top: 7rem;
  }
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 6.25vw;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
@media only screen and (max-width: 768px) {
  .l-header {
    height: 13.8vw;
  }
}
.l-header__container {
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 0 0 0 2.86vw;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-header__container {
    align-items: center;
    padding: 0 1.3rem 0 1.5rem;
  }
}
.l-header__logo {
  width: 24.47vw;
}
@media only screen and (max-width: 768px) {
  .l-header__logo {
    width: 20.362rem;
  }
}
.l-header__logo a {
  display: block;
  line-height: 0;
  vertical-align: bottom;
}
@media only screen and (max-width: 768px) {
  .l-header__logo a {
    vertical-align: middle;
  }
}
.l-header__nav {
  display: flex;
  justify-content: flex-end;
  margin: 0 6.25vw 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav_list {
  display: flex;
  align-items: center;
  gap: 2em;
  line-height: 1.3333333333;
  letter-spacing: 0.072em;
  font-size: 1.0rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.l-header__nav_link {
  text-decoration: none;
  color: var(--base);
}

.l-hamburger__btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__btn {
    display: grid;
    place-content: center;
    width: 3rem;
    aspect-ratio: 1/1;
    margin: 0 0 0 auto;
    border: 1px solid var(--base);
    border-radius: 100%;
    box-sizing: border-box;
  }
  .l-hamburger__btn_line {
    display: block;
    width: 1.5rem;
    height: 0.86rem;
    position: relative;
  }
  .l-hamburger__btn_line::before, .l-hamburger__btn_line::after,
  .l-hamburger__btn_line span {
    content: "";
    width: 100%;
    height: 0.06rem;
    background: var(--base);
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  .l-hamburger__btn_line::before {
    top: 0;
  }
  .l-hamburger__btn_line::after {
    bottom: 0;
  }
  .l-hamburger__btn_line span {
    top: 50%;
    translate: 0 -50%;
  }
  .l-hamburger__btn.is-open .l-hamburger__btn_line::before {
    top: 50%;
    translate: 0 -50%;
    rotate: 45deg;
  }
  .l-hamburger__btn.is-open .l-hamburger__btn_line::after {
    bottom: 50%;
    translate: 0 50%;
    rotate: -45deg;
  }
  .l-hamburger__btn.is-open .l-hamburger__btn_line span {
    opacity: 0;
  }
}
.l-hamburger__nav {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__nav {
    width: 100%;
    height: calc(100% - 5rem);
    padding: 0 8.3vw 18vw;
    box-sizing: border-box;
    background: rgba(224, 224, 224, 0.95);
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    top: 5rem;
    left: 0;
    z-index: 5;
  }
  .l-hamburger__nav_list {
    border-bottom: 1px solid #0050A5;
    padding: 6.8vw 0;
  }
  .l-hamburger__nav_list:last-of-type {
    border-bottom: none;
    padding: 6.8vw 0 10.5vw;
  }
  .l-hamburger__nav_link {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    line-height: 1;
    text-decoration: none;
  }
  .l-hamburger__nav_link .txt_jp {
    letter-spacing: 0.054em;
    font-size: 5vw;
    font-weight: 400;
    color: #000000;
    font-family: "Hiragino Mincho ProN", YuMincho, serif;
    text-align: left;
  }
  .l-hamburger__nav_link .txt_en {
    letter-spacing: 0.054em;
    font-size: 3.3vw;
    font-weight: 400;
    color: #0050A5;
    font-family: "Inter", sans-serif;
    text-align: right;
  }
  .l-hamburger__child {
    display: flex;
    flex-wrap: wrap;
  }
  .l-hamburger__child .l-hamburger__child_item {
    width: 50%;
    margin: 3.6vw 0 0;
  }
  .l-hamburger__child .l-hamburger__child_item:nth-child(2n),
  .l-hamburger__child .l-hamburger__child_item.item_L {
    width: 45%;
    margin-left: 5%;
  }
  .l-hamburger__child_link {
    display: block;
    font-size: 3.3vw;
    line-height: 1;
    color: var(--linkbase02);
    margin: 0;
    text-align: left;
    text-decoration: none;
  }
  .l-hamburger__nav .link_other {
    text-align: left;
    margin: 0 0 3.3vw;
  }
  .l-hamburger__nav .link_other a.l-hamburger__child_link {
    color: #0050A5;
    font-size: 3.3vw;
    line-height: 1;
    text-decoration: underline;
  }
}

.l-footer {
  padding: 4.2vw 0 4.94vw;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    padding: 16.6vw 0 8.3vw;
  }
}
.l-footer__container {
  position: relative;
  border-top: 12px solid #0050A5;
  /*
  max-width: 160rem;
  */
  width: 83.3vw;
  margin: 0 auto;
  padding: 4.16vw 0 5.7vw;
}
@media only screen and (max-width: 768px) {
  .l-footer__container {
    border-top: 4px solid #0050A5;
    padding: 0vw 0;
  }
}
.l-footer__logo {
  width: 16.6vw;
  max-width: 320px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-footer__logo {
    width: 34.4vw;
  }
}
.l-footer__nav {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .l-footer__nav {
    flex-direction: column;
    width: 100%;
  }
}
.l-footer__list {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.l-footer__list.list01 {
  width: 15%;
}
.l-footer__list.list02 {
  width: 21.25%;
}
.l-footer__list.list03 {
  width: 16.875%;
}
.l-footer__list.list04 {
  width: 22%;
}
.l-footer__list.list05 {
  width: 16%;
}
@media only screen and (max-width: 768px) {
  .l-footer__list {
  }
  .l-footer__list.list01,
  .l-footer__list.list02,
  .l-footer__list.list03,
  .l-footer__list.list04,
  .l-footer__list.list05 {
    width: 100%;
  }
}
.l-footer__list .l-footer__list_item {
  margin-bottom: 7.29vw;
}
.l-footer__list .l-footer__list_item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .l-footer__list_item {
    border-bottom: 4px solid #F0F0F0;
    padding: 5.5vw 0 5.5vw;
  }
  .l-footer__list .l-footer__list_item {
    margin-bottom: 0;
  }
}
.l-footer__list_link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .l-footer__list_link {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.l-footer__list_link .is-en {
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-size: 1.66vw;
  font-weight: 400;
  color: var(--main);  
  font-family: "Arsenal", sans-serif;
}
@media only screen and (max-width: 768px) {
  .l-footer__list_link .is-en {
    font-size: 3.3vw;
  }
}
.l-footer__list_link .is-jp {
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-size: 2.08vw;
  font-weight: 400;
  font-family: "Hiragino Mincho ProN", YuMincho, serif;
}
@media only screen and (max-width: 768px) {
  .l-footer__list_link .is-jp {
    font-size: 5.0vw;
  }
}
.l-footer__child {
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  margin: 1.56vw 0 0;
  line-height: 1.5;
  letter-spacing: 0.09em;
  font-size: 1.04vw;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .l-footer__child {
    margin-top: 4.1vw;
    gap: 4.1vw;
    line-height: 1;
    letter-spacing: 0.084em;
    font-size: 3.3vw;
  }
}
.l-footer__child_link {
  text-decoration: none;
  color: var(--linkbase);
}
.l-footer__child_link.link_ul {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .l-footer__child_link {
    color: var(--linkbase02);
  }
}

.l-footer_other {
  position: absolute;
  bottom: 5.7vw;
  left: 0;
}
.l-footer_other .link_other {
  font-size: 1.04vw;
  line-height: 1;
  margin: 0 0 1.25vw;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.l-footer_other .link_other:last-of-type {
  margin: 0 0 0vw;
}
.l-footer_other .link_other a {
  color: #0050A5;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .l-footer_other {
    position: static;
    margin-top: 7.5vw;
  }
  .l-footer_other .link_other {
    font-size: 3.3vw;
    margin: 0 0 3.3vw;
  }
  .l-footer_other .link_other:last-of-type {
    margin: 0 0 18vw;
  }
}


.l-footer__copy {
  margin: 2.3vw auto 0;
}
@media only screen and (max-width: 768px) {
  .l-footer__copy {
    margin-top: 3.84rem;
  }
}
.l-footer__copy_text {
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-size: 0.83vw;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--main);
}
@media only screen and (max-width: 768px) {
  .l-footer__copy_text {
    font-size: 0.9rem;
  }
}













/* Google analyticsのCookie使用の確認ダイアログ */
/* ダイアログ全体のスタイル */
/* 文字色・背景色。表示位置など基本的な箇所はここで調整 */
@media only screen and (min-width: 769px) {
.check-accept-google-analytics {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 2rem 3rem;
  text-align: center;
  background-color: rgba(221,238,255,0.8);
}
.check-accept-google-analytics > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}
/* 文章のスタイル */
.check-accept-google-analytics > div > p {
  text-align: left;
  margin: 0 1.5em;
  font-size: 0.6em;
  line-height: 1.5em;
  width: 70%;
}
/* 文章内リンクのスタイル */
.check-accept-google-analytics > div > p > a {
  color: #0050A5;
  text-decoration: underline;
}
/* 本文の前にアイコンや画像をつけたい場合はここに記入 */
.check-accept-google-analytics > div > p::before {
}
/* 許可する・しないボタンのデザイン */
.check-accept-google-analytics > div > div {
  text-align: right;
  width: 20%;
}
/* ボタン共通 */
.check-accept-google-analytics > div > div > button {
  display: inline-block;
  margin: 0 0 0 1em;
  padding: 0.5em 2rem;
  line-height: 1.5em;
  color: #fff;
  border-radius: 0.2em;
}
/* 許可するボタン */
.check-accept-google-analytics > div > div > button.ga-accept-button {
  background-color: #48B;
}
/* 許可しないボタン */
.check-accept-google-analytics > div > div > button.ga-deny-button {
  background-color: #999;
}
/* 許可する/しないボタンの前にアイコンをつけたい場合はここに記入 */
.check-accept-google-analytics > div > div > button::before {/*共通*/}
.check-accept-google-analytics > div > div > button.ga-accept-button::before {/* 許可する */}
.check-accept-google-analytics > div > div > button.ga-deny-button::before {/* 許可しない */}
}


/* スマホのスタイル */
@media only screen and (max-width: 768px) {
.check-accept-google-analytics {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1em 1em;
  background-color: rgba(221,238,255,0.8);
}
.check-accept-google-analytics > div {
}
/* 文章のスタイル */
.check-accept-google-analytics > div > p {
  text-align: left;
  margin: 0 0 1em;
  font-size: 0.8em;
  line-height: 1.5em;
}
/* 文章内リンクのスタイル */
.check-accept-google-analytics > div > p > a {
  color: #0050A5;
  text-decoration: underline;
}
/* 本文の前にアイコンや画像をつけたい場合はここに記入 */
.check-accept-google-analytics > div > p::before {
}
/* 許可する・しないボタンのデザイン */
.check-accept-google-analytics > div > div {
}
/* ボタン共通 */
.check-accept-google-analytics > div > div > button {
  display: inline-block;
  margin: 0 0 0 1em;
  padding: 0.5em 2rem;
  line-height: 1.5em;
  color: #fff;
  border-radius: 0.2em;
}
/* 許可するボタン */
.check-accept-google-analytics > div > div > button.ga-accept-button {
  background-color: #48B;
}
/* 許可しないボタン */
.check-accept-google-analytics > div > div > button.ga-deny-button {
  background-color: #999;
}
/* 許可する/しないボタンの前にアイコンをつけたい場合はここに記入 */
.check-accept-google-analytics > div > div > button::before {/*共通*/}
.check-accept-google-analytics > div > div > button.ga-accept-button::before {/* 許可する */}
.check-accept-google-analytics > div > div > button.ga-deny-button::before {/* 許可しない */}
}












