@charset "UTF-8";
:root {
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-xxl: 32px;
  --space-3l: 48px;
  --space-4l: 64px;
  /* Typography */
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2.0rem;
  --font-size-2xl: 2.6rem;
  --font-size-3xl: 3.2rem;
  --font-size-4xl: 5.6rem;
  /* Container */
  --container-sm: 800px;
  --container-md: 962px;
  --container-lg: 1440px;
  /* Colors */
  --color-primary: #223F76;
  --color-text-main: #ffffff;
  --color-text-sub: #91979C;
  --color-bg-base: #000000;
  --color-bg-light: #1a1a1a;
  --color-accent: #f0c419;
  --color-pink: #e63958;
  --en:"Lato", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-size-md);
  line-height: 1.6;
  margin: 0;
  font-feature-settings: "halt";
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: 80px;
}
@media screen and (min-width: 1100px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--sm {
  max-width: var(--container-sm);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1100px) {
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
.header__logo {
  font-family: var(--en);
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1.2;
  margin: 2rem 1rem;
}
@media screen and (min-width: 1100px) {
  .header__logo {
    margin: 3.6rem;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
  }
}
.header__list {
  display: flex;
  gap: var(--space-xl);
}
.header__item {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--en);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px) {
  .header__item a {
    transition: 0.2s ease-out;
  }
  .header__item a:hover {
    opacity: 0.6;
  }
}
.header__sns {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
@media screen and (max-width: 1099px) {
  .header__sns {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .header__sns a {
    transition: 0.2s ease-out;
  }
  .header__sns a:hover {
    opacity: 0.6;
  }
}
.header__menu-trigger {
  width: 77px;
  height: 55px;
  background: #000;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
@media screen and (min-width: 1100px) {
  .header__menu-trigger {
    display: none;
  }
}
.header__menu-trigger span {
  display: block;
  width: 28px;
  height: 1px;
  background: #fff;
}
.header__menu-trigger span:nth-child(2) {
  transform: translateX(-5px);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 7rem;
}
@media screen and (min-width: 768px) {
  .hero {
    margin-bottom: 10rem;
  }
}
.hero__img {
  position: relative;
}
.hero__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 26%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__logo {
  margin-top: -10rem;
}
@media screen and (min-width: 768px) {
  .hero__logo {
    margin-top: -8rem;
  }
}
.hero__logo img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 336px;
}
@media screen and (min-width: 768px) {
  .hero__logo img {
    max-width: 546px;
  }
}
.hero__info {
  font-family: var(--en);
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
  margin-top: -3rem;
}
.hero__time {
  font-family: var(--en);
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: var(--space-xl);
  text-shadow: 0 0 40px #FEEA6E;
}
@media screen and (min-width: 768px) {
  .hero__time {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}
.hero__sns-promo {
  font-size: 1.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: 5rem;
}
@media screen and (min-width: 1100px) {
  .hero__sns-promo a {
    transition: 0.2s ease-out;
  }
  .hero__sns-promo a:hover {
    opacity: 0.6;
  }
}

.timefree-wrap {
  border: 2px solid #E3FEFE;
  position: relative;
  box-shadow: 0 0 30px 10px rgba(227, 254, 254, 0.25);
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .timefree-wrap {
    padding: 5rem 6rem 6.5rem;
  }
}
.timefree-wrap::before, .timefree-wrap::after {
  content: "";
  display: block;
  width: 43%;
  height: 2px;
  background: #E3FEFE;
  position: absolute;
  top: -10px;
  left: -2px;
}
@media screen and (min-width: 768px) {
  .timefree-wrap::before, .timefree-wrap::after {
    width: 35%;
  }
}
.timefree-wrap::after {
  top: auto;
  left: auto;
  bottom: -10px;
  right: -2px;
}
.timefree-wrap__title {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  margin-bottom: 1.8rem;
}

#timefree_extract .timefree_ul {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}
@media screen and (min-width: 768px) {
  #timefree_extract .timefree_ul {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
  }
}
#timefree_extract .timefree_ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: none !important;
  border: 2px solid #E73C64;
  padding: 1.5rem 2rem !important;
  font-size: 1.3rem !important;
  max-width: 200px;
  margin: 0 auto;
}
#timefree_extract .timefree_ul li a::before {
  display: none !important;
}

/* Section Common */
.section:not(:last-child) {
  margin: 10rem 0;
}
@media screen and (min-width: 768px) {
  .section:not(:last-child) {
    margin: 12rem 0;
  }
}
.section__title {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .section__title {
    margin-bottom: 6rem;
  }
}
.section__title-main {
  display: block;
  text-align: center;
  font-family: var(--en);
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  color: #000;
  -webkit-text-stroke: 2px #FEEA6E;
  text-stroke: 2px #FEEA6E;
  paint-order: stroke;
  text-shadow: 0 0 40px #FEEA6E;
}
@media screen and (min-width: 768px) {
  .section__title-main {
    font-size: 4rem;
  }
}
.section__title-sub {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-top: 2rem;
}
.section__inner {
  border: 2px solid #E3FEFE;
  box-shadow: 0 0 30px 10px rgba(227, 254, 254, 0.25);
  padding: 5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .section__inner {
    padding: 8.6rem 8rem;
  }
}

#tab-btn-set {
  position: relative;
}
#tab-btn-set::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #292C2C;
  position: absolute;
  top: 52px;
  left: 0;
  z-index: -1;
}
#tab-btn-set .tab-btn .label {
  font-family: var(--en);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

