@charset "UTF-8";
/******************************** 
   フォント、ブレイクポイントなど
*********************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@media screen and (max-width: 999px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .is-sp {
    display: none;
  }
}

/******************************** 
   reset.css、共通
*********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
figure,
time,
article,
p,
span {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  color: #222;
  word-break: break-all;
}

.dots {
  background-image: radial-gradient(#D9D9D9 1px, transparent 1px);
  background-size: 13px 13px;
  /* 丸の間隔を指定 */
  background-position: 0 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
a:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}

dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

/******************************** 
   inner
*********************************/
.inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/******************************** 
   header
*********************************/
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 40px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0px 16px;
  }
}

.header__logo {
  transition: all 0.4s ease 0s;
  width: 78px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 60px;
  }
}
.header__logo a {
  display: block;
}

.header__menu {
  display: flex;
  margin: 0 auto;
}
.header__menu li {
  margin-left: 20px;
}
.header__menu li a {
  transition: all 0.4s ease 0s;
  display: block;
  line-height: 100px;
  white-space: nowrap;
  font-weight: bold;
  font-size: clamp(15px, 1.25vw, 18px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__menu li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .header__menu {
    display: none;
  }
}

.header__button {
  background: #D6006C;
  color: #fff;
  padding: 12px 42px 12px 16px;
  border-radius: 50px;
  display: block;
  position: relative;
  white-space: nowrap;
  max-width: 400px;
  font-size: clamp(15px, 1.25vw, 18px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__button {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    font-size: 16px;
  }
}
.header__button::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-icon-white.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__button {
    display: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    display: none;
    margin: 30px auto 60px;
  }
}
.header__button.drawer__button {
  display: block;
}

/******************************** 
   drawer icon
*********************************/
.drawer-icon {
  cursor: pointer;
  transition: 0.5s ease 0s;
  width: 50px;
  height: 50px;
  background: #d6006c;
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 301;
  border-radius: 50%;
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  top: 13px;
  transform: rotate(-45deg);
  transition: all 0.4s ease 0s;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  top: 13px;
  transform: rotate(45deg);
  transition: all 0.4s ease 0s;
}
.drawer-icon.is-active .drawer-icon__menu {
  display: none;
}
.drawer-icon.is-active .drawer-icon__close {
  display: block;
}

.drawer-icon__bars {
  display: block;
  position: relative;
  width: 26px;
  height: 26px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 2px;
  border-radius: 50px;
  background: #fff;
  transition: all 0.4s ease 0s;
}

.drawer-icon__bar1 {
  top: 2px;
}

.drawer-icon__bar2 {
  top: 12px;
}

.drawer-icon__bar3 {
  top: 22px;
}

/******************************** 
   drawer content
*********************************/
.drawer-content {
  background: #fff;
  position: fixed;
  z-index: 299;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
.drawer-content.is-active {
  transition: all 0.5s ease 0s;
  visibility: visible;
  opacity: 1;
}

.drawer__inner {
  text-align: center;
  position: relative;
  overflow-y: scroll;
  height: 100vh;
  padding: 0px 16px 12px;
  color: #222;
}

.header__logo--drawer {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}

.drawer__menu {
  margin-top: 220px;
}
.drawer__menu li > a {
  text-decoration: none;
  display: block;
  padding: 10px 0px 10px 16px;
  width: 100%;
  position: relative;
  border-bottom: 2px solid #fff;
  font-weight: 700;
}
.drawer__menu li > a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-white.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.drawer__buttons {
  margin-top: 40px;
}

.contact__button--form--drawer {
  background: #fff !important;
  color: #222 !important;
}

.contact__button--tel--drawer {
  margin-top: 20px;
}

.drawer__privacy {
  margin-top: 20px;
  margin-left: 16px;
  display: block;
  line-height: 44px;
}

/******************************** 
   util
*********************************/
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pink {
  color: #D6006C;
}

.util-title {
  line-height: 160%;
  font-size: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .util-title {
    line-height: 200%;
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.util-button {
  display: inline-block;
  padding: 12px 56px 12px 20px;
  background-color: #fff;
  border: 2px solid #222;
  border-radius: 50px;
  font-weight: bold;
  position: relative;
}
.util-button::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-icon-pink.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .util-button::after {
    right: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .util-button {
    padding: 12px 46px 12px 10px;
  }
}
@media screen and (max-width: 767px) {
  .util-button {
    max-width: 400px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

/* /util */
/******************************** 
   main-visual
*********************************/
.mv {
  background: #fff;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 100px;
  }
}
.mv .mv__content {
  display: block;
}
@media screen and (min-width: 1000px) {
  .mv .mv__content {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1000px) {
  .mv .mv__left {
    width: 50%;
  }
}
.mv .mv__right {
  margin-top: 30px;
}
@media screen and (min-width: 1000px) {
  .mv .mv__right {
    width: 40%;
    margin-left: 10%;
    margin-top: 0;
  }
}
.mv .mv__text {
  font-size: clamp(14px, 1.4vw, 16px);
}
.mv .mv__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 150%;
  font-size: clamp(24px, 5vw, 60px);
  letter-spacing: 0.03em;
  color: #D6006C;
  font-weight: 900;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .mv .mv__title {
    font-size: clamp(24px, 7.5vw, 48px);
  }
}
.mv .mv__en-title {
  font-family: "Montserrat", sans-serif;
  color: #D6006C;
  font-size: clamp(14px, 1.5vw, 18px);
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .mv .mv__en-title {
    font-size: 18px;
  }
}

.intro {
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  .intro {
    padding-top: 110px;
  }
}
.intro .intro__title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .intro .intro__title {
    font-size: clamp(16px, 4.61vw, 24px);
  }
}
.intro .intro__text {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .intro .intro__text {
    margin-bottom: 40px;
  }
}
.intro .intro__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 1000px) {
  .intro .intro__list::before {
    content: "";
    display: block;
    width: calc(33.3% - 40px);
    order: 1;
  }
}
.intro .intro__item {
  width: calc(33.3% - 40px);
  background: #fff;
  padding: 24px 20px 60px;
  border-radius: 10px;
  border: 2px solid #4C4948;
  position: relative;
}
.intro .intro__item:nth-child(n+4) {
  margin-top: 60px;
}
.intro .intro__item::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  bottom: 10px;
  right: 10px;
  background: url(../img/arrow-icon-pink.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .intro .intro__item {
    width: calc(50% - 20px);
  }
  .intro .intro__item:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro__item {
    width: 100%;
    padding: 20px 16px 40px;
  }
  .intro .intro__item:nth-child(n+2) {
    margin-top: 40px;
  }
}
.intro .intro__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.intro .intro__item-title {
  line-height: 160%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.intro .intro__item-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -20px;
  left: 0;
  background: #eee;
}
@media screen and (max-width: 767px) {
  .intro .intro__item-title {
    font-size: 20px;
  }
}
.intro .intro__item-text {
  margin-top: 32px;
  text-align: center;
}

/******************************** 
   event
*********************************/
.event {
  background-color: #FFF3F9;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .event {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 20px;
  }
}
.event .event__wrap {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}
.event .event__row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0px;
}
.event .event__row:nth-child(1) {
  background-color: #D6006C;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .event .event__row:nth-child(1) {
    display: none;
  }
}
.event .event__row:nth-child(even):not(:first-child) {
  background-color: #fff;
}
.event .event__row:nth-child(odd):not(:first-child) {
  background-color: #FFF3F9;
}
@media screen and (max-width: 767px) {
  .event .event__row {
    flex-direction: column;
    padding: 10px 30px 10px 10px;
    position: relative;
  }
  .event .event__row::after {
    position: absolute;
    content: "";
    background: url(../img/arrow-icon-pink.png) no-repeat center center/contain;
    width: 24px;
    height: 24px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .event .event__row::after {
    width: 20px;
    height: 20px;
  }
}
.event .event__cell {
  flex: 1;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .event .event__cell {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .event .event__cell {
    justify-content: flex-start;
    text-align: left;
    font-size: 16px;
  }
}
.event .util-button {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .event .util-button {
    display: none;
  }
}

/******************************** 
   about
*********************************/
.about .about__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .about .about__content {
    display: block;
  }
}
.about .about__left {
  flex: 0 0 360px;
}
@media screen and (max-width: 767px) {
  .about .about__left {
    width: 100%;
  }
}
.about .about__text {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .about .about__text {
    margin-bottom: 40px;
  }
}
.about .about__text a {
  color: #D6006C;
  text-decoration: underline;
}
.about .about__right {
  width: calc(100% - 420px);
  margin-left: 60px;
  flex: 1 1 0;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #bbb;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .about .about__right {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}
.about .about__right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/******************************** 
   facilitator
*********************************/
.facilitator .facilitator__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .facilitator .facilitator__content {
    flex-direction: column;
  }
}
.facilitator .facilitator__left {
  flex: 0 0 auto;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .facilitator .facilitator__left {
    width: 100%;
  }
}
.facilitator .facilitator__right {
  flex: 1 1 0;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .facilitator .facilitator__right {
    width: 100%;
    margin-top: 40px;
  }
}
.facilitator .facilitator__right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.facilitator .facilitator__text {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .facilitator .facilitator__text {
    margin-bottom: 40px;
  }
}

/******************************** 
   sponsor-list
*********************************/
.sponsor-list {
  background-color: #FFF3F9;
}
.sponsor-list .sponsor-list__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 20px;
}
@media screen and (max-width: 767px) {
  .sponsor-list .sponsor-list__grid {
    gap: 10px 10px;
  }
}
.sponsor-list .sponsor-list__item {
  width: calc(20% - 16px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .sponsor-list .sponsor-list__item {
    width: calc(33.333% - 13.3333333333px);
  }
}
@media screen and (max-width: 767px) {
  .sponsor-list .sponsor-list__item {
    width: calc(50% - 5px);
  }
}
.sponsor-list .sponsor-list__card {
  display: block;
  text-align: center;
}
.sponsor-list .sponsor-list__image {
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
@media screen and (max-width: 767px) {
  .sponsor-list .sponsor-list__image {
    padding: 0px;
  }
}
.sponsor-list .sponsor-list__name {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .sponsor-list .sponsor-list__name {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .sponsor-list .sponsor-list__spacer {
    visibility: hidden;
    border: none;
    padding: 0;
  }
}
@media screen and (max-width: 999px) {
  .sponsor-list .sponsor-list__spacer {
    display: none;
  }
}

.sponsor-text-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
}
.sponsor-text-list li {
  margin-left: 16px;
  margin-top: 16px;
}
.sponsor-text-list .sponsor-text-list__tag {
  display: inline-block;
  font-size: 18px;
  background: #fff;
  border-radius: 3px;
  padding: 8px 12px;
  line-height: 1;
}

/******************************** 
   sponsor
*********************************/
.sponsor__text {
  margin-bottom: 60px;
}

.scroll-hint {
  color: #D6006C;
  margin-top: 40px;
  text-align: right;
  font-size: 16px;
  padding-right: 26px;
  position: relative;
}
.scroll-hint::after {
  position: absolute;
  content: "";
  background: url(../img/scroll-arrow.png) no-repeat center center/contain;
  width: 18px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sponsor-table-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .sponsor-table-wrapper {
    overflow-x: auto;
    margin-top: 6px;
  }
  .sponsor-table-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  .sponsor-table-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .sponsor-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #D6006C;
    border-radius: 10px;
  }
  .sponsor-table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #a30052;
  }
}

