@charset "utf-8";

html {
    font-family: "Noto sans jp", serif;
    font-size: 16px;
    color: #181818;
}

@media (max-width: 599px) {
    html {
        font-size: 14px;
    }
}
@media (max-width: 599px) {
    .inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

#wrapper {
    overflow: hidden;
    position: relative;
}

*,
::before,
::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* headerの高さを取得する */
.filter {
    width: 100%;
    position: fixed;

/* または absolute */
    top: 0;
    left: 0;
    z-index: 1;

    /* headerより下にしたい場合は調整 */
    /* heightはJSで自動付与されるので書かなくてOK */
}

/* ヘッダーメニュー */
.h1-text {
    display: none;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.header-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0.5em;
    background-color: #fff;
}

.header-inner .h1 {
    width: 90%;
    font-weight: 400;
    font-size: 14px;
}
@media (max-width: 599px){
  .header-inner .h1{
    font-size: 12px;
    padding-right: 1em;
  }
}

.header-box {
    width: 92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
}

.header-logo-inner {
    width: 20%;
    min-width: 220px;
}

.header-logo-inner>a{
  display: block;
}

.nav-content {
    width: 80%;
}

.nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav-box-item {
    padding: 1em;
    border-bottom: 2px solid transparent;
    position: relative;
}


.nav-min {
    width: 200px;
    display: none;
    padding-top: 10px;
    text-align: center;
    background-color: #f7f7f7;
    background-clip: content-box;
    position: absolute;
    top: 100%;
    right: -56%;
}

.nav-min-item {
    border: solid 2px #fff;
}

.nav-box-item:hover {
    border-bottom: 2px solid #0073bc;
}

.nav-box-item:hover .nav-min {
    display: block;
}

.nav-min-item a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0.5em;
    opacity: 1;
}

.nav-min-item:hover {
    color: #fff;
    background-color: #0073bc;
}

.jg-nav .nav-min {
    width: 300px;
    right: -112%;
}

.nav-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.hum-button {
    width: 3em;
    height: 3em;
    display: block;
    border-radius: 10px;
    background-color: #0073bc;
    position: relative;
    z-index: 100;
}

.hum-button span {
    width: 50%;
    height: 2px;
    display: block;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
}

.b1 {
    top: 12px;
}

.b2 {
    top: 22px;
}

.b3 {
    top: 33px;
}

.hum-content {
    width: 100%;
    height: 100vh;
    display: block;
    visibility: hidden;
    background: radial-gradient(rgb(255 255 255), rgb(106 181 255));
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
}

.hum-nav-box {
    width: 100%;
    max-width: 1000px;
    /* margin: auto; */
}

.hum-nav-item {
    padding: 0.5em;
    font-size: 20px;
}

.hum-min li {
    font-size: 16px;
}

.hum-min-item {
    padding-left: 1.5em;
}

.hum-min-item {
    position: relative;
}

.hum-min-item::before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 13px;
    left: 0;
}

.office-tit {
    display: block;
}

@-webkit-keyframes humFadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes humFadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

body.drawer-active .hum-content {
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
}

body.drawer-active .b1 {
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: 22px;
}

body.drawer-active .b2 {
    opacity: 0;
}

body.drawer-active .b3 {
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    top: 22px;
}

.hum-min-tit {
    font-size: 20px;
    color: #0073bc;
    border-bottom: 2px #0073bc solid;
}

.hum-min li a {
    font-size: 20px;
}

body.drawer-active {
    height: 100%;
    overflow: hidden;
}

.hum-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    padding: 60px 20px;
    background: #fff;
}

.hum-logo {
    width: 100%;
    max-width: 320px;
    margin-bottom: 40px;
    text-align: center;
}

.hum-nav-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    gap: 40px;
}

.hum-nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.hum-min-tit {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #0073bc;
}

.hum-min {
    list-style: none;
    padding: 0;
}

.hum-min-item {
    margin-bottom: 12px;
}

.hum-min-item a {
    display: inline-block;
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hum-min-item a:hover {
    color: #0073bc;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

/* .nav-add {
    width: 300px;
    padding-left: 50px;
    color: #444;
    border-left: 1px solid #eee;
} */
.hum-item {
    width: 65%;
    margin-left: auto;
}

.nav-add {
    width: 90%;
}

.office-tit {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #0073bc;
}

.main-office,
.construction {
    font-size: 0.85rem;
    line-height: 1.8;
}

/* @media (max-width: 1085px) {
    .hum-item {
        width: 92%;
    }

    .nav-add {
        width: 92%;
        margin-top: 40px;
        padding-top: 30px;
        padding-left: 0;
        border-top: 1px solid #eee;
        border-left: none;
    }
} */

@media (max-width: 1024px) {
  .nav-add {
        width: 100%;
        margin-right: auto;
        padding-top: 30px;
        padding-left: 0;
        border-top: 1px solid #eee;
        border-left: none;
    }
    .hum-content {
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 40px 20px;
    }
    /* .hum-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px 20px;
    } */

    .hum-nav-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;

        gap: 30px;
    }

    .header-nav {
        display: none;
    }
}

@media (max-width: 599px) {
    .hum-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-bottom: 150px;
    }

    .hum-nav-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .hum-min li a {
        font-size: 16px;
    }

    .hum-item {
        width: 100%;
    }

    .hum-logo {
        width: 260px;
    }
}

/* フッター */
.footer {
    margin-top: 20em;
    padding-bottom: 40px;
    color: #fff;
    background-color: #0073bc;
    position: relative;
}
.footer-logo a{
  display: block;
}

.footer::after {
    content: "";
    width: 250%;
    height: 150px;
    display: block;
    background-image: url('/import/tenant_1/220.158.17.165/images/maru.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
    position: absolute;
    top: -149px;
    left: 50%;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 60px;
}

.footer-left {
    width: 40%;
    line-height: 2;
}

/* .footer-logo img {
    width: 300px;
    margin-bottom: 20px;
} */

.footer-logo {
   width: 300px;
    margin-bottom: 20px;
    /* margin: 0 auto 20px; */
}

.footer-address p {
    margin-bottom: 1.5em;
    font-size: 14px;
    line-height: 1.8;
}

.footer-right {
    width: 40%;
}

.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 20px;
    background: #fff;

    aspect-ratio: 16/9;
}

.main-footer {
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 40px;
    color: #fff;
    background-color: #0073bc;
    position: relative;
    z-index: 1;
}

.footer-bottom-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-top: 75px;
}

.nav-column {
    width: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.footer .nav-tit {
    font-weight: bold;
}

.nav-tit-box li {
    white-space: nowrap;
}

.nav-tit-box li a {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-right {
        width: 50%;
    }

    .footer-left {
        width: 50%;
    }

    /* 
    .footer-main {
        width: 92%;
    } */

    .nav-column {
        width: 48%;
    }
}

@media (max-width: 599px) {
    .footer {
        margin-top: 10em;
        padding-top: 10px;
    }

    .footer::after {
        height: 100px;
        top: -96px;
    }

    .footer-main {
        width: 100%;
    }
    .footer-logo {
    margin: 0 auto 20px;
}

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
        margin-top: 20px;
    }

    .nav-column {
        width: 100%;
    }

    .footer-bottom-nav {
        padding-top: 0;
    }
}

/* --- コピーライト --- */
.copyright {
    font-size: 13px;
    text-align: center;
    opacity: 0.7;
}

.nav-tit-box {
    margin-top: 10px;
}

.nav-tit-box li {
    margin-bottom: 10px;
    margin-left: 1rem;
    padding-left: 24px;
    position: relative;
}

.nav-tit-box01 li {
    margin-bottom: 15px;
    font-weight: bold;
}

.nav-tit-box li::after {
    content: "";
    width: 10px;
    height: 1px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 13px;
    left: 0;
}

/* ここからメイン */
.top-backimg img {
    width: 100%;
    height: 75vh;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.top-text {
    height: 200px;
    margin-top: 15px;
}

.top-text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    font-weight: 500;
    color: #0073bc;
}

.top-text-item01 {
    width: 100%;
    width: auto;
    height: auto;
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: "Roboto", sans-serif;
    font-size: 150px;
    text-wrap: nowrap;
    white-space: nowrap;
    white-space: nowrap;
}

.top-text-item01 {
    -webkit-animation: anim--first 40s infinite linear 0.1s both;
    animation: anim--first 40s infinite linear 0.1s both;
}

