/*------------------------------------------
設定
------------------------------------------*/

:root {
    /* サイト幅 */
    --site-width: 1275px;

    /* 余白 */
    --section-padding-y: 80px;
    --tb-section-padding-y: 80px;
    --sp-section-padding-y: 4rem;
}

/*------------------------------------------
reset
------------------------------------------*/

@media screen and (max-width: 1304px) {
    #Contents {
        padding-left: 0!important;
        padding-right: 0!important;
    }
}

@media screen and (max-width: 767px) {
    #Contents {
        padding: 0!important;
    }
}

/*------------------------------------------
基本設定
------------------------------------------*/

section {
    padding: var(--section-padding-y) 0;
}

.wrapper {
    max-width: var(--site-width);
    margin: 0 auto;
}

h2.underline {
    border: none;

    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-decoration: none;
}

h2.underline::after {
    top: unset;
    border: none;

    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5dbde0;
    border-radius: 2px;
}

@media screen and (max-width: 767px) {
    h2.underline {
        font-size: 1.4rem;
    }
}

a.back-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 334px;
  height: 62px;
  margin: 60px auto 0;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  border: 2px solid #5dbde0;
  background: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}

a.back-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url(/event/expo2025/report/images/icon_button.svg) no-repeat center / contain;
}

a.back-button:hover {
  background: #e7f9ff;
}

@media screen and (max-width: 767px) {
    a.back-button {
        width: 315px;
        font-size: 1rem;
    }

    a.back-button::after {
        width: 20px;
        height: 20px;
    }
}

.sp-only {
    display: none;
}

@media (max-width: 1315px) {
    .wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 1100px) {
    .wrapper {
        overflow: hidden;
    }
}

@media (max-width: 1024px) {
    section {
        padding: var(--tb-section-padding-y) 0;
    }

    .pc-only {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    section {
        padding: var(--sp-section-padding-y) 0;
    }

    .wrapper {
        overflow: hidden;
        padding: 0 20px;
    }

    .not-sp {
        display: none;
    }

    .sp-only {
        display: unset;
    }
}

/*------------------------------------------
main-visual
------------------------------------------*/

.main-visual {
    padding-bottom: 0;
}

.main-visual .content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.main-visual h1 {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.main-visual .image-box {
    max-width: 1070px;
    margin: 0 auto;
}

.main-visual .image-box img {
    width: 100%;
}

.main-visual .pr {
    color: #294c93;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.main-visual .text-box {
    margin: 0 auto;
    padding: 22px 82px;
    border: 1px solid #c1bfbf;
    background: #f8f8f8;
}

.main-visual .text-box ul li {
    display: grid;
    grid-template-columns: 80px 1fr;
    position: relative;
}

.main-visual .text-box ul li .title::after {
    content: "：";
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 767px) {
    .main-visual {
        padding-top: 40px;
    }

    .main-visual .pr {
        font-size: 1.4rem;
    }

    .main-visual .text-box {
        padding: 1rem;
        font-size: .9rem;
    }

    .main-visual .text-box ul li {
        grid-template-columns: 72px 1fr;
    }
}

/*------------------------------------------
overview
------------------------------------------*/

.overview p {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.44px;
}

.overview ul {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
}

.overview ul li {
    max-width: 394px;
}

.overview ul li img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .overview p {
        font-size: 1rem;
    }

    .overview ul {
        margin-top: 1rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/*------------------------------------------
keynote
------------------------------------------*/

.keynote {
    background: #f2f2f2;
}

.keynote p {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.44px;
}

.keynote .card-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
}

.keynote .card-list .card {
    background: #fff;
    max-width: 394px;
}

.keynote .card-list .card a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.keynote .card-list .card a:hover {
    opacity: 0.8;
}

.keynote .card-list .card a .image-box {
    overflow: hidden;
    border: 1px solid #d0cfcf;
    position: relative;
}

.keynote .card-list .card a .image-box.video::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 70px;
    background: url(/event/expo2025/report/images/player_button.png) no-repeat center / contain;
}

.keynote .card-list .card a img {
    width: 100%;
    transition: all 0.3s;
}

.keynote .card-list .card a:hover img {
    transform: scale(1.05);
}

.keynote .card-list .card .text-box {
    padding: 28px 22px;
}

.keynote .card-list .card .text-box .profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.keynote .card-list .card .text-box .profile.large {
    min-height: 132px;
}

.keynote .card-list .card .text-box .profile p {
    color: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0.6px;
}

.keynote .card-list .card .text-box h3 {
    margin-top: 16px;
    color: #333;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.keynote .card-list .card .text-box h3.large {
    min-height: 91px;
}

.keynote .card-list .card .text-box .text {
    margin-top: 16px;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.6px;
}

@media screen and (max-width: 1262px) {
    .keynote .card-list .card .text-box .profile.large {
        min-height: 149px;
    }
}

@media screen and (max-width: 1201px) {
    .keynote .card-list .card .text-box .profile.large {
        min-height: 166px;
    }
}

@media screen and (max-width: 767px) {
    .keynote p {
        font-size: 1rem;
    }

    .keynote .card-list {
        margin-top: 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .keynote .card-list .card .text-box h3.large,
    .keynote .card-list .card .text-box .profile.large {
        min-height: unset;
    }
}

/*------------------------------------------
solutions
------------------------------------------*/

.solutions .list-box {
    display: flex;
    gap: 80px;
}

.solutions .list-box h3 {
    margin-top: 30px;
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    position: relative;
    padding-left: 18px;
}

.solutions .list-box h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
}

.solutions .list-box .dx h3::before {
    background: #937738;
}

.solutions .list-box .security h3::before {
    background: #4b6f7c;
}

.solutions .list-box .solution-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: baseline;
    gap: 28px;
}

