@charset "utf-8";
/* =======================================
font
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*
[+] noto sans
font-family: 'Noto Sans JP', sans-serif;
font-weight:
  100 Thin
  200 ExtraLight
  300 Light
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold
  900 Black

-------------------------------------------

[+] Poppins
font-family: 'Poppins', sans-serif;
font-weight:
  100 Thin
  200 ExtraLight
  300 Light
  400 Regular
  600 SemiBold
  700 Bold

*/

/* ============================
wildcard
---------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::before,
::after {
  box-sizing: border-box;
}

/* ============================
root
---------------------------- */
:root {
  /* color */
  --common_keycolor: #18479F;
  --common_main_bgcolor: #FFFFFF;
  --common_page_bgcolor: #FFFFFF;
  --common_color: #333333;

  /* font-size (1440px基準)*/
  --s1200: 83.33333333333334vw;
  --s1120: 77.77777777777779vw;
  --s1080: 75vw;
  --s300: 20.833333333333336vw;
  --s160: 11.11111111111111vw;
  --s128: 8.88888888888889vw;
  --s120: 8.333333333333332vw;
  --s108: 7.5vw;
  --s96: 6.666666666666667vw;
  --s86: 6.111111111111111vw;
  --s80: 5.555555555555555vw;
  --s72: 5vw;
  --s70: 4.861111111111112vw;
  --s64: 4.444444444444445vw;
  --s62: 4.305555555555555vw;
  --s60: 4.166666666666666vw;
  --s58: 4.027777777777778vw;
  --s56: 3.888888888888889vw;
  --s54: 3.75vw;
  --s52: 3.6111111111111107vw;
  --s50: 3.4722222222222223vw;
  --s48: 3.3333333333333335vw;
  --s46: 3.194444444444444vw;
  --s44: 3.0555555555555554vw;
  --s42: 2.9166666666666665vw;
  --s40: 2.7777777777777777vw;
  --s38: 2.638888888888889vw;
  --s36: 2.5vw;
  --s34: 2.361111111111111vw;
  --s32: 2.2222222222222223vw;
  --s30: 2.083333333333333vw;
  --s28: 1.9444444444444444vw;
  --s26: 1.8055555555555554vw;
  --s24: 1.6666666666666667vw;
  --s22: 1.5277777777777777vw;
  --s20: 1.3888888888888888vw;
  --s18: 1.25vw;
  --s15: 1.0416666666666667vw;
  --s16: 1.1111111111111112vw; /* default */
  --s14: 0.9722222222222222vw;
  --s12: 0.8333333333333334vw;
  --s10: 0.6944444444444444vw;
  --s8:  0.5555555555555556vw;
  --s6:  0.4166666666666667vw;
  --s4:  0.2777777777777778vw;
  --s2:  0.1388888888888889vw;

  /* font-family */
  --ff-g: 'Noto Sans JP', sans-serif;
  --ff-p: 'Poppins', sans-serif;

  /* a color */
  --common_lcolor: #063C84;/* a:link */
  --common_vcolor: #063C84;/* a:visited */
  --common_hcolor: #1351a3;/* a:hover */
  --common_acolor: #063C84;/* a:active */
  --common_fcolor: #063C84;/* a:focus */

  /* header */
  --common_header_height: var(--s86);
}

@media screen and (min-width: 1440px) {
  :root {
    /* font-size */
    --s1200: 120rem;
    --s1120: 112rem;
    --s1080: 108rem;
    --s300: 30rem;
    --s160: 16rem;
    --s128: 12.8rem;
    --s120: 12rem;
    --s108: 10.8rem;
    --s96: 9.6rem;
    --s86: 8.6rem;
    --s80: 8.0rem;
    --s72: 7.2rem;
    --s70: 7.0rem;
    --s64: 6.4rem;
    --s60: 6.0rem;
    --s58: 5.8rem;
    --s56: 5.6rem;
    --s54: 5.4rem;
    --s52: 5.2rem;
    --s50: 5.0rem;
    --s48: 4.8rem;
    --s44: 4.4rem;
    --s40: 4.0rem;
    --s38: 3.8rem;
    --s36: 3.6rem;
    --s34: 3.4rem;
    --s32: 3.2rem;
    --s30: 3.0rem;
    --s28: 2.8rem;
    --s26: 2.6rem;
    --s24: 2.4rem;
    --s22: 2.2rem;
    --s20: 2.0rem;
    --s18: 1.8rem;
    --s16: 1.6rem; /* default */
    --s15: 1.5rem;
    --s14: 1.4rem;
    --s12: 1.2rem;
    --s10: 1.0rem;
    --s8:  0.8rem;
    --s6:  0.6rem;
    --s4:  0.4rem;
    --s2:  0.2rem;

    /* header */
    --common_header_height: var(--s86);
  }
}