/* On Air Section */
.onair {
  padding: 3.6rem 0 0;
}
.onair__flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .onair__flex {
    grid-template-columns: 1fr 1fr;
    margin-top: 5.5rem;
  }
}
.onair__meta, .archive__date {
  font-family: var(--en);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  margin-top: 0;
}
.onair__heading, .archive__title {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #8F8F8F;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}
.onair__text, .archive__desc {
  font-weight: 300;
}
.onair__text p {
  white-space: pre-wrap;
}
.onair__text p, .archive__desc p {
  margin-bottom: var(--space-lg);
}
.onair__text p:last-child, .archive__desc p:last-child {
  margin-bottom: 0 !important;
}
.onair__text p:first-child, .archive__desc p:first-child {
  margin-top: 0 !important;
}
.onair__image img {
  width: 100%;
  border-radius: 4px;
}

/* Archive Section */
.archive__hero {
  position: relative;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive__hero {
    height: 356px;
  }
}
.archive__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.archive__hero-content {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}
.archive__hero-title {
  font-family: var(--en);
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .archive__hero-title {
    font-size: 6rem;
  }
}
.archive__hero-sub {
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  margin: 0;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .archive__hero-sub {
    font-size: 1.4rem;
  }
}
.archive__hero-img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.archive__nav-box {
  text-align: center;
  padding: var(--space-4l) 0;
}
@media screen and (min-width: 768px) {
  .archive__nav-box {
    padding: 10rem 0 7.5rem;
  }
}
.archive__nav-box-label {
  display: block;
  font-family: var(--en);
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-xl);
  color: var(--color-text-sub);
}
.archive__btn-archive {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xl);
  border: 1px solid #fff;
  padding: var(--space-lg) var(--space-4l);
  font-weight: bold;
  font-size: var(--font-size-md);
  transition: all 0.3s;
}
.archive__btn-archive:hover {
  background: rgba(255, 255, 255, 0.1);
}
.archive__list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4l);
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .archive__list--sub {
    gap: 10rem;
  }
}
.archive__list--sub .archive__item {
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .archive__list--sub .archive__item {
    gap: 4rem;
  }
}
.archive__list--sub .archive__item .archive__img {
  order: 2;
  text-align: center;
}
.archive__list--sub .archive__item .archive__img img {
  width: auto;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .archive__list--sub .archive__item {
    grid-template-columns: 1fr;
  }
}
.archive__list--list {
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .archive__list--list {
    margin-top: 13rem;
  }
}
.archive__list--list .archive__item {
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .archive__list--list .archive__item {
    gap: 4rem 9rem;
  }
}
.archive__list--list .archive__item .archive__body {
  order: 1;
}
@media screen and (min-width: 768px) {
  .archive__list--list .archive__item .archive__body {
    order: 2;
  }
}
.archive__list--list .archive__item .archive__img {
  order: 2;
}
@media screen and (min-width: 768px) {
  .archive__list--list .archive__item .archive__img {
    order: 1;
  }
}
.archive__list--list .archive__item .archive__more {
  order: 3;
  margin-top: 0;
}
.archive__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.3rem;
}
@media screen and (min-width: 768px) {
  .archive__item {
    grid-template-columns: 1fr 2fr;
  }
}
.archive__title--mt {
  margin-top: 7rem;
}
@media screen and (min-width: 768px) {
  .archive__title--mt {
    margin-top: 10rem;
  }
}
.archive__img img {
  width: 100%;
  border-radius: 2px;
}
.archive__more {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-family: var(--en);
  font-weight: 700;
  letter-spacing: 0.06em;
  width: fit-content;
  margin: 3rem 0 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 1100px) {
  .archive__more {
    transition: 0.2s ease-out;
  }
  .archive__more:hover {
    opacity: 0.6;
  }
}
.archive__footer {
  text-align: center;
  padding: var(--space-4l) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3l);
}
.archive__back-top {
  font-family: var(--en);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.arrow-right::after {
  content: "";
  display: inline-block;
  width: 33px;
  height: 18px;
  border-radius: 14px;
  border: 1px solid #fff;
  background: url(../images/arrow.svg) 50% 50%/auto no-repeat;
}

.pager {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .pager {
    padding: 8rem 0 5rem;
  }
}
.pager__num {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .pager__num {
    transition: 0.2s ease-out;
  }
  .pager__num:hover {
    background: #fff;
    color: #000;
    opacity: 1;
  }
}
.pager__num--active {
  background: #fff;
  color: #000;
  pointer-events: none;
}
.pager__arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .pager__arrow {
    transition: 0.2s ease-out;
  }
  .pager__arrow:hover {
    opacity: 0.3;
  }
}
.pager__arrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/* Form Section */
.message__box {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-xxl);
  background: rgba(255, 255, 255, 0.05);
}
.message__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.message__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
@media (min-width: 768px) {
  .message__field {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-xxl);
  }
}
.message__label {
  font-weight: bold;
  font-size: var(--font-size-sm);
}
@media (min-width: 768px) {
  .message__label {
    flex: 0 0 200px;
    padding-top: var(--space-md);
  }
}
.message__input, .message__textarea {
  background: #ddd;
  border: none;
  padding: var(--space-md);
  font-size: var(--font-size-md);
  border-radius: 2px;
  flex: 1;
  width: 100%;
}
.message__textarea {
  min-height: 120px;
  resize: vertical;
}
.message__sub-title {
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: var(--space-sm);
  margin: var(--space-xl) 0 var(--space-md);
}
.message__btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
@media (min-width: 768px) {
  .message__btn-group {
    flex-direction: row;
  }
}
.message__submit, .message__reset {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.message__submit:hover, .message__reset:hover {
  background: rgba(255, 255, 255, 0.1);
}
.message__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-sub);
  margin-top: var(--space-xl);
}
.message__accordion {
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: var(--space-xl);
}
.message__accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

