@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) and (min-width: 993px) {
  html {
    font-size: 16px;
    font-size: 1.5625vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Archivo", sans-serif;
  overflow-x: hidden;
  line-height: 1.45;
  color: #1E1E1E;
  background-color: #fff;
  position: relative;
}
body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #1a1a1a;
}

p {
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 0.875rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* -----------------------------------
  ヘッダー header
  -----------------------------------*/
.l-header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(44, 59, 102, 0.4);
  padding-top: 16px;
  background-color: #fff;
}

.l-header__logo {
  width: 30%;
  max-width: 168px;
  /* position: relative; */
  z-index: 999999999;
  margin: 0 auto;
  /* -ms-transform: translateX(14%); */
  /*    transform: translateX(14%); */
}
.l-header__logo a {
  position: relative;
  display: inline-block;
}
.l-header__logo a .color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* ----- menu -----*/
.l-header__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 99;
  padding: 14px 0;
}
.l-header__menu li {
  padding: 0 24px;
}
.l-header__menu li:not(:last-child) {
  border-right: 1px solid rgba(44, 59, 102, 0.4);
}
.l-header__menu a {
  color: #16212D;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-header__menu a:hover {
    opacity: 0.7;
  }
}

.l-header__container {
  width: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 60px 0;
  background-color: #F6F6F6;
  z-index: 99999;
}
.l-header__container .l-wrap {
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}

.l-header__list > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 28px;
  padding-top: 24px;
}
.l-header__list > li:not(:last-child) {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  padding-bottom: 24px;
}
.l-header__list > li p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  color: #2C3B66;
  transition: 0.3s ease;
}
.l-header__list > li p .en {
  font-size: 2rem;
  font-weight: 700;
}
.l-header__list > li p .ja {
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.l-header__list a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  color: #2C3B66;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-header__list a:hover {
    opacity: 0.7;
  }
}
.l-header__list a .en {
  font-size: 2rem;
  font-weight: 700;
}
.l-header__list a .ja {
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.l-header__list .category-list {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 16px;
  background-color: #fff;
  padding: 16px;
  width: 100%;
}
.l-header__list .category-list a {
  font-size: 1rem;
}

/* ----- sns ----- */
.l-header__sns {
  transition: 0.3s ease;
  position: relative;
  z-index: 999999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  margin-top: 50px;
}
.l-header__sns a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-header__sns a:hover {
    opacity: 0.7;
  }
}

