@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap';
:root {
  --color-primitive-red: #ff0000;
  --color-primitive-yellow: #ffff00;
  --color-primitive-yellow2: #fbf9da;
  --color-primitive-black: #000;
  --color-primitive-gray-55: #555;
  --color-primitive-gray-88: #888;
  --color-primitive-gray-aa: #aaa;
  --color-primitive-gray-cc: #ccc;
  --color-primitive-gray-ee: #eee;
  --color-primitive-gray-f6: #f6f6f6;
  --color-primitive-white: #fff;
  --color-icon-black: var(--color-primitive-black);
  --color-icon-gray-55: var(--color-primitive-gray-55);
  --color-icon-gray-aa: var(--color-primitive-gray-aa);
  --color-icon-white: var(--color-primitive-white);
  --color-icon-red: var(--color-primitive-red);
  --color-text-black: var(--color-primitive-black);
  --color-text-gray-55: var(--color-primitive-gray-55);
  --color-text-gray-cc: var(--color-primitive-gray-cc);
  --color-text-white: var(--color-primitive-white);
  --color-text-placeholder: var(--color-primitive-gray-aa);
  --color-text-red: var(--color-primitive-red);
  --color-button-black: var(--color-primitive-black);
  --color-button-white: var(--color-primitive-white);
  --color-button-red: var(--color-primitive-red);
  --color-button-inactive: #ccc;
  --color-button-hover-yellow: #fffed1;
  --color-background-bg-yellow: var(--color-primitive-yellow2);
  --color-background-bg-white: var(--color-primitive-white);
  --color-background-bg-gray-f6: var(--color-primitive-gray-f6);
  --color-background-bg-gray-ee: var(--color-primitive-gray-ee);
  --color-background-bg-footer: var(--color-primitive-gray-55);
  --color-background-bg-black: var(--color-primitive-black);
  --color-background-bg-header: var(--color-primitive-yellow);
  --color-line-gray-ee: var(--color-primitive-gray-ee);
  --color-line-gray-aa: var(--color-primitive-gray-aa);
  --color-line-gray-cc: var(--color-primitive-gray-cc);
  --color-line-white: var(--color-primitive-white);
  --color-line-red: var(--color-primitive-red);
  --color-line-gray-88: var(--color-primitive-gray-88);
  --color-line-yellow: var(--color-primitive-yellow);
}
:root {
  --header-head-height-pc: 68px;
  --header-head-height-sp: 48px;
  --header-global-nav-height-pc: 68px;
  --header-sub-nav-height-pc: 48px;
  --header-height: calc(
    var(--header-head-height-pc) + var(--header-global-nav-height-pc)
  );
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: 1.5;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}
body {
  font-family: Roboto, Noto Sans JP, sans-serif;
  color: var(--color-text-black);
  background: var(--color-background-bg-white);
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  word-break: break-all;
}
input,
textarea,
select {
  font-family: inherit;
}
.l-footer {
  background-color: var(--color-background-bg-footer);
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding-inline: 0;
    padding-top: 32px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 1128px;
    gap: 32px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__row01 {
    display: flex;
    align-items: stretch;
  }
}
.l-footer__item01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 32px 24px 24px;
}
@media screen and (min-width: 1024px) {
  .l-footer__item01 {
    gap: 24px;
    padding: 0 24px;
    flex: 1;
  }
}
.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-left: 0;
  margin-block: 0;
}
.l-footer__sns-item {
  list-style-type: none;
}
.l-footer__sns-link {
  color: #fff;
  display: block;
  line-height: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__sns-link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__sns-link:hover {
    opacity: 0.7;
  }
}
.l-footer__login-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-text-black);
  background-color: var(--color-button-white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 240px;
  height: 40px;
  border-radius: 32px;
}
@media screen and (min-width: 1024px) {
  .l-footer__login-link {
    transition: background-color 0.5s;
    width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__login-link:hover {
    background-color: var(--color-button-hover-yellow);
  }
}
.l-footer__item02 {
  border-top: 1px solid var(--color-line-gray-88);
  padding-block: 16px;
}
@media screen and (min-width: 1024px) {
  .l-footer__item02 {
    border-top: none;
    border-left: 1px solid var(--color-line-gray-88);
    padding: 0 32px;
    width: 288px;
  }
}
.l-footer__countries {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.l-footer__countries-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-cc);
}
.l-footer__links01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__links01 {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }
}
.l-footer__links01-item {
  list-style-type: none;
}
.l-footer__links01-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-white);
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-footer__links01-link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__links01-link:hover {
    opacity: 0.7;
  }
}
.l-footer__links02 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__links02 {
    gap: 8px;
  }
}
.l-footer__links02-item {
  list-style-type: none;
}
.l-footer__links02-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-white);
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-footer__links02-link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__links02-link:hover {
    opacity: 0.7;
  }
}
.l-footer__links02-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__links02-sub {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }
}
.l-footer__links02-sub-item {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style-type: none;
}
.l-footer__links02-sub-icon {
  color: var(--color-icon-gray-aa);
  line-height: 0;
}
.l-footer__links02-sub-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-white);
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-footer__links02-sub-link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__links02-sub-link:hover {
    opacity: 0.7;
  }
}
.l-footer__item03 {
  border-top: 1px solid var(--color-line-gray-88);
  padding-block: 16px;
}
@media screen and (min-width: 1024px) {
  .l-footer__item03 {
    border-top: none;
    border-left: 1px solid var(--color-line-gray-88);
    padding: 0 32px;
    width: 215px;
  }
}
.l-footer__links03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__links03 {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }
}
.l-footer__links03-item {
  list-style-type: none;
}
.l-footer__links03-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-white);
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .l-footer__links03-link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__links03-link:hover {
    opacity: 0.7;
  }
}
.l-footer__links03-icon {
  color: var(--color-icon-gray-aa);
  line-height: 0;
}
.l-footer__row02 {
  border-top: 1px solid var(--color-line-gray-88);
  padding-block: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .l-footer__row02 {
    padding-block: 32px;
  }
}
.l-footer__service {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .l-footer__service {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }
}
.l-footer__service-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-cc);
}
.l-footer__links04 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__links04 {
    display: flex;
    grid-template-columns: none;
    gap: 32px;
    align-items: center;
  }
}
.l-footer__links04-item {
  list-style-type: none;
}
.l-footer__links04-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-white);
  text-decoration: none;
}
.l-footer__links04-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-white);
}
.l-footer__links04-icon {
  color: var(--color-icon-gray-aa);
  line-height: 0;
}
.l-footer__copyright {
  text-align: center;
}
.l-footer__copyright-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-cc);
}
.l-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-head-height-sp);
  padding-left: 16px;
  background-color: var(--color-background-bg-header);
  position: fixed;
  top: 0;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .l-header {
    height: var(--header-head-height-pc);
    padding: 0 76px;
  }
}
.l-header.hidden {
  transition: 0.4s;
  transform: translateY(calc(-1 * var(--header-head-height-sp)));
}
@media screen and (min-width: 1024px) {
  .l-header.hidden {
    transform: translateY(calc(-1 * var(--header-head-height-pc)));
  }
}
.l-header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-header__logo-image {
  height: 40px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo-image {
    height: 50px;
  }
}
.l-header__search-area {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__search-area {
    width: 640px;
    height: 28px;
    background-color: var(--color-background-bg-white);
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.l-header__search-button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
  touch-action: manipulation;
}
.l-header__search-button:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
@media screen and (min-width: 1024px) {
  .l-header__search-button {
    display: none;
  }
}
.l-header__hamburger-button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  background-color: var(--color-line-red);
  touch-action: manipulation;
}
.l-header__hamburger-button:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
@media screen and (min-width: 1024px) {
  .l-header__hamburger-button {
    display: none;
  }
}
.l-header__hamburger-icon {
  display: block;
  width: 22px;
  height: 2.8px;
  background-color: var(--color-icon-white);
  border-radius: 12px;
  position: relative;
}
.l-header__hamburger-icon:before,
.l-header__hamburger-icon:after {
  content: '';
  display: block;
  width: 22px;
  height: 2.8px;
  background-color: var(--color-icon-white);
  border-radius: 12px;
  position: absolute;
  transition: 0.3s;
}
.l-header__hamburger-icon:before {
  top: -6px;
}
.l-header__hamburger-icon:after {
  bottom: -6px;
}
.l-header__hamburger-icon.active {
  background-color: transparent;
  transition: 0.3s;
}
.l-header__hamburger-icon.active:before {
  top: 0;
  transform: rotate(45deg);
}
.l-header__hamburger-icon.active:after {
  bottom: 0;
  transform: rotate(-45deg);
}
.l-glonav {
  overflow: scroll;
  position: fixed;
  top: var(--header-head-height-sp);
  width: 100%;
  height: 0;
  visibility: hidden;
  background-color: var(--color-background-bg-white);
  transition: 0.3s;
  z-index: 2000;
}
.l-glonav.is-opened {
  height: 100%;
  visibility: visible;
}
.l-glonav::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-glonav {
    display: none;
  }
}
.l-glonav__inner {
  width: 100%;
  height: 0;
  visibility: hidden;
}
.l-glonav.is-opened .l-glonav__inner {
  height: auto;
  overflow: scroll;
  visibility: visible;
}
.l-glonav__inner::-webkit-scrollbar {
  display: none;
}
.l-glonav__details {
  width: 100%;
}
.l-glonav__summary {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid var(--color-line-gray-ee);
  padding: 16px;
  cursor: pointer;
}
.l-glonav__summary::-webkit-details-marker {
  display: none;
}
.l-glonav__summary:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-size: contain;
}
.l-glonav__summary--link {
  color: var(--color-icon-black);
  text-decoration: none;
}
.l-glonav__icon {
  margin-left: auto;
  height: 24px;
  transition: transform 0.4s;
  transform: rotate(90deg);
}
.l-glonav__details.is-opened .l-glonav__icon {
  transform: rotate(270deg);
}
.l-glonav__summary:before {
  background-image: url(../../assets/img/icon_pictograph_area01.svg);
}
.l-glonav__top-page-item:nth-child(1) .l-glonav__summary--link:before {
  background-image: url(../../assets/img/icon_pictograph_magazine01.svg);
}
.l-glonav__top-page-item:nth-child(2) .l-glonav__summary--link:before {
  background-image: url(../../assets/img/icon_pictograph_blog01.svg);
}
.l-glonav__top-page-item:nth-child(3) .l-glonav__summary--link:before {
  background-image: url(../../assets/img/icon_pictograph_guidebook01.svg);
}
.l-glonav__content {
  overflow: hidden;
}
.l-glonav__list {
  display: grid;
  align-items: center;
  grid-column-gap: 12px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: auto;
  margin: 0;
  background-color: var(--color-background-bg-yellow);
  padding: 12px 32px;
}
.l-glonav__item {
  list-style: none;
}
.l-glonav__link {
  width: 100%;
  color: var(--color-text-black);
  text-decoration: none;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0;
}
.l-glonav__page-list {
  margin: 0;
  padding: 0;
}
.l-glonav__top-page-item {
  list-style: none;
}
.l-glonav__page-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-top: 1px solid var(--color-line-gray-ee);
}
.l-glonav__page:last-child .l-glonav__page-link {
  border-bottom: 1px solid var(--color-line-gray-ee);
}
.l-glonav__footer {
  width: 100%;
  background-color: var(--color-background-bg-gray-f6);
}
.l-glonav__footer-inner {
  width: 100%;
  height: 100%;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}
