@charset "UTF-8";
body {
  background: #fafafa;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}
body.is-drawer--shown {
  overflow: hidden;
}

a {
  color: #015bac;
}
main a:hover {
  text-decoration: underline;
}

#wrapper.is-loaded {
  opacity: 1;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.cormorant {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  background-color: #015bac;
  color: white;
  line-height: 1;
}
.button--ja {
  font-size: 14px;
}
.button--en {
  font-size: 10px;
}
.button:hover {
  background-color: #fff;
  color: #015bac;
}
.button.is-red {
  background: #bf0020;
}
.button.is-red:hover {
  background: #950000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 60px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #015bac;
}
@media (min-width: 1024px) {
  .site-header {
    height: 100px;
  }
}
.site-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.site-header__logo-area {
  flex: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
}
.site-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__logo-image {
  width: 180px;
}
@media (min-width: 1024px) {
  .site-header__logo-image {
    width: 400px;
  }
}
.site-header__logo-text {
  display: none;
  font-weight: 900;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .site-header__logo-text {
    display: flex;
    flex-direction: column;
  }
}
.site-header__logo-text--ja {
  font-size: 20px;
}
.site-header__logo-text--en {
  font-size: 15px;
}
.site-header__nav-area {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.site-header__group-link {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__group-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
  }
}
.site-header__group-link-logo {
  width: 60px;
  aspect-ratio: 106/63;
}
.site-header__group-link-text {
  font-size: 13px;
  line-height: 1.2;
}
.site-header__nav {
  position: fixed;
  top: -150%;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  padding: 30px;
  transition: all 0.2s ease;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .site-header__nav {
    position: static;
    flex-direction: row;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    padding: 8px;
    overflow: visible;
  }
}
.site-header__nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1024px) {
  .site-header__nav:before {
    display: none;
  }
}
.site-header__menu {
  gap: 40px 20px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  line-height: 1.2;
  height: 100%;
  overflow: auto;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .site-header__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    overflow: visible;
    gap: 0 15px;
    height: auto;
    overflow: visible;
    padding-bottom: 0;
  }
}
.site-header__menu-item {
  position: relative;
}
.site-header__menu-item--parent {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .site-header__menu-item--parent {
    width: auto;
    margin-top: 0;
  }
}
.site-header__menu-link {
  display: block;
  color: #333;
}
.site-header__menu-link--parent {
  position: relative;
  display: inline-block;
}
.site-header__menu-link--parent:hover {
  color: #015bac;
}
.site-header__menu-link--child {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed #015bac;
  transition: color 0.1s;
  color: #333;
}
@media (min-width: 1024px) {
  .site-header__menu-link--child {
    border-bottom: 1px dashed #ccc;
    padding: 10px;
  }
}
.site-header__menu-link--child:hover {
  background: #f6fbff;
  color: #015bac;
}
.site-header__menu-text {
  display: flex;
  align-items: center;
}
.site-header__menu-arrow {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  fill: none;
  stroke: currentColor;
}
.site-header__menu-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #015bac;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
}
.site-header__menu-item--parent:hover .site-header__menu-underline {
  transform: scaleX(1);
}
.site-header__submenu {
  display: block;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .site-header__submenu {
    display: none;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 300px;
    margin-top: 8px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
  }
  .site-header__menu-item--parent:hover .site-header__submenu {
    display: block;
  }
}
.site-header__submenu .site-header__menu-text {
  display: block;
}
.site-header__toggle {
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  width: 50px;
  height: 100%;
  background: #fff;
}
@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }
}
.site-header__toggle-line {
  width: 20px;
  height: 2px;
  background: #015bac;
}
.is-drawer--shown .site-header__toggle {
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #015bac;
}
.is-drawer--shown .site-header__toggle .site-header__toggle-line {
  position: absolute;
  background: #fff;
}
.is-drawer--shown .site-header__toggle .site-header__toggle-line:nth-child(1) {
  transform: rotate(45deg);
}
.is-drawer--shown .site-header__toggle .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}
.is-drawer--shown .site-header__toggle .site-header__toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}
.site-header .button {
  flex: none;
  height: 100%;
  align-self: stretch;
  padding: 20px;
  border-radius: 0;
}
.site-header .button:hover {
  color: #fff;
}

