@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
.inner {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
.u-mobile {
  display: block;
}
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 60px;
    padding-right: 60px;
    max-width: 1200px;
  }
  .u-mobile {
    display: none;
  }
  .u-desktop {
    display: block;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/*---------- 右固定メニュー ---------*/
.fixed-nav {
  position: fixed;
  bottom: 10px;
  left: 50%;
  translate: -50%;
  z-index: 6000;
}
.fixed-nav__list {
  display: flex;
}
.fixed-nav__item:nth-child(n+2) {
  margin-left: 30px;
}
.fixed-nav__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  background: #004E98;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  transition: background-color .4s;
}
.fixed-nav__item a:hover {
  background-color: #5b9fcc;
}
@media screen and (min-width: 768px) {
  .fixed-nav__list {
    display: block;
  }
  .fixed-nav {
    top: 210px;
    right: 0;
    bottom: initial;
    left: initial;
    translate: 0;
  }
  .fixed-nav__item:nth-child(n+2) {
    margin-top: 30px;
    margin-left: 0;
  }
  .fixed-nav__item a {
    width: 60px;
    height: 180px;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
}

/*------------- header ------------*/
.header { 
  width: 100%;
  height: 90px;
  position: fixed;
  top: 90px;
  background: transparent;
  z-index: 5000;
  transition: box-shadow .3s;
  display: none;
}
.header__inner {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__pc-nav {
  display: none;
}
.header__pc-nav,
.pc-nav__inner {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header {
    position: sticky;
    top: 0;
    background: #fff;
    transition: .4s;
    display: block;
  }
  .header.header-shadow {
    box-shadow: 0px 6px 6px -3px rgb(0 0 0 / 0.16);
  }
  .header__pc-nav {
    display: block;
  }

  /* PC-メニュー */
  .pc-nav__items {
    height: inherit;
    display: flex;
    justify-content: space-between; align-items: center;
  }
  .pc-nav__item {
    height: inherit;
    position: relative;
  }
  .pc-nav__item:not(:first-child) {
    margin-left: clamp(2.25rem, 1.12rem + 2.35vw, 3.125rem);
  }
  .pc-nav__item a {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.875rem, 0.391rem + 1.01vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: calc(34 / 20);
    color: #004E98;
    text-transform: uppercase;
    transition: color .4s;
  }
  .pc-nav__item a:hover {
    color: #5b9fcc;
  }
  /* サブメニュー */
  .pc-nav__subItems {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #004E98;
    opacity: 0;
    visibility: hidden;
  }
  .pc-nav__item:hover .pc-nav__subItems {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s, visibility .4s;
  }
  .pc-nav__subItem a {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    transition: color .4s;
  }
  .pc-nav__subItem:first-child a {
    padding: 30px 36px 16px;
  }
  .pc-nav__subItem:nth-child(2) a {
    padding: 16px 36px 30px;
  }
  .pc-nav__subItem a:hover {
    color: #c1ccd4;
  }
}

/*------------- 展開メニュー(open-nav) ------------*/
.open-nav {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: -100%;
  background: #EBF8FF;
  transition: right .6s;
  z-index: 7000;
  overflow-y: scroll;
}
.open-nav__inner {
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.open-nav a {
  transition: color .4s;
}
.open-nav a:hover {
  color: #5b9fcc;
}
.open-nav__logo {
  display: none;
}
.open-nav__list {
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 600;
  margin-top: 62px;
  padding-bottom: 30px;
  line-height: 1;
  border-bottom: 1px solid #dddddd;
  margin-left: 50px;
}
.open-nav__left-items:not(:first-child),
.open-nav__right-items {
  margin-top: 30px;
}
.open-nav__left-item:not(:first-child) {
  margin-top: 20px;
  padding-left: 0.7em;
}
.open-nav__info {
  margin-top: 30px;
  margin-left: 50px;
  padding-bottom: 50px;
}
.open-nav__tel a {
  font-size: .875rem;
  font-weight: 600;
}
.open-nav__info p {
  font-size: .625rem;
  font-weight: 300;
}
.open-nav__info p:first-child {
  margin-top: 10px;
}
.open-nav.is-active {
  right: 0; 
}
html.is-fixed {
  overflow: hidden;
  height: 100%;
}  
@media screen and (min-width: 768px) {
  .open-nav__inner {
    align-items: center;
  }
  .open-nav__logo {
    display: block;
    width: 230px;
    margin-top: 40px;
  }
  .open-nav__logo a:hover {
    opacity: .6;
  }
  .open-nav__list {
    padding-bottom: 60px;
    display: flex;
    gap: 74px;
    margin-top: 85px;
    font-size: 1.25rem;
    margin-left: 0;
  }
  .open-nav__right-items:first-child {
    margin-top: 0;
  }
  .open-nav__info {
    margin-top: 40px;
    margin-left: 0;
  }
  .open-nav__tel a {
    font-size: 1.25rem;
  }
  .open-nav__info p {
    font-size: .875rem;
  }
  .open-nav__info p:nth-child(2) {
    margin-top: 16px;
  }
}

/*--------- hamburger ----------*/
.hamburger {
  width: 21px;
  height: 21px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(3,1fr);
  gap: 3px;
  cursor: pointer;
  z-index: 8000;
  position: fixed;
  top: 24px;
  right: 10px;
}
.hamburger span {
  width: 5px;
  height: 5px;
  background-color: #D70C18;
  border-radius: 50%;
  transition: background-color .6s;
}
.hamburger.is-active span {
  background-color: #004E98;
}
@media screen and (min-width: 768px) {
  .hamburger {
    width: 34px;
    height: 34px;
    gap: 5px;
    top: 28px;
    right: 13px;
  }
  .hamburger span {
    width: 8px;
    height: 8px;
  }
}

/*--------- sectionTitle ----------*/
.sectionTitle {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #004E98;
  text-align: center;
}
.sectionTitle.sectionTitle--white {
  color: #fff;
}
.sectionTitle.sectionTitle.sectionTitle--silo {
  white-space: nowrap;
  margin-left: -7px;
}
@media screen and (min-width: 768px) {
  .sectionTitle {
    font-size: 1.875rem;
    line-height: 1;
  }
}

/* -------------- link-area (横長リンクボタン）-------------*/
.link-area {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 5px;
  width: 220px;
  color: #fff;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  padding: 11px 0;
  transition: background-color .4s, color .4s;
  }
.link-area:hover {
  background-color: rgb(91 159 204 / 0.8);
}
.link-area--blue {
  border: 2px solid #004E98;
  color: #004E98;
}
.link-area--blue:hover {
  background-color: #004E98;
  color: #fff;
}
.link-area--submit {
  border: 2px solid #004E98;
  background-color: #004E98;
  color: #fff;
}
.link-area-return:hover,
.link-area--submit:hover {
  background-color: #5b9fcc;
}
@media screen and (min-width: 768px) {
  .link-area {
    width: 250px;
    padding: 10px 0;
    font-size: 1rem;
  }
}

/*--------- linkButton(TOP) ----------*/
.linkButton {
  font-size: .875rem;
  font-weight: 600;
  line-height: calc(24 / 14);
  color: #004E98;
  position: relative;
  padding-right: 45px;
}
.linkButton::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px ;
  border: 1px solid #004E98;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%); 
  transition: background-color .4s, transform .4s;
}
.linkButton::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 13px;
  mask-image: url(/common/img/link-arrow.svg);
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/common/img/link-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  transition: background-color .4s;
}
.linkButton:hover::before {
  background-color: #004E98;
  transform: scale(1.4) translateY(-11px);
}
.linkButton:hover::after {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .linkButton {
    font-size: 1rem;
    line-height: calc(27 / 16);
  }
  .linkButton::before {
    width: 40px;
    height: 40px;
    right: -9px;
  }
  .linkButton::after {
    width: 14px;
    height: 16px;
    mask-size: contain;
    -webkit-mask-size: contain;
  }
  .linkButton:hover::before {
    transform: scale(1.3) translateY(-16px);
  }
  .scroll__btn {
    position: absolute;
    bottom: 15%;
    left: 50px;
    z-index: 9999;
    animation: arrowmove 1.3s ease-in-out infinite;
  }
  @keyframes arrowmove {
    0% { bottom: 15%;}
    50% { bottom: 17%;}
    100% { bottom: 15%;}
  }
  .linkButton--scroll {
    display: flex;
    flex-direction: column;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    padding-right: 0;
  }
  .linkButton--scroll::before {
    width: 58px;
    height: 58px ;
    background-color: rgb(255 255 255 / .7);
    position: absolute;
    top: 61px;
    right: 0;
  }
  .linkButton--scroll::after {
    width: 25px;
    height: 25px;
    mask-image: url(/common/img/scroll-arrow.svg);
    mask-repeat: no-repeat;
    -webkit-mask-image: url(/common/img/scroll-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    background-color: #004E98;
    position: absolute;
    top: 61px;
    left: 16px;
    transition: transform .4s, background-color .4s;
  }
  .linkButton--scroll:hover::after {
    transform: translateY(-5%);
    background-color: currentColor;
  }
}

/*---------- お問い合わせ（contact) ----------*/
.contact {
  background: #004E98;
  padding: 50px 0;
}
.contact__items {
  color: #fff;
}
.contact__tel a {
  border: 1px solid #fff;
  height: 70px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 0;
  font-size: 1.625rem;
  font-weight: 600;
  padding-left: 35px;
  position: relative;
}
.contact__tel a::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 27px;
  background: url(/common/img/top-phone-icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 31%;
  left: calc(50% - min(34vw, 128px));
}
.contact__tel span {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 6px;
  margin-right: 74px;
}
.contact__tel-area p {
  font-size: .75rem;
  font-weight: 300;
  text-align: center;
  margin-top: 16px;
}
.contact__tel-area p span:nth-child(2) {
  margin-left: 40px;
}
.contact__form {
  margin-top: 30px;
}
.contact__form a {
  border: 1px solid #fff;
  height: 70px;
  font-size: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color .4s;
}
.contact__form a::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 25px;
  background: url(/common/img/top-mail-icon.png) no-repeat;
  background-size: contain;
  margin-right: 16px;
}
.contact__form a:hover {
  background-color: #5b9fcc;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 50px 0 47px;
  }
  .contact__items {
    display: flex;
    justify-content: center;
  }
  .contact__tel a,
  .contact__form a {
    width: 313px;
    height: 84px;
  }
  .contact__tel a {
    font-size: 1.875rem;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .contact__tel a::before {
    top: 39%;
    left: calc(50% - min(34vw, 139px));
  }
  .contact__tel span {
    margin-right: 106px;
  }
  .contact__tel-area p {
    margin-top: 12px;
    font-size: .875rem;
  }
  .contact__form {
    margin-top: 0;
    margin-left: 64px;
  }
  .contact__form a {
    padding: 20px 0;
    font-size: 1.5rem;
  }
  .contact__form a::before {
    margin-right: 8px;
  }
}

/* --------------- footer -------------*/
.footer {
  background: #f5f5f5;
}
.footer__inner {
  padding-left: 55px;
  padding-right: 55px;
}
.footer__logo {
  width: 230px;
  margin-inline: auto;
}
.footer__info-meta {
  font-size: .875rem;
  margin-top: 50px;
}
.footer__info-meta p:first-child {
  line-height: calc(24 / 14);
}
.footer__info-meta p:nth-child(2) {
  margin-top: 16px;
  line-height: 1;
}
.footer__info-meta a {
  transition: color .4s;
}
.footer__info-meta a:hover {
  color: #5b9fcc;
}
.footer__nav {
  margin-top: 58px;
  text-transform: uppercase;
  font-size: .875rem;
}
.footer-nav a {
  transition: color .4s;
}
.footer-nav__left-items:not(:first-child),
.footer-nav__right-items {
  margin-top: 22px;
}
.footer-nav__left-item:not(:first-child) {
  margin-top: 8px;
  padding-left: 0.7em;
}
.footer__logo a:hover {
  opacity: .6;
}
.footer-nav a:hover {
  color: #5b9fcc;
}
.footer__copyright {
  font-size: .75rem;
  letter-spacing: 0.03em;
  color: #aaa;
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .footer__content {
    display: flex;
    justify-content: space-between;
  }
  .footer__info {
    width: 40%;
    margin-left: auto;
  }
  .footer__logo {
    margin: initial;
  }
  .footer__nav {
    display: flex;
    margin-top: 0;
    width: 47%;
    gap: 64px;
  }
  .footer-nav__left-items:not(:first-child),
  .footer-nav__right-items {
    margin-top: 26px;
  }
  .footer-nav__right-items:first-child {
    margin-top: 0;
  }
  .footer__copyright {
    margin-top: 80px;
  }
}

/* ------------ 第二階層以降 ------------------------------------------------------------------------------------- */
/* -------------- ヘッダー部分ロゴ -------------*/
.common-logo {
  width: 150px;
  aspect-ratio: 150 / 27;
  margin-inline: auto;
  margin-top: 21px;
  margin-bottom: 21px;
}
.common-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .common-logo {
    width: 230px;
    aspect-ratio: 230 / 42;
    margin-top: 40px;
    margin-bottom: 6px;
  }
}

/* -------------- sectionTitle -------------*/
.sectionTitle--page {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .sectionTitle--page {
    margin-top: 50px;
  }
}

/* -------------- section-subTitle -------------*/
.section-subTitle {
  font-size: 1.125rem;
  color: #004E98;
}
@media screen and (min-width: 768px) {
  .section-subTitle {
    font-size: 1.5rem;
  }
}

/* -------------- sectionText -------------*/
.sectionText {
  font-size: .875rem;
  margin-top: 8px;
}
.sectionText--big {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .sectionText {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 22px;
  }
  .sectionText--big {
    margin-top: 40px;
  }
}

/* -------------- パンくず -------------*/
.breadcrumb__items {
  display: flex;
  }
.breadcrumb__item {
  text-transform: uppercase;
  font-size: .875rem;
  display: flex;
}
.breadcrumb__item:nth-child(n+2) {
  margin-left: 6px;
}
.breadcrumb__item:nth-child(n+2)::before {
  content: "＞";
  margin-right: 3px;
}
.breadcrumb__item a {
  transition: color .4s;
}
.breadcrumb__item a:hover {
  color: #5b9fcc;
}
