@charset "UTF-8";
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: #333;
}

.inner {
  padding-inline: 32px;
}

.button {
  min-width: 158px;
  padding: 11px;
  text-align: center;
  border: 1px solid #ff96c2;
  border-radius: 20px;
  background: #fff;
  color: #ff96c2;
  font-size: 14px;
  letter-spacing: 0.02px;
  display: inline-block;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  background-color: #ff96c2;
  color: #fff;
}
.button.is-active {
  background: #ff96c2;
  color: #fff;
}
.button.is-active:hover {
  background-color: #fff;
  color: #ff96c2;
  border: solid 1px #ff96c2;
}
.button.is-inactive {
  background: #eee;
  -webkit-filter: drop-shadow(0px 0px 1px #ccc);
          filter: drop-shadow(0px 0px 1px #ccc);
  pointer-events: none;
  color: #999;
}

.section {
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .section__head {
    margin-bottom: 24px;
  }
}

.section__head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .section__head-main {
    font-size: 54px;
  }
}
@media screen and (min-width: 900px) {
  .section__head-main {
    font-size: 60px;
  }
}

.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
}

.header {
  height: 60px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}
.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
}
.header__logo {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #ff96c2;
}
.header__logo:hover {
  color: #333;
}
@media screen and (min-width: 768px) {
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .header__icon {
    display: none;
  }
}
.header__nav {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 143, 199, 0.9)), to(rgba(233, 192, 224, 0.9)));
  background: linear-gradient(180deg, rgba(255, 143, 199, 0.9) 0%, rgba(233, 192, 224, 0.9) 100%);
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  right: 0;
  top: 60px;
  padding: 32px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 38px;
  }
}
.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #333333;
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #ff96c2;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  background: #333;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  background: #333;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background: #ff96c2;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.fv__inner {
  position: relative;
}

.fv__img img {
  width: 100%;
  border-radius: 0 0 20px 20px;
  display: block;
}

.fv__contents {
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 209px;
  background-size: 100% auto;
  padding: 32px;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    position: absolute;
    bottom: 100px;
    left: 0;
    height: 180px;
    padding-top: 24px;
    padding-left: 96px;
    color: #fff;
  }
}

.fv__heading-main {
  display: block;
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) {
  .fv__heading-main {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .fv__heading-main {
    font-size: 40px;
  }
}

.fv__heading-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.service {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: 0px;
  }
}

@media screen and (min-width: 768px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.service__item + .service__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__item + .service__item {
    margin-top: 0;
  }
}

.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}

.service__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #ff96c2;
}

.service__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.works {
  background-color: #fafafa;
  padding-bottom: 120px;
}

.message {
  background: url("../img/sp/message-bg.webp") no-repeat top center/cover;
  position: relative;
  padding-block: 647px 30px;
}
@media screen and (min-width: 768px) {
  .message {
    background-image: url("../img/message-bg.webp");
    padding-block: 780px 30px;
  }
}
.message::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.message__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .message__content {
    width: 50%;
  }
}

.message__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .message__title {
    font-size: 22px;
  }
}

.message__text {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .message__text {
    margin-top: 23px;
    font-size: 16px;
  }
}

.flow {
  background-color: #fafafa;
  padding-top: 120px;
}

.flow__list {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}
@media screen and (min-width: 900px) {
  .flow__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.flow__item {
  position: relative;
  border: 1px solid #ff96c2;
  padding: 46px 16px 24px;
  border-radius: 20px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}

.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #ff96c2;
  color: #fff;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}

.flow__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #ff96c2;
}

.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}
.about__container img {
  border-radius: 20px;
  margin-bottom: 32px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}

.x__account {
  font-size: 16px;
  line-height: 1.6;
}

.x__link {
  display: inline-block;
  margin-top: 16px;
  margin-right: 8px;
  padding: 4px 14px;
  background-color: #ff96c2;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02px;
  text-align: center;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.x__link:hover {
  background-color: #fff;
  color: #ff96c2;
  border: solid 1px #ff96c2;
}

.contact {
  padding-block: 56px;
  background-color: #f1f1f1;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 60px;
  }
}

.contact__text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.contact__text .is-required {
  color: #e7728e;
}

.contact__items {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .contact__items {
    margin-top: 19px;
  }
}

.contact__footer {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .contact__footer {
    margin-top: 32px;
  }
}

.contact__privacy {
  text-align: center;
}

