@charset "UTF-8";
html {
  color: #414141;
  color:#333;
  font-size: 62.5%;
  font-weight: 200;
  line-height: 1;
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight:400;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizespeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

/*input[type=checkbox],
input[type=radio] {
  display: none;
}*/

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.section__title {
  font-size: 3.6rem;
  font-weight: 200;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section__title {
    font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  }
}

.section__title::after {
  content: "";
  display: block;
  background-color: #145BA1;
  height: 0.1rem;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
}

.header {
  height: 10.5rem;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .header {
    height: 7.323rem;
  }
}
@media screen and (max-width: 750px) {
  .header {
    height: 6.7rem;
  }
}

.header.is-scrolled {
  background-color: rgba(226, 239, 252, 0.8);
}

.header__inner {
  height: inherit;
  padding: 0 clamp(3rem, 3.0208vw, 5.8rem);
}
@media screen and (max-width: 750px) {
  .header__inner {
    padding: 0;
  }
}

.header__contents {
  display: flex;
  height: inherit;
}

.header__logo-img {
  aspect-ratio: 367/105;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: clamp(25.6rem, 19.1145vw, 36.7rem);
}
@media screen and (max-width: 750px) {
  .header__logo-img {
    aspect-ratio: 204/67;
    width: 20.4rem;
  }
}

.header__wrap {
  display: flex;
  height: inherit;
  margin-left: auto;
}

.header__nav {
  display: flex;
  height: inherit;
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__nav-item + .header__nav-item {
  margin-left: clamp(3.6rem, 4.1666vw, 8rem);
}

.header__nav-link {
  color: #fff;
  display: flex;
  align-items: flex-end;
  font-size: 1.6rem;
  height: inherit;
}

.header.is-scrolled .header__nav-link {
  color: #414141;
}

.header__contact {
  height: inherit;
  margin-left: clamp(7.2rem, 8.3333vw, 16rem);
  width: 12.8rem;
}

.header__contact-link {
  background-color: #145BA1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: inherit;
  width: 100%;
}

.header__contact-text {
  color: #fff;
}

.header__contact-text + .header__contact-text {
  margin-top: 1.6rem;
}

.header__contact-text--ja {
  font-size: 1.8rem;
}

.header__contact-text--en {
  font-size: 1.6rem;
}

.header__map {
  height: inherit;
  margin-left: 0.3rem;
  width: 5.7rem;
}

.header__map-link {
  background-color: #145BA1;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: inherit;
}

.header__map-icon {
  aspect-ratio: 21/28;
  height: auto;
  margin: 2.8rem 0 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 2.1rem;
}

.header__map-text {
  background-color: #707070;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  margin-top: auto;
  padding: 0.6rem 0 1rem;
  text-align: center;
  width: 100%;
}

/*  ハンバーガーメニュー  */
.header__hamburger {
  all: unset;
  background-color: #145BA1;
  cursor: pointer;
  height: 7.323rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 7.323rem;
  z-index: 7000;
}
@media screen and (max-width: 750px) {
  .header__hamburger {
    height: 6.7rem;
    width: 6.7rem;
  }
}

.header__hamburger span {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 0.3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  width: 3.3rem;
}

.header__hamburger span:nth-child(1) {
  top: 30%;
  transition: 0.3s transform;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  transition: 0.3s opacity;
}

.header__hamburger span:nth-child(3) {
  top: 70%;
  transition: 0.3s transform;
}

.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  max-width: 50rem;
  overflow-y: auto;
  padding: 10rem 0 8.6rem;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  width: 100%;
  z-index: 5000;
}

.header__drawer.is-active {
  transform: translateX(0);
}

.header-drawer__logo-img {
  aspect-ratio: 375/67;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.header-drawer__nav {
  margin-top: 1.9rem;
  max-width: 37.5rem;
  padding: 0 1rem;
  width: 100%;
}

.header-drawer__list {
  width: 100%;
}

.header-drawer__item {
  border-bottom: 0.1rem solid #145BA1;
}

.header-drawer__link {
  color: #414141;
  display: block;
  font-size: 1.6rem;
  padding: 1.9rem 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.header-drawer__link--text-transform {
  text-transform: uppercase;
}

.footer {
  margin-top: 18.4rem;
}

.footer__top {
  background-color: #145BA1;
}

.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .footer__nav-list {
    display: block;
    padding: 2.8rem 0;
    text-align: center;
  }
}

.footer__nav-link {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  padding: 2.4rem clamp(1.5rem, 2.0833vw, 4rem);
}
@media screen and (max-width: 750px) {
  .footer__nav-link {
    padding: 1rem 0;
  }
}

.footer__middle {
  background-color: #E2EFFC;
  padding: 4.2rem 0;
}
@media screen and (max-width: 750px) {
  .footer__middle {
    padding: 2.3rem 0;
  }
}

.footer__logo {
  aspect-ratio: 1825/365;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 47.5rem;
}
@media screen and (max-width: 750px) {
  .footer__logo {
    width: 31.1rem;
  }
}

.footer__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.6rem;
}
@media screen and (max-width: 750px) {
  .footer__wrap {
    margin-top: 1.3rem;
  }
}

.footer__text {
  color: #145BA1;
  font-size: 1.6rem;
}

.footer__text + .footer__text {
  margin-left: 1.6rem;
}

.footer__bottom {
  padding: 1.8rem 0 3.5rem;
}
@media screen and (max-width: 750px) {
  .footer__bottom {
    padding: 1.3rem 0 1.7rem;
  }
}

.footer__copyright {
  color: #145BA1;
  font-size: 1.8rem;
  text-align: center;
}

.store {
  margin-top: 13rem;
}
@media screen and (max-width: 750px) {
  .store {
    margin-top: 6.5rem;
  }
}

.store__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 125rem;
}