/* ----- hamburger -----*/
.c-hamburger {
  position: relative;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 999999;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 24px;
}
.c-hamburger span {
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #2C3B66;
  left: 0;
}
.c-hamburger span:nth-of-type(1) {
  top: 12px;
}
.c-hamburger span:nth-of-type(2) {
  top: 24px;
}
.c-hamburger span:nth-of-type(3) {
  top: 36px;
}
.c-hamburger.is-active span:nth-of-type(1) {
  -ms-transform: translateY(12px) rotate(-30deg);
      transform: translateY(12px) rotate(-30deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  -ms-transform: translateY(-12px) rotate(30deg);
      transform: translateY(-12px) rotate(30deg);
}

/* ----- search -----*/
.l-header__search {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 999999;
}
.l-header__search__btn .icon {
  display: inline-block;
}
.l-header__search__btn .icon:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url(../img/common/icon_search.svg);
          mask-image: url(../img/common/icon_search.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #979797;
}
.l-header__search__btn.is-active .icon {
  display: none;
}
.l-header__search__btn.is-active .close {
  display: inline-block;
  vertical-align: middle;
  color: #979797;
  line-height: 1;
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  margin-top: 4px;
}
.l-header__search__btn.is-active .close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}
.l-header__search__block {
  position: absolute;
  top: -8px;
  right: 34px;
  display: none;
}
.l-header__search__form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 320px;
  border: 1px solid #c6c6c6;
}
.l-header__search__form label {
  position: relative;
  -ms-flex: 1;
      flex: 1;
}
.l-header__search__form input {
  width: 100%;
  height: 45px;
  padding: 5px 50px 5px 20px;
  border: none;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 1rem;
  outline: none;
}
.l-header__search__form input::-moz-placeholder {
  color: #777777;
}
.l-header__search__form input:-ms-input-placeholder {
  color: #777777;
}
.l-header__search__form input::placeholder {
  color: #777777;
}
.l-header__search #searchsubmit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 50px;
  height: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-color: #2C3B66;
  font-weight: 700;
  color: #fff;
  font-size: 0.9375rem;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 992px) {
  .l-header {
    width: 100%;
    height: 64px;
    padding: 16px;
    border-bottom: none;
  }
  .l-header__logo {
    max-width: 130px;
    min-width: 130px;
    /* -ms-transform: translateX(8%); */
    /*     transform: translateX(8%); */
  }
  /* ----- menu -----*/
  .l-header__menu {
    display: none;
  }
  .l-header__container {
    padding: 80px 0;
  }
  .l-header__container .l-wrap {
    max-width: 1180px;
    height: initial;
  }
  .l-header__list > li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
  }
  .l-header__list > li p .en {
    font-size: 1.5rem;
  }
  .l-header__list > li p .ja {
    font-size: .8rem;
  }
  .l-header__list a .en {
    font-size: 1.5rem;
  }
  .l-header__list a .ja {
    font-size: .8rem;
  }
  .l-header__list .category-list {
    -ms-flex: initial;
        flex: initial;
    gap: 8px 16px;
    padding: 10px;
    background-color: #fff;
  }
  .l-header__list .category-list a {
    font-size: 0.8rem;
  }
  /* ----- sns ----- */
  .l-header__sns {
    margin-top: 40px;
  }
  /* ----- hamburger -----*/
  .c-hamburger {
    top: 10px;
    left: 16px;
    width: 40px;
  }
  .c-hamburger span {
    width: 40px;
  }
  .c-hamburger span:nth-of-type(1) {
    top: 10px;
  }
  .c-hamburger span:nth-of-type(2) {
    top: 20px;
  }
  .c-hamburger span:nth-of-type(3) {
    top: 30px;
  }
  .c-hamburger.is-active span:nth-of-type(1) {
    -ms-transform: translateY(10px) rotate(-30deg);
        transform: translateY(10px) rotate(-30deg);
  }
  .c-hamburger.is-active span:nth-of-type(3) {
    -ms-transform: translateY(-10px) rotate(30deg);
        transform: translateY(-10px) rotate(30deg);
  }
  /* ----- search -----*/
  .l-header__search {
    position: absolute;
    top: 20px;
    right: 16px;
  }
  .l-header__search__btn .icon::before {
    width: 24px;
    height: 24px;
    background-color: #2C3B66;
  }
  .l-header__search__btn.is-active .close {
    color: #2C3B66;
    margin-top: -4px;
  }
  .l-header__search__block {
    position: fixed;
    width: 100%;
    height: auto;
    top: 62px;
    right: 0;
    padding: 12px;
    background-color: #F6F6F6;
  }
  .l-header__search__form {
    position: relative;
    width: 100%;
  }
  .l-header__search__form input {
    font-size: 0.9375rem;
  }
  .l-header__search #searchsubmit {
    font-size: 0.875rem;
  }
}
/* --------------------------
  footer
  -------------------------- */
.l-footer {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  text-align: center;
  background-color: #F6F6F6;
}
.l-footer__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.l-footer__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: flex-end;
      align-items: flex-end;
  width: 100%;
}

.l-footer__list {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-pack: flex-start;
      justify-content: flex-start;
  -ms-flex-align: flex-start;
      align-items: flex-start;
  width: 100%;
  max-width: 400px;
}
.l-footer__list > li {
  width: 100%;
}
.l-footer__list > li:not(:last-child) {
  border-bottom: 1px solid rgba(44, 59, 102, 0.1);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.l-footer__list > li > p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  color: #2C3B66;
}
.l-footer__list a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  font-weight: 700;
  transition: 0.3s ease;
  color: #2C3B66;
}
@media (hover: hover) {
  .l-footer__list a:hover {
      opacity: 0.7;
  }
}

