@charset "UTF-8";
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --en-font: "Bentham", serif;
  --bona: "Bona Nova SC", serif;
  --base-color: #444;
  --white: #fff;
  --white-50: rgba(255, 255, 255, 0.50);
  --white-90: rgba(255, 255, 255, 0.90);
  --white-92: rgba(255, 255, 255, 0.92);
  --white-96: rgba(255, 255, 255, 0.96);
  --dark-blue: #094086;
  --black-3: rgba(0, 0, 0, 0.03);
  --black-60: rgba(0, 0, 0, 0.6);
  --grey: #F4F4F4;
  --grey-02: #FBFBFB;
  --light-blue01: #A8C9EA;
  --lingt-blue02: #DBE7F4;
  --blue: #578CBD;
  --blue-02:#E2ECF6;
  --yellow: #FEFBBF;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media all and (min-width: 897px) and (max-width: 1399px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media all and (max-width: 384px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body, table, input, textarea, select, option {
  font-family: var(--base-font);
}

article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

chrome_annotation {
  border: none !important;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

a {
  color: var(--base-color);
  text-decoration: none;
  transition: 0.3s;
}
a:link {
  color: var(--base-color);
}
a:visited {
  color: var(--base-color);
}
a:active {
  color: var(--base-color);
}
a:hover {
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  a:hover {
    opacity: 1 !important;
  }
  a:hover img {
    opacity: 1 !important;
  }
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  color: var(--base-color);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: var(--white);
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
}
@media all and (min-width: 897px) {
  body.fixed {
    overflow-y: scroll;
  }
}
@media all and (max-width: 896px) {
  body {
    font-size: 1.4rem;
    height: 100%;
    overflow: auto;
  }
}

#container {
  overflow: hidden;
  text-align: left;
  position: relative;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

html .noScroll {
  touch-action: none;
  overflow: clip;
}
html .noScroll body {
  -webkit-overflow-scrolling: auto;
}

@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}
@media all and (max-width: 896px) {
  .pc {
    display: none !important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
#gHeader .hBox {
  margin: 4rem 4rem 0;
  padding: 1.9rem 3rem;
  border-radius: 0.8rem;
  align-items: center;
  background: linear-gradient(103deg, var(--white-50) 0%, var(--white-90) 100%);
  box-shadow: 0 0 16px 8px var(--black-3);
  position: relative;
  z-index: 1;
}
#gHeader .hBox::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  content: "";
  z-index: -1;
  backdrop-filter: blur(15px);
  pointer-events: none;
}
#gHeader .hBox .logo {
  position: relative;
  z-index: 15;
  width: 56rem;
  flex-direction: row-reverse;
  align-items: center;
}
#gHeader .hBox .logo a {
  gap: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#gHeader .hBox .logo a img {
  margin-top: 0.1rem;
  width: 4.2rem;
}
#gHeader .hBox .logo a > span {
  flex: 1;
  font-size: 2.6rem;
  font-weight: 350;
  letter-spacing: 0.35rem;
}
#gHeader .hBox .logo a .en {
  margin: 0.3rem 0 0 0.4rem;
  display: block;
  color: var(--dark-blue);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.252rem;
}
#gHeader .hBox .logo p {
  padding: 0.8rem 0 0.8rem 3rem;
  margin-left: 2.7rem;
  flex: 1;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.084rem;
  border-left: 1px solid var(--dark-blue);
}
#gHeader .hBox .rBox {
  margin-top: 0.6rem;
  justify-content: right;
  flex: 1;
  align-items: center;
  gap: 5.4rem;
}
#gHeader .hBox .rBox .linkUl {
  gap: 5.1rem;
  flex: 1;
  justify-content: right;
  align-items: center;
}
#gHeader .hBox .rBox .linkUl a {
  padding: 0 6.9rem 0.5rem 2.5rem;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.048rem;
  color: var(--dark-blue);
  display: block;
  line-height: 1;
  background: url(../img/common/icon01.webp) no-repeat left bottom 0.6rem/1.6rem, url(../img/common/icon03.webp) no-repeat right bottom/5.5rem;
}
#gHeader .hBox .rBox .linkUl a span {
  margin-bottom: 0.7rem;
  display: block;
  color: var(--base-color);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
}
#gHeader .hBox .rBox .linkUl a .sml {
  margin: 0 0 0 0.3rem;
  font-size: 2rem;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: var(--dark-blue);
  line-height: 1;
  vertical-align: 0.2rem;
}
@media all and (min-width: 1025px) {
  #gHeader .hBox .rBox .linkUl a:hover {
    opacity: 0.65;
  }
}
#gHeader .hBox .rBox .linkUl li.tel a {
  font-size: 2.8rem;
}
#gHeader .hBox .rBox .linkUl li.tel a span {
  margin-bottom: 0.4rem;
}
#gHeader .hBox .rBox .linkUl li:last-child a {
  padding: 0 6.5rem 0.5rem 3.5rem;
  background-image: url(../img/common/icon02.webp), url(../img/common/icon03.webp);
  background-size: 2.4rem auto, 5.5rem auto;
  background-position: left bottom 0.5rem, right bottom;
}
#gHeader .hBox .rBox .menu {
  width: 5rem;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 10;
}
#gHeader .hBox .rBox .menu .close {
  display: none;
}
#gHeader .hBox .rBox .menu.on {
  width: 5rem;
}
#gHeader .hBox .rBox .menu.on .open {
  display: none;
}
#gHeader .hBox .rBox .menu.on .close {
  display: block;
}
@media all and (min-width: 1025px) {
  #gHeader .hBox .rBox .menu:hover {
    opacity: 0.65;
  }
}
#gHeader .menuBox {
  padding: 4rem;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}
