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

　common style for modern browser
　Version: 4.0

/////////////////////////////////////////////// */
/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@300;500;600&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.1ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em, address) {
  font-style: normal;
}

/* Module
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.5em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.5em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (max-width: 960px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (max-width: 520px) {
  .hidden-sp {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 960px) {
  .hidden-land {
    display: none;
  }
}
/* Utillity
----------------------------------------------- */
/* Text */
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  backface-visibility: hidden;
  transition: all 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a {
  text-decoration: none;
}
*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .btn:hover img {
    opacity: 1;
  }
}

/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text-base: #000;
  --color-main: #1E6BC6;
  --color-main2: #0056BC;
  --color-pink: #FFE0E0;
  --color-green: #DDFFA6;
  --color-blue: #B1E9FF;
  --color-bg-light: #EAE8E8;
  --font-noto: "Noto Sans", sans-serif;
  --font-alex: "Alexandria", sans-serif;
}
@media (min-width: 961px) {
  :root {
    --dist-header-height: 125px;
  }
}
@media (max-width: 1240px) {
  :root {
    --dist-header-height: 65px;
  }
}
@media (max-width: 960px) {
  :root {
    font-size: 0.875px;
  }
}

body {
  color: var(--color-text-base);
  font-size: 16rem;
  font-family: var(--font-noto);
  font-style:  normal;
  font-feature-settings: "palt";
}

:is(p) {
  line-height: 1.875;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.55;
}

:is(input, textarea, select, option) {
  font-size: 16rem;
}

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

.ffA {
  font-family: var(--font-alex);
}