.l-footer__list .en {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
.l-footer__list .ja {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
}
.l-footer__list .category-list {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 10px;
  background-color: #fff;
}
.l-footer__list .category-list a {
  font-size: 0.8rem;
  font-weight: 500;
}
.l-footer__list .category-list a:after {
  display: none;
}
.l-footer__list .category-list a:hover {
  padding-left: 0;
}



.l-footer__sns {
  transition: 0.3s ease;
  position: relative;
  z-index: 999999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 16px;
  align-self: flex-end;
}
.l-footer__copyright {
  margin-top: 16px;
  text-align: right;
  color: #2C3B66;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}




@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0;
  }
  .l-footer__wrap {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 12px;
  }
  .l-footer__logo {
    max-width: 110px;
  }
  .l-footer__nav {
    width: 100%;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 40px;
  }
  .l-footer__list {
    width: 100%;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .l-footer__list > li {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 28px;
    padding-top: 16px;
  }
  .l-footer__list > li:not(:first-child) {
    padding-left: 0;
  }
  .l-footer__list > li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(44, 59, 102, 0.1);
    padding: 8px 0;
    gap: 8px;
    margin-bottom: 8px;
  }
  .l-footer__list > li > p {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 16px;
    color: #2C3B66;
    font-size: 1rem;
    font-weight: 700;
    color: #2C3B66;
    position: relative;
  }
  .l-footer__list > li > p .en {
    font-size: 1.25rem;
  }
  .l-footer__list > li > p .ja {
    display: inline-block;
    font-size: .8rem;
    font-weight: 400;
  }
  .l-footer__list a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 16px;
    color: #2C3B66;
    font-size: 1rem;
    font-weight: 700;
    color: #2C3B66;
    position: relative;
  }
  .l-footer__list .en {
    font-size: 1.25rem;
  }
  .l-footer__list .ja {
    display: inline-block;
    font-size: .8rem;
  }
  .l-footer__list .no-sp {
    display: none;
  }
  .l-footer__list .category-list {
    width: 100%;
    margin-top: 0;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .l-footer__list .js-footer-accordion.is-active .category-list {
    display: flex;
  }
  .l-footer__list .category-list a {
    font-size: 0.875rem;
    font-weight: 400;
  }
  .l-footer__sns {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .l-footer__copyright {
    text-align: left;
    margin-top: 12px;
  }
}

/* ---------------------------------------------
  component
  --------------------------------------------- */
/* ------ ttl ------ */
.c-ttl {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 32px;
}
.c-ttl .ja {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .c-ttl .ja {
    font-size: 1rem;
    margin-top: 4px;
  }
}
/* ------ btn ------ */
.c-btn {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  padding: 15px 20px 15px 24px;
  margin: 40px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  max-width: 240px;
  gap: 18px;
  transition: 0.3s ease;
  position: relative;
  border: 1.5px solid #2C3B66;
  background-color: #2C3B66;
  overflow: hidden;
}
.c-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 20px;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}
@media (hover: hover) {
  .c-btn:hover {
    background-color: #fff;
    color: #2C3B66;
  }
  .c-btn:hover::after {
    background-color: #2C3B66;
  }
}

@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 0.875rem;
    margin: 32px auto 0;
    max-width: 200px;
  }
}
/* -------- article list -------- */
.c-article__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}

.c-article__link {
  display: block;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: 0.3s ease;
  position: relative;
}
@media (hover: hover) {
  .c-article__link:hover .c-article__img img {
    -ms-transform: scale(1.05);
        transform: scale(1.05);
  }
  .c-article__link:hover .c-article__text {
    opacity: 0.7;
  }
}

.c-article__img {
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.c-article__img img {
  aspect-ratio: 404/270;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}

.c-article__category {
  padding: 4px 24px;
  background-color: #2C3B66;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}

.c-article__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 16px;
  transition: 0.3s ease;
}

.c-article__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2C3B66;
}

.c-article__date {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E1E1E;
  letter-spacing: 0.05em;
}

.c-article__ttl {
  font-size: 1.25rem;
  color: #1E1E1E;
  font-weight: 800;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .c-article__list {
    gap: 16px;
  }
  .c-article__img {
    margin-bottom: 8px;
  }
  .c-article__category {
    padding: 2px 8px;
    font-size: 0.625rem;
  }
  .c-article__text {
    gap: 4px 16px;
  }
  .c-article__author {
    font-size: 0.75rem;
  }
  .c-article__date {
    font-size: 0.75rem;
  }
  .c-article__ttl {
    font-size: 0.875rem;
  }
}
/* ------ ranking list tab ------ */
.c-ranking__tab__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 24px;
}
.c-ranking__tab__list .item {
  background-color: #fff;
  border: 1px solid #2C3B66;
  color: #2C3B66;
  font-size: 1rem;
  font-weight: 800;
  max-width: 120px;
  cursor: pointer;
  padding: 4px 20px;
  text-align: center;
}
.c-ranking__tab__list .item.is-active {
  background-color: #C2B541;
  border-color: #C2B541;
  color: #fff;
}
.c-ranking__tab__body {
  position: relative;
  margin-top: 48px;
}
.c-ranking__tab__block {
  display: none;
  opacity: 0;
}
.c-ranking__tab__block.is-active {
  display: block;
  animation: fade ease 0.5s forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-ranking__num {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #C2B541;
  position: absolute;
  top: -14px;
  left: 4px;
  z-index: 2;
}
.c-ranking__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 32px;
}
.c-ranking__list .c-article__img {
  margin-bottom: 8px;
}
.c-ranking__list .c-article__date {
  font-size: 0.75rem;
}
.c-ranking__list .c-article__ttl {
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .c-ranking__tab__list {
    gap: 20px;
  }
  .c-ranking__tab__list .item {
    font-size: 0.875rem;
    min-width: 6.25rem;
    padding: 4px 16px;
  }
  .c-ranking__tab__body {
    margin-top: 32px;
  }
  .c-ranking__num {
    font-size: 2rem;
  }
  .c-ranking__list .c-article__link {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 8px;
  }
  .c-ranking__num {
    top: -10px;
    left: 4px;
  }
  .c-ranking__list .c-article__img {
    width: 37.5%;
  }
  .c-ranking__list .c-article__text {
    -ms-flex: 1;
        flex: 1;
    gap: 4px;
  }
  .c-ranking__list .c-article__ttl {
    font-size: 0.625rem;
  }
}
/* ------ swiper ------ */
.swiper-control__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 16px;
  gap: 32px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 33px;
  height: 33px;
  margin: 0;
  transition: 0.3s ease;
  position: static;
}
@media (hover: hover) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 0.7;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  display: block;
  transition: 0.3s ease;
  width: 33px;
  min-width: 33px;
  height: 33px;
  border-radius: 50%;
  background: url("../img/common/icon_arrow_circle.svg") no-repeat center/100%;
}