#gHeader .menuBox .outBox {
  padding: 22.4rem 2rem 21.4rem 5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 0.8rem;
  background: linear-gradient(103deg, var(--white-92) 0%, var(--white-96) 100%);
  box-shadow: 0 0 16px 8px var(--black-3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
#gHeader .menuBox .bg {
  gap: 9rem;
  flex-direction: row-reverse;
}
#gHeader .menuBox .bg .comInnerBox {
  width: 50rem;
}
#gHeader .menuBox .bg .comInnerBox .btnUl a {
  background-color: transparent;
  border: 1px solid var(--dark-blue);
}
#gHeader .menuBox .bg .naviBox {
  width: 50rem;
  gap: 0;
}
@media all and (min-width: 1025px) {
  #gHeader .menuBox .bg .naviBox a:hover {
    opacity: 0.65;
  }
}
#gHeader .menuBox .bg .naviList {
  width: 41.7%;
}
#gHeader .menuBox .bg .naviList:nth-child(2) {
  flex: 1;
}
#gHeader .menuBox .bg .naviList > li {
  margin-bottom: 3.5rem;
}
#gHeader .menuBox .bg .naviList > li:last-child {
  margin-bottom: 0;
}
#gHeader .menuBox .bg .naviList > li > a {
  font-size: 2.2rem;
  letter-spacing: 0.088rem;
}
#gHeader .menuBox .bg .naviList .subList {
  margin: 4rem 0 0 0.8rem;
  display: flex;
  flex-wrap: wrap;
}
#gHeader .menuBox .bg .naviList .subList li {
  margin: 0 0 3.3rem 0;
  padding-right: 0.5rem;
  width: 45%;
}
#gHeader .menuBox .bg .naviList .subList li:nth-child(2n) {
  width: 55%;
}
#gHeader .menuBox .bg .naviList .subList a {
  padding-left: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.064rem;
}
#gHeader .menuBox .bg .naviList .subList a::after {
  position: absolute;
  top: 1.2rem;
  left: 0;
  content: "";
  background-color: var(--dark-blue);
  z-index: 1;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}
@media all and (max-width: 896px) {
  #gHeader .hBox {
    margin: 0;
    padding: 0.6rem 0.8rem;
    border-radius: 0;
  }
  #gHeader .hBox::after {
    border-radius: 0;
  }
  #gHeader .hBox .logo {
    width: auto;
    display: block;
  }
  #gHeader .hBox .logo a {
    padding-left: 0.3rem;
    gap: 0.8rem;
  }
  #gHeader .hBox .logo a img {
    width: 2.3rem;
  }
  #gHeader .hBox .logo a > span {
    font-size: 1.4rem;
    letter-spacing: 0.12rem;
  }
  #gHeader .hBox .logo a .en {
    margin: 1px 0 0 0;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
  #gHeader .hBox .logo p {
    padding: 0;
    margin-left: 0;
    font-size: 1rem;
    letter-spacing: 0.06rem;
    border-left: 0;
  }
  #gHeader .hBox .rBox {
    margin: 0.6rem 0.7rem 0 0;
  }
  #gHeader .hBox .rBox .menu {
    width: 4rem;
  }
  #gHeader .hBox .rBox .menu.on {
    width: 4rem;
  }
  #gHeader .menuBox {
    padding: 0;
  }
  #gHeader .menuBox::after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5.9rem;
    content: "";
    z-index: 1;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  #gHeader .menuBox .outBox {
    padding: 9.5rem 2rem 4rem 2.1rem;
    display: block;
    border-radius: 0;
  }
  #gHeader .menuBox .bg {
    display: block;
  }
  #gHeader .menuBox .bg .comInnerBox {
    width: auto;
  }
  #gHeader .menuBox .bg .naviBox {
    margin-bottom: 4.7rem;
    width: auto;
    display: block;
  }
  #gHeader .menuBox .bg .naviList {
    width: auto !important;
  }
  #gHeader .menuBox .bg .naviList > li {
    margin-bottom: 2.3rem;
  }
  #gHeader .menuBox .bg .naviList > li > a {
    font-size: 1.8rem;
    letter-spacing: 0.072rem;
    display: block;
  }
  #gHeader .menuBox .bg .naviList .subList {
    margin: 1.9rem 0 -0.3rem 0.2rem;
  }
  #gHeader .menuBox .bg .naviList .subList li {
    width: 29.1% !important;
    margin: 0 0 1.3rem 0;
  }
  #gHeader .menuBox .bg .naviList .subList li:nth-child(3n-1) {
    width: 35.45% !important;
  }
  #gHeader .menuBox .bg .naviList .subList li:nth-child(3n) {
    width: 35.45% !important;
  }
  #gHeader .menuBox .bg .naviList .subList a {
    padding-left: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.056rem;
    display: block;
  }
  #gHeader .menuBox .bg .naviList .subList a::after {
    top: 0.9rem;
    left: 1px;
  }
}