/*

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

.mainContents {
  position: relative;
}
@media (min-width: 961px) {
  .mainContents {
    margin-top: calc(var(--dist-header-height) + 12px);
  }
}
@media (max-width: 960px) {
  .mainContents {
    margin-top: calc(var(--dist-header-height) + 9px);
  }
}

/*
  HEADER
----------------------------------------------- */
.header {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  height: var(--dist-header-height);
  max-width: 1400px;
  margin: auto;
}
.header::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}
@media (min-width: 961px) {
  .header {
    top: 12px;
    left: 16px;
    right: 16px;
    padding: 0 40px;
    gap: 15px;
  }
  .header::before {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}
@media (max-width: 1240px) {
  .header {
    top: 9px;
    left: 10px;
    right: 10px;
    padding: 0 20px;
    gap: 12px;
  }
  .header::before {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
.header .logo {
  position: relative;
  z-index: 2;
  margin-right: auto;
}
.header .logo a {
  display: flex;
  align-items: center;
}
@media (min-width: 961px) {
  .header .logo a {
    gap: 13px;
  }
}
@media (max-width: 1240px) {
  .header .logo a {
    gap: 5px;
  }
  .header .logo .mark {
    width: 48px;
  }
  .header .logo .text {
    width: 164px;
  }
}
.header .btn-member {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  border-radius: 50px;
  background-color: var(--color-main);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s;
}
.header .btn-member:hover {
  filter: brightness(1.1);
}
@media (min-width: 961px) {
  .header .btn-member {
    width: 204px;
    height: 50px;
  }
}
@media (max-width: 1240px) {
  .header > .btn-member {
    width: 45px;
    height: 29px;
  }
  .header > .btn-member i {
    width: 12px;
  }
  .header > .btn-member .label {
    display: none;
  }
}

/*
  MENU
----------------------------------------------- */
@media (min-width: 961px) {
  .gnav {
    position: relative;
    z-index: 2;
  }
  .gnav .btn-member {
    display: none;
  }
}
@media (max-width: 1240px) {
  .gnav {
    position: fixed;
    z-index: 0;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 110px 20px 20px;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
  }
}
.gnav-menu {
  display: flex;
}
.gnav-menu li {
  line-height: 1;
}
.gnav-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.gnav-menu a::after {
  position: absolute;
  bottom: -3px;
  left: 1em;
  right: 1em;
  height: 1px;
  content: "";
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.2s;
}
.gnav-menu a:hover::after {
  transform: scaleX(1);
}
@media (min-width: 961px) {
  .gnav-menu li + li {
    border-left: 1px solid currentColor;
  }
}
@media (max-width: 1240px) {
  .gnav-menu {
    flex-direction: column;
    gap: 2.1em;
  }
  .gnav-menu a {
    font-size: 18px;
  }
}
@media (max-width: 1240px) {
  .gnav .btn-member {
    width: 204px;
    height: 50px;
    margin: 60px auto 0;
  }
}

.isOpenMenu .gnav {
  opacity: 1;
  pointer-events: inherit;
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  display: none;
}
@media (max-width: 1240px) {
  .btnMenu {
    position: relative;
    z-index: 2;
    display: grid;
  }
}
.btnMenu::before, .btnMenu::after {
  content: "";
  grid-area: 1/1;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: 0.2s;
}
.btnMenu span {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 500;
  white-space: nowrap;
}
.btnMenu::after {
  transform: translateY(8px);
}

.isOpenMenu .btnMenu::before {
  rotate: 30deg;
}
.isOpenMenu .btnMenu::after {
  rotate: -210deg;
  transform: none;
}
.isOpenMenu .btnMenu span {
  display: none;
}

/*
  所在地
----------------------------------------------- */
.access {
  padding-left: calc(50% - 440px);
  padding-right: calc(50% - 440px);
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 940px) {
  .access {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 961px) {
  .access {
    margin-top: 140px;
    padding-bottom: 200px;
    grid-template-columns: 50% auto;
    gap: 50px 150px;
  }
}
@media (max-width: 960px) {
  .access {
    margin-top: 60px;
    padding-bottom: 100px;
  }
}
.access::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #E7F9FF;
}
@media (min-width: 961px) {
  .access::before {
    height: 385px;
  }
}
@media (max-width: 960px) {
  .access::before {
    height: 205px;
  }
}
.access-image {
  border-radius: 50px 0 50px 0;
  overflow: hidden;
}
.access-image img {
  width: 100%;
}
@media (min-width: 961px) {
  .access-image {
    grid-area: 1/2/2/3;
  }
}
@media (max-width: 960px) {
  .access-image {
    margin-bottom: 45px;
  }
}
.access-text address {
  margin-top: 1.8em;
  line-height: 1.5;
  font-style: normal;
}
.access-text a {
  text-decoration: none;
}
.access-map .gmap {
  position: relative;
  aspect-ratio: 880/387;
}
.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.access-map .google {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 151px;
  height: 32px;
  padding-bottom: 0.1em;
  border: 1px solid currentColor;
  border-radius: 32px;
  text-decoration: none;
  transition: 0.2s;
}
.access-map .google:hover {
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}
@media (min-width: 961px) {
  .access-map {
    grid-area: 2/1/3/3;
  }
  .access-map .google {
    margin: 25px 0 0 auto;
  }
}
@media (max-width: 960px) {
  .access-map {
    margin: 25px -30px 0;
  }
  .access-map .google {
    margin: 20px auto 0;
  }
}
@media (max-width: 520px) {
  .access-map .gmap {
    aspect-ratio: 389/307;
  }
}

/*
  FOOTER
----------------------------------------------- */
.footer {
  position: relative;
  padding-left: calc(50% - 580px);
  padding-right: calc(50% - 580px);
  background: linear-gradient(#0056BC, #0A2E58);
  display: grid;
  align-items: start;
  color: #fff;
}
@media screen and (max-width: 1220px) {
  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 961px) {
  .footer {
    padding-top: 140px;
    padding-bottom: 30px;
    grid-template-columns: auto auto auto;
    gap: 70px 100px;
  }
}
@media (max-width: 960px) {
  .footer {
    padding-top: 85px;
    padding-bottom: 30px;
    gap: 80px;
  }
}
.footer .loop-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  color: var(--color-main);
  font-family: var(--font-alex);
  letter-spacing: 0.05em;
}
@media (min-width: 961px) {
  .footer .loop-text {
    height: 50px;
    font-size: 20rem;
  }
}
@media (max-width: 960px) {
  .footer .loop-text {
    height: 40px;
  }
}
.footer .loop-text .slick-slide {
  margin: 0 0.5em;
}
@media (max-width: 960px) {
  .footer .info {
    width: fit-content;
    margin: auto;
  }
}
.footer .info .logo {
  display: flex;
  align-items: center;
}
@media (min-width: 961px) {
  .footer .info .logo {
    gap: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 960px) {
  .footer .info .logo {
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer .info .logo .mark {
    width: 75px;
  }
  .footer .info .logo .text {
    width: 251px;
  }
}
.footer .info address {
  margin-bottom: 10px;
  line-height: 1.55;
  font-size: 14px;
}
.footer .info .cta {
  line-height: 1.2;
}
.footer .info .cta a {
  text-decoration: none;
}
@media (min-width: 961px) {
  .footer .info .cta {
    font-size: 25rem;
  }
}
@media (max-width: 960px) {
  .footer .info .cta {
    font-size: 20px;
  }
}
.footer .menu {
  white-space: nowrap;
}
.footer .menu > ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 40px;
}
.footer .menu > ul > li {
  font-weight: 500;
}
.footer .menu > ul > li:last-of-type {
  grid-area: 1/2/5/3;
}
.footer .menu > ul > li ul {
  padding: 0.5em 0 1.3em 1em;
}
.footer .menu > ul > li li {
  font-weight: 400;
  font-size: 14rem;
  line-height: 1.9;
}
@media (max-width: 960px) {
  .footer .menu {
    display: none;
  }
}
.footer .buttons {
  display: grid;
}
.footer .buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 170px;
  height: 50px;
  border: 1px solid #fff;
  text-decoration: none;
  white-space: nowrap;
}
.footer .buttons a:hover {
  background-color: #fff;
  color: var(--color-main);
}
@media (min-width: 961px) {
  .footer .buttons {
    gap: 25px;
  }
}
@media (max-width: 960px) {
  .footer .buttons {
    gap: 15px;
    justify-items: center;
  }
  .footer .buttons a {
    width: 277px;
  }
}
.footer .copyright {
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-family: var(--font-alex);
  line-height: 1.25;
}
@media (min-width: 961px) {
  .footer .copyright {
    grid-area: 2/1/3/4;
    font-size: 14rem;
  }
}
.footer .pagetop {
  position: fixed;
  z-index: 9;
  bottom: 45px;
  right: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  aspect-ratio: 1/1;
  padding-top: 35px;
  background: url(../img/common/mrk-up.svg) no-repeat center 16px;
  background-color: var(--color-main);
  border-radius: 50%;
  font-family: var(--font-alex);
  font-size: 20rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: 0.2s;
}
.footer .pagetop:hover {
  background-position: center 10px;
}
@media (max-width: 1080px) {
  .footer .pagetop {
    right: 20px;
  }
}
@media (max-width: 960px) {
  .footer .pagetop {
    display: none;
  }
}

/*
  modules
----------------------------------------------- */
/* intersection */
.intersection.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1s, opacity 0.5s;
}
.intersection.view.fadeUp {
  transform: none;
  opacity: 1;
}
.intersection.delay1 {
  transition-delay: 0.2s;
}
.intersection.delay2 {
  transition-delay: 0.4s;
}
.intersection.delay3 {
  transition-delay: 0.6s;
}
.intersection.delay4 {
  transition-delay: 0.8s;
}
.intersection.group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1s, opacity 0.5s;
}
.intersection.group.view > *:nth-of-type(2) {
  transition-delay: 0.2s;
}
.intersection.group.view > *:nth-of-type(3) {
  transition-delay: 0.4s;
}
.intersection.group.view > *:nth-of-type(4) {
  transition-delay: 0.6s;
}
.intersection.group.view > * {
  transform: none;
  opacity: 1;
}

/* 右アイコンつきリンク */
.link-right {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  font-family: var(--font-alex);
  text-decoration: none;
  line-height: 1;
}
.link-right::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  background: url(../img/common/mrk-right.svg) no-repeat center;
  background-color: currentColor;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: 0.2s;
}
.link-right:hover::after {
  background-position: 80% 50%;
}
@media (min-width: 961px) {
  .link-right {
    min-height: 40px;
    margin-right: 50px;
  }
  .link-right::after {
    width: 40px;
    right: -50px;
  }
}
@media (max-width: 960px) {
  .link-right {
    min-height: 30px;
    margin-right: 40px;
  }
  .link-right::after {
    width: 30px;
    right: -40px;
    background-size: 18px;
  }
}

