@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&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

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

[+] 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 {
  /* color */
  --common_bgcolor: #FFFFFF;
  --common_color: #222222;

  /* font-size (1440px基準)*/
  --size1440: 100vw;
  --size1280: 88.88888888888889vw;
  --size1200: 83.33333333333334vw;
  --size1160: 80.55555555555556vw;
  --size1080: 75vw;
  --size1000: 69.44444444444444vw;
  --size1054: 73.19444444444444vw;
  --size1000: 69.44444444444444vw;
  --size960: 66.66666666666666vw;
  --size300: 20.833333333333336vw;
  --size200: 13.88888888888889vw;
  --size160: 11.11111111111111vw;
  --size128: 8.88888888888889vw;
  --size120: 8.333333333333332vw;
  --size108: 7.5vw;
  --size96: 6.666666666666667vw;
  --size70: 4.861111111111112vw;
  --size80: 5.555555555555555vw;
  --size64: 4.444444444444445vw;
  --size62: 4.305555555555555vw;
  --size60: 4.166666666666666vw;
  --size58: 4.027777777777778vw;
  --size56: 3.888888888888889vw;
  --size54: 3.75vw;
  --size52: 3.6111111111111107vw;
  --size50: 3.4722222222222223vw;
  --size48: 3.3333333333333335vw;
  --size46: 3.194444444444444vw;
  --size44: 3.0555555555555554vw;
  --size42: 2.9166666666666665vw;
  --size40: 2.7777777777777777vw;
  --size38: 2.638888888888889vw;
  --size36: 2.5vw;
  --size34: 2.361111111111111vw;
  --size32: 2.2222222222222223vw;
  --size30: 2.083333333333333vw;
  --size28: 1.9444444444444444vw;
  --size26: 1.8055555555555554vw;
  --size24: 1.6666666666666667vw;
  --size22: 1.5277777777777777vw;
  --size20: 1.3888888888888888vw;
  --size18: 1.25vw;
  --size16: 1.1111111111111112vw; /* default */
  --size14: 0.9722222222222222vw;
  --size12: 0.8333333333333334vw;
  --size10: 0.6944444444444444vw;
  --size8:  0.5555555555555556vw;

  /* font-family */
  --ff-g: 'Noto Sans JP', sans-serif;
  --ff-m: 'Montserrat', sans-serif;
  --ff-z: 'Zen Maru Gothic', sans-serif;
  --ff-b: 'Bebas Neue', sans-serif;
  --ff-r: 'Roboto', sans-serif;
  --ff-l: 'Libre Baskerville', 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: calc(var(--size8) * 14.5); /* 11.6rem */
}

@media screen and (min-width: 1440px) {
  :root {
    /* font-size */
    --size1440: 144rem;
    --size1280: 128rem;
    --size1200: 120rem;
    --size1160: 116rem;
    --size1080: 108rem;
    --size1000: 100rem;
    --size1054: 105.4rem;
    --size960: 96rem;
    --size300: 30rem;
    --size200: 20rem;
    --size160: 16rem;
    --size128: 12.8rem;
    --size120: 12rem;
    --size108: 10.8rem;
    --size96: 9.6rem;
    --size70: 7.0rem;
    --size80: 8.0rem;
    --size64: 6.4rem;
    --size62: 6.2rem;
    --size60: 6.0rem;
    --size58: 5.8rem;
    --size56: 5.6rem;
    --size54: 5.4rem;
    --size52: 5.2rem;
    --size50: 5.0rem;
    --size48: 4.8rem;
    --size46: 4.6rem;
    --size44: 4.4rem;
    --size42: 4.2rem;
    --size40: 4.0rem;
    --size38: 3.8rem;
    --size36: 3.6rem;
    --size34: 3.4rem;
    --size32: 3.2rem;
    --size30: 3.0rem;
    --size28: 2.8rem;
    --size26: 2.6rem;
    --size24: 2.4rem;
    --size22: 2.2rem;
    --size20: 2.0rem;
    --size18: 1.8rem;
    --size16: 1.6rem; /* default */
    --size14: 1.4rem;
    --size12: 1.2rem;
    --size10: 1.0rem;
    --size8:  0.8rem;
  }
}

@media screen and (max-width: 767px) {
  :root {
    /* font-size */
    --size1440: 144rem;
    --size1280: 128rem;
    --size1200: 120rem;
    --size1160: 116rem;
    --size1080: 108rem;
    --size1054: 105.4rem;
    --size1000: 100rem;
    --size960: 96rem;
    --size300: 30rem;
    --size200: 20rem;
    --size160: 16rem;
    --size128: 12.8rem;
    --size120: 12rem;
    --size108: 10.8rem;
    --size96: 9.6rem;
    --size70: 7.0rem;
    --size80: 8.0rem;
    --size66: 6.6rem;
    --size64: 6.4rem;
    --size62: 6.2rem;
    --size60: 6.0rem;
    --size58: 5.8rem;
    --size56: 5.6rem;
    --size54: 5.4rem;
    --size52: 5.2rem;
    --size50: 5.0rem;
    --size48: 4.8rem;
    --size46: 4.6rem;
    --size44: 4.4rem;
    --size42: 4.2rem;
    --size40: 4.0rem;
    --size38: 3.8rem;
    --size36: 3.6rem;
    --size34: 3.4rem;
    --size32: 3.2rem;
    --size30: 3.0rem;
    --size28: 2.8rem;
    --size26: 2.6rem;
    --size24: 2.4rem;
    --size22: 2.2rem;
    --size20: 2.0rem;
    --size18: 1.8rem;
    --size16: 1.6rem; /* default */
    --size14: 1.4rem;
    --size12: 1.2rem;
    --size10: 1.0rem;
    --size8:  0.8rem;
    --common_header_height_sp: var(--size66);
  }
}


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

