@charset "UTF-8";
/* vw計算関数 */
.header {
  background: #fff;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}
@media (max-width: 768px) {
  .header__top {
    padding: 0px 0 0 20px;
    max-height: 79px;
  }
}
.header__logo {
  width: 100%;
  max-width: 445px;
  height: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__logo {
    width: 90%;
    max-height: 79px;
    padding-right: 10%;
  }
}
.header__logo a {
  display: inline-block;
}
.header__logo a:nth-of-type(1) {
  width: 100%;
  max-width: 81px;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .header__logo a:nth-of-type(1) {
    padding: 5px 0;
    max-width: 60px;
  }
}
@media (max-width: 480px) {
  .header__logo a:nth-of-type(1) {
    max-width: 50px;
  }
}
.header__logo a:nth-of-type(2) {
  width: 100%;
  max-width: 359px;
}
@media (max-width: 480px) {
  .header__logo a:nth-of-type(2) {
    max-width: 240px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .header__insta img {
  width: 46px;
  height: 46px;
}
.header .header__btn {
  display: inline-block;
  padding: 15px 55px 15px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .header .header__btn {
    max-width: 360px;
    font-size: 14px;
    padding: 15px 35px 15px 15px;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.header .header__btn:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 480px) {
  .header .header__btn:before {
    right: 10px;
  }
}
.header .header__btn--site {
  background: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .header .header__btn--site {
    margin-bottom: 10px;
  }
}
.header .header__btn--site:before {
  width: 19.82px;
  height: 19.82px;
  background: url(../images/common/icon-window.svg) no-repeat center/cover;
}
.header .header__btn--apply {
  background: #d60000;
  color: #fff;
}
.header .header__btn--apply:before {
  width: 19.82px;
  height: 19.82px;
  background: url(../images/common/icon-arrow.svg) no-repeat center/cover;
}
.header .header__btn:hover {
  opacity: 0.8;
}
.header .sp-hamburger {
  background: #000;
}
@media (max-width: 768px) {
  .header .sp-hamburger {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .header .sp-hamburger {
    padding: 23px 23px;
  }
}
.header .hamburger {
  display: none;
  position: relative;
  width: 26px;
  height: 18px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
}
.header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.header .hamburger span:nth-child(1) {
  top: 0;
}
.header .hamburger span:nth-child(2) {
  top: 8px;
}
.header .hamburger span:nth-child(3) {
  top: 16px;
}
.header .hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header .hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   グローバルナビ（PC）
   ※sub-menu ドロップダウン対応
========================= */
.gnav {
  background: #000;
}
.gnav .gnav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.gnav .gnav__menu > li {
  position: relative;
  border-left: 1px solid #707070;
  /* ▼ sub-menu（PC ドロップダウン） */
}
.gnav .gnav__menu > li:last-child {
  border-right: 1px solid #707070;
}
.gnav .gnav__menu > li > a {
  display: block;
  padding: 25px 20px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.gnav .gnav__menu > li > a:hover, .gnav .gnav__menu > li.current-menu-item > a, .gnav .gnav__menu > li.current_page_item > a {
  background: #fff;
  color: #000;
}
.gnav .gnav__menu > li.hd-red.current-menu-item > a {
  background: #E83D3D;
}
.gnav .gnav__menu > li.hd-red a:hover {
  background: #E83D3D;
}
.gnav .gnav__menu > li.hd-purple.current-menu-item > a {
  background: #D14DA0;
}
.gnav .gnav__menu > li.hd-purple a:hover {
  background: #D14DA0;
}
.gnav .gnav__menu > li.hd-orange.current-menu-item > a {
  background: #EF651E;
}
.gnav .gnav__menu > li.hd-orange a:hover {
  background: #EF651E;
}
.gnav .gnav__menu > li.hd-green.current-menu-item > a {
  background: #2DBD2A;
}
.gnav .gnav__menu > li.hd-green a:hover {
  background: #2DBD2A;
}
.gnav .gnav__menu > li.hd-yellow.current-menu-item > a {
  background: #FCC632;
}
.gnav .gnav__menu > li.hd-yellow a:hover {
  background: #FCC632;
}
.gnav .gnav__menu > li > .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #000;
  border: 1px solid #707070;
  display: none;
  z-index: 100;
}
.gnav .gnav__menu > li:hover > .sub-menu {
  display: block;
}
.gnav .gnav__menu > li > .sub-menu > li > a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}
.gnav .gnav__menu > li > .sub-menu > li > a:hover {
  background: #fff;
  color: #000;
}

/* =========================
   SP レイアウト
========================= */
@media (max-width: 768px) {
  .header__btn {
    display: none;
  }
  .gnav {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
  .sp-insta {
    position: fixed;
    right: 0;
    top: 70%;
    z-index: 50;
    background: #fff;
    padding: 10px 10px 10px 10px;
    border-radius: 10px 0 0 10px;
    max-width: 50px;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.3);
    opacity: 0;
  }
  .sp-insta.is-show {
    transition: 0.3s;
    opacity: 1;
  }
}
.drawer {
  position: fixed;
  top: 56px;
  right: -100%;
  width: 80%;
  height: calc(100% - 56px);
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 20px;
  transition: 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}
.drawer.is-open {
  right: 0;
}
.drawer__menu {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}
.drawer__menu > li {
  border-bottom: 2px solid #DDDDDD;
}
.drawer__menu > li > a {
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 14px 15px 14px 25px;
  color: #000;
  position: relative;
  text-decoration: none;
}
.drawer__menu > li.hd-red a:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  background: #E83D3D;
  border-radius: 100%;
}
.drawer__menu > li.hd-purple a:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  background: #D14DA0;
  border-radius: 100%;
}
.drawer__menu > li.hd-orange a:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  background: #EF651E;
  border-radius: 100%;
}
.drawer__menu > li.hd-green a:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  background: #2DBD2A;
  border-radius: 100%;
}
.drawer__menu > li.hd-yellow a:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  background: #FCC632;
  border-radius: 100%;
}
.drawer__menu > li.menu-item-has-children {
  position: relative;
}
.drawer__menu > li.menu-item-has-children.is-open > a {
  /* 必要なら開いている時のスタイル */
}
.drawer__menu > li.menu-item-has-children > .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: transparent;
}
.drawer__menu > li.menu-item-has-children.is-open > .sub-menu {
  max-height: 500px;
}
.drawer__menu > li.menu-item-has-children > .sub-menu > li > a {
  font-size: 16px;
  font-weight: normal;
  padding: 10px 15px 10px 25px;
  color: #000;
  border-bottom: 1px solid #DDDDDD;
  text-decoration: none;
}