.store__images {
  display: flex;
  margin-top: 8.7rem;
}
@media screen and (max-width: 750px) {
  .store__images {
    display: block;
    margin-top: 6.7rem;
  }
}

.store__img {
  aspect-ratio: 625/417;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 62.5rem;
}
@media screen and (max-width: 750px) {
  .store__img {
    aspect-ratio: 320/213;
    margin: 0 auto;
    width: 82%;
  }
}

.store__wrap {
  background-color: #F5F5F5;
  display: flex;
  margin-top: 4.5rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 800px) {
  .store__wrap {
    display: block;
  }
}

.store__name {
  font-size: 3rem;
  padding-left: 2rem;
  position: relative;
}

.store__name::before {
  background-color: #145BA1;
  border: 0.1rem solid #fff;
  content: "";
  display: inline-block;
  height: 4.4rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.7rem;
}

.store__list {
  margin-top: 2rem;
}

.store__item {
  display: flex;
}

.store__item + .store__item {
  margin-top: 0.8rem;
}

@media screen and (max-width: 750px) {
  .store__item:first-of-type {
    display: block;
  }
}

.store__term {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
}

.store__description {
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  margin-left: 1.6rem;
}

@media screen and (max-width: 750px) {
  .store__item:first-of-type .store__description {
    margin-top: 0.8rem;
    margin-left: 0;
  }
}

.store__map {
  border: 1px solid #707070;
  margin-left: auto;
  width: 47%;
}
@media screen and (max-width: 800px) {
  .store__map {
    margin-top: 1.3rem;
    width: 100%;
  }
}

.store__map iframe {
  aspect-ratio: 16/9;
  display: block;
  height: auto;
  width: 100%;
  pointer-events: auto;
}