@-webkit-keyframes anim--first {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes anim--first {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@media (max-width: 599px){
  .top-text {
    height: 125px;
    margin-top: 15px;
}
}

/* トップmvcss */
.top-mv {
    width: 100%;
    height: 75vh;
    position: relative;
}

.anim-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* すべての画像を同じ位置に固定 */
.anim-container img {
    width: 100%;
    height: 70vh;
    -o-object-fit: contain;
    object-fit: contain;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* --- 重ね順の設定 --- */
.layer-base {
    z-index: 1;
}

.layer-arrows {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 0;
}

/* --- アニメーション2：矢印の上下 --- */
.layer-arrows {
    -webkit-animation: arrow-float 3s ease-in-out infinite !important;
    animation: arrow-float 3s ease-in-out infinite !important;
}
/* --- アニメーション1：電球の光 --- */
.bulb-glow {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(255 255 255 / 90%) 0%, /* 中心：濃いオレンジ */ rgb(255 229 182 / 50%) 50%, /* 中間 */ rgba(255, 165, 0, 0) 80% /* 外側 */) !important;
    -webkit-filter: blur(10px);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: bulb-flash 2s ease-in-out infinite alternate !important;
    animation: bulb-flash 2s ease-in-out infinite alternate !important;
    pointer-events: none;
    mix-blend-mode: normal;
    position: absolute !important;
    top: 50%;
    left: 50%;
    z-index: 2 !important;
}

@-webkit-keyframes bulb-flash {
    0% {
        opacity: 0.3;
        -webkit-transform: translate(-50%, -50%) scale(0.9);
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1.0;
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}
@keyframes bulb-flash {
    0% {
        opacity: 0.3;
        -webkit-transform: translate(-50%, -50%) scale(0.9);
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1.0;
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@-webkit-keyframes arrow-float {
    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@keyframes arrow-float {
    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@media (max-width: 1024px){
   .layer-arrows {
        top: 33px;
    }
}
@media (max-width: 599px) {
    .bulb-glow {
        width: 150px;
        height: 80px;
        top: 52%;
    }
    .layer-arrows {
        top: 32px;
    }
}



/* slide */
.swiper-slide img {
    border-radius: 20px;
}
.slide-box01 {
    width: 320px;
    position: absolute;
    top: 125px;
    left: 60px;
}

.slide-box02 {
    width: 320px;
    position: absolute;
    bottom: 10px;
    left: 92px;
}

.slide-box03 {
    width: 295px;
    position: absolute;
    top: 145px;
    right: 95px;
}

.slide-box04 {
    width: 290px;
    position: absolute;
    bottom: 20px;
    right: 67px;
}

.swiper-fade .swiper-slide {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    pointer-events: none;
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media(max-width: 1024px) {
    .slide-box01 {
        width: 245px;
        top: 15%;
        left: 5%;
    }

    .slide-box02 {
        width: 250px;
        bottom: 3%;
        left: 8%;
    }

    .slide-box03 {
      width: 250px;
        top: 14%;
        right: 5%;
    }

    .slide-box04 {
      width: 240px;
        right: 6%;
        bottom: 20px;
    }
}

@media(max-width: 599px) {
    .slide-box01 {
        width: 40%;
        top: 18%;
        left: 3%;
    }

    .slide-box02 {
        width: 40%;
        bottom: 0%;
        left: 3%;
    }

    .slide-box03 {
        width: 40%;
        top: 18%;
        right: 3%;
    }

    .slide-box04 {
        width: 40%;
        bottom: 0%;
        right: 4%;
    }

    .top-text-item01 {
        font-size: 90px;
    }
}


/* mvここまで */

/* キャッチコピー */
.slogan-text {
    line-height: 1.8em;
}

/* タイトル共通*/
.component-margin {
    margin: 4em 0;
}

.component-margin2 {
    margin: 10em 0 0;
}

@media (max-width: 599px) {
    .component-margin2 {
        margin: 5em 0 0;
    }
}

.tit {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #0073bc;
}

.tit-min {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 1em;
    position: relative;
}

.tit-min::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background-color: #0073bc;
    position: absolute;
    top: 36%;
    left: 0;
}

.typing-wipe {
    display: inline-block;
    color: transparent;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0073bc), color-stop(50%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, #0073bc 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-animation-name: wipe-in;
    animation-name: wipe-in;

    -webkit-text-fill-color: transparent;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes wipe-in {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0% 0;
    }
}

@keyframes wipe-in {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0% 0;
    }
}

/* ここまで */
/* about us */
.about-item01 img {
    border-radius: 20px;
}

.about-text {
    margin-top: 20px;
    text-align: center;
}

@media(max-width: 599px) {
    .about-text {
        margin-top: 5px;
    }

    .about-item01 {
        margin-bottom: 20px;
    }
}

/* business */
.business {
    height: auto;
    padding: 3em 0;
    background-color: #fffbeb;
}

.business-contet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.swiper {
    overflow: visible !important;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
    z-index: 10;
}

.slide-img {
    width: 100%;
    margin: auto;

    aspect-ratio: 16 / 10;
}

.swiper-slide .slide-img {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.swiper-slide-active .slide-img {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
   /* animation: fuwafuwa 4s ease-in-out infinite; */
}

.slide-img img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    animation: fuwafuwa 4s ease-in-out infinite;
}

.business-item .slide-text {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.business-item.swiper-slide-active .slide-text {
    visibility: visible;
    margin-top: -10%;
    margin-left: 80px;
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}


.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-width: 20px 0 20px 30px;
    border-style: solid;
}

.swiper-button-next::after {
    border-color: transparent transparent transparent #0073bc;
}


.swiper-button-prev::after {
    border-width: 20px 30px 20px 0;
    border-color: transparent #0073bc transparent transparent;
}

.business-item {
    position: relative;
}

.slide-text {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2em;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    bottom: -30%;
    left: -25%;
}

.slide-text-tit {
    padding-left: 2.5em;
    font-size: 20px;
    position: relative;
}

.num {
    display: block;
    font-weight: 600;
    font-size: 40px;
    color: #0073bc;
    line-height: 1;
    position: absolute;
    top: -9px;
    left: 0;
}

.slide-text .text {
    margin-top: 0.5em;
    line-height: 1.8;
}

/* ページネーションの設定 */
/* 位置 */
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 31% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important;
    -ms-flex-align: end !important;
    -webkit-transform: none !important;
    transform: none !important;
    top: auto !important;
    bottom: 3px !important;
    left: auto !important;
    left: auto !important;
    right: 0 !important;

    gap: 10px !important;
}

.swiper-pagination-bullet {
    width: 100% !important;
    max-width: 380px;
    height: auto !important;
    min-height: 48px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 10px 25px !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    border-radius: 30px !important;
    background: #fff !important;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 1 !important;
    cursor: pointer;
    padding: 10px 25px 10px 5px !important;
}

.p-num {
    width: 40px;
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.1rem;
    color: #0066ad;
}

.p-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    word-break: break-all;
}

.swiper-pagination-bullet-active {
    background-color: #0066ad !important;
}

.swiper-pagination-bullet-active .p-num,
.swiper-pagination-bullet-active .p-text {
    color: #fff !important;
}


@media (max-width: 1024px) {
    .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-horizontal {
        width: 40% !important;
        bottom: 350px !important;
        right: 43px !important;
    }
    .slide-img img {
        width: 50%;
    }
    .slide-text {
        width: 100%;
    }
   .business-item.swiper-slide-active .slide-text {
       margin-top: 0;
   }
}
@media (max-width: 599px) {
    .business-item.swiper-slide-active .slide-text {
        margin-left: 25%;
    }
    .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-horizontal {
        width: 57% !important;
        bottom: 60% !important;
        right: -45px !important;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
    .btn a {
        line-height: 2.5 !important;
    }
}

/* btn1 */
.btn a {
    width: 100%;
    height: 100%;
    display: block;
    line-height: 2.2;
    text-align: center;
    border: #0066ad 1px solid;
    border-radius: 20px;
    background-color: #fff;
    opacity: 1;
}

.btn {
    width: 50%;

/* max-width: 200px; */
    min-width: 200px;
    height: 40px;
    margin-top: 2em;
    position: relative;
}

.btn a::before {
    content: "";
    width: 15px;
    height: 2px;
    background-color: #0066ad;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
}

.btn a::after {
    content: "" !important;
    width: 8px;
    height: 8px;
    border-top: 2px solid #0066ad;
    border-right: 2px solid #0066ad;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 20px;
}

.btn a:hover {
    color: #fff;
    background-color: #0066ad;
}

.btn a:hover::before {
    background-color: #fff;
    -webkit-transform: translateY(-50%) translateX(8px);
    transform: translateY(-50%) translateX(8px);
}

.btn a:hover::after {
    border-color: #fff;
    -webkit-transform: translateY(-50%) translateX(8px) rotate(45deg);
    transform: translateY(-50%) translateX(8px) rotate(45deg);
}

/* btn2 */
.btn2 {
    width: 300px;
    height: auto;
    position: relative;
}

.btn2::before {
    content: "";
    width: 30px;
    height: 30px;
    border: 1px solid #0066ad;
    border-radius: 50%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: linear-gradient(#fff, #fff);
    background-size: 15px 2px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0066ad;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 25px;
}

.btn2::after {
    content: "" !important;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 33px;
}

.btn2:hover::before {
    -webkit-transform: translateY(-50%) translateX(5px);
    transform: translateY(-50%) translateX(5px);
}

.btn2:hover::after {
    -webkit-transform: translateY(-50%) translateX(4px) rotate(45deg);
    transform: translateY(-50%) translateX(4px) rotate(45deg);
}

.btn2 a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.5em 3.5em 0.5em 2em;
    line-height: 2.2;
    text-align: center;
    border: #0066ad 1px solid;
    border-radius: 30px;
    background-color: #fff;
    opacity: 1;
}

/* @media(max-width: 599px) {
    .btn2 {
        width: 80%;
        max-width: 300px;
        min-width: unset;
    }
} */

/* Achivement */
.achivement-item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 2em;
    opacity: 1;
}

.achivement-item {
    width: 32%;
    border: #0066ad 2px solid;
    border-radius: 20px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.achivement-item .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    color: #0066ad;

    gap: 1em;
}

.achivement-item .name .icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0066ad;
}

.achivement-item:hover {
    -webkit-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

@media(max-width: 1024px) {
    .achivement-item {
        width: 48%;
        margin: auto;
        margin-top: 20px;
    }
}

@media(max-width: 599px) {
    .achivement-item {
        width: 80%;
    }

    .achivement-item:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
    }
}

/* partner */
.partner-img .pic {
    width: 32%;
}

.partner-img .pic .img img {
    border-radius: 20px;
}

.partner-img-box {
    margin-right: -40%;
}

@media(max-width: 1024px) {
    .partner-img-box {
        margin-right: -55%;
    }
}

@media(max-width: 599px) {
    .partner-img-box {
        margin-right: -25%;
    }
}

/* topnews */
.tit-min2 {
    margin: auto;
}

.top-news-item {
    width: 100%;
    border-bottom: 1px solid #c0c0c0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.top-news-item a {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 2em;
    opacity: 1;
}

.top-news-item .data {
    width: 25%;
    color: #0066ad;
}
.top-news-item .txt{
  width: 70%;
}

.top-news-item:hover {
    -webkit-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 599px) {
    .top-news-item:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
    }

    .top-news-item a {
      flex-direction: column;
        padding: 10px 10px 10px 0;
        gap: 15px;
    }

    .top-news-box .data {
        white-space: nowrap;
    }
}

/* topblog */
.tit-min3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
}

.top-blog-item a .pic .img img {
    border-radius: 20px;
}

.top-blog-item {
    width: calc(100% / 3 - 20px);
    padding-bottom: 20px;
    border-bottom: #c0c0c0 1px solid;
}

/* 丸い右矢印 */
.btn--circle {
    width: 50px;
    height: 50px;
    padding: 0;
    text-align: center;
    border-radius: 50%;
    background: #0066ad;
    position: absolute;
    bottom: -5px;
    right: 15px;
}

.top-blog-item a:hover .btn--circle {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.btn--circle i {
    font-size: 150%;
    color: #fff;
    line-height: 54px;
    letter-spacing: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* --- 1. 土台（aタグ）の設定 --- */
.top-blog-item a {
    display: block;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.top-blog-item a:hover::before {
    background-color: #00568c;
    -webkit-transform: translateY(-50%) translateX(5px);
    transform: translateY(-50%) translateX(5px);
}

.top-blog-item a:hover::after {
    -webkit-transform: translateY(-50%) translateX(5px) rotate(45deg);
    transform: translateY(-50%) translateX(5px) rotate(45deg);
}

.top-blog-item a .txt,
.top-news-item a .txt{
  display: -webkit-box;
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 2; 
  overflow: hidden;
}

@media (max-width: 1024px) {
    .top-blog-item a::after {
        bottom: 3.2%;
    }

    .top-blog-item {
        width: 48%;
        margin: auto;
        margin-top: 20px;
    }
}

@media (max-width: 599px) {
    .top-blog-item {
        width: 80%;
    }
}

/* banner */
.component-margin3 {
    margin: 15em 0 0;
}

.back-pic .img img {
    border-radius: 20px;
}

.btn02 {
    min-width: 205px;
}

.banner {
    position: relative;
}

.banner-box {
    position: relative;
}

.banner-content {
    width: 100%;
    height: 100%;
    margin-left: auto;
    padding-top: 4em;
    padding-left: 8em;
    position: relative;
    background-color: #efefef57;
    border-radius: 20px;
}

.back-pic {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.back-pic .img {
    height: 100%;
}

.banner-content .sub-tit {
    /* min80px,max200px 画面サイズmin375px,max1000px */
    font-size: clamp(5rem, 0.5rem + 19.2vw, 11.5rem);
    color: #fff;
   text-shadow: 0 0 10px rgb(51 51 51 / 80%);
}

@media (max-width: 1024px) {
   .banner-content {
    padding-left: 1em;
}
}

@media (max-width: 599px) {
    .banner-content .text {
        font-size: 14px;
    }

    /* .back-pic {
        bottom: 6%;
    } */

    .component-margin3 {
        margin: 10em 0 0;
    }
}

/* contact-area */
.contact-tit {
    color: #0073bc;
}

.contact-area {
    width: 80%;
    max-width: 1000px;
    margin: 5em auto 0;
}

.contact-area .inbox {
    padding: 3em;
    border-radius: 20px;
    background-color: #f7f7f7;
}

.btn03 {
    min-width: 305px;
}

.contact-btn a{
    width: 35%;
    min-width: 310px;
    height: auto;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    border: #fff 1px solid;
    border-radius: 30px;
    background-color: #0073bc;
    position: relative;
    display: block;
    padding: 0.8em;
    box-sizing: border-box;
}

.contact-btn .c {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
    color: #0073bc;
    line-height: 1em;
    border-radius: 50%;
    background-color: #fff;

/* 20%より50%の方が上下中央に安定します */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;

/* 上下中央揃えのテクニック */
    right: 10px;
}

.l {
    display: block;
    padding-left: 1.5em;
    padding-right: 3.5em;
    text-align: center;
}


/* 下層ページmv */
.under-backimg {
    width: 100%;
    height: 50vh;
    display: block;
}

.under-backimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.under-mv-sec {
    position: relative;
}

.mv-txts {
    width: 100%;
    -webkit-filter: drop-shadow(1px 2px 2px #000);
    filter: drop-shadow(1px 2px 2px #000);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
}

.under-mv-sec .mv-txts {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    bottom: 120px;
    left: 50%;
}

.mv-txts-under,
.mv-txts-undermin {
    color: #fff;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    paint-order: stroke fill;
    font-weight: bold;
}

.bread-area {
    width: 100%;
    position: absolute;
    bottom: 5%;
    left: 0;
}

.breadcrumbs-list li {
    display: inline;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    /* -webkit-filter: drop-shadow(1px 2px 2px #000);
    filter: drop-shadow(1px 2px 2px #000); */
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    /* 影を広めに取って、背景とのコントラストを作る */
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    paint-order: stroke fill;
}

.breadcrumbs-list li {
    display: inline;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    -webkit-filter: drop-shadow(1px 2px 2px #000);
    filter: drop-shadow(1px 2px 2px #000);
}

.breadcrumbs-list li+li:before {
    content: ">";
    display: inline;
    margin: 0 0.5em;
}

/* ここまで */
/* 下層ページタイトル */
.tit-under {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

/* 文字を横並びにする */
    overflow: hidden;
    font-family: "Noto sans jp", serif;
    font-size: 32px;
}

.tit-box {
    position: relative;
}
.tit-box002 {
  width: fit-content;
    position: relative;
}

.tit-min-under {
    font-family: "Roboto", sans-serif;
    color: #0073bc;
    position: absolute;
    bottom: 100%;
    left: -2%;
}

.tit-under .char {
    display: inline-block;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
    /* 1文字分下に下げておく */
}

/* 画面に入った時：文字を浮かび上がらせる */
.tit-under.is-active .char {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .tit-under {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .tit-min-under {
        left: 0;
    }

    .tit-under {
        font-size: 20px;
    }
}

/* ここから会社概要 */
/* company */
.company-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: #c0c0c0 1px solid;
}

.company-txt-tit {
    width: 20%;
    padding: 2em 0;
    color: #0073bc;
}

.company-txt {
    width: 80%;
    display: block;
    padding: 0.5em 0;
}

.company-list {
    margin-top: 5%;
}

@media(max-width: 1024px) {
    .company-txt-tit {
        width: 100%;
        padding: 0.5em 0 0;
    }

    .company-txt {
        width: 100%;
        padding: 0.5em 0;
    }
}

@media(max-width: 599px) {
    .company-txt {
        font-size: 14px;
    }
}

.company-min {
    display: block;
}

/* history */
.history {
    padding: 2em 0;
    background: radial-gradient(rgb(255 255 255), rgb(106 181 255));
}

.history-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2em;
    position: relative;
}

.history-data {
    width: 40%;
    font-weight: 700;
    font-size: 30px;
    color: #0073bc;
    text-shadow: 0px 5px 8px rgb(255 255 255);
    position: relative;
}

.history-text {
    width: 65%;
    font-size: 18px;
}

.history-data .data01 {
    font-size: 14px;
    position: absolute;
    top: -35%;
    left: 0;
}

.history-item::before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background-color: #0066ad;
    position: absolute;

/* transform: translateX(50%);
    top: 50px;
    left: 31%; */
    top: 50px;
    left: 315px;
    z-index: 2;
}

.history-item::after {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    background-color: #c0c0c0;
    position: absolute;

/* transform: translateX(50%);
    top: 50px;
    left: 321px; */
    top: 50px;
    left: 320px;
    z-index: 1;
}

.history-item:last-child::after {
    content: none !important;
}

@media (max-width: 1024px) {
    .history-text {
        padding-left: 1.5em;
        font-size: 16px;
    }

    .history-item {
        padding: 2em 0;
    }

    .history-data {
        padding-right: 1.5em;
        font-size: 22px;
    }

    .history-data .data01 {
        top: -50%;
    }

    .history-item::after {
        left: 220px;
    }

    .history-item::before {
        top: 42px;
        left: 215px;
    }
}

@media (max-width: 599px) {
    .history-data {
        font-size: 20px;
    }

    .history-text {
        font-size: 16px;
    }

    .history-item {
        width: 90%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: auto;
    }

    .history-data {
        width: 100%;
    }

    .history-text {
        width: 100%;
    }

    .history-item::after {
        left: -17px;
    }

    .history-item::before {
        left: -23px;
    }
}

/* map */
.map {
    margin: auto;
    border: #0073bc 1px solid;
    border-radius: 20px;
    aspect-ratio: 16/9;
}

.map iframe{
  border-radius: 20px;
}

.map-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
}

/* ここまで */

/* ここから企業挨拶 */
/* ご挨拶 */
.message-content .pic .img img {
    border-radius: 20px;
}

/* 平田工業の強み */
.strong-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5em;
    padding: 2em;
    border: #0073bc 1px solid;
    border-radius: 5px;
    position: relative;
}

.strong-item .pic {
    width: 30%;
}

.strong-txt-box {
    width: 68%;
    z-index: 2;
}

.strong-txt-tit {
    padding: 0.5em;
    font-weight: 500;
    font-size: 1.5rem;
    color: #0073bc;
    text-align: center;
    border-bottom: 1px solid #c0c0c0;
}

.strong-txt {
    margin-top: 1em;
    padding: 2em;
    line-height: 1.8;
    text-align: justify;
}

.message-content .pic {
    position: relative;
}

.bac-num {
  text-align: center;
    color: #fff;
    line-height: 1.1;
    background-color: #ffca00;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 4em;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: -8%;
    left: -4%;
    z-index: 1;
}
.bac-num-min{
  font-size: 12px;
    display: block;
}

@media (max-width: 1024px) {
    .strong-item .pic {
        width: 100%;
    }

    .strong-txt-box {
        width: 100%;
    }

    .strong-txt-tit {
      padding: 0;
        padding-top: 0.5em;
    }

    .strong-txt {
        padding: 0;
    }
    .bac-num {
      top: -4%;
      left: -4%;
    }
}
@media (max-width: 599px) {
   .bac-num {
      width: 90px;
      height: 90px;
      top: -4%;
      left: -4%;
    }
    .strong-item {
      padding: 1em;
    }
}

/* 行動方針 */
.action-item {
    margin-bottom: 0.5em;
    padding-left: 1em;
    font-size: 20px;
    position: relative;
}

.action-item::before {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background-color: #0074bc;
    position: absolute;
    top: 7px;
    left: 0;
}

.action {
    padding-bottom: 5em;
}

@media (max-width: 1024px) {
    .action-item {
        font-size: 20px;
    }
}

@media (max-width: 599px) {
    .action-item {
        font-size: 16px;
    }

    .strong-txt-tit {
        font-size: 18px;
    }
}

/* ここまで */

/* ここから私たちの取り組み */
/* 平田工業の取り組み */
.tit-under02 {
    width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-family: "Noto sans jp", serif;
    font-size: 32px;
    text-align: center;
    position: relative;
}

.tit-under02::after {
    content: "";
    width: 100%;
    height: 18px;
    background-image: repeating-linear-gradient(90deg, transparent 60%, #0074bc59 60%);
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: -1;
}
.tit-under01{
  font-size: 32px;
   font-family: "Noto sans jp", serif;
   border-bottom: 1px dotted #0073bc;
}

@media (max-width:1024px) {
    .tit-under02,
    .tit-under01{
        font-size: 24px;
    }
     .tit-under02::after{
      bottom: -3px;
    }
}

@media (max-width: 599px) {
    .tit-under02{
        font-size: 17px;
    }
    .tit-under02::after{
      bottom: -8px;
    }
}

/* 安全衛生管理体制 */
.initiatives01-content {
    padding: 2em;
    border: #c0c0c0 1px solid;
    border-radius: 20px;
}

.initiatives01-item {
    padding-left: 1.5em;
    position: relative;
}

.initiatives01-item::before {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background-color: #0073bc;
    position: absolute;
    top: 10px;
    left: 0;
}

/* .initiatives01:last-of-type {
    padding-bottom: 5em;
} */

/* ここまで */

/* 事業案内共通 */
.common-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5em;
    padding: 2em;
    border: #0073bc 1px solid;
    border-radius: 20px;
    position: relative;
}

.common-item .pic {
    width: 30%;
}
.common-item .pic .img {
    height: 100%;
}

.common-txt-box {
    width: 68%;
    z-index: 2;
}

.common-txt-tit {
    padding: 1em 0;
    font-weight: 500;
    font-size: 1.5rem;
    color: #0073bc;
    text-align: center;
    border-bottom: 1px solid #c0c0c0;
}

.common-txt {
    padding: 2em;
    line-height: 1.8;
}


@media (max-width: 1024px) {
    .common-txt-tit {
        padding: 1em;
        font-size: 20px;
    }

    .common-item .pic {
        width: 100%;
    }

    .common-txt-box {
        width: 100%;
    }

    .common-txt {
        padding: 0;
        margin-top: 20px;
    }
}
@media (max-width: 599px){
  .common-item{
    padding: 1em;
  }
}

/* 各ページお問い合わせ */
.tit-under03 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-family: "Noto sans jp", serif;
    font-size: 32px;
    text-align: center;
    border-bottom: #0073bc dotted 1px;
    position: relative;
}
.tit-under04 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-family: "Noto sans jp", serif;
    font-size: 32px;
    text-align: center;
    padding-left: 1.5em;
    position: relative;
}

.tit-box03 {
  width: fit-content;
  margin: auto;
    position: relative;
}

.tit-min-under03 {
    font-family: "Roboto", sans-serif;
    color: #0073bc;
    position: absolute;
    top: -20px;
    left: -13px;
}


.undercontact-content {
    padding: 9em 0 17em;
    background: -webkit-gradient(linear, left top, left bottom, from(#d7efff), to(#fff));
    background: linear-gradient(180deg, #d7efff 0%, #fff 100%);
    position: relative;
}

.back-img,
.back-img02 {
    width: 100px;
    height: auto;
}

.back-img {
    -webkit-animation: fuwafuwa 4s ease-in-out infinite;
    animation: fuwafuwa 4s ease-in-out infinite;
    position: absolute;
    top: 55px;
    left: 60px;
}

.back-img02 {
    -webkit-animation: fuwafuwa 4s ease-in-out infinite;
    animation: fuwafuwa 4s ease-in-out infinite;
    position: absolute;
    top: 97px;
    right: 90px;
}

.back-img03 {
    width: 100%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    position: absolute;
    bottom: 5%;
    left: 0;
}

.undercontact-message {
    line-height: 1.8;
}

@media(max-width: 1024px) {
    .back-img03 {
        bottom: 20%;
    }

    .tit-under03,
    .tit-under04{
        font-size: 24px;
    }
}

@media(max-width: 599px) {
    .tit-under03,
    .tit-under04{
        font-size: 20px;
    }
    .undercontact-content {
    padding: 5em 0 17em;
}
}

@media(max-width: 599px) {
}

/* 非常用電源・防災電気設備 */
.Power-item-tit {
    width: auto;
    display: inline-block;
    min-width: 230px;
    padding: 0.5em 1em;
    font-weight: 500;
    font-size: 20px;
    color: #0074bc;

/* text-align: center; */
    border-radius: 0 0 15px 0;
    background-color: #fff;
    position: relative;
}

.Power-item-tit::before {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background-color: #0074bc;
    position: absolute;
    top: 20px;
    left: 0;
}

.Power-box02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2em;
}

.Power-box02 .img-box {
    width: 30%;
}

.Power-text {
    width: 60%;
}

.Power-item {
    border-radius: 20px;
    background-color: #d7efff;
}

@media(max-width: 599px) {
    .Power-text {
        width: 100%;
    }

    .Power-box02 .img-box {
        width: 100%;
    }
}

/* ここから業務実績 */
.achievements-content .pic .img {
    -webkit-animation: fuwafuwa 4s ease-in-out infinite;
    animation: fuwafuwa 4s ease-in-out infinite;
}

.achievements  {
  padding: 10em 5em;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #d7efff), color-stop(70%, #d7efff), to(#fff));
    background: linear-gradient(to bottom, #fff 0%, #d7efff 30%, #d7efff 70%, #fff 100%);
}

/* 業務実績 */
.case-item {
    width: 100%;
    margin: 20px auto;
    margin-bottom: 10px;
    padding: 1em;
    font-size: 1.6em;
    text-align: center;
    border-left: 5px solid #0073bc;
    background: #fff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.case {
    margin-top: 45px;
}
.achievements02 .inner .tit-box002 .icon,
.achievements03 .inner .tit-box002 .icon{
  width: 40px;
    height: 40px;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0066ad;
    position: absolute;
    top: 5px;
    left: 0;
}

@media (max-width:1024px) {
    .achievements {
        padding: 8em 0;
    }

    .case-item {
        width: 100%;
    }
     .achievements02 .inner .tit-box002 .icon,
.achievements03 .inner .tit-box002 .icon{
  top: -1px;
}
.tit-under04 {
padding-left: 2em;
}
.case {
    margin-top: 20px;
}
}
@media(max-width: 599px){
  .achievements02 .inner .tit-box002 .icon,
.achievements03 .inner .tit-box002 .icon{
  width: 30px;
  height: 30px;
  top: 0;
}
.tit-under04 {
padding-left: 2em;
}
.case {
    margin-top: 10px;
}
}

/* 感謝状 */
.awards-item {
    width: 32%;
}

@media (max-width:1024px) {
    .awards-item {
        width: 48%;
    }
}

@media (max-width:599px) {
    .awards-item {
        width: 80%;
        margin: 1em auto 0;
    }
}


/* ここから求人採用一覧 */
.tit-box02 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
}

.tit-box02 .tit-under {
    border-bottom: #0073bc dotted 1px;
}

/* 疑問 */
.new-01content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.new01-text {
    width: 45%;
    line-height: 2;
}

.new01-img {
    width: 45%;
}


/* ボタン全体のラップ */
.work-btn a {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
    color: #333;
    text-decoration: none;
    opacity: 1;
    position: relative;
}

.work-btn a::before {
    content: "";
    width: calc(100% - 80px);
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #3d95fa), color-stop(50%, #ccc));
    background: linear-gradient(to right, #3d95fa 50%, #ccc 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-transition: background-position 0.5s ease-out;
    transition: background-position 0.5s ease-out;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.work-btn a:hover::before {
    background-position: left bottom;
}

.work-btn a::after {
    content: "\2192";
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #e6f7ff, #c2e5ff);

/* #d7efff基調 */
    -webkit-box-shadow: 5px 5px 15px #b8d9f2, -5px -5px 15px #fff;
    box-shadow: 5px 5px 15px #b8d9f2, -5px -5px 15px #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.work-btn a:hover::after {
    -webkit-box-shadow: 2px 2px 5px #b8d9f2, -2px -2px 5px #fff;
    box-shadow: 2px 2px 5px #b8d9f2, -2px -2px 5px #fff;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.work-btn {
    margin-top: -10%;
}

/* イメージ */
.image-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 3em;
    padding: 3em 4em;
    border-radius: 20px;
    background-color: #d7efff;
}

.image-img {
    width: 20%;
}

.image-img .img img {
    border-radius: 50%;
}

.image-text {
    width: 75%;
    line-height: 1.8;
}

.image-tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0.5em;
    font-size: 20px;
    color: #0073bc;
    border-bottom: 1px #c0c0c0 solid;
}

@media (max-width: 1024px) {
    .work-btn {
        margin-top: 0;
    }
}

@media (max-width: 599px) {
    .initiatives01-content {
        padding: 1em;
    }

    .new01-text {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 20px;
    }

    .new01-img {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .work-btn a {
        width: 100%;
    }
    .image-img {
        width: 60%;
        margin: 0 auto 2em;
    }
    .image-text {
        width: 100%;
    }
    .image-item {
        margin-top: 2em;
        padding: 3em 1em;
    }
    .image-tit {
        margin: 0 auto 1em;
        font-size: 18px;
    }
}


/* 動画掲載 */
.video {
    width: 80%;
    margin: 10em auto 0;
}

@media (max-width: 599px) {
    .video {
        width: 100%;
        margin: 5em auto;
    }
}

/* リクルート詳細リンク */
.contact-area {
    margin: 5em auto 0;
}
.contact-area02 {
    margin: 10em auto 0;
}

/* 平田工業の特徴 */
.work-02list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 3em auto 0;
}

.work-02img {
    width: 40%;
}

.work-02img img {
    border-radius: 20px;
}

.work-02text {
    width: 58%;
    padding: 2em;
}

.work-02tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 24px;
    border-bottom: 1px #c0c0c0 dotted;
    position: relative;
}

.work-02tit-min {
    font-size: 14px;
    color: #0073bc;
    position: absolute;
    top: -20px;
    left: 0;
}

@media (max-width: 599px) {
    .work-02img {
        width: 100%;
    }

    .work-02text {
        width: 100%;
        padding: 0;
        padding-top: 2em;
    }

    .work-02list {
        margin: 0 auto 2em;
    }
    
    .work-02tit {
    font-size: 20px;
    width: 100%;
}
}

/* 教育制度 */
.flow-tit {
    padding-left: 1em;
    font-size: 24px;
    color: #0073bc;
    border-bottom: #c0c0c0 1px dotted;
    position: relative;
}

.flow-tit::before {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background-color: #0073bc;
    position: absolute;
    top: 12px;
    left: 0;
}

/* フローリスト、いかせる経験 */
.flow-list-item,
.expertise-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
    padding: 2em;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 20px 0 #ebebeb;
    box-shadow: 0 0 20px 0 #ebebeb;
    position: relative;
    ;
}

.flow-list-tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #0073bc;
}

.flow-list-text {
    width: 75%;
}

.flow-list-titmin {
    font-size: 18px;
}

.flow-list-item::before {
    content: "";
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    background-color: transparent;
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateX(-50%) rotate(135deg);
    position: absolute;
    bottom: -6px;
    left: 50%;
    z-index: 2;
}

.flow-list-item::after {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0073bc;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    z-index: 1;
}

.flow-list-item:last-child::before,
.flow-list-item:last-child::after {
    display: none;
}

.workflow-tit {
    color: #0066ad;
}

.workflow-tit-text {
    display: block;
    padding-right: 3em;
    font-size: 15px;
}

@media (max-width: 599px) {
    .flow-list-tit {
        margin: 0;
    }

    .flow-list-text {
        width: 100%;
    }
}

/* ここから１日の流れ */
.workflow-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.workflow-img {
    width: 30%;
}

.workflow-img img {
    border-radius: 50%;
}

.workflow-list {
    width: 65%;
}

.workflow-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 3em;
    position: relative;
}
.workflow-item:last-child{
  padding-bottom: 0;
}

.workflow-item::before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background-color: #0066ad;
    -webkit-box-shadow: 0 0 8px #0066ad;
    box-shadow: 0 0 8px #0066ad;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 2;
}