.mv img {
  width: 100%;
}

.info {
  margin-bottom: 60px;
  background: url(../images/top/bg-pose01.png) no-repeat left top/auto;
}
@media (max-width: 768px) {
  .info {
    margin-bottom: 7%;
    background-size: 50%;
  }
}
@media (max-width: 480px) {
  .info {
    margin-bottom: 30px;
    background-size: 220px;
  }
}
.info__list {
  list-style: none;
  margin: 0 auto 55px;
  padding: 0;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .info__list {
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  .info__list {
    margin-bottom: 30px;
  }
}
.info__item {
  border-bottom: 1px solid #ddd;
}
.info__item a {
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 20px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .info__item a {
    flex-wrap: wrap;
    padding: 15px 0;
  }
}
@media (max-width: 480px) {
  .info__item a {
    gap: 10px;
  }
}
.info__item a:hover {
  opacity: 0.7;
}
.info__item a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  width: 15px;
  height: 18px;
  margin: auto;
  background: url(../images/common/icon-news.svg) no-repeat center/cover;
}
@media (max-width: 768px) {
  .info__item a::before {
    right: 0;
  }
}
@media (max-width: 480px) {
  .info__item a::before {
    width: 10px;
    height: 13px;
  }
}
.info__item .info__date {
  width: 120px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .info__item .info__date {
    width: auto;
  }
}
.info__item .info__cat {
  width: 150px;
  color: #fff;
  border-radius: 2px;
}
.info__item .info__cat__bg {
  padding: 4px 8px;
  background: #262626;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 768px) {
  .info__item .info__cat {
    width: 50%;
  }
}
.info__item .info__title {
  font-size: 16px;
}
@media (max-width: 768px) {
  .info__item .info__title {
    width: 100%;
    display: block;
    padding-right: 20px;
  }
}
.info__item--none {
  border: none;
}
.info__item--none .info__title {
  font-size: 14px;
  color: #666;
}
.info .button-border a {
  margin: 0 auto;
}
.info .info__more {
  text-align: center;
  margin-top: 30px;
}

.movie {
  position: relative;
  background: url(../images/top/live-bg.jpg) no-repeat center/cover;
  overflow: hidden;
}
.movie .movie__youtube {
  margin-bottom: 40px;
}
.movie .movie__youtube-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie .movie__youtube-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie .movie__live-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 50px;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .movie .movie__live-box {
    flex-direction: column;
    padding: 6% 20px;
  }
}
@media (max-width: 480px) {
  .movie .movie__live-box {
    padding: 30px 20px;
  }
}
.movie .movie__live-img {
  width: 50%;
}
@media (max-width: 768px) {
  .movie .movie__live-img {
    width: 100%;
  }
}
.movie .movie__live-content {
  width: 50%;
}
@media (max-width: 768px) {
  .movie .movie__live-content {
    width: 100%;
  }
}
.movie .movie__live-content .movie__live-title-en {
  font-size: 27px;
  margin: 0;
}
@media (max-width: 768px) {
  .movie .movie__live-content .movie__live-title-en {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .movie .movie__live-content .movie__live-title-en {
    font-size: 18px;
  }
}
.movie .movie__live-content .movie__live-title {
  font-size: 28px;
  margin: 20px 0 35px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .movie .movie__live-content .movie__live-title {
    font-size: 22px;
    margin: 4% 0 5.5%;
  }
}
@media (max-width: 480px) {
  .movie .movie__live-content .movie__live-title {
    font-size: 18px;
    margin: 10px 0 20px;
  }
}
.movie .movie__live-content .movie__live-title span {
  background: #3DB0F5;
  border-radius: 5px;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 10px;
  line-height: 1;
}
.movie .button-black {
  margin: 0 auto 10px;
}
.movie .button-black a {
  margin: 0 auto;
}
.movie .flowtxt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.movie .flowtxt span {
  color: rgba(255, 255, 255, 0.1);
  font-size: 10.4166666667vw;
  line-height: 1;
}
.movie .wrapper {
  display: flex;
  animation: loop-text 50s linear infinite;
}
.movie .double-content {
  display: inline-block;
  white-space: nowrap;
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.map__flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .map__flex {
    flex-direction: column;
    gap: 50px;
  }
}
.map__flex-left p {
  line-height: 2;
}
@media (max-width: 768px) {
  .map__flex-left p {
    line-height: 1.6em;
  }
}
.map__flex-left .button-red {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .map__flex-left .button-red {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .map__flex-left .button-red {
    margin-top: 30px;
  }
}
.map__flex-right {
  width: 50%;
}
@media (max-width: 768px) {
  .map__flex-right {
    width: 100%;
  }
}
.map__flex-right iframe {
  width: 100%;
  height: 40vh;
}

.overview {
  background: url(../images/top/overview-bg.png) no-repeat center/cover;
}
.overview__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .overview__flex {
    flex-direction: column;
  }
}
.overview__flex-right .button-pdf a {
  margin: 0 auto;
}

.insta__title {
  text-align: center;
}
.insta__title span {
  display: inline-block;
  position: relative;
  font-size: clamp(18px, 2.0833333333vw, 40px);
  padding-left: 50px;
}
.insta__title span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background: url(../images/common/icon-instagram-gray.svg) no-repeat center/cover;
}

