@charset "UTF-8";
:root {
  --main-color: #E95504;
  --color-black: #333;
  --color-white: #fff;
  --color-base: #F8F6F2;
  --color-gray: #858585;
  --base-font-family: "Zen Maru Gothic", serif;
  --system-font-family: "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --grid-gap: 40px;
  --grid-columns: 12;
  --inner-padding: 32px;
}

html {
  font-size: 4.1025641026vw;
}
@media screen and (max-width: 390px) {
  html {
    font-size: clamp(0.75rem, -0.0833333333rem + 4.4444444444vw, 1rem);
  }
}
@media (min-width: 769px) {
  html {
    font-size: 0.9259259259vw;
  }
}

main {
  flex: 1;
}

.main--article {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .l-inner {
    grid-column: 2/12;
  }
}

.l-topics {
  padding: 3.125rem 0;
  background: var(--color-base);
  position: relative;
  z-index: 1;
}

.l-topics__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-topics__inner {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: 0 var(--grid-gap);
  }
}

.l-interview {
  padding: 5rem 0 8.1875rem;
  background: var(--color-white);
  border-radius: 3rem;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .l-interview {
    padding: 5rem 0 3.125rem;
  }
}

.l-interview__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-interview__inner {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: 0 var(--grid-gap);
  }
}

