/**************************\
  Basic Modal Styles
\**************************/

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1001;
}

.modal__overlay_find {
  z-index: 10000;
}

.modal__container {
  background-color: #fff;
  padding: 10px 20px 20px;
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 0px;
  height: auto;
  border-radius: 10px;
  overflow-y: auto;
  box-sizing: border-box;
}

/*目標とする英語レベルとは？用のモーダルの幅 */
.modal__container_target-english-level {
  margin: 80px auto 0px;
  max-width: 800px;
  max-height: 640px;
}

/* Welcome用のモーダルの幅 */
.modal__container_welcome {
  margin: 120px auto 0px;
  max-width: 700px;
  max-height: 640px;
}

/* ログイン用（各施設へのお申し込みへ繋がる）のモーダルの幅 */
.modal__container_login-needed-nursery-application {
  margin: 80px auto 0px;
  max-width: 700px;
  max-height: 640px;
}

/* 各都道府県のモーダルの幅 */
.modal__container_prefecture-map {
  margin: 80px auto 0px;
  max-width: 740px;
  max-height: 600px;
}

/* エイゴホイクパークとは？用のモーダルの幅 */
.modal__container_about-us {
  margin: 80px auto 0px;
  max-width: 1000px;
  max-height: 640px;
}

/* STEP.1のモーダルの幅 */
.modal__container_step-1 {
  max-height: 640px;
}

/* STEP.2のモーダルの幅 */
.modal__container_step-2 {
  max-height: 640px;
}

/* コラボ用のモーダルの幅 */
.modal__container_collab-with-miraicle {
  margin: 120px auto 0px;
  max-width: 900px;
  max-height: 640px;
}

/* 口コミキャンペーン用のモーダルの幅 */
.modal__container_collab-with-honki-english {
  margin: 120px auto 0px;
  max-width: 900px;
  max-height: 740px;
}

/* サポーティングメンバー用のモーダルの幅 */
.modal__container_supporting-member {
  margin: 120px auto 0px;
  max-width: 900px;
  max-height: 640px;
}

@media screen and (max-width:599px) {

  /* エイゴホイクパークとは？ */
  .modal__container_about-us {
    margin: 80px auto 0px;
    max-width: 360px;
  }

  /* 各都道府県のモーダルの幅 */
  .modal__container_prefecture-map {
    margin: 80px auto 0px;
    max-width: 360px;
  }

  /*目標とする英語レベルとは？用のモーダルの幅 */
  .modal__container_target-english-level {
    margin: 80px auto 0px;
    max-width: 360px;
    max-height: 550px;
    padding: 10px 15px 10px;
  }

  /* STEP.1のモーダルの幅 */
  .modal__container_step-1 {
    margin: 20px auto 0px;
    max-width: 360px;
    max-height: 600px;
    padding: 10px 15px 10px;
  }

  /* STEP.2のモーダルの幅 */
  .modal__container_step-2 {
    margin: 20px auto 0px;
    max-width: 360px;
    max-height: 600px;
    padding: 10px 15px 10px;
  }

  /* 口コミキャンペーン用のモーダルの幅 */
  .modal__container_collab-with-honki-english {
    margin: 80px auto 0px;
    max-width: 360px;
    max-height: 640px;
  }

  /* サポーティングメンバー用のモーダルの幅 */
  .modal__container_supporting-member {
    margin: 80px auto 0px;
    max-width: 360px;
    max-height: 640px;
  }
}

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

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #A5997E;
}

.modal__title .select-span {
  color: #A5997E;
  font-size: 3.6rem;
  line-height: 1.6;
}

@media screen and (max-width:599px) {
  .modal__title {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .modal__title .select-span {
    font-size: 2.7rem;
    display: block;
  }
}

.modal__close {
  background: transparent;
  border: 0;
  color: #666;
  background-color: #E3E0D7;
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin: 10px 0px 0px;
  line-height: 1.6;
  color: #000;
  font-size: 1.6rem;
}

.modal__content .wrap-g-review-alert {
  width: 100%;
  text-align: center;
}

.modal__content .wrap-g-review-alert img {
  width: 100%;
  height: auto;
}

.modal__content .g-review-alert-description {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #DE6750;
}

@media screen and (max-width:599px) {
  .modal__content .g-review-alert-description {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* ▼▼ 注意事項の確認チェックボックス ▼▼　*/
.wrap-alert-checkbox {
  margin-top: 20px;
  text-align: center;
}

.wrap-alert-checkbox input#consent1 {
  text-align: left;
  margin: 0;
}

.wrap-alert-checkbox input#consent1+label {
  text-align: left;
  width: 600px;
  font-size: 1.5rem;
}

@media screen and (max-width:599px) {
  .wrap-alert-checkbox input#consent1+label {
    font-size: 1.3rem;
  }
}