.solutions .list-box .solution-list .solution p {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.solutions .list-box .solution-list .solution .description {
    margin-top: 2px;
    color: #4e4e4e;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.6px;
}

.solutions .list-box .solution-list .solution .description-list {
    margin-top: 4px;
    padding-left: 14px;
}

.solutions .list-box .solution-list .solution .description-list li {
    position: relative;
    color: #4e4e4e;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.6px;
}

.solutions .list-box .solution-list .solution .description-list li::before {
    content: "・";
    display: inline-block;
}

.solutions .list-box .security-box {
    display: flex;
    gap: 40px;
}

@media screen and (max-width: 767px) {
    .solutions .list-box {
        padding-left: .5rem;
        flex-direction: column;
        gap: 2rem;
    }

    .solutions .list-box .security-box {
        flex-direction: column;
        gap: 1rem;
    }

    .solutions .list-box .dx h3 {
        margin-top: 0;
    }

    .solutions .list-box .security-box .solution-list:last-child {
        margin-top: 20px;
    }
}

/*------------------------------------------
hero
------------------------------------------*/

.hero {
    margin-top: -20px;
    background: url(/event/expo2025/report/images/hero_bg.png) no-repeat center / cover;
}

.hero .intro {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
}

.hero h1 {
    margin-top: 28px;
    color: #fff;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.hero ul {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero ul li {
    background: #fff;
    padding: 34px;
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 34px;
}

.hero ul li .image-box img {
    width: 100%;
}

.hero ul li .text-box .company {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.7px;
}

.hero ul li .text-box .name {
    margin-top: 24px;
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

@media screen and (max-width: 767px) {
    .hero {
    margin-top: 0;
    }

    .hero .intro {
        font-size: 1.2rem;
    }

    .hero h1 {
        margin-top: 1rem;
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .hero ul {
        margin-top: 1rem;
        grid-template-columns: 1fr;
    }

    .hero ul li {
        padding: 1rem;
        gap: 1rem;
    }

    .hero ul li .text-box .company {
        font-size: .8rem;
    }

    .hero ul li .text-box .name {
        font-size: 1.4rem;
        margin-top: .5rem;
    }
}

/*------------------------------------------
report-content
------------------------------------------*/

.report-content .video-text {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.report-content .video-text .video-box {
    width: 685px;
    height: 385.313px;
    flex-shrink: 0;
}

.report-content .video-text .video-box iframe {
    width: 100%;
    aspect-ratio: 452 / 255;
    height: auto;
    border: 0;
}

.report-content .video-text .text-box .text {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.44px;
}

.report-content .footnote {
    margin-top: 60px;
    padding-left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.report-content .footnote li {
    font-size: .8rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .report-content .video-text {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .report-content .video-text {
        flex-direction: column;
        align-items: center;
    }

    .report-content .video-text .video-box {
        width: 100%;
        height: auto;
    }

    .report-content .video-text .text-box .text {
        font-size: 1rem;
    }
}

/*------------------------------------------
report-content.article
------------------------------------------*/

.report-content.article .wrapper {
    max-width: 900px;
}

.report-content.article h2 {
    padding-top: 60px;
    font-size: 1.2rem;
}

.report-content.article .intro {
    padding: 30px;
    background: #e8f6fd;
    border-radius: 20px;
}

.report-content.article .index {
    padding: 40px;
    border: 1px solid #5dbde0;
    background: #fff;
}

.report-content.article .index h2 {
    padding-top: 0;
}

.report-content.article .index ol {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.report-content.article .index a {
    color: #333;
    text-decoration: none;
}

.report-content.article .index a:hover {
    color: #b1000e;
}

.report-content.article figure {
    margin: 40px;
}

.report-content.article figure img {
    width: 100%;
}

.report-content.article figure figcaption {
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.6px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .report-content.article .index {
        padding: 1rem;
    }

    .report-content.article .index ol {
        padding-left: 1.5rem;
    }

    .report-content.article figure {    
        margin: 2rem 0;
    }
}