@charset "UTF-8";
:root {
  --corporate-color: #0071BE;
  --color-red: #D7373D;
  --color-navy: #002649;
  --color-orange: #F7672E;
  --color-ivory: #f8f7dd;
  --content-margin: 20px;
  --content-width-s: 420px;
  --content-width-m: 500px;
  --content-width-l: 600px;
  --bg-grade: linear-gradient(0deg, #92DBE9, #59D3EB);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

button:hover,
a:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

a.disable {
  pointer-events: none;
}

a.disable:hover {
  opacity: 1;
}

#wrapper {
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 1;
}
@media screen and (min-width: 601px) and (max-width: 1080px) {
  #wrapper {
    overflow-x: auto;
  }
}

.main-wrapper {
  background-color: white;
  box-shadow: 0 4px 54px rgba(0, 0, 0, 0.45);
  max-width: var(--content-width-l);
  position: inherit;
  margin: auto;
  z-index: 2;
}

.bg-wrapper {
  position: fixed;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.bg-wrapper_inner {
  position: relative;
  width: 100%;
  height: 100svh;
}

.bg-wrapper_inner::before,
.bg-wrapper_inner::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}

.bg-wrapper .toc-wrapper {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc((100vw - var(--content-width-l)) / 2);
}

.bg-wrapper .toc-wrapper {
  left: 0;
  display: flex;
}

.bg-wrapper .autumn-nav {
  right: 0;
  display: flex;
}

#toc {
  background-color: var(--color-navy);
  border-radius: 10px;
  color: white;
  display: none;
}

@media screen and (min-width: 1200px) {
  #toc {
    display: block;
  }
}
/* アコーディオン全体 */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* アコーディオン */
.accordion__item {
  margin-bottom: 21px;
  cursor: pointer;
}

/* アコーディオンのタイトル */
.accordion__title {
  background: none;
  border: none;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  margin-bottom: 10px;
  padding-right: 20px;
}
.accordion__title::after {
  position: absolute;
  top: 50px;
  left: 49%;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #ffffff;
  border: 2px solid var(--color-navy);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  background-repeat: no-repeat;
  background-position: center;
  border-color: #fff;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  margin: auto;
}

/* アコーディオンのコンテンツ */
.accordion__content {
  list-style: none;
  padding: 0;
  cursor: pointer;
}
.accordion__content li {
  margin-bottom: 10px;
}

/* アコーディオンのコンテンツ展開時 */
.accordion__content.is-open {
  display: block;
}

/* 左メニュー */
#toc {
  padding: 38px 25px;
}

#toc h3 {
  font-size: 30px;
  margin: 0 0 0.75em;
}

#toc .toc-list {
  list-style: none;
  padding: 0;
}

#toc .toc-list li:last-child {
  margin-bottom: 0;
}

.accordion__content button,
.accordion__content a {
  position: relative;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  text-decoration: none;
  padding-left: 20px;
}
.accordion__content button::before,
.accordion__content a::before {
  position: absolute;
  top: 50px;
  left: 49%;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #ffffff;
  border: 2px solid var(--color-navy);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  background-repeat: no-repeat;
  background-position: center;
  border-width: 1px;
  border-color: #fff;
  top: 0;
  left: 5%;
  bottom: 0;
  margin: auto;
  transform: translateY(-15%) rotate(180deg);
}

#toc .toc-list li a.active {
  color: black;
}

.toc-bottom {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
}
.toc-bottom ul {
  list-style: none;
  padding: 0;
}
.toc-bottom ul li {
  margin-bottom: 10px;
}
.toc-bottom ul li:last-child {
  margin-bottom: 0;
}
.toc-bottom a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.toc-bottom a::after {
  position: absolute;
  top: 50px;
  left: 49%;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #ffffff;
  border: 2px solid var(--color-navy);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  background-repeat: no-repeat;
  background-position: center;
  border-color: #fff;
  top: 0;
  right: -11px;
  left: auto;
  bottom: 0;
  margin: auto;
  transform: translateY(-5%) rotate(45deg);
}

/* header */
.header {
  position: relative;
  background-color: #fff;
  display: flex;
  gap: 20px;
  padding: 10px var(--sp-content-margin) 0;
  width: 100%;
  z-index: 3;
}
@media screen and (min-width: 992px) {
  .header {
    position: fixed;
  }
}

.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_top h1 {
  margin: 0;
  width: 128px;
  height: 52px;
}

.header_top .logo-img {
  width: 128px;
  height: 52px;
}

.header_top a {
  display: flex;
}

.header_bottom {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 1%;
}

/* nav */
header.header {
  position: relative;
}
header.header a {
  text-decoration: none;
}

.globalnav__sub-menu {
  list-style: none;
}
.globalnav__sub-menu ul {
  list-style: none;
}
/* SP/PCのみ */
.spDisplay {
  display: block;
}