.sponsor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sponsor-table {
    width: 900px;
  }
}
.sponsor-table th,
.sponsor-table td {
  padding: 16px 6px;
  border: 1px solid #eee;
  vertical-align: middle;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .sponsor-table th,
.sponsor-table td {
    padding: 16px 8px;
  }
}
.sponsor-table thead th {
  font-weight: bold;
}
.sponsor-table .circle {
  font-size: 32px;
  font-weight: bold;
  color: #D6006C;
  text-shadow: -1px -1px 0 #D6006C, 1px -1px 0 #D6006C, -1px 1px 0 #D6006C, 1px 1px 0 #D6006C;
}
.sponsor-table .number {
  font-size: 1.6em;
  margin-right: 4px;
}
.sponsor-table th:nth-child(1),
.sponsor-table td:nth-child(1) {
  background-color: #ffeef7;
  font-weight: bold;
}
.sponsor-table th:nth-child(2),
.sponsor-table td:nth-child(2) {
  background-color: #fff9fc;
}
.sponsor-table th:nth-child(3),
.sponsor-table td:nth-child(3) {
  background-color: #ffeef7;
}
.sponsor-table th:nth-child(4),
.sponsor-table td:nth-child(4) {
  background-color: #fff9fc;
}
.sponsor-table th:nth-child(5),
.sponsor-table td:nth-child(5) {
  background-color: #ffeef7;
}

