@charset "UTF-8";
/* ///////////////////////////////////////////////

　サイト全般のスタイル
　header,footer,modules

/////////////////////////////////////////////// */
/*
  FONT
----------------------------------------------- */
:root {
  --main-color: #0E4591;
  --light-color: #A6B7DB;
  --gray-color: #F5F7F8;
  --red-color: #D00000;
  --space: clamp(30px, 6.7vw, 80px);
}

html {
  font-size: 1px;
}
@media (max-width: 768px) {
  html {
    font-size: 0.937px;
  }
}

body {
  font-size: 16rem;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

p {
  line-height: 1.75;
}

li, dt, dd, th, td, address {
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input, textarea, select {
  font-size: 16px;
  font-family: inherit;
}

button {
  font-family: inherit;
}

.ffS {
  font-family: "Share Tech", sans-serif;
  letter-spacing: 0.15em;
}

/*
  LAYOUT
----------------------------------------------- */
body.isMenuOpen {
  overflow: hidden；;
}

#wrapper {
  overflow: hidden;
}

/*
  HEADER
----------------------------------------------- */
.header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (min-width: 1261px) {
  .header {
    padding-left: calc(50% - 610px);
    height: 90px;
  }
}
@media screen and (min-width: 1261px) and (max-width: 1260px) {
  .header {
    padding-left: 20px;
  }
}
@media (max-width: 1260px) {
  .header {
    position: fixed;
    height: 60px;
    transition: 0.3s;
  }
}
.header .logo img {
  width: 315px;
}
@media (max-width: 1260px) {
  .header .logo {
    margin-right: auto;
    margin-left: 20px;
    margin-top: 0;
  }
  .header .logo img {
    width: 190px;
  }
}
.header .tel {
  background: var(--red-color);
  border-radius: 0 0 0 30px;
  padding: 0 20px 3px;
  height: 90px;
  display: grid;
  gap: 0.5em;
  align-content: center;
  text-align: center;
  color: #fff;
}
.header .tel .number {
  display: flex;
  align-items: center;
  font-family: "Barlow", sans-serif;
  font-size: clamp(16rem, 1.6666666667vw, 20rem);
  white-space: nowrap;
}
.header .tel .number i {
  margin-right: 0.3em;
}
.header .tel .time {
  font-size: clamp(10rem, 1vw, 12rem);
  font-weight: 700;
}
@media (max-width: 1260px) {
  .header .tel {
    padding: 0 10px 3px;
    height: 60px;
    border-radius: 0 0 0 20px;
  }
  .header .tel .number img {
    width: 16px;
  }
}

@media (max-width: 1260px) {
  .isMenuOpen .header {
    background: var(--main-color);
  }
}
.header h1 {
  margin-top: 25px;
}
/*
  MENU
----------------------------------------------- */
.gnav a {
  color: #fff;
}
@media (min-width: 1261px) {
  .gnav {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 30px;
  }
}
@media (max-width: 1260px) {
  .gnav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    background: var(--main-color);
    padding-top: 25px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
}
.gnav .menu {
  display: flex;
  align-items:flex-end;
}
.gnav .menu li {
  line-height: 1.2;
}
.gnav .menu li > a {
  display: flex;
  align-items: center;
  padding: 0.3em 0;
  text-decoration: none;
  font-weight: 700;
}
@media (min-width: 1261px) {
  .gnav .menu {
    gap: 25px;
  }
}
@media (max-width: 1260px) {
  .gnav .menu {
    flex-direction: column;
    align-items:unset;
    border-top: 1px solid var(--light-color);
  }
  .gnav .menu li {
    position: relative;
    border-bottom: 1px solid var(--light-color);
  }
  .gnav .menu li > a {
    background-image: url(../img/mrk-link.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-position: 20px center;
    height: 50px;
    padding: 0 45px;
    font-size: 20px;
  }
}
.gnav .menu button {
  display: none;
}
@media (max-width: 1260px) {
  .gnav .menu button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 50px;
    background: url(../img/ico-plus.svg) no-repeat center;
  }
  .gnav .menu button.active {
    background-image: url(../img/ico-minus.svg);
    background-size: 12px;
  }
}
.gnav dl {
  z-index: 20;
}
.gnav dl a {
  display: flex;
  color: var(--main-color);
  text-decoration: none;
}
.gnav dl a::before {
  content: "−";
  margin-right: 5px;
}
@media (min-width: 1261px) {
  .gnav dl {
    position: absolute;
    /* top: 72px; */
    top: unset;
    left: 0;
    right: 0;
    max-width: 1220px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex !important;
    flex-wrap: wrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .gnav dl dt {
    width: 100%;
    padding-bottom: 0.7em;
    margin-bottom: 0.5em;
    border-bottom: 2px solid var(--main-color);
    color: var(--main-color);
    font-weight: 700;
  }
  .gnav dl dd {
    width: 25%;
  }
  .gnav .child{
    padding-left: 1em;
  }
  .gnav .child a{
    font-weight: 100;
    font-size: 14rem;
  } 
  .gnav .gnav-dept dl dd {
    width: 50%;
  }
  .gnav .gnav-dept dl dd .child {
    display: flex;
    flex-wrap: wrap;
  }
  .gnav .gnav-dept dl dd li {
    width: 50%;
  }
  .gnav dl a {
    padding: 0.5em 0.75em;
  }
  .gnav dl a:hover {
    background: rgba(14, 69, 145, 0.2);
    border-radius: 6px;
  }
}
@media (max-width: 1260px) {
  .gnav dl {
    display: none;
  }
  .gnav dl dt {
    display: none;
  }
  .gnav dl dd {
    border-top: 1px solid var(--light-color);
    line-height: 1.4;
  }
  .gnav dl a {
    height: 45px;
    padding: 0 45px;
    align-items: center;
    color: #fff;
  }
}
.gnav li:hover dl {
  opacity: 1;
  pointer-events: inherit;
}
.gnav .sub-menu {
  display: flex;
  color: #fff;
}
.gnav .sub-menu li {
  display: flex;
  align-items: center;
  font-size: 13rem;
}
.gnav .sub-menu a {
  display: flex;
  align-items: center;
}
.gnav .sub-menu i {
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1261px) {
  .gnav .sub-menu {
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 5px;
  }
}
@media (max-width: 1260px) {
  .gnav .sub-menu {
    gap: 15px;
    margin: 25px 20px;
  }
  .gnav .sub-menu li {
    flex-basis: 33.333%;
    font-size: 14px;
  }
  .gnav .sub-menu a {
    width: 100%;
    height: 90px;
    padding: 15px;
    flex-direction: column;
    justify-content: space-around;
    background: #0C3265;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
  }
  .gnav .sub-menu i {
    margin-bottom: 5px;
  }
  .gnav .sub-menu i img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.gnav .fontSize {
  font-weight: 700;
}
.gnav .fontSize button {
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding-left: 10px;
  padding-right: 10px;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1260px) {
  .gnav .fontSize {
    display: none !important;
  }
}

@media (max-width: 1260px) {
  .isMenuOpen .gnav {
    opacity: 1;
    pointer-events: inherit;
  }
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  display: none;
  place-items: center;
  align-content: center;
  width: 60px;
  height: 60px;
  background: #fff;
}
.btnMenu span {
  margin-bottom: 7px;
  width: 18px;
  height: 2px;
  background: var(--red-color);
  transition: 0.3s;
}
.btnMenu em {
  color: var(--red-color);
  font-size: 10px;
  font-weight: 700;
}
@media (max-width: 1260px) {
  .btnMenu {
    display: grid;
  }
}

.isMenuOpen .btnMenu span:nth-child(1) {
  -webkit-transform: translateY(4.5px) rotate(135deg);
          transform: translateY(4.5px) rotate(135deg);
}
.isMenuOpen .btnMenu span:nth-child(2) {
  -webkit-transform: translateY(-4.5px) rotate(-135deg);
          transform: translateY(-4.5px) rotate(-135deg);
}

/*
  CONTENTS
----------------------------------------------- */
/* 重要なお知らせ */
.important-news {
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FFF5F5;
  display: flex;
  gap: 30px;
  color: var(--red-color);
}
@media screen and (max-width: 1140px) {
  .important-news {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .important-news {
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.important-news .heading {
  color: inherit;
}
.important-news .heading::before {
  display: none;
}
@media (min-width: 769px) {
  .important-news .heading {
    align-items: inherit;
  }
}
.important-news .news {
  display: grid;
  line-height: 1.45;
}
.important-news .news + .news {
  margin-top: 20px;
}
@media (min-width: 769px) {
  .important-news .news {
    grid-template-columns: 6em auto;
  }
}
@media (max-width: 768px) {
  .important-news .news {
    gap: 0;
  }
  .important-news .news .date {
    margin-bottom: 0.3em;
  }
}

/*
  お問い合わせ
----------------------------------------------- */
/*
  採用情報
----------------------------------------------- */
/*
  FOOTER
----------------------------------------------- */
.footer {
  background: #0B3E84;
  color: #fff;
}

.group-site {
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
}
@media screen and (max-width: 1140px) {
  .group-site {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.group-site li {
  line-height: 1.2;
  font-size: clamp(13rem, 1.3333333333vw, 16rem);
}
.group-site a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
}
@media (hover: hover) {
  .group-site a {
    transition: 0.2s;
  }
  .group-site a:hover {
    opacity: 0.8;
  }
}
.group-site a::before {
  margin-right: 0.5em;
  content: url(../img/mrk-link.svg);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media (min-width: 769px) {
  .group-site {
    display: grid;
    grid-template-columns: repeat(5, auto);
    border-bottom: 1px solid #607DBA;
  }
  .group-site li + li {
    border-left: 1px solid #607DBA;
  }
  .group-site a {
    height: 50px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .group-site {
    display: flex;
    flex-wrap: wrap;
  }
  .group-site li {
    width: 50%;
    border-bottom: 1px solid #607DBA;
  }
  .group-site li:nth-child(even) {
    border-left: 1px solid #607DBA;
  }
  .group-site li:last-child {
    width: 100%;
  }
  .group-site a {
    height: 45px;
  }
}
@media (max-width: 960px) {
  .group-site {
    padding: 0;
  }
}

.footer-container {
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  padding-top: 50px;
  padding-bottom: 100px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1140px) {
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column-reverse;
    padding: 0 0 80px;
  }
}
@media (min-width: 769px) {
  .footer-container .info {
    width: 21em;
    width: 28%;
  }
}
.footer-container .info .logo {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .footer-container .info .logo img {
    width: 175px;
  }
}
.footer-container .info address {
  font-size: clamp(14rem, 1.3333333333vw, 16rem);
}
.footer-container .info dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--main-color);
  border-radius: 4px;
  padding: 0.2em 1em;
  font-size: clamp(11rem, 1.1666666667vw, 14rem);
  font-weight: bold;
}
.footer-container .info dd > * {
  white-space: nowrap;
}
@media (min-width: 769px) {
  .footer-container .info dl {
    margin-top: 4em;
  }
  .footer-container .info dt {
    margin: 1.5em 0 0.4em;
  }
}
@media (max-width: 768px) {
  .footer-container .info {
    text-align: center;
  }
  .footer-container .info dl {
    margin: 20px auto 0;
    display: grid;
    gap: 10px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .footer-container .info dl dt:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-container .info dl dd:nth-of-type(1) {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-container .info dl dt:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-container .info dl dd:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer-container .info dd {
    display: grid;
    grid-template-rows: repeat(2, 1em);
    line-height: 1;
  }
  .footer-container .info dd a {
    text-decoration: underline;
  }
}
.footer-container .info .copyright {
  display: inline-block;
  margin-top: 3em;
  font-size: 12rem;
}
.footer-container .menu {
  display: grid;
}
@media (min-width: 769px) {
  .footer-container .menu {
    grid-template-columns: repeat(4, auto);
    gap: 30px 30px;
  }
}
.footer-container .menu li {
  position: relative;
}
.footer-container .menu li > a {
  display: flex;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .footer-container .menu li > a::before {
    margin-right: 10px;
    content: url(../img/mrk-right.svg);
  }
}
@media (max-width: 768px) {
  .footer-container .menu li {
    background: #0C3265;
  }
  .footer-container .menu li > a {
    display: flex;
    align-items: center;
    height: 45px;
    padding-left: 20px;
    padding-right: 50px;
    border-bottom: 1px solid #607DBA;
    text-decoration: none;
  }
}
.footer-container .menu .btnSubMenu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 45px;
  background: url(../img/ico-plus.svg) no-repeat center;
}
.footer-container .menu .btnSubMenu.active {
  background-image: url(../img/ico-minus.svg);
  background-size: 12px;
}
@media (max-width: 768px) {
  .footer-container .menu .btnSubMenu {
    display: block;
  }
}
@media (min-width: 769px) {
  .footer-container .menu dl {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .footer-container .menu dl {
    display: none;
  }
}
.footer-container .menu dt {
  display: none;
}
.footer-container .menu dd a {
  display: flex;
  align-items: center;
  font-size: 12rem;
  line-height: 1.4;
}
.footer-container .menu dd a::before {
  width: 7px;
  height: 1px;
  margin-right: 0.7em;
  background: #fff;
  content: "";
}
@media (min-width: 769px) {
  .footer-container .menu dd {
    margin-left: 20px;
    margin-top: 1em;
  }
  .footer-container .menu dd.parent,
    .footer-container .menu dd .child{
    display: none;
  }
  .footer-container .menu .gnav-dept dd.parent{
    display: block;
  }
  
}
@media (max-width: 768px) {
  .footer-container .menu dd a {
    height: 40px;
    padding: 0 20px;
    border-bottom: 1px solid #607DBA;
    text-decoration: none;
  }
}

.footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 769px) {
  .footer-cta {
    display: none;
  }
}
.footer-cta > * {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-weight: 700;
}
.footer-cta > * i {
  margin-right: 8px;
  -webkit-transform: translateY(-8%);
          transform: translateY(-8%);
}
.footer-cta .access {
  background: #fff;
  border-radius: 10px 0 0 0;
  color: var(--main-color);
  font-size: 15px;
}
.footer-cta .tel {
  background: var(--red-color);
  border-radius: 0 10px 0 0;
  color: #fff;
  font-size: 20px;
  font-family: "Share Tech", sans-serif;
}

/*
  PARTS
----------------------------------------------- */
.btn {
  display: inline-flex;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn:hover img {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}
@media (hover: hover) {
  .button {
    transition: 0.2s;
  }
  .button:hover {
    opacity: 0.8;
  }
}
.button::after {
  content: url(../img/mrk-link.svg);
  margin-left: 15px;
}
.button.blue {
  background-color: var(--main-color);
  color: #fff;
}
.button.white {
  background-color: #fff;
  color: var(--main-color);
}
.button:hover {
  text-decoration: none;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(23rem, 2.9166666667vw, 35rem);
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.4;
  white-space: normal;
}
.heading::before {
  content: url(../img/mrk-heading.svg);
  margin-bottom: 2px;
}

.heading small {
  margin-top: 0.9em;
  font-family: "Share Tech", sans-serif;
  font-size: clamp(10rem, 0.9166666667vw, 11rem);
  letter-spacing: 0.17em;
}
@media (max-width: 768px) {
  .heading {
    align-items: center;
  }
  .heading::before {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    margin-bottom: 8px;
  }
}

.offical-site {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding-left: 25px;
  background: var(--gray-color);
  color: var(--main-color);
  font-size: clamp(15rem, 1.5vw, 18rem);
  font-weight: 700;
}
.offical-site img {
  margin-right: 8px;
}
.offical-site::before {
  margin-right: 10px;
  content: url(../img/mrk-link.svg);
}
@media (max-width: 768px) {
  .offical-site {
    height: 45px;
  }
  .offical-site img {
    width: 70px;
  }
}


/* 交通案内 */
.howToAccess {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  padding-top: var(--space);
  background: var(--gray-color);
  position: relative;
}

@media screen and (max-width: 1240px) {
  .howToAccess {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.howToAccess::before {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 470px;
  background: linear-gradient(-90deg, #0E4591, #486AB1);
  content: "";
}

@media (max-width: 960px) {
  .howToAccess::before {
    height: 520px;
  }
}

.howToAccess ul {
  max-width: 1100px;
  display: grid;
  gap: 15px;
}

.howToAccess ul li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 80px;
  padding: 10px 10px;
  border: 1px solid #DEE4ED;
  border-radius: 6px;
  background: #fff;
  color: var(--main-color);
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
}

.howToAccess ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--main-color);
  content: "";
}

.howToAccess ul li b {
  margin-bottom: 0.5em;
}

@media (min-width: 961px) {
  .howToAccess ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 769px) {
  .howToAccess ul {
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .howToAccess ul {
    margin: 15px auto;
  }
}

.howToAccess .map {
  position: relative;
  aspect-ratio: 12/4;
  border: 1px solid #DEE4ED;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .howToAccess .map {
    aspect-ratio: 68/40;
  }
}

.howToAccess .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.howToAccess .button {
  position: relative;
  margin-top: 30px;
}

.howToAccess .bottom-cta {
  position: relative;
  background: #0B3E84;
  border-radius: 10px;
  display: grid;
  gap: 10px 15px;
}

@media (min-width: 961px) {
  .howToAccess .bottom-cta {
    padding: 35px 50px;
    grid-template-columns: 36% 36% 28%;
    grid-template-rows: 80px 80px;
    -webkit-transform: translateY(110px);
    transform: translateY(110px);
    margin-top: -50px;
  }

  .howToAccess .bottom-cta .tel {
    grid-row: 1/3;
  }

  .howToAccess .bottom-cta .net {
    grid-column: 3/4;
    grid-row: 1/2;
  }

  .howToAccess .bottom-cta .faq {
    grid-column: 3/4;
    grid-row: 2/3;
  }
}

@media (max-width: 960px) {
  .howToAccess .bottom-cta {
    padding: 20px;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    margin-top: -30px;
  }
}

.howToAccess .bottom-cta>* {
  position: relative;
  background: #fff;
  border-radius: 10px;
  display: grid;
  align-content: center;
  color: var(--main-color);
  overflow: hidden;
}

.howToAccess .bottom-cta>*::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  background: var(--red-color);
  content: "";
}

@media (max-width: 960px) {
  .howToAccess .bottom-cta>* {
    border-radius: 5px;
  }

  .howToAccess .bottom-cta>*::before {
    width: 5px;
  }
}

.howToAccess .bottom-cta a {
  transition: 0.2s;
}

.howToAccess .bottom-cta a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.howToAccess .bottom-cta .tel {
  padding-left: 35px;
}

@media (max-width: 960px) {
  .howToAccess .bottom-cta .tel {
    /*height: 110px;
    padding-left: 25px;*/
    padding: 25px;
  }
}

.howToAccess .bottom-cta .contact {
  padding-left: 75px;
}

.howToAccess .bottom-cta .contact i {
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  aspect-ratio: 1;
  -webkit-clip-path: circle();
  clip-path: circle();
  background: var(--red-color);
}

@media (max-width: 960px) {
  .howToAccess .bottom-cta .contact {
    height: 60px;
    padding-left: 70px;
  }
}

.howToAccess .bottom-cta h3 {
  font-size: clamp(18rem, 1.6666666667vw, 20rem);
  font-weight: 700;
}

.howToAccess .bottom-cta h3 .time {
  padding-left: 0.8em;
  font-size: clamp(12rem, 1.0833333333vw, 13rem);
  font-weight: normal;
}

.howToAccess .bottom-cta .number {
  margin-top: 0.5em;
  color: var(--red-color);
  font-size: clamp(25rem, 2.5vw, 30rem);
  letter-spacing: 0.02em;
}

.howToAccess .bottom-cta small {
  margin-top: 0.8em;
  font-size: clamp(12rem, 1.0833333333vw, 13rem);
}

.howToAccess .bottom-cta .en {
  font-size: clamp(10rem, 0.9166666667vw, 11rem);
}

.subpage .howToAccess {
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top:unset;
  background:unset;
  position:unset;
}
.subpage .howToAccess::before{
  display: none;
}

.subpage .howToAccess .bottom-cta {
  padding: 35px 50px;
  -webkit-transform: unset;
  transform:unset;
  margin-top: 0;
}
@media (max-width: 768px) {
  .subpage .howToAccess {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.snav {
  font-size: 13px;
  position: absolute;
  top: 0;
  padding-left: calc(50% - 610px);
  color: var(--main-color);
  display: flex;
  background-color: #fff;
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
}

.snav-nav ul li {
  display: inline-block;
  margin-left: 16px;
}

.snav-nav ul li:nth-child(n + 2) {
  margin-left: 6px;
}

.snav-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.snav-nav ul li a::after {
  content: "";
  display: block !important;
  width: 16px;
  height: 20px;
  background-image: url(../img/parts/mrk_btn_dark.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px;
  transform: rotate(90deg);
}

.gnav .sub-menu .snav-link {
  display: none;
}

@media (max-width: 1260px) {
  .snav {
    display: none;
  }

  .gnav .sub-menu {
    gap: 10px;
    margin: 25px 10px;
  }

  .gnav .sub-menu .snav-link {
    display: block;
  }
}