.pcDisplay {
  display: none;
}

@media screen and (min-width: 601px) {
  .globalnav__list {
    list-style: none;
  }
  .spDisplay {
    display: none;
  }
  .pcDisplay {
    display: block;
  }
}
.sub-nav {
  margin: 0 auto 48px;
  padding: 50px var(--content-margin) 0;
}
@media screen and (min-width: 360px) {
  .sub-nav {
    padding: 20px var(--content-margin) 0;
  }
}
@media screen and (min-width: 500px) {
  .sub-nav {
    padding: 0 var(--content-margin);
  }
}

.btn {
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  max-width: 345px;
  width: 100%;
  height: 54px;
  margin-left: auto;
  margin-right: auto;
}

.btn.blue {
  background-color: var(--corporate-color);
  color: white;
}

.btn.red {
  background-color: var(--color-red);
  color: white;
}

.btn.white {
  border: solid 1px var(--corporate-color);
  color: var(--corporate-color);
}

.btn.white.active {
  background: var(--corporate-color);
  color: white;
}

/* mv */
.top-mv {
  aspect-ratio: 1.05/1;
  background-image: url(../images/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.top-mv a {
  color: #000;
  display: flex;
  text-decoration: none;
  justify-content: right;
}

.mv_img {
  position: absolute;
  width: 100%;
  height: auto;
}

.top-mv_content {
  position: absolute;
  top: 56.5%;
  padding: 0 var(--content-margin);
}
.top-mv_content a.arrow {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-mv_content a.arrow {
    font-size: 22px;
  }
}
.top-mv_content a.arrow::after {
  position: absolute;
  top: 50px;
  left: 49%;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #ffffff;
  border: 2px solid var(--color-navy);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  background-repeat: no-repeat;
  background-position: center;
  border-color: #000;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: auto;
  transform: translateY(0%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .top-mv_content a.arrow::after {
    top: 0;
  }
}

.mv_description {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 6px;
  color: #fff;
  margin-bottom: 12px;
  padding: 16px;
}
.mv_description p {
  font-size: clamp(13px, 3.9vw, 24px);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .mv_description p {
    font-size: 25px;
  }
}
.mv_description p.small {
  font-size: clamp(12px, 3vw, 19px);
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .mv_description p.small {
    font-size: 22px;
  }
}

.main_inner {
  background: var(--bg-grade);
}

/* tab */
.tab-panel.active {
  display: block;
}

.tab-panel {
  display: none;
}
.tab-panel .section {
  padding: 30px 0;
}

.tab-buttons-overflow {
  overflow-x: auto;
  padding-right: 20px;
}
.tab-buttons-overflow::-webkit-scrollbar-track {
  background: transparent;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  width: 590px;
}
@media screen and (min-width: 768px) {
  .tab-buttons {
    width: 838px;
  }
}

.tab-btn {
  cursor: pointer;
  width: 110px;
  height: 52px;
  background: var(--color-navy);
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border: 0;
  border-radius: 10px 10px 0 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .tab-btn {
    font-size: 24px;
    width: 252px;
    height: 70px;
  }
}

.tab-btn.active {
  color: var(--color-navy);
  background: #fff;
}

/* content */
.favorite {
  padding: 30px 0;
}

.section_inner {
  padding: 0 var(--content-margin);
}

.section_title {
  text-align: center;
  margin: 0 auto 10px;
  line-height: 1;
  font-size: 36px;
  color: var(--color-navy);
  position: relative;
  background: url(../images/star-bg.png) no-repeat;
  background-size: calc(100% - 40px);
  background-position: center 28px;
  line-height: 1.25;
}
.favorite .section_title {
  background-size: 100%;
}
@media screen and (min-width: 768px) {
  .section_title {
    font-size: 50px;
    background-size: 549px;
  }
}
.section_title div {
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .section_title div {
    font-size: 29px;
  }
}

.section_title-sub {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .section_title-sub {
    font-size: 25px;
  }
}

.favorite {
  background: var(--bg-grade);
}

.tab-content {
  background: #fff;
}

/* icon */
.circle {
  position: relative;
}

.circle::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  /* 水平方向の中央揃え */
  line-height: 13px;
  /* 垂直方向の中央揃え */
  color: white;
  font-size: 20px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.arrow {
  position: relative;
  padding-right: 15px;
  color: #333;
  text-decoration: none;
}
.arrow::after {
  content: "";
  display: block;
  width: 8px;
  /* 矢印の大きさの指定 */
  height: 8px;
  /* 矢印の大きさの指定 */
  border-top: 2px solid #333;
  /* 矢印の太さの指定 */
  border-left: 2px solid #333;
  /* 矢印の太さの指定 */
}
.arrow--right::after {
  transform: rotate(135deg);
  /* 矢印の角度の指定 */
  position: absolute;
  /* 矢印の位置の指定 */
  right: 0;
  /* 矢印の位置の指定 */
  top: 6px;
  /* 矢印の位置の指定 */
}

.items {
  margin-bottom: 40px;
}
.items:last-child {
  margin-bottom: 0;
}
.favorite .items {
  margin-bottom: 90px;
}
.favorite .items:last-child {
  margin-bottom: 0;
}

.ranking-list {
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}
.ranking-list li {
  background: #fff;
  border: solid 1px #DEDEDF;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 14px;
  padding: 16px;
}
.ranking-list li a {
  position: relative;
  display: block;
  color: #000;
  text-decoration: none;
  height: 100%;
}
.ranking-list li a img.rank {
  width: 48px;
  height: auto;
}
.ranking-list li:first-child a h4 {
  font-size: 20px;
}
.ranking-list li a h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 12px auto;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .ranking-list li:first-child a h4 {
    font-size: 28px;
  }
  .ranking-list li a h4 {
    font-size: 20px;
  }
}
.ranking-list li a h4 + img {
  padding-bottom: 56px;
  width: 85%;
}
.ranking-list li a div.link_text {
  background: #fff;
  position: absolute;
  right: 4px;
  bottom: 4px;
  line-height: 1;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .ranking-list li a div.link_text {
    font-size: 22px;
  }
}
.ranking-list li a div.link_text span {
  display: block;
  position: relative;
  text-align: right;
  padding-right: 10px;
  line-height: 1.2;
}
.ranking-list li a div.link_text span::after {
  position: absolute;
  top: 50px;
  left: 49%;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #ffffff;
  border: 2px solid var(--color-navy);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  background-repeat: no-repeat;
  background-position: center;
  border-width: 1px;
  top: 0px;
  bottom: 0;
  right: 0;
  left: auto;
  margin: auto;
  width: 8px;
  height: 8px;
  transform: translateY(-7%) rotate(45deg);
}
.ranking-list li img {
  display: block;
  margin: auto;
}
.ranking-list li:nth-child(1) {
  font-size: 16px;
  grid-column: 1/3;
  grid-row: 1/2;
}
.ranking-list li:nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.ranking-list li:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}

.cat_title {
  background-color: var(--color-navy);
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  padding: 9px 0;
}
@media screen and (min-width: 768px) {
  .cat_title {
    font-size: 28px;
  }
}

/* tailwindow */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.marker {
  background: linear-gradient(transparent 60%, var(--color-orange) 60%);
}

.default-link {
  color: var(--corporate-color);
}

.default-link svg {
  width: 8px;
  height: 14px;
  margin-left: 3px;
}

.section_content p {
  line-height: 1.875;
}

/* nav */
.nav-list {
  list-style: none;
}
.nav-list.sub {
  display: flex;
  align-items: center;
  border: solid 1px #fff;
  background: var(--color-navy);
  border-radius: 10px;
  margin: auto;
  padding: 0;
}
.nav-list.sub li {
  width: 33.3333333333%;
}
.nav-list.sub a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  height: 56px;
  border-right: solid 1px #fff;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .nav-list.sub a {
    font-size: 22px;
    height: 80px;
  }
}
.nav-list.sub a::before {
  position: absolute;
  top: 42px;
  left: 50%;
  background-color: white;
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: -10px;
  content: "";
  border-radius: 100px;
  border: 2px solid var(--color-navy);
}
@media screen and (min-width: 768px) {
  .nav-list.sub a::before {
    top: 68px;
  }
}
.nav-list.sub a::after {
  position: absolute;
  top: 50px;
  left: 49%;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #ffffff;
  border: 2px solid var(--color-navy);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .nav-list.sub a::after {
    top: 77px;
  }
}
.nav-list.sub li:last-child a {
  border-right: none;
}

.img_banner {
  max-width: 550px;
  width: 100%;
  height: auto;
}
.img_banner-1 {
  margin-bottom: 90px;
}

/* card */
.card {
  border: solid 1px #DEDEDF;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  margin: 0 auto 25px;
}

.card .images {
  display: flex;
  gap: 10px;
}

.card .btn {
  margin: auto;
}

.card .contents h3 {
  margin-bottom: 14px;
}

.card .contents p {
  margin-top: 0;
  line-height: 1.6;
}

/* footer */
footer {
  margin: auto;
  background-color: #fff;
  padding: 50px 24px 20px;
}
footer .inner {
  width: 100% !important;
}
footer a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  footer a {
    font-size: 24px;
  }
}
footer .cp {
  margin-top: 18px;
}
footer p:has(.wh),
footer .cp {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  footer p:has(.wh),
  footer .cp {
    font-size: 24px;
  }
}

.footer-bottom {
  background: #fff;
}

.inner-wide {
  background: #fff;
}

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