@charset "utf-8";
/* =======================================
font
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Bebas+Neue&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Shippori+Mincho:wght@400;500;600;700;800&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..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

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

[+] noto serif
font-family: 'Noto Serif JP', serif;
font-weight:
  200 ExtraLight
  300 Light
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold
  900 Black

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

[+] Zen Maru Gothic
font-family: 'Zen Maru Gothic', sans-serif;
font-weight:
  300 light
  400 Regular
  500 Medium
  700 Bold
  900 Black

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

[+] Roboto
font-family: 'Roboto', sans-serif;
font-weight:
  100 Thin
  200 ExtraLight
  300 Light
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold
  900 Black

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

[+] Bebas Neue
font-family: 'Bebas Neue', sans-serif;
font-weight:
  400 Regular

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

[+] Libre Baskerville
font-family: 'Libre Baskerville', serif;
font-weight:
  400 Regular
  700 Bold

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

[+] Shippori Mincho
font-family: 'Shippori Mincho', serif;
font-weight:
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold

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

[+] Lora
font-family: 'Lora', serif;
font-weight:
  400 Regular
  700 Bold

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

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

*/

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

/* ============================
root
---------------------------- */
:root {
  /* common colors */
  --common_kycol: #333333; /* key color */
  --common_bgcol: #FFFFFF; /* background default color */

  --common_head_bgcol: #FFFFFF; /* background header color */
  --common_body_bgcol: #FFFFFF; /* background body color */
  --common_main_bgcol: #FFFFFF; /* background main color */
  --common_foot_bgcol: #F0F0F0; /* background footer color */

  --common_txcol: #1C2227; /* text color */
  --common_lcol: #1C2227;/* a:link */
  --common_vcol: #1C2227;/* a:visited */
  --common_hcol: #1C2227;/* a:hover */
  --common_acol: #1C2227;/* a:active */
  --common_fcol: #1C2227;/* a:focus */

  /* size (1440px基準)*/
  --s32: 2.2222222222222223vw; /* 32px */
  --s16: 1.1111111111111112vw; /* 16px */
  --s8: 0.5555555555555556vw;  /* 8px */
  --s1: 0.06944444444444445vw; /* 1px */

  /* font-family */
  --ff-g: 'Noto Sans JP', sans-serif;
  --ff-m: 'Noto Serif JP', serif;
  --ff-z: 'Zen Maru Gothic', sans-serif;
  --ff-b: 'Bebas Neue', sans-serif;
  --ff-r: 'Roboto', sans-serif;
  --ff-l: 'Libre Baskerville', serif;

  --common_header_height: calc(var(--s1) * 90); /* 9.0rem */
}

@media screen and (min-width: 1440px) {
  :root {
    /* size */
    --s32: 3.2rem; /* 32px */
    --s16: 1.6rem; /* 16px */
    --s8:  0.8rem; /* 8px */
    --s1:  0.1rem; /* 1px */
  }
}

@media screen and (max-width: 767px) {
  :root {
    /* size */
    --s32: 3.2rem; /* 32px */
    --s16: 1.6rem; /* 16px */
    --s8:  0.8rem; /* 8px */
    --s1:  0.1rem; /* 1px */
    --common_header_height: calc(var(--s1) * 60); /* 6.0rem */
  }
}


/* ============================
loading
---------------------------- */
.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loaded.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .2s ease;
}
html.is-loading {
  scroll-behavior: auto !important;
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 50000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#progress-bar-container {
  width: 80%;
  max-width: 600px;
  height: calc(var(--s1) * 4);
  background-color: #E0E0E0;
  border-radius: calc(var(--s1) * 4);
  overflow: hidden;
}
#progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #FF6C10 0%, #0027A9 100%);
  border-radius: calc(var(--s1) * 4);
  transition: all 0.3s ease;
}


/* ============================
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: #CCCCCC;
}
::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333333;
}

/* ============================
html body
---------------------------- */
html {
  overflow-x: hidden;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--common_header_height);
}
body {
  position: relative;
  color: var(--common_txcol);
  background-color: var(--common_body_bgcol);
  font-family: var(--ff-g);
  font-style: normal;
  font-weight: 400;
  font-size: var(--s16);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  body {
    font-size: var(--s16);
  }
  html, body {
    scroll-padding-top: var(--common_header_height);
  }
}