/* About Section */
.about__copy {
  display: block;
  font-size: 1.9rem;
  font-weight: 300;
  text-align: center;
}
.about__desc {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 1.5rem;
  text-align: center;
}
.about__dj-img {
  display: block;
  width: 160px;
  margin-inline: auto;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .about__dj-img {
    margin-top: 7rem;
    margin-bottom: 10rem;
  }
}
.about__dj-img img {
  width: 100%;
  height: auto;
}
.about__dj-name {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--en);
  margin-top: 1.6rem;
}

/* Footer */
.footer {
  padding: 9rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__back {
  width: 61px;
  display: block;
}
@media screen and (min-width: 1100px) {
  .footer__back {
    transition: 0.2s ease-out;
  }
  .footer__back:hover {
    opacity: 0.6;
  }
}
.footer__logo {
  width: 133px;
  display: block;
  margin-top: 27px;
}
.footer__copy {
  width: 196px;
  display: block;
  margin-top: 8px;
}
.footer img {
  max-width: 100%;
  height: auto;
}

/* Overlay Menu */
.overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}
.overlay--active {
  transform: translateY(0);
}
.overlay__close {
  width: 77px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  align-self: flex-end;
}
.overlay__close span {
  display: block;
  width: 35px;
  height: 1px;
  background: #fff;
  transform-origin: 50% 50%;
  transform: rotate(20deg);
}
.overlay__close span:nth-child(2) {
  transform: rotate(-20deg);
}
.overlay__close p {
  font-family: var(--en);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
  margin-top: 1rem;
}
.overlay__nav {
  margin-top: var(--space-4l);
}
.overlay__list {
  display: flex;
  flex-direction: column;
}
.overlay__item {
  border-bottom: 1px solid #fff;
}
.overlay__item a {
  display: block;
  padding: 2rem 1.7rem;
  font-family: var(--en);
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.btn-wrap--center {
  text-align: center;
}
.btn-wrap--form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.3rem;
}
@media screen and (min-width: 768px) {
  .btn-wrap--form {
    flex-direction: row;
    gap: 3.4rem;
  }
}
.btn-wrap--form .btn {
  width: 100%;
  max-width: 265px;
  padding-inline: 3rem;
  justify-content: space-between;
}
.btn-wrap--form02 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 3.4rem;
}
@media screen and (min-width: 768px) {
  .btn-wrap--form02 {
    grid-column: 1/3;
    flex-direction: row;
  }
}
.btn-wrap--form02 .btn {
  padding: 1rem;
}