.wrap-alert-checkbox #interlock {
  display: none;
  pointer-events: none;
  /*クリックをキャンセル*/
}

.wrap-alert-checkbox #consent1:checked~#interlock {
  display: inline-block;
  pointer-events: auto;
  /*キャンセルを解除*/
}

.wrap-alert-checkbox .g-map-btn {
  font-size: 1.5rem;
  color: #A5997E;
}

/* ▲▲ 注意事項の確認チェックボックス ▲▲ */

.modal__btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 12px 15px;
  border: 2px solid #A5997E;
  color: #A5997E;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  margin-top: 20px;
}

.modal__btn:hover {
  background-color: #E3E0D7;
  color: #A5997E;
  border: 2px solid #A5997E;
}

.wrap-display-image {
  font-size: 0;
}

.wrap-display-image .display-image-left {
  display: inline-block;
  max-width: 70%;
  width: 100%;
  vertical-align: top;
  padding: 10px;
}

.wrap-display-image .display-image-left .wrap-pc-display {
  padding: 20px;
}

.wrap-display-image .display-image-left .wrap-pc-display img {
  width: 100%;
  height: auto;
}

.wrap-display-image .display-image-right {
  display: inline-block;
  max-width: 30%;
  width: 100%;
  vertical-align: top;
  padding: 10px;
}

@media screen and (max-width:599px) {
  .wrap-display-image .display-image-left {
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .wrap-display-image .display-image-left .wrap-pc-display {
    display: none;
  }

  .wrap-display-image .display-image-right {
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .wrap-display-image .display-image-right img {
    width: 100%;
  }
}

ul.step-list {
  font-size: 0;
  margin-bottom: 20px;
}

ul.step-list li.step-content {
  display: inline-block;
  max-width: 32.3%;
  width: 100%;
  margin-right: 1.5%;
  vertical-align: top;
  padding: 10px;
  background-color: #eee;
  border-radius: 10px;
}

ul.step-list li.step-content:last-child {
  margin-right: 0%;
}

ul.step-list li.step-content .step-content-title {
  font-size: 2.1rem;
  line-height: 2.3;
  background-color: #fff;
  color: #e95A56;
  border-radius: 5px;
  padding: 5px 0 7px;
  text-align: center;
  position: relative;
}

ul.step-list li.step-content .step-content-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(-45deg, #EE8989, #EE8989 2px, #fff 2px, #fff 4px);
  border-radius: 5px;
}

ul.step-list li.step-content .step-content-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #EE8989;
}

ul.step-list li.step-content .step-content-icon {
  margin-top: 10px;
  max-width: 150px;
  width: 100%;
  margin: 25px auto 15px;
}

ul.step-list li.step-content .step-content-icon img {
  width: 100%;
  height: auto;
}

ul.step-list li.step-content .step-content-description {
  font-size: 1.3rem;
  line-height: 1.5;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}

ul.step-list li.step-content .step-content-reference {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
}

ul.step-list li.step-content .step-content-reference span.reference-title {
  font-size: 1.5rem;
  line-height: 1.7;
  background-color: #EE8989;
  color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
  margin-right: 10px;
}

ul.step-list li.step-content .step-content-reference a.reference-link {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #EE8989;
}

@media screen and (max-width:599px) {
  ul.step-list {
    margin-bottom: 0px;
  }

  ul.step-list li.step-content {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-right: 0%;
    margin-bottom: 10px;
  }

  ul.step-list li.step-content:last-child {
    margin-bottom: 0px;
  }

  ul.step-list li.step-content .step-content-reference a.reference-link {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #EE8989;
  }
}

.correlation-diagram {
  font-size: 0;
  margin: 20px 0 30px;
}

.correlation-diagram .correlation-diagram-left,
.correlation-diagram .correlation-diagram-right {
  display: inline-block;
  max-width: 40%;
  width: 100%;
  vertical-align: top;
  background-color: #fff;
  padding: 10px;
}

.correlation-diagram .correlation-diagram-left p.correlation-diagram-hukidashi,
.correlation-diagram .correlation-diagram-right p.correlation-diagram-hukidashi {
  font-size: 1.2rem;
  line-height: 1.6;
  background-color: #fff;
  border: 2px solid #eae3db;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 7px 10px;
  position: relative;
}

.correlation-diagram .correlation-diagram-left p.correlation-diagram-hukidashi::before,
.correlation-diagram .correlation-diagram-right p.correlation-diagram-hukidashi::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #eae3db;
}