.sponsor {
  background: #fff;
  padding: 60px 0 40px;
}
@media (max-width: 768px) {
  .sponsor {
    padding: 8% 0 6%;
  }
}
@media (max-width: 480px) {
  .sponsor {
    padding: 30px 0 20px;
  }
}
.sponsor .sponsor__inner {
  border-top: 1px solid #707070;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.sponsor .sponsor__title {
  color: #9A9A9A;
  font-size: clamp(18px, 1.5625vw, 30px);
  font-weight: 700;
  margin-bottom: 60px;
  margin-top: 65px;
}
@media (max-width: 768px) {
  .sponsor .sponsor__title {
    margin-bottom: 8%;
    margin-top: 8.5%;
  }
}
@media (max-width: 480px) {
  .sponsor .sponsor__title {
    margin-bottom: 30px;
    margin-top: 35px;
  }
}
.sponsor .sponsor__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .sponsor .sponsor__list {
    flex-wrap: wrap;
    gap: 4%;
  }
}
@media (max-width: 768px) {
  .sponsor .sponsor__item {
    width: 48%;
  }
}
.sponsor .sponsor__item img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}
.footer .footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0 0 60px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  border-bottom: 1px solid #444;
}
@media (max-width: 768px) {
  .footer .footer-nav__menu {
    padding-bottom: 8%;
  }
}
@media (max-width: 480px) {
  .footer .footer-nav__menu {
    padding-bottom: 30px;
  }
}
.footer .footer-nav__menu > li > a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  transition: 0.3s;
}
.footer .footer-nav__menu > li > a:hover {
  opacity: 0.7;
}
.footer .footer-nav__menu ul.sub-menu {
  list-style: none;
  margin: 6px 0 0;
  padding: 0 0 0 12px;
}
.footer .footer-nav__menu ul.sub-menu li {
  margin-bottom: 10px;
}
.footer .footer-nav__menu ul.sub-menu li:last-child {
  margin-bottom: 0;
}
.footer .footer-nav__menu ul.sub-menu li a {
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  padding: 2px 0;
  font-size: clamp(12px, 0.7291666667vw, 14px);
}
.footer .footer-nav__menu ul.sub-menu li a:hover {
  color: #fff;
}
.footer .footer__copy {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer .footer-nav__menu {
    flex-direction: column;
    gap: 14px;
  }
}
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  background: #fff;
  /*   デフォルトは非表示 */
  opacity: 0;
}
@media (max-width: 768px) {
  .pagetop {
    right: 10px;
  }
}

.pagetop:hover {
  box-shadow: 0 0 10px #ddd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #262626;
  background-color: #fff;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3 {
  line-height: 1.35;
  margin: 0 0 8px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}
a:hover img {
  transition: 0.3s;
  opacity: 0.6;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title__en {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.section-title__jp {
  display: block;
  font-weight: bold;
  margin-top: 5px;
  font-size: clamp(14px, 1.25vw, 24px);
}

.section-pd {
  padding: 100px 0 120px;
}
@media (max-width: 768px) {
  .section-pd {
    padding: 12% 0 14%;
  }
}
@media (max-width: 480px) {
  .section-pd {
    padding: 50px 0 60px;
  }
}

.main {
  padding-bottom: 80px;
}

.dis-pc {
  display: block;
}
@media (max-width: 768px) {
  .dis-pc {
    display: none;
  }
}

.dis-sp {
  display: none;
}
@media (max-width: 768px) {
  .dis-sp {
    display: block;
  }
}

.fs90 {
  font-size: clamp(40px, 4.6875vw, 90px);
}

.roboto {
  font-family: "Roboto", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fc-red {
  color: #E83D3D;
}

.fc-white {
  color: #fff;
}

.linktxt {
  color: #00A8FF;
  text-decoration: underline;
}

.txt-c {
  text-align: center;
}

.pagetitle {
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .pagetitle {
    margin-bottom: 10%;
  }
}
@media (max-width: 480px) {
  .pagetitle {
    margin-bottom: 40px;
  }
}
.pagetitle span {
  display: block;
  text-align: center;
  font-weight: bold;
}
.pagetitle__en {
  font-size: clamp(146x, 1.0416666667vw, 20px);
}
.pagetitle__jp {
  font-size: clamp(20px, 1.875vw, 36px);
}
.pagetitle-orange::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 5px;
  background: #EF651E;
}
.pagetitle-orange .pagetitle__en {
  color: #EF651E;
}
.pagetitle-purple::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 5px;
  background: #D14DA0;
}
.pagetitle-purple .pagetitle__en {
  color: #D14DA0;
}

.button-red a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 360px;
  padding: 25px 25px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  background: #E83D3D;
  border: 1px solid #B72C2C;
  transition: 0.3s ease-in-out;
}
.button-red a::before, .button-red a::after {
  content: "";
  position: absolute;
  right: 15px;
  background-color: #fff;
  transition: 0.3s;
}
.button-red a::before {
  top: 50%;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 10px;
  height: 2px;
}
.button-red a::after {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
}
.button-red a:hover {
  background: #fff;
  color: #E83D3D;
}
.button-red a:hover::before, .button-red a:hover::after {
  right: -1.2em;
  background-color: #fff;
}

