/* ======================================== *
 * SP Only
 * ======================================== */
@media screen and (max-width: 700px) { /*SP*/
:root {
    font-size: 16px;
}

.pc {
    visibility: hidden;
    position: absolute;
}

.sp {
    visibility: visible;
}

.f-small {
    font-size: 0.9rem;
    line-height: var(--lh);
}

.f-normal {
    font-size: 1rem;
    line-height: var(--lh);
}

.f-large {
    font-size: 1.4rem;
    line-height: var(--lh);
}

.f-huge {
    font-size: 2rem;
    line-height: var(--lh);
}

/* ======================================== *
 * 全ページ共通
 * ======================================== */
#header {
    grid-area: topbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-inline: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: var(--back-color);
    z-index: 15000;
}

#header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
}

#header-left {
    display: flex;
    justify-content: start;
    align-items: center;
}

.header-logo {
    width: 178px;
}

#header-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.header-padding {
    height: 50px;
}

.icon-instagram {
    width: 25px;
}

.icon-humb {
    width: 20px;
}

.icon-humb-close {
    width: 25px;
    margin: 9px 10px 0 auto;
}

.content {
    width: 90%;
    margin-inline: auto;
    padding: 0;
}

#nav-humb {
    width: 250px;
    background-color: var(--back-color);
    position: fixed;
    right: -250px;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 17000;
    transition: all 500ms;
}

.nav-humb-scrollbox {
    width: 100%;
    height: 100vh;
    padding: 0.5rem 2rem 2rem 2rem;
    overflow: auto;
    padding-top: 0.5rem;
}

.nav-humb-flexbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.nav-humb-category {
    display: block;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--char-color);
}

.nav-humb-icon {
    width: 1rem;
    margin-left: 0.25rem;
}




/* ======================================== */



#footer {
    width: 100%;
    margin: 4rem 0;
    color: var(--char-color);
    background-color: var(--back-color);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-nav-button {
    width: 220px;
}

.footer-logo {
    width: 93px;
    margin-top: 2rem;
    margin-inline: auto;
}

.footer-address {
    margin: 2rem 0 2rem 0;
    text-align: center;
}