.correlation-diagram .correlation-diagram-left p.correlation-diagram-hukidashi::after,
.correlation-diagram .correlation-diagram-right p.correlation-diagram-hukidashi::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(-45deg, #eae3db, #eae3db 2px, #fff 2px, #fff 4px);
  border-radius: 5px;
}

.correlation-diagram .correlation-diagram-left p.correlation-diagram-position,
.correlation-diagram .correlation-diagram-right p.correlation-diagram-position {
  font-size: 1.4rem;
  text-align: center;
  background-color: #EE8989;
  color: #fff;
  padding: 5px 0px;
  margin-top: 10px;
  border-radius: 5px;
}

.correlation-diagram .correlation-diagram-center {
  display: inline-block;
  max-width: 20%;
  width: 100%;
  vertical-align: top;
  margin-top: 80px;
  padding: 0 10px;
}

.structure-diagram {
  background-color: #eee;
  height: 400px;
  margin: 20px 0 30px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

/*プロフィール写真が左バージョンの吹き出し*/
.author-hukidashi_01 {
  background-color: #fff;
  max-width: 800px;
  width: 100%;
  margin: 10px auto;
  padding: 20px;
  border-radius: 10px;
  display: flex;
}

.author-hukidashi_01 .author-hukidashi-left {
  max-width: 100px;
  width: 100%;
  display: flex;
  align-items: center;
}

.author-hukidashi_01 .author-hukidashi-left img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.author-hukidashi_01 .author-hukidashi-right {
  max-width: calc(100% - 110px);
  width: 100%;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.author-hukidashi_01 .author-hukidashi-right p.author-comment {
  position: relative;
  width: calc(100%-10px);
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 20px;
  background-color: #eee;
  border-radius: 10px;
  margin-left: 10px;
}

.author-hukidashi_01 .author-hukidashi-right p.author-comment::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-right: 10px solid #eee;
}

@media screen and (max-width:599px) {
  .author-hukidashi_01 {
    padding: 0px;
    display: block;
    margin: 0px auto 0px;
  }

  .author-hukidashi_01 .author-hukidashi-left {
    justify-content: center;
    max-width: 600px;
    margin: 0px 0 10px;
    padding-top: 15px;
  }

  .author-hukidashi_01 .author-hukidashi-left img {
    width: 120px;
    height: 120px;
  }

  .author-hukidashi_01 .author-hukidashi-right {
    max-width: 600px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .author-hukidashi_01 .author-hukidashi-right p.author-comment {
    margin-left: 0px;
    padding: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .author-hukidashi_01 .author-hukidashi-right p.author-comment::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #eee;
  }
}

/*プロフィール写真が右バージョンの吹き出し*/
.author-hukidashi_02 {
  background-color: #fff;
  max-width: 800px;
  width: 100%;
  margin: 10px auto;
  padding: 20px;
  border-radius: 10px;
  display: flex;
}

.author-hukidashi_02 .author-hukidashi-left {
  max-width: calc(100% - 110px);
  width: 100%;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.author-hukidashi_02 .author-hukidashi-left p.author-comment {
  position: relative;
  width: calc(100%-10px);
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 20px;
  background-color: #eee;
  border-radius: 10px;
  margin-right: 10px;
}

.author-hukidashi_02 .author-hukidashi-left p.author-comment::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 10px solid #eee;
}

.author-hukidashi_02 .author-hukidashi-right {
  max-width: 100px;
  width: 100%;
  display: flex;
  align-items: center;
}

.author-hukidashi_02 .author-hukidashi-right img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

@media screen and (max-width:599px) {
  .author-hukidashi_02 {
    padding: 10px;
    display: block;
  }

  .author-hukidashi_02 .author-hukidashi-left {
    max-width: 350px;
    width: 100%;
    margin-right: 0;
  }

  .author-hukidashi_02 .author-hukidashi-left p.author-comment {
    margin-right: 0px;
    padding: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .author-hukidashi_02 .author-hukidashi-left p.author-comment::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 50%;
    margin-right: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #eee;
  }

  .author-hukidashi_02 .author-hukidashi-right {
    justify-content: center;
    max-width: 350px;
    margin: 15px 0 25px;
    text-align: center;
  }

  .author-hukidashi_02 .author-hukidashi-right img {
    width: 120px;
    height: 120px;
  }
}

.user-createOrLogin-box {
  font-size: 0;
  margin: 50px 0 30px;
}

.user-createOrLogin-box .user-register-button,
.user-createOrLogin-box .user-login-button {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  background-color: #eee;
  border-radius: 10px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #E95A56;
  text-align: center;
  position: relative;
  padding: 7px 7px 10px;
}

.user-createOrLogin-box .user-register-button {
  margin-right: 1%;
}

.user-createOrLogin-box .user-login-button {
  margin-left: 1%;
}

.user-createOrLogin-box .user-register-button::before,
.user-createOrLogin-box .user-login-button::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 0;
  left: 15px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  border: 5px solid #E95A56;
}

.user-createOrLogin-box .user-register-button::after,
.user-createOrLogin-box .user-login-button::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 0;
  right: 15px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  border: 5px solid #E95A56;
}