/* Utility */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.2rem 3rem;
  border: 1px solid #fff;
  font-family: var(--en);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  background: none;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 2.2rem 3.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .btn {
    transition: 0.2s ease-out;
    cursor: pointer;
  }
  .btn:hover {
    opacity: 0.6;
  }
}
.btn::after {
  width: 45px;
  height: 24px;
}
.btn--submit {
  letter-spacing: 0.6em;
}

.block-center {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.ta-center {
  text-align: center;
  margin: 2rem 0;
}
@media screen and (min-width: 768px) {
  .ta-center {
    margin: 5rem 0;
  }
}
.ta-center img {
  display: inline-block;
}

.p-error .p-error__textWrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-message__form input,
.p-message__form textarea,
.p-message__form select {
  padding: 16px;
  background-color: #fff;
  border-radius: 5px;
  color: #000;
}
.p-message__form textarea {
  height: 10em;
}
.p-message__form select {
  cursor: pointer;
}

.p-message__form-contents {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-message__form-contents {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
  }
}
.p-message__form-contents .-j-me {
  font-size: 1.9rem;
  margin-top: 25px;
  margin-bottom: 13px;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-message__form-contents .-j-me {
    grid-column: 1/3;
  }
}

.p-message__form-inner {
  margin-inline: auto;
  width: var(--inner-sp);
}

.p-message__form-links {
  margin-block: 21px 27px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-message__form-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  text-decoration: none;
}
.p-message__form-link .-arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #AA9E92;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-message__form-link .-arrow::after {
  content: "";
  position: relative;
  top: 17%;
  left: -3%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #000;
  border-top: 1.5px solid #000;
  transform: translateY(-50%) rotate(45deg);
}

