/* ======================================== *
 * 変数
 * ======================================== */
:root {
    --font: "Zen Kaku Gothic New", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic","BIZ UDPゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans CJK JP", sans-serif;
    --font-cf: "Comfortaa", sans-serif;
    --char-color: #000000;
    --char-color-w: #ffffff;
    --color01: #7FBE26;
    --color02: #F29600;
    --color03: #EB7AA0;
    --color04: #5FC0C6;
    --color05: #BE9C63;
    --color06: #998DC2;
    --company-color: #E50012;
    --mikkea-color: #7FBE26;
    --mikkea-color2: #CD607A;
    --link-color : #404040;
    --link-hover-color : #808080;
    --back-color: #ffffff;
    --line-color: #727171;
    --test: #d00;
    --dultime: 500ms;
    --fullhd-vertical: calc(9 / 16);
    --sp-vertical: calc(600 / 375);
    --lh: 1.5; /* 標準 line-height */
}

/* ======================================== *
 * タグ
 * ======================================== */
* {
    box-sizing: border-box;
}

html {
    font-family: var(--font);
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0;
    border: none;
    color: var(--char-color);
    background-color: var(--back-color);
    background-attachment: fixed;
    transition: opacity 2000ms;
}

div, span, section, header, footer, nav, p {
    margin: 0;
    padding: 0;
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    border: none;
    padding: 0;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
}

img {
    width: 100%;
    border: none;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all;
    transition-duration: 500ms;
}

a:hover {
    text-shadow: 3px 3px 4px var(--lightgray);
    /* 影 右ズレ, 下ズレ, ぼかし広さ, 影の拡大, 色 */
    /* opacity: 0.75; */
    transition: all;
    transition-duration: 500ms;
    transform: scale(1.07);
}

nav a:link {
    color: var(--char-color);
}

nav a:visited {
    color: var(--char-color);
}

nav a:hover {
    color: var(--char-color);
    text-shadow: 3px 3px 10px var(--gray);
    /* 影 右ズレ, 下ズレ, ぼかし広さ, 影の拡大, 色 */
    transition: all;
    transition-duration: 500ms;
}

nav a:active {
    color: var(--char-color);
}

input, select, option, textarea, button {
    color: black;
}

table.regular {
    box-sizing: border-box;
    font-family: var(--font);
    border: solid 1px var(--gray);
    border-collapse: collapse;
    border-spacing: 0px;
    padding: 0px;
}

table.regular th {
    box-sizing: border-box;
    border: solid 1px var(--gray);
    border-collapse: collapse;
    border-spacing: 0px;
    padding: 6px;
    font-weight: 500;
    text-align: center;
}

table.regular td {
    box-sizing: border-box;
    border: solid 1px var(--gray);
    border-collapse: collapse;
    border-spacing: 0px;
    padding: 6px;
    font-weight: 500;
}

ol, ul {
    margin: 0;
    border: none;
    padding: 0;
}

input {
    font-family: var(--font);
    font-size: 1rem;
    border: solid 1px var(--line-color);
    margin: 2px;
    line-height: 1rem;
}

input[type="checkbox"] {
    margin: 2px;
    transform: scale(1.5);
}

select {
    font-family: var(--font);
    font-size: 1rem;
    border: solid 1px var(--line-color);
    margin: 2px;
}

textarea {
    font-family: var(--font);
    font-size: 1rem;
    border: solid 1px var(--line-color);
    margin: 2px;
    line-height: 1rem;
}

button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 10rem;
    height: 3rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--buttonback-color);
    border: solid 1px var(--buttonborder-color);
    border-radius: 4px;
    user-select: none;
    cursor: pointer;
}