/* ============================
default style
---------------------------- */
a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}
a:link {
  color: var(--common_lcol);
}
a:visited {
  color: var(--common_vcol);
}
a:hover {
  color: var(--common_hcol);
}
a:active {
  color: var(--common_acol);
}
a:focus {
  color: var(--common_fcol);
}
a:hover {
  opacity: 0.8;
}

h1 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  line-height: 120%;
}

h2, h3, h4, h5, h6 {
  margin: 0 0 2em 0;
  padding: 0;
  font-weight: 600;
  line-height: 120%;
}

p {
  margin: 0 0 2em 0;
  padding: 0;
  line-height: 175%;
}

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

hr {
  width: 100%;
  max-width: 100%;
  height: 1px;
  margin: 0 auto;
  border-top: 1px solid #333333;
  padding: 0;
}

address {
  font-style: normal;
}

/* ============================
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) !important;
}
.mb1 {
  margin-bottom: calc(var(--s14) * 1) !important;
}
.pt1 {
  padding-top: calc(var(--s14) * 1) !important;
}
.pb1 {
  padding-bottom: calc(var(--s14) * 1) !important;
}

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

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

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

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

.mt180 {
  margin-top: calc(var(--s1) * 180) !important;
}
.mb180 {
  margin-bottom: calc(var(--s1) * 180) !important;
}
.mt120 {
  margin-top: calc(var(--s1) * 120) !important;
}
.mb120 {
  margin-bottom: calc(var(--s1) * 120) !important;
}
.mt100 {
  margin-top: calc(var(--s1) * 100) !important;
}
.mb100 {
  margin-bottom: calc(var(--s1) * 100) !important;
}
.mt80 {
  margin-top: calc(var(--s1) * 80) !important;
}
.mb80 {
  margin-bottom: calc(var(--s1) * 80) !important;
}
.mt60 {
  margin-top: calc(var(--s1) * 60) !important;
}
.mb60 {
  margin-bottom: calc(var(--s1) * 60) !important;
}
.mt40 {
  margin-top: calc(var(--s1) * 40) !important;
}
.mb40 {
  margin-bottom: calc(var(--s1) * 40) !important;
}
.mt24 {
  margin-top: calc(var(--s1) * 24) !important;
}
.mb24 {
  margin-bottom: calc(var(--s1) * 24) !important;
}
.mt12 {
  margin-top: calc(var(--s1) * 12) !important;
}
.mb12 {
  margin-bottom: calc(var(--s1) * 12) !important;
}
.mt8 {
  margin-top: calc(var(--s1) * 8) !important;
}
.mb8 {
  margin-bottom: calc(var(--s1) * 8) !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}

.pt180 {
  padding-top: calc(var(--s1) * 180) !important;
}
.pb180 {
  padding-bottom: calc(var(--s1) * 180) !important;
}
.pt120 {
  padding-top: calc(var(--s1) * 120) !important;
}
.pb120 {
  padding-bottom: calc(var(--s1) * 120) !important;
}
.pt100 {
  padding-top: calc(var(--s1) * 100) !important;
}
.pb100 {
  padding-bottom: calc(var(--s1) * 100) !important;
}
.pt80 {
  padding-top: calc(var(--s1) * 80) !important;
}
.pb80 {
  padding-bottom: calc(var(--s1) * 80) !important;
}
.pt60 {
  padding-top: calc(var(--s1) * 60) !important;
}
.pb60 {
  padding-bottom: calc(var(--s1) * 60) !important;
}
.pt40 {
  padding-top: calc(var(--s1) * 40) !important;
}
.pb40 {
  padding-bottom: calc(var(--s1) * 40) !important;
}
.pt24 {
  padding-top: calc(var(--s1) * 24) !important;
}
.pb24 {
  padding-bottom: calc(var(--s1) * 24) !important;
}
.pt12 {
  padding-top: calc(var(--s1) * 12) !important;
}
.pb12 {
  padding-bottom: calc(var(--s1) * 12) !important;
}
.pt8 {
  padding-top: calc(var(--s1) * 8) !important;
}
.pb8 {
  padding-bottom: calc(var(--s1) * 8) !important;
}
.pt0 {
  padding-top: 0 !important;
}
.pb0 {
  padding-bottom: 0 !important;
}


/* ============================
overflow
---------------------------- */
.ov {
  overflow: visible !important;
}
.oh {
  overflow: hidden !important;
}
.oxa {
  overflow-x: auto !important;
}
.oya {
  overflow-y: auto !important;
}
.oa {
  overflow: hidden !important;
}

/* ============================
flex
---------------------------- */
.flex,
.flex-i {
  list-style-type: none;
  -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-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;
}