.workflow-item::after {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    background-color: #c0c0c0;
    position: absolute;
    top: 10px;
    left: 5px;
    z-index: 1;
}

.workflow-item:last-child::after {
    content: none !important;
}

.workflow-tit {
    width: 50%;
    padding-bottom: 2em;
    padding-left: 2em;
    font-size: 20px;
}

.workflow-text {
    width: 50%;
}

.workflow-list {
    padding: 2em;
}

@media (max-width: 1024px) {
    .workflow-box {
        display: block;
    }

    .workflow-img {
        width: 150px;
        margin: auto;
    }

    .workflow-list {
        width: 100%;
        padding: 15px 0 0;
    }

    .workflow-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0.5em;
    }

    .workflow-tit {
        width: 100%;
        padding-bottom: 0.5em;
        padding-left: 1em;
        font-size: 16px;
    }

    .workflow-tit-text {
        display: inline-block;
        padding: 0;
        font-weight: 500;
        font-size: 14px;
    }

    .workflow-text {
        width: 100%;
        padding-left: 1.5em;
    }
}

/* 求める人物像 */
.ideal-content .pic .img {
    -webkit-animation: fuwafuwa 4s ease-in-out infinite;
    animation: fuwafuwa 4s ease-in-out infinite;
}

.ideal {
    padding: 8em 5em;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #d7efff), color-stop(70%, #d7efff), to(#fff));
    background: linear-gradient(to bottom, #fff 0%, #d7efff 30%, #d7efff 70%, #fff 100%);
}

.ideal-content .pic .img img {
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .ideal-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;

        gap: 20px;
    }

    .ideal-content .text {
        width: 100%;
    }
}
@media (max-width: 599px){
  .ideal {
        padding: 5em 0;
    }
}