/* HTML: <div class="loader"></div> */
.loader {
  display: inline-block;
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #606060;
  --_m:
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

/* ======================================== *
 * 表
 * ======================================== */
table.common {
    font-family: var(--font);
    border: solid 1px #606060;
    border-collapse: collapse;
    border-spacing: 0px;
    box-sizing: border-box;
}

table.common td {
    box-sizing: border-box;
    border: solid 2px #b0b0b0;
    border-collapse: collapse;
    border-spacing: 0px;
    padding: 2px 8px 2px 8px;
}

/* ======================================== *
 * コンテンツ
 * ======================================== */
#container {
    box-sizing: border-box;
    max-width: 1600px;
    width: 100%;
    margin-inline: auto;
    overflow-x: hidden;
}

.ok {
    color: #03909c;
}

.caution {
    color: #ff0000;
    font-weight: 900;
    background-color: #fff;
}

.char-color {
    color: var(--char-color);
}

.char-color-w {
    color: var(--char-color-w);
}

.back-color {
    color: var(--back-color);
}

.uline-accent {
    text-decoration: underline;
    text-decoration-color: solid var(--accent-color) 1px;
}

.color01 { color: var(--color01); }
.color02 { color: var(--color02); }
.color03 { color: var(--color03); }
.color04 { color: var(--color04); }
.color05 { color: var(--color05); }
.color06 { color: var(--color06); }
.company-color { color: var(--company-color); }
.mikkea-color { color: var(--mikkea-color); }
.mikkea-color2 { color: var(--mikkea-color2); }

.bgcolor01 { background-color: var(--color01); }
.bgcolor02 { background-color: var(--color02); }
.bgcolor03 { background-color: var(--color03); }
.bgcolor04 { background-color: var(--color04); }
.bgcolor05 { background-color: var(--color05); }
.bgcolor06 { background-color: var(--color06); }
.company-bgcolor { background-color: var(--company-color); }
.mikkea-bgcolor { background-color: var(--mikkea-color); }
.mikkea-bgcolor2 { background-color: var(--mikkea-color2); }

/* ======================================== *
 * デバッグ用
 * ======================================== */
#debug {
    font-family: "BIZ UDPゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans CJK JP", sans-serif;
    display: none;
    box-sizing: border-box;
    width: 75%;
    margin-top: 40px;
    padding: 0.5rem;
    font-size: 14px;
    line-height: 1.1rem;
    word-wrap: break-word;
    color: #ddd;
    background-color: #222;
}

.bd {
    border: solid 2px #d00;
}

.bg {
    background-color: #d90;
}

/* ======================================== *
 * PC Only
 * ======================================== */
@media screen and (min-width: 700px) { /*PC*/
:root {
    font-size: 16px;
}

.pc {
    visibility: visible;
}

.sp {
    visibility: hidden;
    position: absolute;
}

.f-small {
    font-size: 0.8rem;
    line-height: var(--lh);
}

.f-normal {
    font-size: 1rem;
    line-height: var(--lh);
}

.f-large {
    font-size: 1.5rem;
    line-height: var(--lh);
}

.f-huge {
    font-size: 2.5rem;
    line-height: var(--lh);
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* ======================================== *
 * 全ページ共通
 * ======================================== */
#header {
    grid-area: topbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    margin-inline: auto;
    padding: 0;
    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: 574px;
}

#header-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.header-padding {
    height: 100px;
}

.icon-instagram {
    width: 40px;
}

.icon-humb {
    width: 30px;
}

.icon-humb-close {
    width: 30px;
    margin: 24px 3.4vw 0 auto;
}

.content {
    width: 1100px;
    margin-inline: auto;
    padding: 0;
}

#nav-humb {
    width: 560px;
    height: auto;
    padding: 0.5rem 0.5rem 2rem 2rem;
    background-color: var(--back-color);
    position: fixed;
    right: -300px;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 17000;
    transition: all 500ms;
}

.nav-humb-scrollbox {
    width: 100%;
    height: 100vh;
    overflow: auto;
}

.nav-humb-flexbox {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    padding-top: 1rem;
}