/* ======================
00) common
------------------------- */

/* ======================
10) header
------------------------- */
header {
  width: 100vw;
  height: var(--common_header_height);
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--common_head_bgcol);
  z-index: 10000;
}
header .outer {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
header .outer .inner {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 calc(var(--s1) * 40);
}
@media screen and (max-width: 767px) {
  header .outer .inner {
    padding: 0 5%;
  }
}
header .logo {
  font-size: var(--s24);
  font-weight: 700;
}
header .logo img {
  width: calc(var(--s1) * 327); /* 327px */
  height: auto;
}
@media screen and (max-width: 767px) {
  header .logo img {
    width: calc(var(--s1) * 210); /* 210px */
  }
}


/* ----------------------
  Main menu
------------------------- */
header .menu .menu-main {
  list-style: none;
  display: flex;
  gap: calc(var(--s1) * 24);
  margin: 0;
  padding: 0;
}
header .menu .menu-main > .itm {
  position: relative;
  display: grid;
  align-items: center;
  font-size: var(--s16);
  font-weight: 500;
}
header .menu .menu-main > .itm > a {
  display: flex;
  align-items: center;
  padding: var(--s8) 0;
  gap: calc(var(--s1) * 4);
  text-decoration: none;
  cursor: pointer;
}
header .menu .menu-main > .itm.has-sub > a::after {
  content: "";
  color: #FFFFFF;
  display: block;
  margin: 0;
  padding: 0;
  width: var(--s16);
  height: var(--s16);
  background-image: url(./img/icn_has-sub.png);
  background-size: contain;
  background-repeat: no-repeat;
}
header .menu .menu-main > .itm.has-sub:hover > a::after {
  background-image: url(./img/icn_has-sub_mo.png);
}
header .menu .menu-main > .itm.contact {
  margin: 0;
  padding: 0;
}
header .menu .menu-main > .itm.contact > a {
  width: calc(var(--s1) * 152); /* 152px */
  height: var(--common_header_height);
  justify-content: center;
  background: linear-gradient(252deg, #0054AC 49.48%, #1C2227 92.58%);
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  header .menu {
    position: fixed;
    top: var(--common_header_height);
    left: -100vw;
    width: 100vw;
    height: calc(100vh - var(--common_header_height));
    transition: all .3s ease;
    background: rgba(0, 91, 172, 0.975);
  }
  header.active .menu {
    left: 0;
  }
  header .menu .menu-main {
    flex-direction: column;
    gap: 0;
    height: 100%;
    justify-content: center;
  }
  header .menu .menu-main > .itm {
    width: 100%;
    padding-bottom: calc(var(--s1) * 20);
  }
  header .menu .menu-main > .itm:last-of-type {
    padding-bottom: 0;
  }
  header .menu .menu-main > .itm > a {
    text-align: center;
    color: #FFFFFF;
    margin-right: auto;
    margin-left: auto;
  }
  header .menu .menu-main > .itm.has-sub > a::after {
    display: none;
  }
  header .menu .menu-main > .itm.contact > a {
    width: 60%;
    justify-content: center;
    background: linear-gradient(252deg, #0054AC 49.48%, #1C2227 92.58%);
    color: #FFFFFF;
    border-radius: calc(var(--s1) * 32);
    border: 1px solid #FFFFFF;
  }
}
@media screen and (max-width: 370px) {
  header .menu .menu-main > .itm {
    padding-bottom: 0;
  }
}


/* ----------------------
  Sub menu (CSS only auto-height animation)
  grid-template-rows: 0fr -> 1fr
------------------------- */
header .menu .menu-main > .itm > .menu-sub-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(var(--s1) * -20));
  z-index: 1000;
  width: max-content;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    grid-template-rows .20s ease,
    opacity .16s ease,
    visibility .16s ease;
}
header .menu .menu-main > .itm > .menu-sub-wrap > .menu-sub-inner {
  min-height: 0;
  overflow: hidden;
}
header .menu .menu-main > .itm:hover > .menu-sub-wrap,
header .menu .menu-main > .itm:focus-within > .menu-sub-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .menu .menu-sub {
  list-style: none;
  margin: 0;
  padding: calc(var(--s1) * 12);
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 4);
  background: rgba(0, 91, 172, 0.975);
  border-radius: var(--s8);
}
@media screen and (max-width: 370px) {
  header .menu .menu-sub {
    gap: 0;
  }
}
header .menu .menu-sub .itm {
  font-size: calc(var(--s1) * 14);
  font-weight: 400;
  text-align: center;
}
header .menu .menu-sub .itm > a {
  display: block;
  padding: var(--s8) calc(var(--s1) * 10);
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
}
header .menu .menu-sub .itm > a:hover {
  opacity: .85;
}
@media screen and (max-width: 767px) {
  header .menu .menu-main > .itm > .menu-sub-wrap {
    position: static;
    transform: none;
    width: 100%;
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
  }
  header .menu .menu-main > .itm > .menu-sub-wrap > .menu-sub-inner {
    max-height: 100vh;
    overflow: visible;
  }
  header .menu .menu-sub {
    background: transparent;
    padding: 0;
  }
}

