/* ============================
Google Fonts
---------------------------- */
@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700;800;900&display=swap');

/* ============================
root
---------------------------- */
:root {
  --NotoSansJP: 'Noto Sans JP', sans-serif;
  --Lato: 'Lato', sans-serif;
  --Regular: 400;
  --Medium: 500;
  --SemiBold: 600;
  --Bold: 700;
  --ExtraBold: 800;
  --Black: 900;
  --radius: 3.2rem;
  --body-bgcol: #FFFFFF;
  --body-col: #222;
  --section-bgcol: #FFFFFF;
  --base-blue: #025EC0;
}

/* ============================
*
---------------------------- */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* ============================
dn
---------------------------- */
.dn {
  display: none;
}

/* ============================
pc sp
---------------------------- */
.pc {
  display: block;
}
.pc_i {
  display: inline;
}
.pc_ib {
  display: inline-block;
}
.sp {
  display: none;
}
.sp_i {
  display: none;
}
.sp_ib {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .pc_i {
    display: none;
  }
  .pc_ib {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp_i {
    display: inline;
  }
  .sp_ib {
    display: inline-block;
  }
}

/* ============================
html body
---------------------------- */
html {
  font-size: 10px;
  scroll-padding-top: 7.7rem;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 7.7rem 0 0 0;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: var(--NotoSansJP);
  font-weight: var(--Regular);
  color: var(--body-col);
  background-color: var(--body-bgcol);
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 6.0rem;
  }
  body {
    padding: 6.0rem 0 0 0;
  }
}

/* ============================
a
---------------------------- */
a {
  text-decoration: none;
}
a.gmap-btn {
  display: inline-block;
  background-color: #FFFFFF;
  color: var(--base-blue);
  font-size: 1.2rem;
  font-weight: var(--Medium);
  line-height: 100%;
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--base-blue);
  white-space: nowrap;
  margin: 0 0.8rem;
  transition: all 0.3s ease;
}
a.gmap-btn:hover {
  background-color: var(--base-blue);
  color: #FFFFFF;
}

/* ============================
h
---------------------------- */
h1 {}
h2 {}
h3 {}
h4 {}
h5 {}
h6 {}

h2.ttl {
  margin-bottom: 4.0rem;
}
h2.ttl .jp {
  text-align: center;
  font-size: 3.6rem;
  /* font-size: 2.5vw; 1440px基準*/
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
  margin-bottom: 2.0rem;
}
h2.ttl .jp br {
  display: none;
}
h2.ttl .en {
  text-align: center;
  font-family: var(--Lato);
  font-size: 2rem;
  /* font-size: 1.3888888888888888vw; 1440px基準*/
  font-style: normal;
  font-weight: 500;
  color: var(--base-blue);
  line-height: 100%;
}

h3.ttl {
  font-size: 2.4rem;
  font-weight: var(--SemiBold);
  line-height: 100%;
  margin-bottom: 2.4rem;
}

@media screen and (max-width: 767px) {
  h2.ttl .jp {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
  }
  h2.ttl .en {
    font-size: 1.8rem;
  }
  h3.ttl {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 389px) {
  h2.ttl .jp br {
    display: inline;
  }
}

/* ============================
address
---------------------------- */
address {
  font-style: normal;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ============================
cover
---------------------------- */
#cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 53, 109, 0.5);
  overflow: hidden;
  z-index: 9000;
  display: none;
  transition: all 0.3s ease;
}
#cover.active {
  display: block;
}
@media screen and (min-width: 961px) {
  #cover.active {
    display: none;
  }
}

/* ============================
loading-screen
---------------------------- */
#loading-screen {
	position: fixed;
	z-index: 10000;
	display: flex;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	padding: 0;
	margin: 0;
	pointer-events: none;
}
#loading-screen > .obi {
	width: 20%;
	background: #dae24a;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}
#loading-screen > .obi:nth-child(n+6) {
	display: none;
}

/* ============================
margin-top
---------------------------- */
.mt0 {
  margin-top: 0;
}
.mt8 {
  margin-top: 0.8rem;
}
.mt16 {
  margin-top: 1.6rem;
}
.mt24 {
  margin-top: 2.4rem;
}
.mt32 {
  margin-top: 3.2rem;
}
.mt40 {
  margin-top: 4.0rem;
}
.mt48 {
  margin-top: 4.8rem;
}
.mt56 {
  margin-top: 5.6rem;
}
.mt64 {
  margin-top: 6.4rem;
}
.mt72 {
  margin-top: 7.2rem;
}
.mt80 {
  margin-top: 8.0rem;
}