.footer-document {
    display: block;
    width: fit-content;
    margin-inline: auto;
    border-bottom: solid 1px var(--company-color);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.footer-notes {
    margin: 2rem 0 4rem 0;
    font-size: 0.8rem;
    text-align: center;
}



/* ======================================== *
 * スライダー
 * ======================================== */
.slide-items {
    width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slide-items li {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.slide-items img {
  width: 100vw;
  height: 50vh;
  object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
      color: black;
}

.slick-dots {
    left: 50%;
    transform: translateX(-50%);
}

.zoom {
    animation: zoomin 10s linear 0s normal both;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* ======================================== *
 * TOP
 * ======================================== */
div.top-image {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.top-image-grid {
    display: grid;
    grid-template:
    "layer" auto / minmax(0, auto);
    /* gridの横幅をautoにしたい時はminmax関数で指定しないと子要素によってはサイズが広がってしまう */
}

.top-image-overlay {
    grid-area: layer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-caption {
    width: 90%;
    opacity: 1;
    z-index: 14000;
}

.top-image-inner {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.top-banner-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    width: 100%;
    margin-inline: auto;
    position: relative;
    top: -15px;
}

.top-banner {
    width: 135px;
}

.top-banner-mikkea {
    width: 264px;
}

.top-mark-news {
    width: 157px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

table.news {
    width: 90%;
    margin-inline: auto;
    border-top: solid 1px var(--company-color);
    border-collapse: collapse;
}

table.news td {
    border-bottom: solid 1px var(--company-color);
    height: 2.5rem;
    padding: 0.5rem 1rem 1rem 0;
    vertical-align: top;
}


/* ======================================== *
 * パララックス
 * ======================================== */
.fade-in {
    animation-name: fade-in-anime;
    animation-duration: 1500ms;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fade-in-anime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-left {
    animation-name: fade-left-anime;
    animation-duration: 1500ms;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fade-left-anime {
    0% {
        opacity: 0;
        /* transform: translateX(200px); */
        position: relative;
        top: 0px;
        left: 50px;
    }

    100% {
        opacity: 1;
        /* transform: translateX(0); */
        position: relative;
        top: 0px;
        left: 0px;
    }
}

.fade-left-trigger {
    opacity: 0;
}

.fade-right {
    animation-name: fade-right-anime;
    animation-duration: 1500ms;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fade-right-anime {
    0% {
        opacity: 0;
        /* transform: translateX(-200px); */
        position: relative;
        top: 0px;
        left: -50px;
    }

    100% {
        opacity: 1;
        /* transform: translateX(0); */
        position: relative;
        top: 0px;
        left: 0px;
    }
}

.fade-right-trigger {
    opacity: 0;
}

/* ======================================== *
 * コンテンツページ共通
 * ======================================== */
.spc-cont-wide {
    height: 2rem;
}

.spc-cont-narrow {
    height: 1rem;
}

.flex-box1 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 2rem;
    width: 100%;
    margin-inline: auto;
}

.flex-box2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 2rem;
    width: 100%;
    margin-inline: auto;
}

.box-left {
    width: 100%;
}

.box-right {
    width: 100%;
}

.button-content {
    display: inline-block;
    width: 218px;
}

.flex-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-map {
    width: 38px;
    transition: all 500ms;
}

.icon-map:hover {
    transform: scale(1.1);
    transition: all 500ms;
}

/* ======================================== *
 * 在宅型有料老人ホーム
 * ======================================== */
.page01-banner-medical {
    width: 80%;
}

.page01-salesflow-bg {
    background-color: #f0f5d9;
}

.page01-salesflow-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 90%;
    margin-inline: auto;
    padding-bottom: 40px;
    background-color: #f0f5d9;
}

.page01-salesflow-left {
    width: 100%;
    padding: 20px 0;
}

.page01-salesflow-right {
    width: 100%;
    border-left: solid 6px var(--color01);
    border-right: solid 6px var(--color01);
    padding: 0 10px;
}

.page01-salesflow-subject {
    width: auto;
    height: 32px;
}

.page01-parag {
    margin: 0.5rem 0;
}

.page01-month {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--color01);
}

.page01-lifecraftaio {
    font-size: 0.65rem;
    line-height: 1.2;
}

.page01-price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 0;
    color: var(--color01);
}

.page01-priceunit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color01);
}

.page01-shortest {
    width: fit-content;
    margin-inline: auto;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(transparent 70%, #ffee00 50%);
}

.page01-iconflow {
    width: 80px;
}

.page01-flow-box {
    display: flex;
    gap: 0.5rem;
}

.page01-flow-pad {
    height: 8px;
}

.page01-flow-subject {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-left: -0.75rem;
}

.page01-icon {
    width: 64px;
}

.label-facility-box-color01 {
    width: 100%;
    height: 1rem;
    margin-top: 1rem;
    border-top: solid 1px var(--color01);
    overflow: visible;
}

.label-facility-color01 {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.1;
    padding: 0.3em 1.6em 0.4em 0.8em;
    color: var(--char-color-w);
    position: relative;
    z-index: 1;
}

.label-facility-color01::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--color01);
    transform: scaleY(0.65) perspective(.5em) rotateX(-2deg);
    transform-origin: bottom left;
}

.line-facility-color01 {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    border-bottom: solid 1px var(--color01);
}

/* ======================================== *
 * デイサービス
 * ======================================== */
.page02-flow-box {
    grid-area: layer;
    width: 100%;
    padding: 0 5%;
    position: relative;
    background-color: #FCE2BB;
}

.page02-flow-title {
    width: 80vw;
    margin-inline: auto;
    border-radius: 8px;
    padding: 0 1rem;
    position: relative;
    top: -1.5rem;
    left: 0;
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 700;
    color: var(--char-color-w);
    background-color: var(--color02);
    text-align: center;
}

.page02-flow-pickup {
    width: 50vw;
    margin-inline: auto;
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 700;
    color: var(--color02);
    background-color: var(--back-color);
    text-align: center;
}

.page02-flow-arrow {
    width: 35px;
    margin-bottom: 1rem;
    margin-inline: auto;
    font-size: 0;
    vertical-align: middle;
}

.page02-flow-cont {
    width: 90vw;
    margin-inline: auto;
    border-radius: 8px;
    padding: 1rem;
    background-color: var(--back-color);
}

.page02-flow-cont-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
}

.page02-flow-cont-inner2 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    position: relative;
    top: 0;
    left: -0.5rem;
}

.page02-overlay-photo {
    width: 150px;
    position: absolute;
    top: -160px;
    right: 10px;
    z-index: -1;
}

.page02-mark-oct {
    width: 70px;
    height: 70px;
    position: relative;
    top: 0;
    left: 0;
}

.page02-mark-time {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--char-color-w);
    font-size: 1.1rem;
    font-weight: 700;
}

.page02-flow-subject {
    color: var(--color02);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
}

.page02-ul {
    list-style-type: none;
    padding-left: 0;
}

.page02-li {
    display: flex;
    align-items: flex-start;
}

.page02-li::before {
    content: "■";
    flex-shrink: 0; 
    margin-right: 4px;
    color: var(--color02);
    font-size: 1rem;
}