.sponsor__note a {
  color: #D6006C;
  text-decoration: underline;
}

/******************************** 
   news
*********************************/
.news__content {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .news__content {
    display: block;
  }
}

.front-page .news__content {
  flex-direction: row;
}

.news__sidebar {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .news__sidebar {
    width: 100%;
    margin-top: 100px;
  }
}
.news__sidebar .news__sidebar-title {
  margin-bottom: 24px;
}
.news__sidebar .news__categories {
  padding: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .news__sidebar .news__categories {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
  }
}
.news__sidebar .news__categories li {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .news__sidebar .news__categories li:nth-child(n+2) {
    margin-left: 20px;
  }
}

.news__list {
  margin-left: 100px;
  flex: 1;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .news__list {
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news__list {
    margin-left: 0;
  }
}
.news__list .news__item {
  cursor: pointer;
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .news__list .news__item {
    display: block;
  }
}
.news__list .news__item:first-child {
  padding-top: 0;
}
.news__list .news__image {
  width: 220px;
  flex-shrink: 0;
}
.news__list .news__image img {
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
@media screen and (max-width: 767px) {
  .news__list .news__image {
    width: 100%;
    margin-bottom: 16px;
  }
}
.news__list .news__info {
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .news__list .news__info {
    margin-left: 0;
  }
}
.news__list .news__meta {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.news__list .news__category {
  background: #D6006C;
  border-radius: 50px;
  padding: 0 16px;
  color: #fff;
}
.news__list .news__date {
  white-space: nowrap;
  margin-left: 20px;
}
.news__list .news__headline {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news__list .news__headline {
    font-size: 16px;
  }
}

.news__link {
  margin-top: 60px;
  text-align: right;
}
.news__link a {
  text-decoration: underline;
  padding-right: 32px;
  position: relative;
}
.news__link a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-icon-pink.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/******************************** 
   footer
*********************************/
.footer {
  background-color: #CF216E;
  color: #fff;
  padding: 100px 0 20px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 20px;
  }
}
.footer .footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.footer .footer__inner .footer__to-top {
  position: absolute;
  top: 0px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: url(../img/arrow-icon-white.png) no-repeat center center/contain;
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .footer .footer__inner .footer__to-top {
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__inner .footer__to-top {
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__inner {
    display: block;
  }
}
.footer .footer__left {
  flex: 1;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .footer .footer__left {
    flex: 2;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__left {
    text-align: center;
  }
  .footer .footer__left img {
    width: 80px;
    margin: 0 auto;
  }
}
.footer .footer__center {
  flex: 2;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .footer .footer__center {
    flex: 3;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__center {
    text-align: center;
  }
}
.footer .footer__right {
  flex: 4;
}
@media screen and (max-width: 767px) {
  .footer .footer__right {
    margin-top: 40px;
  }
}
.footer .footer__logo {
  width: 140px;
  margin: 0 auto;
}
.footer .footer__logo a {
  display: block;
}
.footer .footer__organization {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer .footer__organization {
    margin-top: 30px;
  }
}
.footer .footer__button {
  margin-top: 40px;
  color: #222;
  display: inline-block;
  border: none;
}
.footer .footer__right {
  display: flex;
  gap: 60px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .footer .footer__right {
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__right {
    text-align: center;
    display: block;
  }
}
.footer .footer__right .footer__menu-col a {
  display: block;
  margin-bottom: 8px;
  line-height: 44px;
  text-decoration: none;
  color: inherit;
}
.footer .footer__copyright {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
}

/******************************** 
   page-head
*********************************/
.page-head {
  margin-top: 100px;
  padding: 100px 0 60px;
}
@media screen and (max-width: 767px) {
  .page-head {
    margin-top: 80px;
    padding: 40px 0 0;
  }
}
.page-head .page-head__inner inner {
  padding: 0 40px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head .page-head__inner inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .page-head .page-head__inner inner {
    padding: 0 16px;
  }
}
.page-head .page-head__jp-title {
  font-size: 44px;
}
@media screen and (max-width: 767px) {
  .page-head .page-head__jp-title {
    font-size: 24px;
  }
}

.about-page h2 {
  font-size: 2em;
  margin: 0 0 0.7em;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about-page h2 {
    font-size: 1.5em;
    padding-left: 16px;
  }
}
.about-page h2::before {
  position: absolute;
  content: "";
  width: 6px;
  height: calc(100% - 10px);
  background: #D6006C;
  border-radius: 50px;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .about-page h2::before {
    width: 4px;
  }
}
.about-page h3 {
  font-size: 1.5em;
  margin: 0 0 0.9em;
}
@media screen and (max-width: 767px) {
  .about-page h3 {
    font-size: 1.25em;
  }
}

/******************************** 
   エミーゼニーゲームページ
*********************************/
.game-page .game__container {
  margin-top: 160px;
  margin-bottom: 160px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .game-page .game__container {
    display: block;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.game-page .side-nav {
  display: block;
  width: 270px;
}
@media screen and (max-width: 999px) {
  .game-page .side-nav {
    display: none;
  }
}
.game-page .service-nav-list {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
@media screen and (min-width: 1000px) {
  .game-page .service-nav-list {
    border-left: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media screen and (max-width: 999px) {
  .game-page .service-nav-list {
    position: static;
  }
}
.game-page .side-nav-button {
  display: block;
  padding: 24px 0 24px 30px;
  background: #fff3f9;
  border-bottom: 1px solid #eee;
  position: relative;
}
.game-page .side-nav-button::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/arrow-icon-pink.png) no-repeat center center/contain;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .game-page .side-nav-button::after {
    transform: rotate(90deg) translateY(-50%);
  }
}
.game-page .side-nav-button.active {
  background: #D6006C;
  color: #fff;
}
.game-page .side-nav-button.active::after {
  background: url(../img/arrow-icon-white.png) no-repeat center center/contain;
}
.game-page .side-nav-button:first-child {
  border-top-right-radius: 10px;
}
.game-page .side-nav-button:last-child {
  border-bottom-right-radius: 10px;
}
.game-page .game__sp-nav {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .game-page .game__sp-nav {
    display: none;
  }
}
.game-page .game__sp-nav__item {
  display: block;
  padding: 16px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.game-page .game__sp-nav__item:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/arrow-icon-pink.png) no-repeat center center/contain;
  top: 40%;
  right: 16px;
  transform: rotate(90deg) translateY(-50%);
}
.game-page .main-content {
  width: calc(100% - 250px - 8%);
  max-width: 100%;
  padding: 0 40px 0 8%;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .game-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .game-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.game-page .main-content .section {
  padding-top: 0;
  border-top: 1px solid #eee;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .game-page .main-content .section {
    scroll-margin-top: 80px;
  }
}
.game-page .main-content .util-button {
  margin-top: 10px;
}
.game-page .main-content h2 {
  font-size: 2em;
  margin: 2.5em 0 0.7em;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .game-page .main-content h2 {
    font-size: 1.5em;
    padding-left: 16px;
  }
}
.game-page .main-content h2::before {
  position: absolute;
  content: "";
  width: 6px;
  height: calc(100% - 10px);
  background: #D6006C;
  border-radius: 50px;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .game-page .main-content h2::before {
    width: 4px;
  }
}
.game-page .main-content h3 {
  font-size: 1.5em;
  margin: 2.6em 0 0.9em;
}
@media screen and (max-width: 767px) {
  .game-page .main-content h3 {
    font-size: 1.25em;
  }
}
.game-page .main-content h4 {
  display: inline-block;
  margin: 40px 0 20px 0;
  background: #ffeef7;
  border-radius: 5px;
  padding: 4px 20px;
  font-size: 16px;
}
.game-page .main-content p {
  margin-bottom: 1.5em;
}
.game-page .main-content p a {
  color: #D6006C;
  text-decoration: underline;
}
.game-page .main-content .util-button {
  text-decoration: none;
  color: #222;
}
.game-page .main-content figure {
  margin: 0 0 1em;
}
.game-page .main-content ul,
.game-page .main-content ol {
  margin-bottom: 1.5em;
  margin-left: 1.5em;
}
.game-page .main-content ul li {
  padding-left: 20px;
  position: relative;
}
.game-page .main-content ul li::before {
  position: absolute;
  content: "";
  background: #D6006C;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  left: 0;
  top: 18px;
  transform: translateY(-50%);
}
.game-page .main-content ol li {
  counter-increment: number;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.game-page .main-content ol li::before {
  font-family: "Montserrat", sans-serif;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 2px;
  color: #D6006C;
  font-weight: bold;
  font-size: 16px;
}

/******************************** 
   マニュアルページ
*********************************/
#download-box {
  margin-top: 20px;
}
#download-box .util-button-wrapper {
  margin-top: 20px;
}
#download-box .util-button {
  text-decoration: none;
}

/******************************** 
   下層ページ共通
*********************************/
.sub-page {
  word-break: break-all;
}
.sub-page p {
  margin-bottom: 1.8em;
}
.sub-page h2 {
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-page h2 {
    padding-left: 16px;
  }
}
.sub-page h2::before {
  position: absolute;
  content: "";
  width: 6px;
  height: calc(100% - 10px);
  background: #D6006C;
  border-radius: 50px;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .sub-page h2::before {
    width: 4px;
  }
}
.sub-page h3 {
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
}
.sub-page a {
  color: #D6006C;
  text-decoration: underline;
}
.sub-page figure {
  margin: 0 0 1em;
}
.sub-page ul,
.sub-page ol {
  margin-bottom: 1.5em;
  margin-left: 1.5em;
}
.sub-page ul li {
  padding-left: 20px;
  position: relative;
}
.sub-page ul li::before {
  position: absolute;
  content: "";
  background: #D6006C;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  left: 0;
  top: 18px;
  transform: translateY(-50%);
}
.sub-page ol li {
  counter-increment: number;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.sub-page ol li::before {
  font-family: "Montserrat", sans-serif;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 2px;
  color: #D6006C;
  font-weight: bold;
  font-size: 16px;
}

/******************************** 
   パスワード
*********************************/
.post-password-form {
  margin: 40px auto;
  max-width: 500px;
  text-align: center;
}
.post-password-form label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
.post-password-form label input[type=password] {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.post-password-form input[type=submit] {
  margin-top: 16px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #D6006C;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/******************************** 
   philosophy
*********************************/
.philosophy .philosophy__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .philosophy .philosophy__content {
    display: block;
  }
}
.philosophy .philosophy__left {
  flex: 0 0 auto;
  width: calc(50% - 30px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .philosophy .philosophy__left {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .philosophy .philosophy__left {
    width: 100%;
  }
}
.philosophy .philosophy__title {
  text-align: left;
}
.philosophy .philosophy__text p {
  font-size: 16px;
  margin-bottom: 1.8em;
}
.philosophy .philosophy__right {
  width: calc(50% - 30px);
  text-align: center;
  border: 2px solid #bbb;
  border-radius: 20px;
  padding: 30px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .philosophy .philosophy__right {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .philosophy .philosophy__right {
    width: 100%;
    margin-top: 40px;
  }
}
.philosophy .philosophy__right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/******************************** 
   partner
*********************************/
.partner .partner__title {
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .partner .partner__title {
    margin-bottom: 40px;
  }
}
.partner .partner__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.partner .partner__list::before {
  content: "";
  width: calc(25% - 20px);
  display: block;
  order: 1;
}
.partner .partner__list::after {
  content: "";
  width: calc(25% - 20px);
  display: block;
}
.partner .partner__item {
  width: calc(25% - 20px);
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #eee;
}
.partner .partner__item:nth-child(n+5) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .partner .partner__item {
    width: calc(50% - 10px);
  }
  .partner .partner__item:nth-child(n+3) {
    margin-top: 20px;
    margin-left: 0;
  }
}
.partner .partner__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/******************************** 
   executives
*********************************/
.executives {
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .executives {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .executives {
    padding: 0 16px;
  }
}
.executives .executives__container {
  background: #fff9fc;
  border-radius: 30px;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .executives .executives__container {
    padding: 40px 0;
  }
}
.executives .executives__title {
  -moz-text-align-last: left;
       text-align-last: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .executives .executives__title {
    margin-bottom: 40px;
  }
}
.executives .executives__item {
  display: flex;
  align-items: flex-start;
}
.executives .executives__item:nth-child(n+2) {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .executives .executives__item:nth-child(n+2) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .executives .executives__item {
    display: block;
  }
}
.executives .executives__left {
  flex: 0 0 360px;
}
.executives .executives__right {
  flex: 1;
  margin-left: 60px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .executives .executives__right {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .executives .executives__right {
    margin-left: 0;
    margin-top: 10px;
  }
}
.executives .executives__position {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2px;
}
.executives .executives__name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2px;
}
.executives .executives__role {
  margin-bottom: 16px;
}

/******************************** 
   company
*********************************/
.company__inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .company__inner {
    display: block;
  }
}
.company__inner .left {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .company__inner .left {
    width: 100%;
  }
}
.company__inner .right {
  width: calc(100% - 250px);
}
@media screen and (max-width: 767px) {
  .company__inner .right {
    width: 100%;
    margin-top: 40px;
  }
}

.company__title {
  text-align: left;
}

.company__row {
  padding: 36px 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  position: relative;
}
.company__row:first-child {
  border-top: 1px solid #eee;
}
.company__row::before {
  position: absolute;
  content: "";
  width: 160px;
  height: 1px;
  background: #D6006C;
  top: -1px;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .company__row::before {
    width: 100px;
  }
}
.company__row:last-child::after {
  position: absolute;
  content: "";
  width: 160px;
  height: 1px;
  background: #D6006C;
  bottom: -3px;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .company__row:last-child::after {
    width: 100px;
  }
}
.company__row dt {
  font-weight: 900;
  width: 160px;
}
@media screen and (max-width: 999px) {
  .company__row dt {
    width: 160px;
  }
}
.company__row dd {
  width: calc(100% - 190px);
  padding-left: 30px;
}
@media screen and (max-width: 999px) {
  .company__row dd {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 767px) {
  .company__row dd {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .company__row {
    display: block;
    padding: 16px 0;
  }
}

/******************************** 
   お知らせページ
*********************************/
.news__pagination-wrapper {
  margin: 80px auto 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-weight: 800;
  margin-left: 10px;
  border-radius: 50px;
  border: 1px solid #222;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.page-numbers.current {
  background: #D6006C;
  border: none;
  color: #fff;
}

/******************************** 
    お知らせ詳細ページ
*********************************/
.single__head {
  padding-left: 20px;
  position: relative;
}
.single__head::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  background: #D6006C;
  border-radius: 50px;
  left: 0;
  top: 0;
}
.single__head .cat {
  display: inline-block;
  margin-left: 16px;
  padding: 0 16px;
  color: #fff;
  background: #D6006C;
  border-radius: 50px;
}

.single__title {
  font-size: 20px;
  margin-top: 20px;
}

.single__content {
  margin-top: 60px;
  word-break: break-all;
}
.single__content p {
  margin-bottom: 1.8em;
}
.single__content h2 {
  font-size: 2em;
  margin: 2.5em 0 0.7em;
}
@media screen and (max-width: 767px) {
  .single__content h2 {
    font-size: 1.5em;
  }
}
.single__content h3 {
  font-size: 1.5em;
  margin: 2.6em 0 0.9em;
}
@media screen and (max-width: 767px) {
  .single__content h3 {
    font-size: 1.25em;
  }
}
.single__content a {
  color: #D6006C;
  text-decoration: underline;
}
.single__content figure {
  margin: 0 0 1em;
}
.single__content h4 {
  display: inline-block;
  margin: 40px 0 20px 0;
  background: #ffeef7;
  border-radius: 5px;
  padding: 4px 20px;
  font-size: 16px;
}
.single__content p {
  margin-bottom: 1.5em;
}
.single__content figure {
  margin: 0 0 1em;
}
.single__content ul,
.single__content ol {
  margin-bottom: 1.5em;
  margin-left: 1.5em;
}
.single__content ul li {
  padding-left: 20px;
  position: relative;
}
.single__content ul li::before {
  position: absolute;
  content: "";
  background: #D6006C;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  left: 0;
  top: 18px;
  transform: translateY(-50%);
}
.single__content ol li {
  counter-increment: number;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.single__content ol li::before {
  font-family: "Montserrat", sans-serif;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 2px;
  color: #D6006C;
  font-weight: bold;
  font-size: 16px;
}

.single__more-news {
  margin-top: 80px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

/******************************** 
   問い合わせページ(contact)
*********************************/
.contact-form__intro p {
  margin-bottom: 1.8em;
}
.contact-form__intro span {
  color: #D6006C;
}
.contact-form__intro a {
  text-decoration: underline;
}

.contact-form__wrapper {
  margin: 100px auto 0;
  width: 100%;
  background: #ffeef7;
  padding: 0 60px 0;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .contact-form__wrapper {
    padding: 0 16px 0;
    border-radius: 16px;
  }
}

.contact-form__content {
  width: 760px;
  max-width: 100%;
  padding: 60px 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-form__content {
    padding: 20px 0 40px;
  }
}

.manual-content {
  width: 800px;
}

.wp-block-file__button {
  color: #fff !important;
  background: #D6006C;
  text-decoration: none !important;
}

.contact-form__attention {
  margin-top: 30px;
}
.contact-form__attention a {
  text-decoration: underline;
}

form {
  /* デフォルトのボタン */
  /* チェック前のボタン（ラジオボタン、チェックボックス） */
  /* チェック後のボタン */
}
@media screen and (min-width: 1000px) {
  form p {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  form p {
    margin-top: 30px;
  }
}
form p label {
  position: relative;
  color: #222;
}
@media screen and (min-width: 1000px) {
  form p label {
    display: flex;
    align-items: flex-start;
  }
  form p label .label-head {
    margin-top: 16px;
  }
}
form p .label-head {
  width: 220px;
  min-width: 220px;
}
@media screen and (min-width: 1000px) {
  form p .label-head {
    padding-left: 0px;
  }
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 16px 12px;
  width: 500px;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
    width: 500px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
    margin-top: 8px;
    width: 100%;
    border-radius: 5px;
  }
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=date]:focus,
form select:focus {
  border: 1px solid rgba(214, 0, 108, 0.32);
  box-shadow: 0px 0px 3px rgba(214, 0, 108, 0.32);
  outline: none;
}
form input[type=date] {
  width: 200px;
  padding: 10px 12px;
}
form select {
  background: #fff url(../img/select-arrow.png) no-repeat center right 16px/16px 11px;
  cursor: pointer;
}
form select::-ms-expand {
  display: none;
}
form select:focus {
  border: 1px solid rgba(214, 0, 108, 0.32);
  box-shadow: 0px 0px 3px rgba(214, 0, 108, 0.32);
  outline: none;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form select {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  form select {
    margin-top: 10px;
  }
}
form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  padding: 12px;
  width: 500px;
  border-radius: 10px;
  max-width: 100%;
  height: 240px;
  resize: vertical;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    width: 500px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form textarea {
    margin-top: 8px;
    width: 100%;
    border-radius: 5px;
  }
}
form textarea:focus {
  border: 1px solid rgba(214, 0, 108, 0.32);
  box-shadow: 0px 0px 3px rgba(214, 0, 108, 0.32);
  outline: none;
}
form textarea.textarea-small {
  height: 76px;
}
@media screen and (max-width: 767px) {
  form textarea.textarea-small {
    height: 100px;
  }
}
form .wpcf7-form-control-wrap {
  width: 500px;
}
@media screen and (max-width: 767px) {
  form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
form .wpcf7-list-item {
  margin: 0;
  margin-right: 20px;
}
form .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  display: block;
}
form input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}
form .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #d9d9d9 !important;
  border-radius: 100%;
  content: "";
  width: 22px;
  height: 22px;
  margin-bottom: auto;
  margin-right: 8px;
  margin-top: auto;
}
form input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #009cab;
  /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 4px #fff;
  /* 中心の色のスタイル */
  width: 22px;
  height: 22px;
  border: 1px solid #d9d9d9 !important;
}
form .wpcf7-form-control-wrap {
  display: block;
}
form .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
form .wpcf7-list-item-label {
  /*項目の色や文字サイズ*/
  color: #222;
  cursor: pointer;
}
form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  /*既存のチェックボックスを見えなくする*/
}
form input[type=checkbox] + .wpcf7-list-item-label::before {
  border-radius: 2px;
}
form .wpcf7-list-item-label:before {
  /*チェックボックス、ラジオの枠*/
  content: "";
  border: 1px solid #d9d9d9;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -1px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  /*チェックアイコン*/
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #D6006C;
  border-left: 3px solid #D6006C;
  content: "";
  display: block;
  height: 10px;
  margin-top: -1px;
  opacity: 1;
  position: absolute;
  top: 13px;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 22px;
}

.wpcf7-submit {
  -webkit-appearance: none;
  background-color: #D6006C;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  background-image: none;
  border: 1px solid #D6006C;
  border-radius: 0;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 80px;
  border-radius: 50px;
  padding: 0.8em 4em;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 1000px) {
  .wpcf7-submit {
    margin-left: 224px;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    width: 100%;
  }
}
.wpcf7-submit:hover, .wpcf7-submit:focus {
  outline: none;
}
.wpcf7-submit:hover {
  transition: all 0.4s ease 0s;
  background-color: #fff;
  color: #D6006C;
}
.wpcf7-submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.required {
  display: inline-block;
  color: #D6006C;
  font-size: 14px;
  line-height: 1;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 12px;
  }
}

/******************************** 
   ダウンロードページ
*********************************/
.contact-form__wrapper--download {
  margin: 20px 0 60px;
  max-width: 360px;
  width: 100%;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .contact-form__wrapper--download {
    padding: 16px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none !important;
}

/******************************** 
   404ページ
*********************************/
.not-found-page .not-found {
  margin-top: 80px;
}
.not-found-page .not-found__logo {
  width: 120px;
  margin: 0 auto 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .not-found-page .not-found__logo {
    width: 80px;
  }
}
.not-found-page .not-found__logo::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 56px;
  top: -50px;
  right: -120px;
  background: url(../img/bubble404.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .not-found-page .not-found__logo::after {
    right: -110px;
    top: -60px;
  }
}
.not-found-page .not-found__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #D6006C;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .not-found-page .not-found__title {
    font-size: 32px;
  }
}
.not-found-page .not-found__text {
  margin-top: 40px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .not-found-page .not-found__text {
    font-size: 16px;
  }
}
.not-found-page .not-found__button {
  display: block;
  max-width: 180px;
  margin: 60px auto;
  text-decoration: none;
  color: #222;
}

/******************************** 
   swiper
*********************************/
.mv__slider {
  position: relative;
  margin-top: 80px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__slider {
    margin-top: 60px;
  }
}

.swiper.js-swiper {
  height: 530px;
  overflow: hidden !important;
}
@media (max-width: 767px) {
  .swiper.js-swiper {
    height: 300px;
  }
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  margin-right: 0;
}
@media (max-width: 767px) {
  .swiper-slide {
    margin-right: 20px !important;
  }
}

.swiper-slide--single {
  max-width: 530px !important;
  width: 100% !important;
}
@media (max-width: 767px) {
  .swiper-slide--single {
    max-width: 300px !important;
  }
}

.swiper-slide--multiple {
  max-width: 390px !important;
  width: 100% !important;
}
@media (max-width: 767px) {
  .swiper-slide--multiple {
    max-width: 220px !important;
  }
}

.slide-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .slide-content {
    gap: 20px;
  }
}

.slide-content__primary-image img {
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .slide-content__primary-image img {
    height: 170px;
  }
}

.slide-content__secondary-grid {
  height: 180px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .slide-content__secondary-grid {
    height: 110px;
    gap: 20px;
  }
}

.slide-content__secondary-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.swiper-slide--single img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.swiper.js-swiper_intro {
  height: 300px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .swiper.js-swiper_intro {
    height: 200px;
  }
}

.swiper-slide--single-intro,
.swiper-slide--multiple-intro {
  width: 450px !important;
  height: 100% !important;
}
@media (max-width: 767px) {
  .swiper-slide--single-intro,
.swiper-slide--multiple-intro {
    width: 250px !important;
  }
}

.swiper-slide--single-intro .image-large {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide--single-intro-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  .swiper-slide--single-intro-flex {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.swiper-slide--single-intro-flex .image-small {
  width: 100%;
  height: 130px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .swiper-slide--single-intro-flex .image-small {
    height: 90%;
    max-height: 100px;
  }
}

.image-top {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

.image-bottom {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
}

.mv,
.front-page,
.facilitator {
  position: relative;
  overflow: hidden;
}

.front-page::after {
  content: "";
  position: absolute;
  top: 23%;
  left: 0;
  width: 100%;
  height: 14%;
  background-color: #fff3f9;
}
@media (min-width: 1800px) {
  .front-page::after {
    top: 23%;
  }
}
@media (min-width: 1000px) and (max-width: 1799px) {
  .front-page::after {
    top: 14%;
    height: 22%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .front-page::after {
    top: 10%;
    height: 26%;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .front-page::after {
    top: 6%;
    height: 26.5%;
  }
}
@media (max-width: 499px) {
  .front-page::after {
    top: 4%;
    height: 31.5%;
  }
}

.inner,
.facilitator__right {
  z-index: 2;
  position: relative;
}

.shape-1 {
  position: absolute;
  top: 11%;
  right: -12%;
  width: 35vw;
  height: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .shape-1 {
    top: unset;
    bottom: -80%;
    right: -9%;
    width: 80vw;
  }
}

.shape-1-sp {
  position: absolute;
  top: 11%;
  right: -12%;
  width: 35vw;
  height: auto;
  z-index: -1;
}

.shape-1-lg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: auto;
  z-index: -1;
  max-width: none;
}
@media (max-width: 767px) {
  .shape-1-lg {
    width: 100vw;
  }
}

.shape-2 {
  position: absolute;
  top: -2%;
  right: -10%;
  width: 23vw;
  height: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .shape-2 {
    top: -37px;
    right: -7%;
  }
}

.facilitator {
  position: relative;
}

.shape-3 {
  position: absolute;
  top: 9%;
  left: -13%;
  width: 24vw;
  height: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .shape-3 {
    top: 6%;
    left: -18%;
    width: 39vw;
  }
}

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

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

#wpadminbar {
  position: fixed !important;
}