.contact__submit {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: rgba(255, 150, 194, 0.7);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
@media screen and (min-width: 768px) {
  .form-label {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 4px;
    padding-inline: 4px;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}
.form-label.is-error {
  color: #ce2073;
}

.form-label__required {
  color: #e7728e;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-label__required {
    font-size: 12px;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
}
.form-text:focus {
  outline: #ff96c2 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px #ff96c2;
          box-shadow: 5px 6px 16px 0px #ff96c2;
}
.form-text.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

.form-radio {
  position: relative;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  background-color: #ff96c2;
  color: #fff;
}
.form-radio__input:focus + .form-radio__text {
  outline: #ff96c2 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px #ff96c2;
          box-shadow: 5px 6px 16px 0px #ff96c2;
}

.form-radio__text {
  font-size: 16px;
  letter-spacing: 0.026px;
  color: #ff96c2;
  border: 1px solid #fff;
  background: #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  width: 100%;
  height: 122px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
  resize: vertical;
  font-size: 16px;
  border: 0;
}
.form-textarea:focus {
  outline: #ff96c2 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px #ff96c2;
          box-shadow: 5px 6px 16px 0px #ff96c2;
}
.form-textarea.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

.form-checkbox {
  position: relative;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  outline: #ff96c2 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px #ff96c2;
          box-shadow: 5px 6px 16px 0px #ff96c2;
}

.form-checkbox__text {
  font-size: 16px;
  padding-left: 30px;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #ff96c2;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #ff96c2;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
}

/* エラーメッセージ */
.error-message {
  color: #ce2073;
  font-size: 14px;
  margin-top: 5px;
}

.footer {
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", serif;
}

.color-blue {
  color: #ff96c2;
}

.pagetop {
  position: fixed;
  right: 16px;
  bottom: 30px;
  width: min(13.3333333333%, 50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 22px;
    bottom: 40px;
    width: 76px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.thanks__content {
  padding-bottom: 20px;
  background-color: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.thanks__content img {
  width: 800px;
  margin-inline: auto;
}

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

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

.thanks__name {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.thanks__button {
  margin-top: 20px;
}

ul.link-card_block {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  ul.link-card_block {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 900px) {
  ul.link-card_block {
    grid-template-columns: repeat(5, 1fr);
  }
}

.link-card {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 !important;
  border-radius: 8px;
  overflow: hidden;
}

.link-card:hover {
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.link-card img {
  width: 100%;
}

.link-card_text {
  padding: 12px 16px;
}

.link-card_text p {
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #313131;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 50;
  overflow: hidden;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 9;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 80%;
  max-width: 600px;
  height: auto;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 80%;
  gap: 15px;
}

#modal-image {
  width: 100%;
}

.close {
  position: absolute;
  top: -11px;
  right: -11px;
  cursor: pointer;
  font-size: 1.3em;
  color: #555;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f9f9f9;
  width: 38px;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: solid 1px #ddd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 1;
  padding: 0;
}

.close:hover {
  opacity: 0.8;
}

.modal-contentInnerTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  gap: 8px;
}

.modal-contentInnerTop p {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.modal-contentInnerBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 0;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

#modal-link {
  background: #fff;
  color: #ff96c2;
  width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 0 5px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  border: solid 1px #ff96c2;
  position: relative;
}

#modal-link:after {
  right: 14px;
  opacity: 0.6;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#modal-link:hover {
  background: #ff96c2;
  color: #fff;
  opacity: 0.8;
}

#modal-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #313131;
}

#modal-summary {
  color: #707070;
  font-size: 0.9rem;
}

.spots-card {
  background: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 31px;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding-inline: 40px;
}
@media screen and (min-width: 768px) {
  .spots-card {
    border-radius: 24px;
    padding-bottom: 40px;
    gap: 24px;
    padding-inline: 80px;
  }
}

.spots-card__image {
  border-radius: 12px;
  overflow: hidden; /* はみ出す角を切る */
}

.spots-card__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spots-card__title {
    font-size: 20px;
  }
}

.work-meta__list {
  margin: 0;
}

.work-meta__row {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}

.work-meta__row:last-child {
  border-bottom: 0;
}

.work-meta__row dt {
  font-weight: 700;
  color: #333;
}

.work-meta__row dd {
  margin: 0;
  color: #444;
}

.work-meta__tags .tag {
  display: inline-block;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.work-meta__tags .tag:hover {
  background: #f7f7f7;
}

@media screen and (min-width: 768px) {
  .spots-card__text {
    font-size: 16px;
  }
}

.video-timestamps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-timestamps li {
  margin: 0.4rem 0;
}

.video-timestamps a {
  color: #333;
  text-decoration: none;
}

.video-timestamps a:hover {
  text-decoration: underline;
}

.purchase__button {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .purchase__button {
    margin-top: 30px;
  }
}

.purchase {
  display: inline-block;
  padding: 8px 16px;
  background-color: yellow;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
}
.purchase:hover {
  background-color: rgb(255, 99, 164.3714285714);
  color: #fff;
}

.return__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .return__button {
    margin-top: 60px;
  }
}
.return__button .button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ff96c2;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
}
.return__button .button:hover {
  background-color: rgb(255, 99, 164.3714285714);
  color: #fff;
}