.page02-paragraph {
    width: 100%;
}

.label-facility-box-color02 {
    width: 100%;
    height: 1rem;
    margin-top: 1rem;
    border-top: solid 1px var(--color02);
    overflow: visible;
}

.label-facility-color02 {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.1;
    padding: 0.3em 1.6em 0.4em 0.8em;
    color: var(--char-color-w);
    position: relative;
    z-index: 1;
}

.label-facility-color02::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--color02);
    transform: scaleY(0.65) perspective(.5em) rotateX(-2deg);
    transform-origin: bottom left;
}

.line-facility-color02 {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    border-bottom: solid 1px var(--color02);
}

/* ======================================== *
 * 訪問看護
 * ======================================== */
.label-facility-box-color03 {
    width: 100%;
    height: 1rem;
    margin-top: 1rem;
    border-top: solid 1px var(--color03);
    overflow: visible;
}

.label-facility-color03 {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.1;
    padding: 0.3em 1.6em 0.4em 0.8em;
    color: var(--char-color-w);
    position: relative;
    z-index: 1;
}

.label-facility-color03::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--color03);
    transform: scaleY(0.65) perspective(.5em) rotateX(-2deg);
    transform-origin: bottom left;
}

.line-facility-color03 {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    border-bottom: solid 1px var(--color03);
}

/* ======================================== *
 * 訪問介護
 * ======================================== */
.page04-sales-point-box {
    display: flex;
    justify-content: center;
}

.label-facility-box-color04 {
    width: 100%;
    height: 1rem;
    margin-top: 1rem;
    border-top: solid 1px var(--color04);
    overflow: visible;
}

.label-facility-color04 {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.1;
    padding: 0.3em 1.6em 0.4em 0.8em;
    color: var(--char-color-w);
    position: relative;
    z-index: 1;
}

.label-facility-color04::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--color04);
    transform: scaleY(0.65) perspective(.5em) rotateX(-2deg);
    transform-origin: bottom left;
}

.line-facility-color04 {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    border-bottom: solid 1px var(--color04);
}

/* ======================================== *
 * 居宅介護支援事業所
 * ======================================== */
.page05-flex-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 4rem;
    width: 100%;
    margin: 2rem 0 1rem 0;
}

.page05-flex-left {
    width: 100%;
}

.page05-flex-right {
    width: 100%;
}

.page05-flow-subject {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 0.75rem;
    text-align: center;
}

.label-facility-box-color05 {
    width: 100%;
    height: 1rem;
    margin-top: 1rem;
    border-top: solid 1px var(--color05);
    overflow: visible;
}

.label-facility-color05 {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.1;
    padding: 0.3em 1.6em 0.4em 0.8em;
    color: var(--char-color-w);
    position: relative;
    z-index: 1;
}

.label-facility-color05::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--color05);
    transform: scaleY(0.65) perspective(.5em) rotateX(-2deg);
    transform-origin: bottom left;
}

.line-facility-color05 {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    border-bottom: solid 1px var(--color05);
}

/* ======================================== *
 * 放課後等デイサービス
 * ======================================== */
.page06-flex-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.page06-hp-img {
    width:50%;
    margin: 1rem auto 0 auto;
}

.label-facility-box-color06 {
    width: 100%;
    height: 1rem;
    margin-top: 1rem;
    border-top: solid 1px var(--color06);
    overflow: visible;
}

.label-facility-color06 {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.1;
    padding: 0.3em 1.6em 0.4em 0.8em;
    color: var(--char-color-w);
    position: relative;
    z-index: 1;
}

.label-facility-color06::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--color06);
    transform: scaleY(0.65) perspective(.5em) rotateX(-2deg);
    transform-origin: bottom left;
}

.line-facility-color06 {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    border-bottom: solid 1px var(--color06);
}

/* ======================================== *
 * 会社概要
 * ======================================== */
.aboutus-line {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
    border-bottom: solid 1px var(--company-color);
}

ul.aboutus {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  line-height: 2rem;
}

ul.aboutus li {
  position: relative;
  padding-left: 1em;
}

ul.aboutus li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--company-color);
  font-weight: bold;
}

.aboutus-flex {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.aboutus-img {
    width: 88vw;
    margin-inline: auto;
}

/* ======================================== *
 * M&A・事業承継
 * ======================================== */
.ma-flex-box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 3rem;
    width: 80%;
    margin-inline: auto;
}

.ma-flex-inner {
    width: 100%;
}

.ma-require {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    color: var(--company-color);
    text-align: center;
}

.ma-icon-arrow {
    width: 40px;
    margin: 0 auto 0.5rem auto;
}

