@charset "UTF-8";
/* commonParts
---------------------------------------------------- */
.__inner {
  width: 99.375rem;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .__inner {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .__inner {
    width: calc(100% - 36px);
  }
}
.__inner.__wide {
  width: min(100%, 1920px);
}
.__inner.__medium {
  width: 82.5rem;
}
@media screen and (max-width: 1199px) {
  .__inner.__medium {
    width: 99.375rem;
  }
}
@media screen and (max-width: 991px) {
  .__inner.__medium {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .__inner.__medium {
    width: calc(100% - 36px);
  }
}

.__liststyle li {
  display: flex;
  align-items: flex-start;
  margin-top: 0.4em;
}
.__liststyle li:nth-of-type(1) {
  margin-top: 0;
}
.__liststyle li::before {
  content: "\f111";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85em;
  margin-top: 0.25em;
  margin-right: 0.6em;
  flex-shrink: 0;
}
.__liststyle.__note li::before {
  content: "※";
  margin-right: 0.2em;
}

.__txtstyle01 span.__en {
  position: relative;
  font-size: 6.25rem;
  line-height: 1.2em;
}
@media screen and (max-width: 1199px) {
  .__txtstyle01 span.__en {
    font-size: 4.75em;
  }
}
@media screen and (max-width: 767px) {
  .__txtstyle01 span.__en {
    font-size: 4em;
  }
}
.__txtstyle01 span.__en::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0.12em;
  aspect-ratio: 1/1;
}
.__txtstyle01 span.__jp {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 1199px) {
  .__txtstyle01 span.__jp {
    font-size: 1.125em;
  }
}
.__txtstyle01.__navy span.__en::before {
  background-image: url(../images/dot-navy.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.__txtstyle01.__yellow span.__en::before {
  background-image: url(../images/dot-yellow.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.__txtstyle02 {
  display: flex;
  align-items: flex-start;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
}
@media screen and (max-width: 1199px) {
  .__txtstyle02 {
    font-size: 1.525em;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 767px) {
  .__txtstyle02 {
    font-size: min(5.35vw, 1.525em);
  }
}
.__txtstyle02 span.__icon {
  display: block;
  flex-shrink: 0;
  width: 1.2em;
  margin-top: 0.3em;
  margin-right: 0.48em;
}
.__txtstyle02 span.__icon img {
  width: 100%;
  height: auto;
}
.__txtstyle02.__large {
  font-size: 2.5rem;
}
@media screen and (max-width: 1199px) {
  .__txtstyle02.__large {
    font-size: 1.525em;
  }
}
@media screen and (max-width: 767px) {
  .__txtstyle02.__large {
    font-size: min(5.35vw, 1.525em);
  }
}

.__txtstyle03 {
  display: flex;
  align-items: flex-start;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.6875rem;
}
@media screen and (max-width: 1199px) {
  .__txtstyle03 {
    font-size: 1.375em;
  }
}
@media screen and (max-width: 767px) {
  .__txtstyle03 {
    font-size: 1.25em;
  }
}
.__txtstyle03::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.2em;
  align-self: stretch;
  background: linear-gradient(0deg, #333, #d7d7d7, #333);
  margin-right: 0.6em;
}
.__txtstyle03.__light::before {
  background: linear-gradient(0deg, #ccc, #fff, #ccc);
}

.__linkbtn.__01 {
  width: -moz-fit-content;
  width: fit-content;
}
.__linkbtn.__01 a {
  position: relative;
  padding-bottom: 0.4em;
}
.__linkbtn.__01 a::before {
  content: "";
  display: block;
  background-color: #222;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.36s ease;
}
.__linkbtn.__01 span.__dot {
  display: inline-block;
  width: 0.6em;
  margin-bottom: 0.12em;
  will-change: transform;
  transition: all 0.48s ease;
}
.__linkbtn.__01 span.__dot img {
  width: 100%;
  height: auto;
}
.__linkbtn.__01 span.__txt {
  margin-left: 0.6em;
}
@media screen and (min-width: 991px) {
  .__linkbtn.__01 a:hover::before {
    transform: scaleX(1);
    transform-origin: left top;
  }
  .__linkbtn.__01 a:hover span.__dot {
    transform: scale(1.6);
  }
}
.__linkbtn.__02 {
  width: -moz-fit-content;
  width: fit-content;
}
.__linkbtn.__02 a, .__linkbtn.__02 button {
  color: #fff;
  background-color: #333;
  font-size: 0.85em;
  padding: 0.1em 3em 0.2em;
  border-radius: 50vh;
  transition: all 0.24s ease;
}
.__linkbtn.__02 a span.__arrow, .__linkbtn.__02 button span.__arrow {
  vertical-align: text-bottom;
  font-size: 0.8em;
  margin-left: 1em;
}
@media screen and (min-width: 991px) {
  .__linkbtn.__02 a:hover, .__linkbtn.__02 button:hover {
    background-color: #124a82;
  }
}

a.__txtlink {
  color: #222;
  display: inline;
  text-decoration: underline;
  opacity: 1;
  transition: all 0.24s ease;
}
@media screen and (min-width: 991px) {
  a.__txtlink:hover {
    opacity: 0.6;
  }
}

.__fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.48s ease 0.6s;
}
.__fadeIn.__left {
  transform: translateX(-30px);
  transition: all 0.6s ease 0.6s;
}
.__fadeIn.__right {
  transform: translateX(30px);
  transition: all 0.6s ease 0.6s;
}
.__fadeIn.__delay00 {
  transition-delay: 0s;
}
.__fadeIn.__inview {
  opacity: 1;
  transform: translate(0);
}

/* header
---------------------------------------------------- */
header {
  pointer-events: none;
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.36s ease;
}
header > * {
  pointer-events: auto;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 110px;
  padding: 0 1.25rem;
}
@media screen and (max-width: 1599px) {
  header .header-inner {
    height: 90px;
  }
}
@media screen and (max-width: 1199px) {
  header .header-inner {
    height: 80px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  header .header-inner {
    height: 72px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 1199px) {
  header .__overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.36s ease;
  }
  header .__overlay.__open {
    opacity: 1;
    visibility: visible;
  }
}
header .header-logo {
  position: relative;
  width: 340px;
}
@media screen and (max-width: 1599px) {
  header .header-logo {
    width: 306px;
  }
}
@media screen and (max-width: 1199px) {
  header .header-logo {
    width: 272px;
  }
}
@media screen and (max-width: 767px) {
  header .header-logo {
    width: min(60vw, 204px);
  }
}
header .header-logo img {
  width: 100%;
  height: auto;
}
header .header-logo img.__dark {
  opacity: 1;
  transition: all 0.24s ease;
}
header .header-logo img.__light {
  position: absolute;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.24s ease;
}
@media screen and (max-width: 1199px) {
  header .nav-btn {
    position: relative;
    z-index: 99;
    width: 48px;
    height: 40px;
    margin-right: 4px;
    cursor: pointer;
  }
}
@media screen and (max-width: 1199px) and (max-width: 767px) {
  header .nav-btn {
    width: 32px;
  }
}
@media screen and (max-width: 1199px) {
  header .nav-btn span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: #222;
    transition: all 0.24s ease;
  }
  header .nav-btn span:nth-of-type(1) {
    margin-top: -8px;
  }
  header .nav-btn span:nth-of-type(3) {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1199px) and (max-width: 767px) {
  header .nav-btn span:nth-of-type(1) {
    margin-top: -6px;
  }
  header .nav-btn span:nth-of-type(3) {
    margin-top: 6px;
  }
}
@media screen and (max-width: 1199px) {
  header .nav-btn.__open span {
    background-color: #fff;
  }
  header .nav-btn.__open span:nth-of-type(1) {
    margin-top: 0;
    transform: translateY(-50%) rotate(30deg);
  }
  header .nav-btn.__open span:nth-of-type(2) {
    opacity: 0;
  }
  header .nav-btn.__open span:nth-of-type(3) {
    margin-top: 0;
    transform: translateY(-50%) rotate(-30deg);
  }
}
@media screen and (max-width: 1199px) {
  header .header-menu {
    color: #fff;
    background-color: #333;
    box-shadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.2);
    width: 220px;
    height: 100vh;
    padding-top: 120px;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 0.36s ease;
  }
}
header .header-menu .header-menu-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  header .header-menu .header-menu-inner {
    display: block;
    opacity: 0;
    transition: all 0.36s ease;
  }
}
@media screen and (max-width: 1199px) {
  header .header-menu.__open {
    transform: translateX(0);
  }
  header .header-menu.__open .header-menu-inner {
    opacity: 1;
    transition: all 0.36s 0.36s ease;
  }
}
header .header-menu nav ul {
  display: flex;
}
@media screen and (max-width: 1199px) {
  header .header-menu nav ul {
    display: block;
  }
}
header .header-menu nav ul li a {
  position: relative;
  margin: 0 1.25rem;
  padding: 0.24em 0;
}
@media screen and (max-width: 1199px) {
  header .header-menu nav ul li a {
    margin: 20px 0;
    padding: 0.4em 0;
    padding-left: 30px;
  }
}
header .header-menu nav ul li a::before {
  content: "";
  display: block;
  background-color: #222;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: right top;
  transform: scaleX(0);
  transition: background-color 0.24s ease, transform 0.36s ease;
}
@media screen and (max-width: 1199px) {
  header .header-menu nav ul li a::before {
    background-color: #fff;
    opacity: 0.6;
  }
}
@media screen and (min-width: 991px) {
  header .header-menu nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left top;
  }
}
header .header-menu nav ul li:last-of-type a {
  margin-right: 0.625rem;
}
header .header-menu nav ul li.__current a::before {
  transform: scaleX(1);
}
header.__pagetop {
  color: #fff;
  background-color: initial;
}
header.__pagetop .header-logo img.__light {
  opacity: 1;
}
header.__pagetop .header-logo img.__dark {
  opacity: 0;
}
@media screen and (max-width: 1199px) {
  header.__pagetop .nav-btn span {
    background-color: #fff;
  }
}
header.__pagetop .header-menu nav ul li a::before {
  background-color: #fff;
}

/* footer
---------------------------------------------------- */
footer {
  background: linear-gradient(45deg, #f0f0f0 40%, #fff, #f0f0f0);
}
@media screen and (max-width: 767px) {
  footer {
    text-align: center;
  }
}
@media screen and (max-width: 1199px) {
  footer .__inner {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  footer .__inner {
    padding-bottom: 0;
  }
}
footer .footer-logo {
  width: 400px;
}
@media screen and (max-width: 1599px) {
  footer .footer-logo {
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-logo {
    width: min(100%, 300px);
    margin: 0 auto;
    padding-right: 1em;
  }
}
footer .footer-logo img {
  width: 100%;
  height: auto;
}
footer .footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 1em;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner {
    display: block;
  }
}
footer .footer-inner .footer-info p {
  line-height: 1.3em;
}
footer .footer-inner .footer-info p a {
  display: inline;
}
footer .footer-inner .footer-info p a i {
  transition: all 0.24s ease;
}
@media screen and (min-width: 991px) {
  footer .footer-inner .footer-info p a:hover i {
    opacity: 0.6;
  }
}
footer .footer-inner .footer-menu ul {
  display: flex;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .footer-menu ul {
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu ul {
    display: block;
  }
}
footer .footer-inner .footer-menu ul li a {
  margin-left: 2.5rem;
  transition: all 0.24s ease;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .footer-menu ul li a {
    margin-left: 0;
    margin-right: 2em;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu ul li a {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 991px) {
  footer .footer-inner .footer-menu ul li a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 991px) {
  footer .copyright {
    margin-top: 1em;
    padding-bottom: 80px !important;
  }
}
@media screen and (max-width: 767px) {
  footer .copyright {
    padding-bottom: 72px !important;
  }
}
footer .copyright p {
  text-align: end;
  font-size: 12px;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  footer .copyright p {
    text-align: center;
    font-size: 10px;
  }
}

#pagetop {
  display: none;
  z-index: 9;
  right: 0;
}
#pagetop a {
  width: 6.25rem;
  aspect-ratio: 1/1;
  background-color: #222;
  box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1199px) {
  #pagetop a {
    width: 72px;
  }
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 52px;
  }
}
#pagetop a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 8%;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  display: block;
  width: 24%;
  aspect-ratio: 1/1;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
}
@media screen and (min-width: 991px) {
  #pagetop a:hover {
    background-color: #032251;
  }
}/*# sourceMappingURL=common.css.map */