.l-special {
  margin-top: 2rem;
  background: #0E0E0E;
  border-radius: 3rem;
  overflow: hidden;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.l-special__inner {
  position: relative;
  padding: 0 var(--inner-padding);
}
@media screen and (min-width: 768px) {
  .l-special__inner {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: 0 var(--grid-gap);
  }
}

.l-support {
  margin-top: 2rem;
  background: var(--color-white);
  border-radius: 2.5rem;
  overflow: hidden;
  padding: 5rem 0;
  position: relative;
}

.l-support__inner {
  position: relative;
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-support__inner {
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    display: grid;
    gap: 0 var(--grid-gap);
  }
}

.l-introduction {
  margin-top: 2rem;
}

.l-article__wrap {
  padding: 40px 0 50px;
  background: var(--color-white);
  border-radius: 2.5rem;
  overflow: hidden;
  height: 100%;
  flex: 1;
  margin-bottom: 2rem;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-article__wrap {
    display: grid;
    border-radius: 3rem;
    grid-template-columns: minmax(80px, 1fr) minmax(0, 800px) minmax(80px, 1fr);
  }
}

.l-article__inner {
  padding: 0 var(--inner-padding);
  max-width: calc(800px + 2 * var(--inner-padding));
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-article__inner {
    padding: 0;
    max-width: 800px;
  }
}

html {
  scroll-behavior: revert;
}

.c-button * {
  pointer-events: none;
}

.c-sectionTitle {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.c-sectionTitle h2 {
  font-weight: 900;
  font-size: 2.375rem;
  line-height: 1;
}

.p-header__logo-group {
  flex-direction: column;
  gap: 0.375rem;
  align-items: flex-start;
}

.p-header__logo {
  width: 8.375rem;
}

.p-nav__anchor {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-read__headline {
    margin-left: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-read__headline.hide {
    opacity: 0;
  }
}

.p-topics__headline {
  padding: 0 var(--inner-padding);
}
@media screen and (min-width: 768px) {
  .p-topics__headline {
    padding: 0;
  }
}

.p-topics__contents {
  margin-top: 2.5rem;
  grid-column: 1/13;
}

.p-topics__item {
  display: flex;
  width: max-content;
  margin: 0 calc((100% - var(--inner-padding) * (var(--grid-columns) - 1)) / var(--grid-columns) + var(--inner-padding));
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-topics__item {
    margin: 0 calc((100% - var(--grid-gap) * (var(--grid-columns) - 1)) / var(--grid-columns) + var(--grid-gap));
    gap: 2.5rem;
  }
}

.p-topics__item-anchor {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-topics__item-anchor {
    width: 20rem;
  }
}

.p-topics__item-thumb {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.p-topics__item-thumb img {
  width: 100%;
  aspect-ratio: 32/20;
}

.p-topics__item-details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.p-topict__item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-topict__item-meta * {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--main-color);
}

.p-topics__item-title {
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-topics__item-content {
  font-weight: 400;
  font-size: 0.9375rem;
  font-family: var(--system-font-family);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
  line-height: 2.2;
}

.p-interview__headline {
  padding: 0 var(--inner-padding);
}
@media screen and (min-width: 768px) {
  .p-interview__headline {
    padding: 0;
  }
}

.p-interview__contents {
  margin-top: 2.5rem;
  grid-column: 1/13;
}

.p-interview__item-wrap {
  overflow-x: scroll;
}

.p-interview__item {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  margin: 0 calc((100% - var(--inner-padding) * (var(--grid-columns) - 1)) / var(--grid-columns) + var(--inner-padding));
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-interview__item {
    margin: 0 calc((100% - var(--grid-gap) * (var(--grid-columns) - 1)) / var(--grid-columns) + var(--grid-gap));
  }
}

.p-interview__item-anchor {
  width: 17.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-interview__item-anchor {
    width: 21.4375rem;
  }
}
.p-interview__item-anchor:nth-of-type(2n) {
  margin-top: 3rem;
}

.p-interview__item-thumb {
  border-radius: 1rem;
  overflow: hidden;
}
.p-interview__item-thumb img {
  width: 100%;
  aspect-ratio: 343/440;
}

.p-interview__item-details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.p-interview__item-details > * {
  width: 100%;
}

.p-topict__item-category {
  color: var(--main-color);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.p-interview__item-title {
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-interview__item-content {
  font-weight: 400;
  font-size: 0.9375rem;
  font-family: var(--system-font-family);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-special__title {
  color: var(--color-white);
}

.p-special__contents {
  margin-top: 2.5rem;
  grid-column: 2/12;
}

.p-special__item {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  aspect-ratio: 33/48;
}
@media screen and (min-width: 768px) {
  .p-special__item {
    aspect-ratio: 1194/300;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2.5rem 3rem;
  }
}
.p-special__item:nth-of-type(n+2) {
  margin-top: 2.5rem;
}

.p-special__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-special__item-img img {
  width: 100%;
  height: 100%;
}

.p-special__item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-special__item-category, .p-special__item-time {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: var(--color-white);
}

.p-special__item-title {
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--system-font-family);
  font-size: 1.4375rem;
  line-height: 1.5217391304;
  margin-top: 0.375rem;
}

.p-special__item-btn {
  transition: background 0.3s ease;
  margin-top: 0.625rem;
  border-radius: calc(infinity * 1px);
  background: linear-gradient(90deg, #E95504 10%, #F5AA00 100%);
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.22);
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--system-font-family);
  font-weight: 600;
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: capitalize;
}
.p-special__item-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.625rem;
  background: var(--color-white);
  aspect-ratio: 1/1;
  width: 2.75rem;
}
.p-special__item-btn span svg {
  width: 1.5rem;
  height: auto;
}

@media (any-hover: hover) {
  .p-special__item-btn:hover {
    background: linear-gradient(90deg, #F5AA00 0%, #E95504 90%);
  }
}
.p-special__modal {
  padding: 2.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.84);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

/* モーダルの初期状態 */
.p-special__modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  pointer-events: none;
}

/* モーダル表示時 */
.p-special__modal.is-active {
  visibility: visible;
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.p-special__modal-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-special__modal-movie {
  width: 100%;
  max-width: 960px;
}

.p-special__modal-close {
  position: absolute;
  left: 2rem;
  top: 2.5rem;
  border-radius: calc(infinity * 1px);
  background: var(--color-white);
  aspect-ratio: 1/1;
  border: 2px solid #F8F6F1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
}
@media screen and (min-width: 768px) {
  .p-special__modal-close {
    width: 3rem;
    left: 5rem;
    top: 10.3125rem;
  }
}
.p-special__modal-close svg {
  width: 24px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-special__modal-close svg {
    width: 1.5rem;
  }
}

.p-support__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.p-support__logo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-support__logo {
    width: 23.375rem;
  }
}
.p-support__logo img {
  width: 100%;
}

.p-support__read {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-support__read {
    font-size: 1.75rem;
  }
}
.p-support__read br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-support__read br {
    display: revert;
  }
}

.p-support__title {
  margin-top: 3rem;
  text-align: center;
  font-weight: 900;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 768px) {
  .p-support__title {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.p-support__list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-support__list {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .p-support__list-item {
    padding: 1.25rem 0;
  }
}
.p-support__list-item img {
  width: 100%;
}

.p-support__btn-wrap {
  grid-row: revert;
  margin-top: 2.5rem;
}

.p-article__thumb {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 8/5;
}
.p-article__thumb img {
  width: 100%;
  height: 100%;
}

.p-article__headline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.p-article__time, .p-article__category {
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.4285714286;
  font-size: 14px;
}

.p-article__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-article__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-article__title {
  font-weight: 900;
  font-size: 24px;
}

.p-article__read {
  font-weight: 400;
  font-family: var(--system-font-family);
  line-height: 2;
  letter-spacing: 0.02em;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-article__read {
    font-size: 18px;
  }
}

.p-article__content h2, .p-article__content h3, .p-article__content h4, .p-article__content h5, .p-article__content h6 {
  margin-top: 24px;
  font-weight: 900;
  font-size: 20px;
}
.p-article__content:where(*) {
  font-weight: 400;
  font-family: var(--system-font-family);
  line-height: 2;
  letter-spacing: 0.02em;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-article__content:where(*) {
    font-size: 18px;
  }
}
.p-article__content p, .p-article__content ul, .p-article__content ol, .p-article__content table {
  margin-top: 1rem;
}
.p-article__content ul {
  list-style: disc;
  padding-left: 1.5em;
}
.p-article__content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.p-article__content a {
  display: inline;
  word-break: break-all;
  text-decoration: underline;
  color: var(--main-color);
}
@media (any-hover: hover) {
  .p-article__content a {
    transition: 0.3s ease;
  }
  .p-article__content a:hover {
    opacity: 0.7;
  }
}
.p-article__content table {
  width: 100%;
  border-collapse: collapse;
}
.p-article__content table tr {
  border-bottom: 1px solid #E0E2E4;
}
.p-article__content table th {
  background-color: #F2F5F9;
}
.p-article__content table th, .p-article__content table td {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-article__content table th, .p-article__content table td {
    display: table-cell;
    padding: 8px 4px;
  }
}

.p-article__back-btn-wrap {
  padding: 0 1rem;
}

.p-article__back-btn {
  width: 48px;
  height: fit-content;
  aspect-ratio: 1/1;
  border-radius: calc(infinity * 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #F8F6F1;
  background: var(--color-white);
  margin-left: var(--inner-padding);
}
@media screen and (min-width: 768px) {
  .p-article__back-btn {
    margin-left: auto;
    margin-right: clamp(0%, 13.3333333333vw, 192px);
  }
}

/*# sourceMappingURL=style.ver2.0.css.map */