.p-message__form-details {
  margin: 5rem auto 32px;
  color: #fff;
  background-color: #383634;
  border-top: 1px solid #AA9E92;
}
.p-message__form-details[open] .p-message__form-title .-arrow::after {
  rotate: 0deg;
}
.p-message__form-details label,
.p-message__form-details .-label {
  font-weight: 700;
}
.p-message__form-details input,
.p-message__form-details textarea,
.p-message__form-details select {
  color: #000;
  background-color: #fff;
}

.p-message__form-title {
  padding: 2rem;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: grid;
  grid-template-columns: 1fr 31px;
  align-items: center;
  border-bottom: 1px solid #AA9E92;
  cursor: pointer;
}
@media screen and (min-width: 1100px) {
  .p-message__form-title {
    transition: 0.2s ease-out;
  }
  .p-message__form-title:hover {
    opacity: 0.6;
  }
}
.p-message__form-title .-arrow {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
.p-message__form-title .-arrow::before, .p-message__form-title .-arrow::after {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  grid-row: 1/2;
  grid-column: 1/2;
}
.p-message__form-title .-arrow::after {
  rotate: 90deg;
  transition: var(--transition);
  transition-property: rotate;
}

.p-message__form-inner {
  padding: 25px 20px;
}

.p-message__form-select {
  position: relative;
  width: fit-content;
}
.p-message__form-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-message__form-select select::-ms-expand {
  display: none;
}
.p-message__form-select::before, .p-message__form-select::after {
  content: "";
  position: absolute;
  top: 50%;
  pointer-events: none;
}
.p-message__form-select::before {
  width: 25px;
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 50%;
  right: -40px;
  transform: translateY(-50%);
}
.p-message__form-select::after {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #fff;
  border-top: 1.5px solid #fff;
  top: 47%;
  right: -32px;
  transform: translateY(-50%) rotate(135deg);
}

.p-message__form-radio {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.p-message__form-radio label {
  cursor: pointer;
  font-weight: 700;
}
.p-message__form-radio input[type=radio] {
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.p-message__form-radio input[type=radio]:focus-visible + span::before {
  background: #5F5449;
}
.p-message__form-radio input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 42px;
}
.p-message__form-radio input[type=radio] + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
}
.p-message__form-radio input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #5F5449;
}

.p-message__form-textWrap {
  color: #fff;
}

.p-message__form-textWrap p:nth-of-type(1) {
  margin-bottom: 20px;
}

.p-message__form-btn {
  position: relative;
  width: 269px;
  height: 70px;
  margin-top: 50px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  border: 1px solid #6F6A5F;
  color: #fff;
  letter-spacing: 0.03em;
  font-weight: 700;
}
.p-message__form-btn .-text {
  padding-left: 12%;
}
.p-message__form-btn .-icon {
  width: 26px;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}
.p-message__form-btn .-icon::before {
  position: relative;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #000;
  border-top: 1.5px solid #000;
  top: 13%;
  right: 4%;
  transform: translateY(-50%) rotate(45deg);
}

.p-message__thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 330px;
  background-color: #252525;
  padding: 32px 0;
  margin-top: 70px;
}
.p-message__thanks .-title {
  position: relative;
  width: fit-content;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 5px;
}
.p-message__thanks .-text {
  color: #AA9E92;
}

/**************************/
/*  書き方パーツ調整用クラス  */
/**************************/
/*表示・非表示 切り替え用 */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .tab-only {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .tab-only {
    display: none !important;
  }
}

@media screen and (max-width: 1099px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
  .tab-none {
    display: none !important;
  }
}

@media screen and (min-width: 1100px) {
  .pc-none {
    display: none !important;
  }
}