/*------------------------------------------------------------
    フッター
------------------------------------------------------------*/
#gFooter {
  padding: 13.5rem 0 5.7rem;
  position: relative;
  z-index: 2;
}
#gFooter .content {
  max-width: 114rem;
}
#gFooter::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75rem;
  background: linear-gradient(180deg, var(--blue-02) 0%, var(--white) 98.91%);
  content: "";
  z-index: -1;
  pointer-events: none;
}
#gFooter::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 13.3rem;
  content: "";
  z-index: 1;
  pointer-events: none;
  background: url(../img/common/f_bg.webp) no-repeat center bottom/100% 100%;
}
#gFooter .logo {
  margin: 0 auto 6.5rem;
  width: 17.5rem;
}
#gFooter .logo a {
  display: block;
}
#gFooter .cominfoBox {
  margin-bottom: 11.6rem;
}
#gFooter .comInnerBox .tableBox {
  background-color: var(--white);
}
#gFooter .naviBox {
  margin-bottom: 5.5rem;
  gap: 8.7rem;
}
@media all and (min-width: 1025px) {
  #gFooter .naviBox a:hover {
    opacity: 0.65;
  }
}
#gFooter .naviBox .lBox {
  gap: 5.8rem;
}
#gFooter .naviBox .naviList > li {
  margin-bottom: 0.8rem;
}
#gFooter .naviBox .naviList > li:last-child {
  margin-bottom: 0;
}
#gFooter .naviBox .naviList > li > a {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
}
#gFooter .naviBox .subUl {
  margin-top: 1.9rem;
  width: 41.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#gFooter .naviBox .subUl li {
  width: 32%;
  padding-right: 0.5rem;
  margin: 0 0 0.6rem 0;
}
#gFooter .naviBox .subUl li:nth-child(3n-1) {
  width: 34.7%;
}
#gFooter .naviBox .subUl li:nth-child(3n) {
  width: 33.3%;
}
#gFooter .naviBox .subUl a {
  padding-left: 0.6rem;
  position: relative;
  font-size: 1.4rem;
  display: inline-block;
  color: var(--dark-blue);
  letter-spacing: 0.14rem;
}
#gFooter .naviBox .subUl a::after {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 0.3rem;
  height: 1px;
  content: "";
  background-color: var(--dark-blue);
  z-index: 1;
}
#gFooter .subText {
  text-align: right;
  font-size: 1.2rem;
  letter-spacing: 0.216rem;
}
@media all and (max-width: 896px) {
  #gFooter {
    padding: 6rem 0 9.2rem;
  }
  #gFooter::after {
    height: 50rem;
  }
  #gFooter::before {
    height: 4rem;
  }
  #gFooter .logo {
    margin-bottom: 2rem;
    width: 8.5rem;
  }
  #gFooter .cominfoBox {
    margin-bottom: 6.8rem;
  }
  #gFooter .comInnerBox .tableBox {
    background-color: var(--white);
  }
  #gFooter .naviBox {
    margin-bottom: 4.5rem;
    gap: 3rem;
  }
  #gFooter .naviBox .lBox {
    display: block;
  }
  #gFooter .naviBox .naviList {
    flex: 1;
  }
  #gFooter .naviBox .naviList:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  #gFooter .naviBox .naviList > li {
    margin-bottom: 1.25rem;
    max-width: 22rem;
  }
  #gFooter .naviBox .naviList > li > a {
    letter-spacing: 0.056rem;
  }
  #gFooter .naviBox .subUl {
    margin: 1.3rem 0 0 0;
    width: auto;
  }
  #gFooter .naviBox .subUl li {
    margin: 0 0 1.3rem 0;
    width: 50% !important;
  }
  #gFooter .naviBox .subUl li:nth-child(2n) {
    padding-right: 0;
  }
  #gFooter .naviBox .subUl li a {
    letter-spacing: 0.056rem;
  }
  #gFooter .subText {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.18rem;
  }
}/*# sourceMappingURL=style.css.map */