/* ============================
margin-bottom
---------------------------- */
.mb0 {
  margin-bottom: 0;
}
.mb8 {
  margin-bottom: 0.8rem;
}
.mb16 {
  margin-bottom: 1.6rem;
}
.mb24 {
  margin-bottom: 2.4rem;
}
.mb32 {
  margin-bottom: 3.2rem;
}
.mb40 {
  margin-bottom: 4.0rem;
}
.mb48 {
  margin-bottom: 4.8rem;
}
.mb56 {
  margin-bottom: 5.6rem;
}
.mb64 {
  margin-bottom: 6.4rem;
}
.mb72 {
  margin-bottom: 7.2rem;
}
.mb80 {
  margin-bottom: 8.0rem;
}

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

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

/* ============================
section
---------------------------- */
section {
  margin: 0;
  padding: 4.0rem 0;
  background-color: var(--section-bgcol);
}
section.outer {
  width: 100%;
  overflow: visible;
}

/* ============================
article
---------------------------- */
article {}
article.inner {
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
  overflow: visible;
}

/* ============================
header
---------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #DBDBDB;
  background-color: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(5px);
  z-index: 10000;
}
header .inner {
  width: 100%;
  max-width: 144rem;
  height: 7.7rem;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 4.0rem;
}
header nav ul {
  gap: 2.4rem;
}
header nav ul li.l-item {
  padding: 1.6rem 0;
  text-align: center;
}
header nav ul li.l-item a {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--body-col);
  text-decoration: none;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: var(--Medium);
  transition: all 0.3s ease;
}
header nav ul li.l-item a:hover {
  color: var(--base-blue);
}
header nav ul li.l-item a::after {
  content: '';
  display: block;
  width: 0;
  height: 0.2rem;
  background-color: var(--base-blue);
  margin-top: 0.4rem;
  transition: all 0.3s ease;
}
header nav ul li.l-item a:hover::after {
  width: 100%;
}
header nav ul li.i-item {
  text-align: center;
  color: var(--base-blue);
}
header nav ul li.i-item .tel a {
  font-size: 2.4rem;
  font-family: var(--Lato);
  font-weight: var(--SemiBold);
  letter-spacing: -0.048rem;
  gap: 0.8rem;
  color: var(--base-blue);
}
header nav ul li.i-item .tel a::before {
  content: '';
  display: block;
  width:3.2rem;
  height: 3.2rem;
  background-image: url(/img/ico_tel_pc.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
header nav span.menu-ico {
  display: none;
}

header nav .reception {
}
header nav .reception .time {
  font-family: var(--Lato);
  font-weight: var(--Medium);
}

@media screen and (max-width: 959px) {
  header nav ul {
    display: block !important;
    position: fixed;
    top: 7.7rem;
    right: -30rem;
    width: 30rem;
    padding: 2.0rem !important;
    background-color: #FFFFFF;
/*
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(5px);
*/
    transition: all 0.3s ease;
  }
  header nav.active ul {
    right: 0;
    border-bottom-left-radius: 0.8rem;
  }
  header nav.active ul li.l-item a {
    color: var(--base-blue);
  }
  header nav ul li.i-item {
    border-radius: 4px;
    background-color: var(--base-blue);
    color: #FFFFFF;
    padding: 2.0rem 0;
    margin-top: 1.6rem;
  }
  header nav ul li.i-item .ttl {
    display: block;
    font-size: 1.6rem;
    font-weight: var(--SemiBold);
  }
  header nav ul li.i-item .tel a {
    justify-content: center;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    color: #FFFFFF;
  }
  header nav ul li.i-item .tel a::before {
    background-image: url(/img/ico_tel_sp.svg);
  }
  header nav ul li.i-item .reception {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--Medium);
  }
  header nav ul li.i-item .reception .time {
    font-size: 1.4rem;
  }
  header nav span.menu-ico {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
  }
  header nav span.menu-ico .bar {
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: var(--base-blue);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
  }
  header nav span.menu-ico .bar:last-child {
    margin-bottom: 0;
  }
  header nav.active span.menu-ico .bar:nth-child(1) {
    transform: rotate(30deg) translateY(0.7rem) translateX(0.6rem);
  }
  header nav.active span.menu-ico .bar:nth-child(2) {
    opacity: 0;
  }
  header nav.active span.menu-ico .bar:nth-child(3) {
    transform: rotate(-30deg) translateY(-0.7rem) translateX(0.6rem);
  }
}