/* ----------------------
  Hamburger button
------------------------- */
header .ham-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  header .ham-btn {
    display: block;
    width: var(--s32);
    height: var(--s32);
    position: relative;
    cursor: pointer;
    z-index: 11000;
  }
  header .ham-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: calc(var(--s1) * 2);
    background: var(--common_kycol);
    border-radius: calc(var(--s1) * 2);
    transform: translate(-50%, -50%);
    transition: all .3s ease;
  }
  header .ham-btn span::before,
  header .ham-btn span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(var(--s1) * 2);
    background:  var(--common_kycol);
    border-radius: calc(var(--s1) * 2);
    transition: all .3s ease;
  }
  header .ham-btn span::before {
    top: calc(var(--s1) * -10);
  }
  header .ham-btn span::after {
    bottom: calc(var(--s1) * -10);
  }
  header.active .ham-btn span {
    background: transparent;
  }
  header.active .ham-btn span::before {
    transform: translateY(calc(var(--s1) * 10)) rotate(30deg);
  }
  header.active .ham-btn span::after {
    transform: translateY(calc(var(--s1) * -10)) rotate(-30deg);
  }
}


/* ======================
20) main
------------------------- */
main {
  width: 100vw;
  margin: 0 auto;
  padding-top: var(--common_header_height);
  background-color: var(--common_main_bgcol);
}
main section {
  width: 100%;
  /* max-width: calc(var(--s1) * 1440); */ /* 1440px */
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main section {
    width: 90%;
    max-width: 90%;
  }
}
main section > .outer {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
main section > .outer > .inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: calc(var(--s1) * 1240); /* 1240px */
}
main section > .outer > .inner.w1080 {
  max-width: calc(var(--s1) * 1080); /* 1080px */
}
main section > .outer > .inner.w1000 {
  max-width: calc(var(--s1) * 1000); /* 1000px */
}
main section > .outer > .inner.w880 {
  max-width: calc(var(--s1) * 880); /* 880px */
}
@media screen and (max-width: 767px) {
  main section > .outer > .inner,
  main section > .outer > .inner.w1080,
  main section > .outer > .inner.w1000,
  main section > .outer > .inner.w880 {
    width: 90%;
    max-width: 90%; /* 880px */
    margin-right: auto;
    margin-left: auto;
  }
}

/* ======================
30) footer
------------------------- */
footer {
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ECF0F4;
}
footer section {
  width: 100%;
  max-width: calc(var(--s1) * 1240); /* 1240px */
  margin: 0 auto;
}
footer section > .outer {
  padding: 0;
}
footer section > .outer > .inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  footer section {
    width: 90%;
    max-width: 90%;
  }
}


