﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (max-width:480px) {
  html, body {
    font-size: 3.6vw;
  }
}
img {
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .pc {
      display: none;
  }
}
.tk-wrapper {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5vw;
}
.tk-wrapper__link {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
}
.site-header {
  position: fixed;
  top: 0rem;
  left: 0rem;
  right: 0rem;
  z-index: 10000;
  display: flex;
  width: 100%;
  height: 7.1875rem;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.site-header.is-invert-color {
  background-color: rgba(255, 255, 255, 0);
}
@media (min-width:1280px) {
  .site-header {
    width: 100%;
    padding: 0rem 1%;
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 1.25rem;
  }
}
@media (max-width:1280px) {
  .site-header {
    width: 100%;
    height: 3.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.site-header__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width:1280px) {
  .site-header__title {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 35rem;
  }
}
@media (max-width:1280px) {
  .site-header__title {
    width: 21.25rem;
  }
}
.site-header__title-logo {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 34%;
}
.site-header__title-logo-img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width:1280px) {
  .site-header__title-logo-img {
    width: 6.875rem;
  }
}
.site-header__title-sub {
  display: block;
  position: relative;
  -webkit-box-flex: 2;
  flex-grow: 2;
  flex-shrink: 2;
  flex-basis: 66%;
  height: auto;
}
.site-header__title-sub-img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(0.4375rem);
}
@media (max-width:1280px) {
  .site-header__title-sub-img {
    width: 13.125rem;
  }
}
.site-header__title-logo-img, .site-header__title-sub-img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.site-header__title-logo-img.is-image-normal, .site-header__title-sub-img.is-image-normal {
  opacity: 1;
}
.site-header.is-invert-color .site-header__title-logo-img.is-image-normal, .site-header.is-invert-color .site-header__title-sub-img.is-image-normal {
  opacity: 0;
}
.site-header__title-logo-img.is-image-invert, .site-header__title-sub-img.is-image-invert {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  width: 100%;
  height: 100%;
  margin: auto;
  opacity: 0;
}
.site-header.is-invert-color .site-header__title-logo-img.is-image-invert, .site-header.is-invert-color .site-header__title-sub-img.is-image-invert {
  opacity: 1;
}
@media (min-width:1280px) {
  .site-header__contents {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-shrink: 2;
    flex-basis: 65rem;
    padding: 1.125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 0.75rem 2.5rem;
  }
}
@media (max-width:1280px) {
  .site-header__contents {
    position: fixed;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    left: 0rem;
    inset: 0rem;
    width: 100vw;
    height: 100vh;
    padding: 3.75rem 5vw 1.25rem;
    box-sizing: border-box;
    z-index: 1999;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    background-color: rgba(28, 130, 224, 0.9);
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    opacity: 1;
  }
  .site-header:not(.is-open) .site-header__contents {
    visibility: hidden;
    -webkit-transition: opacity 0.4s, visibility 0s 1s;
    transition: opacity 0.4s, visibility 0s 1s;
    opacity: 0;
  }
}
.site-header__menubutton {
  display: none;
  position: relative;
  color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.site-header.is-invert-color .site-header__menubutton {
  color: #ffffff;
}
@media (max-width:1280px) {
  .site-header__menubutton {
    display: block;
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    z-index: 2000;
  }
}
.site-header__menubutton-icon {
  display: block;
  position: relative;
  margin-inline: auto;
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
}
.site-header__menubutton-icon-graphic {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  width: 1.875rem;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
  transform: -webkit- rotateZ(0deg);
  transform: rotateZ(0deg);
}
.site-header__menubutton-icon-graphic::before, .site-header__menubutton-icon-graphic::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: transform 0.4s, top 0.4s 0.4s;
  transition: transform 0.4s, top 0.4s 0.4s;
  transform: -webkit- rotateZ(0deg);
  transform: rotateZ(0deg);
}
.site-header__menubutton-icon-graphic::before {
  top: -0.5rem;
}
.site-header__menubutton-icon-graphic::after {
  top: 0.5rem;
}
.site-header.is-open .site-header__menubutton-icon-graphic {
  -webkit-transition: transform 0.4s 0.4s;
  transition: transform 0.4s 0.4s;
  transform: -webkit- rotateZ(135deg);
  transform: rotateZ(135deg);
  background-color: #ffffff;
}
.site-header.is-open .site-header__menubutton-icon-graphic::before, .site-header.is-open .site-header__menubutton-icon-graphic::after {
  top: 0rem;
  background-color: #ffffff;
  -webkit-transition: transform 0.4s 0.4s, top 0.4s;
  transition: transform 0.4s 0.4s, top 0.4s;
  transform: -webkit- rotateZ(90deg);
  transform: rotateZ(90deg);
}
.site-header__menubutton-label {
  margin-top: 0.25rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 0.625rem;
  color: currentColor;
  -webkit-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 1;
  transform: -webkit- translateY(0rem);
  transform: translateY(0rem);
}
.site-header.is-open .site-header__menubutton-label {
  color: #ffffff;
  opacity: 0;
  transform: -webkit- translateY(-0.5rem);
  transform: translateY(-0.5rem);
}
@media (max-width:1280px) {
  .site-header-submenu__item {
    padding: 0.5em 0rem;
  }
  .site-header-submenu__item-link {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header-submenu__item-link::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    background-image: url("/assets/img/common/icon_link.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header-submenu__item-link:hover {
    color: #1c82e0;
  }
  .site-header-submenu__item-link:hover::after {
    background-image: url(/assets/img/common/icon_link-hover.svg);
  }
}
@media (min-width:1280px) {
  .site-header-submenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    gap: 2.25rem;
    color: #000000;
  }
  .site-header.is-invert-color .site-header-submenu {
    color: #ffffff;
  }
  .site-header-submenu__item-link {
    font-size: 0.875rem;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
  }
  .site-header-submenu__item-link::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    background-color: currentColor;
    mask-image: url(/assets/img/common/icon_link.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(/assets/img/common/icon_link.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
  }
  .site-header-submenu__item-link:hover {
    color: #1c82e0;
  }
}
@media (max-width:1280px) {
  .site-header-langs {
    display: none;
  }
}
@media (min-width:1280px) {
  .site-header-langs {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    gap: 0.625rem;
  }
  .site-header.is-invert-color .site-header-langs {
    color: #ffffff;
  }
  .site-header-langs__item-link {
    font-size: 0.875rem;
    color: inherit;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.4;
  }
  .site-header-langs__item-link:hover {
    opacity: 1;
  }
  .site-header-langs__item-span {
    display: block;
    width: 0.125rem;
    height: 0.875rem;
    background-color: currentColor;
    transform: rotate(25deg) translateY(0.1875rem);
  }
  .site-header-langs .is-active {
    opacity: 1;
  }
  .site-header-langs .is-active::after {
    content: "";
    display: block;
    padding-top: 0.1875rem;
    border-bottom: 0.1875rem solid currentColor;
  }
}
@media (max-width:1280px) {
  .site-header-mainmenu {
    display: contents;
  }
  .site-header-mainmenu__items.is-main-items {
    order: -1;
    margin-bottom: 1em;
  }
  .site-header-mainmenu__items-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 1.25rem;
  }
  .site-header-mainmenu__items-item.is-contact .site-header-mainmenu__items-item-link {
    max-width: 25rem;
    width: 80%;
    padding: 1em;
    margin: 1em auto;
    text-align: center;
    color: #1C82E0;
    font-weight: 400;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    box-shadow: 0 2px 5px hsla(var(--tones-shd-h),var(--tones-shd-s),var(--tones-shd-l),var(--tones-shd-a));
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header-mainmenu__items-item.is-contact .site-header-mainmenu__items-item-link::after {
    background-color: #1C82E0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header-mainmenu__items-item.is-contact .site-header-mainmenu__items-item-link:hover {
    color: #fff;
    background-color: rgba(28, 130, 244, 0.6);
  }
  .site-header-mainmenu__items-item.is-contact .site-header-mainmenu__items-item-link:hover::after {
    background-color: #ffffff;
  }
  .site-header-mainmenu__items-item.is-home .site-header-mainmenu__items-item-link {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
  }
  .site-header-mainmenu__items-item.is-home .site-header-mainmenu__items-item-link::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url("/assets/img/common/icon_home.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header-mainmenu__items-item.is-home:hover .site-header-mainmenu__items-item-link::before {
    background-image: url("/assets/img/common/icon_home-hover.svg");
  }
  .site-header-mainmenu__items-item-link {
    width: 100%;
    padding: 1em 0rem;
    box-sizing: border-box;
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    grid-gap: 0.5em;
    align-items: center;
    border-bottom-style: solid;
    border-bottom-width: 0.0625rem;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header-mainmenu__items-item-link::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.75rem;
    background-color: #ffffff;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 80%, 70% 50%, 0% 20%);
  }
  .site-header-mainmenu__items-item-link:hover {
    color: #1C82E0;
  }
}
@media (min-width:1280px) {
  .site-header-mainmenu {
    position: relative;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    background-image: -webkit-linear-gradient(left, hsla(var(--tones-m-h),var(--tones-m-s),var(--tones-m-l),var(--tones-m-a)), 90deg);
    background-image: -moz-linear-gradient(left, hsla(var(--tones-m-h),var(--tones-m-s),var(--tones-m-l),var(--tones-m-a)), 90deg);
    background-image: -ms-linear-gradient(left, hsla(var(--tones-m-h),var(--tones-m-s),var(--tones-m-l),var(--tones-m-a)), 90deg);
    background-image: -o-linear-gradient(left, hsla(var(--tones-m-h),var(--tones-m-s),var(--tones-m-l),var(--tones-m-a)), 90deg);
    background-image: linear-gradient(90deg, hsla(var(--tones-m-h),var(--tones-m-s),var(--tones-m-l),var(--tones-m-a)), 90deg);
    color: #000000;
  }
  .site-header-mainmenu::before {
    content: "";
    display: block;
    position: absolute;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    left: 0rem;
    inset: 0rem;
    border-radius: 2rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
  }
  .site-header.is-invert-color .site-header-mainmenu::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(0, 130, 255, 0.5) 0%, rgba(147, 255, 255, 0.5) 100%);
  }
  .site-header.is-invert-color .site-header-mainmenu {
    color: #ffffff;
  }
  .site-header-mainmenu__items {
    position: relative;
    padding: 0.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .site-header-mainmenu__items.is-main-items {
    -webkit-box-flex: 4;
    flex-grow: 4;
    flex-shrink: 4;
    flex-basis: auto;
    padding: 0.75rem;
  }
  .site-header-mainmenu__items.is-primary-items {
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    padding: 0.75rem;
  }
  .site-header-mainmenu__items-item {
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 0.875rem;
  }
  .site-header-mainmenu__items-item + .site-header-mainmenu__items-item {
    border-left-style: solid;
    border-left-width: 0.0625rem;
  }
  .site-header-mainmenu__items-item.is-contact .site-header-mainmenu__items-item-link {
    padding: 1em;
    color: #1C82E0;
    text-decoration: none;
    border-style: solid;
    border-color: #1C82E0;
    border-width: 0.0625rem;
    border-radius: 1.5625rem;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header.is-invert-color .site-header-mainmenu__items-item.is-contact .site-header-mainmenu__items-item-link {
    border-color: transparent;
  }
  .site-header-mainmenu__items-item.is-contact .site-header-mainmenu__items-item-link:hover {
    color: #fff;
    background-color: rgba(28, 130, 244, 0.6);
  }
  .site-header-mainmenu__items-item.is-home .site-header-mainmenu__items-item-link::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5em;
    vertical-align: bottom;
    background-color: currentColor;
    mask-image: url(/assets/img/common/icon_home.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(/assets/img/common/icon_home.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
  }
  .site-header-mainmenu__items-item-link {
    display: block;
    width: 100%;
    padding: 0rem 0.5em;
    box-sizing: border-box;
    text-align: center;
    color: inherit;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header-mainmenu__items-item-link:hover {
    color: #1C82E0;
  }
}
@media (max-width:1280px) {
  .site-header-additionalmenu {
    margin-top: 1em;
    padding-top: 1.5em;
    border-top-style: solid;
    border-top-width: 0.0625rem;
    border-top-color: rgba(255, 255, 255, 0.5);
  }
  .site-header-additionalmenu__item {
    padding: 0.5em 0rem;
    font-size: 1rem;
    color: #ffffff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  }
  .site-header-additionalmenu__item-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
  }
  .site-header-additionalmenu__item-link:hover {
    opacity: 0.8;
  }
}
@media (min-width:1280px) {
  .site-header-additionalmenu {
    display: none;
  }
}
.tk-breadcrumb {
  margin-top: 9.75rem;
}
@media (max-width:1280px) {
  .tk-breadcrumb {
    margin-top: 5.75rem;
  }
}
.tk-breadcrumb__link {
  color: #000000;
  text-decoration: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}
.tk-breadcrumb__link:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-inline: 0.5em;
  background-color: #000000;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 85%, 65% 50%, 0% 15%);
}
.tk-pageheader__link {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
}
.tk-page-top {
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 600;
  font-size: 1.875rem;
  color: #000000;
}
.tk-page-top__title {
  margin-top: 1.75rem;
  font-family: "Noto Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #1C82E0;
  font-weight: 100;
  font-size: min(18vw, 5rem);
  line-height: 1.2;
}
.tk-page-top__sub-title {
  margin-top: 1.75rem;
}
.tk-section-title {
  position: relative;
  width: 100%;
}
.tk-section-title::after {
  content: "";
  position: absolute;
  top: -9rem;
  left: 0rem;
  z-index: -10;
  display: block;
  width: 100vw;
  height: 29.25rem;
  margin-left: calc(-50vw + 50%);
  background-image: url(/assets/img/common/img_background_section.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width:767px) {
  .tk-section-title::after {
    top: -5.25rem;
    height: 24rem;
  }
}
.tk-section-title__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin: 0rem auto;
  padding-top: 4.5rem;
}
@media (max-width:767px) {
  .tk-section-title__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tk-section-title__main {
  display: flex;
  align-items: center;
  padding-left: 2.25rem;
  border-left: 0.3125rem solid #1c82e0;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.3;
  text-align: left;
}
@media (max-width:767px) {
  .tk-section-title__main {
    padding-left: 1.75rem;
    font-size: 2.25rem;
  }
}
.tk-section-title__sub {
  flex: 1 0;
  padding-left: 2.625rem;
  font-family: "Noto Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width:767px) {
  .tk-section-title__sub {
    min-height: 0;
    padding-left: 2.5rem;
    font-size: clamp(1.5rem, 5vw, 2vw);
  }
}
.tk-btm-nav {
  width: 100vw;
  margin-top: -1.125rem;
  margin-left: calc(-50vw + 50%);
  background-color: #d2d8dd;
}
.tk-btm-nav__inner {
  display: flex;
  gap: 7.5rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.75rem 2.5rem;
}
@media (max-width:767px) {
  .tk-btm-nav__inner {
    width: 94%;
    justify-content: space-between;
    gap: 0;
    padding: 1.875rem 0;
  }
}
.tk-btm-nav__group {
  display: flex;
  gap: 7.5rem;
}
@media (max-width:767px) {
  .tk-btm-nav__group {
    flex-direction: column;
    gap: 1.875rem;
  }
}
.tk-btm-nav__list {
  display: flex;
  flex-direction: column;
}
.tk-btm-nav__item-link {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1C82E0;
  text-decoration: none;
  line-height: 2.2;
}
@media (max-width:767px) {
  .tk-btm-nav__item-link {
    font-size: 4vw;
  }
}
.tk-btm-nav__item-link:hover {
  text-decoration: underline;
}
.tk-btm-nav__sub-link {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
  line-height: 1.8;
}
.tk-btm-nav__sub-link:hover {
  text-decoration: underline;
}
@media (max-width:767px) {
  .tk-btm-nav__sub-link {
    font-size: 3.333vw;
  }
}
.tk-cf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.375rem;
}
@media (max-width:767px) {
  .tk-cf {
    flex-direction: column;
    width: 94%;
    height: auto;
    padding: 1.25rem 0;
  }
}
.tk-cf__copyright {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.5;
}
@media (max-width:767px) {
  .tk-cf__copyright {
    font-size: 2.2vw;
    line-height: 2;
  }
}
.tk-cf__list {
  display: flex;
  gap: 1.875rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000000;
}
.tk-cf__item-link {
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
}
@media (max-width:767px) {
  .tk-cf__item-link {
    font-size: 2.4vw;
  }
}
.tk-cf__item-link::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-image: url(/assets/img/home/icon_arrow.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(0.3125rem);
}
@media (max-width:767px) {
  .tk-cf__item-link::after {
    width: 2vw;
    height: 2vw;
    transform: translateX(0.3125rem);
  }
}
.tk-cf__item-link:hover {
  color: #1c82e0;
}
.tk-cf__item-link:hover::after {
  background-image: url(/assets/img/home/icon_arrow-sub.svg);
}
.cookie-confirm {
  visibility: hidden;
  z-index: 2000;
  position: fixed;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  background-color: #e6f5ff;
  -webkit-box-shadow: 0rem 0rem 1rem -0.375rem rgba(0, 0, 0, 0.2);
  box-shadow: 0rem 0rem 1rem -0.375rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .cookie-confirm {
      padding: 20px 0;
  }
}
.cookie-confirm-title {
  font-weight: bold;
}
.cookie-confirm-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width:767px) {
	.cookie-confirm-body {
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
	    flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
	    align-items: center;
	    row-gap: 15px;
	}
}
.cookie-confirm-body > p {
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .cookie-confirm-body > p {
      font-size: 12px;
  }
}
.cookie-confirm-body > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 1.25rem;
}
.cookie-confirm-body > ul > li:first-of-type {
  width: 10rem;
}
.cookie-confirm-body > ul > li:last-of-type {
  margin-left: 1.25rem;
}
@media (max-width:767px) {
	.cookie-confirm-body > ul > li:last-of-type {
		margin-left: 0;
	}
}
.cookie-confirm-body > ul > li:last-of-type > a {
  padding-right: 1.25rem;
  background-image: url(/img/common/icon_link.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 0.5rem;
  color: #333;
  font-size: 0.875rem;
}
.cookie-confirm-body > ul > li .btn {
  width: 100%;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .cookie-confirm-body > ul > li .btn {
      font-size: 13px;
  }
}
.cookie-confirm-body > ul > li .btn > a {
  min-height: 2.5rem;
  background-image: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 5px 0;
  border: 1px solid #dedede;
  background-color: #fff;
  background-position: right 20px center;
  background-repeat: no-repeat;
  color: #333;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cookie-confirm-body > ul > li .btn > a {
      min-height: 52px;
  }
}
.cookie-confirm.on {
  visibility: visible;
  bottom: 0;
  opacity: 1;
}
.cookie-confirm .contents-body {
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .cookie-confirm .contents-body {
      padding: 0 12px;
  }
}
.pageTop {
  position: fixed;
  right: 20px;
  bottom: 50px;
  text-align: center;
  z-index: 18;
}
.pageTop:hover {
  opacity: 0.7;
}
/*# sourceMappingURL=./common.css.map */