/* テキストを表示させるアニメーション */
.line-anim {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.line-anim::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: var(--color-main);
  transform: scale(0, 1);
}
.line-anim .txt {
  opacity: 0;
}
.line-anim.view::before {
  animation: lineAnim 1s cubic-bezier(0.6, 0.05, 0.28, 0.91) both;
}
.line-anim.view .txt {
  opacity: 1;
  transition-delay: 0.5s;
}

@keyframes lineAnim {
  0% {
    transform: scale(0, 1);
    transform-origin: left center;
  }
  40% {
    transform: scale(1, 1);
    transform-origin: left center;
  }
  60% {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right center;
  }
}
/* 文字を1文字づつ表示させる */
.splitText > * {
  display: inline-block;
  translate: -0.2em;
  opacity: 0;
  transition: 0.6s;
}
.splitText.view > * {
  translate: 0;
  opacity: 1;
}

/* SCROLL */
.scroll {
  position: absolute;
  top: 355px;
  left: 100px;
  padding: 0 2px;
  padding-bottom: 210px;
  background: url(../img/common/scroll.svg) no-repeat right bottom;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-weight: 500;
  transition: 0.1s;
}
.scroll .label {
  display: inline-block;
  rotate: 180deg;
}
@media (max-width: 1300px) {
  .scroll {
    left: 10px;
  }
}
@media (max-width: 960px) {
  .scroll {
    display: none;
  }
}

