@charset "utf-8";

#content {
    width: 100%;
}

#contents {
    width: 100%;
    padding-bottom: 0;
}

.info-page.l-main {
    width: 100%;
    color: #333333;
    font-family: var(--font-family-jp);
    background: #fff;
    padding: 0;
}

/* =========================================
   Page Heading
   計測値: W:1140px, H:74px, gap:14px, padding:15px 0 20px
   ========================================= */
.page-heading {
    width: 1140px;
    margin: 0 auto;
    padding: 15px 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
}

.page-heading__line {
    width: 4px;
    height: 32px;
    background-color: #F6E24C;
    display: block;
}

.page-heading__title {
    margin: 0;
    color: #000000;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================================
   Main Body
   計測値: W:1140px, section gap:30px, padding-bottom:60px
   ========================================= */
.info-page__body {
    width: 1140px;
    margin: 0 auto;
    padding: 0 0 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    width: 1140px;
    padding: 0 0 29px;
    border-bottom: 1px solid #EAEAEA;
    box-sizing: border-box;
}

.info-section--last {
    padding-bottom: 0;
    border-bottom: none;
}

.info-section__title {
    width: 335px;
    margin: 0 0 10px;
    color: #D83C3C;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3182;
}

.info-section__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-section__content.info-section__content--adjust {
    gap: 0;
}

.info-section__content--narrow {
    gap: 3px;
    margin: 0 0 10px;
}

.info-section__block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-section__text {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.info-section__content--adjust>.info-section__text {
    margin: 0 0 14px;
}

.info-section__content--adjust>.info-section__text--adjust {
    margin: 0px 0 10px;
}

.info-section__text p {
    margin: 0;
    font-size: 16px;
}

.info-section__sub-title {
    margin: 0;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.info-section__list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.info-section__list li {
    font-size: 16px;
}

.info-section__notes,
.info-section__note {
    margin: 0;
    color: #9E9E9E;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.info-section__notes p {
    margin: 0;
    font-size: 16px;
    color: #9E9E9E;
}

.info-section__link {
    color: #D83C3C;
    text-underline-offset: 2px;
    font-size: 16px;
    position: relative;
}
.info-section__link:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 1px;
    background-color: #D83C3C;
    transform: scaleX(1);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.info-section__link:hover::after {
    transform: scaleX(0);
}

.info-section__text p + p,
.info-section__text p + .info-section__sub-list,
.info-section__text .info-section__sub-list + p {
    margin-top: 10px;
}

.info-section__sub-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-section__sub-list-item {
    margin: 0 0 0 1.8em;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-indent: -1.8em;
}

.info-section__info {
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    background-color: #F4F4F4;
}

.info-section__info p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #333333;
}

.info-section__info p + p,
.info-section__info a {
    margin-top: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #333333;
}

.info-section__info-name {
    margin: 0 0 5px;
    font-weight: 700;
}

.info-section__note-block {
    margin: 14px 0 0;
}

.info-section__note-block-ttl,
.info-section__note-block-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #9E9E9E;
}

.info-section__note-block-ttl {
    font-weight: 700;
}

.info-section__image {
    width: 231px;
    height: 119px;
    display: block;
}

/* =========================================
   Banner List
   計測値: gap:20px, item widths:88px/130px/160px
   ========================================= */
.banner-list {
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    list-style: none;
}

.banner-list__item {
    margin: 0;
    padding: 0;
}

.banner-list__label {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 3px;
}

.banner-list__image {
    display: block;
}

/* =========================================
   Notice Box
   計測値: W:1140px, padding:15px, radius:10px, gap:5px
   ========================================= */
.info-box {
    width: 1140px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: #F4F4F4;
    border-radius: 10px;
    box-sizing: border-box;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.info-box p {
    margin: 0;
}

/* =========================================
   Story
   計測値: title 18px, text 16px, block gap:10px
   ========================================= */
.story {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story__title {
    margin: 0;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.story__text p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.story__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================================
   Button
   計測値: W:220px, H:50px, border radius:6px
   ========================================= */
.button {
    width: 220px;
    height: 50px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 1.5px rgba(38, 50, 56, 0.2);
    cursor: pointer;
    appearance: none;
}

.button--outline {
    border: 1px solid #D83C3C;
    background-color: #FFFFFF;
    color: #D83C3C;
}

.button__text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.button__icon {
    width: 11px;
    height: 16px;
    position: absolute;
    top: 16px;
    right: 15px;
    display: block;
}

/* =========================================
   CM Modal
   計測値: overlay 1920x920, modal W:940px, padding:30px 60px 60px, radius:20px
   ========================================= */
.about-cm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.about-cm-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, visibility 0s;
}

.about-cm-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-cm-modal__content {
    width: 940px;
    padding: 30px 60px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: #FFFFFF;
}

.about-cm-modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.about-cm-modal__logo-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #EAEAEA;
    border-radius: 9999px;
    background-color: #FFFFFF;
}

.about-cm-modal__logo {
    width: 39px;
    height: 23px;
    display: block;
}

.about-cm-modal__title {
    margin: 0;
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.about-cm-modal__video {
    width: 820px;
    height: 461px;
    position: relative;
    overflow: hidden;
}

.about-cm-modal__iframe {
    width: 820px;
    height: 461px;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

.about-cm-modal__close {
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 11px;
    right: 8px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
}

.about-cm-modal__close-line {
    width: 40px;
    height: 2px;
    position: absolute;
    top: 27px;
    left: 8px;
    display: block;
    border-radius: 9999px;
    background-color: #CFCFCF;
}

.about-cm-modal__close-line:first-child {
    transform: rotate(45deg);
}

.about-cm-modal__close-line:last-child {
    transform: rotate(-45deg);
}