/* 募集要項 */
.recruit02-item a {
  display: flex;
  flex-direction: column;
 justify-content: space-between;
 align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 2em;
    opacity: 1;
}

.recruit02-item {
    width: 40%;
    border: #0066ad 2px solid;
    border-radius: 20px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.recruit02-item .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    color: #0066ad;

    gap: 1em;
}

.recruit02-item .name .icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0066ad;
}

.recruit02-item:hover {
    -webkit-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

@media(max-width: 1024px) {
    .recruit02-item {
        width: 48%;
        margin: auto;
        margin-top: 20px;
    }
}

@media(max-width: 599px) {
    .recruit02-content {
        margin: 0;
        padding: 15px 0 0;
    }

    .recruit02-item {
        width: 100%;
        margin: 0;
    }

    .recruit02-item:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
    }

    .recruit02-box li+li {
        margin-top: 1em;
    }
}

.recruit02-item a .text {
    padding-left: 5em;
    position: relative;
}

.text-min,
.text-min02 {
    font-size: 14px;
    position: absolute;
    top: 2px;
    left: 0;
}

/* ここからパートナー企業 */
.partner-list-item {
    margin: auto;
    margin-top: 1.5em;
    padding: 2em;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 20px 0 #ebebeb;
    box-shadow: 0 0 20px 0 #ebebeb;
    position: relative;
}