.ma-banner-form {
    width: 292px;
    margin-inline: auto;
}

.ma-tel {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

/* ======================================== *
 * 新着情報
 * ======================================== */
.news-mark-news {
    width: 272px;
    margin-inline: auto;
}

.news-flex-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.news-flex-inner {
    width: 100%;
}

.news-list {
    width: 100%;
    margin-inline: auto;
}

.news-date {
    width: 6rem;
}

/* ======================================== *
 * 求人情報
 * ======================================== */
.recruit-mark-recruit {
    width: 272px;
    margin-inline: auto;
}

.recruit-box {
    width: 100%;
}

.recruit-head {
    width: 6rem;
    vertical-align: top;
}

.recruit-flex {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.recruit-list-box {
    width: 58vw;
}

.recruit-list-img {
    width: 58vw;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.recruit-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ======================================== *
 * お問い合わせ
 * ======================================== */
.contact-mark-require {
    width: 272px;
    margin-inline: auto;
}

.contact-text {
    text-align: left;
}

.contact-flex-box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0.5rem;
}

input.contact {
    width: 100%;
    border: solid 1px var(--company-color);
    padding: 0.5rem;
    font-size: 1rem;
}

select.contact {
    width: 100%;
    border: solid 1px var(--company-color);
    padding: 0.5rem;
    font-size: 1rem;
    padding-right: 1rem; /* 矢印分の余白 */
    appearance: none; /* 矢印を消す */
    -webkit-appearance: none; /* Safari用 */
    -moz-appearance: none;    /* Firefox用 */
    background: #fff url("../images/contact/select-arrow.png") no-repeat right center;
}

textarea.contact {
    width: 100%;
    height: 15rem;
    border: solid 1px var(--company-color);
    padding: 0.5rem;
    font-size: 1rem;
}

.contact-button-send {
    width: 292px;
    margin-inline: auto;
    cursor: pointer;
    user-select: none;
    transition: all 500ms;
}

.contact-button-send:hover {
    transform: scale(1.05);
    transition: all 500ms;
}

/* ======================================== *
 * 福祉施設検索サイト
 * ======================================== */
.mikkea-catch {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--mikkea-color);
}

.mikkea-logo {
    width: 62vw;
}

.mikkea-catch2 {
    /* margin-bottom: 2rem; */
    font-size: 1.2rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--mikkea-color2);
}

.mikkea-banner {
    width: 54vw;
    margin-inline: auto;
}

.mikkea-line-box {
    height: 60px;
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
}

.mikkea-line {
    height: 20px;
    border-bottom: solid 2px var(--mikkea-color);
}

.mikkea-label {
    display: inline-block;
    width: 62vw;
    height: 40px;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: calc(50% - 62vw / 2);
    color: var(--char-color-w);
    background-color: var(--mikkea-color);
    font-size: 1.3rem;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
}

.mikkea-pr {
    margin-bottom: 0.5rem;
    color: var(--mikkea-color2);
    font-size: 1.25rem;
    text-align: center;
}

.mikkea-flex-box {
    display: flex;
    flex-direction: column;
}

.mikkea-box-left {
    width: 100%;
}

.mikkea-box-right {
    width: 100%;
}

.mikkea-icon-ex {
    width: 26px;
}

.mikkea-price {
    width: 80vw;
    margin-inline: auto;
}

.mikkea-price-banner {
    display: flex;
    align-items: center;
    width: 80vw;
    height: 64px;
    margin-inline: auto;
    border-radius: 32px;
    background: var(--mikkea-color);
    color: var(--char-color-w);
    padding: 12px 24px;
}

.mikkea-price-circle {
    width: 80px;
    height: 80px;
    border: solid 4px var(--mikkea-color);
    border-radius: 50%;
    background: var(--char-color-w);
    color: var(--mikkea-color);;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    box-sizing: border-box;
}

.mikkea-price-circle .mikkea-circle-bottom {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: 1.2;
}

.mikkea-price-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 50%;
}

.mikkea-price-main {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    position: relative;
    top: -0.1rem;
}

.mikkea-price-sub {
    font-size: 1rem;
}

.mikkea-icon-arrow {
    width: 20px;
    margin-inline: auto;
}

.mikkea-banner-form {
    width: 50vw;
    margin-inline: auto;
}

.mikkea-banner-manual {
    width: 45vw;
    margin-inline: auto;
}

/* ======================================== *
 * 公開書類
 * ======================================== */
.documents-box {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.documents-cont {
    width: 100%;
}


/* SP */
}









/* 
 * PC: 1600px 基準（デザインが1920pxなら約0.8倍）
 * SP: 375px 基準（デザインが750pxなら0.5倍）
 */