.is-drawer--shown .site-header__nav {
  top: 0;
}

.mainvisual {
  width: 100%;
  margin: 60px auto 0;
}
@media (min-width: 1024px) {
  .mainvisual {
    margin: 100px auto 0;
  }
}
.mainvisual__item {
  position: relative;
  width: 100%;
  height: 620px;
}
.mainvisual__text {
  position: absolute;
  z-index: 10;
  bottom: 100px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(28, 93, 105, 0.48);
}
@media (min-width: 1024px) {
  .mainvisual__text {
    bottom: 100px;
    left: 50px;
  }
}
.mainvisual__english {
  font-size: 8vw;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  clip-path: inset(0 100% 0 0);
  transition: all 2s ease-in-out;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .mainvisual__english {
    font-size: 72px;
  }
}
.mainvisual__japanese {
  font-size: 7vw;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  clip-path: inset(0 100% 0 0);
  transition: all 2s ease-in-out;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .mainvisual__japanese {
    font-size: 56px;
  }
}
.mainvisual__japanese span {
  font-size: 70%;
}
.mainvisual__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.mainvisual .add-animation .mainvisual__english {
  padding-top: 0;
  transition-delay: 0.4s;
  clip-path: inset(0 0 0 0);
}
.mainvisual .add-animation .mainvisual__japanese {
  padding-top: 0;
  transition-delay: 0.6s;
  clip-path: inset(0 0 0 0);
}
.mainvisual .add-animation .mainvisual__img {
  animation: mainvitual 5s linear 0s 1 normal both;
}
@keyframes mainvitual {
  0% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

.mainvisual2 {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  width: 100%;
  margin: 60px auto 0;
}
@media (min-width: 1024px) {
  .mainvisual2 {
    margin: 100px auto 0;
  }
}
.mainvisual2__text {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(28, 93, 105, 0.48);
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s ease-in-out;
}
.mainvisual2__english {
  font-size: 8vw;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  transition: all 2s ease-in-out;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .mainvisual2__english {
    font-size: 82px;
  }
}
.mainvisual2__japanese {
  font-size: 7vw;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  transition: all 2s ease-in-out;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .mainvisual2__japanese {
    font-size: 66px;
  }
}
.mainvisual2__japanese span {
  font-size: 70%;
}
.mainvisual2__japanese.small {
  font-size: 6vw;
}
@media (min-width: 1024px) {
  .mainvisual2__japanese.small {
    font-size: 60px;
  }
}
.mainvisual2__movie {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.mainvisual2__text1 {
  animation: mainvisual2text1 12s ease-in-out infinite;
}
@keyframes mainvisual2text1 {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  8.33% {
    opacity: 1;
    transform: translateY(0);
  }
  49.98% {
    opacity: 1;
    transform: translateY(0);
  }
  58.31% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}
.mainvisual2__text2 {
  animation: mainvisual2text2 12s ease-in-out infinite;
}
@keyframes mainvisual2text2 {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  49.98% {
    opacity: 0;
    transform: translateY(30px);
  }
  58.31% {
    opacity: 1;
    transform: translateY(0);
  }
  91.67% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

.progress-container {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.progress {
  width: 0%;
  height: 100%;
  background: #000;
  transition: none;
}

.home-point {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: -90px;
  padding: 5px 5px 0;
  background: #fafafa;
  border-radius: 4px 4px 0 0;
}
@media (min-width: 1024px) {
  .home-point {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
  }
}
.home-point__item {
  width: 100%;
}
.home-point__icon {
  display: block;
  width: 60px;
  height: auto;
}
.home-point__icon path {
  fill: #fff;
}
.home-point__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(to bottom, #006ac9 50%, #0060ba 50%);
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 3px 0 #001c57;
}
@media (min-width: 1024px) {
  .home-point__link {
    height: 110px;
    gap: 5px;
  }
}
.home-point__link path {
  fill: #fff;
}
.home-point__link:hover {
  transform: translateY(-3px);
  background: linear-gradient(to bottom, #ddefff 50%, #d3eaff 50%);
  color: #0f3687;
  text-decoration: none;
  box-shadow: 0 5px 0 #001c57;
}
.home-point__link:hover path {
  fill: #0f3687;
}
.home-point__link:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 #001c57;
}
.home-point__text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}
@media (min-width: 1024px) {
  .home-point__text {
    font-size: 24px;
  }
}
.home-point__subtext {
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.home-news {
  margin-top: 50px;
  padding: 20px 15px;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .home-news {
    padding: 50px;
  }
}
.home-news__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #015bac;
  line-height: 1;
}
@media (min-width: 1024px) {
  .home-news__title {
    flex-direction: row;
    gap: 0;
  }
}
.home-news__title-text {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.home-news__title-japanese {
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .home-news__title-japanese {
    font-size: 34px;
  }
}
.home-news__title-english {
  font-size: 20px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.home-news__title-link {
  border: 2px solid #015bac;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.home-news__title-link:hover {
  background: #015bac;
  color: #fff;
}
.home-news__list {
  margin-top: 25px;
}
.home-news__item {
  list-style: none;
}
.home-news__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.2s;
}
@media (min-width: 1024px) {
  .home-news__link {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
}
.home-news__link-date {
  display: block;
  width: 150px;
  font-weight: 600;
  font-size: 14px;
  vertical-align: middle;
  color: #0d304f;
}
@media (min-width: 1024px) {
  .home-news__link-date {
    width: 120px;
  }
}
.home-news__link:hover {
  background: #f6fbff;
}
.home-news__link svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .home-news__link svg {
    position: static;
  }
}

.footer {
  color: #fff;
  margin-top: 100px;
  background: url(/wp-content/uploads/2025/11/footer-bg.png) center center/cover no-repeat, #003769;
  background-attachment: fixed;
}
.footer-top {
  width: 100%;
  height: auto;
  display: block;
}
.footer-top path {
  fill: #fafafa;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 140px 15px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 100px;
  }
}
.footer__logo {
  margin-bottom: 80px;
  text-align: center;
}
.footer__logo-image {
  width: 300px;
  margin-bottom: 20px;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  line-height: 1.2;
}
.footer__group-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer__group-link-logo {
  width: 50px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 1024px) {
  .footer-nav {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-nav__list {
  margin-bottom: 60px;
}
.footer-nav__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
.footer-nav__title-link {
  display: block;
  padding-bottom: 3px;
  border-bottom: 2px solid #fff;
}
.footer-nav__sub-item + .footer-nav__sub-item:has(.footer-nav__sub-sub-list) {
  margin-top: 20px;
}
.footer-nav__sub-link {
  display: block;
  line-height: 1.8;
}
.footer-nav__sub-sub-list {
  margin-bottom: 20px;
  padding-left: 20px;
}
.footer-nav__sub-sub-sub-link {
  display: block;
  line-height: 1.8;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .footer-menu {
    flex-direction: row;
    gap: 30px;
    justify-content: space-around;
  }
}
.footer a,
.footer span {
  color: #fff;
}
.footer a:hover,
.footer span:hover {
  color: #fff;
}
.footer .group {
  position: static;
}
.footer__backtotop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
}
@media (min-width: 1024px) {
  .footer__backtotop {
    display: none;
  }
}
.footer__backtotop svg {
  width: 40px;
}
.footer__copyright {
  padding: 50px 0;
  font-size: 14px;
  text-align: center;
}

figure.wp-block-gallery.has-nested-images.tochildlinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  figure.wp-block-gallery.has-nested-images.tochildlinks {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
  }
}
figure.wp-block-gallery.has-nested-images.tochildlinks figure.wp-block-image:not(#individual-image):has(a) {
  flex: none;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  background: #fff;
  transition: all 0.3s;
  cursor: pointer;
}
figure.wp-block-gallery.has-nested-images.tochildlinks figure.wp-block-image:not(#individual-image):has(a):before {
  content: none;
}
figure.wp-block-gallery.has-nested-images.tochildlinks figure.wp-block-image:not(#individual-image):has(a) a {
  flex: none;
  display: block;
  aspect-ratio: 10/7;
  height: auto;
  overflow: hidden;
  border-radius: 3px;
}
figure.wp-block-gallery.has-nested-images.tochildlinks figure.wp-block-image:not(#individual-image):has(a) a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  border-radius: 3px;
}
figure.wp-block-gallery.has-nested-images.tochildlinks figure.wp-block-image:not(#individual-image):has(a) .wp-element-caption {
  position: static;
  margin-bottom: 0;
  background: none;
  padding: 10px 0 0;
  margin: 0;
  text-shadow: none;
  font-size: inherit;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  text-align: center;
}
figure.wp-block-gallery.has-nested-images.tochildlinks figure.wp-block-image:not(#individual-image):has(a):hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  scrollbar-color: none;
  scrollbar-gutter: none;
  scrollbar-width: none;
  will-change: none;
}
figure.wp-block-gallery.has-nested-images.tochildlinks figure.wp-block-image:not(#individual-image):has(a):hover img {
  transform: scale(1.05);
}

.container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.article .container {
  max-width: 1024px;
}

.page-header h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.page-header .english-title {
  margin-top: 20px;
  text-align: center;
  color: #015bac;
  font-family: "Jost", serif;
}
@media (min-width: 1024px) {
  .page-header .english-title {
    font-size: 17px;
  }
}

.breadcrumbs a {
  color: #000;
}

.ingrotext {
  margin-top: 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .ingrotext {
    margin-top: 50px;
    font-size: 24px;
  }
}
.ingrotext + * {
  margin-top: 70px;
}

.page-content:not(:has(.tochildlinks)) {
  padding: 20px;
  border-radius: 6px;
  background: #fff;
  font-weight: 400;
  color: #000;
}
.page-content:not(:has(.tochildlinks)) br {
  display: none;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) {
    padding: 50px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.02);
  }
  .page-content:not(:has(.tochildlinks)) br {
    display: block;
  }
}
.page-content:not(:has(.tochildlinks)) .ingrotext {
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .ingrotext {
    margin-top: 0;
  }
}
.page-content:not(:has(.tochildlinks)) h2 {
  padding-bottom: 10px;
  border-bottom: 3px solid #015bac;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) h2 {
    font-size: 30px;
  }
}
.page-content:not(:has(.tochildlinks)) h2 + * {
  margin-top: 30px;
}
.page-content:not(:has(.tochildlinks)) h2 + .wp-block-table {
  margin-top: 50px;
}
.page-content:not(:has(.tochildlinks)) h2:not(:first-child) {
  margin-top: 60px;
}
.page-content:not(:has(.tochildlinks)) h3 {
  position: relative;
  padding-left: 25px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) h3 {
    font-size: 24px;
  }
}
.page-content:not(:has(.tochildlinks)) h3:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: #015bac;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) h3:before {
    top: 8px;
  }
}
.page-content:not(:has(.tochildlinks)) h3 + * {
  margin-top: 30px;
}
.page-content:not(:has(.tochildlinks)) h3 + .wp-block-table {
  margin-top: 50px;
}
.page-content:not(:has(.tochildlinks)) h3:not(:first-child) {
  margin-top: 50px;
}
.page-content:not(:has(.tochildlinks)) h3:has(.title-merit) {
  padding-left: 0;
}
.page-content:not(:has(.tochildlinks)) h3:has(.title-merit):before {
  display: none;
}
.page-content:not(:has(.tochildlinks)) h3:has(.title-merit) .title-merit {
  background: #015bac;
  display: inline-flex;
  padding: 2px 20px 2px 10px;
  margin-right: 10px;
  color: #fff;
  clip-path: polygon(0% 0%, 92% 0, 100% 50%, 92% 100%, 0% 100%);
}
.page-content:not(:has(.tochildlinks)) h4 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.page-content:not(:has(.tochildlinks)) h4 + * {
  margin-top: 20px;
}
.page-content:not(:has(.tochildlinks)) p {
  line-height: 2;
}
.page-content:not(:has(.tochildlinks)) p + * {
  margin-top: 20px;
}
.page-content:not(:has(.tochildlinks)) p + p {
  margin-top: 25px;
}
.page-content:not(:has(.tochildlinks)) p + h4 {
  margin-top: 40px;
}
.page-content:not(:has(.tochildlinks)) ul,
.page-content:not(:has(.tochildlinks)) ol {
  padding-left: 20px;
  line-height: 2;
}
.page-content:not(:has(.tochildlinks)) ul + *,
.page-content:not(:has(.tochildlinks)) ol + * {
  margin-top: 30px;
}
.page-content:not(:has(.tochildlinks)) ul {
  list-style: disc;
}
.page-content:not(:has(.tochildlinks)) ol {
  list-style: decimal;
}
.page-content:not(:has(.tochildlinks)) figure + * {
  margin-top: 60px;
}
.page-content:not(:has(.tochildlinks)) figure + p {
  margin-top: 40px;
}
.page-content:not(:has(.tochildlinks)) img {
  border-radius: 6px;
}
.page-content:not(:has(.tochildlinks)) hr {
  margin: 60px 0;
  border: 1px solid #ececec;
}
.page-content:not(:has(.tochildlinks)) table + * {
  margin-top: 40px;
}
.page-content:not(:has(.tochildlinks)) table th,
.page-content:not(:has(.tochildlinks)) table td {
  padding: 10px;
  border: 1px solid #0858a1;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) table th,
  .page-content:not(:has(.tochildlinks)) table td {
    padding: 20px;
  }
}
.page-content:not(:has(.tochildlinks)) table th {
  width: 30%;
  background: #f8fcff;
}
.page-content:not(:has(.tochildlinks)) table br {
  display: block;
}
.page-content:not(:has(.tochildlinks)) .wp-lightbox-container {
  position: relative;
  border: 3px solid #ececec;
  padding: 30px;
  border-radius: 6px;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-lightbox-container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-content:not(:has(.tochildlinks)) .wp-lightbox-container.fullsize {
    max-width: 100%;
  }
}
.page-content:not(:has(.tochildlinks)) .wp-lightbox-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/expansion.svg) center center/70px 70px no-repeat, rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.page-content:not(:has(.tochildlinks)) .wp-lightbox-container:hover:before {
  opacity: 1;
}
.page-content:not(:has(.tochildlinks)) .wp-lightbox-container-notexpand {
  border: 2px solid #ececec;
  border-radius: 6px;
}
.page-content:not(:has(.tochildlinks)) .wp-lightbox-container-notexpand:before {
  content: none;
}
.page-content:not(:has(.tochildlinks)) .wp-block-image + * {
  margin-top: 30px;
}
.page-content:not(:has(.tochildlinks)) b,
.page-content:not(:has(.tochildlinks)) strong {
  background: linear-gradient(to bottom, transparent 60%, #fff33b 60%);
}
.page-content:not(:has(.tochildlinks)) a {
  text-decoration: underline;
}
.page-content:not(:has(.tochildlinks)) .button {
  padding: 5px 30px;
  border-radius: 50px;
  width: fit-content;
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) figure.wp-block-image:not(#individual-image) {
  display: block;
  width: 100%;
  margin: 0;
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) figure.wp-block-image:not(#individual-image):before {
  content: none;
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2), .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
  width: 100%;
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a, .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  height: auto;
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: static;
  font-size: 16px;
  background: none;
  color: #000;
  text-shadow: none;
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) + h2, .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) + h3, .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) + h4,
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) p,
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) ul,
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)) ol {
  margin-top: 70px;
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).gallery__small figure.wp-block-image:not(#individual-image) {
  width: 100%;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).gallery__small figure.wp-block-image:not(#individual-image) {
    width: 90%;
  }
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).gallery__small figure.wp-block-image:not(#individual-image):nth-of-type(odd) {
    justify-self: start;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(2)).gallery__small figure.wp-block-image:not(#individual-image):nth-of-type(odd) {
    justify-self: end;
  }
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery.columns-2:has(.wp-block-image:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns .wp-block-columns {
  margin-bottom: 0;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-detail .wp-block-column:has(h3):has(figure) {
  padding: 15px;
  border-radius: 6px;
  background: #f4faff;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-columns.company-detail .wp-block-column:has(h3):has(figure) {
    padding: 25px;
  }
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-detail .wp-block-column:has(h3):has(figure) h3 {
  font-size: 20px;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-columns.company-detail .wp-block-column:has(h3):has(figure) h3 {
    font-size: 22px;
  }
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-detail .wp-block-column:has(h3):has(figure) h3 + figure {
  margin-top: 15px;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-detail .wp-block-column:has(h3):has(figure) p {
  margin-bottom: 15px;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-group .wp-block-column:has(figure) {
  padding: 20px 15px;
  border-radius: 6px;
  border: 1px solid #015bac;
  background: #f4faff;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-group .wp-block-column:has(figure) h4 {
  color: #015bac;
  font-size: 18px;
  text-align: center;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-group .wp-block-column:has(figure) h4 + figure {
  margin-top: 15px;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-group .wp-block-column:has(figure) .wp-block-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 15px;
  background: #1f7acd;
  min-height: 130px;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-group .wp-block-column:has(figure) .wp-block-image img {
  max-height: 70px;
  max-width: 100px;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-group .wp-block-column:has(figure) p {
  margin-top: 15px;
  font-size: 15px;
}
.page-content:not(:has(.tochildlinks)) .wp-block-columns.company-group + * {
  margin-top: 60px;
}
.page-content:not(:has(.tochildlinks)) .icon-untenshashokuba {
  width: fit-content;
  box-sizing: content-box;
  padding-right: 50px;
  background: url(/wp-content/uploads/2025/06/Icon_Hatarakiyasui.jpg) 100% center/25px no-repeat;
}
.page-content:not(:has(.tochildlinks)) .icon-gmark_untenshashokuba {
  width: fit-content;
  box-sizing: content-box;
  padding-right: 90px;
  background: url(/wp-content/uploads/2025/06/Icon_G-mark.jpg) calc(100% - 35px) center/25px no-repeat, url(/wp-content/uploads/2025/06/Icon_Hatarakiyasui.jpg) 100% center/25px no-repeat;
}
.page-content:not(:has(.tochildlinks)) .icon-untenshashokuba.icon--before {
  width: fit-content;
  box-sizing: content-box;
  padding-top: 8px;
  padding-left: 40px;
  min-height: 35px;
  background: url(/wp-content/uploads/2025/06/Icon_Hatarakiyasui.jpg) 0 center/30px no-repeat;
  line-height: 1.4;
}
.page-content:not(:has(.tochildlinks)) .icon-gmark.icon--before {
  width: fit-content;
  box-sizing: content-box;
  padding-top: 8px;
  padding-left: 40px;
  min-height: 35px;
  background: url(/wp-content/uploads/2025/06/Icon_G-mark.jpg) 0 center/30px no-repeat;
  line-height: 1.4;
}
.page-content:not(:has(.tochildlinks)) .icon-kinki {
  width: fit-content;
  min-height: 40px;
  box-sizing: content-box;
  padding-right: 50px;
  background: url(/wp-content/uploads/2025/06/kinki-koun_logo.jpg) 100% center/40px no-repeat;
}
.page-content:not(:has(.tochildlinks)) .icon-kac {
  width: fit-content;
  min-height: 40px;
  box-sizing: content-box;
  padding-right: 100px;
  background: url(/wp-content/uploads/2025/06/kanto-aircargo_logo.jpg) 100% center/80px no-repeat;
}
.page-content:not(:has(.tochildlinks)) .icon-tandem {
  width: fit-content;
  min-height: 40px;
  box-sizing: content-box;
  padding-right: 100px;
  background: url(/wp-content/uploads/2025/06/tandemjapan_logo.jpg) 100% center/80px no-repeat;
}
.page-content:not(:has(.tochildlinks)) .icon-azumalogo {
  width: fit-content;
  min-height: 50px;
  box-sizing: content-box;
  padding-right: 100px;
  background: url(/wp-content/uploads/2025/02/apple-touch-icon.png) 100% center/80px no-repeat;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery.has-nested-images.is-cropped.about-certificate {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-content:not(:has(.tochildlinks)) .wp-block-gallery.has-nested-images.is-cropped.about-certificate .wp-block-image {
  border: 2px solid #ececec;
}
.page-content:not(:has(.tochildlinks)) .recruittitle {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .recruittitle {
    position: relative;
    margin-bottom: 80px;
  }
}
.page-content:not(:has(.tochildlinks)) .recruittitle p {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}
.page-content:not(:has(.tochildlinks)) .recruittitle p br {
  display: none;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .recruittitle p {
    position: absolute;
    left: 30px;
    bottom: 30px;
    font-size: 36px;
    color: #fff;
    text-shadow: 0 0 30px rgb(37, 109, 169);
  }
  .page-content:not(:has(.tochildlinks)) .recruittitle p br {
    display: block;
  }
}
.page-content:not(:has(.tochildlinks)) .ferry-sugestion {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .ferry-sugestion h3 {
    padding: 10px 20px;
    border-radius: 6px;
    background: #015bac;
    font-size: 20px;
    color: #fff;
  }
  .page-content:not(:has(.tochildlinks)) .ferry-sugestion h3:before {
    content: none;
  }
  .page-content:not(:has(.tochildlinks)) .ferry-sugestion h3:nth-of-type(2) {
    background: #3487d3;
  }
  .page-content:not(:has(.tochildlinks)) .ferry-sugestion h3:nth-of-type(3) {
    background: #72b7f5;
  }
}
.page-content:not(:has(.tochildlinks)) .ferry-sugestion h3:not(:first-child) {
  margin-top: 30px;
}
.page-content:not(:has(.tochildlinks)) .ferry-sugestion h3 + p {
  margin-top: 10px;
  line-height: 1.6;
}
.page-content:not(:has(.tochildlinks)) .ferry-sugestion h3 + ul {
  margin-top: 10px;
  line-height: 1.6;
}
.page-content:not(:has(.tochildlinks)) .ferry-sugestion .borderimg {
  padding: 10px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form dl {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .inquiry-form dl {
    display: flex;
    align-items: center;
  }
}
.page-content:not(:has(.tochildlinks)) .inquiry-form dl:nth-of-type(1) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.page-content:not(:has(.tochildlinks)) .inquiry-form dl dt {
  font-weight: 700;
  color: #015bac;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .inquiry-form dl dt {
    width: 250px;
  }
}
.page-content:not(:has(.tochildlinks)) .inquiry-form dl dd {
  flex: 1;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .inquiry-form dl dd {
    margin-top: 0;
  }
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .required dt:after,
.page-content:not(:has(.tochildlinks)) .inquiry-form .required .address-row__title:not(.notrequired):after {
  content: "必須";
  color: #fff;
  background: #dc0024;
  padding: 1px 10px 2px;
  border-radius: 3px;
  font-size: 12px;
  margin-left: 10px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form input,
.page-content:not(:has(.tochildlinks)) .inquiry-form textarea,
.page-content:not(:has(.tochildlinks)) .inquiry-form select {
  border: 1px solid #555;
  padding: 5px 10px;
  border-radius: 5px;
  padding: 15px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form input:focus,
.page-content:not(:has(.tochildlinks)) .inquiry-form textarea:focus,
.page-content:not(:has(.tochildlinks)) .inquiry-form select:focus {
  border-color: #015bac;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form input[type=text], .page-content:not(:has(.tochildlinks)) .inquiry-form input[type=email], .page-content:not(:has(.tochildlinks)) .inquiry-form input[type=tel],
.page-content:not(:has(.tochildlinks)) .inquiry-form textarea[type=text],
.page-content:not(:has(.tochildlinks)) .inquiry-form textarea[type=email],
.page-content:not(:has(.tochildlinks)) .inquiry-form textarea[type=tel],
.page-content:not(:has(.tochildlinks)) .inquiry-form select[type=text],
.page-content:not(:has(.tochildlinks)) .inquiry-form select[type=email],
.page-content:not(:has(.tochildlinks)) .inquiry-form select[type=tel] {
  width: 100%;
  height: 70px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form textarea {
  width: 100%;
  min-height: 200px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .button {
  width: 300px;
  height: 70px;
  margin: 50px auto 0;
  font-weight: 700;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .button:hover {
  border: 2px solid #015bac;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .button[disabled] {
  background: #bfbfbf;
  border: 2px solid #bfbfbf;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .button[disabled]:hover {
  background: #bfbfbf;
  color: #fff;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .branch-info {
  display: none;
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  border-radius: 6px;
  background: #f4faff;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .inquiry-form .branch-info {
    width: fit-content;
    margin-right: 20px;
  }
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .branch-info p {
  font-size: 14px;
  line-height: 1.4;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .branch-info p:nth-of-type(1) {
  font-weight: 700;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .branch-info p + p {
  margin-top: 10px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .check-row input {
  margin-right: 10px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .notice {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .address-row {
  display: grid;
  gap: 10px;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .inquiry-form .address-row {
    grid-template-columns: 170px 1fr;
  }
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .address-row__title {
  font-weight: 700;
  color: #015bac;
}
@media (min-width: 1024px) {
  .page-content:not(:has(.tochildlinks)) .inquiry-form .address-row__title {
    padding-top: 13px;
  }
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .address-row__input input,
.page-content:not(:has(.tochildlinks)) .inquiry-form .address-row__input select {
  height: 50px;
  padding: 5px 10px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .address-row [name=zip],
.page-content:not(:has(.tochildlinks)) .inquiry-form .address-row [name=pref] {
  width: 170px;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .count {
  font-size: 14px;
  font-weight: 400;
  color: #e91e1e;
}
.page-content:not(:has(.tochildlinks)) .inquiry-form .check-privacy {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  gap: 10px;
}
.page-content:not(:has(.tochildlinks)) .mw-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-content:not(:has(.tochildlinks)) .mw-500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.page-content:not(:has(.tochildlinks)) [target=_blank] {
  color: #015bac;
}
.page-content:not(:has(.tochildlinks)) [target=_blank]:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 9px;
  margin-left: 3px;
  background: url(images/icon-external.svg) no-repeat center center;
}

.wp-lightbox-overlay.zoom.active .scrim {
  background: rgba(0, 0, 0, 0.8) !important;
}

.wp-lightbox-overlay.zoom.active svg path {
  fill: #fff !important;
}

.single-content:not(:has(.tochildlinks)) h2 {
  padding-bottom: 0;
  border-bottom: none;
  font-size: 22px;
}
@media (min-width: 1024px) {
  .single-content:not(:has(.tochildlinks)) h2 {
    font-size: 24px;
  }
}
.single-content:not(:has(.tochildlinks)) h2 + p {
  margin-top: 10px;
}
.single-content:not(:has(.tochildlinks)) h3 {
  padding-left: 0;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .single-content:not(:has(.tochildlinks)) h3 {
    font-size: 16px;
  }
}
.single-content:not(:has(.tochildlinks)) h3:before {
  display: none;
}
.single-content:not(:has(.tochildlinks)) h3 + p {
  margin-top: 10px;
}

.other-content .ingrotext {
  display: none;
}

.backtotop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #015bac;
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, box-shadow 0.1s ease-in-out;
  pointer-events: none;
  border: 2px solid #fff;
  display: none;
}
@media (min-width: 1024px) {
  .backtotop {
    display: flex;
    bottom: 40px;
    right: 40px;
  }
}
.backtotop.is--active {
  opacity: 1;
  pointer-events: auto;
}
.backtotop:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 20%, 0% 100%, 100% 100%);
  background: #fff;
  transform: translateY(-1px);
}
.backtotop:hover {
  background: #fff;
  color: #015bac;
}
.backtotop:hover:after {
  background: #015bac;
}
.backtotop:hover:before {
  background: #015bac;
}

@media print {
  .site-header {
    position: static;
  }
  .site-header__nav-area {
    display: none;
  }
  .home-point {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .home-point__link {
    background: #000;
  }
  .mainvisual__english,
  .mainvisual__japanese {
    color: #fff;
  }
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery:has(.wp-block-image:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-content:not(:has(.tochildlinks)) .wp-block-gallery.columns-2:has(.wp-block-image:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
  figure.wp-block-gallery.has-nested-images.tochildlinks {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