.nav-humb-category {
    display: block;
    width: 200px;
    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: 8rem 0;
    color: var(--char-color);
    background-color: var(--back-color);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    row-gap: 30px;
    column-gap: 30px;
    margin-bottom: 30px
}

.footer-nav-button {
    width: 220px;
}

.footer-logo {
    width: 206px;
    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: 100vh;
  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: 80vh;
    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: 60%;
    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: 80%;
    margin-inline: auto;
    position: relative;
    top: -30px;
}

.top-banner {
    width: 235px;
}

.top-banner-mikkea {
    width: 440px;
}

.top-mark-news {
    width: 272px;
    margin-inline: auto;
    margin-bottom: 2rem;
}

table.news {
    width: 50%;
    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: 1rem 2rem 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: 200px;
    }

    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: -200px;
    }

    100% {
        opacity: 1;
        /* transform: translateX(0); */
        position: relative;
        top: 0px;
        left: 0px;
    }
}

.fade-right-trigger {
    opacity: 0;
}

/* ======================================== *
 * コンテンツページ共通
 * ======================================== */
.spc-cont-wide {
    height: 4rem;
}

.spc-cont-narrow {
    height: 2rem;
}

.flex-box1 {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 70px;
    width: 100%;
    margin-inline: auto;
}

.flex-box2 {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 60px;
    width: 100%;
    margin-inline: auto;
}

.box-left {
    width: 100%;
}

.box-right {
    width: 100%;
}

.button-content {
    display: inline-block;
    width: 335px;
}

.flex-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-map {
    width: 50px;
    transition: all 500ms;
}

.icon-map:hover {
    transform: scale(1.12);
    transition: all 500ms;
}

/* ======================================== *
 * 在宅型有料老人ホーム
 * ======================================== */
.page01-banner-medical {
    width: 376px;
}

.page01-salesflow-bg {
    background-color: #f0f5d9;
}

.page01-salesflow-box {
    display: flex;
    width: 1100px;
    margin-inline: auto;
    padding: 60px 0 60px 0;
}

.page01-salesflow-left {
    width: 53%;
    padding-right: 64px;
}

.page01-salesflow-right {
    width: 47%;
    border-left: solid 6px var(--color01);
    border-right: solid 6px var(--color01);
    padding: 0 48px 0 48px;
}

.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.8rem;
    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.3rem;
    font-weight: 700;
    background: linear-gradient(transparent 70%, #ffee00 50%);
}

.page01-iconflow {
    width: 100px;
}

.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: 70px;
}

.label-facility-box-color01 {
    width: 100%;
    height: 0;
    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: 1100px;
    margin-inline: auto;
    padding: 0 78px 0 78px;
    position: relative;
    background-color: #FCE2BB;
}

.page02-flow-title {
    width: 78%;
    margin-inline: auto;
    border-radius: 8px;
    position: relative;
    top: -1.5rem;
    left: 0;
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 700;
    color: var(--char-color-w);
    background-color: var(--color02);
    text-align: center;
}

.page02-flow-pickup {
    width: 426px;
    margin-inline: auto;
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 2.5;
    font-weight: 700;
    color: var(--color02);
    background-color: var(--back-color);
    text-align: center;
}

.page02-flow-arrow {
    width: 55px;
    margin-bottom: 1rem;
    margin-inline: auto;
    font-size: 0;
    vertical-align: middle;
}

.page02-flow-cont {
    width: 944px;
    margin-inline: auto;
    border-radius: 8px;
    padding: 1rem 0 1rem 0;
    background-color: var(--back-color);
}

.page02-flow-cont-inner {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    position: relative;
    top: 0;
    left: -1rem;
}

.page02-flow-cont-inner2 {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    width: 50%;
}

.page02-overlay-photo {
    width: 320px;
    position: absolute;
    top: -80px;
    right: -40px;
}

.page02-mark-oct {
    width: 108px;
    height: 108px;
    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.5rem;
    font-weight: 700;
}