.partner-list-tit {
    font-weight: 700;
    font-size: 1.5em;
    color: #0073bc;
    border-bottom: #c0c0c0 1px dotted;
}

.partner-list-titmin {
    font-size: 18px;
}

.partner-list-text {
    margin-top: 1em;
    line-height: 1.8;
}
@media (max-width: 599px){
  .partner-list-item:first-child{
  margin-top: 0;
}
}

/* ブログ一覧 */
.cuscon-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 5em;
}

.top-blog-box {
    gap: 50px 20px;
}

.blog-item {
    width: calc(50% - 20px);
}

.cuscon-left {
    width: 75%;
}

.cuscon-right {
    width: 23%;
}

.ct-title {
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background-color: #0073bc;
}

.ct-item {
    font-size: 14px;
    text-align: center;
    border-bottom: #c0c0c0 1px solid;
    border-left: #c0c0c0 1px solid;
    border-right: #c0c0c0 1px solid;
}

.ct-item a {
    display: block;
    padding: 10px 0;
}

/* ページネーション */
.pagenation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagenation .number a,
.pagenation .now,
.pagenation .next a,
.pagenation .prev a {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    text-align: center;
    border: none;
    border-radius: 50%;
}

.pagenation .prev a:before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
}

.pagenation .prev {
    position: relative;
}