.swiper-button-next:after {
  content: "";
}

.swiper-button-prev:after {
  content: "";
  -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
}

.swiper-pagination {
  width: auto !important;
  position: static;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  border-radius: 0;
  margin: 0 2px;
  background-color: rgba(30, 30, 30, 0.2);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #C2B541;
  opacity: 1;
}

/* ---------------------------------------------------
    2 column
  --------------------------------------------------- */
.l-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0 auto;
  width: calc(100% - 32px);
  max-width: 1200px;
  gap: 30px;
  margin-top: 40px;
}
.l-container:last-of-type {
  padding-bottom: 120px;
}
.l-container .l-main__content {
  width: 70%;
  max-width: 832px;
}
.l-container .l-sidebar {
  width: 27%;
  max-width: 320px;
}

@media screen and (max-width: 992px) {
  .l-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .l-container:last-of-type {
    padding-bottom: 64px;
  }
  .l-container .l-main__content {
    width: 100%;
    max-width: 100%;
  }
  .l-container .l-sidebar {
    width: 100%;
    max-width: 100%;
  }
}
/* ----------- column sidebar  ----------- */
.c-sidebar__item {
  position: relative;
  z-index: 1;
}
.c-sidebar__item:not(:last-child) {
  margin-bottom: 40px;
}
.c-sidebar__item.banner a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-sidebar__item.banner a:hover {
    opacity: 0.7;
  }
}
.c-sidebar__item.banner img {
  width: 100%;
}

.c-sidebar__ttl {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.c-sidebar__search {
  position: relative;
  width: 100%;
}
.c-sidebar__search .c-search__form {
  position: relative;
}
.c-sidebar__search .c-search__form:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  -webkit-mask-image: url(../img/common/icon_search.svg);
          mask-image: url(../img/common/icon_search.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #979797;
  position: absolute;
  top: 50%;
  right: 16px;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  pointer-events: none;
}
.c-sidebar__search .c-search__form label {
  position: relative;
  -ms-flex: 1;
      flex: 1;
}
.c-sidebar__search .c-search__form input {
  width: 100%;
  font-size: 0.875rem;
  padding: 12px 50px 12px 10px;
  border: 1px solid rgba(44, 59, 102, 0.4);
  background-color: #fff;
  outline: none;
}
.c-sidebar__search .c-search__form input::-moz-placeholder {
  color: #777777;
}
.c-sidebar__search .c-search__form input:-ms-input-placeholder {
  color: #777777;
}
.c-sidebar__search .c-search__form input::placeholder {
  color: #777777;
}
.c-sidebar__search .c-search__form #searchsubmit {
  width: 50px;
  height: 100%;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
}

.c-sidebar__search button {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 30px;
  height: 30px;
}
.c-sidebar__search button::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  background: url("../img/common/icon_search.svg") no-repeat top center/100%;
}

.c-sidebar__search .dashicons-search {
  display: none;
}

.c-sidebar__search input {
  width: 100%;
  border: 1px solid rgba(44, 59, 102, 0.4);
  width: 100%;
  font-size: 0.875rem;
  width: 100%;
  padding: 12px 38px 12px 10px;
}
.c-sidebar__search input::-moz-placeholder {
  color: #D3D3D3;
}
.c-sidebar__search input:-ms-input-placeholder {
  color: #D3D3D3;
}
.c-sidebar__search input::placeholder {
  color: #D3D3D3;
}

.c-sidebar__select {
  position: relative;
}
.c-sidebar__select::after {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #979797;
  position: absolute;
  top: 50%;
  right: 12px;
  -ms-transform: translateY(-50%) rotate(90deg);
      transform: translateY(-50%) rotate(90deg);
}
.c-sidebar__select select {
  display: block;
  border: 1px solid rgba(44, 59, 102, 0.4);
  width: 100%;
  padding: 12px 10px;
  font-size: 0.875rem;
}

