@charset "UTF-8";
html {
  font-size: 100%;
}
body {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background-color: #FFF;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6875;
  letter-spacing: 0.04em;
  word-break: break-word;
  word-wrap: break-word;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}
li {
  line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1;
}
a {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition-property: opacity, visibility, color, background-color;
  -o-transition-property: opacity, visibility, color, background-color;
  transition-property: opacity, visibility, color, background-color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media screen and (max-width: 768px) {
  a {
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
  }
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.7;
  }
}
a:active, a:focus {
  outline: none;
}
a.external {
  color: #F9582D;
  position: relative;
  border-bottom: 1px solid #F9582D;
  -webkit-transition-property: color, background-color;
  -o-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  a.external {
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
  }
}
a.external::after {
  content: "";
  background-image: url("../media/images/common/icon_external-link.svg");
  background-size: cover;
  width: 10px;
  height: 10px;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  a.external:hover {
    border-bottom-color: transparent;
    -webkit-transition-property: color, background-color;
    -o-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    opacity: 1;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  a.external:hover {
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
  }
}
@media screen and (min-width: 769px) {
  .tab_only, .sp_only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_only, .sp_only {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sp_only {
    display: block;
  }
}
#wholewrapper {
  display: flex;
  flex-flow: column;
  min-height: 100svh;
}
#wholewrapper.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
#wholewrapper.fixed .fixbnr {
  display: none;
}
main {
  flex: 1;
  margin-top: -70px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: -70px;
  }
}
span.break {
  display: block;
}
@media screen and (min-width: 769px) {
  span.break-pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  span.break-sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  span.break-sp_s {
    display: block;
  }
}
/** header **/
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 9px 0;
  color: #FFF;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.header__inner {
  margin: 0 auto;
  max-width: 100%;
  max-width: 1300px;
  padding: 0 10px 0 20px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.header__logo {
  padding-top: 10px;
}
@media screen and (max-width: 480px) {
  .header__logo img {
    width: 200px;
    height: auto;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .header__nav-list {
    gap: 24px;
    height: 50px;
  }
}
@media screen and (max-width: 1120px) {
  .header__nav-list {
    flex-direction: column;
    gap: 16px;
    height: auto;
  }
}
.header__nav-list a {
  color: #FFF;
}
@media screen and (max-width: 1120px) {
  .header__nav-button {
    position: static;
  }
}
@media screen and (max-width: 1120px) {
  .header__nav-button .button {
    font-size: 16px;
    font-weight: 700;
    width: 300px;
    line-height: 38px;
  }
}
@media screen and (max-width: 1120px) {
  .header .header__nav-outer {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
    background: #000;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .header .header__nav-outer::-webkit-scrollbar {
    display: none;
  }
  .header .header__nav-outer a {
    color: #FFF;
    display: block;
  }
  .header .header__nav-outer__inner {
    padding-top: 40px;
    margin-left: 35px;
    margin-right: 70px;
  }
  .header .header__nav-outer__logo {
    width: 230px;
    height: 32px;
    margin-bottom: 60px;
  }
  .header .menuBtn {
    position: absolute;
    top: 40px;
    right: 35px;
    width: 40px;
    height: 40px;
    padding: 10px 5px;
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 200;
    -webkit-transform: translateZ(5px);
    transform: translateZ(5px);
  }
  .header .menuBtn:hover {
    cursor: pointer;
  }
  .header .menuBtn::after {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    z-index: 201;
  }
  .header .menuBtn span {
    display: inline-block;
    width: 22px;
    border-top: 2px solid #FFF;
    -webkit-transition-property: opacity, color, background-color, -webkit-transform;
    transition-property: opacity, color, background-color, -webkit-transform;
    -o-transition-property: opacity, transform, color, background-color;
    transition-property: opacity, transform, color, background-color;
    transition-property: opacity, transform, color, background-color, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .header .menuBtn span::after {
    content: "";
  }
  .header .menuBtn.active {
    background: transparent;
    position: fixed;
  }
  .header .menuBtn.active span {
    border-color: #FFF;
  }
  .header .menuBtn.active span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-225deg);
    transform: translateY(7px) rotate(-225deg);
  }
  .header .menuBtn.active span:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }
  .header .menuBtn.active span:nth-of-type(3) {
    -webkit-transform: translateX(0) translateY(-7px) rotate(-135deg);
    transform: translateX(0) translateY(-7px) rotate(-135deg);
  }
  .header .header__nav {
    height: calc(100svh - 50px);
    display: none;
    align-items: center;
    justify-content: center;
  }
  .header .header__nav-list {
    margin-top: -50px;
    width: 100%;
  }
  .header .header__nav-list li {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
  }
  .header .header__nav-list li:last-child {
    margin-bottom: 0;
  }
  .header .header__nav-list li .button {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .header .header__nav-outer__inner {
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .header .header__nav-outer__logo {
    width: 178px;
    height: 30px;
    margin: 20px 0 0 25px;
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .header .menuBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 66px;
    height: 72px;
    top: -6px;
    right: 0;
    padding: 28px 21px;
    background-color: transparent;
  }
}
@media screen and (max-width: 1120px) and (max-width: 768px) {
  .header .menuBtn span {
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .header .menuBtn span {
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .header .header__nav {
    display: flex;
    max-height: 100svh;
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .header .header__nav-list {
    overflow: auto;
    max-height: 100svh;
    margin-top: 30px;
    padding: 40px 0;
  }
}
/** footer **/
.footer {
  background: #000;
  color: #FFF;
  background: url(../media/images/common/bg_footer.jpg) no-repeat top left / cover;
}
.footer a {
  color: #FFF;
}
.footer__inner {
  margin: 0 auto;
  max-width: calc(1100px + (20px * 2));
  padding: 44px 20px 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px 20px;
  }
}
.footer__logo {
  width: 50%;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 100%;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    width: 250px;
    display: block;
  }
}
.footer__contact {
  width: 50%;
  max-width: 390px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    width: 100%;
    padding-right: 0;
  }
}
.footer__contact-head {
  font-size: 20px;
  font-weight: 900;
  border-bottom: 1px solid #FFF;
  margin: 0 0 16px;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .footer__contact-head {
    font-size: 16px;
    font-weight: 900;
  }
}
.footer__contact a {
  display: inline-block;
  pointer-events: none;
}
.footer__contact-address {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .footer__contact-address {
    font-size: 12px;
    font-weight: 900;
  }
}
.footer__policy {
  color: #FFF;
  margin: 0 auto;
  max-width: calc(1100px + (20px * 2));
  padding: 0px 20px 4px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer__policy {
    font-size: 10px;
    font-weight: 400;
  }
}
.footer__policy a {
  text-decoration: underline;
}
.footer__copyright {
  color: #FFF;
  margin: 0 auto;
  max-width: calc(1100px + (20px * 2));
  padding: 0px 20px 20px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
    font-weight: 900;
  }
}
/** button **/
.button {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
  position: relative;
  width: 360px;
  padding: 18px 0 20px;
  line-height: 1.25;
  overflow: hidden;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 9999px;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .button {
    font-size: 22px;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 16px;
    font-weight: 700;
    max-width: 360px;
    width: 100%;
    padding: 16px 0 18px;
  }
}
@media screen and (min-width: 769px) {
  .button:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
.button--positive {
  color: #FFF;
  border: 2px solid #F9582D;
  background: #F9582D;
  width: 100%;
  max-width: 360px;
}
.button--normal {
  color: #F9582D;
  border: 2px solid #F9582D;
  background: #FFF;
  width: 100%;
  max-width: 360px;
}
.button--normal:disabled {
  color: #FFF;
}
.button--alternative {
  color: #F9582D;
  border: 2px solid #F9582D;
  background: #FFF;
  width: 100%;
  max-width: 360px;
}
.button.link {
  position: relative;
}
.button.link::after {
  content: "";
  background-image: url("../media/images/common/icon_chevron-right--white.svg");
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.button.link.button--alternative::after {
  background-image: url("../media/images/common/icon_chevron-right--orange.svg");
}
.button--top {
  color: #FFF;
  border: 2px solid #F9582D;
  background: transparent;
  width: 190px;
  line-height: 46px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .button--top {
    width: 120px;
    border-radius: 20px;
    line-height: 30px;
    font-size: 11px;
    font-weight: 400;
  }
}
@media screen and (max-width: 480px) {
  .button--top {
    width: 100px;
  }
}
.button--regist {
  color: #FFF;
  border: 2px solid #FFF;
  background: #F9582D;
  width: 200px;
  line-height: 46px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .button--regist {
    background: #F9582D;
  }
}
@media screen and (max-width: 768px) {
  .button--regist {
    width: 120px;
    border-radius: 20px;
    line-height: 30px;
    font-size: 11px;
    font-weight: 400;
  }
}
@media screen and (max-width: 480px) {
  .button--regist {
    width: 100px;
  }
}
.button--mypage {
  color: #FFF;
  border: 2px solid #F9582D;
  background: #F9582D;
  width: 170px;
  line-height: 46px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .button--mypage {
    background: #F9582D;
  }
}
@media screen and (max-width: 768px) {
  .button--mypage {
    width: 120px;
    border-radius: 20px;
    line-height: 30px;
    font-size: 11px;
    font-weight: 400;
  }
}
@media screen and (max-width: 480px) {
  .button--mypage {
    width: 100px;
  }
}
.button--small {
  font-size: 16px;
  font-weight: 700;
  width: 360px;
  padding: 21px 0 23px;
  border-radius: 40px;
}
.button--no-active {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.24;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .button--no-active {
    font-size: 15px;
  }
}
.button:disabled {
  border-color: #737373;
  background-color: #737373;
  cursor: default;
}
.button:disabled.link::after {
  background-image: url("../media/images/common/icon_chevron-right--white.svg");
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .button:disabled:hover {
    opacity: 1;
  }
}
/** 下層タイトル **/
.page-heading {
  background: #000;
  color: #FFF;
  padding: 93px 0 0;
  height: 300px;
  background: url(../media/images/common/kv2025bg.webp) no-repeat center center / 100% auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .page-heading {
    padding-top: 98px;
  }
}
@media screen and (max-width: 768px) {
  .page-heading {
    padding-top: 98px;
    height: 250px;
    margin-bottom: 50px;
    background-size: 165% auto;
  }
}
.page-heading.ignite {
  padding: 96px 0 0;
}
@media screen and (max-width: 768px) {
  .page-heading.ignite {
    padding-top: 98px;
  }
}
.page-heading.ignite h1 {
  font-size: 46px;
  font-weight: 700;
  max-width: calc(1060px + (20px * 2));
  padding: 0 20px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .page-heading.ignite h1 {
    font-size: 34px;
    font-weight: 700;
  }
}
@media screen and (max-width: 480px) {
  .page-heading.ignite h1 {
    font-size: 28px;
    font-weight: 700;
  }
}
.page-heading.ignite h1 img {
  height: 39px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .page-heading.ignite h1 img {
    height: 30px;
  }
}
@media screen and (max-width: 480px) {
  .page-heading.ignite h1 img {
    height: 25px;
  }
}
.page-heading.ondemand {
  height: 240px;
}
@media screen and (max-width: 768px) {
  .page-heading.ondemand {
    height: 210px;
  }
}
@media screen and (max-width: 480px) {
  .page-heading.ondemand {
    height: 190px;
  }
}
.page-heading h1 {
  max-width: calc(1140px + (80px * 2));
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
  font-size: 46px;
  font-weight: 900;
  position: relative;
  z-index: 5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1000px) {
  .page-heading h1 {
    font-size: 40px;
    font-weight: 900;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-heading h1 {
    font-size: 40px;
    font-weight: 900;
    padding: 0 20px;
    text-shadow: 1px 2px 3px #00000029;
  }
}
.page-heading h2.sub {
  max-width: calc(1140px + (80px * 2));
  max-width: 1300px;
  padding: 0 80px;
  margin: 25px auto 0;
  font-size: 46px;
  font-weight: 700;
  display: block;
  position: relative;
  z-index: 5;
  line-height: 1.1;
}
@media screen and (max-width: 1000px) {
  .page-heading h2.sub {
    font-size: 30px;
    font-weight: 900;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-heading h2.sub {
    font-size: 20px;
    font-weight: 900;
    padding: 0 20px;
    margin: 15px auto 0;
    text-shadow: 1px 2px 3px #00000029;
  }
}
/** エラーページ **/
.main.error {
  margin: 0 auto 150px;
  max-width: calc(1000px + (20px * 2));
  padding: 0 20px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main.error {
    margin: 0 auto 100px;
  }
}
.main.error .button {
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .main.error .button {
    margin: 30px 0 0;
  }
}
/** ドロップダウンスタイル **/
.dropdown__content {
  display: none;
}
/** モーダルスタイル **/
.modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #FFF;
  color: #000;
  z-index: 101;
  width: 90%;
  max-width: 900px;
  height: auto;
  max-height: 90%;
  border-radius: 3px;
  background: #FFF url(../media/images/top/modal_bg.jpg) no-repeat top left / cover;
}
.modal.visible {
  opacity: 1;
  visibility: visible;
}
.modal__outer {
  overflow: auto;
  height: 100%;
}
.modal__card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .modal__card {
    flex-direction: column;
  }
}
.modal__inner {
  overflow: hidden;
  padding: 42px 30px;
  height: 100%;
  max-height: 90svh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 40px 50px;
}
.modal__inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal__inner {
    padding: 40px 25px 30px;
  }
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 101;
  display: block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: #FFF;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 47px;
  height: 47px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background: #F9582D;
  border-radius: 0 3px 0 0;
  max-height: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__bg {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
/** FIXバナー **/
.fixbnr {
  background-color: #F9582D;
  border-radius: 20px 0 0 20px;
  width: 80px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
  right: 0;
  bottom: 40%;
  z-index: 3;
  position: sticky;
  z-index: 50;
  height: 0;
}
@media screen and (max-width: 1000px) {
  .fixbnr {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fixbnr {
    width: 100%;
    height: auto;
    bottom: 0;
    border-radius: 0;
  }
}
.fixbnr a {
  background-color: #F9582D;
  padding: 0;
  color: #FFF;
  letter-spacing: 0.2em;
  line-height: 1.2;
  border-radius: 20px 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 300px;
  font-size: 24px;
  font-weight: 700;
  transition: all 300ms 0s ease;
  transform: translateX(0px);
  border: 1px solid #fb8363;
}
@media screen and (min-width: 769px) {
  .fixbnr a {
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 1000px) {
  .fixbnr a {
    width: 60px;
    height: 280px;
    font-size: 22px;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .fixbnr a {
    width: 100%;
    height: auto;
    padding: 15px 10px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
  }
}
.fixbnr a img {
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .fixbnr a img {
    margin-top: 3px;
    margin-left: 10px;
    width: 13px;
    verical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .fixbnr:hover a {
    transition: all 300ms 0s ease;
    transform: translateX(10px);
    opacity: 1;
  }
}
/** dlスタイル  **/
.datatable {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  border-top: 1px solid #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .datatable {
    display: flex;
    align-items: stretch;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin-top: 0;
  }
}
.datatable::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .datatable::after {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .datatable::after {
    width: 100%;
    height: 0;
  }
}
.datatable__title {
  padding: 0 10px 0 20px;
  width: 120px;
  border-bottom: 1px solid #000;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .datatable__title {
    padding: 0 10px 0 10px;
    font-size: 16px;
    font-weight: 700;
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .datatable__title {
    padding: 15px 0 0 0;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    border: none;
  }
}
.datatable__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .datatable__title::after {
    width: 100%;
    height: 0;
  }
}
.datatable__data {
  padding: 27px 0 26px 40px;
  width: calc(100% - 120px);
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1000px) {
  .datatable__data {
    font-size: 14px;
    font-weight: 400;
    width: calc(100% - 100px);
    padding: 30px 0 31px 30px;
  }
}
@media screen and (max-width: 768px) {
  .datatable__data {
    padding: 8px 0 15px;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
  }
}
.datatable__data ul {
  margin: 0 0 5px;
}
.datatable__data ul li {
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}
.about__table.datatable::after {
  width: 160px;
}
@media screen and (max-width: 1000px) {
  .about__table.datatable::after {
    width: 130px;
  }
}
@media screen and (max-width: 768px) {
  .about__table.datatable::after {
    width: 100%;
  }
}
.about__table .datatable__title {
  width: 160px;
}
@media screen and (max-width: 1000px) {
  .about__table .datatable__title {
    width: 130px;
  }
}
@media screen and (max-width: 768px) {
  .about__table .datatable__title {
    width: 100%;
  }
  .about__table .datatable__title br.pc {
    display: none;
  }
}
.about__table .datatable__data {
  width: calc(100% - 160px);
}
@media screen and (max-width: 1000px) {
  .about__table .datatable__data {
    width: calc(100% - 130px);
  }
}
@media screen and (max-width: 768px) {
  .about__table .datatable__data {
    width: 100%;
  }
}
.hide_button {
  display: none !important;
}
/*# sourceMappingURL=./common2025.css.map */