@media screen and (max-width: 767px) {
  :root {
    /* font-size */
    --s1200: 120rem;
    --s1120: 112rem;
    --s1080: 108rem;
    --s300: 30rem;
    --s160: 16rem;
    --s128: 12.8rem;
    --s120: 12rem;
    --s108: 10.8rem;
    --s96: 9.6rem;
    --s86: 8.6rem;
    --s80: 8.0rem;
    --s72: 7.2rem;
    --s70: 7.0rem;
    --s64: 6.4rem;
    --s60: 6.0rem;
    --s58: 5.8rem;
    --s56: 5.6rem;
    --s54: 5.4rem;
    --s52: 5.2rem;
    --s50: 5.0rem;
    --s48: 4.8rem;
    --s44: 4.4rem;
    --s40: 4.0rem;
    --s38: 3.8rem;
    --s36: 3.6rem;
    --s34: 3.4rem;
    --s32: 3.2rem;
    --s30: 3.0rem;
    --s28: 2.8rem;
    --s26: 2.6rem;
    --s24: 2.4rem;
    --s22: 2.2rem;
    --s20: 2.0rem;
    --s18: 1.8rem;
    --s16: 1.6rem; /* default */
    --s15: 1.5rem;
    --s14: 1.4rem;
    --s12: 1.2rem;
    --s10: 1.0rem;
    --s8:  0.8rem;
    --s6:  0.6rem;
    --s4:  0.4rem;
    --s2:  0.2rem;

    /* header */
    --common_header_height: calc(var(--s8) * 9.5) /* 76px */;
  }
}


/* ============================
loading
---------------------------- */
.loaded {
  display: none;
}
.loaded.active {
  display: block;
}

/* ============================
display responsive
---------------------------- */
.dn {
  display: none !important;
}
.pc {
  display: block;
}
.pci {
  display: inline;
}
.pcib {
  display: inline-block;
}
.sp {
  display: none;
}
.spi {
  display: none;
}
.spib {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .pci {
    display: none;
  }
  .pcib {
    display: none;
  }
  .sp {
    display: block;
  }
  .spi {
    display: inline;
  }
  .spib {
    display: inline-block;
  }
}

/* ============================
scrollbar
---------------------------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #031b3a;
}
::-webkit-scrollbar-thumb {
  background: #0B7ABF;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2798df;
}

/* ============================
html body
---------------------------- */
html {
  overflow-x: hidden;
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  position: relative;
  font-family: var(--ff-g);
  font-style: normal;
  font-weight: 500;
  font-size: var(--s16);
  color: var(--common_color);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: #888 #F1F1F1;
}
@media screen and (max-width: 767px) {
  body {
    font-size: var(--s16);
  }
}

/* ============================
default style
---------------------------- */
a {
  text-decoration: none;
}
/*
a:link {
  color: var(--common_lcolor);
}
a:visited {
  color: var(--common_vcolor);
}
a:hover {
  color: var(--common_hcolor);
}
a:active {
  color: var(--common_acolor);
}
a:focus {
  color: var(--common_fcolor);
}
*/

p {
  width: 100%;
  max-width: 100%;
  margin: 0 0 2em 0;
  padding: 0;
  font-size: 1em;
  font-optical-sizing: none;/* or auto */
  line-height: calc(1em * 1.75);
}

img {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

hr {
  width: 100%;
  max-width: 100%;
  height: 1px;
  margin: var(--s80) auto;
  border: 1px solid #CC0000;
  padding: 0;
}

address {
  font-style: normal;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="color"],
textarea,
select {
  width: 100%;
  max-width: 100%;
  padding: var(--s16) var(--s20);
  font-family: var(--ff-g);
  font-size: var(--s16);
  line-height: calc(var(--s16) * 1.75);
  color: var(--common_color);
  background-color: #EDEDED;
  border: solid 1px #979797;
}

@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  input[type="date"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="color"],
  textarea,
  select {
    font-size: var(--s16);
    padding: var(--s12) var(--s14);
  }
}

select::-ms-expand {
  display: none;
}
select {
  width: auto;
  max-width: auto;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/bg_select_arrow.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding-right: calc(var(--s64) + 1.5rem);
}
input[type="text"]#postal_code {
  width: 33%;
  max-width: 33%;
}
textarea {
  height: calc(var(--s8) * 25); /* 200px */
}
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--s24);
  min-width: var(--s24);
  height: var(--s24);
  border-radius: 2px;
  border: 1px solid #979797;
  background-color: #FFF;
  position: relative;
  cursor: pointer;
}
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: calc(50% - calc(var(--s8) / 4));
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg) !important;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
  -ms-transform: translate(-50%, -50%) rotate(45deg) !important;
  width: var(--s8);
  height: var(--s16);
  border: solid var(--common_color);
  border-width: 0 3px 3px 0;
}
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--s24);
  min-width: var(--s24);
  height: var(--s24);
  border: 1px solid #979797;
  background-color: #FFF;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  width: var(--s10);
  height: var(--s10);
  border-radius: 50%;
  background-color: var(--common_color);
}