/* ----------------------
  footer section.contact
------------------------- */
footer section.contact > .outer {
  margin: 0;
}
footer section.contact > .outer > .inner {
  margin: 0;
  padding-top: calc(var(--s1) * 80);
  padding-bottom: calc(var(--s1) * 460);
  background-image: url(./img/bg_footer_contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  footer section.contact > .outer > .inner {
    background-size: contain;
    background-position: center bottom;
    padding-bottom: calc(var(--s1) * 180);
    background-color: #0054AC;
  }
}
footer section.contact > .outer > .inner .contact-panel {
  margin: 0 auto;
  width: calc(var(--s1) * 1150);
  height: calc(var(--s1) * 353);
  border-radius: 4px;
  background:
    url(./img/bg_footer_contact_zara.png),
    url(./img/bg_footer_contact_logo.svg),
    linear-gradient(68deg, #006AFA 34.6%, #007CE2 51.91%, #009EE2 81.38%, #FF883D 99.47%);
  box-shadow: 0 0 8px 0 rgba(0, 71, 168, 0.20);
  background-repeat: no-repeat;
  background-size: cover, 43%, cover;
  background-position: center center, center center, center center;
  padding: calc(var(--s1) * 48) calc(var(--s1) * 84) calc(var(--s1) * 75) calc(var(--s1) * 84);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 767px) {
  footer section.contact > .outer > .inner .contact-panel {
    margin: 0 auto;
    width: 90%;
    height: auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(var(--s1) * 32);
    background-size: 95%, cover;
  }
  footer section.contact > .outer > .inner .contact-panel .txt,
  footer section.contact > .outer > .inner .contact-panel .btn {
    width: 100%;
  }
}
footer section.contact > .outer > .inner .contact-panel .txt .snt {
  color: #FFFFFF;
  font-size: calc(var(--s1) * 20); /* 20px */
  font-weight: 700;
  line-height: 160%; /* 3.2rem */
  margin: 0;
}
footer section.contact > .outer > .inner .contact-panel .btn .snt {
  margin: 0;
}


/* ----------------------
  footer section.logo
------------------------- */
footer section.logo > .outer > .inner {
  margin-top: calc(var(--s1) * 48);
  margin-bottom: calc(var(--s1) * 24);
  padding: 0;
}
footer section.logo > .outer > .inner h1 img {
  width: calc(var(--s1) * 286); /* 286px */
  height: auto;
  display: inline;
}


/* ----------------------
  footer section.address-sitemap
------------------------- */
footer section.address-sitemap > .outer > .inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0;
}
footer section.address-sitemap > .outer > .inner address {
  margin-top: 0;
  margin-bottom: calc(var(--s1) * 20);
  padding: 0;
}
footer section.address-sitemap > .outer > .inner address:last-of-type {
  margin-bottom: 0;
}
footer section.address-sitemap > .outer > .inner .sitemap {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: calc(var(--s1) * 28);
}
@media screen and (max-width: 767px) {
  footer section.address-sitemap > .outer > .inner .sitemap {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst {
  width: calc(var(--s1) * 220); /* 220px */
}
@media screen and (max-width: 767px) {
  footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst {
    width: 100%;
  }
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst>.itm {
  margin-bottom: calc(var(--s1) * 24);
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst>.itm>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--s1) * 12) 0;
  font-weight: 700;
  line-height: 100%; /* 1.6rem */
  border-bottom: 1px solid #7C99B1;
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst>.itm>a::after {
  content: "";
  display: block;
  width: calc(var(--s1) * 12);
  height: calc(var(--s1) * 14);
  background-image: url(./img/icn_arrow3.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst>.itm>a.is-disabled::after {
  display: none;
  cursor: default;
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst > .itm.b-none > a {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst > .itm.b-none > a {
    width: 100%;
  }
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst > .itm > .sitemap-lst-sub {
  width: 100%;
  margin-top: calc(var(--s1) * 8);
  margin-left: calc(var(--s1) * 16);
  padding: 0;
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst > .itm > .sitemap-lst-sub > .itm {
  margin: calc(var(--s1) * 16) 0;
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst > .itm > .sitemap-lst-sub > .itm > a {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 500;
  line-height: 100%; /* 1.6rem */
  gap: calc(var(--s1) * 8);
}
footer section.address-sitemap > .outer > .inner .sitemap .sitemap-lst > .itm > .sitemap-lst-sub > .itm > a::before {
  content: "";
  display: block;
  width: calc(var(--s1) * 24);
  height: 1px;
  background-color: #1C2227;
}
@media screen and (max-width: 767px) {
  footer section.address-sitemap > .outer > .inner {
    flex-direction: column;
  }
  footer section.address-sitemap > .outer > .inner address:last-of-type {
    margin-bottom: 6em;
  }
}


/* ----------------------
  footer section.copyright
------------------------- */
footer section.copyright > .outer > .inner {
  margin-top: calc(var(--s1) * 46);
  margin-bottom: calc(var(--s1) * 16);
  padding: 0;
}
footer section.copyright > .outer > .inner .other-lnk .other-lnk-lst {
  display: flex;
  flex-direction: row;
  gap: calc(var(--s1) * 40);
}
@media screen and (max-width: 767px) {
  footer section.copyright > .outer > .inner .other-lnk .other-lnk-lst {
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--s1) * 20);
  }
}
footer section.copyright > .outer > .inner .other-lnk .other-lnk-lst .itm {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--s1) * 10);
}
footer section.copyright > .outer > .inner .other-lnk .other-lnk-lst .itm.outsite::after {
  content: "";
  display: block;
  width: calc(var(--s1) * 16);
  height: calc(var(--s1) * 16);
  background-image: url(./img/icn_outesite.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: calc(var(--s1) * 12);
}
footer section.copyright > .outer > .inner .other-lnk .other-lnk-lst .itm a {
  display: block;
  font-size: calc(var(--s1) * 14);
  font-weight: 700;
  line-height: 150%; /* 2.1rem */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
footer section.copyright > .outer > .inner .snt {
  font-family: var(--ff-r);
  font-size: calc(var(--s1) * 13); /* 13px */
  font-weight: 500;
  line-height: 150%; /* 1.95rem */
}
@media screen and (max-width: 767px) {
  footer section.copyright > .outer > .inner .snt {
    text-align: center !important;
  }
}



/* ======================
99) back to top
------------------------- */
.back2top {
  position: fixed;
  bottom: calc(var(--s1) * 58);
  right: calc(var(--s1) * 58);
  width: calc(var(--s1) * 50);
  height: calc(var(--s1) * 50);
  background-image: url(./img/bg_back2top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  touch-action: none;
  pointer-events: none;
}
.back2top.active {
  opacity: 1;
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.back2top span {
  display: none;
}
@media screen and (max-width: 767px) {
  .back2top {
    bottom: calc(var(--s1) * 16);
    right: calc(var(--s1) * 16);
    width: calc(var(--s1) * 32);
    height: calc(var(--s1) * 32);
  }
}


/* ======================
999) form
------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: calc(var(--s1) * 10) calc(var(--s1) * 12);
  font-weight: 700;
  line-height: 150%;
  color: #1C2227;
  /* border-radius: calc(calc(var(--s1) * 8) * 0.5); */
  border: 0.1rem solid #B3B3B3;
  background: #ECF0F4;
}
select {
  width: auto;
  max-width: auto;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  outline: 0.2rem solid #0054AC;
  outline-offset: 0.2rem;
}
input[type="checkbox"] {
  width: calc(var(--s1) * 20);
  height: calc(var(--s1) * 20);
  accent-color: #D2D2D2;
  border: 0.1rem solid #D2D2D2;
  /* border-radius: calc(calc(var(--s1) * 8) / 2); */
  background: #EFEFEF;
}
input[type="checkbox"]:checked {
  accent-color: #D2D2D2;
  border: 0.1rem solid #D2D2D2;
  background: #EFEFEF;
}
input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem #0054AC;
}
input[type="radio"] {
  appearance: none;
  width: calc(var(--s1) * 20);
  height: calc(var(--s1) * 20);
  border: 0.1rem solid #D2D2D2;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  background: #EFEFEF;
  transition: box-shadow .2s, border-color .2s;
}
input[type="checkbox"] {
  appearance: none;
  width: calc(var(--s1) * 20);
  height: calc(var(--s1) * 20);
  border: 0.1rem solid #D2D2D2;
  display: inline-grid;
  place-content: center;
  background: #EFEFEF;
  transition: box-shadow .2s, border-color .2s;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem #0054AC;
}
input[type="radio"]::before {
  content: "";
  width: calc(var(--s1) * 10);
  height: calc(var(--s1) * 10);
  border-radius: 50%;
  transform: scale(0);
  background: #0054AC;
  transition: transform .15s ease;
}
input[type="checkbox"]::before {
  content: "";
  margin-top: calc(calc(var(--s1) * 8) * 0.5 * -1);
  width: calc(var(--s1) * 10);
  height: calc(var(--s1) * 16);
  transform: scale(0) rotate(45deg);
  transition: transform .15s ease;
  border-right: calc(calc(var(--s1) * 8) * 0.5) solid #0054AC;
  border-bottom: calc(calc(var(--s1) * 8) * 0.5) solid #0054AC;
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  transform: scale(1) rotate(45deg);
}
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  box-shadow: 0 0 0 0.2rem #0054AC;
}
input[type="submit"] {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: calc(var(--s1) * 32) calc(var(--s1) * 143);
  border-radius: calc(var(--s1) * 47);
  background:
  url(./img/icn_arrow1.svg) center right calc(var(--s1) * 24) / calc(var(--s1) * 20) calc(var(--s1) * 20) no-repeat,
  #000000;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.064);
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
input[type="submit"]:hover {
  background:
  url(./img/icn_arrow1_mo.svg) center right calc(var(--s1) * 24) / calc(var(--s1) * 20) calc(var(--s1) * 20) no-repeat,
  #CCCCCC;
  color: #000000;
}