/* margin-top スマホ */
@media screen and (max-width: 767px) {
  .sp-mt0 {
    margin-top: 0 !important;
  }
  .sp-mt10 {
    margin-top: 1rem !important;
  }
  .sp-mt20 {
    margin-top: 2rem !important;
  }
  .sp-mt30 {
    margin-top: 3rem !important;
  }
  .sp-mt40 {
    margin-top: 4rem !important;
  }
  .sp-mt50 {
    margin-top: 5rem !important;
  }
  .sp-mt60 {
    margin-top: 6rem !important;
  }
  .sp-mt70 {
    margin-top: 7rem !important;
  }
  .sp-mt80 {
    margin-top: 8rem !important;
  }
  .sp-mt90 {
    margin-top: 9rem !important;
  }
  .sp-mt100 {
    margin-top: 10rem !important;
  }
}
/* margin-top タブレット */
@media screen and (min-width: 768px) {
  .tab-mt0 {
    margin-top: 0 !important;
  }
  .tab-mt10 {
    margin-top: 1rem !important;
  }
  .tab-mt20 {
    margin-top: 2rem !important;
  }
  .tab-mt30 {
    margin-top: 3rem !important;
  }
  .tab-mt40 {
    margin-top: 4rem !important;
  }
  .tab-mt50 {
    margin-top: 5rem !important;
  }
  .tab-mt60 {
    margin-top: 6rem !important;
  }
  .tab-mt70 {
    margin-top: 7rem !important;
  }
  .tab-mt80 {
    margin-top: 8rem !important;
  }
  .tab-mt90 {
    margin-top: 9rem !important;
  }
  .tab-mt100 {
    margin-top: 10rem !important;
  }
  .tab-mt110 {
    margin-top: 11rem !important;
  }
  .tab-mt120 {
    margin-top: 12rem !important;
  }
  .tab-mt130 {
    margin-top: 13rem !important;
  }
  .tab-mt140 {
    margin-top: 14rem !important;
  }
  .tab-mt150 {
    margin-top: 15rem !important;
  }
  .tab-mt160 {
    margin-top: 16rem !important;
  }
  .tab-mt170 {
    margin-top: 17rem !important;
  }
  .tab-mt180 {
    margin-top: 18rem !important;
  }
  .tab-mt190 {
    margin-top: 19rem !important;
  }
  .tab-mt200 {
    margin-top: 20rem !important;
  }
}
/* margin-top パソコン */
@media screen and (min-width: 1100px) {
  .pc-mt0 {
    margin-top: 0 !important;
  }
  .pc-mt10 {
    margin-top: 1rem !important;
  }
  .pc-mt20 {
    margin-top: 2rem !important;
  }
  .pc-mt30 {
    margin-top: 3rem !important;
  }
  .pc-mt40 {
    margin-top: 4rem !important;
  }
  .pc-mt50 {
    margin-top: 5rem !important;
  }
  .pc-mt60 {
    margin-top: 6rem !important;
  }
  .pc-mt70 {
    margin-top: 7rem !important;
  }
  .pc-mt80 {
    margin-top: 8rem !important;
  }
  .pc-mt90 {
    margin-top: 9rem !important;
  }
  .pc-mt100 {
    margin-top: 10rem !important;
  }
}
/* margin-bottom スマホ */
@media screen and (max-width: 767px) {
  .sp-mb0 {
    margin-bottom: 0 !important;
  }
  .sp-mb10 {
    margin-bottom: 1rem !important;
  }
  .sp-mb20 {
    margin-bottom: 2rem !important;
  }
  .sp-mb30 {
    margin-bottom: 3rem !important;
  }
  .sp-mb40 {
    margin-bottom: 4rem !important;
  }
  .sp-mb50 {
    margin-bottom: 5rem !important;
  }
  .sp-mb60 {
    margin-bottom: 6rem !important;
  }
  .sp-mb70 {
    margin-bottom: 7rem !important;
  }
  .sp-mb80 {
    margin-bottom: 8rem !important;
  }
  .sp-mb90 {
    margin-bottom: 9rem !important;
  }
  .sp-mb100 {
    margin-bottom: 10rem !important;
  }
}
/* margin-bottom タブレット */
@media screen and (min-width: 768px) {
  .tab-mb0 {
    margin-bottom: 0 !important;
  }
  .tab-mb10 {
    margin-bottom: 1rem !important;
  }
  .tab-mb20 {
    margin-bottom: 2rem !important;
  }
  .tab-mb30 {
    margin-bottom: 3rem !important;
  }
  .tab-mb40 {
    margin-bottom: 4rem !important;
  }
  .tab-mb50 {
    margin-bottom: 5rem !important;
  }
  .tab-mb60 {
    margin-bottom: 6rem !important;
  }
  .tab-mb70 {
    margin-bottom: 7rem !important;
  }
  .tab-mb80 {
    margin-bottom: 8rem !important;
  }
  .tab-mb90 {
    margin-bottom: 9rem !important;
  }
  .tab-mb100 {
    margin-bottom: 10rem !important;
  }
}
/* margin-bottom パソコン */
@media screen and (min-width: 1100px) {
  .pc-mb0 {
    margin-bottom: 0 !important;
  }
  .pc-mb10 {
    margin-bottom: 1rem !important;
  }
  .pc-mb20 {
    margin-bottom: 2rem !important;
  }
  .pc-mb30 {
    margin-bottom: 3rem !important;
  }
  .pc-mb40 {
    margin-bottom: 4rem !important;
  }
  .pc-mb50 {
    margin-bottom: 5rem !important;
  }
  .pc-mb60 {
    margin-bottom: 6rem !important;
  }
  .pc-mb70 {
    margin-bottom: 7rem !important;
  }
  .pc-mb80 {
    margin-bottom: 8rem !important;
  }
  .pc-mb90 {
    margin-bottom: 9rem !important;
  }
  .pc-mb100 {
    margin-bottom: 10rem !important;
  }
}
/* letter-spacing */
.ls10 {
  letter-spacing: 0.01em !important;
}