.user-createOrLogin-box .user-register-button a,
.user-createOrLogin-box .user-login-button a {
  display: inline-block;
  width: 100%;
  outline: none;
}

@media screen and (max-width:812px) {
  .user-createOrLogin-box {
    margin: 20px 0px 10px;
  }

  .user-createOrLogin-box .user-register-button {
    margin-bottom: 10px;
  }

  .user-createOrLogin-box .user-register-button::before,
  .user-createOrLogin-box .user-login-button::before {
    content: none;
  }

  .user-createOrLogin-box .user-register-button::after,
  .user-createOrLogin-box .user-login-button::after {
    content: none;
  }
}

@media screen and (max-width:599px) {

  .user-createOrLogin-box .user-register-button,
  .user-createOrLogin-box .user-login-button {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #eee;
    border-radius: 10px;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #E95A56;
    text-align: center;
    position: relative;
    padding: 7px 7px 10px;
  }

  .user-createOrLogin-box .user-register-button {
    margin-right: 0%;
  }

  .user-createOrLogin-box .user-login-button {
    margin-left: 0%;
  }
}

/* 「エイゴホイクパークの会員になると出来ること」の3つ並ぶ箇所 */
ul.cando-list {
  font-size: 0;
  text-align: center;
  margin-top: 30px;
}

ul.cando-list li {
  display: inline-block;
  width: 48%;
  margin: 0 1%;
  vertical-align: top;
}

ul.cando-list li span.cando-title {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 15px;
  display: block;
}

ul.cando-list li span.cando-icon {
  display: inline-block;
  max-width: 150px;
  width: 100%;
}

ul.cando-list li span.cando-icon img {
  width: 100%;
  height: auto;
}

@media screen and (max-width:599px) {
  ul.cando-list {
    margin-top: 0px;
  }

  ul.cando-list li {
    width: 100%;
    margin: 30px 0 0;
  }

  ul.cando-list li:nth-child(1) {
    margin-top: 10px;
  }
}

ul.target-english-level-list {
  font-size: 0;
}

ul.target-english-level-list li {
  display: inline-block;
  max-width: 32.3%;
  width: 100%;
  margin: 0 1.5% 10px 0;
  vertical-align: top;
  background-color: #fff;
  border: 2px solid #EE8989;
  border-radius: 10px;
  padding: 10px;
}

ul.target-english-level-list li:nth-child(3),
ul.target-english-level-list li:nth-child(6) {
  margin: 0 0 10px 0;
}

ul.target-english-level-list li p.target-english-level-list-title {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #EE8989;
  background-color: #fff;
  border: 1px solid #EE8989;
  border-radius: 5px;
  padding: 5px 8px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

ul.target-english-level-list li p.target-english-level-list-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #EE8989;
}

ul.target-english-level-list li p.target-english-level-list-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(-45deg, #EE8989, #EE8989 2px, #fff 2px, #fff 4px);
  border-radius: 5px;
}

ul.target-english-level-list li .target-english-level-list-icon {
  max-width: 150px;
  width: 100%;
  padding: 10px 10px 0 10px;
  margin: 0 auto;
}

ul.target-english-level-list li .target-english-level-list-icon img {
  width: 100%;
  height: auto;
}

ul.target-english-level-list li .target-english-level-list-description {
  font-size: 1.3rem;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
}

@media screen and (max-width:599px) {
  ul.target-english-level-list li {
    max-width: 49%;
    margin: 0 2% 10px 0;
  }

  ul.target-english-level-list li:nth-child(3) {
    margin: 0 2% 10px 0;
  }

  ul.target-english-level-list li:nth-child(2n) {
    margin: 0 0 10px 0;
  }
}