/* ============================
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_color);
  background-color: var(--common_bgcolor);
  font-family: var(--ff-g);
  font-style: normal;
  font-weight: 400;
  font-size: var(--size16);
  -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(--size16);
  }
  html, body {
    scroll-padding-top: var(--common_header_height_sp);
  }
}

/* ============================
default style
---------------------------- */
a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}
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);
}
a:hover {
  opacity: 0.8;
}

/*
p {}
@media screen and (max-width: 767px) {
  p {}
}
*/

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(--size80) auto;
  border: 1px solid #CC0000;
  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(--size14) * 1);
}
.mb1 {
  margin-bottom: calc(var(--size14) * 1);
}
.pt1 {
  padding-top: calc(var(--size14) * 1);
}
.pb1 {
  padding-bottom: calc(var(--size14) * 1);
}

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

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

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

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

/* ============================
overflow
---------------------------- */
.ov {
  overflow: visible !important;
}
.oh {
  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;
}

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

/* ======================
10) header
------------------------- */
header {
  width: 100%;
  height: var(--common_header_height);
  overflow: visible;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  padding: var(--size20);
  background-image: url(/img/bg_header_r.png);
  background-repeat: no-repeat;
  background-position: right var(--size20) top var(--size20);
}
@media screen and (max-width: 767px) {
  header {
    height: var(--common_header_height_sp);
    background-size: var(--size12) var(--size12);
    padding: var(--size10);
    background-position: right var(--size10) top var(--size10);
  }
}
header::before {
  content: '';
  display: block;
  width: 100%;
  height: var(--size20);
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--common_bgcolor);
}
@media screen and (max-width: 767px) {
  header::before {
    height: var(--size10);
  }
}
header::after {
  content: '';
  display: block;
  width: var(--size24);
  height: var(--size24);
  position: absolute;
  bottom: calc(var(--size8) / -2);
  left: var(--size20);
  background-image: url(/img/bg_header_l.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  /* transition: all .25s ease; */
}
@media screen and (max-width: 767px) {
  header::after {
    width: var(--size12);
    height: var(--size12);
    bottom: unset;
    top: var(--size48);
    left: var(--size10);
  }
}
header.active::after {
  left: 0;
}
header .header-ttl {
  position: relative;
  height: calc(var(--size8) * 9.5); /* 7.6rem */
}
@media screen and (max-width: 767px) {
  header .header-ttl {
    height: calc(var(--size8) * 4.75); /* 4.75rem */
  }
}
header .header-ttl a:hover {
  opacity: 1;
}
header .header-ttl .header-img {
  margin-left: calc(var(--size20) * -1);
}
header .header-ttl .header-img img {
  height: calc(var(--size8) * 9.5); /* 7.6rem */
}
@media screen and (max-width: 767px) {
  header .header-ttl .header-img img {
    height: calc(var(--size8) * 4.75); /* 4.75rem */
  }
}
header .header-ttl .header-img::before {
  content: '';
  display: block;
  width: var(--size20);
  height: calc(var(--size8) * 9.5); /* 7.6rem */
  aspect-ratio: var(--size20) / calc(var(--size8) * 9.5);
  background-color: var(--common_bgcolor);
}
@media screen and (max-width: 767px) {
  header .header-ttl .header-img::before {
    height: calc(var(--size8) * 4.75); /* 4.75rem */
  }
}
header .header-ttl .header-img::after {
  content: '';
  display: block;
  width: var(--size24);
  height: var(--size24);
  background-image: url(/img/bg_header_l.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  header .header-ttl .header-img::after {
    width: var(--size12);
    height: var(--size12);
  }
}
header,
header.active .header-ttl .header-img {
  /* transition: all .25s ease; */
}
header.active {
  padding-right: 0;
  padding-left: 0;
  background-position: right top var(--size20);
}
@media screen and (max-width: 767px) {
  header.active {
    background-position: right top var(--size10);
  }
}
header.active .header-ttl .header-img {
  margin-left: 0;
}
header.active .header-ttl .header-img::before {
  width: var(--size20);
}

.global-nav {
  padding-left: var(--size32);
  border-radius: 0 var(--size24) 0 var(--size24);
}
@media screen and (max-width: 767px) {
  .global-nav {
    padding-left: 0;
  }
}
header.active .global-nav {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
header.active:has(+ .mega-menu.active) .global-nav {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
}
@media screen and (max-width: 767px) {
  header.active .global-nav {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
  }
}
.global-nav-inner {
  margin: 0 var(--size24) 0 0;
  opacity: 1;
  pointer-events: all;
  /* transition: all 0.3s ease; */
}
@media screen and (max-width: 767px) {
  .global-nav-inner {
    margin: 0 var(--size12) 0 0;
    display: none;
  }
}
.global-nav-inner.active {
  opacity: 0;
  pointer-events: none;
}
.global-nav-tel-recept {
  column-gap: calc(var(--size8) * 0.5);
  margin-bottom: calc(var(--size8) * 0.5);
}
.global-nav-inner .global-nav-tel-recept .tel-no {
  font-family: var(--ff-l);
  font-size: var(--size20);
  font-weight: 700;
  line-height: 100%; /* 20px */
  column-gap: calc(var(--size8) * 0.5);
  letter-spacing: 0.08rem;
}
.global-nav-inner .global-nav-tel-recept .tel-no a {
  color: var(--common_color);
}
.global-nav-inner .global-nav-tel-recept .tel-no::before {
  content: '';
  display: block;
  width: var(--size34);
  height: var(--size20);
  aspect-ratio: 34/20;
  background: url(/img/icn_header_freedial.svg) no-repeat center/contain;
}
.global-nav-inner .global-nav-tel-recept .recept-time {
  font-size: var(--size12);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.44rem */
  letter-spacing: 0.048rem;
}
.global-nav-lst {
  column-gap: var(--size24);
}
.global-nav-lst li a {
  color: var(--common_color);
  color: #FFFFFF;
  font-feature-settings: 'palt' on;
  font-family: var(--ff-g);
  font-size: calc(var(--size8) * 1.875); /* 1.5rem */
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.12rem;
}
header.active .global-nav-lst li a {
  color: #000000;
}
.page header .global-nav-lst li a {
  color: var(--common_color);
}
.global-nav-contact {
  margin: 0 var(--size24) 0 0;
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .global-nav-contact {
    margin: 0 var(--size8) 0 0;
    transition: all 0s;
  }
}
.global-nav-contact.active {
  opacity: 0;
  pointer-events: none;
}
.global-nav-contact a {
  display: block;
  padding: var(--size18) var(--size24);
  border-radius: var(--size58);
  background: linear-gradient(95deg, #6F00CF 10.94%, #28ACEE 95.05%);
  color: #FFFFFF;
  text-align: center;
  font-feature-settings: 'palt' on;
  font-size: calc(var(--size8) * 1.875); /* 1.5rem */
  font-weight: 700;
  line-height: 100%; /* 1.5rem */
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .global-nav-contact a {
    padding: var(--size8) var(--size12);
    font-size: var(--size12);
  }
}
.global-nav-hamburger {
  margin: 0 var(--size24) 0 0;
}
@media screen and (max-width: 767px) {
  .global-nav-hamburger {
    margin: 0 var(--size8) 0 0;
  }
}
.global-nav-hamburger a {
  padding: var(--size18) var(--size16);
  border-radius: var(--size58);
  background: #FFFFFF;
  text-align: center;
  font-feature-settings: 'palt' on;
  font-size: var(--size14);
  font-weight: 700;
  line-height: 100%;
  column-gap: var(--size8);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.23);
}
@media screen and (max-width: 767px) {
  .global-nav-hamburger a {
    padding: var(--size8);
    height: calc(var(--size8) * 3.5);
  }
}
.global-nav-hamburger a .txt {
  font-family: var(--ff-m);
  font-size: var(--size14);
  font-weight: 700;
  line-height: 100%; /* 1.4rem */
}
@media screen and (max-width: 767px) {
  .global-nav-hamburger a .txt {
    display: none;
  }
}
.global-nav-hamburger a .bars {
  position: relative;
  width: var(--size30);
  height: calc(var(--size8) * 0.25);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .global-nav-hamburger a .bars {
    transform: scale(0.75);
  }
}
.global-nav-hamburger a .bars .bar {
  display: block;
  position: absolute;
  width: var(--size30);
  height: calc(var(--size8) * 0.25);
  background: #222222;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.global-nav-hamburger a .bars .bar1 {
  top: calc(50% - var(--size8));
}
.global-nav-hamburger a .bars .bar3 {
  top: calc(50% + var(--size8));
}
.global-nav-hamburger a.active .bar1 {
  transform: translate(-50%, -50%) rotate(30deg);
  top: calc(50% + var(--size8) * 0.05);
}
.global-nav-hamburger a.active .bar2 {
  opacity: 0;
}
.global-nav-hamburger a.active .bar3 {
  transform: translate(-50%, -50%) rotate(-30deg);
  top: calc(50% - var(--size8) * 0.05);
}
/* -------------------------------- */
/* .mega-menu                       */
.mega-menu {
  width: calc(var(--size8) * 116);/* 928px */
  height: calc(var(--size8) * 80.5);/* 644px */
  position: fixed;
  top: calc(var(--size8) * 116 * -1);
  right: 0;
  border-radius: var(--size24);
  background-color: #FFFFFF;
  z-index: 9999;
  transition: all 0.3s ease;
}
.mega-menu.active {
  top: 0;
}
@media screen and (max-width: 767px) {
  .mega-menu {
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: -100dvh;
    left: 0;
    background-color: #FFFFFF;
    border-radius: 0;
    z-index: 9999;
    transition: all 0.3s ease;
  }
  .mega-menu.active {
    top: 0;
  }
}
.mega-menu .sitemap {
  width: 100%;
  padding-top: calc(var(--size8) * 23.5);
}
@media screen and (max-width: 767px) {
  .mega-menu .sitemap {
    padding-top: calc(var(--size8) * 10);
    padding-right: var(--size10);
    padding-left: var(--size10);
  }
}
.mega-menu .sitemap .sitemap_box .sitemap_lst {
  gap: var(--size42) var(--size24);
}
@media screen and (max-width: 767px) {
  .mega-menu .sitemap .sitemap_box .sitemap_lst {
    gap: var(--size16) 0;
  }
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm {
  width: calc(33% - (var(--size8) * 6));/* 240px */
}
@media screen and (max-width: 767px) {
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm {
    padding: var(--size10);
  }
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm.p1 {
    order: 1;
    width: 55%;
  }
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm.p2 {
    order: 2;
    width: 45%;
  }
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm.p3 {
    order: 5;
    width: 55%;
  }
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm.p4 {
    order: 3;
    width: 55%;
  }
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm.p5 {
    order: 4;
    width: 45%;
  }
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm.p6 {
    order: 6;
    width: 45%;
  }
}
@media screen and (max-width: 320px) {
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child {
    display: none;
  }
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.lnk {
  display: block;
  position: relative;
  padding-left: var(--size28);
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.lnk::before {
  content: '';
  display: block;
  width: var(--size22);
  height: var(--size22);
  aspect-ratio: 1 / 1;
  background-image: url(/img/bg_megamenu_sitemap_parent.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.lnk .jp {
  display: block;
  color: #222222;
  font-feature-settings: 'palt' on;
  font-size: var(--size20);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.12rem;
  margin-bottom: var(--size10);
}
@media screen and (max-width: 767px) {
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.lnk .jp {
    font-size: var(--size14);
    margin-bottom: calc(var(--size10) / 2);
    line-height: 150%;
  }
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.lnk .en {
  display: block;
  color: rgba(51, 51, 51, 0.55);
  font-family: var(--ff-m);
  font-size: var(--size12);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.052rem;
}
@media screen and (max-width: 767px) {
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.lnk .en {
    font-size: var(--size8);
  }
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.btn {
  display: block;
  margin-top: var(--size40);
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a.btn img {
  width: calc(var(--size8) * 30);/* 240px */
  height: auto;
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child {
  list-style: none;
  margin-top: var(--size16);
  margin-left: var(--size12);
}

@media screen and (max-width: 767px) {
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child {
    margin-top: 0;
  }
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm {
  --dot-size: .42em;
  --dot-gap: .5em;
  position: relative;
  padding-left: calc(var(--dot-size) + var(--dot-gap));
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: currentColor;
}
.mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm a {
  color: #222222;
  font-size: var(--size14);
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .mega-menu .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm a {
    font-size: var(--size12);
  }
}



/* ======================
20) main
------------------------- */
main {
  width: calc(100% - var(--size40));
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  main {
    width: calc(100% - var(--size20));
  }
}
main section.outer {
  margin-top: calc(var(--size8) * 12.5);    /* 10.0rem */
  margin-bottom: calc(var(--size8) * 12.5); /* 10.0rem */
}
body.page main {
  padding-top: var(--common_header_height); /* 11.6rem */
}
@media screen and (max-width: 767px) {
  body.page main {
    padding-top: var(--common_header_height_sp); /* 6.0rem */
  }
}


/* ======================
30) footer
------------------------- */
section.speed_quality .inner {
  width: 100%;
  max-width: var(--size1280);
  height: calc(var(--size8) * 53.75); /* 43.0rem */
  margin: 0 auto;
  background-image: url(/img/bg_speed_quality.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: calc(var(--size8) * 8) calc(var(--size8) * 9.5); /* 6.4rem 7.6rem */
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner {
    position: relative;
    width: calc(100% - var(--size20));
    height: auto;
    margin: 0 auto;
    background-image: none;
    background-color: #EEECF2;
    padding: var(--size24);
    border-radius: 0 var(--size24) var(--size24) var(--size24);
    flex-direction: column;
    row-gap: var(--size12);
  }
  section.speed_quality .inner::before {
    content: '';
    display: block;
    width: 100%;
    height: var(--size60);
    position: absolute;
    top: calc(var(--size60) * -1);
    left: 0;
    background-image: url(/img/bg_speed_quality_sp.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
  }
}

/* ----------------------------------- */
/* section.speed_quality .inner .col_l */
section.speed_quality .inner .col_l {
  width: 50%;
  flex-direction: column;
  padding-right: 1.5%;
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner .col_l {
    width: 100%;
    padding-right: 0;
    flex-direction: column;
    row-gap: var(--size12);
  }
}
section.speed_quality .inner .col_l .copy {
  color: #222;
  font-feature-settings: 'palt' on;
  font-size: var(--size24);
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner .col_l .copy {
    font-size: var(--size18);
  }
}
section.speed_quality .inner .col_l .tel-btn {
  display: block;
  color: #222;
  padding: var(--size44) var(--size48) var(--size26) var(--size48);
  background-color: #FFFFFF;
  border-radius: var(--size24);
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner .col_l .tel-btn {
    padding: var(--size26);
  }
  section.speed_quality .inner .col_l .tel-btn .txt-tel {
    justify-content: center;
  }
}
section.speed_quality .inner .col_l .tel-btn .txt-tel .txt {
  font-feature-settings: 'palt' on;
  font-size: var(--size18);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1423rem;
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner .col_l .tel-btn .txt-tel .txt {
    margin-bottom: var(--size8);
    font-size: var(--size16);
  }
}
section.speed_quality .inner .col_l .tel-btn .txt-tel .tel {
  font-feature-settings: 'palt' on;
  font-family: var(--ff-m);
  font-size: var(--size32);
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner .col_l .tel-btn .txt-tel .tel {
    font-size: var(--size28);
  }
}
section.speed_quality .inner .col_l .tel-btn .tim {
  margin-top: calc(var(--size8) * 0.75); /* 0.6rem */
  text-align: right;
  font-feature-settings: 'palt' on;
  font-size: var(--size14);
  font-weight: 400;
  line-height: 100%; /* 1.4rem */
  letter-spacing: 0.112rem;
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner .col_l .tel-btn .tim {
    text-align: center;
  }
}

/* ----------------------------------- */
/* section.speed_quality .inner .col_r */
section.speed_quality .inner .col_r {
  width: 50%;
  padding-left: 1.5%;
}
@media screen and (max-width: 767px) {
  section.speed_quality .inner .col_r {
    width: 100%;
    padding-left: 0;
  }
}
footer {
  margin-top: calc(var(--size8) * 12.5); /* 10.0rem */
  width: 100%;
  height: auto;
  color: #FFFFFF;
  overflow: hidden;
}
footer .inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
footer .inner .copyright {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: var(--size24);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  font-size: var(--size12);
  font-weight: 700;
  line-height: 150%; /* 1.8rem */
}

/* -------------------- */
/* footer .inner .col_l */
footer .inner .col_l {
  width: 100%;
  max-width: calc(var(--size8) * 62.5); /* 50.0rem */
  max-width: 34.72%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer .inner .col_l {
    max-width: 100%;
  }
}
footer .inner .col_l .logo {
  width: 100%;
  height: auto;
  background-color: #221D38;
}
footer .inner .col_l .logo .logo_box {
  width: 100%;
  height: auto;
  padding: calc(var(--size8) * 7.75) 0; /* 6.2rem 0 */
  background-color: #FFFFFF;
  border-radius: 0 0 var(--size24) 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .inner .col_l .logo .logo_box {
    justify-content: center;
    padding: calc(var(--size8) * 3.875) 0;
  }
}
footer .inner .col_l .logo .logo_box .ttl {
  width: calc(var(--size8) * 33); /* 26.4rem */
  margin-right: calc(var(--size8) * 9.75); /* 7.8rem */
}
@media screen and (max-width: 767px) {
  footer .inner .col_l .logo .logo_box .ttl {
    margin-right: 0;
  }
}
footer .inner .col_l .logo .logo_box .ttl img {
  width: calc(var(--size8) * 33); /* 26.4rem */
  height: auto;
}
footer .inner .col_l .address {
  width: 100%;
  height: 100%;
  background-color: #221D38;
  border-radius: var(--size24) 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .inner .col_l .address .address_box {
  width: 100%;
  height: auto;
  padding: var(--size32) 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .inner .col_l .address .address_box {
    padding: var(--size32) 0  var(--size48) 0;
    justify-content: center;
  }
}
footer .inner .col_l .address .address_box address {
  width: calc(var(--size8) * 42.5); /* 34.0rem */
  font-size: var(--size16);
  font-weight: 500;
  line-height: 170%; /* 2.72rem */
}
footer .inner .col_l .policy {
  width: 100%;
  height: auto;
  background-color: #221D38;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: var(--size24);
}
@media screen and (max-width: 767px) {
  footer .inner .col_l .policy {
    display: none;
  }
}
footer .inner .col_l .policy .policy_outer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
}
footer .inner .col_l .policy .policy_outer .policy_inner {
  width: calc(var(--size8) * 42.5);
}
footer .inner .col_l .policy .policy_outer .policy_inner a {
  font-size: var(--size14);
  font-weight: 700;
  line-height: normal;
}



/* -------------------- */
/* footer .inner .col_r */
footer .inner .col_r {
  width: 100%;
  max-width: calc(100% - var(--size8) * 62.5);
  max-width: calc(100% - 34.72%);
  height: 100%;
  padding-top: calc(var(--size8) * 12.5);    /* 10.0rem */
  padding-bottom: calc(var(--size8) * 17.5); /* 13.0rem */
  background: #221D38;
  border-radius: var(--size24) var(--size24) 0 0;
}
@media screen and (max-width: 767px) {
  footer .inner .col_r {
    max-width: 100%;
    border-radius: 0;
    padding-top: 0;
    padding-right: var(--size10);
    padding-bottom: calc(var(--size8) * 7.5); /* 6.0rem */
    padding-left: var(--size10);
  }
}
footer .inner .col_r .sitemap {
  width: calc(var(--size8) * 69.5); /* 55.6rem */
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst {
  gap: calc(var(--size8) * 5.5) calc(var(--size8) * 9); /* 4.4rem 7.2rem */
}
@media screen and (max-width: 767px) {
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst {
    gap: calc(var(--size8) * 2.75) calc(var(--size8) * 2.75); /* 4.4rem 7.2rem */
    justify-content: center;
  }
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm {
  width: calc(50% - (var(--size8) * 4.5)); /* 50% - 3.6rem */
}
@media screen and (max-width: 767px) {
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm {
    width: calc(50% - (var(--size8) * 1.5));
  }
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm:nth-child(odd) {
    width: calc(60% - (var(--size8) * 1.5));
  }
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm:nth-child(even) {
    width: calc(40% - (var(--size8) * 1.5));
  }
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a {
  display: block;
  position: relative;
  padding-left: var(--size28);
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a::before {
  content: '';
  display: block;
  width: var(--size22);
  height: var(--size22);
  aspect-ratio: 1 / 1;
  background-image: url(/img/bg_sitemap_parent.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a .jp {
  display: block;
  font-feature-settings: 'palt' on;
  font-size: var(--size20);
  font-weight: 700;
  line-height: 100%; /* 2rem */
  letter-spacing: 0.12rem;
  margin-bottom: var(--size10);
}
@media screen and (max-width: 767px) {
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a .jp {
    font-size: var(--size16);
    line-height: 125%;
  }
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a .en {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--ff-m);
  font-size: var(--size112);
  font-weight: 700;
  line-height: 100%; /* 1.3rem */
  letter-spacing: 0.052rem;
}
@media screen and (max-width: 767px) {
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm>a .en {
    font-size: var(--size10);
  }
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child {
  list-style: none;
  margin-top: var(--size20);
  margin-left: var(--size12);
}
@media screen and (max-width: 767px) {
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child {
    margin-top: var(--size8);
    margin-left: var(--size8);
  }
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm {
  --dot-size: .42em;
  --dot-gap:  .5em;
  position: relative;
  padding-left: calc(var(--dot-size) + var(--dot-gap));
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: currentColor;
}
footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm a {
  font-size: var(--size14);
  font-weight: 500;
  line-height: 150%; /* 2.1rem */
}
@media screen and (max-width: 767px) {
  footer .inner .col_r .sitemap .sitemap_box .sitemap_lst.parent .parent-itm .child .child-itm a {
    font-size: var(--size12);
  }
  footer .inner .col_r .policy_inner_sp {
    padding-top: var(--size32);
  }
  footer .inner .col_r .policy_inner_sp a {
    font-size: var(--size12);
    font-weight: 700;
    line-height: normal;
  }
}

footer .inner a {
  color: #FFFFFF;
}

/* ====================
40) .contact
-------------------- */
section.contact {
  padding-top: calc(var(--size8) * 12.5);    /* 10.0rem */
  padding-bottom: calc(var(--size8) * 12.5); /* 10.0rem */
}
section.contact .inner {
  width: 100%;
  max-width: calc(var(--size8) * 136); /* 108.8rem */
  margin: 0 auto;
  height: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.contact .inner {
    width: 90%;
    margin: 0 auto;
  }
}
section.contact .inner::before {
  content: '';
  position: absolute;
  top: calc(var(--size8) * -12.5);  /* -10.0rem */
  right: calc(var(--size8) * -4);   /* -3.2rem */
  z-index: 1;
  background: url(/img/bg_top_contact.png) no-repeat center/contain;
  width: calc(var(--size8) * 27.09);     /* 21.672rem */
  height: calc(var(--size8) * 14.68375); /* 11.747rem */
}
@media screen and (max-width: 767px) {
  section.contact .inner::before {
    top: calc(var(--size8) * -15);
    right: 5%;
  }
}
section.contact .inner .section-ttl {
  width: 100%;
  height: auto;
  margin-bottom: calc(var(--size8) * 6); /* 4.8rem */
  margin-left: calc(var(--size8) * -4);  /* -3.2rem */
}
section.contact .inner .section-ttl .en {
  color: #EBEEDD;
  font-family: Lora;
  font-size: calc(var(--size8) * 15); /* 12rem */
  font-weight: 400;
  line-height: 100%;
}
section.contact .inner .section-ttl .jp {
  color: #4C2E3D;
  font-family: "Shippori Mincho";
  font-size: calc(var(--size8) * 4);  /* 3.2rem */
  font-weight: 600;
  line-height: 100%;
  margin-top: calc(var(--size8) * -4.75); /* -3.8rem */
  margin-left: calc(var(--size8) * 4);    /* 3.2rem */
}
@media screen and (max-width: 767px) {
  section.contact .inner .section-ttl {
    margin-left: 0;
    text-align: center;
  }
  section.contact .inner .section-ttl .en {
    font-size: var(--size64);
  }
  section.contact .inner .section-ttl .jp {
    font-size: calc(var(--size8) * 3);
    margin-top: calc(var(--size8) * -2.5);
  }
}
@media screen and (max-width: 320px) {
  section.contact .inner .section-ttl .jp {
    font-size: calc(var(--size8) * 2.5);
  }
}
section.contact .inner .contact-box {
  column-gap: calc(var(--size8) * 4.25); /* 3.4rem */
}
@media screen and (max-width: 767px) {
  section.contact .inner .contact-box {
    flex-wrap: wrap;
  }
}
section.contact .inner .contact-box .contact-box-txt {
  width: calc(var(--size8) * 65.25); /* 52.2rem */
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  section.contact .inner .contact-box .contact-box-txt {
    margin-bottom: var(--size36);
  }
}
section.contact .inner .contact-box .contact-box-txt p {
  color: var(--common_color);
  font-size: calc(var(--size8) * 2.25); /* 1.8rem */
  font-weight: 500;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  section.contact .inner .contact-box .contact-box-txt p {
    text-align: center;
    font-size: var(--size14);
    margin-bottom: var(--size24);
  }
}
section.contact .inner .contact-box .contact-box-txt .btn-contact {
  display: block;
  width: calc(var(--size8) * 56);       /* 44.8rem */
  padding: calc(var(--size8) * 3) calc(var(--size8) * 3.3125); /* 2.4rem 2.65rem */
  border-radius: calc(var(--size8) * 1.5); /* 1.2rem */
  background: #4F187D;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  section.contact .inner .contact-box .contact-box-txt .btn-contact {
    width: 100%;
  }
}
section.contact .inner .contact-box .contact-box-txt .btn-contact .btn-dot::after {
  content: '';
  width: 1.0rem;
  height: 1.0rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #FFFFFF;
}
section.contact .inner .contact-box .contact-box-txt .btn-contact .btn-dot .btn-icn {
  color: #FFFFFF;
  text-shadow: 0 0 4px rgba(255, 74, 152, 0.50);
  font-size: calc(var(--size8) * 2.25); /* 1.8rem */
  font-weight: 700;
  line-height: 100%;
  column-gap: calc(var(--size8) * 1.5); /* 1.2rem */
}
@media screen and (max-width: 320px) {
  section.contact .inner .contact-box .contact-box-txt .btn-contact .btn-dot .btn-icn {
    font-size: var(--size14); /* 1.4rem */
  }
}
section.contact .inner .contact-box .contact-box-txt .btn-contact .btn-dot .btn-icn::before {
  content: '';
  width: calc(var(--size8) * 4.1625);  /* 3.33rem */
  height: calc(var(--size8) * 3.33375);/* 2.667rem */
  aspect-ratio: 4 / 3;
  background: url(/img/icn_contact_btn_mail.svg) no-repeat center / contain;
}
.contact-box-tel {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #FFFFFF;
  padding: calc(var(--size8) * 3.75) 0; /* 3.0rem */
  flex-direction: column;
  row-gap: calc(var(--size8) * 1); /* 0.8rem */
}
body.contact .contact-box-tel {
  background: none;
}
.contact-box-tel .free-dial {
  width: calc(var(--size8) * 48.25); /* 38rem */
  color: #4C2E3D;
  font-size: calc(var(--size8) * 2.25); /* 1.8rem */
  font-weight: 700;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .contact-box-tel .free-dial {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .contact-box-tel .free-dial {
    font-size: var(--size16);
  }
}
.contact-box-tel .tel-no {
  color: #4C2E3D;
  font-family: Lora;
  font-size: calc(var(--size8) * 5); /* 4rem */
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.16rem;
  column-gap: calc(var(--size8) * 1.5); /* 1.2rem */
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact-box-tel .tel-no {
    font-size: var(--size32);
  }
}
@media screen and (max-width: 320px) {
  .contact-box-tel .tel-no {
    font-size: var(--size24);
  }
}
.contact-box-tel .tel-no::before {
  content: '';
  width: calc(var(--size8) * 11); /* 8.8rem */
  height: calc(var(--size8) * 6.25); /* 5.0rem */
  background: url(/img/icn_header_freedial.svg) no-repeat center / contain;
}
@media screen and (max-width: 767px) {
  .contact-box-tel .tel-no::before {
    width: calc(var(--size8) * 5.5); /* 8.8rem */
    height: calc(var(--size8) * 3.125); /* 5.0rem */
  }
}
.contact-box-tel .tel-info {
  width: 100%;
  color: var(--common_color);
  text-align: center;
  font-size: calc(var(--size8) * 2); /* 1.6rem */
  font-weight: 500;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .contact-box-tel .tel-info {
    font-size: var(--size14);
  }
}
@media screen and (max-width: 320px) {
  .contact-box-tel .tel-info {
    font-size: var(--size12);
  }
}


/* ====================
60) .pankuzu
-------------------- */
.pankuzu .inner {
  position: relative;
  width: 100%;
  max-width: var(--size1280);
  height: auto;
  margin: 0 auto;
  padding: var(--size24) 0;
}
.pankuzu .inner .pankuzu-lst {
  font-size: var(--size14);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.056rem;
}
@media screen and (max-width: 767px) {
  .pankuzu .inner .pankuzu-lst {
    font-size: var(--size10);
  }
}
.pankuzu .inner .pankuzu-lst li {/* current */
  color: #222;
}
.pankuzu .inner .pankuzu-lst li::after {
  content: '';
  display: inline-block;
  width: var(--size8);
  height: var(--size12);
  margin: 0 var(--size12);
  background-image: url(/img/icn_pankuzu_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .pankuzu .inner .pankuzu-lst li::after {
    margin: 0 var(--size8);
      height: var(--size10);
  }
}
.pankuzu .inner .pankuzu-lst li:last-child::after {
  display: none;
}
.pankuzu .inner .pankuzu-lst li a {
  color: #B3B3B3;
  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;
}



/* ====================
70) btns-box
-------------------- */
body.page .btns-box .inner {
  gap: var(--size24);
  margin-top: var(--size120)!important;
  margin-bottom: var(--size120)!important;
}
body.page .btns-box .inner .btn img {
  width: calc(var(--size8) * 61);
  height: auto;
}
@media screen and (max-width: 767px) {
  body.page .btns-box .inner {
    flex-direction: column;
  }
}



/* ====================
80) btns-lst
-------------------- */
body.page .btns-lst {
  width: 100%;
  max-width: var(--size1000);
  margin-right: auto;
  margin-left: auto;
  gap: var(--size12);
  flex-flow: nowrap;
}
body.page .btns-lst .btn {
  width: auto;
  padding: var(--size22) var(--size48) var(--size22) var(--size36);
  justify-content: center;
  align-items: center;
  border-radius: var(--size42);
  border: 1px solid #4E197C;
  background-image: url(/img/bg_company_btn_arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - var(--size16)) center;
  background-size: var(--size22) var(--size22);
  white-space: nowrap;
}
body.page .btns-lst.w260 .btn {
  width: calc(var(--size8) * 32.5); /* 26.0rem */
}
@media screen and (max-width: 767px) {
  body.page .btns-lst.w260 .btn {
    width: auto;
  }
}
body.page .btns-lst .btn .txt {
  color: #4E197C;
  font-size: var(--size16);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.064rem;
}
@media screen and (max-width: 767px) {
  body.page .btns-lst {
    flex-direction: column;
  }
}


/* ====================
90) btn-type()
-------------------- */
.btn-typeA {
  display: inline-block;
  width: calc(var(--size8) * 32.5); /* 26.0rem */
  max-width: 100%;
  position: relative;
  padding: var(--size24) 0;
  border-radius: var(--size42);
  border-radius: 47px;
  background: linear-gradient(90deg, #6F00CF 5.09%, #28ACEE 96.79%);
  color: #FFFFFF !important;
  font-size: var(--size16);
  font-weight: 500;
  line-height: 100%; /* 1.6rem */
  letter-spacing: 0.064rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-typeA {
    width: 100%;
  }
}
.btn-typeA::after {
  display: block;
  content: "";
  width: var(--size22);
  height: var(--size22);
  background-image: url(/img/bg_locations-btn_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: var(--size24);
  transform: translateY(-50%);
}



.tbl-typeA {
  width: 100%;
  max-width: var(--size1000);
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .tbl-typeA {
    flex-direction: column;
  }
}
.tbl-typeA dt {
  width: 30%;
  padding-top: var(--size24);
  padding-bottom: var(--size24);
  border-top: 1px solid #845EA4;
  font-size: var(--size16);
  font-weight: 700;
  line-height: 170%; /* 2.72rem */
}
@media screen and (max-width: 767px) {
  .tbl-typeA dt {
    width: 100%;
  }
}
.tbl-typeA dt:last-of-type {
  border-bottom: 1px solid #845EA4;
}
@media screen and (max-width: 767px) {
  .tbl-typeA dt:last-of-type {
    border-bottom: none;
  }
}
.tbl-typeA dd {
  width: 70%;
  padding-top: var(--size24);
  padding-bottom: var(--size24);
  border-top: 1px solid #D8D8D8;
  font-size: var(--size16);
  font-weight: 500;
  line-height: 170%; /* 2.72rem */
}
@media screen and (max-width: 767px) {
  .tbl-typeA dd {
    width: 100%;
  }
}
.tbl-typeA dd:last-of-type {
  border-bottom: 1px solid #D8D8D8;
}
@media screen and (max-width: 767px) {
  .tbl-typeA dd:last-of-type {
    border-bottom: 1px solid #845EA4;
  }
}
.tbl-typeA dd a.outsite {
  color: #222;
  font-weight: 500;
  line-height: 170%; /* 2.72rem */
  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;
  display: inline-flex;
  align-items: center;
  column-gap: var(--size8);
}
.tbl-typeA dd a.outsite::after {
  content: '';
  display: block;
  width: var(--size24);
  height: var(--size24);
  background-image: url(/img/icn_outsite_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


/* ====================
99) form
-------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: var(--size10) var(--size12);
  font-size: var(--size16);
  font-weight: 400;
  line-height: 150%;
  color: var(--common_color);
  border-radius: calc(var(--size8) * 0.5);
  border: 0.1rem solid #D2D2D2;
  background: #EFEFEF;
}
select {
  width: auto;
  max-width: auto;
}
textarea {
  height: calc(var(--size8) * 24.25); /* 19.4rem */
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  outline: 0.2rem solid #4F187D;
  outline-offset: 0.2rem;
}
input[type="checkbox"] {
  width: var(--size20);
  height: var(--size20);
  accent-color: #D2D2D2;
  border: 0.1rem solid #D2D2D2;
  border-radius: calc(var(--size8) / 2);
  background: #EFEFEF;
  margin-right: var(--size8);
}
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 #4F187D;
}
input[type="radio"] {
  appearance: none;
  width: var(--size20);
  height: var(--size20);
  border: 0.1rem solid #D2D2D2;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  background: #EFEFEF;
  transition: box-shadow .2s, border-color .2s;
  margin-right: var(--size8);
}
input[type="checkbox"] {
  appearance: none;
  width: var(--size20);
  height: var(--size20);
  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 #4F187D;
}
input[type="radio"]::before {
  content: "";
  width: var(--size10);
  height: var(--size10);
  border-radius: 50%;
  transform: scale(0);
  background: #4F187D;
  transition: transform .15s ease;
}
input[type="checkbox"]::before {
  content: "";
  margin-top: calc(var(--size8) * 0.5 * -1);
  width: var(--size10);
  height: var(--size16);
  transform: scale(0) rotate(45deg);
  transition: transform .15s ease;
  border-right: calc(var(--size8) * 0.5) solid #4F187D;
  border-bottom: calc(var(--size8) * 0.5) solid #4F187D;
}
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 #4F187D;
}
input[type="submit"] {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: var(--size24) calc(var(--size8) * 11.25);
  border-radius: var(--size42);
  border-radius: 47px;
  background:
  url(/img/bg_locations-btn_arrow.svg) center right var(--size24) / var(--size32) var(--size32) no-repeat,
  linear-gradient(90deg, #6F00CF 5.09%, #28ACEE 96.79%);
  color: #FFFFFF;
  font-size: var(--size16);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.064rem;
  text-align: center;
  border: none;
  cursor: pointer;
}