.ls20 {
  letter-spacing: 0.02em !important;
}

.ls30 {
  letter-spacing: 0.03em !important;
}

.ls40 {
  letter-spacing: 0.04em !important;
}

.ls50 {
  letter-spacing: 0.05em !important;
}

.ls60 {
  letter-spacing: 0.06em !important;
}

.ls70 {
  letter-spacing: 0.07em !important;
}

.ls80 {
  letter-spacing: 0.08em !important;
}

.ls90 {
  letter-spacing: 0.09em !important;
}

.ls100 {
  letter-spacing: 0.1em !important;
}

.ls110 {
  letter-spacing: 0.11em !important;
}

.ls120 {
  letter-spacing: 0.12em !important;
}

.ls130 {
  letter-spacing: 0.13em !important;
}

.ls140 {
  letter-spacing: 0.14em !important;
}

.ls150 {
  letter-spacing: 0.15em !important;
}

.ls160 {
  letter-spacing: 0.16em !important;
}

.ls170 {
  letter-spacing: 0.17em !important;
}

.ls180 {
  letter-spacing: 0.18em !important;
}

.ls190 {
  letter-spacing: 0.19em !important;
}

.ls200 {
  letter-spacing: 0.2em !important;
}

/* line-height */
.lh10 {
  line-height: 1 !important;
}

.lh11 {
  line-height: 1.1 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh13 {
  line-height: 1.3 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh15 {
  line-height: 1.5 !important;
}

.lh16 {
  line-height: 1.6 !important;
}

.lh17 {
  line-height: 1.7 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh19 {
  line-height: 1.9 !important;
}

.lh20 {
  line-height: 2 !important;
}

.mtnone {
  margin-top: 0 !important !important;
}