.c-sidebar__tag {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  background-color: #F5F5F5;
  padding: 24px 16px;
}
.c-sidebar__tag a {
  display: inline-block;
  line-height: 1.2;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 4px 20px;
  border: 1px solid #1E1E1E;
  border-radius: 20px;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-sidebar__tag a:hover {
    background-color: #1E1E1E;
    color: #fff;
  }
}

.c-sidebar__item.ranking .c-ranking__tab {
  background-color: #F5F5F5;
  padding: 16px;
}
.c-ranking__tab__head {
  width: 100%;
}
.c-sidebar__item.ranking .c-ranking__tab__list {
  width: 100%;
  gap: 12px;
}
.c-sidebar__item.ranking .c-ranking__tab__list .item {
  font-size: 0.875rem;
  width: 100%;
  padding: 4px 10px;
}
.c-sidebar__item.ranking .c-ranking__tab__body {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .c-sidebar__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
/* ----------- breadcrumb -----------*/
.c-breadcrumb {
  margin-top: 130px;
}

.c-breadcrumb__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-breadcrumb__list li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #2C3B66;
  border-right: 1px solid #2C3B66;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  margin: 1px 10px;
}
.c-breadcrumb__list li,
.c-breadcrumb__list a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #2C3B66;
}
.c-breadcrumb__list li {
  color: #C2B541;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    margin-top: 65px;
  }
  .c-breadcrumb__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-breadcrumb__list li,
  .c-breadcrumb__list a {
    font-size: 0.75rem;
  }
}
/* ---------- pagenation ---------- */
ul.page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 40px;
  gap: 16px;
}

.page-numbers li .page-numbers {
  display: block;
  width: 33px;
  height: 33px;
  font-size: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  line-height: 0.8;
  transition: 0.3s ease;
  border-radius: 50%;
  font-weight: 800;
  border: 1px solid #2C3B66;
  color: #2C3B66;
}

.page-numbers li a.page-numbers:hover {
  opacity: 0.7;
}

.page-numbers li .current {
  background-color: #C2B541;
  border-color: #C2B541;
  color: #fff;
}

.page-numbers li .dots {
  border: none;
  font-size: 0;
  width: 40px;
}

.page-numbers li .dots::after {
  content: "・・・";
  font-size: 1rem;
}

.page-numbers li .page-numbers.prev,
.page-numbers li .page-numbers.next {
  width: 33px;
}

.page-numbers.prev::before,
.page-numbers.next::before {
  content: "";
  display: block;
  transition: 0.3s ease;
  width: 33px;
  min-width: 33px;
  height: 33px;
  border-radius: 50%;
  background: url("../img/common/icon_arrow_circle.svg") no-repeat center/100%;
}

.page-numbers.prev::before {
  -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
}

@media screen and (max-width: 767px) {
  ul.page-numbers {
    margin-top: 32px;
    gap: 10px;
  }
  .page-numbers li .dots {
    width: 33px;
  }
  .page-numbers li .dots::after {
    font-size: 0.75rem;
  }
}
.l-wrap {
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 32px);
  }
}
/* ---------------------------------------------
  top-mv
  --------------------------------------------- */
.p-top-mv {
  width: 100%;
  position: relative;
  padding: 130px 0 15px;
}

.p-top-mv__slider .c-article__category {
  padding: 4px 20px;
}
.p-top-mv__slider .c-article__ttl {
  font-size: 1.375rem;
}