.l-glonav__login-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  display: inline-block;
  width: 160px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 24px;
  color: var(--color-text-white);
  background-color: var(--color-background-bg-black);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-glonav__login-link:hover {
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
.l-glonav__sns {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.l-glonav__sns-item {
  display: flex;
  align-items: center;
  list-style: none;
}
.l-glonav__sns-link {
  display: inline-block;
}
.l-glonav__sns-link--x {
  color: #000;
  line-height: 0;
}
.l-glonav-list {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-glonav-list {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    background-color: var(--color-background-bg-white);
    display: block;
    position: fixed;
    top: var(--header-global-nav-height-pc);
    left: 0;
    z-index: 2000;
  }
  .l-glonav-list.hidden {
    transition: 0.5s;
    transform: translateY(calc(-1 * var(--header-height)));
  }
  .l-glonav-list__main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .l-glonav-list__main-list {
    width: 968px;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .l-glonav-list__main-item {
    flex: 1;
  }
  .l-glonav-list__main-link,
  .l-glonav-list__main-text {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-text-black);
    text-decoration: none;
    width: 100%;
    height: var(--header-global-nav-height-pc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .l-glonav-list__main-link:hover,
  .l-glonav-list__main-text:hover {
    transition: 0.5s;
    background-color: rgba(255, 255, 0, 0.2);
  }
  .l-glonav-list__main-item > .l-glonav-list__main-link:before,
  .l-glonav-list__main-text:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .l-glonav-list__main-item:nth-of-type(1) > .l-glonav-list__main-text:before {
    background-image: url(../../assets/img/icon_pictograph_area01.svg);
  }
  .l-glonav-list__main-item:nth-of-type(2) > .l-glonav-list__main-link:before {
    background-image: url(../../assets/img/icon_pictograph_magazine01.svg);
  }
  .l-glonav-list__main-item:nth-of-type(3) > .l-glonav-list__main-link:before {
    background-image: url(../../assets/img/icon_pictograph_blog01.svg);
  }
  .l-glonav-list__main-item:nth-of-type(4) > .l-glonav-list__main-link:before {
    background-image: url(../../assets/img/icon_pictograph_guidebook01.svg);
  }
  .l-glonav-list__login-link {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    display: inline-block;
    min-width: 160px;
    height: 36px;
    margin-left: 8px;
    line-height: 36px;
    text-align: center;
    border-radius: 24px;
    color: var(--color-text-white);
    background-color: var(--color-background-bg-black);
    text-decoration: none;
  }
  .l-glonav-list__login-link:hover {
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .l-glonav-list__sub {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 0;
    background: var(--color-background-bg-yellow);
    visibility: hidden;
  }
  .l-glonav-list__sub.is-open {
    height: var(--header-sub-nav-height-pc);
    padding-top: 4px;
    padding-bottom: 2px;
    visibility: visible;
    transition: 0.3s;
  }
  .l-glonav-list__sub-list {
    display: flex;
    justify-content: left;
    width: 1180px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .l-glonav-list__sub-item {
    box-sizing: none;
  }
  .l-glonav-list__sub-link {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.5;
    box-sizing: none;
    display: inline-block;
    text-decoration: none;
    color: var(--color-text-black);
    padding: 12px 16px;
  }
  .l-glonav-list__sub-link:hover {
    transition: 0.5s;
    color: var(--color-text-red);
    background-color: var(--color-background-bg-white);
  }
}
@media screen and (min-width: 1024px) {
  .is-current {
    border-bottom: 2px solid var(--color-line-red);
  }
}
.visually-hidden {
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media screen and (min-width: 1024px) {
  .l-grid {
    padding-inline: 16px;
  }
}
.l-grid__inner {
  max-width: 1128px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .l-grid__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}
.l-grid__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.l-grid__sub {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .l-page {
    padding-inline: 16px;
  }
}
.l-page__inner {
  max-width: 1128px;
  margin-inline: auto;
}
.l-post,
.l-post__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.l-post__body #ez-toc-container {
  background: var(--color-background-bg-yellow);
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-block: 48px;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .l-post__body #ez-toc-container {
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.l-post__body #ez-toc-container:first-child {
  margin-top: 0;
}
.l-post__body #ez-toc-container nav {
  padding: 8px 16px;
  margin-block: 0;
  background-color: var(--color-background-bg-white);
}
.l-post__body #ez-toc-container nav ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-left: 0;
}
.l-post__body #ez-toc-container nav li {
  list-style-type: none;
  padding-left: 1em;
  text-indent: -1em;
}
.l-post__body #ez-toc-container nav li:before {
  content: '\30fb';
}
.l-post__body #ez-toc-container nav a {
  color: var(--color-text-black);
  text-decoration: none;
  display: inline;
}
.l-post__body #ez-toc-container nav a:before {
  content: none;
}
.l-post__body #ez-toc-container nav > ul {
  padding-left: 0;
}
.l-post__body #ez-toc-container nav > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: calc(1em + 4px);
  text-indent: calc(-1em - 4px);
}
@media screen and (min-width: 768px) {
  .l-post__body #ez-toc-container nav > ul > li {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.l-post__body #ez-toc-container nav > ul > li:before {
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .l-post__body #ez-toc-container nav > ul > li:before {
    margin-right: 0;
  }
}
.l-post__body #ez-toc-container nav > ul > li > ul {
  margin-top: 8px;
  padding-left: 0;
}
.l-post__body #ez-toc-container nav > ul > li > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.l-post__body #ez-toc-container nav > ul > li > ul > li > ul {
  margin-top: 8px;
  padding-left: 0;
}
.l-post__body #ez-toc-container nav > ul > li > ul > li > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.l-post__body .ez-toc-title-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.l-post__body .ez-toc-title-toggle {
  display: none;
}
.l-post__body #ez-toc-container .ez-toc-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
.l-post__body > :first-child {
  margin-top: 0;
}
.l-post__body > :last-child {
  margin-bottom: 0;
}
.l-post__pager {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}
.l-post__pager .post-page-numbers {
  min-width: 24px;
  height: 24px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: Roboto, sans-serif;
  border-radius: 24px;
  border: 1px solid var(--color-button-black);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2px 6px;
  background-color: var(--color-background-bg-white);
  color: var(--color-text-black);
}
.l-post__pager .post-page-numbers.current {
  background-color: var(--color-background-bg-black);
  color: var(--color-text-white);
}
.l-post__pager .post-page-numbers:not(.current) {
  transition: opacity 0.5s;
}
.l-post__pager .post-page-numbers:not(.current):hover {
  opacity: 0.7;
}
.l-post__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.l-wrapper {
  padding-top: 48px;
}
@media screen and (min-width: 1024px) {
  .l-wrapper {
    padding-top: var(--header-height);
  }
}
.l-page-top {
  padding: 16px;
  display: flex;
  justify-content: center;
  position: sticky;
  bottom: 0;
  z-index: 999;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-page-top {
    padding-block: 24px;
  }
}
.l-page-top__inner {
  max-width: 1128px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.l-page-top__link {
  position: relative;
  color: var(--color-text-black);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  background-color: var(--color-icon-white);
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-page-top__link {
    transition: 0.5s;
    width: 96px;
    height: 96px;
  }
}
.l-page-top__link:after {
  content: '';
  position: absolute;
  border: 2px solid var(--color-button-red);
  border-radius: 50%;
  inset: 0;
}
@media screen and (min-width: 768px) {
  .l-page-top__link:hover {
    background-color: var(--color-button-hover-yellow);
  }
}
.is-visible .l-page-top__link {
  opacity: 1;
  pointer-events: auto;
}
.l-page-top__icon {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .l-page-top__icon {
    top: 4px;
  }
}
.l-page-top__image {
  position: absolute;
  top: 24px;
  left: 50%;
  margin-left: -14px;
}
@media screen and (min-width: 768px) {
  .l-page-top__image {
    width: 32px;
    height: auto;
    top: 32px;
    margin-left: -16px;
  }
}
.l-page-top__text {
  position: absolute;
  bottom: 9px;
  width: 100%;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .l-page-top__text {
    bottom: 10px;
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.l-title-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.l-title-list__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.l-title-list__section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.l-title-list__page {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  margin: 0 16px;
}
@media screen and (min-width: 1024px) {
  .l-title-list__page {
    margin: 0;
  }
}
.l-title-list__pager {
  display: flex;
  justify-content: center;
}
.c-breadcrumb {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb {
    max-width: 1128px;
    min-width: 100px;
    width: 100%;
    margin: 0 auto;
  }
}
.c-breadcrumb__list {
  padding: 0 0 4px;
  display: flex;
  margin: 12px 16px;
  min-width: auto;
  overflow-x: auto;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: none;
}
.c-breadcrumb__list::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__list {
    margin: 12px 0;
  }
}
.c-breadcrumb__item {
  list-style: none;
  display: flex;
  align-items: center;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.c-breadcrumb__item:not(:last-child):after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 9px;
  background-image: url(../../assets/img/icon_breadcrumb_arrow01.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 4px;
}
.c-breadcrumb__link {
  color: var(--color-text-gray-55);
  text-decoration: none;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: calc(100vw - 200px);
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.c-breadcrumb__current {
  color: var(--color-text-gray-55);
  text-decoration: none;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__current {
    max-width: 400px;
  }
}
.l-search {
  display: none;
  height: 170px;
}
@starting-style {
  .l-search {
    height: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .l-search {
    z-index: 3000;
    display: block;
    height: auto;
  }
}
.l-search.is-open {
  display: block;
  position: absolute;
  top: 57px;
  left: 0;
  margin: 0 10px;
  width: calc(100% - 20px);
  background-color: var(--color-background-bg-gray-f6);
  border-radius: 8px;
  transition: height 0.3s;
}
@media screen and (min-width: 1024px) {
  .l-search.is-open {
    position: static;
    background-color: transparent;
    margin: 0;
  }
}
.l-search.is-open:after {
  content: '';
  position: absolute;
  top: -16px;
  right: 50px;
  transform: translate(-50%);
  border-width: 0 9px 16px 9px;
  border-style: solid;
  border-color: transparent transparent var(--color-background-bg-gray-f6)
    transparent;
}
.l-search__inner {
  overflow: hidden;
  height: 100%;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .l-search__inner {
    overflow: visible;
    padding: 0;
  }
}
.l-search__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  margin-bottom: 12px;
}
.l-search__header--sp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-search__header--sp {
    display: none;
  }
}
.l-search .gsc-control-cse {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.l-search .gsc-search-box {
  margin-bottom: 0;
}
.l-search .gsc-search-box > tbody > tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .l-search .gsc-search-box > tbody > tr {
    flex-direction: row;
    gap: 0;
  }
}
.l-search .gsc-input {
  padding-right: 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-search .gsc-input {
    width: 540px;
  }
}
.l-search .gsc-input-box {
  border: 1px solid var(--color-line-gray-aa);
  border-radius: 4px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .l-search .gsc-input-box {
    border: none;
    border-radius: 20px 0 0 20px;
  }
}
.l-search table.gsc-search-box td.gsc-input {
  padding-right: 0;
}
.l-search .gsib_a {
  padding: 8px 12px;
}
@media screen and (min-width: 1024px) {
  .l-search .gsib_a {
    padding: 4px 0 4px 16px;
  }
}
.l-search .gsc-search-button {
  width: auto;
  padding-left: 0;
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-search .gsc-search-button {
    background-color: var(--color-background-bg-white);
    border-radius: 0 20px 20px 0;
    padding: 4px;
  }
  .l-search .gsc-search-button:hover {
    cursor: pointer;
  }
}
.l-search .gsc-search-button .gsc-search-button-v2 {
  cursor: pointer;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-text-white);
  width: 155px;
  height: 40px;
  border: none;
  background-color: var(--color-button-red);
  padding: 4px 8px;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .l-search .gsc-search-button .gsc-search-button-v2 {
    width: 100px;
    height: 28px;
    border-radius: 0 20px 20px 0;
  }
}
.c-title-h1 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1 {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.c-title-h2 {
  position: relative;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  padding-bottom: 12px;
  color: var(--color-text-black);
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h2 {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
    padding-bottom: 12px;
  }
}
.c-title-h2:before,
.c-title-h2:after {
  position: absolute;
  content: '';
  height: 1px;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h2:before,
  .c-title-h2:after {
    height: 2px;
  }
}
.c-title-h2:before {
  width: 100%;
  background-color: #fff000;
}
.c-title-h2:after {
  width: 64px;
  background-color: var(--color-line-red);
}
.c-icon-title-h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-icon-title-h2 {
    gap: 12px;
  }
}
.c-icon-title-h2__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-icon-subtitle-container {
  display: grid;
  grid-template-columns: 48px auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-icon-subtitle-container {
    grid-template-columns: 64px auto;
    gap: 0;
  }
}
.c-icon-subtitle-container__icon {
  grid-column: 1;
}
@media screen and (min-width: 768px) {
  .c-icon-subtitle-container__icon {
    grid-row: span 2;
    grid-column: 1;
  }
}
.c-icon-subtitle-container__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-icon-subtitle-container__text {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
    grid-row: 1;
    grid-column: 2;
  }
}
.c-icon-subtitle-container__subtext {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  display: inline-block;
  width: 100%;
  grid-column: span 2;
}
@media screen and (min-width: 768px) {
  .c-icon-subtitle-container__subtext {
    grid-row: 2;
    grid-column: 2;
  }
}
.c-title-h3 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-tag {
  background-color: var(--color-background-bg-gray-f6);
  padding: 2px 5px;
  border-radius: 2px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1rem;
  color: var(--color-text-black);
  margin-block: 0;
}
.c-tag--large {
  padding: 4px 8px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  border-radius: 1px;
}
.c-tag--type2 {
  color: var(--color-text-white);
  background-color: var(--color-background-bg-black);
}
.c-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-block: 0;
  padding-left: 0;
}
.c-tag-list--large {
  gap: 8px;
}
.c-tag-list__item {
  list-style-type: none;
}
.c-tag-list__link {
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-tag-list__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-tag-list__link:hover {
    opacity: 0.7;
  }
}
.c-proviso {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  background-color: var(--color-background-bg-gray-ee);
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .c-proviso {
    padding: 32px;
  }
}
.c-proviso__section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-proviso__section {
    gap: 0;
  }
}
.c-proviso__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-proviso__title:before {
  content: '\3010';
}
.c-proviso__title:after {
  content: '\3011';
}
.c-proviso__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-proviso__link {
  color: var(--color-text-black);
}
.c-thumbnail__image {
  aspect-ratio: 375/221;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-thumbnail__image {
    aspect-ratio: 788/422;
  }
}
.c-thumbnail__figure {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-thumbnail__figcaption {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .c-thumbnail__figcaption {
    padding-inline: 0;
  }
}
.c-custom-block-images .c-thumbnail__figcaption {
  padding-inline: 0;
}
.c-thumbnail__copyright {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  text-align: right;
}

/* page-photo.php copyright text */
.c-photo-thumbnail__copyright {
  display: block;
  padding-top: 5px;
}

.c-thumbnail__caption {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-lead {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text-black);
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 16px;
}
@media screen and (min-width: 768px) {
  .c-lead {
    margin: 0;
  }
}
.c-sponsor-label {
  margin-block: 0;
}
.c-sponsor-label--type1 {
  color: var(--color-text-black);
}
.c-sponsor-label--type2 {
  color: var(--color-text-gray-55);
}
.c-sponsor-label--middle {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-sponsor-label--small {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1rem;
}
.c-date {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  display: flex;
}
.c-date--type1 {
  color: var(--color-text-gray-55);
}
.c-date--type2 {
  color: var(--color-text-black);
}
.c-date__headline:after {
  content: '\ff1a';
  display: inline;
}
.c-date-list {
  display: flex;
}
.c-date-list--type1 {
  flex-direction: row;
  gap: 16px;
}
.c-date-list--type2 {
  flex-direction: column;
}
.c-date-list--type3 {
  flex-direction: row;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .c-date-list--type3 {
    flex-direction: column;
    gap: 0;
  }
}
.c-side-section {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  background-color: var(--color-background-bg-gray-f6);
  border-radius: 8px;
}
.c-side-section__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-side-property {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  padding-left: 0;
  margin-block: 0;
}
@media screen and (min-width: 576px) {
  .c-side-property {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .c-side-property {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.c-side-property__item {
  list-style-type: none;
}
.c-side-property__link {
  display: block;
  line-height: 0;
}
.c-side-property__image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
.c-side-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-left: 0;
  margin-block: 0;
}
@media screen and (min-width: 576px) {
  .c-side-area {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .c-side-area {
    grid-template-columns: 1fr 1fr;
  }
}
.c-side-area__item {
  list-style-type: none;
}
.c-side-area__link {
  display: flex;
  align-items: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
  padding: 12px 8px;
  background-color: var(--color-background-bg-white);
  height: 100%;
  text-decoration: none;
  border-radius: 2px;
}
.c-side-country {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-side-country {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .c-side-country {
    grid-template-columns: 1fr;
  }
}
.c-side-country__item {
  list-style: none;
}
.c-side-country__link {
  width: 100%;
  height: 56px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-black);
  background-color: var(--color-background-bg-white);
  text-decoration: none;
  border-radius: 2px;
}
.c-side-country__image {
  width: 32px;
  height: 32px;
}
.c-side-guidebook {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-side-guidebook {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .c-side-guidebook {
    grid-template-columns: 1fr;
  }
}
.c-side-guidebook__item {
  list-style: none;
}
.c-side-guidebook__link {
  width: 100%;
  height: auto;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-black);
  background-color: var(--color-background-bg-white);
  text-decoration: none;
  border-radius: 2px;
}
.c-side-guidebook__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 4px;
}
.c-side-guidebook__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-side-guidebook__thumbnail {
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  border-radius: 2px;
  background-color: var(--color-background-bg-gray-ee);
}
.c-side-guidebook__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-side-special {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-side-special {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .c-side-special {
    grid-template-columns: 1fr;
  }
}
.c-side-special__item {
  list-style: none;
}
.c-side-special__link {
  width: 100%;
  height: auto;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-black);
  background-color: var(--color-background-bg-white);
  text-decoration: none;
  border-radius: 2px;
}
.c-side-special__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 4px;
}
.c-side-special__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-side-special__thumbnail {
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  border-radius: 2px;
  background-color: var(--color-background-bg-gray-ee);
}
.c-side-special__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.c-side-special__read-more-wrapper {
  text-align: right;
  margin-top: 17px;
}
.c-side-special__read-more {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  text-decoration: none;
  color: var(--color-text-black);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-side-special__read-more:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.c-side-special__read-more:after {
  content: '';
  display: inline-block;
  width: 6.95px;
  height: 11.9px;
  background-image: url(../../assets/img/icon_arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 13px;
}
.c-side-theme {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 4px;
  padding: 0;
}
.c-side-theme__item {
  list-style: none;
}
.c-side-theme__link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 84px;
  background-color: var(--color-background-bg-white);
  text-align: center;
  text-decoration: none;
  color: var(--color-text-black);
  border-radius: 4px;
  padding: 8px;
  word-break: keep-all;
}
@media screen and (min-width: 1024px) {
  .c-side-theme__link {
    max-width: 88px;
  }
}
.c-side-theme__link:before,
.c-side-theme__link--more:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  background-repeat: no-repeat;
}
.c-side-theme__link--wrap {
  white-space: nowrap;
}
.c-side-theme__link-text {
  display: inline;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .c-side-theme__link-text {
    display: block;
  }
}
.c-side-theme__item--gourmet .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_gourmet01.svg);
}
.c-side-theme__item--art .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_art01.svg);
}
.c-side-theme__item--hotel .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_hotel01.svg);
}
.c-side-theme__item--event .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_event01.svg);
}
.c-side-theme__item--heritage .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_heritage01.svg);
}
.c-side-theme__item--resort .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_resort01.svg);
}
.c-side-theme__item--activity .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_activity01.svg);
}
.c-side-theme__item--traffic .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_traffic01.svg);
}
.c-side-theme__item--shopping .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_shopping01.svg);
}
.c-side-theme__item--more .c-side-theme__link:before {
  background-image: url(../../assets/img/icon_more01.svg);
}
.c-side-theme__item--more {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-side-theme__item--more {
    display: block;
  }
}
.c-secondary-button {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--color-text-red);
  background-color: var(--color-background-bg-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  max-width: 100%;
  min-height: 40px;
  margin: 0 auto;
  padding: 4px 16px;
  border: 2px solid var(--color-button-red);
  border-radius: 32px;
}
@media screen and (min-width: 768px) {
  .c-secondary-button:hover {
    color: var(--color-text-red);
    background-color: var(--color-button-hover-yellow);
    transition: 0.5s;
  }
}
.c-secondary-button--large {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  min-width: 280px;
  min-height: 64px;
}
.c-cta-area {
  width: 100%;
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .c-cta-area {
    padding-inline: 0;
  }
}
.c-cta-area__content {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 32px 24px;
  background-color: var(--color-background-bg-white);
  border-radius: 8px;
  border: 2px solid var(--color-line-red);
}
@media screen and (min-width: 768px) {
  .c-cta-area__content {
    width: 100%;
    max-width: 788px;
    padding: 32px 24px 24px;
    height: auto;
  }
}
.c-cta-area__inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-cta-area__inner {
    width: 100%;
  }
}
.c-cta-area__main-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-text-red);
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-cta-area__main-text {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.c-cta-area__sub-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-cta-area__sub-text {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-cta-area__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0;
}
@media screen and (min-width: 768px) {
  .c-cta-area__items {
    margin: 32px 0 24px;
    flex-direction: row;
  }
}
.c-cta-area__item {
  width: 295px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--color-background-bg-gray-f6);
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-cta-area__item {
    width: 236px;
    height: 66px;
  }
}
.c-cta-area__item:before {
  content: '';
  width: 32px;
  height: 32px;
  margin: 0 8px;
  display: inline-block;
  background-image: url(../../assets/img/icon_cta-item01.svg);
}
.c-cta-area__item-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-cta-area__item-text {
    width: 127px;
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-cta-button {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--color-text-white);
  background-color: var(--color-button-red);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0 auto;
  width: 200px;
  height: 40px;
  border-radius: 32px;
}
@media screen and (min-width: 768px) {
  .c-cta-button:hover {
    background-color: rgba(255, 0, 0, 0.7);
    transition: 0.5s;
  }
}
.c-cta-sns-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .c-cta-sns-share {
    gap: 16px;
  }
}
.c-cta-sns-share__item {
  list-style-type: none;
}
.c-cta-sns-share__link {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-cta-sns-share__link {
    transition: opacity 0.5s;
  }
}
@media screen and (min-width: 768px) {
  .c-cta-sns-share__link:hover {
    opacity: 0.7;
  }
}
.c-cta-sns-share__link--x {
  color: #000;
  line-height: 0;
}
.c-cta-sns-share__image {
  width: 28px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-cta-sns-share__image {
    width: 24px;
  }
}
.c-main-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-main-section {
    gap: 16px;
  }
}
.c-main-section__header--type1 {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .c-main-section__header--type1 {
    padding-inline: 0;
  }
}
.c-main-section__header--type2 {
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .c-main-section__header--type2 {
    padding-inline: 0;
  }
}
.c-main-section__content {
  padding: 24px 16px;
  background-color: var(--color-background-bg-yellow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-main-section__content {
    gap: 32px;
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.c-main-sub-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-main-sub-section {
    gap: 16px;
  }
}
.c-main-sub-section__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-popular-area-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-background-bg-gray-f6);
  border-radius: 0;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .c-popular-area-section {
    gap: 24px;
    border-radius: 8px;
    padding: 32px 24px;
  }
}
.c-popular-area-section__header {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-popular-area-section__header {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.c-tokuhain-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-list {
    display: grid;
    flex-direction: row;
    gap: 24px 12px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-tokuhain-list__item {
  list-style-type: none;
}
.c-tokuhain-list__link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-list__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-tokuhain-list__link:hover {
    opacity: 0.7;
  }
}
.c-tokuhain-card {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-card {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.c-tokuhain-card__image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 120px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-card__image {
    aspect-ratio: 176/120;
    width: 100%;
    height: 120px;
  }
}
.c-tokuhain-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-card__content {
    padding: 12px;
    gap: 4px;
  }
}
.c-tokuhain-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-tokuhain-card__title {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.c-tokuhain-card__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-tokuhain-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 0;
}
.c-tokuhain-card__author-image {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.c-tokuhain-card__author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-tokuhain-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.c-tokuhain-item__image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  width: 80px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-item__image {
    width: auto;
  }
}
.c-tokuhain-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-tokuhain-item__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
  text-align: center;
}
.c-tokuhain-item__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  text-align: center;
}
.c-tokuhain-item-list {
  overflow-x: auto;
  margin-inline: -16px;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-item-list {
    overflow-x: visible;
    margin-inline: 0;
  }
}
.c-tokuhain-item-list__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-block: 0;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-item-list__inner {
    gap: 24px;
    margin-right: 0;
    padding-inline: 0;
  }
}
.c-tokuhain-item-list__item {
  list-style-type: none;
  min-width: 96px;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-item-list__item {
    min-width: auto;
  }
}
.c-tokuhain-item-list__link {
  display: block;
  color: var(--color-text-black);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-tokuhain-item-list__link {
    transition: opacity 0.5s;
  }
}
@media screen and (min-width: 768px) {
  .c-tokuhain-item-list__link:hover {
    opacity: 0.7;
  }
}
.c-magazine-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 8px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-magazine-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 12px;
  }
}
.c-magazine-list__item {
  list-style-type: none;
}
.c-magazine-list__link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-magazine-list__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-magazine-list__link:hover {
    opacity: 0.7;
  }
}
.c-magazine-card {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}
.c-magazine-card__image {
  aspect-ratio: 168/126;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-magazine-card__image {
    aspect-ratio: 176/132;
  }
}
.c-magazine-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
  gap: 4px;
}
.c-magazine-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: var(--color-text-black);
  margin-block: 0;
}
.c-magazine-card__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  margin-block: 0;
}
.c-magazine-card__sponsored {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1rem;
  color: var(--color-text-gray-55);
}
.c-guidebook-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-guidebook-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    align-items: flex-start;
  }
}
.c-guidebook-list__item {
  list-style-type: none;
  height: 100%;
}
.c-guidebook-list__link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-guidebook-list__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-guidebook-list__link:hover {
    opacity: 0.7;
  }
}
.c-guidebook-card {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}
.c-guidebook-card__thumbnail {
  background-color: var(--color-background-bg-gray-ee);
  padding: 8px;
  width: 120px;
}
.c-guidebook-card__image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  width: 104px;
  height: 104px;
}
.c-guidebook-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex: 1;
}
.c-guidebook-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.c-guidebook-card__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.c-guidebook-card__series {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-guidebook-card__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-guidebook-card-column {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  flex-direction: column;
}
.c-guidebook-card-column__thumbnail {
  padding: 18px;
}
.c-guidebook-card-column__image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  width: 236px;
  height: 236px;
}
.c-guidebook-card-column__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
}
.c-guidebook-card-column__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.c-guidebook-card-column__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.c-guidebook-card-column__series {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-guidebook-card-column__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-guidebook-card-column--sm .c-guidebook-card-column__thumbnail {
  padding: 12px;
}
.c-guidebook-card-column--sm .c-guidebook-card-column__image {
  width: 176px;
  height: 176px;
}
.c-areainfo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 8px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-areainfo-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 12px;
  }
}
.c-areainfo-list__item {
  list-style-type: none;
}
.c-areainfo-list__link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-areainfo-list__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-areainfo-list__link:hover {
    opacity: 0.7;
  }
}
.c-areainfo-card {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}
.c-areainfo-card__image {
  aspect-ratio: 168/126;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-areainfo-card__image {
    aspect-ratio: 176/132;
  }
}
.c-areainfo-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px 12px 12px;
  gap: 4px;
}
.c-areainfo-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: var(--color-text-black);
}
.c-author-list {
  display: grid;
  grid-template-columns: repeat(1, 100%);
  gap: 12px 8px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-author-list {
    gap: 24px 12px;
  }
}
.c-author-list__item {
  list-style-type: none;
  height: 100%;
}
.c-author-list__link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-author-list__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-author-list__link:hover {
    opacity: 0.7;
  }
}
.c-author__label {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  margin: 0;
}
.c-author__card {
  box-sizing: border-box;
  color: var(--color-text-black);
  text-decoration: none;
  display: flex;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--color-background-bg-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .c-author__card {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-author__card:hover {
    opacity: 0.7;
  }
}
.c-author__image {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
  aspect-ratio: 1/1;
}
.c-author__info {
  grid-column: span 1;
  margin-left: 16px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
}
.c-author__name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
}
.c-author__description {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin-bottom: 0;
}
.c-area-card {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}
.c-area-card__image {
  aspect-ratio: 240/180;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-area-card__image {
    aspect-ratio: 236/177;
  }
}
.c-area-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px 12px;
  gap: 4px;
}
.c-area-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-area-card__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-area-card__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: var(--color-text-gray-55);
}
.c-super-banner {
  display: flex;
  justify-content: center;
}
.c-super-banner--type2 {
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .c-super-banner--type2 {
    padding-inline: 0;
  }
}
.c-super-banner__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  width: 320px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-super-banner__list {
    width: 728px;
  }
}
.c-super-banner__title {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #707070;
}
.c-super-banner__content {
  width: 100%;
  height: 50px;
}
.c-super-banner__content.popin {
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-super-banner__content {
    height: 90px;
  }
}
.c-super-banner__content > div {
  width: 100%;
  height: 100%;
}
.c-super-banner__content iframe {
  width: 100% !important;
  height: 100% !important;
}
.c-popular-area-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-popular-area-list__item {
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .c-popular-area-list__item:hover {
    opacity: 0.7;
  }
}
.c-popular-area-list__link {
  text-decoration: none;
  color: unset;
}
.c-popular-area-card {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--color-background-bg-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.c-popular-area-card__image {
  width: 80px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .c-popular-area-card__image {
    width: 120px;
  }
}
.c-popular-area-card__content {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 4px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-popular-area-card__content {
    gap: 8px;
    padding: 8px 16px;
  }
}
.c-popular-area-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-popular-area-card__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.c-popular-area-card__description {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: var(--color-text-gray-55);
}
@media screen and (min-width: 768px) {
  .c-popular-area-card__description {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.c-slider {
  margin-inline: -16px;
  padding-inline: 16px;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .c-slider {
    position: relative;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
}
.c-slider__arrows {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-slider__arrows {
    display: block;
    z-index: 2;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -16px;
  }
}
@media screen and (min-width: 768px) {
  .is-not-enough .c-slider__arrows {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-slider__arrow--prev,
  .c-slider__arrow--next {
    position: absolute;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    line-height: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-icon-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    padding: 0;
  }
  .c-slider__arrow--prev:focus-visible,
  .c-slider__arrow--next:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
  }
}
@media screen and (min-width: 768px) {
  .c-slider__arrow--prev {
    transform: rotate(180deg);
    left: -16px;
  }
}
@media screen and (min-width: 768px) {
  .c-slider__arrow--next {
    right: -16px;
  }
}
.c-slider__slider {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-slider__slider {
    z-index: 1;
  }
}
.c-slider__slider :after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 16px;
  height: 1px;
  content: '';
}
@media screen and (min-width: 768px) {
  .c-slider__slider :after {
    display: none;
  }
}
.c-slider__slide-link {
  display: block;
  text-decoration: none;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-slider__slide-link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-slider__slide-link:hover {
    opacity: 0.7;
  }
}
.c-slider__track {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .c-slider__track {
    overflow: hidden;
  }
}
.splide.is-initialized:not(.is-active) .c-slider__list {
  display: flex;
  gap: 12px;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .splide.is-initialized:not(.is-active) .c-slider__list {
    display: block;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .splide.is-not-enough.is-initialized:not(.is-active) .c-slider__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.c-slider__slide {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .c-slider__slide {
    width: auto;
  }
}
.c-category-nav {
  width: 100%;
  background-color: var(--color-background-bg-header);
  border-radius: 0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-category-nav {
    border-radius: 8px;
    padding: 32px 24px;
    gap: 16px;
  }
}
.c-category-nav--type2 {
  background-image: url(../../assets/img/webmagazine/background_title01.png);
  background-size: 111px 92px;
  background-position: right top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-category-nav--type2 {
    background-size: 93px auto;
    display: flex;
  }
}
.c-category-nav__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-category-nav__inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .c-category-nav__title {
    width: 210px;
  }
}
.c-category-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-category-nav__list {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-category-nav--type2 .c-category-nav__list {
    padding-right: 69px;
  }
}
.c-category-nav__item--active .c-category-nav__link {
  background-color: var(--color-button-black);
  color: var(--color-text-white);
  border: none;
}
@media screen and (min-width: 768px) {
  .c-category-nav__item:hover:not(.c-category-nav__item--active)
    .c-category-nav__link {
    background-color: var(--color-background-bg-yellow);
    transition: 0.5s;
  }
}
.c-category-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--color-text-black);
  background-color: var(--color-background-bg-white);
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid var(--color-button-black);
  border-radius: 28px;
  padding: 0 12px;
}
.c-category-nav__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
}
.c-category-nav__filter-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
  white-space: nowrap;
}
.c-category-nav__filter-icon {
  width: 24px;
  height: 24px;
  color: #000;
}
.c-spot-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 12px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-spot-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
.c-spot-list__item {
  list-style-type: none;
  height: 100%;
}
.c-spot-list__link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-spot-list__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-spot-list__link:hover {
    opacity: 0.7;
  }
}
.c-spot-card {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}
.c-spot-card__image {
  aspect-ratio: 168/126;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-spot-card__image {
    aspect-ratio: 176/132;
  }
}
.c-spot-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
  gap: 4px;
}
.c-spot-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.c-spot-card__description {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: var(--color-text-gray-55);
}
.c-spot-card__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-spot-card__sponsored {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1rem;
}
.c-relation-article {
  display: flex;
  gap: 12px;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-relation-article {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-relation-article:hover {
    opacity: 0.7;
  }
}
.c-relation-article__image {
  aspect-ratio: 168/126;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  width: 96px;
}
@media screen and (min-width: 768px) {
  .c-relation-article__image {
    aspect-ratio: 176/132;
  }
}
.c-relation-article__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex: 1;
}
.c-relation-article__title,
.c-relation-article__date {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-accordion-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-block: 0;
  padding-left: 0;
}
.c-accordion-list__item {
  list-style-type: none;
}
.c-accordion {
  background-color: var(--color-background-bg-yellow);
}
.c-accordion__details {
  background-color: var(--color-background-bg-white);
}
.c-accordion__summary {
  display: block;
}
.c-accordion__summary::-webkit-details-marker {
  display: none;
}
.c-accordion__summary-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
.c-accordion__title {
  flex: 1;
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-accordion__title-icon {
  line-height: 0;
}
.c-accordion__title-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-accordion__icon {
  height: 24px;
  transition: transform 0.4s;
  transform: rotate(90deg);
}
.c-accordion__details.is-opened .c-accordion__icon {
  transform: rotate(270deg);
}
.c-accordion__content {
  overflow: hidden;
}
.c-accordion__content-inner {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.c-accordion__content-icon {
  line-height: 0;
  width: 40px;
}
.c-accordion__content-text {
  flex: 1;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  white-space: pre-wrap;
}
.c-sns-share {
  background-color: var(--color-primitive-gray-f6);
  padding-top: 8px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .c-sns-share {
    border-radius: 8px;
  }
}
.c-sns-share__main-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center;
}
.c-sns-share__items {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-sns-share__items {
    gap: 32px;
    margin-top: 16px;
  }
}
.c-sns-share__item {
  list-style: none;
}
@media screen and (min-width: 768px) {
  .c-sns-share__item:nth-child(2) {
    border-right: solid 1px var(--color-primitive-gray-aa);
    border-left: solid 1px var(--color-primitive-gray-aa);
    padding: 0 32px;
  }
  .c-sns-share__item:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.c-guidebook-summary-wrapper {
  background-color: var(--color-background-bg-yellow);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-guidebook-summary-wrapper {
    padding: 32px 24px;
    gap: 16px;
  }
}
.c-guidebook-summary-item {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 12px;
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
}
.c-guidebook-summary-item__summary {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .c-guidebook-summary-item__summary {
    padding: 0;
  }
}
.c-guidebook-summary-item__lead {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 4px;
}
.c-guidebook-summary-item__image {
  flex-shrink: 0;
}
.c-guidebook-summary-item__image img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
  aspect-ratio: 120/120;
  background-color: var(--color-primitive-gray-ee);
  padding: 8px 0;
}
.c-guidebook-summary-item__info {
  width: 100%;
}
.c-guidebook-summary-item__title {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  line-height: 24px;
}
.c-guidebook-summary-item__subtitle {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  line-height: 21px;
  margin-top: 4px;
}
.c-guidebook-summary-item__series {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  line-height: 18px;
  margin-top: 12px;
}
.c-guidebook-summary-item__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  margin-top: 4px;
}
.c-guidebook-summary-item__detail {
  padding-top: 8px;
  border-top: 1px solid var(--color-line-gray-ee);
}
.c-guidebook-summary-item__detail--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-guidebook-summary-item__detail--pc {
    display: block;
    margin-top: 12px;
  }
}
.c-guidebook-summary-item__detail--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-guidebook-summary-item__detail--sp {
    display: none;
  }
}
.c-guidebook-summary-item__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-guidebook-summary-item__buttons {
    justify-content: flex-end;
  }
}
.c-guidebook-summary-item__button {
  display: inline-block;
  width: 76.75px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--color-line-gray-aa);
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  text-decoration: none;
  color: var(--color-text-black);
}
.c-guidebook-summary-item__button img {
  height: 22px;
}
@media screen and (min-width: 768px) {
  .c-guidebook-summary-item__button {
    width: 119px;
  }
  .c-guidebook-summary-item__button:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.c-guidebook-summary-item__button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.c-guidebook-summary-item__button--disabled:hover {
  opacity: 0.5;
}
.narrow-down-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
  z-index: 1001;
}
.narrow-down-modal {
  background: var(--color-background-bg-white);
  padding: 21px 16px 16px;
  height: 100%;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal {
    border-radius: 8px;
    max-width: 800px;
    padding: 24px 32px;
    height: 539px;
  }
}
.narrow-down-modal__header {
  display: flex;
  justify-content: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__header {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
    line-height: 30px;
  }
}
.narrow-down-modal__close-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}
.narrow-down-modal__close-btn img {
  width: 16px;
  height: 16px;
}
.narrow-down-modal__content {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__content {
    margin-top: 24px;
  }
}
.narrow-down-modal__content-title {
  text-align: left;
  margin-bottom: 8px;
  margin-left: 8px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  line-height: 20.8px;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__content-title {
    margin-bottom: 28px;
    margin-left: 0;
  }
}
.narrow-down-modal__category-box {
  background-color: var(--color-primitive-gray-f6);
  padding: 16px;
  border-radius: 8px;
  height: 404px;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__category-box {
    height: 308px;
  }
}
.narrow-down-modal__category-block {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.narrow-down-modal__child-categories {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.narrow-down-modal__child-categories label {
  display: flex;
  align-items: normal;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__child-categories {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.narrow-down-modal__category-item {
  cursor: pointer;
}
.narrow-down-modal__category-item--parent {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  display: inline-block;
  width: 100%;
}
.narrow-down-modal__category-item--child {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  display: inline-block;
  font-weight: 400;
}
.narrow-down-modal__footer {
  padding: 16px 24px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__footer {
    position: absolute;
    bottom: 0;
    justify-content: flex-end;
  }
}
.narrow-down-modal__clear-btn {
  border: none;
  background-color: transparent;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  padding: 0 7.75px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__clear-btn {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 400;
  }
}
.narrow-down-modal__filter-btn {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  border: none;
  color: #fff;
  background: var(--color-primitive-red);
  border-radius: 32px;
  padding: 11px 49.75px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__filter-btn {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 400;
  }
}
.narrow-down-modal__clear-btn,
.narrow-down-modal__filter-btn {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .narrow-down-modal__clear-btn,
  .narrow-down-modal__filter-btn {
    transition: 0.5s;
  }
  .narrow-down-modal__clear-btn:hover,
  .narrow-down-modal__filter-btn:hover {
    opacity: 0.7;
  }
}
.c-rectangle-banner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-rectangle-banner {
    justify-content: center;
    flex-direction: row;
  }
}
.c-rectangle-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}
.c-rectangle-banner__title {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #707070;
}
.c-rectangle-banner__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-rectangle-banner__content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.c-rectangle-banner__item {
  width: 300px;
  height: auto;
  aspect-ratio: 6/5;
}
.c-rectangle-banner-first {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 272px;
  aspect-ratio: 300/272;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-rectangle-banner-first {
    flex-direction: row;
    align-items: flex-end;
  }
}
.c-rectangle-banner-first__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-rectangle-banner-first__title {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #707070;
}
.c-rectangle-banner-first__content {
  width: 300px;
  height: 250px;
  aspect-ratio: 300/250;
}
.c-rectangle-banner-first.is-absolute {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.c-rectangle-banner-first--sp {
  height: 272px;
}
@media screen and (min-width: 1024px) {
  .c-rectangle-banner-first--sp {
    display: none;
  }
}
.c-pager {
  display: flex;
  gap: 8px;
}
.c-pager .page-numbers {
  min-width: 24px;
  height: 24px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  text-align: center;
}
.c-pager .page-numbers:not(.prev):not(.next):not(.dots) {
  font-family: Roboto, sans-serif;
  border-radius: 24px;
  border: 1px solid var(--color-button-black);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2px 6px;
  background-color: var(--color-background-bg-white);
  color: var(--color-text-black);
}
.c-pager .page-numbers:not(.prev):not(.next):not(.dots).current {
  background-color: var(--color-background-bg-black);
  color: var(--color-text-white);
}
.c-pager .page-numbers:not(.prev):not(.next):not(.dots):not(.current) {
  transition: opacity 0.5s;
}
.c-pager .page-numbers:not(.prev):not(.next):not(.dots):not(.current):hover {
  opacity: 0.7;
}
.c-pager .dots {
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-6px);
}
.c-pager .prev,
.c-pager .next {
  line-height: 0;
  color: var(--color-text-black);
}
.c-pager .prev {
  rotate: 180deg;
}
.c-pager .prev:not(.is-disabled),
.c-pager .next:not(.is-disabled) {
  transition: opacity 0.5s;
}
.c-pager .prev:not(.is-disabled):hover,
.c-pager .next:not(.is-disabled):hover {
  opacity: 0.7;
}
.c-pager .is-disabled {
  color: var(--color-primitive-gray-aa);
}
.c-latest-news-list {
  list-style: none;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.c-latest-news-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-line-gray-ee);
}
.c-latest-news-list__link {
  text-decoration: none;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .c-latest-news-list__link:hover {
    opacity: 0.7;
  }
}
.c-latest-news-card {
  display: flex;
  align-items: start;
  flex-flow: row-reverse;
  gap: 12px;
  min-height: 83px;
  background-color: var(--color-background-bg-white);
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .c-latest-news-card {
    padding: 16px;
  }
}
.c-latest-news-card__image {
  width: 104px;
  height: auto;
  aspect-ratio: 104/78;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-latest-news-card__content {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.c-latest-news-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.c-latest-news-card__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-latest-release-list {
  list-style: none;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.c-latest-release-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-line-gray-ee);
}
.c-latest-release-list__link {
  text-decoration: none;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .c-latest-release-list__link:hover {
    opacity: 0.7;
  }
}
.c-latest-release-card {
  display: flex;
  align-items: start;
  flex-flow: row-reverse;
  gap: 12px;
  min-height: 83px;
  background-color: var(--color-background-bg-white);
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .c-latest-release-card {
    padding: 16px;
  }
}
.c-latest-release-card__image {
  width: 104px;
  height: auto;
  aspect-ratio: 104/78;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-latest-release-card__content {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.c-latest-release-card__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.c-latest-release-card__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-top-spacer {
  margin-top: 48px;
}
.c-vertical-spacer {
  margin: 32px 0;
}
.c-list-page-item {
  display: flex;
  align-items: start;
  flex-flow: row-reverse;
  gap: 12px;
  min-height: 83px;
  background-color: var(--color-background-bg-white);
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .c-list-page-item {
    padding: 16px;
  }
}
.c-list-page-item__image {
  width: 120px;
  height: auto;
  aspect-ratio: 120/90;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-list-page-item__image--guidebook {
  width: 120px;
  aspect-ratio: 120/120;
  padding: 8px 0;
  background-color: var(--color-background-bg-gray-ee);
  -o-object-fit: contain;
  object-fit: contain;
}
.c-list-page-item__content {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.c-list-page-item__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.c-list-page-item__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-list-page-item__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.c-list-page-item__series--guidebook {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-list-page-item__date--guidebook {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-list-page-item__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 0;
}
.c-list-page-item__author-image {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.c-list-page-item__author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-wysiwyg h2 {
  position: relative;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  padding-bottom: 12px;
  color: var(--color-text-black);
  margin: 48px 0 32px 16px;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg h2 {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .c-wysiwyg h2 {
    margin: 48px 0 16px;
  }
}
.c-wysiwyg h2:before,
.c-wysiwyg h2:after {
  position: absolute;
  content: '';
  height: 1px;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg h2:before,
  .c-wysiwyg h2:after {
    height: 2px;
  }
}
.c-wysiwyg h2:before {
  width: 100%;
  background-color: #fff000;
}
.c-wysiwyg h2:after {
  width: 64px;
  background-color: var(--color-line-red);
}
.c-wysiwyg h3 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin: 32px 16px;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-wysiwyg h3 {
    margin-block: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-wysiwyg h3 {
    margin-inline: 0;
  }
}
.c-wysiwyg h4 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 32px 16px;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-wysiwyg h4 {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-block: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-wysiwyg h4 {
    margin-inline: 0;
  }
}
.c-wysiwyg ol {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.c-wysiwyg > ol {
  padding-left: calc(1em + 4px);
  margin: 32px 16px 48px;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg > ol {
    margin-block: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .c-wysiwyg > ol {
    margin-inline: 0;
  }
}
.c-wysiwyg > ol > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg > ol > li {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-wysiwyg > ol > li > ol {
  margin-top: 8px;
  padding-left: calc(1em + 4px);
}
.c-wysiwyg > ol > li > ol > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-wysiwyg > ol > li > ol > li > ol {
  margin-top: 8px;
  padding-left: 1em;
}
.c-wysiwyg > ol > li > ol > li > ol > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-wysiwyg ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.c-wysiwyg ul li {
  list-style-type: none;
  padding-left: 1em;
  text-indent: -1em;
}
.c-wysiwyg ul li:before {
  content: '\30fb';
}
.c-wysiwyg > ul {
  padding-left: 0;
  margin: 32px 16px 48px;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg > ul {
    margin-block: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .c-wysiwyg > ul {
    margin-inline: 0;
  }
}
.c-wysiwyg > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: calc(1em + 4px);
  text-indent: calc(-1em - 4px);
}
@media screen and (min-width: 768px) {
  .c-wysiwyg > ul > li {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-wysiwyg > ul > li:before {
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg > ul > li:before {
    margin-right: 0;
  }
}
.c-wysiwyg > ul > li > ul {
  margin-top: 8px;
  padding-left: 0;
}
.c-wysiwyg > ul > li > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-wysiwyg > ul > li > ul > li > ul {
  margin-top: 8px;
  padding-left: 0;
}
.c-wysiwyg > ul > li > ul > li > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-wysiwyg blockquote {
  margin: 48px 16px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  background-color: var(--color-background-bg-yellow);
  border-radius: 8px;
  position: relative;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  white-space: pre-wrap;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-wysiwyg blockquote {
    padding-inline: 56px;
    gap: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .c-wysiwyg blockquote {
    margin-inline: 0;
  }
}
.c-wysiwyg blockquote__cite {
  text-align: right;
  font-style: normal;
}
.c-wysiwyg blockquote__link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  text-decoration: none;
}
.c-wysiwyg blockquote:before,
.c-wysiwyg blockquote:after {
  position: absolute;
  content: '';
  display: block;
  width: 17px;
  height: 15px;
  line-height: 1;
  background-image: url('data:image/svg+xml;utf8, <svg id="quote01" width="17" height="15" viewBox="0 0 17 15" xmlns="http://www.w3.org/2000/svg"><path d="M3.408 14.8865C2.32 14.8865 1.472 14.4705 0.864 13.6385C0.288 12.8065 0 11.6065 0 10.0385C0 7.92652 0.496 6.08652 1.488 4.51852C2.48 2.95052 3.888 1.63852 5.712 0.58252L6.96 2.64652C5.616 3.54252 4.608 4.50252 3.936 5.52652C3.264 6.55052 2.928 7.84652 2.928 9.41452L3.552 12.9665L1.296 10.1825C1.648 9.86252 1.968 9.63852 2.256 9.51052C2.576 9.35052 2.96 9.27052 3.408 9.27052C4.144 9.27052 4.784 9.49452 5.328 9.94252C5.904 10.3905 6.192 11.0625 6.192 11.9585C6.192 12.8865 5.92 13.6065 5.376 14.1185C4.864 14.6305 4.208 14.8865 3.408 14.8865ZM12.816 14.8865C11.76 14.8865 10.928 14.4705 10.32 13.6385C9.744 12.8065 9.456 11.6065 9.456 10.0385C9.456 7.92652 9.936 6.08652 10.896 4.51852C11.888 2.95052 13.312 1.63852 15.168 0.58252L16.368 2.64652C15.056 3.54252 14.064 4.50252 13.392 5.52652C12.72 6.55052 12.384 7.84652 12.384 9.41452L12.96 12.9665L10.752 10.1825C11.072 9.86252 11.392 9.63852 11.712 9.51052C12.032 9.35052 12.4 9.27052 12.816 9.27052C13.552 9.27052 14.208 9.49452 14.784 9.94252C15.36 10.3905 15.648 11.0625 15.648 11.9585C15.648 12.8865 15.376 13.6065 14.832 14.1185C14.32 14.6305 13.648 14.8865 12.816 14.8865Z" fill="%23aaa"/></svg>');
  background-size: 17px 15px;
}
.c-wysiwyg blockquote:before {
  top: 24px;
  left: 16px;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg blockquote:before {
    left: 24px;
  }
}
.c-wysiwyg blockquote:after {
  bottom: 24px;
  right: 16px;
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg blockquote:after {
    right: 24px;
  }
}
.c-wysiwyg p {
  margin-block: 0;
  color: var(--color-text-black);
}
.c-wysiwyg > p {
  margin: 32px 16px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg > p {
    margin-block: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-wysiwyg > p {
    margin-inline: 0;
  }
}
.c-wysiwyg--small > p {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
}
.c-wysiwyg--normal > p {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}

.c-wysiwyg--normal > p > iframe {
  width: auto !important;
  height: 100% !important;
}

.c-wysiwyg--large > p {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8;
}
.c-wysiwyg a {
  color: var(--color-text-black);
}
.c-wysiwyg > :first-child {
  margin-top: 0;
}
.c-wysiwyg > :last-child {
  margin-bottom: 0;
}
.c-custom-block-accordion {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  background-color: var(--color-background-bg-yellow);
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-accordion {
    padding: 24px;
  }
}
.c-custom-block-accordion__details {
  background-color: var(--color-background-bg-white);
}
.c-custom-block-accordion__summary {
  display: block;
}
.c-custom-block-accordion__summary::-webkit-details-marker {
  display: none;
}
.c-custom-block-accordion__summary-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
.c-custom-block-accordion__title {
  flex: 1;
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-custom-block-accordion__title-icon {
  line-height: 0;
}
.c-custom-block-accordion__title-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-custom-block-accordion__icon {
  height: 24px;
  transition: transform 0.4s;
  transform: rotate(90deg);
}
.c-custom-block-accordion__details.is-opened .c-custom-block-accordion__icon {
  transform: rotate(270deg);
}
.c-custom-block-accordion__content {
  overflow: hidden;
}
.c-custom-block-accordion__content-inner {
  padding: 0 16px 16px;
  display: flex;
  gap: 8px;
}
.c-custom-block-accordion__content-icon {
  line-height: 0;
  width: 40px;
}
.c-custom-block-accordion__content-text {
  flex: 1;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  white-space: pre-wrap;
}
.c-custom-block-image {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-block: 32px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-image {
    margin-block: 16px;
  }
}
.c-custom-block-images .c-custom-block-image {
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .c-custom-block-images .c-custom-block-image {
    margin-block: 0;
  }
}
.c-custom-block-image__link {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-custom-block-image__link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 768px) {
  .c-custom-block-image__link:hover {
    opacity: 0.7;
  }
}
.c-custom-block-image__image {
  width: 100%;
}
.c-custom-block-image__figcaption {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-image__figcaption {
    padding-inline: 0;
  }
}
.c-custom-block-images .c-custom-block-image__figcaption {
  padding-inline: 0;
}
.c-custom-block-image__copyright {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  text-align: right;
}
.c-custom-block-image__caption {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-custom-block-images {
  display: grid;
  gap: 12px;
  margin-block: 32px;
  margin: 32px 16px;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-custom-block-images {
    margin-block: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-images {
    margin-inline: 0;
  }
}
.c-custom-block-images--column2 {
  grid-template-columns: repeat(2, 1fr);
}
.c-custom-block-images--column3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-images--column3 {
    gap: 12px;
  }
}
.c-custom-block-images__item {
  list-style-type: none;
}
.c-custom-block-list-description {
  margin: 32px 16px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-list-description {
    margin-block: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-list-description {
    margin-inline: 0;
  }
}
.c-custom-block-list-description__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  border-bottom: 1px solid var(--color-line-gray-aa);
  padding-block: 16px;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .c-custom-block-list-description__list {
    flex-direction: row;
    align-items: start;
    gap: 16px;
    padding-block: 12px;
  }
}
.c-custom-block-list-description__list:first-child {
  border-top: 1px solid var(--color-line-gray-aa);
}
.c-custom-block-list-description__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  width: 160px;
}
.c-custom-block-list-description__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-primitive-black);
  flex: 1;
  margin-left: 0;
  margin-bottom: 0;
}
.c-custom-block-list-normal {
  margin-block: 32px 48px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-list-normal {
    margin-block: 48px;
  }
}
.c-custom-block-list-number {
  margin-block: 32px 48px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-list-number {
    margin-block: 48px;
  }
}
.c-custom-block-parts-generic {
  margin: 48px 16px;
  border: 1px solid var(--color-line-gray-aa);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .c-custom-block-parts-generic {
    margin-inline: 0;
  }
}
.c-custom-block-parts-generic__list {
  margin-block: 0;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-custom-block-parts-generic__title,
.c-custom-block-parts-generic__text {
  display: inline;
}
.c-custom-block-parts-generic__title:after {
  content: '\ff1a';
}
.c-custom-block-parts-generic__text {
  margin-left: 0;
}
.c-custom-block-card-link {
  background-color: var(--color-background-bg-yellow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-block: 48px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link {
    padding: 24px;
  }
}
.c-custom-block-card-link__link {
  text-decoration: none;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link__link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link__link:hover {
    opacity: 0.7;
  }
}
.c-custom-block-card-link__item {
  background-color: var(--color-background-bg-white);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.c-custom-block-card-link__image {
  width: 120px;
  min-width: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link__image {
    width: 160px;
  }
}
.c-custom-block-card-link__detail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex: 1;
}
.c-custom-block-card-link__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-left: 0;
  list-style-type: none;
  margin-block: 0;
}
.c-custom-block-card-link__tag-item {
  background-color: var(--color-background-bg-gray-f6);
  padding: 2px 8px;
  border-radius: 2px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1rem;
  color: var(--color-text-black);
}
.c-custom-block-card-link__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-black);
  margin-block: 0;
}
.c-custom-block-card-link__date {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  margin-block: 0;
}
.c-custom-block-card-link__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 0;
}
.c-custom-block-card-link__author-image {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.c-custom-block-card-link__author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-custom-block-card-link-url {
  background-color: var(--color-background-bg-yellow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-block: 48px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link-url {
    padding: 24px;
  }
}
.c-custom-block-card-link-url__link {
  text-decoration: none;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link-url__link {
    transition: 0.5s;
  }
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link-url__link:hover {
    opacity: 0.7;
  }
}
.c-custom-block-card-link-url__item {
  background-color: var(--color-background-bg-white);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.c-custom-block-card-link-url__thumbnail {
  flex-shrink: 0;
}
.c-custom-block-card-link-url__image {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-custom-block-card-link-url__image {
    width: 160px;
  }
}
.c-custom-block-card-link-url__detail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  justify-content: center;
}
.c-custom-block-card-link-url__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-black);
  margin-block: 0;
}
.c-custom-block-parts-property {
  padding: 16px;
  background-color: var(--color-background-bg-yellow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.c-custom-block-parts-property__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.c-custom-block-parts-property__detail-link {
  color: var(--color-text-black);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-custom-block-parts-property__detail-link:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.c-custom-block-parts-property__detail-link:after {
  content: '';
  display: inline-block;
  width: 6.95px;
  height: 11.9px;
  background-image: url(../../assets/img/icon_arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 13px;
}
.c-custom-block-parts-property__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-black);
  margin-block: 0;
  flex: 1;
}
.c-custom-block-parts-property__content {
  padding: 12px;
  border-radius: 4px;
  background-color: var(--color-primitive-white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-parts-property__content {
    flex-direction: row;
  }
}
.c-custom-block-parts-property__thumbnail {
  width: 160px;
  flex-shrink: 0;
}
.c-custom-block-parts-property__info-table {
  width: 100%;
}
.c-custom-block-parts-property__info {
  padding: 16px 4px;
  display: flex;
  gap: 16px;
  margin-block: 0;
}
.c-custom-block-parts-property__info:not(:last-child) {
  border-bottom: 1px solid var(--color-line-gray-ee);
}
.c-custom-block-parts-property__info:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-custom-block-parts-property__info:last-child {
    padding-bottom: 16px;
  }
}
.c-custom-block-parts-property__info-title {
  width: 64px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.c-custom-block-parts-property__info-data {
  flex: 1;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-primitive-black);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.c-custom-block-parts-property__info-data p {
  margin-block: 0;
}
.c-custom-block-parts-property__info-data a,
.c-custom-block-parts-property__link {
  color: var(--color-text-black);
}
.c-custom-block-table-normal {
  overflow-x: auto;
  margin: 32px 0 32px 16px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-table-normal {
    margin-right: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-table-normal {
    margin: 48px 0;
  }
}
.c-custom-block-table-normal table {
  border-radius: 8px;
  overflow: hidden;
  border-collapse: collapse;
  border-spacing: 0;
  border-color: transparent;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-custom-block-table-normal table {
    white-space: normal;
  }
}
.c-custom-block-table-normal table tr th,
.c-custom-block-table-normal table tr td {
  padding: 16px;
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  background-color: var(--color-background-bg-gray-f6);
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.c-custom-block-table-normal table tr th:first-child,
.c-custom-block-table-normal table tr td:first-child {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  background-color: var(--color-background-bg-yellow);
  border-left: none;
}
.c-custom-block-table-normal table tr:first-child th,
.c-custom-block-table-normal table tr:first-child td {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  background-color: #666;
  color: var(--color-text-white);
}
.c-custom-block-text-note {
  margin: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-text-note {
    margin-block: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-text-note {
    margin-inline: 0;
  }
}
.c-custom-block-text-note__item {
  display: flex;
  gap: 4px;
  margin-block: 0;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
@media screen and (min-width: 768px) {
  .c-custom-block-text-note__item {
    gap: 8px;
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.c-custom-block-text-note__item-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-text-note__item-inner {
    gap: 8px;
  }
}
.c-custom-block-text-note p {
  margin-block: 0;
}
.c-custom-block-text-note a {
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-custom-block-text-note a:hover {
    color: var(--color-text-gray-55);
  }
}
.c-custom-block-text-quote {
  margin: 48px 16px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  background-color: var(--color-background-bg-yellow);
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-custom-block-text-quote {
    padding-inline: 56px;
    gap: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-text-quote {
    margin-inline: 0;
  }
}
.c-custom-block-text-quote__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-block: 0;
  white-space: pre-wrap;
  color: var(--color-text-black);
}
.c-custom-block-text-quote__cite {
  text-align: right;
  font-style: normal;
}
.c-custom-block-text-quote__link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  text-decoration: none;
}
.c-custom-block-text-quote__icon01,
.c-custom-block-text-quote__icon02 {
  position: absolute;
  content: '';
  display: block;
  width: 17px;
  height: 15px;
  color: var(--color-primitive-gray-aa);
  line-height: 1;
}
.c-custom-block-text-quote__icon01 {
  top: 24px;
  left: 16px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-text-quote__icon01 {
    left: 24px;
  }
}
.c-custom-block-text-quote__icon02 {
  bottom: 24px;
  right: 16px;
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .c-custom-block-text-quote__icon02 {
    right: 24px;
  }
}
.c-custom-block-text {
  margin-block: 32px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-text {
    margin-block: 16px;
  }
}
.c-custom-block-title-h2 {
  margin: 48px 0 32px 16px;
}
@media screen and (min-width: 1024px) {
  .c-custom-block-title-h2 {
    margin: 48px 0 16px;
  }
}
.c-custom-block-title-h2--left {
  text-align: left;
}
.c-custom-block-title-h2--center {
  text-align: center;
}
.c-custom-block-title-h2--right {
  text-align: right;
}
.c-custom-block-title-h3 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin: 32px 16px;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-custom-block-title-h3 {
    margin-block: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-title-h3 {
    margin-inline: 0;
  }
}
.c-custom-block-title-h4 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 32px 16px;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-custom-block-title-h4 {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-block: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-title-h4 {
    margin-inline: 0;
  }
}
.c-custom-block-button {
  text-align: center;
  margin: 16px auto;
}
@media screen and (min-width: 768px) {
  .c-custom-block-button {
    margin: 32px auto;
  }
}
.c-custom-block-author {
  width: 100%;
  padding: 16px;
  background-color: var(--color-background-bg-gray-f6);
}
@media screen and (min-width: 768px) {
  .c-custom-block-author {
    border-radius: 8px;
    padding: 24px;
  }
}
.c-custom-block-author__inner {
  width: 100%;
}
.c-custom-block-author__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 8px;
  margin-top: 0;
}
.c-custom-block-author__label {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}
.c-custom-block-author__author-profile {
  margin-bottom: 16px;
}
.c-custom-block-author__author-card {
  box-sizing: border-box;
  color: var(--color-text-black);
  text-decoration: none;
  display: grid;
  grid-template-columns: 64px 1fr;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--color-background-bg-white);
}
@media screen and (min-width: 768px) {
  .c-custom-block-author__author-card {
    grid-template-columns: 80px 1fr;
  }
  .c-custom-block-author__author-card:hover {
    transition: 0.5s;
    opacity: 0.7;
  }
}
.c-custom-block-author__author-image {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
  grid-column: span 1;
}
@media screen and (min-width: 768px) {
  .c-custom-block-author__author-image {
    width: 80px;
    height: 80px;
    grid-row: 1/3;
    grid-column: 1/2;
  }
}
.c-custom-block-author__author-info {
  grid-column: span 1;
  margin-left: 16px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-custom-block-author__author-info {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.c-custom-block-author__author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
}
.c-custom-block-author__author-description {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  grid-column: span 2;
  margin-top: 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-custom-block-author__author-description {
    grid-row: 2/3;
    grid-column: 2/3;
    margin-left: 16px;
  }
}
.c-custom-block-author__supervisor-card {
  box-sizing: border-box;
  color: var(--color-text-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--color-background-bg-white);
}
@media screen and (min-width: 768px) {
  .c-custom-block-author__supervisor-card:hover {
    transition: 0.5s;
    opacity: 0.7;
  }
}
.c-custom-block-author__supervisor-info {
  margin-left: 16px;
}
.c-custom-block-author__supervisor-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 4px;
  margin-top: 0;
}
.c-custom-block-author__supervisor-image {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  .c-custom-block-author__supervisor-image {
    width: 48px;
    height: 48px;
  }
}
.c-custom-block-toc {
  margin-block: 48px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  background-color: var(--color-background-bg-yellow);
}
@media screen and (min-width: 768px) {
  .c-custom-block-toc {
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.c-custom-block-toc__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-block: 0;
}
.c-custom-block-toc__nav {
  padding: 8px 16px;
  margin-block: 0;
  background-color: var(--color-background-bg-white);
}
.c-custom-block-toc__nav ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.c-custom-block-toc__nav li {
  list-style-type: none;
  padding-left: 1em;
  text-indent: -1em;
}
.c-custom-block-toc__nav li:before {
  content: '\30fb';
}
.c-custom-block-toc__nav a {
  color: var(--color-text-black);
  text-decoration: none;
}
.c-custom-block-toc__nav > ul {
  padding-left: 0;
  margin-block: 0;
}
.c-custom-block-toc__nav > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: calc(1em + 4px);
  text-indent: calc(-1em - 4px);
}
@media screen and (min-width: 768px) {
  .c-custom-block-toc__nav > ul > li {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-custom-block-toc__nav > ul > li:before {
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-toc__nav > ul > li:before {
    margin-right: 0;
  }
}
.c-custom-block-toc__nav > ul > li > ul {
  margin-top: 8px;
  padding-left: 0;
}
.c-custom-block-toc__nav > ul > li > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-custom-block-toc__nav > ul > li > ul > li > ul {
  margin-top: 8px;
  padding-left: 0;
}
.c-custom-block-toc__nav > ul > li > ul > li > ul > li {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-custom-block-advertising {
  margin: 32px 16px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-custom-block-advertising {
    margin-block: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-advertising {
    margin-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-custom-block-advertising:has(.c-rectangle-banner-first--sp) {
    display: none;
  }
}
.c-custom-block-related-article__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .c-custom-block-related-article__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.c-custom-block-blowing {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px 16px;
}
@media screen and (min-width: 1024px) {
  .c-custom-block-blowing {
    margin-inline: 0;
  }
}
.c-custom-block-blowing__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.c-custom-block-blowing__name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  width: 64px;
  text-align: center;
  margin: 0;
}
.c-custom-block-blowing__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-custom-block-blowing__avatar {
    width: 64px;
    height: 64px;
  }
}
.c-custom-block-blowing__bubble {
  flex: 1;
  border-radius: 10px;
  padding: 12px 16px;
  position: relative;
  margin: 0;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-custom-block-blowing__bubble {
    padding: 20px 24px;
  }
}
.c-custom-block-blowing__bubble:before {
  content: '';
  position: absolute;
  top: 18px;
  width: 15px;
  height: 17px;
}
@media screen and (min-width: 768px) {
  .c-custom-block-blowing__bubble:before {
    top: 26px;
  }
}
.c-custom-block-blowing__message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.c-custom-block-blowing__message--left .c-custom-block-blowing__bubble {
  background-color: var(--color-background-bg-gray-ee);
  margin-left: 15px;
}
.c-custom-block-blowing__message--left .c-custom-block-blowing__bubble:before {
  left: -14px;
  background-color: var(--color-background-bg-gray-ee);
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.c-custom-block-blowing__message--right {
  flex-direction: row-reverse;
}
.c-custom-block-blowing__message--right .c-custom-block-blowing__bubble {
  background-color: var(--color-background-bg-yellow);
  margin-right: 15px;
}
.c-custom-block-blowing__message--right .c-custom-block-blowing__bubble:before {
  right: -14px;
  background-color: var(--color-background-bg-yellow);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.c-custom-block-googlemaps {
  width: 100%;
  height: auto;
  background-color: var(--color-background-bg-yellow);
  border-radius: 8px;
  padding: 23px 24px;
  margin-block: 48px;
  box-sizing: border-box;
}
.c-custom-block-googlemaps iframe {
  width: 100%;
  aspect-ratio: 740/443;
  height: auto;
  border: none;
}
.c-custom-block-guidebook-summary {
  margin: 48px 0;
}
.c-custom-block-text-wysiwyg,
.c-custom-block-html {
  margin-block: 48px;
}
.c-custom-block-oembed-youtube {
  text-align: center;
  padding: 24px 16px;
  background-color: var(--color-background-bg-yellow);
}
.c-custom-block-oembed-youtube iframe {
  max-width: 100%;
}
.c-custom-block-yahoo-images {
  display: none;
}
.p-index {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .p-index {
    gap: 24px;
  }
}
.p-index-main-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-index-main-visual {
    gap: 16px;
  }
}
.p-main-carousel-area__slider-link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__slider-link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__slider-link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__splide {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__track {
    overflow: hidden;
    margin-inline: 0;
  }
}
.p-main-carousel-area__list {
  height: auto;
}
.splide.is-initialized:not(.is-active) .p-main-carousel-area__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-block: 0;
  padding-inline: 16px !important;
}
@media screen and (min-width: 768px) {
  .splide.is-initialized:not(.is-active) .p-main-carousel-area__list {
    display: block;
    gap: 0;
  }
}
.p-main-carousel-area__slide {
  width: 100%;
  max-width: 640px;
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__slide {
    min-width: auto;
  }
}
.p-main-carousel-area__slide:last-child {
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__slide:last-child {
    padding-right: 0;
  }
}
.p-main-carousel-area__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.p-main-carousel-area__item-image {
  aspect-ratio: 640/360;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-main-carousel-area__item-content {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__item-content {
    padding-inline: 0;
  }
}
.p-main-carousel-area__item-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-main-carousel-area__operation {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-main-carousel-area__operation {
    margin-top: 16px;
  }
}
.p-main-carousel-area__pagination {
  gap: 8px;
  margin: 0 8px;
}
.p-main-carousel-area__pagination > li {
  display: flex;
  align-items: center;
}
.p-main-carousel-area__pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  background-color: var(--color-primitive-gray-cc);
}
.p-main-carousel-area__pagination button.is-active {
  background-color: var(--color-text-black);
}
.p-main-carousel-area__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-main-carousel-area__arrow--prev {
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-main-carousel-area__arrow--prev:after {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url(../../assets/img/icon_carousel-arrow01.svg);
}
.p-main-carousel-area__arrow--next {
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-main-carousel-area__arrow--next:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  rotate: 180deg;
  background-image: url(../../assets/img/icon_carousel-arrow01.svg);
}
.p-main-carousel-area__toggle {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-main-carousel-area__play:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/icon_carousel-play01.svg);
}
.p-main-carousel-area__pause:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/icon_carousel-pause01.svg);
}
@media screen and (min-width: 1024px) {
  .p-index-pickup {
    padding-inline: 16px;
  }
}
.p-index-pickup__inner {
  max-width: 1128px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-index-pickup__inner {
    gap: 24px;
  }
}
.p-index-pickup__header {
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .p-index-pickup__header {
    padding-left: 0;
  }
}
.p-index-pickup__content {
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-index-pickup__content {
    padding-inline: 0;
  }
}
.p-index-pickup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-index-pickup__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.p-index-pickup__list-item {
  list-style-type: none;
}
.p-index-pickup__list-link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-index-pickup__list-link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-index-pickup__list-link:hover {
    opacity: 0.7;
  }
}
.p-index-pickup__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.p-index-pickup__card-image {
  aspect-ratio: 168/94;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
  height: auto;
}
.p-index-pickup__card-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 8px;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-index-pickup__card-content {
    padding-block: 12px;
  }
}
.p-index-pickup__card-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-index-pickup__card-title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-index-pickup__card-text {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1rem;
  color: var(--color-text-gray-55);
}
.p-index-guidebook-summary__guidebook-list {
  width: 100%;
}
.p-index-guidebook-summary__footer-button {
  display: flex;
  justify-content: center;
}
.p-popular-guidebook-series {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  justify-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.p-popular-guidebook-series__item {
  width: 100%;
  list-style: none;
}
.p-popular-guidebook-series__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  .p-popular-guidebook-series__link {
    transition: 0.5s;
  }
  .p-popular-guidebook-series__link:hover {
    background: var(--color-background-bg-gray-ee);
  }
}
.p-popular-guidebook-series__image {
  width: 96px;
  height: 96px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-popular-guidebook-series__image {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-popular-guidebook-series {
    grid-template-columns: repeat(6, 1fr);
  }
}
.p-index-area__splide {
  margin-inline: -16px;
  padding-inline: 16px;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .p-index-area__splide {
    position: relative;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
}
.p-index-area__arrows {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-index-area__arrows {
    display: block;
    z-index: 2;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -16px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-area__arrow--prev,
  .p-index-area__arrow--next {
    position: absolute;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    line-height: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-icon-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    padding: 0;
  }
  .p-index-area__arrow--prev:focus-visible,
  .p-index-area__arrow--next:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-area__arrow--prev {
    transform: rotate(180deg);
    left: -16px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-area__arrow--next {
    right: -16px;
  }
}
.p-index-area__slider {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-index-area__slider {
    z-index: 1;
  }
}
.p-index-area__slider :after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 16px;
  height: 1px;
  content: '';
}
@media screen and (min-width: 768px) {
  .p-index-area__slider :after {
    display: none;
  }
}
.p-index-area__slider-link {
  display: block;
  text-decoration: none;
}
.p-index-area__track {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .p-index-area__track {
    overflow: hidden;
  }
}
.splide.is-initialized:not(.is-active) .p-index-area__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .splide.is-initialized:not(.is-active) .p-index-area__list {
    display: block;
    gap: 0;
  }
}
.p-index-area__slide {
  min-width: 240px;
}
@media screen and (min-width: 768px) {
  .p-index-area__slide {
    min-width: auto;
  }
}
.p-index-area-map {
  position: relative;
  aspect-ratio: 375/200;
  min-width: 100vw;
  margin: 0 calc((100vw - 100%) / -2);
  margin-bottom: -24px;
}
@media screen and (min-width: 768px) {
  .p-index-area-map {
    transform: translate(0);
    aspect-ratio: 740/370;
    min-width: 0;
    width: 100%;
    margin: 0;
  }
}
.p-index-area-map__background {
  aspect-ratio: 375/200;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/image_worldmap_sp01.png);
}
@media screen and (min-width: 768px) {
  .p-index-area-map__background {
    aspect-ratio: 740/370;
    margin: 0;
    border-radius: 8px;
    background-image: url(../../assets/img/image_worldmap_pc01.png);
  }
}
.p-index-area-map__button {
  font-family: Noto Sans JP, sans-serif;
  height: 20px;
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-text-red);
  background-color: var(--color-background-bg-white);
  border: 2px solid var(--color-line-red);
  border-radius: 10px;
  padding: 0 4px;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button:hover {
    color: var(--color-text-red);
    background-color: var(--color-button-hover-yellow);
    transition: 0.5s;
  }
}
@media screen and (min-width: 576px) {
  .p-index-area-map__button {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    height: 32px;
    border-radius: 16px;
  }
}
.p-index-area-map__button--small {
  width: 48px;
}
@media screen and (min-width: 576px) {
  .p-index-area-map__button--small {
    width: 80px;
  }
}
.p-index-area-map__button--medium {
  width: 56px;
}
@media screen and (min-width: 576px) {
  .p-index-area-map__button--medium {
    width: 80px;
  }
}
.p-index-area-map__button--large {
  width: 64px;
}
@media screen and (min-width: 576px) {
  .p-index-area-map__button--large {
    width: 80px;
  }
}
.p-index-area-map__button--europe {
  top: 28.25%;
  left: 5.07%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--europe {
    top: 25.68%;
    left: 12.84%;
  }
}
.p-index-area-map__button--asia {
  top: 36.5%;
  left: 24.8%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--asia {
    top: 31.35%;
    left: 30.68%;
  }
}
.p-index-area-map__button--middle-east {
  top: 50.5%;
  left: 17.33%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--middle-east {
    top: 42.16%;
    left: 20.95%;
  }
}
.p-index-area-map__button--africa {
  top: 64.5%;
  left: 4.53%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--africa {
    top: 60.27%;
    left: 7.97%;
  }
}
.p-index-area-map__button--jp {
  top: 46.75%;
  left: 40%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--jp {
    top: 42.16%;
    left: 45.54%;
  }
}
.p-index-area-map__button--hawaii {
  top: 55.5%;
  left: 55.73%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--hawaii {
    top: 55.14%;
    left: 55.41%;
  }
}
.p-index-area-map__button--resort {
  top: 70%;
  left: 51.2%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--resort {
    top: 66.22%;
    left: 64.05%;
  }
}
.p-index-area-map__button--oceania {
  top: 84%;
  left: 41.6%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--oceania {
    top: 70.81%;
    left: 47.16%;
  }
}
.p-index-area-map__button--north-america {
  top: 30.25%;
  left: 71.2%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--north-america {
    top: 31.35%;
    left: 76.22%;
  }
}
.p-index-area-map__button--latin-america {
  top: 65.5%;
  left: 78.13%;
}
@media screen and (min-width: 768px) {
  .p-index-area-map__button--latin-america {
    top: 68.11%;
    left: 80.95%;
  }
}
.p-web-magazine-top {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.p-web-magazine-top__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top__header {
    gap: 32px;
  }
}
.p-web-magazine-top__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.p-web-magazine-top-carousel {
  position: relative;
}
.p-web-magazine-top-carousel .splide__track {
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
}
.p-web-magazine-top-carousel .splide__slide {
  aspect-ratio: 375/342;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel .splide__slide {
    aspect-ratio: 788/512;
    padding-bottom: 0;
  }
}
.p-web-magazine-top-carousel .splide__pagination {
  gap: 8px;
  margin: 0 8px;
}
.p-web-magazine-top-carousel .splide__pagination > li {
  display: flex;
  align-items: center;
}
.p-web-magazine-top-carousel .splide__pagination__page {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  background-color: var(--color-primitive-gray-cc);
}
.p-web-magazine-top-carousel .splide__pagination__page.is-active {
  background-color: var(--color-text-black);
}
.p-web-magazine-top-carousel .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-web-magazine-top-carousel .splide__arrow--prev {
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-web-magazine-top-carousel .splide__arrow--prev:after {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url(../../assets/img/icon_carousel-arrow01.svg);
}
.p-web-magazine-top-carousel .splide__arrow--next {
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-web-magazine-top-carousel .splide__arrow--next:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  rotate: 180deg;
  background-image: url(../../assets/img/icon_carousel-arrow01.svg);
}
.p-web-magazine-top-carousel .splide__toggle {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-web-magazine-top-carousel .splide__toggle__play:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/icon_carousel-play01.svg);
}
.p-web-magazine-top-carousel .splide__toggle__pause:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/icon_carousel-pause01.svg);
}
.p-web-magazine-top-carousel__operation {
  position: relative;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__operation {
    margin-top: 32px;
  }
}
.is-not-enough .p-web-magazine-top-carousel__operation {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__inner {
    margin-left: 8px;
  }
}
.p-web-magazine-top-carousel__page-title {
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__page-title {
    left: 0;
  }
}
.p-web-magazine-top-carousel__catch-image {
  aspect-ratio: 158/130;
  width: 42%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__catch-image {
    aspect-ratio: 200/164;
    width: 200px;
    height: 164px;
  }
}
.p-web-magazine-top-carousel__tag-group {
  width: 300px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__tag-group {
    margin-bottom: 16px;
  }
}
.p-web-magazine-top-carousel__page-link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-web-magazine-top-carousel__float {
  position: absolute;
  bottom: 0;
  left: 16px;
  z-index: 1;
  padding-right: 32px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__float {
    padding-right: 0;
    width: 528px;
    height: auto;
    bottom: -32px;
    left: 2px;
  }
}
.p-web-magazine-top-carousel__image {
  width: calc(100% - 55px);
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 70px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__image {
    width: calc(100% - 148px);
    height: auto;
    bottom: 0;
    padding-right: 1px;
  }
}
.p-web-magazine-top-carousel__title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: var(--color-text-white);
  text-shadow: 0px 0px 2.5px #000, 0px 0px 2.5px #000, 0px 0px 2.5px #000,
    0px 0px 2.5px #000, 0px 0px 2.5px #000, 0px 0px 2.5px #000,
    0px 0px 2.5px #000, 4px 2.5px 0px #ffff00;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 33.6px;
  padding-left: 3px;
}
@media screen and (min-width: 576px) {
  .p-web-magazine-top-carousel__title {
    font-size: 3rem;
    line-height: 50.4px;
  }
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__title {
    font-size: 3rem;
    line-height: 50.4px;
  }
}
@media screen and (min-width: 1024px) {
  .p-web-magazine-top-carousel__title {
    font-size: 3.2rem;
    line-height: 50.4px;
  }
}
@media screen and (min-width: 1280px) {
  .p-web-magazine-top-carousel__title {
    font-size: 3.6rem;
    line-height: 50.4px;
  }
}
.p-web-magazine-top-carousel__sponsored {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-carousel__sponsored {
    margin-top: 40px;
  }
}
.p-web-magazine-pickup {
  position: relative;
  background-color: var(--color-background-bg-header);
  padding: 24px 16px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-pickup {
    padding: 32px 24px;
  }
}
.p-web-magazine-pickup__header {
  width: 126px;
  height: 30px;
  position: absolute;
  top: -15px;
}
.p-web-magazine-pickup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-pickup__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-web-magazine-pickup__item {
  list-style: none;
  background-color: var(--color-background-bg-white);
  border: 2px solid #000000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.p-web-magazine-pickup__link {
  display: inline-block;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-pickup__link:hover {
    transition: 0.5s;
    opacity: 0.7;
  }
}
.p-web-magazine-pickup__tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
}
.p-web-magazine-pickup__tag-item {
  list-style: none;
  padding: 2px 4px;
  border-radius: 1px;
  background-color: var(--color-background-bg-black);
}
.p-web-magazine-pickup__tag {
  font-family: Noto Sans JP, sans-serif;
  font-size: 1rem;
  color: var(--color-text-white);
}
.p-web-magazine-pickup__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-web-magazine-pickup__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-web-magazine-pickup__content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-web-magazine-pickup__image {
  width: 100%;
  height: auto;
  aspect-ratio: 166/124.5;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-web-magazine-pickup__title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.p-web-magazine-top-articles {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-articles {
    gap: 32px;
  }
}
.p-web-magazine-top-articles__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-articles__content {
    gap: 32px;
  }
}
.p-web-magazine-top-articles__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-web-magazine-list-articles {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  background-color: var(--color-background-bg-yellow);
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-list-articles {
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.p-web-magazine-detail-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header {
    gap: 12px;
  }
}
.p-web-magazine-detail-header__items01 {
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-web-magazine-detail-header__items01 {
    padding-inline: 0;
  }
}
.p-web-magazine-detail-header__items01-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__items01-inner {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
}
.p-web-magazine-detail-header__items01-item01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__items01-item01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.p-web-magazine-detail-header__items01-item02 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__items01-item02 {
    gap: 16px;
  }
}
.p-web-magazine-detail-header__logo-image {
  width: 105px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__logo-image {
    width: 128px;
  }
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__sns {
    display: flex;
    justify-content: center;
  }
}
.p-web-magazine-detail-header__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.p-web-magazine-detail-header__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 0;
  margin-block: 0;
}
.p-web-magazine-detail-header__items02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-inline: 16px;
}
.p-web-magazine-detail-header__author {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__author {
    transition: 0.5s;
  }
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__author:hover {
    opacity: 0.7;
  }
}
.p-web-magazine-detail-header__author-image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.p-web-magazine-detail-header__author-detail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-detail-header__author-detail {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}
.p-web-magazine-detail-header__author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
  flex: 1;
}
.p-web-magazine-detail-header__author-label {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-index-magazine-theme__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 4px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-index-magazine-theme__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-index-magazine-theme__item {
  list-style: none;
}
.p-index-magazine-theme__link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 84px;
  background-color: var(--color-background-bg-white);
  text-align: center;
  text-decoration: none;
  color: var(--color-text-black);
  border-radius: 4px;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .p-index-magazine-theme__link:hover {
    background-color: var(--color-background-bg-gray-ee);
    transition: 0.5s;
  }
}
.p-index-magazine-theme__link:before,
.p-index-magazine-theme__link--more:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
}
.p-index-magazine-theme__item--gourmet .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_gourmet01.svg);
}
.p-index-magazine-theme__item--art .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_art01.svg);
}
.p-index-magazine-theme__item--hotel .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_hotel01.svg);
}
.p-index-magazine-theme__item--event .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_event01.svg);
}
.p-index-magazine-theme__item--heritage .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_heritage01.svg);
}
.p-index-magazine-theme__item--resort .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_resort01.svg);
}
.p-index-magazine-theme__item--activity .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_activity01.svg);
}
.p-index-magazine-theme__item--traffic .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_traffic01.svg);
}
.p-index-magazine-theme__item--shopping .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_shopping01.svg);
}
.p-index-magazine-theme__item--more .p-index-magazine-theme__link:before {
  background-image: url(../../assets/img/icon_more01.svg);
}
.p-index-magazine-theme__item--more {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-index-magazine-theme__item--more {
    display: block;
  }
}
.p-web-magazine-top-popular-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-background-bg-gray-f6);
  border-radius: 0;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-popular-area {
    gap: 24px;
    border-radius: 8px;
    padding: 32px 24px;
  }
}
.p-web-magazine-top-popular-area__header {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-web-magazine-top-popular-area__header {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.p-webmagazine-list-header__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-inline: 8px;
}
@media screen and (min-width: 768px) {
  .p-webmagazine-list-header__title {
    gap: 16px;
  }
}
.p-webmagazine-list-header__title-logo-image {
  width: 80px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-webmagazine-list-header__title-logo-image {
    width: 100px;
  }
}
.p-webmagazine-list-header__title-text {
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-webmagazine-list-header__title-text {
    padding-top: 16px;
  }
}
.p-webmagazine-list-header__nav {
  margin-top: -16px;
}
@media screen and (min-width: 768px) {
  .p-webmagazine-list-header__nav {
    margin-top: -20px;
  }
}
.p-webmagazine-top-header__title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 8px;
}
@media screen and (min-width: 768px) {
  .p-webmagazine-top-header__title {
    gap: 16px;
  }
}
.p-webmagazine-top-header__title-logo-image {
  width: 80px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-webmagazine-top-header__title-logo-image {
    width: 100px;
  }
}
.p-webmagazine-top-header__title-text {
  flex: 1;
}
.p-webmagazine-top-header__nav {
  margin-top: -8px;
}
@media screen and (min-width: 768px) {
  .p-webmagazine-top-header__nav {
    margin-top: -12px;
  }
}
.p-guidebook-detail-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-header {
    flex-direction: row;
  }
}
.p-guidebook-detail-top-carousel {
  width: 100%;
  background-color: var(--color-primitive-gray-ee);
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-carousel {
    width: 400px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-guidebook-detail-top-carousel {
    margin-left: 0;
  }
}
.p-guidebook-detail-top-carousel .splide__track {
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
}
.p-guidebook-detail-top-carousel .splide__pagination {
  gap: 8px;
  margin: 0 8px;
}
.p-guidebook-detail-top-carousel .splide__pagination > li {
  display: flex;
  align-items: center;
}
.p-guidebook-detail-top-carousel .splide__pagination__page {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  border: solid 1.5px #888888;
}
.p-guidebook-detail-top-carousel .splide__pagination__page.is-active {
  border: none;
  background-color: var(--color-text-black);
}
.p-guidebook-detail-top-carousel .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-guidebook-detail-top-carousel .splide__arrow--prev {
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-guidebook-detail-top-carousel .splide__arrow--prev:after {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url(../../assets/img/icon_carousel-arrow01.svg);
}
.p-guidebook-detail-top-carousel .splide__arrow--next {
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.p-guidebook-detail-top-carousel .splide__arrow--next:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  rotate: 180deg;
  background-image: url(../../assets/img/icon_carousel-arrow01.svg);
}
.p-guidebook-detail-top-carousel__operation {
  position: relative;
  margin: 16px 0;
}
.is-not-enough .p-guidebook-detail-top-carousel__operation {
  display: none;
}
.p-guidebook-detail-top-carousel__link {
  display: inline-block;
  width: 100%;
  padding: 8px 0;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-carousel__link {
    width: 400px;
    padding: 8px 0;
  }
}
.p-guidebook-detail-top-carousel__image {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 375/375;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-carousel__image {
    height: auto;
    aspect-ratio: 400/400;
  }
}
.p-guidebook-detail-top-carousel__sponsored {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-carousel__sponsored {
    margin-top: 40px;
  }
}
.p-guidebook-detail-top-info {
  width: 100%;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-info {
    padding-right: 16px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-guidebook-detail-top-info {
    padding: 0;
  }
}
.p-guidebook-detail-top-info__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-info__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p-guidebook-detail-top-info__subtitle {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.p-guidebook-detail-top-info__series {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-primitive-gray-55);
  display: inline-block;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-info__series {
    margin-bottom: 32px;
  }
}
.p-guidebook-detail-top-info__lead-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-info__lead-text {
    margin-bottom: 32px;
  }
}
.p-guidebook-detail-top-info__detail {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-info__detail {
    margin-bottom: 32px;
  }
}
.p-guidebook-detail-top-info__modify-info-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  text-decoration: none;
  color: var(--color-text-black);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail-top-info__modify-info-link:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.p-guidebook-detail-top-info__modify-info-link:after {
  content: '';
  display: inline-block;
  width: 6.95px;
  height: 11.9px;
  background-image: url(../../assets/img/icon_arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 13px;
}
.p-guidebook-detail__super-banner {
  padding: 0 27.5px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__super-banner {
    padding: 0 30px;
  }
}
.p-guidebook-detail__intro {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__intro {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-guidebook-detail__intro {
    padding: 0;
  }
}
.p-guidebook-detail__purchase-cta-area {
  border-radius: 8px;
  background-color: var(--color-background-bg-yellow);
  padding: 16px;
}
.p-guidebook-detail__purchase-cta-main-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__purchase-cta-main-text {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-guidebook-detail__purchase-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__purchase-cta-buttons {
    gap: 16px;
    margin-top: 16px;
  }
}
.p-guidebook-detail__purchase-cta-button {
  border-radius: 8px;
  display: inline-block;
  width: 109px;
  background-color: var(--color-primitive-white);
  padding: 16px 0;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .p-guidebook-detail__purchase-cta-button:hover {
    transition: 0.5s;
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__purchase-cta-button {
    width: 241.33px;
  }
}
.p-guidebook-detail__purchase-cta-button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (min-width: 1024px) {
  .p-guidebook-detail__purchase-cta-button--disabled:hover {
    transition: 0.5s;
    opacity: 0.5;
  }
}
.p-guidebook-detail__purchase-cta-button-image {
  height: 32px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__purchase-cta-button-image {
    height: 56px;
  }
}
.p-guidebook-detail__section-title {
  padding: 0 16px 12px;
}
.p-guidebook-detail__section-content {
  background-color: var(--color-background-bg-yellow);
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__section-content {
    border-radius: 8px;
  }
}
.p-guidebook-detail__sns-share {
  background-color: var(--color-primitive-gray-f6);
  padding-top: 8px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__sns-share {
    border-radius: 8px;
  }
}
.p-guidebook-detail__sns-share-main-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center;
}
.p-guidebook-detail__sns-share-items {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__sns-share-items {
    gap: 32px;
    margin-top: 16px;
  }
}
.p-guidebook-detail__sns-share-item {
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-guidebook-detail__sns-share-item:nth-child(2) {
    border-right: solid 1px var(--color-primitive-gray-aa);
    border-left: solid 1px var(--color-primitive-gray-aa);
    padding: 0 32px;
  }
}
.p-guidebook-list__title {
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-list__title {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-guidebook-list__title {
    padding: 0;
  }
}
.p-guidebook-list__articles {
  list-style: none;
  padding: 0;
}
.p-guidebook-list__articles-ad {
  background-color: var(--color-background-bg-yellow);
  padding: 0 27.5px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-list__articles-ad {
    padding: 12px 0;
  }
}
.p-guidebook-top__title {
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top__title {
    margin-top: 16px;
    padding: 0;
  }
}
.p-guidebook-top-summary {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 38px;
}
.p-guidebook-top-summary__footer-button {
  text-align: center;
}
.p-guidebook-top-summary__footer-links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
}
.p-guidebook-top-summary__modify-info-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  text-decoration: none;
  color: var(--color-text-black);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top-summary__modify-info-link:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.p-guidebook-top-summary__modify-info-link:after {
  content: '';
  display: inline-block;
  width: 6.95px;
  height: 11.9px;
  background-image: url(../../assets/img/icon_arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 13px;
}
.p-guidebook-top-summary__ad {
  padding: 0 27.5px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top-summary__ad {
    padding: 0;
  }
}
.p-guidebook-top-summary__ad--inner {
  padding: 0 11.5px;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top-summary__ad--inner {
    padding: 0;
  }
}
.p-guidebook-top__sub-section-description {
  margin-top: 8px;
}
.p-guidebook-top__sub-section-items {
  display: flex;
  gap: 12px;
  list-style: none;
  margin-inline: -16px;
  padding-inline: 16px;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top__sub-section-items {
    overflow-x: initial;
    margin-inline: 0;
    padding-inline: 0;
  }
}
.p-guidebook-top__sub-section-item {
  width: 184px;
  max-width: 184px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top__sub-section-item {
    flex: 1;
  }
}
.p-guidebook-top__sub-section-item-link {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top__sub-section-item-link:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.p-guidebook-top__modify-info-link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  text-decoration: none;
  color: var(--color-text-black);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-guidebook-top__modify-info-link:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.p-guidebook-top__modify-info-link:after {
  content: '';
  display: inline-block;
  width: 6.95px;
  height: 11.9px;
  background-image: url(../../assets/img/icon_arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 13px;
}
.p-area-top {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.p-area-top-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.p-area-top-header__title {
  padding: 12px 16px 0;
}
@media screen and (min-width: 768px) {
  .p-area-top-header__title {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-area-top-header__title {
    padding-inline: 0;
  }
}
.p-area-top-find {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-area-top-find {
    gap: 24px;
  }
}
.p-area-top-find__title {
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .p-area-top-find__title {
    padding-left: 0;
  }
}
.p-area-top-find__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.p-area-top-find__section {
  padding: 24px 16px;
  background-color: var(--color-background-bg-yellow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-area-top-find__section {
    gap: 32px;
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.p-area-top-navigation {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .p-area-top-navigation {
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--color-background-bg-gray-f6);
  }
}
.p-area-top-navigation__list {
  margin-block: 0;
  padding-left: 0;
  display: flex;
  gap: 0;
}
.p-area-top-navigation__item {
  list-style-type: none;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-area-top-navigation__item {
    width: 16.6666666667%;
  }
}
.p-area-top-navigation__item:not(:last-child) {
  border-right: 1px solid var(--color-line-white);
}
.p-area-top-navigation__item:last-child {
  border-right: 1px solid transparent;
}
.p-area-top-navigation__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 4px;
  background-color: var(--color-background-bg-gray-f6);
  height: 100%;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-area-top-navigation__link {
    padding: 16px 8px;
    gap: 0;
  }
}
.p-area-top-navigation__link.is-inactive {
  color: var(--color-text-placeholder);
  background-color: var(--color-button-inactive);
}
.p-area-top-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}
.p-area-detail-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.p-area-detail-header__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.p-area-detail-header__sub {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv {
    position: relative;
  }
}
.p-area-detail-fv__item01 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  position: relative;
  margin-inline: 16px;
  background-color: var(--color-background-bg-yellow);
  overflow: hidden;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv__item01 {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    gap: 16px;
    width: 344px;
    margin-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv__item01--has-copyright {
    transform: translateY(calc(-50% - 8px));
  }
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv__item01--no-image {
    position: relative;
    transform: none;
    top: 0;
    gap: 0;
  }
}
.p-area-detail-fv__item01:before {
  position: absolute;
  content: '';
  display: block;
  width: 480px;
  height: 275px;
  top: 16px;
  left: 100px;
  border-radius: 50%;
  background-color: var(--color-primitive-yellow);
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv__item01:before {
    width: 610px;
    height: 350px;
    top: 27px;
    left: 16px;
  }
}
.p-area-detail-fv__tag {
  position: relative;
}
.p-area-detail-fv__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv__info {
    gap: 16px;
  }
}
.p-area-detail-fv__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
.p-area-detail-fv__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-area-detail-fv__item02 {
  aspect-ratio: 375/243;
  margin-top: -24px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-fv__item02 {
    margin-top: 0;
    margin-left: 278px;
    aspect-ratio: 510/295;
  }
}
@media screen and (min-width: 1024px) {
  .p-area-detail-fv__item02 {
    margin-left: 35.2791878173%;
  }
}
@media screen and (min-width: 768px) {
  .p-area-detail-navigation {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
    background-color: var(--color-background-bg-gray-f6);
  }
}
.p-area-detail-navigation__list {
  margin-block: 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-navigation__list {
    display: flex;
    justify-content: center;
    gap: 0;
    height: 100%;
  }
}
.p-area-detail-navigation__item {
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .p-area-detail-navigation__item {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .p-area-detail-navigation__item:not(:last-child) {
    border-right: 1px solid var(--color-line-white);
  }
}
@media screen and (min-width: 768px) {
  .p-area-detail-navigation__item:last-child {
    border-right: 1px solid transparent;
  }
}
.p-area-detail-navigation__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  gap: 4px;
  background-color: var(--color-background-bg-gray-f6);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-area-detail-navigation__link {
    padding: 8px;
    gap: 0;
  }
}
.p-area-detail-navigation__image {
  height: 40px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-navigation__image {
    height: 36px;
  }
}
.p-area-detail-navigation__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-area-detail-recommend {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 24px 0;
  background-color: var(--color-background-bg-gray-f6);
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend {
    padding: 32px 24px;
  }
}
.p-area-detail-recommend__title {
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend__title {
    font-size: 1.6rem;
  }
}
.p-area-detail-recommend__content {
  overflow: auto;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend__content {
    overflow: visible;
  }
}
.p-area-detail-recommend__list {
  display: inline-flex;
  gap: 12px;
  margin-block: 0;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend__list {
    gap: 16px;
    padding-inline: 0;
  }
}
.p-area-detail-recommend__list-item {
  position: relative;
  list-style-type: none;
}
.p-area-detail-recommend__list-item :after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 16px;
  height: 1px;
  content: '';
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend__list-item :after {
    display: none;
  }
}
.p-area-detail-recommend__link {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend__link:hover {
    opacity: 0.7;
  }
}
.p-area-detail-recommend__image {
  height: 96px;
  width: auto;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-area-detail-recommend__image {
    height: 124px;
  }
}
.p-area-detail-basic-information {
  padding-inline: 12px;
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-area-detail-basic-information {
    padding-inline: 16px;
  }
}
.p-area-detail-basic-information__list {
  margin-block: 0;
  padding-left: 0;
}
.p-area-detail-basic-information__list-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 16px 4px;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .p-area-detail-basic-information__list-item {
    gap: 32px;
  }
}
.p-area-detail-basic-information__list-item:not(:last-child) {
  border-bottom: 1px solid var(--color-line-gray-ee);
}
.p-area-detail-basic-information__data {
  display: flex;
  gap: 16px;
}
.p-area-detail-basic-information__data-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
  width: 64px;
}
.p-area-detail-basic-information__data-content {
  flex: 1;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-area-detail-basic-information__link {
  display: block;
  text-decoration: none;
}
.p-area-detail-travel-knowledge__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.p-area-detail-travel-knowledge__article {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-line-gray-ee);
}
.p-area-detail-travel-knowledge__link {
  display: block;
  text-decoration: none;
}
.p-areainfo-detail__header {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 215px;
  padding: 16px;
  background-color: var(--color-background-bg-yellow);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-image: url(../../assets/img/areainfo/image_areainfo_top01.png);
  background-repeat: no-repeat;
  background-position: top 16px right -170px;
  background-size: clamp(450px, 50vw, 640px) auto;
}
@media screen and (min-width: 768px) {
  .p-areainfo-detail__header {
    background-position: top 16px right -50px;
    background-size: 640px 480px;
  }
}
@media screen and (min-width: 1024px) {
  .p-areainfo-detail__header {
    background-position: top 16px right -140px;
  }
}
.p-areainfo-detail__top-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-areainfo-detail__top-info {
  display: flex;
}
.p-areainfo-detail__share {
  margin-left: auto;
}
.p-areainfo-detail__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-areainfo-detail__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p-areainfo-detail__bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-areainfo-detail__author-link {
  display: flex;
  gap: 8px;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-areainfo-detail__author-link:hover {
    transition: 0.3s;
    opacity: 0.7;
  }
}
.p-areainfo-detail__author-image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-areainfo-detail__author-image {
    width: 48px;
    height: 48px;
  }
}
.p-areainfo-detail__author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-areainfo-detail__author-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-author-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 1024px) {
  .p-author-list {
    gap: 24px;
  }
}
.p-author-list__title {
  padding: 0 12px;
  margin: 16px 0;
}
@media screen and (min-width: 1024px) {
  .p-author-list__title {
    padding: 0;
  }
}
.p-author-list-articles {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  background-color: var(--color-background-bg-yellow);
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-author-list-articles {
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.p-author-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 32px;
  background-color: var(--color-background-bg-yellow);
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-author-detail {
    padding: 24px;
    border-radius: 8px;
  }
}
.p-author-detail__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-author-detail__header {
    gap: 24px;
  }
}
.p-author-detail__profile {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.p-author-detail__profile-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-author-detail__name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.p-author-detail__job-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #707070;
}
.p-author-detail__comment {
  background-color: var(--color-background-bg-white);
  padding: 12px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-author-detail__comment {
    padding: 16px;
  }
}
.p-author-detail__comment-text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-author-detail__image {
  margin-top: -48px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .p-author-detail__image {
    margin-top: -56px;
    width: 128px;
    height: 128px;
  }
}
.p-author-detail__introduction {
  background-color: var(--color-background-bg-white);
  padding: 12px;
  border-radius: 8px;
}
.p-author-detail__introduction > p {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-author-detail__introduction pre {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  white-space: pre-wrap;
}
.p-spot {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-spot {
    gap: 32px;
  }
}
.p-spot-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-spot-header {
    padding-top: 16px;
  }
}
.p-spot-header__title {
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-spot-header__title {
    padding-inline: 0;
  }
}
.p-spot-list-articles {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.p-spot-detail-title-area {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .p-spot-detail-title-area {
    gap: 16px;
  }
}
.p-spot-detail-title-area__items {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-spot-detail-title-area__items {
    gap: 32px;
    flex-direction: row;
    align-items: end;
  }
}
@media screen and (min-width: 1024px) {
  .p-spot-detail-title-area__items {
    padding: 0;
  }
}
.p-spot-detail-title-area__items-item01 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-spot-detail-title-area__items-item01 {
    gap: 32px;
  }
}
.p-spot-detail-title-area__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.p-spot-detail-title-area__info:after {
  position: absolute;
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  bottom: -8px;
  background-color: var(--color-line-gray-cc);
}
@media screen and (min-width: 768px) {
  .p-spot-detail-title-area__info:after {
    height: 2px;
    bottom: -16px;
  }
}
.p-spot-detail-title-area__local-language {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
@media screen and (min-width: 768px) {
  .p-spot-detail-title-area__local-language {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.p-spot-detail-title-area__texts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.p-spot-detail-title-area__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-area-detail-tourism-point {
  padding-inline: 16px;
  background-color: var(--color-background-bg-white);
}
.p-area-detail-tourism-point__list {
  margin-block: 0;
  padding-left: 0;
}
.p-area-detail-tourism-point__item {
  padding-block: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  list-style-type: none;
}
.p-area-detail-tourism-point__item:not(:last-child) {
  border-bottom: 1px solid var(--color-line-gray-ee);
}
.p-area-detail-tourism-point__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-area-detail-tourism-point__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-area-detail-tourism-point__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.p-area-detail-tourism-point__image {
  width: 120px;
  height: auto;
}
.p-area-detail-tourism-point__text {
  flex: 1;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-area-detail-tourism-point__text {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-spot-detail__basic-info {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-spot-detail__basic-info {
    padding: 0;
  }
}
.p-spot-detail__info-table {
  width: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-spot-detail__info-table {
    padding: 24px;
  }
}
.p-spot-detail__info {
  padding: 16px 4px;
  display: flex;
  gap: 16px;
  margin-block: 0;
}
.p-spot-detail__info:not(:last-child) {
  border-bottom: 1px solid var(--color-line-gray-ee);
}
.p-spot-detail__info-title {
  width: 5em;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  flex-shrink: 0;
  color: var(--color-text-gray-55);
}
@media screen and (min-width: 768px) {
  .p-spot-detail__info-title {
    width: 10em;
  }
}
.p-spot-detail__info-text {
  flex: 1;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-primitive-black);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.p-spot-detail__info-text p {
  margin-block: 0;
}
.p-spot-detail__info-text a {
  color: var(--color-text-black);
}
.p-spot-detail__map {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-spot-detail__map {
    padding: 0;
  }
}
.p-spot-detail__map iframe {
  width: 100%;
  height: auto;
  border: none;
  aspect-ratio: 291/174;
}
@media screen and (min-width: 768px) {
  .p-spot-detail__map iframe {
    aspect-ratio: 740/443;
  }
}
.p-tokuhain-top-header__title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 8px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-header__title {
    gap: 16px;
  }
}
.p-tokuhain-top-header__title-logo-image {
  width: 80px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-header__title-logo-image {
    width: 100px;
  }
}
.p-tokuhain-top-header__title-text {
  flex: 1;
}
.p-tokuhain-top-header__nav {
  margin-top: -16px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-header__nav {
    margin-top: -20px;
  }
}
.p-tokuhain-top-articles {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-articles {
    gap: 32px;
  }
}
.p-tokuhain-top-articles__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-articles__content {
    gap: 32px;
  }
}
.p-tokuhain-top-articles__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-articles__item {
    gap: 24px;
  }
}
.p-tokuhain-top-articles__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-tokuhain-list-header__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-inline: 8px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-list-header__title {
    gap: 16px;
  }
}
.p-tokuhain-list-header__title-logo-image {
  width: 80px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-list-header__title-logo-image {
    width: 100px;
  }
}
.p-tokuhain-list-header__title-text {
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-list-header__title-text {
    padding-top: 16px;
  }
}
.p-tokuhain-list-header__nav {
  margin-top: -16px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-list-header__nav {
    margin-top: -20px;
  }
}
.p-tokuhain-detail-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header {
    gap: 12px;
  }
}
.p-tokuhain-detail-header__items01 {
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-tokuhain-detail-header__items01 {
    border-bottom: 2px solid #000;
  }
}
.p-tokuhain-detail-header__items01-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__items01-inner {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-tokuhain-detail-header__items01-inner {
    padding-inline: 0;
  }
}
.p-tokuhain-detail-header__items01-item01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__items01-item01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.p-tokuhain-detail-header__items01-item02 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__items01-item02 {
    gap: 16px;
  }
}
.p-tokuhain-detail-header__logo-image {
  width: 64px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__logo-image {
    width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__sns {
    display: flex;
    justify-content: center;
  }
}
.p-tokuhain-detail-header__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.p-tokuhain-detail-header__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 0;
  margin-block: 0;
}
.p-tokuhain-detail-header__items02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-tokuhain-detail-header__items02 {
    padding-inline: 0;
  }
}
.p-tokuhain-detail-header__author {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__author {
    transition: 0.5s;
  }
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__author:hover {
    opacity: 0.7;
  }
}
.p-tokuhain-detail-header__author-image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.p-tokuhain-detail-header__author-detail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-detail-header__author-detail {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}
.p-tokuhain-detail-header__author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-tokuhain-detail-header__author-label {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-tokuhain-top-pickup {
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup {
    overflow-x: hidden;
  }
}
.p-tokuhain-top-pickup__list {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-left: 16px;
  margin-block: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__list {
    display: grid;
    align-items: flex-start;
    gap: 24px 12px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
  }
}
.p-tokuhain-top-pickup__item {
  list-style-type: none;
  width: 232px;
  flex-shrink: 0;
  padding: 4px 0;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__item {
    min-width: 0;
    width: 100%;
    height: 100%;
  }
}
.p-tokuhain-top-pickup__link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__link {
    transition: opacity 0.5s;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__link:hover {
    opacity: 0.7;
  }
}
.p-tokuhain-top-pickup__card {
  background-color: var(--color-background-bg-white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__card {
    padding: 0;
    gap: 0;
  }
}
.p-tokuhain-top-pickup__card-image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__card-image {
    aspect-ratio: 176/120;
  }
}
.p-tokuhain-top-pickup__card-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__card-content {
    gap: 4px;
  }
}
.p-tokuhain-top-pickup__card-title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: var(--color-text-black);
}
@media screen and (min-width: 768px) {
  .p-tokuhain-top-pickup__card-title {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.p-tokuhain-top-pickup__card-date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-tokuhain-top-pickup__card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 0;
}
.p-tokuhain-top-pickup__card-author-image {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.p-tokuhain-top-pickup__card-author-name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}
.p-tokuhain-list-articles {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  background-color: var(--color-background-bg-yellow);
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-tokuhain-list-articles {
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.p-news-top-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.p-news-top-header__title {
  padding: 12px 16px 0;
}
@media screen and (min-width: 768px) {
  .p-news-top-header__title {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-news-top-header__title {
    padding-inline: 0;
  }
}
.p-news-top-header-articles__link {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow: hidden;
  align-items: center;
  text-decoration: none;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .p-news-top-header-articles__link {
    flex-direction: row;
    gap: 16px;
  }
}
.p-news-top-header-articles__content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-news-top-header-articles__content {
    padding-inline: 0;
  }
}
.p-news-top-header-articles__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-news-top-header-articles__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p-news-top-header-articles__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-news-top-header-articles__image {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/300;
}
@media screen and (min-width: 1024px) {
  .p-news-top-header-articles__image {
    border-radius: 0 4px 4px 0;
  }
}
.p-news-list-header {
  padding: 12px 16px 0;
}
@media screen and (min-width: 768px) {
  .p-news-list-header {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-news-list-header {
    padding-inline: 0;
  }
}
.p-news-detail-title-area {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.p-news-detail-title-area__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-news-detail-title-area__header {
    gap: 16px;
    padding-inline: 0;
  }
}
.p-news-detail-title-area__items01 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.p-news-detail-title-area__items02 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-news-detail-title-area__items02 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.p-news-detail-title-area__items02-item01 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-news-detail-title-area__items02-item01 {
    flex: 1;
  }
}
.p-news-detail-title-area__items02-item02 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.p-news-detail-title-area__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-news-top-latest-news,
.p-news-list-latest-news {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-release-top-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.p-release-top-header__title {
  padding: 12px 16px 0;
}
@media screen and (min-width: 768px) {
  .p-release-top-header__title {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-release-top-header__title {
    padding-inline: 0;
  }
}
.p-release-top-header-articles__link {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow: hidden;
  align-items: center;
  text-decoration: none;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .p-release-top-header-articles__link {
    flex-direction: row;
    gap: 16px;
  }
}
.p-release-top-header-articles__content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-release-top-header-articles__content {
    padding-inline: 0;
  }
}
.p-release-top-header-articles__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-text-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-release-top-header-articles__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p-release-top-header-articles__date {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-gray-55);
}
.p-release-top-header-articles__image {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/300;
}
@media screen and (min-width: 1024px) {
  .p-release-top-header-articles__image {
    border-radius: 0 4px 4px 0;
  }
}
.p-release-list-header {
  padding: 12px 16px 0;
}
@media screen and (min-width: 768px) {
  .p-release-list-header {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-release-list-header {
    padding-inline: 0;
  }
}
.p-release-detail-title-area {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.p-release-detail-title-area__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-release-detail-title-area__header {
    gap: 16px;
    padding-inline: 0;
  }
}
.p-release-detail-title-area__items01 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.p-release-detail-title-area__items02 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-release-detail-title-area__items02 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.p-release-detail-title-area__items02-item01 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-release-detail-title-area__items02-item01 {
    flex: 1;
  }
}
.p-release-detail-title-area__items02-item02 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.p-release-detail-title-area__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
}
.p-release-top-latest-release,
.p-release-list-latest-release {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-tags-list {
  padding: 16px;
  background-color: var(--color-background-bg-white);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-tags-list {
    padding: 24px;
  }
}
.p-tags-list__item {
  list-style-type: none;
}
.p-tags-list__link {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-black);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-tags-list__link {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-tags-list__link {
    transition: opacity 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .p-tags-list__link:hover {
    opacity: 0.7;
  }
}
.p-error {
  padding: 128px 16px;
}
.p-error__inner {
  max-width: 1128px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-error__inner {
    gap: 48px;
  }
}
.p-error__title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .p-error__title {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.p-error__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .p-error__text {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
.p-error__footer {
  display: flex;
  justify-content: center;
}
.p-list-list-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: 16px;
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .p-list-list-header {
    padding-inline: 0;
    margin-top: 16px;
  }
}
.p-list-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-list-list__link {
  text-decoration: none;
}
.p-page-detail-title-area {
  padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
  .p-page-detail-title-area {
    padding-inline: 0;
  }
}
.p-photo-detail,
.p-photo-detail__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-photo-detail__main {
    gap: 16px;
  }
}
.p-photo-detail__main-title {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .p-photo-detail__main-title {
    border-bottom: 1px solid #000;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-photo-detail__main-title {
    padding-inline: 0;
  }
}
.p-photo-detail__splide-arrows {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-photo-detail__splide-arrows {
    display: block;
    z-index: 2;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-photo-detail__splide-arrow--prev,
  .p-photo-detail__splide-arrow--next {
    position: absolute;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    line-height: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-icon-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    padding: 0;
  }
  .p-photo-detail__splide-arrow--prev:focus-visible,
  .p-photo-detail__splide-arrow--next:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
  }
}
@media screen and (min-width: 1024px) {
  .p-photo-detail__splide-arrow--prev {
    transform: rotate(180deg);
    left: -16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-photo-detail__splide-arrow--next {
    right: -16px;
  }
}
.p-photo-detail__splide-slide {
  opacity: 0.6;
}
.p-photo-detail__splide-slide.is-active {
  opacity: 1;
}
.p-photo-detail__splide-image {
  aspect-ratio: 788/442;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  background-color: var(--color-background-bg-gray-ee);
}

.hide-on-pc {
  display: block;
}

.show-on-pc {
  display: none;
}

@media (min-width: 1024px) {
  .hide-on-pc {
    display: none;
  }

  .show-on-pc {
    display: block;
  }
}