/* 英語レベルの参考ガイドラインのコラムに促すボックスの箇所 */
.modal-sub-box {
  background-color: #eee;
  padding: 10px;
  border-radius: 10px;
  margin-top: 30px;
}

.modal-sub-box.brown {
  background-color: #eae3db;
}

p.modal-sub-box-description {
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 10px 0px 20px;
  padding: 10px;
}

.modal-reference-column {
  margin-bottom: 15px;
}

.modal-reference-column .wrap-modal-reference-column-title {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.modal-reference-column .wrap-modal-reference-column-title span.modal-reference-column-title {
  font-size: 1.5rem;
  line-height: 1.7;
  background-color: #E95A56;
  color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
  margin-right: 20px;
}

.modal-reference-column .wrap-modal-reference-column-title .modal-reference-column-title-link {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #E95A56;
  outline: none;
}

@media screen and (max-width:599px) {
  .modal-sub-box {
    margin-top: 15px;
  }

  p.modal-sub-box-description {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .modal-reference-column {
    margin-bottom: 0px;
  }

  .modal-reference-column .wrap-modal-reference-column-title span.modal-reference-column-title {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 5px 8px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }

  .modal-reference-column .wrap-modal-reference-column-title .modal-reference-column-title-link {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.ehp-present-sponser {
  background-color: #fff;
  padding: 20px;
  font-size: 0;
}

.ehp-present-sponser .ehp-present-sponser-left {
  display: inline-block;
  vertical-align: top;
  max-width: 30%;
  width: 100%;
  padding: 10px;
  background-color: #eee;
}

.ehp-present-sponser .ehp-present-sponser-left img {
  width: 100%;
  height: auto;
}

.ehp-present-sponser-separation-line {
  border-top: 5px dashed #fff;
  margin: 8px 15px 10px;
}

.ehp-present-sponser .ehp-present-sponser-left a.ehp-present-sponser-link {
  display: inline-block;
  padding: 5px 7px;
  background-color: #EE8989;
  border-radius: 5px;
  color: #fff;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.3;
  width: 100%;
  text-align: center;
}

.ehp-present-sponser .ehp-present-sponser-right {
  display: inline-block;
  vertical-align: top;
  max-width: 70%;
  width: 100%;
  padding: 0px 20px;
}

.ehp-present-sponser .ehp-present-sponser-right p {
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (max-width:599px) {
  .ehp-present-sponser {
    padding: 10px;
  }

  .ehp-present-sponser .ehp-present-sponser-left {
    max-width: 100%;
    width: 100%;
  }

  .ehp-present-sponser .ehp-present-sponser-left img {
    width: 100%;
    height: auto;
  }

  .ehp-present-sponser-separation-line {
    border-top: 5px dashed #fff;
    margin: 8px 15px 10px;
  }

  .ehp-present-sponser .ehp-present-sponser-right {
    max-width: 100%;
    width: 100%;
    padding: 20px 10px;
  }

  .ehp-present-sponser .ehp-present-sponser-right p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

ul.bonus-present-list {
  font-size: 0;
  margin-bottom: 40px;
}

ul.bonus-present-list li {
  display: inline-block;
  max-width: 48%;
  width: 100%;
  margin: 0 1%;
  vertical-align: top;
}

ul.bonus-present-list li .bonus-present-pic {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}

ul.bonus-present-list li .bonus-present-pic img {
  width: 100%;
  height: auto;
}

ul.bonus-present-list li .bonus-present-details {
  font-size: 1.9rem;
  line-height: 2.1;
  font-family: 'Kosugi Maru', sans-serif;
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 10px;
}

ul.bonus-present-list li .bonus-present-sub-details {
  font-size: 1.3rem;
  line-height: 1.5;
  font-family: 'Kosugi Maru', sans-serif;
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
}

@media screen and (max-width:599px) {
  ul.bonus-present-list {
    margin-bottom: 20px;
  }

  ul.bonus-present-list li {
    max-width: 100%;
    width: 100%;
    margin: 0%;
  }

  ul.bonus-present-list li .bonus-present-pic {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  ul.bonus-present-list li .bonus-present-pic img {
    width: 100%;
    height: auto;
  }

  ul.bonus-present-list li .bonus-present-details {
    font-size: 1.5rem;
    line-height: 1.7;
    padding: 15px;
  }

  ul.bonus-present-list li .bonus-present-sub-details {
    padding: 15px;
  }
}

ul.bonus-present-flow {
  font-size: 0;
}

ul.bonus-present-flow li {
  display: inline-block;
  max-width: 32.3%;
  width: 100%;
  margin: 0 1.5% 10px 0;
  vertical-align: top;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

ul.bonus-present-flow li:last-child {
  margin: 0 0 10px 0;
}

ul.bonus-present-flow li p.bonus-present-flow-title {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #EE8989;
  background-color: #fff;
  border: 1px solid #EE8989;
  border-radius: 5px;
  padding: 5px 8px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

ul.bonus-present-flow li p.bonus-present-flow-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #EE8989;
}

ul.bonus-present-flow li .bonus-present-flow-icon {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}

ul.bonus-present-flow li .bonus-present-flow-icon img {
  width: 100%;
  height: auto;
}

ul.bonus-present-flow li .bonus-present-flow-description {
  font-size: 1.3rem;
  line-height: 1.5;
  background-color: #eee;
  color: #666;
  border-radius: 5px;
  padding: 15px;
  margin-top: 10px;
}

.notice-description_01 {
  font-size: 1.1rem;
  line-height: 1.7;
  padding-left: 25px;
}

.notice-description_02 {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #E95A56;
  padding: 10px;
  margin-top: 10px;
}

@media screen and (max-width:599px) {
  ul.bonus-present-flow li {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    margin: 0 0 10px 0;
    vertical-align: top;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
  }

  ul.bonus-present-flow li:last-child {
    margin: 0 0 10px 0;
  }

  ul.bonus-present-flow li p.bonus-present-flow-title {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #EE8989;
    background-color: #fff;
    border: 1px solid #EE8989;
    border-radius: 5px;
    padding: 5px 8px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
  }

  ul.bonus-present-flow li p.bonus-present-flow-title::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #EE8989;
  }

  ul.bonus-present-flow li .bonus-present-flow-icon {
    max-width: 150px;
    width: 100%;
    margin: 0 auto;
  }

  ul.bonus-present-flow li .bonus-present-flow-icon img {
    width: 100%;
    height: auto;
  }

  ul.bonus-present-flow li .bonus-present-flow-description {
    font-size: 1.3rem;
    line-height: 1.5;
    background-color: #eee;
    color: #666;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
  }

  .notice-description_01 {
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 0px;
  }

  .notice-description_02 {
    margin-top: 0px;
  }
}

ul.supporting-member-list {
  font-size: 0;
  margin: 20px 0px;
}

ul.supporting-member-list li {
  display: inline-block;
  max-width: 31.3%;
  width: 100%;
  margin: 0 1%;
  vertical-align: top;
  border-radius: 5px;
  background-color: #eee;
  text-align: center;
  margin-bottom: 15px;
}

ul.supporting-member-list li .sm-list-thumbnail {
  padding: 10px;
}

ul.supporting-member-list li .sm-list-thumbnail img {
  border-radius: 10px;
}

ul.supporting-member-list li .supporting-member-name {
  padding: 10px;
  font-size: 1.5rem;
  font-size: 1.7rem;
}

ul.supporting-member-list li .supporting-member-description {
  font-size: 1.3rem;
  font-size: 1.5rem;
  padding: 10px;
}

@media screen and (max-width:599px) {
  ul.supporting-member-list li {
    display: block;
    max-width: 90%;
    width: 100%;
    margin: 0 5%;
    margin-bottom: 15px;
  }

  ul.supporting-member-list li .supporting-member-name {
    font-size: 1.3rem;
    font-size: 1.5rem;
  }
}

ul.supporting-member-list li .supporting-member-btn {
  display: inline-block;
  width: calc(100% - 20px);
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 6px 0px 8px;
  border: 2px solid #EE8989;
  color: #EE8989;
  border-radius: 10px;
  margin: 10px 10px 15px 10px;
  background-color: #fff;
  box-shadow: 5px 5px 0 #F8CFCE;
  transition: .4s;
  position: relative;
  cursor: pointer;
  outline: none;
}

ul.supporting-member-list li .supporting-member-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(-45deg, #EE8989, #EE8989 2px, #fff 2px, #fff 4px);
  border-radius: 5px;
}

ul.supporting-member-list li .supporting-member-btn:hover {
  background-color: #EE8989;
  border: 2px solid #fff;
  color: #fff;
  transform: translateY(4px);
  box-shadow: 0 0 0 #dbd7d2;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}