.button-black a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 360px;
  padding: 25px 25px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  background: #262626;
  border: 1px solid #ddd;
  transition: 0.3s ease-in-out;
}
.button-black a::before, .button-black a::after {
  content: "";
  position: absolute;
  right: 15px;
  background-color: #fff;
  transition: 0.3s;
}
.button-black a::before {
  top: 50%;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 10px;
  height: 2px;
}
.button-black a::after {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
}
.button-black a:hover {
  background: #fff;
  color: #262626;
}
.button-black a:hover::before, .button-black a:hover::after {
  right: -1.2em;
  background-color: #fff;
}

.button-border a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 360px;
  padding: 25px 25px;
  color: #E83D3D;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  border: 2px solid #E83D3D;
  transition: 0.3s ease-in-out;
}
.button-border a::before, .button-border a::after {
  content: "";
  position: absolute;
  right: 15px;
  background-color: #E83D3D;
  transition: 0.3s;
}
.button-border a::before {
  top: 50%;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 10px;
  height: 2px;
}
.button-border a::after {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
}
.button-border a:hover {
  background: #E83D3D;
  color: #fff;
}
.button-border a:hover::before, .button-border a:hover::after {
  right: -1.2em;
}

.button-pdf a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 360px;
  min-width: 260px;
  padding: 25px 25px;
  color: #fff;
  background: #262626;
  border: 1px solid #ddd;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.button-pdf a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 26px;
  height: 26px;
  margin: auto;
  background: url(../images/common/icon-pdf.svg) no-repeat center/cover;
}
.button-pdf a:hover {
  background: #ddd;
  color: #262626;
}

.button-window a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 360px;
  padding: 25px 25px;
  color: #fff;
  background: #262626;
  border: 1px solid #ddd;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.button-window a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 26px;
  height: 26px;
  margin: auto;
  background: url(../images/common/icon-window.svg) no-repeat center/cover;
}
.button-window a:hover {
  background: #ddd;
  color: #262626;
}

.breadcrumbs {
  padding: 20px 0 80px 0;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 20px 0 10% 0;
  }
}
@media (max-width: 480px) {
  .breadcrumbs {
    padding: 20px 0 40px 0;
  }
}
.breadcrumbs a, .breadcrumbs span {
  text-decoration: none;
  color: #262626;
}