.pagenation .item {
    margin: 0 10px;
}

.pagenation .number a:hover,
.pagenation .next a:hover,
.pagenation .prev a:hover,
.pagenation .now {
    color: #fff;
    background: #0073bc;
    opacity: 1;
}

.pagenation .item {
    margin: 0 10px;
}

.pagenation .next {
    position: relative;
}

.pagenation .item {
    margin: 0 10px;
}

.pagenation .next a:before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
}

.catarea {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.catarea>span {
    display: inline-block;
    margin: 0 5px 5px 0;
    margin-top: 10px;
    padding: 1px 5px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    background-color: #0073bc;
}

.news-item {
    position: relative;
}

/* .news .box-left {
    width: 75%;
}
 */
 .top-news-item02 a{
   flex-direction: column;
 }
 .top-news-item02 .txt{
   width: 100%;
 }
 .top-news-item02 .data{
   width: 50%
 }
.catarea02 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-bottom: 5px;
    gap: 10px;
}

.catarea02>span {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    color: #fff;
    line-height: 22px;
    border-radius: 4px;
    background-color: #0073bc;
}

.news-item a {
    padding: 1.5em 2em;
}

@media (max-width:1024px) {
    /* ブログ・ニュース共通 */
    .cuscon-flex {
        display: block;
    }

    .cuscon-flex>div {
        width: 100%;
    }

    .cuscon-left {
        width: 100%;
    }

    .cuscon-right {
        margin-top: 70px;
    }

    .catarea02 {
      width: 85%;
    }

    .nation {
        margin: 50px auto 0;
    }

    .pagenation .item {
        margin: 0;
        padding: 0;
    }

    .pagenation .number a,
    .pagenation .now,
    .pagenation .next a,
    .pagenation .prev a {
        width: 40px;
    }

    /* ニュース */
    .news-item a {
        display: block;
        padding: 10px;
    }

    .top-news-item .data {
        width: auto;
        font-size: 16px;
    }

    .top-news-box .data {
        width: auto;
        font-size: 16px;
    }

    .top-news-box .box-left {
        width: 100%;
        margin-top: 10px;
    }

    .top-news-item .txt {
        width: 100%;
    }

    /* ブログ */
    .top-blog-box {
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left;
    }
    .top-blog-item {
        margin: 0;
    }
}

@media (max-width: 599px){
      .catarea02 {
      justify-content: flex-start;
       width: 100%;
       margin-top: 5px;
    }
    }

@media (max-width:599px) {
    .blog .top-blog-box {
        display: block;
    }

    .blog .top-blog-box li+li {
        margin-top: 30px;
    }

    .blog .blog-item {
        width: 100%;
    }

    .blog li.top-blog-item {
        width: 100%;
    }
}