/* タイトル */
.page-title {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.6em;
  background: url(../img/common/bg-pagetitle.jpg) no-repeat center/cover;
}
@media (min-width: 961px) {
  .page-title {
    height: 190px;
    margin-bottom: 30px;
  }
}
@media (max-width: 960px) {
  .page-title {
    height: 120px;
    margin-bottom: 20px;
  }
}
.page-title .ja {
  font-weight: 700;
}
@media (min-width: 961px) {
  .page-title .ja {
    font-size: 40rem;
  }
}
@media (max-width: 960px) {
  .page-title .ja {
    font-size: 20px;
  }
}
.page-title .en {
  color: var(--color-main);
  font-family: var(--font-alex);
  font-weight: 500;
}
@media (min-width: 961px) {
  .page-title .en {
    font-size: 25rem;
  }
}
@media (max-width: 960px) {
  .page-title .en {
    font-size: 14px;
  }
}

/* 右にライン付きタイトル */
.heading {
  display: grid;
  gap: 0.8em;
  line-height: 1.2;
}
.heading .en {
  display: flex;
  align-items: center;
  color: var(--color-main);
  font-weight: 600;
  font-family: var(--font-alex);
  letter-spacing: 0.04em;
}
.heading .en span:last-of-type {
  background-color: currentColor;
  margin-left: 0.3em;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: 0.4s;
}
.heading .en.notLast span:last-of-type {
  margin-left: 0;
  width: inherit;
  height: inherit;
  background-color: transparent;
  transform: none;
  transition: 0.6s;
}
.heading .en.view span:last-of-type {
  transform: scale(1, 1);
}
.heading .ja {
  font-weight: 400;
}
@media (min-width: 961px) {
  .heading .en {
    font-size: 60rem;
  }
  .heading .en span:last-of-type {
    width: 156px;
  }
  .heading .ja {
    font-size: 40rem;
  }
}
@media (max-width: 960px) {
  .heading .en {
    font-size: 30px;
  }
  .heading .en span:last-of-type {
    width: 98px;
  }
  .heading .ja {
    font-size: 25px;
  }
}

.h3 {
  margin-bottom: 1.1em;
  border-top: 1px solid var(--color-text-base);
  font-weight: 500;
  line-height: 1.4;
}
.h3::before {
  display: block;
  margin-bottom: 0.55em;
  content: "";
  width: 135px;
  height: 8px;
  background-color: var(--color-main);
}
@media (min-width: 961px) {
  .h3 {
    font-size: 35rem;
  }
}
@media (max-width: 960px) {
  .h3 {
    font-size: 20px;
  }
  .h3::before {
    width: 80px;
    height: 4px;
  }
}