.page02-flow-subject {
    color: var(--color02);
    font-size: 1.5rem;
    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: 50%;
}

.label-facility-box-color02 {
    width: 100%;
    height: 0;
    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: 0;
    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: end;
    padding-right: 250px;
}

.label-facility-box-color04 {
    width: 100%;
    height: 0;
    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;
    justify-content: center;
    align-items: start;
    gap: 0;
    width: 100%;
}

.page05-flex-left {
    width: 100%;
    border-right: solid 1px var(--color05);
    padding: 0 2rem;
}

.page05-flex-right {
    width: 100%;
    padding: 0 3rem;
}

.page05-flow-subject {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 0.75rem;
    text-align: center;
}

.label-facility-box-color05 {
    width: 100%;
    height: 0;
    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;
    justify-content: space-between;
    align-items: start;
}

.page06-hp-img {
    width:190px;
    position: relative;
    top: -1rem;
    left: 0;
}

.label-facility-box-color06 {
    width: 100%;
    height: 0;
    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: 2rem 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;
    justify-content: start;
    align-items: start;
    gap: 4rem;
}

.aboutus-img {
    width: 590px;
    margin-inline: auto;
}

/* ======================================== *
 * M&A・事業承継
 * ======================================== */
.ma-flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    row-gap: 4rem;
    column-gap: 4rem;
}

.ma-flex-inner {
    width: 318px;
}

.ma-require {
    font-size: 1.5rem;
    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;
    justify-content: space-between;
    align-items: start;
}

.news-flex-inner {
    width: 520px;
}

.news-list {
    width: 660px;
    margin-inline: auto;
}

.news-date {
    width: 6rem;
}

/* ======================================== *
 * 求人情報
 * ======================================== */
.recruit-mark-recruit {
    width: 272px;
    margin-inline: auto;
}

.recruit-box {
    width: 680px;
    margin-inline: auto;
}

.recruit-head {
    width: 8rem;
    vertical-align: top;
}

.recruit-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    column-gap: 2rem;
    row-gap: 4rem;
}

.recruit-list-box {
    width: 340px;
}

.recruit-list-img {
    width: 340px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.recruit-list-box 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: center;
}

.contact-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
}

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: 2rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--mikkea-color);
}

.mikkea-logo {
    width: 360px;
}

.mikkea-catch2 {
    /* margin-bottom: 2rem; */
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--mikkea-color2);
}

.mikkea-banner {
    width: 310px;
    margin-inline: auto;
}

.mikkea-line-box {
    height: 60px;
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
}

.mikkea-line {
    height: 30px;
    border-bottom: solid 2px var(--mikkea-color);
}

.mikkea-label {
    display: inline-block;
    width: 358px;
    height: 60px;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: calc(50% - 358px / 2);
    color: var(--char-color-w);
    background-color: var(--mikkea-color);
    font-size: 1.5rem;
    line-height: 58px;
    font-weight: 700;
    text-align: center;
}

.mikkea-pr {
    margin-bottom: 0.5rem;
    color: var(--mikkea-color2);
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
}

.mikkea-flex-box {
    display: flex;
}

.mikkea-box-left {
    width: 100%;
}

.mikkea-box-right {
    width: 100%;
}

.mikkea-icon-ex {
    width: 28px;
}

.mikkea-price-banner {
    display: flex;
    align-items: center;
    width: 470px;
    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: 66%;
}

.mikkea-price-main {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    position: relative;
    top: -0.15rem;
}

.mikkea-price-sub {
    font-size: 1rem;
}

.mikkea-icon-arrow {
    width: 20px;
    margin-inline: auto;
}

.mikkea-banner-form {
    width: 264px;
    margin-inline: auto;
}

.mikkea-banner-manual {
    width: 190px;
    margin-inline: auto;
}

/* ======================================== *
 * 公開書類
 * ======================================== */
.documents-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 2rem;
}

.documents-cont {
    width: 31%;
}

/* PC */
}