.pages-mv {
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
  padding: 162px 20px 113px;
}
@media (max-width: 768px) {
  .pages-mv {
    padding: 18% 20px 14%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .pages-mv {
    padding: 80px 20px 60px;
    margin: 0 auto;
  }
}
.pages-mv span {
  display: block;
  font-weight: bold;
  color: #fff;
}
.pages-mv span:nth-of-type(1) {
  text-transform: uppercase;
  border-radius: 100vh;
  display: inline-block;
  padding: 10px 20px 0;
  min-width: 231px;
  margin-bottom: 10px;
  line-height: 1;
}
.pages-mv span:nth-of-type(2) {
  font-size: 24px;
}
@media (max-width: 768px) {
  .pages-mv span:nth-of-type(2) {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .pages-mv span:nth-of-type(2) {
    font-size: 16px;
  }
}

.article_flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 138px;
}
@media (max-width: 768px) {
  .article_flex {
    width: 100%;
    flex-direction: column;
    gap: 15%;
  }
}
@media (max-width: 480px) {
  .article_flex {
    gap: 50px;
  }
}
.article_flex main {
  width: 80%;
  max-width: 800px;
}
@media (max-width: 768px) {
  .article_flex main {
    width: calc(100% - 40px);
    margin: 0 auto 50px;
  }
}
.article_flex aside {
  width: 20%;
  height: 100%;
  color: #707070;
  border: 1px solid #DDDDDD;
}
@media (max-width: 768px) {
  .article_flex aside {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 0 auto;
  }
}
.article_flex aside .sidebar__title {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 15px;
  margin-top: 100px;
  background: #262626;
}
@media (max-width: 768px) {
  .article_flex aside .sidebar__title {
    margin-top: 12%;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .article_flex aside .sidebar__title {
    font-size: 18px;
    margin-top: 50px;
  }
}
.article_flex aside .sidebar__title:nth-of-type(1) {
  margin-top: 0;
}
.article_flex aside ul {
  margin: 0;
  padding: 0 20px;
  list-style: none;
}
.article_flex aside ul li {
  padding: 20px 10px;
  border-bottom: 1px solid #DDDDDD;
}
.article_flex aside ul li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .article_flex aside ul li {
    padding: 6% 0;
  }
}
@media (max-width: 480px) {
  .article_flex aside ul li {
    padding: 15px 0;
  }
}
.article_flex aside ul li a {
  display: block;
  text-decoration: none;
}
.article_flex aside ul li span, .article_flex aside ul li time {
  display: block;
}
.article_flex aside ul li time {
  color: #ABABAB;
  font-weight: bold;
}

body.single-post .pages-mv {
  background: url(../images/common/mv-news.jpg) no-repeat center/cover;
}
body.single-post #contents {
  background: url(../images/top/bg-pose01.png) no-repeat left top/auto;
}
@media (max-width: 768px) {
  body.single-post #contents {
    background-size: 50%;
  }
}
@media (max-width: 480px) {
  body.single-post #contents {
    background-size: 220px;
  }
}
body.single-post .article_flex main .date {
  color: #ABABAB;
  font-size: 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  body.single-post .article_flex main .date {
    font-size: 14px;
    margin-bottom: 4%;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main .date {
    margin-bottom: 10px;
  }
}
body.single-post .article_flex main .date .time {
  font-weight: bold;
  line-height: 1;
}
body.single-post .article_flex main .post-ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  body.single-post .article_flex main .post-ttl {
    font-size: 20px;
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main .post-ttl {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
body.single-post .article_flex main article section {
  padding: 30px 40px 50px;
  border: 1px solid #CECECE;
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  body.single-post .article_flex main article section {
    padding: 5% 0;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section {
    padding: 15px 0;
  }
}
body.single-post .article_flex main article section .wrap {
  padding: 0 20px;
}
body.single-post .article_flex main article section .wrap .wp-block-quote {
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  background: #F2EFE6;
}
body.single-post .article_flex main article section .wrap .wp-block-quote p {
  margin: 0 0 15px;
}
body.single-post .article_flex main article section .wrap .wp-block-quote p:last-child {
  margin-bottom: 0;
}
body.single-post .article_flex main article section .wrap .wp-block-image,
body.single-post .article_flex main article section .wrap .wp-block-list,
body.single-post .article_flex main article section .wrap p {
  margin-top: 20px;
}
@media (max-width: 768px) {
  body.single-post .article_flex main article section .wrap .wp-block-image,
  body.single-post .article_flex main article section .wrap .wp-block-list,
  body.single-post .article_flex main article section .wrap p {
    margin-top: 4%;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section .wrap .wp-block-image,
  body.single-post .article_flex main article section .wrap .wp-block-list,
  body.single-post .article_flex main article section .wrap p {
    margin-top: 15px;
  }
}
body.single-post .article_flex main article section .wrap .wp-block-heading {
  margin-top: 120px;
}
@media (max-width: 768px) {
  body.single-post .article_flex main article section .wrap .wp-block-heading {
    margin-top: 14%;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section .wrap .wp-block-heading {
    margin-top: 60px;
  }
}
body.single-post .article_flex main article section .wrap h2.wp-block-heading {
  font-size: 22px;
  padding: 20px 20px;
  color: #fff;
  background: #262626;
}
@media (max-width: 768px) {
  body.single-post .article_flex main article section .wrap h2.wp-block-heading {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section .wrap h2.wp-block-heading {
    font-size: 16px;
    padding: 10px 15px;
  }
}
body.single-post .article_flex main article section .wrap h3.wp-block-heading {
  font-size: 22px;
  padding-left: 30px;
  border-left: 8px #262626 solid;
}
@media (max-width: 768px) {
  body.single-post .article_flex main article section .wrap h3.wp-block-heading {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section .wrap h3.wp-block-heading {
    font-size: 16px;
    padding-left: 15px;
    border-width: 4px;
  }
}
body.single-post .article_flex main article section .wrap h4.wp-block-heading {
  font-size: 20px;
  display: inline-block;
  border-bottom: 1px solid #262626;
}
@media (max-width: 768px) {
  body.single-post .article_flex main article section .wrap h4.wp-block-heading {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section .wrap h4.wp-block-heading {
    font-size: 16px;
  }
}
body.single-post .article_flex main article section .wrap .wp-block-list {
  margin-left: 20px;
}
body.single-post .article_flex main article section .wrap .wp-block-list li {
  font-size: 16px;
  list-style-type: disc;
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section .wrap .wp-block-list li {
    font-size: 14px;
  }
}
body.single-post .article_flex main article section .wrap .wp-block-buttons {
  margin-top: 60px;
  justify-content: center;
}
@media (max-width: 768px) {
  body.single-post .article_flex main article section .wrap .wp-block-buttons {
    margin-top: 8%;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article section .wrap .wp-block-buttons {
    margin-top: 30px;
  }
}
body.single-post .article_flex main article section .wrap .wp-block-buttons.is-content-justification-center {
  margin-left: auto;
  margin-right: auto;
}
body.single-post .article_flex main article section .wrap .wp-block-button__link {
  background: none;
  padding: 0;
  font-size: initial;
  text-align: center;
  color: #262626;
  display: block;
}
body.single-post .article_flex main article .post-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
}
body.single-post .article_flex main article .post-nav a {
  text-decoration: none;
}
body.single-post .article_flex main article .button-red a {
  margin: 50px auto 0;
}
body.single-post .article_flex main article .article__btn {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 768px) {
  body.single-post .article_flex main article .article__btn {
    margin-top: 9%;
  }
}
@media (max-width: 480px) {
  body.single-post .article_flex main article .article__btn {
    margin-top: 40px;
  }
}

body.archive .pages-mv,
body.category .pages-mv {
  background: url(../images/common/mv-news.jpg) no-repeat center/cover;
}
body.archive #contents,
body.category #contents {
  background: url(../images/top/bg-pose01.png) no-repeat left top/auto;
}
@media (max-width: 768px) {
  body.archive #contents,
  body.category #contents {
    background-size: 50%;
  }
}
@media (max-width: 480px) {
  body.archive #contents,
  body.category #contents {
    background-size: 220px;
  }
}
body.archive .article_flex,
body.category .article_flex {
  gap: 88px;
}
@media (max-width: 768px) {
  body.archive .article_flex,
  body.category .article_flex {
    gap: 10%;
  }
}
@media (max-width: 480px) {
  body.archive .article_flex,
  body.category .article_flex {
    gap: 40px;
  }
}
body.archive main,
body.category main {
  max-width: 996px;
  min-height: 500px;
}
body.archive main .info__list,
body.category main .info__list {
  list-style: none;
  margin: 0 auto 55px;
  padding: 0;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  body.archive main .info__list,
  body.category main .info__list {
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  body.archive main .info__list,
  body.category main .info__list {
    margin-bottom: 30px;
  }
}
body.archive main .info__item,
body.category main .info__item {
  border-bottom: 1px solid #ddd;
}
body.archive main .info__item a,
body.category main .info__item a {
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 20px;
  text-decoration: none;
  color: #262626;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  body.archive main .info__item a,
  body.category main .info__item a {
    flex-wrap: wrap;
    padding: 15px 0;
  }
}
@media (max-width: 480px) {
  body.archive main .info__item a,
  body.category main .info__item a {
    gap: 10px;
  }
}
body.archive main .info__item a:hover,
body.category main .info__item a:hover {
  opacity: 0.7;
}
body.archive main .info__item a::before,
body.category main .info__item a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  width: 15px;
  height: 18px;
  margin: auto;
  background: url(../images/common/icon-news.svg) no-repeat center/cover;
}
@media (max-width: 768px) {
  body.archive main .info__item a::before,
  body.category main .info__item a::before {
    right: 0;
  }
}
@media (max-width: 480px) {
  body.archive main .info__item a::before,
  body.category main .info__item a::before {
    width: 10px;
    height: 13px;
  }
}
body.archive main .info__item .info__date,
body.category main .info__item .info__date {
  width: 120px;
  font-size: 14px;
}
@media (max-width: 768px) {
  body.archive main .info__item .info__date,
  body.category main .info__item .info__date {
    width: auto;
  }
}
body.archive main .info__item .info__cat,
body.category main .info__item .info__cat {
  width: 150px;
  color: #fff;
  border-radius: 2px;
}
body.archive main .info__item .info__cat__bg,
body.category main .info__item .info__cat__bg {
  padding: 4px 8px;
  background: #262626;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 768px) {
  body.archive main .info__item .info__cat,
  body.category main .info__item .info__cat {
    width: 50%;
  }
}
body.archive main .info__item .info__title,
body.category main .info__item .info__title {
  font-size: 16px;
}
@media (max-width: 768px) {
  body.archive main .info__item .info__title,
  body.category main .info__item .info__title {
    width: 100%;
    display: block;
    padding-right: 20px;
  }
}
body.archive main .info__item--none,
body.category main .info__item--none {
  border: none;
}
body.archive main .info__item--none .info__title,
body.category main .info__item--none .info__title {
  font-size: 14px;
  color: #666;
}
body.archive main .wp-pagenavi,
body.category main .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
}
@media (max-width: 480px) {
  body.archive main .wp-pagenavi,
  body.category main .wp-pagenavi {
    font-size: 15px;
  }
}
body.archive main .wp-pagenavi a, body.archive main .wp-pagenavi span,
body.category main .wp-pagenavi a,
body.category main .wp-pagenavi span {
  border: none !important;
}
body.archive main .wp-pagenavi .previouspostslink,
body.archive main .wp-pagenavi .nextpostslink,
body.category main .wp-pagenavi .previouspostslink,
body.category main .wp-pagenavi .nextpostslink {
  position: relative;
  text-indent: -999999px;
}
body.archive main .wp-pagenavi .previouspostslink:before,
body.archive main .wp-pagenavi .nextpostslink:before,
body.category main .wp-pagenavi .previouspostslink:before,
body.category main .wp-pagenavi .nextpostslink:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 18px;
  margin: auto;
}
body.archive main .wp-pagenavi .previouspostslink,
body.category main .wp-pagenavi .previouspostslink {
  margin-right: 20px;
}
body.archive main .wp-pagenavi .previouspostslink:before,
body.category main .wp-pagenavi .previouspostslink:before {
  background: url(../images/common/pagenav-l.svg) no-repeat center/cover;
}
body.archive main .wp-pagenavi .nextpostslink,
body.category main .wp-pagenavi .nextpostslink {
  margin-left: 20px;
}
body.archive main .wp-pagenavi .nextpostslink:before,
body.category main .wp-pagenavi .nextpostslink:before {
  background: url(../images/common/pagenav-r.svg) no-repeat center/cover;
}

body.contact .pages-mv {
  background: url(../images/contact/mv-contact.jpg) no-repeat center/cover;
}
body.contact #contents {
  background: url(../images/contact/bg-pose01.png) no-repeat left top/auto;
}
@media (max-width: 768px) {
  body.contact #contents {
    background-size: 50%;
  }
}
@media (max-width: 480px) {
  body.contact #contents {
    background-size: 220px;
  }
}
body.contact #contents main > section {
  padding-top: 0;
}
body.contact #contents main > section ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  body.contact #contents main > section ul {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  body.contact #contents main > section ul {
    gap: 15px;
  }
}
body.contact #contents main > section ul li {
  display: flex;
  flex-direction: column;
  border: 1px solid #BF9B89;
}
body.contact #contents main > section ul li .contact__list-title {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  background: #262626;
  padding: 20px;
}
body.contact #contents main > section ul li .contact__list-title h3 {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: clamp(14px, 0.9375vw, 18px);
  margin-bottom: 0;
}
body.contact #contents main > section ul li .contact__list-box {
  background: #fff;
  padding: 35px 20px 20px;
  text-align: center;
}
body.contact #contents main > section ul li .contact__list-box p {
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  body.contact #contents main > section ul li .contact__list-box p {
    margin-bottom: 5%;
  }
}
@media (max-width: 480px) {
  body.contact #contents main > section ul li .contact__list-box p {
    margin-bottom: 15px;
  }
}
body.contact #contents main > section .btn-window {
  max-width: 220px;
  margin: 0 auto;
  display: inline-block;
  padding: 15px 55px 15px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  background: #EF651E;
  color: #fff;
  border: 1px solid #ddd;
}
body.contact #contents main > section .btn-window:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 19.82px;
  height: 19.82px;
  background: url(../images/common/icon-window.svg) no-repeat center/cover;
}
@media (max-width: 768px) {
  body.contact #contents main > section .btn-window {
    margin-bottom: 10px;
    font-size: 14px;
    padding: 15px 35px 15px 15px;
    display: block;
    text-align: center;
  }
}
body.contact #contents main > section .btn-window:hover {
  opacity: 0.8;
}
body.contact #contents main > section .btn-arrow {
  max-width: 220px;
  margin: 0 auto;
  display: inline-block;
  padding: 15px 55px 15px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  background: #EF651E;
  color: #fff;
  border: 1px solid #ddd;
}
body.contact #contents main > section .btn-arrow:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 12px;
  background: url(../images/contact/arrow.svg) no-repeat center/cover;
}
@media (max-width: 768px) {
  body.contact #contents main > section .btn-arrow {
    margin-bottom: 10px;
    font-size: 14px;
    padding: 15px 35px 15px 15px;
    display: block;
    text-align: center;
  }
}
body.contact #contents main > section .btn-arrow:hover {
  opacity: 0.8;
}