/* 詳細ページ */
.up-content-area ul>li::before {
    background-color: #0073bc;
}

.up-content-area ol li::before {
    color: #0073bc;
}

.up-content-area h2 {
    font-weight: 500;
    font-size: clamp(1.75rem, 2.493rem, 1.25rem);
    background-color: #0073bc;
}

.up-content-area h3 {
    font-weight: 500;
    font-size: clamp(1.688rem, 2.155rem, 1rem);
    color: #0073bc;
    border-bottom: 3px dotted #0073bc;
}

.up-content-area h4 {
    padding-left: 1em;
    font-weight: 500;
    font-size: clamp(1.375rem, 1.935rem, 1rem);
    color: #0073bc;
}

.up-content-area h4::before {
    width: 0.2em;
    background-color: #0073bc;
    top: 0.35em;
}

.newsblog-detail02 {
    padding: 2em;
    border: #c0c0c0 1px solid;
    border-radius: 20px;
}

/* 採用情報ページ */
.recruit04list {
    max-width: 800px;
    margin-top: 3em;
    margin-left: auto;
    margin-right: auto;
}

.recruit04item {
    padding: 2em 5em;
    border-bottom: 1px solid #e9e9e9;
}

.aic {
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.flexsb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px
}
.flexsb:last-child{
  margin-bottom: 0;
}

.recruit04item dt {
    width: 9em;
    color: #0073bc;
}

.recruit04item dt+dd {
    width: calc(100% - 10em);
}

.re-btn {
    width: 300px;
    height: auto;
    position: relative;
}

.re-btn a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0.5em;
    line-height: 2.2;
    text-align: center;
    border: #0066ad 1px solid;
    border-radius: 30px;
    background-color: #fff;
    opacity: 1;
}

.re-btn {
    position: relative;
}

.re-btn a::before {
    content: "";
    width: 30px;
    height: 30px;
    border: 1px solid #0066ad;
    border-radius: 50%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: linear-gradient(#fff, #fff);
    background-size: 15px 2px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0066ad;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 25px;
}

.re-btn a::after {
    content: "" !important;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-61%) rotate(222deg);
    position: absolute;
    top: 52%;
    left: 33px;
}

.re-btn a:hover::before {
    -webkit-transform: translateY(-50%) translateX(-5px);
    transform: translateY(-50%) translateX(-5px);
}

.re-btn a:hover::after {
    -webkit-transform: translateY(-62%) translateX(-5px) rotate(-135deg);
    transform: translateY(-62%) translateX(-5px) rotate(-135deg);
}

@media (max-width:599px) {
    .recruit04item {
        padding: 10px 10px 10px 0;
    }

    .recruit04item dt {
        width: 6em;
    }

    .recruit04item dt+dd {
        width: calc(100% - 6em);
    }
}


/* お問い合わせページ */
.contact-text {
    padding-left: 1.5em;
    position: relative;
}

.contact-num {
    position: absolute;
    top: 0;
    left: 0;
}

.contact-text {
    line-height: 1.8;
}

.formlist {
    max-width: 900px;
}

.formitem {
    padding: 2em 0;
}

.formitem dt {
    width: 30%;
}

.formitem dt {
    white-space: nowrap;
}

.formitem .reqw {
    margin-left: 1em;
    padding: 2px 5px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background-color: #0073bc;
}

.formitem dd {
    width: 66%;
}

.formitem dd input {
    width: 100%;
    padding: 0.5em 0.5em;
}

formitem button,
.formitem input,
.formitem select,
.formitem textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    color: #000;
    border: 1px solid #888;
    border-radius: 3px;
    background-color: #fff;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
}

.up-d-iblock {
    display: inline-block;
}

.formitem dd .inputlist li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-bottom: 1em;
}

.formitem dd .inputlist li input[class="p-postal-code"] {
    width: 150px;
}

.form01 .formlist .formitem .checkboxer input {
    display: none;
}

.formitem dd input {
    width: 100%;
    min-height: 40px;
    padding: 0.5em 0.5em;
}

.formitem button,
.formitem input,
.formitem select,
.formitem textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    color: #000;
    border: 1px solid #888;
    border-radius: 3px;
    background-color: #fff;
}

.form01 .formlist .formitem .checkboxer label {
    display: inline-block;
    margin: 0.5em 0;
    margin-right: 15px;
    padding: 0 10px 0 24px;
    position: relative;
}

.form01 .formlist .formitem .checkboxer label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 1px solid #888;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 3px;
    left: 0;
}

.form01 .formlist .formitem .checkboxer input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #0073bc;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 5px;
    left: 2px;
}