@media screen and (max-width: 767px) {
  .p-top-mv {
    padding: 65px 16px 16px;
  }
  .p-top-mv__slider .c-article__category {
    font-size: 0.75rem;
  }
  .p-top-mv__slider .c-article__ttl {
    font-size: 1.125rem;
  }
  .p-top-mv__slider .c-article__author {
    font-size: 0.875rem;
  }
  .p-top-mv__slider .c-article__date {
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  top-ranking
  --------------------------------------------- */
.p-top-ranking {
  background-color: #F8F8F8;
  padding: 40px 0;
}
.p-top-ranking .c-ranking__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.p-top-ranking .c-ranking__list .c-ranking__num {
  font-size: 2.5rem;
  top: -24px;
  left: 2px;
}
.p-top-ranking .c-ranking__list .c-article__img {
  margin-bottom: 10px;
}
.p-top-ranking .c-ranking__list .c-article__date {
  font-size: 0.75rem;
}
.p-top-ranking .c-ranking__list .c-article__ttl {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .p-top-ranking {
    background-color: #F8F8F8;
    padding: 32px 0 64px;
  }
  .p-top-ranking .c-ranking__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .p-top-ranking .c-ranking__list .c-ranking__num {
    font-size: 2rem;
    top: -8px;
    left: 2px;
  }
  .p-top-ranking .c-ranking__list .c-article__img {
    margin-bottom: 0;
  }
  .p-top-ranking .c-ranking__list .c-article__date {
    font-size: 0.625rem;
  }
  .p-top-ranking .c-ranking__list .c-article__ttl {
    font-size: 0.625rem;
  }
}
@media screen and (min-width: 992px) {
  .p-top-latest .c-article__item:nth-child(n+7) {
    display: none;
  }
  .p-top-latest .sp-btn {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .l-container .l-main__content.pc-only {
    display: none;
  }
}
/* ---------------------------------------------
  top-banner
  --------------------------------------------- */
.p-top-banner__area {
  padding: 40px 0;
}
.p-top-banner__area a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-top-banner__area a:hover {
    opacity: 0.7;
  }
}

/* ---------------------------------------------
  category page
  --------------------------------------------- */
.p-category-head {
  margin-bottom: 24px;
}
.p-category-head .c-ttl {
  margin-bottom: 12px;
}
.p-category-head .p-category__name {
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-category-head {
    margin-bottom: 16px;
  }
  .p-category-head .c-ttl {
    margin-bottom: 4px;
  }
  .p-category-head .p-category__name {
    font-size: 0.875rem;
    font-weight: 700;
  }
}
/* ---------------------------------------------
  search page
  --------------------------------------------- */
.p-search-head {
  margin-bottom: 24px;
}
.p-search-head .c-ttl {
  margin-bottom: 12px;
}

.p-search-results {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.p-search-results p {
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-search-head {
    margin-bottom: 16px;
  }
  .p-search-head .c-ttl {
    margin-bottom: 4px;
  }
  .p-search-results p {
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  article page
  --------------------------------------------- */
.p-article__head {
  margin-bottom: 40px;
}

.p-article__category {
  margin-bottom: 16px;
  padding: 6px 20px;
  background-color: #2C3B66;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}

.p-article__ttl {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
}

.p-article__meta {
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 16px;
}

.p-article__eyecatch {
  margin: 40px 0;
}

.p-article__banner {
  margin: 40px 0;
}

.p-article__share {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 2.5rem;
  border: 1px solid #2C3B66;
  background-color: #fff;
  padding: 16px;
  margin: 24px 0;
}
.p-article__share .text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2C3B66;
}
.p-article__share__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}

.p-article__body {
  position: relative;
}
.p-article__body p {
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-article__body p:not(:last-child) {
  margin-bottom: 24px;
}
.p-article__body a {
  color: #C2B541;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-article__body img {
  width: 100%;
}
.p-article__body img + p,
.p-article__body figure + p {
  margin-top: 24px;
}
.p-article__body h2 {
  font-size: 1.5rem;
  color: #1E1E1E;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 40px 0 24px;
  padding: 7px 12px 6px;
  border-left: 3.5px solid #2c3b66;
  background: #f1f4ff;
  color: #2c3b66;
}
.p-article__body h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1E1E1E;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 40px 0 24px;
  padding: 7px 12px 6px;
  background: #f1f4ff;
  color: #2c3b66;
}
.p-article__body h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 32px 0 24px;
  padding: 6px 12px;
  border-left: 2px solid #C2B541;
  color: #C2B541;
}

.p-article-editor {
  margin-top: 40px;
  background-color: #F5F5F5;
  padding: 2.5rem 3rem;
}
.p-article-editor .ttl {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-article-editor .ttl span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
  margin-left: 16px;
}
.p-article-editor__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}
.p-article-editor__img {
  width: 100px;
}
.p-article-editor__img img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-article-editor__text {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
}
.p-article-editor__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
  gap: 12px;
}
.p-article-editor__text .name {
  font-size: 1.5rem;
  line-height: 1.4;
}
.p-article-editor__text .pos {
  font-size: 0.875rem;
  line-height: 1.6;
}
.p-article-editor__text .link {
  margin-top: 4px;
}
.p-article-editor__text .link a {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2C3B66;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-article-editor__text .link a:hover {
  opacity: 0.7;
}
.p-article-editor .desc {
  font-size: 0.875rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .l-container-article {
    margin-top: 24px;
  }
  .p-article__head {
    margin-bottom: 24px;
  }
  .p-article__category {
    margin-bottom: 10px;
  }
  .p-article__ttl {
    font-size: 1.25rem;
  }
  .p-article__meta {
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    gap: 16px;
  }
  .p-article__meta .c-article__author,
  .p-article__meta .c-article__date {
    font-size: 0.875rem;
  }
  .p-article__eyecatch {
    margin: 24px 0;
  }
  .p-article__banner {
    margin: 24px 0;
  }
  .p-article__share {
    gap: 24px;
    padding: 8px;
    margin: 24px 0;
  }
  .p-article__body p {
    font-size: 0.875rem;
  }
  .p-article__body p:not(:last-child) {
    margin-bottom: 24px;
  }
  .p-article__body img {
    width: 100%;
  }
  .p-article__body img + p,
  .p-article__body figure + p {
    margin-top: 24px;
  }
  .p-article__body h2 {
    font-size: 1.25rem;
    margin: 24px 0;
  }
  .p-article__body h3 {
    font-size: 1rem;
    margin: 24px 0;
  }
  .p-article__body h4 {
    font-size: 0.875rem;
    padding: 6px 12px;
  }
  .p-article-editor {
    margin-top: 48px;
    padding: 2.5rem 1.5rem;
  }
  .p-article-editor .ttl {
    font-size: 1rem;
  }
  .p-article-editor__img {
    width: 80px;
  }
  .p-article-editor__text {
    gap: 4px;
  }
  .p-article-editor__info {
    flex-direction: column;
    gap: 0;
  }
  .p-article-editor__text .name {
    font-size: 1.25rem;
  }
  .p-article-editor__text .pos {
    font-size: 0.75rem;
  }
}
.p-article-related {
  overflow: hidden;
  margin-bottom: 120px;
}
.p-article-related.sp {
  display: none;
}

.p-article-related__list {
  overflow: initial;
}
.p-article-related__list .c-article__category {
  padding: 4px 16px;
}
.p-article-related__list .c-article__ttl {
  font-size: 1.125rem;
}
.p-article-related__list .swiper-control__wrap {
  margin-top: 30px;
}
.p-article-related__list.no-slider .swiper-wrapper {
  gap: 30px;
}
.p-article-related__list.no-slider .swiper-slide {
  max-width: 320px;
}
.p-article-related__list.no-slider .swiper-control__wrap {
  display: none;
}

@media screen and (max-width: 992px) {
  .p-article-related {
    margin: 32px 0 40px;
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .p-article-related.sp {
    display: block;
  }
  .p-article-related.pc {
    display: none;
  }
  .p-article-related__list .c-article__category {
    padding: 2px 8px;
  }
  .p-article-related__list .c-article__ttl {
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  page contact
  --------------------------------------------- */
.p-contact-section {
  padding: 40px 0 130px;
}
.p-contact-section .l-wrap {
  max-width: 832px;
}

.p-contact__form {
  background-color: #FAFAFA;
  border: 1px solid rgba(44, 59, 102, 0.4);
  padding: 40px 24px;
  margin-top: 40px;
}
.p-contact__form dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
}
.p-contact__form dl:not(:last-of-type) {
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.p-contact__form dl dt {
  font-size: 1rem;
  -ms-flex: 1;
      flex: 1;
  color: #333;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 30%;
  max-width: 260px;
}
.p-contact__form dl dd {
  -ms-flex: 1;
      flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}
.p-contact__form dl dd [data-formrun-show-if-error] {
  position: absolute;
  bottom: -18px;
  left: 0;
  color: #d93025;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.5;
}
.p-contact__form dl dd input[type=text],
.p-contact__form dl dd input[type=tel],
.p-contact__form dl dd input[type=email],
.p-contact__form dl dd select {
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-color: #fff;
  border-radius: 2px;
  letter-spacing: 0.03em;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #D2D2D2;
  box-shadow: 1px 1px 1px rgba(1, 37, 67, 0.05);
}
.p-contact__form dl dd textarea {
  font-size: 1rem;
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-color: #fff;
  border-radius: 2px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  border: 1px solid #D2D2D2;
  box-shadow: 1px 1px 1px rgba(1, 37, 67, 0.05);
  resize: vertical;
  height: 100px;
}
.p-contact__form dl dd ::-moz-placeholder {
  color: #D3D3D3;
}
.p-contact__form dl dd :-ms-input-placeholder {
  color: #D3D3D3;
}
.p-contact__form dl dd ::placeholder {
  color: #D3D3D3;
}
.p-contact__form dl dd input:focus,
.p-contact__form dl dd textarea:focus,
.p-contact__form dl dd select:focus {
  outline: none;
}
.p-contact__form dl .form-require,
.p-contact__form dl .form-any {
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  padding: 2px 8px;
  margin-right: 8px;
  color: #fff;
}
.p-contact__form dl .form-require {
  background-color: #C2B541;
}
.p-contact__form dl .form-any {
  background-color: #9F9F9F;
}
.p-contact__form dl.form-select dd {
  position: relative;
}
.p-contact__form dl.form-select dd::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #00447D;
  position: absolute;
  top: 50%;
  right: 15px;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  pointer-events: none;
}

.p-contact__btn {
  margin: 40px auto 0;
  max-width: 240px;
  position: relative;
  cursor: pointer;
}
.p-contact__btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 20px;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.p-contact__btn input,
.p-contact__btn button {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  padding: 15px 20px 15px 24px;
  margin: 40px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  max-width: 240px;
  gap: 18px;
  transition: 0.3s ease;
  position: relative;
  border: 1.5px solid #2C3B66;
  background-color: #2C3B66;
  overflow: hidden;
}
@media (hover: hover) {
  .p-contact__btn:hover::after {
    background-color: #2C3B66;
  }
  .p-contact__btn:hover input,
  .p-contact__btn:hover button {
    background-color: #fff;
    color: #2C3B66;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-section {
    padding: 24px 0 72px;
  }
  .p-contact__form {
    margin-top: 24px;
    padding: 24px 16px;
  }
  .p-contact__form dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    gap: 2px;
  }
  .p-contact__form dl dt {
    width: 100%;
  }
  .p-contact__form dl dd {
    width: 100%;
    -ms-flex: initial;
        flex: initial;
  }
  .p-contact__btn {
    margin: 40px auto 0;
  }
}
/* ---------------------------------------------
  404
  --------------------------------------------- */
.p-error-sec {
  text-align: center;
  padding: 12.5rem 0;
  color: #2C3B66;
}
.p-error-sec .error-num {
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.p-error-sec .ttl-en {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-error-sec .ttl-ja {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 700;
}
.p-error-sec .c-btn-round {
  width: 100%;
  max-width: 320px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .p-error-sec {
    padding: 120px 0;
  }
  .p-error-sec .error-num {
    font-size: 4.375rem;
  }
  .p-error-sec .ttl-en {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .p-error-sec .ttl-ja {
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 700;
  }
  .p-error-sec .c-btn-round {
    margin-top: 60px;
  }
}
/* --------------------------
  policy
  -------------------------- */
.p-policy-section {
  padding: 80px 0;
}
.p-policy__content {
  margin-top: 48px;
}
.p-policy__block:not(:first-child) {
  margin-top: 48px;
}
.p-policy__block__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3B66;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2C3B66;
}
.p-policy__block__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #1E1E1E;
}
.p-policy__list {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 1.5em;
}
.p-policy__list li {
  list-style: disc;
  font-size: 1rem;
  line-height: 1.8;
  color: #1E1E1E;
}

@media screen and (max-width: 767px) {
  .p-policy-section {
    padding: 40px 0;
  }
  .p-policy__content {
    margin-top: 32px;
  }
  .p-policy__block:not(:first-child) {
    margin-top: 32px;
  }
  .p-policy__block__ttl {
    font-size: 1.25rem;
  }
  .p-policy__block__text,
  .p-policy__list li {
    font-size: 0.875rem;
  }
}

/* ---------------------------------------------
  Table of Contents Plus
  --------------------------------------------- */
#toc_container {
  background: #F6F6F6 !important;
  border: 1px solid rgba(44, 59, 102, 0.1);
  padding: 24px !important;
  width: 100% !important;
  display: block !important;
  margin: 40px 0;
}

#toc_container .toc_title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C3B66;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

#toc_container .toc_toggle {
  font-size: 0.75rem;
  font-weight: 400;
}

#toc_container .toc_toggle a {
  color: #2C3B66;
  text-decoration: none;
}
#toc_container .toc_toggle a:hover {
  text-decoration: underline;
}

#toc_container .toc_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#toc_container .toc_list li {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
}

#toc_container .toc_list li:last-child {
  margin-bottom: 0;
}

#toc_container .toc_list a {
  color: #1E1E1E;
  transition: 0.3s ease;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

#toc_container .toc_list a:hover {
  color: #2C3B66;
  opacity: 0.8;
}

#toc_container .toc_number {
  color: #2C3B66;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 16px;
}
#toc_container .toc_number.toc_depth_2,
#toc_container .toc_number.toc_depth_3,
#toc_container .toc_number.toc_depth_4,
#toc_container .toc_number.toc_depth_5 {
  display: none;
}

/* Nesting support */
#toc_container .toc_list ul {
  margin-top: 8px;
  padding-left: 8px;
}

#toc_container .toc_list ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  #toc_container {
    padding: 20px !important;
    margin: 32px 0;
  }
  #toc_container .toc_title {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
  #toc_container .toc_list li {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  #toc_container .toc_list ul {
    margin-top: 10px;
    padding-left: 0;
  }
}

ul.wp-block-list {
  margin-bottom: 24px;
}

ul.wp-block-list li {
  margin: 0 0 8px 24px;
  list-style: disc;
}

.thanks-message {
  margin-top: 40px;
  font-size: 14px;
}