body.form .pages-mv {
  background: url(../images/contact/mv-contact.jpg) no-repeat center/cover;
}
body.form #contents main > section {
  padding-top: 0;
}
body.form .form__inner {
  background: #F2EFE6;
  padding: 80px 20px;
  margin: 50px auto 0;
  max-width: 1040px;
}
@media (max-width: 768px) {
  body.form .form__inner {
    padding: 10% 20px;
  }
}
@media (max-width: 480px) {
  body.form .form__inner {
    padding: 40px 20px;
  }
}
body.form .form__inner form {
  max-width: 690px;
  margin: 0 auto;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
body.form .form__inner form .wp-block-snow-monkey-forms-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  body.form .form__inner form .wp-block-snow-monkey-forms-item {
    flex-direction: column;
    margin-bottom: 6%;
  }
}
@media (max-width: 480px) {
  body.form .form__inner form .wp-block-snow-monkey-forms-item {
    margin-bottom: 30px;
  }
}
body.form .form__inner form .wp-block-snow-monkey-forms-item .smf-item__label {
  display: inline-block;
}
body.form .form__inner form .wp-block-snow-monkey-forms-item .smf-item__col.smf-item__col--label {
  min-width: 300px;
  position: relative;
}
@media (max-width: 768px) {
  body.form .form__inner form .wp-block-snow-monkey-forms-item .smf-item__col.smf-item__col--label {
    min-width: 100%;
  }
}
body.form .form__inner form .wp-block-snow-monkey-forms-item .smf-item__col.smf-item__col--label:before {
  content: "必須";
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  background: #B72C2C;
  font-size: clamp(13px, 0.7291666667vw, 14px);
  padding: 5px 7px;
  margin-right: 10px;
}
body.form .form__inner form .wp-block-snow-monkey-forms-item.any .smf-item__col.smf-item__col--label:before {
  content: "任意";
  color: #fff;
  background: #919191;
  font-size: clamp(13px, 0.7291666667vw, 14px);
  padding: 5px 7px;
}
body.form .form__inner form .smf-item__col.smf-item__col--controls {
  width: 100%;
}
body.form .form__inner form .smf-item__col.smf-item__col--controls input[type=text],
body.form .form__inner form .smf-item__col.smf-item__col--controls input[type=email],
body.form .form__inner form .smf-item__col.smf-item__col--controls input[type=textarea] {
  width: 100%;
  font-size: clamp(16px, 0.9375vw, 18px);
}
body.form .form__inner form .txtarea {
  min-height: 200px;
  font-size: clamp(16px, 0.9375vw, 18px);
}
body.form .form__inner form .smf-placeholder[data-name=checkboxes-1j1s2614l] {
  text-align: center;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.form .form__inner form .smf-action {
  text-align: center;
}
body.form .form__inner form .smf-action button {
  color: #fff;
  background: #262626;
  padding: 15px 10px;
  border: none;
  border-radius: 0;
  max-width: 266px;
  width: 100%;
  margin: 50px auto 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
@media (max-width: 768px) {
  body.form .form__inner .smf-action .smf-button-control + .smf-button-control {
    margin-left: 0;
  }
}

.snow-monkey-form .button-red a {
  margin: 50px auto 0;
}
@media (max-width: 768px) {
  .snow-monkey-form .button-red a {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .snow-monkey-form .button-red a {
    margin-top: 25px;
  }
}

body.privacypolicy .pages-mv,
body.error404 .pages-mv {
  background: url(../images/common/mv-common.jpg) no-repeat center/cover;
}
body.privacypolicy #contents main > section,
body.error404 #contents main > section {
  padding-top: 0;
}

body.sponserd .pages-mv {
  background: url(../images/sponserd/mv-sponserd.jpg) no-repeat center/cover;
}
body.sponserd #contents main .intro {
  padding-top: 0;
}
body.sponserd #contents main .intro__txt {
  margin: 0 auto 60px;
  line-height: 1.6;
}
body.sponserd #contents main .intro ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
body.sponserd #contents main .intro ul.sponserd__list01 {
  gap: 4%;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul.sponserd__list01 {
    margin-bottom: 9%;
  }
}
@media (max-width: 480px) {
  body.sponserd #contents main .intro ul.sponserd__list01 {
    margin-bottom: 40px;
  }
}
body.sponserd #contents main .intro ul.sponserd__list01 .btn-window {
  display: inline-block;
  padding: 15px 55px 15px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  background: #262626;
  color: #fff;
  border: 1px solid #ddd;
}
body.sponserd #contents main .intro ul.sponserd__list01 .btn-window:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 19.82px;
  height: 19.82px;
  background: url(../images/common/icon-window.svg) no-repeat center/cover;
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul.sponserd__list01 .btn-window {
    max-width: 220px;
    margin: 0 auto 10px;
    font-size: 14px;
    padding: 15px 35px 15px 15px;
    display: block;
    text-align: center;
  }
}
body.sponserd #contents main .intro ul.sponserd__list01 .btn-window:hover {
  opacity: 0.8;
}
body.sponserd #contents main .intro ul.sponserd__list01 li {
  width: 48%;
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul.sponserd__list01 li {
    width: 100%;
    margin-bottom: 30px;
  }
}
body.sponserd #contents main .intro ul.sponserd__list01 li p {
  margin: 30px 0;
  font-weight: 700;
  font-size: clamp(18px, 1.25vw, 24px);
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul.sponserd__list01 li p {
    margin: 5% 0;
    text-align: center;
  }
}
@media (max-width: 480px) {
  body.sponserd #contents main .intro ul.sponserd__list01 li p {
    margin: 15px 0;
  }
}
body.sponserd #contents main .intro ul.sponserd__list02 {
  gap: 4%;
  margin-bottom: 70px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul.sponserd__list02 {
    flex-wrap: wrap;
  }
}
body.sponserd #contents main .intro ul.sponserd__list02 .btn-window {
  display: inline-block;
  padding: 15px 55px 15px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  background: #262626;
  color: #fff;
  border: 1px solid #ddd;
  max-width: 220px;
}
body.sponserd #contents main .intro ul.sponserd__list02 .btn-window:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 19.82px;
  height: 19.82px;
  background: url(../images/common/icon-window.svg) no-repeat center/cover;
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul.sponserd__list02 .btn-window {
    margin: 0 auto;
    font-size: 14px;
    padding: 10px 35px 10px 15px;
    display: block;
    text-align: center;
  }
}
body.sponserd #contents main .intro ul.sponserd__list02 .btn-window:hover {
  opacity: 0.8;
}
body.sponserd #contents main .intro ul.sponserd__list02 li {
  width: 32%;
}
@media (max-width: 768px) {
  body.sponserd #contents main .intro ul.sponserd__list02 li {
    width: 48%;
  }
}
body.sponserd #contents main .intro ul.sponserd__list02 li p {
  margin: 20px 0;
  font-weight: 700;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.sponserd #contents main .app {
  position: relative;
  background: url(../images/sponserd/app-bg.jpg) no-repeat center/cover;
}
body.sponserd #contents main .app .pagetitle__jp {
  color: #fff;
}
body.sponserd #contents main .app__mv {
  position: absolute;
  left: 0;
  top: 0;
}
body.sponserd #contents main .app__txt {
  margin: 0 auto 60px;
  line-height: 1.6;
}
body.sponserd #contents main .app__box {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 50px 40px;
  box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  body.sponserd #contents main .app__box {
    padding: 7% 20px;
  }
}
@media (max-width: 480px) {
  body.sponserd #contents main .app__box {
    padding: 30px 20px;
  }
}
body.sponserd #contents main .app__btn {
  margin-top: 60px;
  padding: 50px 15px;
  background: url(../images/sponserd/app-btn-bg.jpg) no-repeat center/cover;
}
body.sponserd #contents main .app__btn h4 {
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  body.sponserd #contents main .app__btn h4 {
    margin-bottom: 5%;
  }
}
@media (max-width: 480px) {
  body.sponserd #contents main .app__btn h4 {
    margin-bottom: 15px;
  }
}
body.sponserd #contents main .app__btn__inner {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  body.sponserd #contents main .app__btn__inner {
    flex-direction: column;
    align-items: center;
  }
}
body.sponserd #contents main .app__btn__inner .button-window,
body.sponserd #contents main .app__btn__inner .button-pdf {
  width: 100%;
  max-width: 360px;
}
body.sponserd #contents main .app__btn__inner .button-window a {
  border: none;
  background: #D14DA0;
}
body.sponserd #contents main .app__btn__inner .button-pdf a {
  border: none;
  background: #E83D3D;
}
body.sponserd #contents main .app ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2%;
}
@media (max-width: 768px) {
  body.sponserd #contents main .app ul {
    flex-direction: column;
    gap: 10px;
  }
}
body.sponserd #contents main .app ul li {
  width: 32%;
  background: #F2EFE6;
  border-top: 2px solid #D14DA0;
  padding: 30px 15px;
  text-align: center;
  margin-bottom: 2%;
}
@media (max-width: 768px) {
  body.sponserd #contents main .app ul li {
    width: 100%;
    padding: 5% 15px;
  }
}
@media (max-width: 480px) {
  body.sponserd #contents main .app ul li {
    padding: 20px 15px;
  }
}
body.sponserd #contents main .app ul li h3 {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}

body.error404 .button-border a {
  margin: 50px auto 0;
}/*# sourceMappingURL=style.css.map */