.skip-link {
  background-color: #414141;
  color: #fff;
  font-size: 1.6rem;
  padding: 1.6rem 3.2rem;
  position: absolute;
  top: -6rem;
  left: 0;
  text-decoration: none;
  transition: top 0.3s ease;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

.fv {
  background-image: url(../images/fv-img_pc.webp);
  background-position: center;
  background-size: cover;
  height: clamp(43rem, 49.7916vw, 95.6rem);
  position: relative;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .fv {
    background-image: url(../images/fv-img_sp.webp);
    height: 43rem;
  }
}

.fv__text {
  color: #fff;
  font-size: clamp(2.5rem, 2.9166vw, 5.6rem);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .fv__text {
    font-size: clamp(2rem, 3.3333vw, 2.5rem);
  }
}

.about {
  margin-top: 13rem;
}
@media screen and (max-width: 750px) {
  .about {
    margin-top: 6.5rem;
  }
}

.about__inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 131rem;
}
@media screen and (max-width: 750px) {
  .about__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.about__media {
  height: 50rem;
  margin-top: 8.7rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .about__media {
    height: auto;
    margin-top: 23rem;
  }
}

.about__media-body {
  background-color: rgba(226, 239, 252, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36.4rem;
  outline: 0.1rem solid #fff;
  outline-offset: -1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 65rem;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .about__media-body {
    height: auto;
    margin: 0 auto;
    padding: 6rem 3.3rem 4.3rem;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
  }
}

.about__media-text {
  font-size: 1.6rem;
  line-height: 2.0625;
  text-align: justify;
  width: 54rem;
}
@media screen and (max-width: 750px) {
  .about__media-text {
    width: 100%;
	color:#333;
  }
}

.about__media-img {
  aspect-ratio: 650/433;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65rem;
}
@media screen and (max-width: 750px) {
  .about__media-img {
    aspect-ratio: 320/213;
    top: -17.5rem;
    right: 50%;
    transform: translateX(50%);
    width: 32rem;
  }
}

.concept {
  margin-top: 13rem;
}
@media screen and (max-width: 750px) {
  .concept {
    margin-top: 6.5rem;
  }
}

.concept__inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 131rem;
}
@media screen and (max-width: 750px) {
  .concept__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.concept__media {
  height: 54.4rem;
  margin-top: 8.7rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .concept__media {
    height: auto;
    margin-top: 23rem;
  }
}

.concept__media-body {
  background-color: rgba(226, 239, 252, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 54.4rem;
  outline: 0.1rem solid #fff;
  outline-offset: -1.5rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 65rem;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .concept__media-body {
    height: auto;
    margin: 0 auto;
    padding: 6rem 3.3rem 4.3rem;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
  }
}

.concept__media-text {
  font-size: 1.6rem;
  line-height: 2.0625;
  text-align: justify;
  width: 49.5rem;
}
@media screen and (max-width: 750px) {
  .concept__media-text {
    width: 100%;
  }
}

.concept__media-text + .concept__media-text {
  margin-top: 2.5rem;
}

.concept__media-img {
  aspect-ratio: 650/433;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 65rem;
}
@media screen and (max-width: 750px) {
  .concept__media-img {
    aspect-ratio: 320/213;
    top: -17.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32rem;
  }
}

.under-page__fv {
  background-position: center;
  background-size: cover;
  height: clamp(43rem, 24.5833vw, 47.2rem);
  position: relative;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .under-page__fv {
    height: 43rem;
  }
}

.under-page__text {
  color: #fff;
  font-size: clamp(3.2rem, 3.6458vw, 7rem);
  font-weight: 200;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .under-page__text {
    font-size: 3.2rem;
  }
}

.company-page__fv {
  background-image: url(../images/company-fv-img_pc.webp);
}
@media screen and (max-width: 750px) {
  .company-page__fv {
    background-image: url(../images/company-fv-img_sp.webp);
  }
}

.overview {
  margin-top: 10.6rem;
}
@media screen and (max-width: 750px) {
  .overview {
    margin-top: 6.5rem;
  }
}

.overview__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 125rem;
  width: 100%;
}

.overview__body {
  background-color: #E2EFFC;
  margin-top: 9rem;
  outline: 0.1rem solid #fff;
  outline-offset: -1.5rem;
  padding: 6.5rem 3.4rem;
}
@media screen and (max-width: 750px) {
  .overview__body {
    margin-top: 4rem;
    padding: 3.4rem;
  }
}

.overview__wrap {
  margin: 0 auto;
  max-width: 40rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .overview__wrap {
    max-width: 32.5rem;
    width: 100%;
  }
}

.overview__wrap + .overview__wrap {
  margin-top: 3.2rem;
}

.overview__name {
  font-size: 1.6rem;
  line-height: 2.0625;
  padding-left: 1.8rem;
  position: relative;
}

.overview__name::before {
  background-color: #145BA1;
  content: "";
  display: block;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2rem;
}

.overview__item {
  display: flex;
  margin-top: 1rem;
}

.overview__term {
  font-size: 1.6rem;
  line-height: 2.0625;
}

.overview__description {
  font-size: 1.6rem;
  line-height: 2.0625;
  margin-left: 1.6rem;
}

.overview__bullet-item {
  font-size: 1.6rem;
  line-height: 2.0625;
  padding-left: 1.8rem;
  position: relative;
}

.overview__bullet-item::before {
  background-color: #145BA1;
  content: "";
  display: block;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2rem;
}

.overview__bullet-item + .overview__bullet-item {
  margin-top: 1rem;
}

.overview__heading {
  font-size: 1.6rem;
  line-height: 2.0625;
  padding-left: 1.8rem;
  position: relative;
}

.overview__heading::before {
  background-color: #145BA1;
  content: "";
  display: block;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2rem;
}

.overview__service-item {
  font-size: 1.6rem;
  line-height: 2.0625;
}

.overview__service-item {
  margin-top: 1rem;
}

.profile {
  margin-top: 13.4rem;
}
@media screen and (max-width: 750px) {
  .profile {
    margin-top: 6.5rem;
  }
}

.profile__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 125rem;
  padding: 0 2rem;
  width: 100%;
}

.profile__body {
  margin-top: 6.5rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .profile__body {
    margin-top: 4rem;
  }
}

.profile__name {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.65;
}
@media screen and (max-width: 750px) {
  .profile__name {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.profile__items {
  margin-top: 3rem;
}

.profile__item {
  font-size: 2rem;
  line-height: 1.65;
}
@media screen and (max-width: 750px) {
  .profile__item {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.contact-page__fv {
  background-image: url(../images/contact-fv-img_pc.webp);
}
@media screen and (max-width: 750px) {
  .contact-page__fv {
    background-image: url(../images/contact-fv-img_sp.webp);
  }
}

.contact {
  margin-top: 13.4rem;
}
@media screen and (max-width: 750px) {
  .contact {
    margin-top: 6.5rem;
  }
}

.contact__form {
  font-size: 1.8rem;
  margin-top: 9rem;
  text-align: center;
}

.pri-page__fv {
  background-image: url(../images/pri-fv-img_pc.webp);
}
@media screen and (max-width: 750px) {
  .pri-page__fv {
    background-image: url(../images/pri-fv-img_sp.webp);
  }
}

.pri {
  margin-top: 13.4rem;
}
@media screen and (max-width: 750px) {
  .pri {
    margin-top: 6.5rem;
  }
}

.pri__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 121.6rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 750px) {
  .pri__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.pri__body {
  margin-top: 9rem;
}
@media screen and (max-width: 750px) {
  .pri__body {
    margin-top: 4rem;
  }
}

.pri__text {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}

.pri__list {
  margin-top: 2rem;
}

.pri__wrap + .pri__wrap {
  margin-top: 2rem;
}

.pri__term {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
}

.pri__description {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}

.pri__description-item {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

body.is-no-scroll {
  overflow: hidden;
}

.lg-xl-show {
  display: none;
}
@media screen and (max-width: 1349px) {
  .lg-xl-show {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 1000px) {
  .lg-show {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .md-show {
    display: block;
  }
}

.no-scroll {
  overflow: hidden;
}