.formitem dd input[type="radio"]:checked+label {
    border-bottom: 1px solid;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.formitem dd input[type="radio"]+label {
    margin-right: 20px;
    padding-left: 20px;
    line-height: 200%;
    position: relative;
}

.formitem dd textarea {
    width: 100%;
    height: 250px;
    padding: 0.25em 0.5em;
}

.formitem dl input[type="file"] {
    margin-top: 20px;
}

.formitem+.formitem {
    border-top: 1px dotted #c0c0c0;
}

.formbtn2 li {
    max-width: 250px;
}

.formbtn li {
   /*  width: 100%; */
    max-width: 320px;
    margin: auto;
}

.formbtn li button,
.formbtn li input {
    width: 260px;
    max-width: 100%;
    display: inline-block;
    padding: 1.25em 0.5em;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 50px;
    background-color: #0073bc;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width:599px) {
    .formitem {
        padding: 0 0 1em;
    }

    .formitem+.formitem {
        border: none;
    }

    .contact .formitem dl {
        display: block;
    }

    .contact .formitem dt {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact .formitem dd {
        width: 100%;
    }

    .formitem dl input[type="file"] {
        margin: 0 0 10px;
    }
    .form01 .formlist .formitem .checkboxer label::before{
      top: 2px;
    }
}

.tit-under002 {
    font-size: 18px;
}

@media (max-width: 1024px) {
    .contact-area .btn-box {
        gap: 20px;
    }
}

/* 追従ボタン */
  .follow {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: transform 0.3s ease; /* 動きを滑らかに */
}
.follow-btn {
    width: 35%;
    padding: 1em 0;
    color: #fff;
    border: 1px #fff solid;
    background-color: #0073bc;
}
.test-b .follow-box .follow-btn{
  background-color: #ffca00;
  color: #444444;
}
.follow-l {
    padding-left: 0.5em;
}
  .follow.drop {
    transform: translateY(0);
  } 
  .follow.scroll-top {
    transform: translateY(-100%);
  }
  @media (max-width: 599px) {
  .footer {
    padding-bottom: 70px;
}
.footer-bottom-nav {
    margin-bottom: 15px;
}
}

.follow-btn02 {
    width: 80%;
    margin: 2em auto 0;
    padding: 1em 0;
    color: #fff;
    border: 1px #fff solid;
    background-color: #0073bc;
}
.ab{
  max-height: 0;
}

/* 見たまま編集 */
[data-element-id] .layer-arrows{
  animation: none !important;
  top: -146px;
}
[data-element-id] .layer-arrows img{
  height: 40vh;
}
[data-element-id] .bulb-glow{
  animation: none !important;
  top: 180%;
  pointer-events: auto;
}
[data-element-id] .ab{
  max-height: 100px;
}
[data-element-id] .follow {
  display: block;
  position: relative;
  width: 500px;
}
[data-element-id] .follow-btn{
  width: 35%;
    padding: 1em 0;
    color: #fff;
    border: 1px #fff solid;
    background-color: #0073bc;
}
[data-element-id] .follow-l {
    padding-left: 0.5em;
}
[data-element-id] [data-ab-test-contents]+[data-ab-test-contents]{
  width: 510px;
}
[data-element-id] [data-ab-test-contents]{
  width: 510px;
}
[data-ab-test-block]{
  width: 510px;
}

[data-element-id] .header{
  position: relative;
}
[data-element-id] .nav-min{
  display: block;
  border: solid 2px #ff1493;
}
[data-element-id] [data-element-id] .nav-min:after {
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #ff1493;
}
[data-element-id] .nav-box-item:first-child .nav-min{
  margin-right: 205px;
}

[data-element-id] .nav-box-item:first-child .nav-min:after{
  content: "会社案内ドロップダウンメニュー";
}
[data-element-id] .nav-box-item:nth-child(2) .nav-min:after{
   content: "事業案内ドロップダウンメニュー";
}
[data-element-id] .nav-box-item:nth-child(5) .nav-min:after{
   content: "求人採用ドロップダウンメニュー";
}
[data-element-id] .hum-content{
  opacity: 1;
  position: relative;
  visibility: visible;
}
[data-element-id] .nav-content {
  flex-direction: column;
}
[data-element-id] .hum-content{
  border: solid 2px #ff1493;
  height: 1023px;
}
[data-element-id] .hum-content:after {
  content: "ハンバーガーメニュー";
  width: 100%;
    display: block;
    font-weight: 700;
    height: 25px;
    font-size: 12px;
    padding: 5px 2px 2px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #ff1493;
}
[data-element-id] .header-logo-inner{
  border: solid 2px #1465ff;
}
[data-element-id] .header-logo-inner:after {
   content: "ヘッダー内のロゴ";
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #1465ff;
}
[data-element-id] .hum-button{
  margin-top: 200px;
}
[data-element-id] .h1{
  display: none;
}
[data-element-id] .h1-text{
  display: block;
  width: 1000px;
  margin: auto;
}
[data-element-id] .top-mv{
  margin-top: 50px;
  margin-bottom: 1000px;
}
[data-element-id] .slide-box01{
  top: 0;
}
[data-element-id] .slide-box03{
  left: 65px;
  top: 218px;
}
[data-element-id] .slide-box02{
  top: 421px;
  left: 62px;
}
[data-element-id] .slide-box04{
  top: 641px;
  left: 62px;
}
[data-element-id] .slide-box01:after,
.slide-box02:after,
.slide-box03:after,
.slide-box04:after{
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #1465ff;
    height: 20px;
}
[data-element-id] .slide-box01:after{
  content: "左上スライドの画像グループ";
}
[data-element-id] .slide-box03:after{
  content: "右上スライドの画像グループ";
}
[data-element-id] .slide-box02:after{
  content: "左下スライドの画像グループ";
}
[data-element-id] .slide-box04:after{
  content: "右下スライドの画像グループ";
}
[data-element-id] .top-backimg{
  margin-top: 10px;
}
[data-element-id] .top-text-item01{
  animation: none;
  font-size: 35px;
}
[data-element-id] .top-text{
  width: 80%;
  margin: auto;
  display: block;
  overflow: visible;
  border: solid 2px #ff1493;
}
[data-element-id] .top-text:after {
   content: "トップ画像の下に流れる文字";
  width: 100%;
    display: block;
    font-weight: 700;
    height: 25px;
    font-size: 12px;
    padding: 5px 2px 2px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #ff1493;
}
[data-element-id] .slogan{
  margin-top: 100px;
}

.swiper-button-prev,
.swiper-button-next{
  text-indent: -9999px !important;
  overflow: hidden !important; 
}

[data-element-id] .business-item .slide-text{
  visibility: visible;
  opacity: 1;
  position: relative;
  left: 0;
}
[data-element-id] .business-contet .swiper-wrapper{
  display: block;
  transform: none !important;
}
[data-element-id] .achivement-item:hover{
  transform: none;
}
[data-element-id] .under-mv-sec{
  margin-top: 10%;
}
[data-element-id] .footer{
  margin-top: 10em;
}
[data-element-id] .undercontact-content{
  margin-bottom: 200px;
}
[data-element-id] .follow-box02{
  display: block;
  max-width: 375px;
  border: solid 2px #1465ff;
}
[data-element-id] .follow-box02:after {
    content: "スマホの時のみ表示";
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #1465ff;
}

.follow-box02 .follow-box a{
  display: block;
}

[data-element-id] .btn--circle{
  bottom: -30px;
  right: -12px;
}
[data-element-id] .top-backimg img{
  margin-top: 1030px;
}

@media (max-width: 1024px) {
    .contact-area {
       width: 100%;
        margin: 5em auto 0;
    }

    .contact-area .btn-box {
        gap: 20px;
    }
}

@media (max-width: 599px) {
    .contact-area .inbox {
        padding: 15px;
    }

    .contact-area .inbox .contact-txt {
        text-align: justify;
    }

  /*   .contact-btn {
      width: 65%;
  } */
    .footer-logo a{
  text-align: center;
}
}

.catarea03{
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 599px){
  .case-item{
    font-size: 20px;
  }
  .initiatives01-item::before{
    top: 5px;
  }
}
.follow-box02{
  margin-top: 50px;
}
[data-element-id] .follow-box02{
  margin-top: -130px;
  margin-left: 125px;
}

.breadcrumbs-list.新卒採用 .中途採用{
  display:none;
}

.breadcrumbs-list.中途採用 .新卒採用{
  display:none;
}

.新卒採用 .btn-2{
display:none;
}
.中途採用 .btn-1{
display:none;
}

.uk-lb:hover{
  cursor: pointer;
}

@media (max-width: 1024px) {
    .hum-item {
        width: 100%;
    }
}
body.drawer-active .hum-content {
    /* background: radial-gradient(rgb(255 255 255), rgb(158 200 241)); */
    background-image: -webkit-gradient(linear, left top, right top, from(rgb(239 247 255)), to(rgb(232 242 255)));
    background-image: linear-gradient(90deg, rgb(239 247 255), rgb(232 242 255));
}
.main-office {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.construction {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.hum-img {
    width: 60%;
    max-width: 540px;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    position: absolute;
    top: -20%;
    left: 17%;
}
.hum-img .img01 {
    -webkit-animation: arrow-float 3s ease-in-out infinite !important;
    animation: arrow-float 3s ease-in-out infinite !important;
}
.Hamburger_bottom_contact__JFN4z {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    background-color: #f5faff;
}

.Hamburger_bottom_contact__JFN4z:hover {
    background-color: #edf5ff;
}

.Hamburger_bottom_contactLabel__lGR7I {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;

    gap: 40px;
}

.Hamburger_bottom_contactLabel__lGR7I strong {
    font-weight: 700;
    font-size: 24px;
    color: #0073bc;
    letter-spacing: 0.05em;
}

.Hamburger_bottom_contactLabel__lGR7I span {
    font-size: 14px;
}

.Hamburger_bottom_contactIcon__vvcTS {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
    border-radius: 50%;
    background: radial-gradient(circle, #89c3ff 0%, #3a8cff 100%);
    -webkit-box-shadow: 0 4px 12px rgba(58, 140, 255, 0.2);
    box-shadow: 0 4px 12px rgba(58, 140, 255, 0.2);
   transition: 0.5s;
}

.SvgIcon_svg__qbJTq svg {
    width: 18px;
    height: auto;
    display: block;
}

@media(max-width: 1024px) {
    .Hamburger_bottom_contact__JFN4z {
        width: 100%;
    }
    .hum-img {
        display: none;
    }
    .Hamburger_bottom_contact__JFN4z {
        margin-top: 20px;
    }
}
@media(max-width: 599px) {
    .Hamburger_bottom_contact__JFN4z {
        display: none;
    }
}
[data-element-id] .nav-add{
  margin-top: -18px;
}
[data-element-id] .header{
  margin-bottom: 200px;
}
[data-element-id] .Hamburger_bottom_contact__JFN4z{
  margin-bottom: 160px;
}
[data-element-id] .Hamburger_bottom_contact__JFN4z:after {
    content: "パソコン・タブレットで表示";
    display: block;
    font-weight: 700;
    height: 35px;
    font-size: 12px;
    line-height: 2.2;
    color: #fff;
    text-align: center;
    background: #ff1493;
}
[data-common-area] {
  padding-bottom: 2px;
}
[data-element-id] .hum-img{
  width: 30%;
  top: 0;
  border: solid 2px #ff1493;
}
[data-element-id] .hum-img:after {
    content: "パソコンでのみ表示";
    display: block;
    font-weight: 700;
    height: 35px;
    font-size: 12px;
    line-height: 2.2;
    color: #fff;
    text-align: center;
    background: #ff1493;
}
[data-element-id] .hum-img .img01{
  animation: none !important;
}

/* アニメーション */
@-webkit-keyframes fuwafuwa {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes fuwafuwa {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
}

.slide-img img,
.back-img,
.back-img02,
.achievements-content .pic .img,
.ideal-content .pic .img{
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    -webkit-perspective: 1000;         
    perspective: 1000;
    will-change: transform;           
}