@media screen and (max-width: 767px) {
  header {
    background-color: #FFFFFF;
    backdrop-filter: blur(0);
  }
  header .inner {
    height: 6.0rem;
    padding: 0 2.0rem;
  }
  header .inner .logo img {
    height: 2.0rem;
  }
  header nav ul {
    top: 6.0rem;
  }
  header nav ul li.l-item {
    padding: 1.2rem 0;
  }
}

/* ============================
footer
---------------------------- */
footer {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #007BD3 0%, #0248B6 100%);
  color: #FFFFFF;
  text-align: center;
  padding-right: 4.0rem;
  padding-left: 4.0rem;
}
footer section {
  background-color: transparent;
  width: 100%;
  height: auto;
  max-width: 112rem;
  margin: 0 auto;
  padding: 16rem 0 0 0;
}

footer #access .map iframe {
  width: 100%;
  height: 34.6rem;
  border: none;
  padding-top: 4.0rem;
}
footer #access .atent {
  font-size: 1.4rem;
  font-weight: var(--Medium);
}

footer #sitemap .inner-left {}
footer #sitemap .inner-left .f-logo {
  margin-bottom: 2.4rem;
}
footer #sitemap .inner-left address {
  margin-bottom: 6.4rem;
}
footer #sitemap .inner-left .f-nav {
  gap: 4.0rem;
}
footer #sitemap .inner-left .f-nav a {
  display: inline-block;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: var(--Medium);
  line-height: 100%;
  white-space: nowrap;
}
footer #sitemap .inner-left .f-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 0.2rem;
  background-color: #FFFFFF;
  margin-top: 0.8rem;
  transition: all 0.3s ease;
}
footer #sitemap .inner-left .f-nav a:hover::after {
  width: 100%;
}
footer #sitemap .inner-right {
  background-color: #FFFFFF;
  color: var(--base-blue);
  padding: 5.6rem 5.0rem;
  width: 56rem;
}
footer #sitemap .inner-right h3.f-ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: var(--SemiBold);
  line-height: 145%;
}
footer #sitemap .inner-right .tel a {
  color: var(--base-blue);
  font-family: var(--Lato);
  font-size: 4.4rem;
  font-weight: var(--SemiBold);
  gap: 0.8rem;
  margin-top: 3.2rem;
  margin-bottom: 2.0rem;
}
footer #sitemap .inner-right .tel a::before {
  content: '';
  display: block;
  width: 4.0rem;
  height: 4.0rem;
  background-image: url(/img/ico_tel_pc.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
footer #sitemap .inner-right .reception {
  font-size: 1.6rem;
  font-weight: var(--Medium);
}
footer #sitemap .inner-right .reception .time {
  font-family: var(--Lato);
  font-size: 1.8rem;
  font-weight: var(--Medium);
}
footer #copyright {
  padding: 8rem 0 2.4rem 0;
}
footer #copyright small {
  font-family: var(--Lato);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: var(--Medium);
  line-height: 100%;
}

footer h2.ttl .en {
  color: #FFFFFF;
}

@media screen and (max-width: 1079px) {
  footer #sitemap .inner-left,
  footer #sitemap .inner-right {
    width: 48%;
  }
  footer #sitemap .inner-right {
    padding: 4vw 3.5vw;
  }
}

@media screen and (max-width: 929px) {
  footer {
    padding-right: 2.0rem;
    padding-left: 2.0rem;
  }
  footer #sitemap {
    padding: 2.8rem 0 0 0;
  }
  footer #sitemap .inner-left,
  footer #sitemap .inner-right {
    width: 100%;
  }
  footer #sitemap .inner-left{
    padding: 2.8rem 0 0 0;
    order: 2;
  }
  footer #sitemap .inner-right {
    padding: 10vw 3.5vw;
    order: 1;
  }
  footer #sitemap .inner-right .tel a {
    margin-top: 1.6rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width:767px) {
  footer section {
    padding: 12rem 0 0 0;
  }
  footer #sitemap .inner-left .f-logo img {
    height: 2.0rem;
  }
  footer #access address {
    text-align: left;
  }
  footer #access .atent {
    text-align: left;
  }
  footer #sitemap .inner-left .f-nav {
    gap: unset;
  }
  footer #sitemap .inner-right .tel a {
    font-size: 3.4rem;
  }
}

@media screen and (max-width:320px) {
  footer #sitemap .inner-right .tel a {
    font-size: 2.8rem;
  }
  footer #sitemap .inner-right .reception {
    font-size: 1.2rem;
  }
  footer #sitemap .inner-left .f-nav {
    gap: 1.2rem 0;
    flex-wrap: wrap;
  }
  footer #sitemap .inner-left .f-nav li {
    width: 50%;
  }
}