/* Chrome, Safari, Opera */
input[type="file"]::-webkit-file-upload-button {
  background-color: #FFFFFF;
  color: #4D4D4D;
  border: solid 1px #979797;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
}
/* Firefox */
input[type="file"]::file-selector-button {
  background-color: #FFFFFF;
  color: #4D4D4D;
  border: solid 1px #979797;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
}
/* Edge, IE (旧仕様) */
input[type="file"]::-ms-browse {
  background-color: #FFFFFF;
  color: #4D4D4D;
  border: solid 1px #979797;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
}
input[type="file"]::file-selector-button {
  background-color: #EFEFEF;
  color: #333333;
  border: 1px solid #979797;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type="file"]::file-selector-button:hover {
  background-color: #CCCCCC;
}

input[type="submit"],
input[type="button"] {
  display: inline-block;
  width: calc(var(--s8) * 30); /* 240px */
  height: var(--s64);
  color: #FFF;
  font-size: var(--s16);
  font-weight: 500;
  line-height: normal;
  background-color: #083D85;
  border: none;
  cursor: pointer;
}


/* ============================
loading
---------------------------- */
#loading-screen {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(230, 240, 247, 0.00) 0%, rgba(230, 240, 247, 0.80) 50%, #E6F0F7 100%);
  z-index: 100000;
  align-items: center;
  justify-content: center;
}
#progress-bar-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: calc(var(--s8) * 32); /* 256px */
  height: var(--s6);
  overflow: hidden;
  border: 1px solid #FFFFFF;
  border-radius: var(--s8);
  box-shadow: #999999 0 0 var(--s10) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#progress-bar {
  width: 0;
  height: var(--s6);
  background: linear-gradient(90deg, rgba(255, 251, 143, 0.5) 0%, rgba(118, 218, 255, 0.5) 35%, rgba(0, 68, 184, 0.5) 100%);
  transition: width 0.5s ease-in-out;
}
#sp_cover {
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 25;
}
#sp_cover.active {
  display: block;
}

/* ============================
text align
---------------------------- */
.tl {
  text-align: left !important;
}
.tc {
  text-align: center !important;
}
.tr {
  text-align: right !important;
}

/* ============================
margin padding
---------------------------- */
.mt1 {
  margin-top: calc(var(--s14) * 1);
}
.mb1 {
  margin-bottom: calc(var(--s14) * 1);
}
.pt1 {
  padding-top: calc(var(--s14) * 1);
}
.pb1 {
  padding-bottom: calc(var(--s14) * 1);
}

.mt2 {
  margin-top: calc(var(--s14) * 2);
}
.mb2 {
  margin-bottom: calc(var(--s14) * 2);
}
.pt2 {
  padding-top: calc(var(--s14) * 2);
}
.pb2 {
  padding-bottom: calc(var(--s14) * 2);
}

.mt3 {
  margin-top: calc(var(--s14) * 3);
}
.mb3 {
  margin-bottom: calc(var(--s14) * 3);
}
.pt3 {
  padding-top: calc(var(--s14) * 3);
}
.pb3 {
  padding-bottom: calc(var(--s14) * 3);
}

.mt4 {
  margin-top: calc(var(--s14) * 4);
}
.mb4 {
  margin-bottom: calc(var(--s14) * 4);
}
.pt4 {
  padding-top: calc(var(--s14) * 4);
}
.pb4 {
  padding-bottom: calc(var(--s14) * 4);
}

.mt5 {
  margin-top: calc(var(--s14) * 5);
}
.mb5 {
  margin-bottom: calc(var(--s14) * 5);
}
.pt5 {
  padding-top: calc(var(--s14) * 5);
}
.pb5 {
  padding-bottom: calc(var(--s14) * 5);
}

/* ============================
overflow
---------------------------- */
.ov {
  overflow: visible !important;
}
.oh {
  overflow: hidden !important;
}

/* ============================
flex
---------------------------- */
.flex,
.flex-i {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex {
  display: -webkit-flex;
  display: flex;
}
.flex-i {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.jc-st {
  justify-content: start;
}
.jc-en {
  justify-content: end;
}
.jc-c {
  justify-content: center;
}
.jc-fs {
  justify-content: flex-start;
}
.jc-fe {
  justify-content: flex-end;
}
.jc-l {
  justify-content: left;
}
.jc-r {
  justify-content: right;
}
.jc-sb {
  justify-content: space-between;
}
.jc-sa {
  justify-content: space-around;
}
.jc-se {
  justify-content: space-evenly;
}
.jc-sc {
  justify-content: stretch;
}
.fw-nw {
  flex-wrap: nowrap;
}
.fw-wr {
  flex-wrap: wrap-reverse;
}
.fd-rr {
  flex-direction: row-reverse;
}
.fd-cm {
  flex-direction: column;
}
.ff-cm {
  flex-flow: column;
}
.ai-s {
  align-items: start;
}
.ai-c {
  align-items: center;
}
.ai-e {
  align-items: end;
}
.ai-fs {
  align-items: flex-start;
}
.ai-fe {
  align-items: flex-end;
}
.ai-st {
  align-items: stretch;
}
.wfit {
  width: fit-content;
}
.hfit {
  height: fit-content;
}

/* ======================
.window-full
------------------------- */
.window-full {
  margin: 0 calc(50% - 50vw) !important;
  width: 100vw !important;
  max-width: 100vw !important;
}