/* パンくず */
.breadcrumb {
  padding-left: calc(50% - 340px);
  padding-right: calc(50% - 340px);
}
@media screen and (max-width: 740px) {
  .breadcrumb {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.breadcrumb > * + * {
  position: relative;
  margin-left: 1em;
}
.breadcrumb > * + *::before {
  position: absolute;
  left: -0.9em;
  content: ">";
}
@media (min-width: 961px) {
  .breadcrumb {
    margin-bottom: 85px;
  }
}
@media (max-width: 960px) {
  .breadcrumb {
    margin-bottom: 40px;
  }
}

/* section */
.sec {
  padding-left: calc(50% - 340px);
  padding-right: calc(50% - 340px);
}
@media screen and (max-width: 740px) {
  .sec {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.sec.gray {
  background-color: var(--color-bg-light);
}

/* button */
.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5em;
  height: 70px;
  border: 1px solid var(--color-main2);
  border-radius: 50px;
  background-color: #fff;
  color: var(--color-main2);
  font-size: 20rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}
@media (max-width: 960px) {
  .button {
    height: 55px;
    font-size: 16px;
  }
}
.button.blue {
  background-color: var(--color-main2);
  color: #fff;
  font-weight: 400;
}
.button.blue small {
  font-size: 14rem;
}
.button.blue::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  background: url(../img/common/mrk-right-blue.svg) no-repeat center;
  background-color: currentColor;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: 0.2s;
}
@media (min-width: 961px) {
  .button.blue {
    width: 430px;
    height: 94px;
  }
  .button.blue::after {
    width: 40px;
    right: 25px;
  }
}
@media (max-width: 960px) {
  .button.blue {
    height: 65px;
  }
  .button.blue::after {
    width: 30px;
    right: 20px;
    background-size: 18px;
  }
}
.button.blue:hover::after {
  background-position: 80% 50%;
}
.button.pdf {
  background-image: url(../img/common/ico-pdf.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
}
@media (max-width: 960px) {
  .button.pdf {
    background-size: 24px;
  }
}
.button.many {
  padding-right: 20px;
}
.button:hover {
  filter: brightness(0.95);
}

/* adobeへのリンク */
.button-adobe {
  margin-top: 25px;
  text-align: right;
}

/* ページ下部の他ページリンク */
.other-contents {
  display: grid;
}
@media (min-width: 521px) {
  .other-contents.two {
    padding-left: calc(50% - 280px);
    padding-right: calc(50% - 280px);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 521px) and (max-width: 620px) {
  .other-contents.two {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 521px) {
  .other-contents.three {
    padding-left: calc(50% - 440px);
    padding-right: calc(50% - 440px);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 521px) and (max-width: 940px) {
  .other-contents.three {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 961px) {
  .other-contents {
    margin-bottom: 200px;
  }
  .other-contents.two {
    gap: 60px 25px;
  }
  .other-contents.three {
    gap: 60px 35px;
  }
}
@media (max-width: 960px) {
  .other-contents {
    margin-bottom: 100px;
    padding-inline: 30px;
  }
  .other-contents.two {
    gap: 60px 20px;
  }
  .other-contents.three {
    gap: 60px 20px;
  }
}
@media (max-width: 520px) {
  .other-contents {
    gap: 40px;
  }
}
.other-contents a {
  text-decoration: none;
}
.other-contents a:hover .link-right::after {
  background-position: 80% 50%;
}
.other-contents img {
  width: 100%;
}
.other-contents .link-right {
  margin-top: 20px;
  border-bottom: none;
  display: grid;
  gap: 0.5em;
}
.other-contents .en {
  color: var(--color-main);
  font-size: 14rem;
}
.other-contents .ja {
  font-family: var(--font-noto);
  font-size: 22rem;
  font-weight: 500;
}
@media (max-width: 960px) {
  .other-contents .ja {
    font-size: 17px;
  }
}

/* ページナビ */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: auto;
  position: relative;
}
.wp-pagenavi > * {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (min-width: 961px) {
  .wp-pagenavi {
    margin-top: 70px;
  }
}
@media (max-width: 960px) {
  .wp-pagenavi {
    margin-top: 50px;
  }
}
.wp-pagenavi :not([rel=prev], [rel=next]) {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 1.8em;
}
.wp-pagenavi a:hover {
  text-decoration: underline;
}
.wp-pagenavi [rel=prev], .wp-pagenavi [rel=next] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wp-pagenavi [rel=prev] {
  left: -4.5em;
}
.wp-pagenavi [rel=next] {
  right: -4.5em;
}/*# sourceMappingURL=base.css.map */