@charset "UTF-8";
/* --common-- */
html {
    overflow: auto;
  }
  
  body {
    display: block;
    overflow: hidden;
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
    background: #fff;
    font-family: "Noto Sans JP", "Helvetica", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.05rem;
    -webkit-text-size-adjust: none;
    padding-top: 60px;
  }
  .container {
    max-width: fit-content;
    margin: 0 auto;
  }
  .section-h2 {
    text-align: center;
    color: #00428E;
  }
  .h2-hr {
    width: 138px;
    height: 4px;
    background-color: #FF8800;
    border: none;
    margin: 0 auto 24px;
}
.marker {
    background: linear-gradient(transparent 55%, rgb(254, 254, 83,.7) 50%);
}
.pc-none {
    display: none;
}

@media (max-width:767px) {
    .section-h2 {
        font-size: 30px;
      }
}

  /* ------header------ */
  header {
    position: fixed; /*← fixedで固定 */
    width: 100%; 
    height: 60px; 
    background-color: #fff;
    padding: 40px 40px; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center;
    z-index: 99;
}
.header-container {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    display: flex;
}
.seicho-logo img {
    width: 64px;
    margin-top: 8px;
}
.header-cta {
    display: flex;
    justify-content: center;
}
.header-apply a {
    display: block;
    width: 196px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
}
.btn-org,a.btn-org {
    color: #fff;
    background: -webkit-gradient(45deg, #FCAF17 35%, #F36C21);
    background: linear-gradient(45deg, #FCAF17 35%, #F36C21);
}
.btn-org:hover,a.btn-org:hover {
    color: #fff;
    background: -webkit-gradient(45deg, #FFCE7B 35%, #FBB034);
    background: linear-gradient(45deg, #FFCE7B 35%, #FBB034);}
a.btn-radius{
    border-radius: 100vh;
}

@media (max-width: 767px) {
    .header {
        padding: 12px;
    }
    .header-contact {
        display: none ;
    }
    .header-apply {
        display: none ;
    }
    .header-apply-sp {
        display: block;
        width: 48px;
        margin-top: 8px;
        margin-right: 12px;
    }
    .lmp-logo img {
        width: 94px;
        margin-right: 12px;
        margin-top: 0;
    }
    .premium-logo img {
        width: 84px;
    }
}
  /* ------mv------ */
.mv-container img {
    width: 100%;
}
.pc-mv {
    display: block;
}
.sp-mv {
    display: none;
}

@media (max-width: 767px) {
    .pc-mv {
        display: none;
    }
    .sp-mv {
        display: block;
    }
    .pc-none {
        display: block;
    }
}

/* ------beginning ------ */
.beginning {
    padding: 48px;
    background-color: #E5F1FB;
}
.lead-sentence p {
    font-size: 20px ;
}
@media (max-width:767px) {
    .beginning {
        padding: 24px;
    }
    .lead-sentence p {
        font-size: 18px;
        line-height: 2rem;
    }
}

/* ------warehouse-image------ */
.wi-container {
    display: flex;
    align-items: center;
    height: 238px;
    overflow: hidden;
}
.image-slide {
    display: flex;
    animation: loop-slide 50s infinite linear 1s both;
}
@keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
.image-slide img {
    width: 300px;
}

/* ------schedule------ */
.schedule {
    background-color: #F6f6f6;
    padding-top: 24px;
}
.schedule-group {
    max-width: 1080px;
    justify-content: space-around;
    align-items: center;
}
.schedule-group h2 {
    text-align: center;
}
.schedule-group p {
    font-size: 20px;
    margin: 24px;
}

.solution {
    padding-bottom: 24px;
    max-width: fit-content;
    margin: 0 auto;
}
.solution p {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

@media (max-width:767px) {
    .schedule-group h2 {
        font-size: 24px;
    }
    .schedule-group p {
        font-size: 16px;
    }
    .solution p {
        font-size: 24px;
    }
}

/* ------access------ */
.access {
    background-color: #E5F1FB;
    padding-top: 24px;
}
.access-container {
    display: flex;
    justify-content: space-between;
    padding: 24px;
}
.access-explain {
    width: 520px;
}
.address {
    font-size: 24px!important;
}
.access-title {
    font-size: 24px!important;
}
.access-explain p {
    font-size: 18px;
}
.access-hr {
    width: 360px;
    border: solid 1px #333;
    margin: 12px 0 12px 0;
}
.access-map {
    max-width: 480px;
}

@media (max-width:767px) {
    .access-container {
        flex-direction: column;
        align-items: center;
    }
    .access-explain {
        max-width: 320px;
        margin-bottom: 24px;
    }
    .address {
        font-size: 20px!important;
    }
    .access-title {
        font-size: 20px!important;
    }
    .access-hr {
        margin: 0 auto;
    }
    .access-map iframe {
        width: 320px;
        height: 320px;
    }

}

/* ------highlights------ */
.highlights {
    background-color: #f6f6f6;
    padding-top: 24px;
}
.highlights-group {
    display: flex;
    max-width: 1080px;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 24px;
}
.highlights-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 8px gray;
    width: 340px;
    padding: 8px;
    margin: 24px;
}
.highlights-items img {
    width: 320px;
    margin-bottom: 24px;

}
.items-h {
    font-size: 16px;
}
.items-p {
    font-size: 16px;
    text-align: center;
}

@media (max-width:767px) {
    .highlights-group {
        flex-direction: column;
    }
    .highlights-items {
        margin: 24px 0;
    }
}

/* ------recommend------ */
.recommend {
    background-color: #D4DFEC;
    padding-top: 24px;
}
.recommend-container {
    width: 720px;
    margin: 0 auto;
    padding-bottom: 24px;
}
.recommend-list {
    margin-bottom: 24px;
}
.recommend-list li {
	list-style-position: inside;
}
.note {
    font-size: 16px;
}
@media (max-width:767px) {
    .recommend-container {
        max-width: 324px;
    }
    .recommend-list li {
        font-size: 18px;
    }
    .note {
        font-size: 14px;
    }
}

/* ------cta------ */
.cta {
    position: relative;
    padding: 96px;
    background-image: url(../img/cta_background.jpg);
    background-size: cover;
}
.cta::after {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(242, 242, 242, 0.7);
}
.md-cta {
    position: relative;
    z-index: 1;
}
.md-cta a {
    display: block;
    width: 380px;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
}
.end-cta {
    padding: 72px;
    background-color: #E5F1FB;
}


@media (max-width:767px) {
    .cta {
        padding: 48px;
    }
    .cta p {
        font-size: 18px;
    }
    .md-cta a {
        max-width: 240px;
    }
    .md-cta {
        flex-direction: column;
    }
    .md-contact a {
        margin-bottom: 24px;
    }
}

/* ------faq------ */
.faq {
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #E5F1FB;
}
.faq-container {
    width: 1080px;
    margin: 0 auto;
}
.qa-1 {
    margin-bottom: 7px;
    border: 1px solid #d6dde3;
    border-radius: 5px;
    font-size: 20px;
    background-color: #fff;
}

.qa-1 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-1 summary::before,
.qa-1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-1 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-1[open] summary::after {
    transform: rotate(225deg);
}

.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-1[open] p {
    transform: none;
    opacity: 1;
}

.qa-1 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

@media (max-width:767px) {
    .faq-container {
        max-width: 360px;
        padding: 12px;
    }
    .qa-1 {
        font-size: 18px;
    }
}

/* ------about-company------ */
.about-company {
    padding: 24px;
}

.about__title span {
    color: #22267a;
}

.section-title {
    margin-bottom: 20px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.1rem;
}

.section-title span {
    display: block;
    font-size: 1.6rem;
    /* color: #a9ddf7; */
}

.about__table {
    margin: 0 auto 30px;
}

.about__table td,
.about__table th {
    padding: 1px 2px;
}

.about__table th {
    text-align: right;
}

.about__table span {
    display: block;
}

.about__logo {
    display: block;
    max-width: 210px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .about {
        padding: 60px 0;
    }
    .about__table {
        margin-bottom: 50px;
    }
    .about__table td,
    .about__table th {
        font-size: 1.2rem;
        letter-spacing: 0.1rem;
    }
    .about__table span {
        display: inline;
        padding-left: 10px;
    }
}

@media (max-width: 767px) {
    .about-company {
        padding: 8px;
    }

    .about__table th {
        text-align: left;
        font-size: 16px;
    }
    .about__table td {
        font-size: 16px;
    }
}

/* ------footer------ */
.lp-sec-footer {
    background-color: #333;
}

.lp-sec-footer>.lp-block .lp-copyright {
    color: #fff;
    font-size: 16px;
}

.footer {
    padding: 20px 30px 40px;
    background: #333333;
    font-size: 1.3rem;
    color: #fff;
}

.footer a {
    color: #fff!important;
}

.footer a:visited {
    color: #fff;
}

.footer__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer__list {
    margin-bottom: 20px;
}
.footer__list li {
    list-style-type: none;
}

.footer__item {
    padding: 5px;
}

.footer__copy {
    text-align: center;
}
.footer__copy {
    font-size: 16px;
}

@media screen and (max-width: 560px) {
    .lp-sec-footer>.lp-block .lp-copyright {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .footer {
        padding-bottom: 20px;
    }
    .footer__list {
        display: flex;
        margin-bottom: 12px;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    .footer__item {
        padding: 10px;
    }
}
@media (max-width: 767px) {
    .footer__list li {
        font-size: 16px;
    }
}

/* ======================================== */

/* ===mail-form=== */
.mail-form {
    padding: 24px;
    background-color: #fff;
    font-size: 1rem;
}
.mail-form h2 {
    font-size: 48px;
    line-height: 3.5rem;
    margin-bottom: 24px;
}
.form-h2 {
    font-size: 36px;
}
.mail-form h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}
@media (max-width:767px) {
    .mail-form {
        font-size: 1.6rem;
    }
    .mail-form h2 {
        font-size: 32px;
        line-height: 3rem;
    }
    .form-h2 {
        font-size: 24px;
    }
    .mail-form h3 {
        font-size: 16px;
        text-align-last: left;
    }
}

/* Features Section */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-top: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-sub);
}
.features {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 80px;
}
.feature-image {
    margin-bottom: 20px;
}

.feature-image img {
    width: 200px;        /* ← 基本サイズ */
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.features-summary {
    max-width: 720px;        /* ← 読みやすい横幅 */
    margin: 60px auto 0;     /* ← カードとの距離 */
    text-align: center;
    font-size: 1rem;         /* 一般的な本文サイズ */
    line-height: 1.8;
    color: var(--color-text-sub);
}
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* スマートフォン */
@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-image img {
        width: 100px;
    }

    .feature-card {
        padding: 24px 20px;
    }
}