@charset "UTF-8";
:root {
    --main-font-color: #333;
    --sub-font-color: #fff;
    --main-color: #005bac;
    --main-thin-color: #edf4fa;
    --accent-color: #e03131;
    --gray-dark: #848484;
    --gray-medium: #e8e8e8;
    --gray-thin: #b7b7b7;
    --bg-black: #303234;
}
/*--------------------------------
 全体
---------------------------------*/
html {
    overflow-x: hidden;
    /* scroll-behavior: smooth; */
    /* ページ内のスムーススクロール */
}
body {
    overflow-wrap: anywhere;
    /* 収まらない場合に折り返す */
    word-break: normal;
    /* 単語の分割はデフォルトに依存 */
    line-break: strict;
    /* 禁則処理を厳格に適用 */
    overflow-x: hidden;
    color: var(--main-font-color);
    box-sizing: border-box;
    font-feature-settings: 'palt';
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
    /* 50 */
}
.outfit {
    font-family: "Outfit";
}
p {
    line-height: 1.87;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
table th {
    font-weight: normal;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
a:link {
    color: var(--main-font-color);
}
a:visited {
    color: var(--main-font-color);
}
body * {
    box-sizing: inherit;
    min-height: 0vw;
    /* Safari clamp関数対策 */
}
address {
    font-style: normal;
}
@media (min-width: 600px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
main {
    position: relative;
}
/*--------------------------------
 レイアウト
---------------------------------*/
.container_narrow {
    max-width: 940px;
    margin-inline: auto;
    padding: 0 10px;
}
.container_wide {
    max-width: 1300px;
    margin-inline: auto;
    padding: 0 10px;
}
/*--------------------------------
 ぺージトップボタン
---------------------------------*/
.page-top {
    display: none;
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 10;
}
.page-top__link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: 2px solid var(--main-color);
    row-gap: 7px;
}
.page-top__link>span {
    color: var(--main-color);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.page-top__link .arrow-top::before,
.page-top__link .arrow-top::after {
    background: var(--main-color);
}
@media screen and (min-width : 601px) {
    .page-top__link:hover {
        transform: translate(0px, -5px);
    }
}
.page-top__link:hover {
    opacity: 0.8;
}
/*--------------------------------
 矢印
---------------------------------*/
/* 上向き */
.arrow-top {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 11.5px;
}
.arrow-top::before,
.arrow-top::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 1.5px);
    width: 3px;
    height: 15px;
    border-radius: 9999px;
    background-color: #333333;
    transform-origin: 50% 1.5px;
}
.arrow-top::before {
    transform: rotate(45deg);
}
.arrow-top::after {
    transform: rotate(-45deg);
}
/* 右向き_青色 */
.arrow-right-blue {
    position: relative;
    display: inline-block;
    width: 7.7px;
    height: 13.3px;
}
.arrow-right-blue::before,
.arrow-right-blue::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 10px;
    height: 2px;
    border-radius: 9999px;
    background: var(--main-color);
    transform-origin: calc(100% - 1px) 50%;
}
.arrow-right-blue::before {
    transform: rotate(45deg);
}
.arrow-right-blue::after {
    transform: rotate(-45deg);
}
/* 右向き_白色 */
.arrow-right-white {
    position: relative;
    display: inline-block;
    width: 7.7px;
    height: 13.3px;
}
.arrow-right-white::before,
.arrow-right-white::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 10px;
    height: 2px;
    border-radius: 9999px;
    background: var(--sub-font-color);
    /* 白色 */
    transform-origin: calc(100% - 1px) 50%;
}
.arrow-right-white::before {
    transform: rotate(45deg);
}
.arrow-right-white::after {
    transform: rotate(-45deg);
}
/* 右向き中央線あり */
.arrow-right {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 2px;
    margin: 4.3px 0;
    border-radius: 9999px;
    background-color: var(--main-color);
}
.arrow-right::before,
.arrow-right::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: var(--main-color);
    transform-origin: calc(100% - 1px) 50%;
}
.arrow-right::before {
    transform: rotate(45deg);
}
.arrow-right::after {
    transform: rotate(-45deg);
}
/*--------------------------------
 ボタン
---------------------------------*/
/* メールボタン */
.mail-btn {
    background: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 20px 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    transition: .2s;
}
.mail-btn:link {
    color: var(--sub-font-color);
}
.mail-btn:visited {
    color: var(--sub-font-color);
}
.mail-btn::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url(../common_images/icon-mail.svg) no-repeat;
    background-size: cover;
    margin-right: 10px;
}
@media screen and (min-width : 601px) {
    .mail-btn:hover {
        background: var(--sub-font-color);
        color: var(--main-color);
    }
    .mail-btn:hover::before {
        background: url(../common_images/icon-mail-blue.svg) no-repeat;
    }
}
/* メールボタン_end */
/* 背景白で青枠ボタン */
.btn1-white {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
    background: var(--sub-font-color);
    width: 260px;
    text-align: center;
    border: 2px solid var(--main-color);
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    transition: .3s;
    padding: 20px 60px;
    border-radius: 999px;
}
.btn1-white:visited,
.btn1-white:link {
    color: var(--main-color);
}
.btn1-white::before {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    right: -60px;
    z-index: -1;
    border-right: 60px solid transparent;
    border-bottom: 60px solid var(--main-color);
    transform: translateX(-100%);
    transition: transform ease .3s;
}
@media screen and (min-width : 601px) {
    .btn1-white:hover {
        color: var(--sub-font-color);
    }
    .btn1-white:hover::before {
        transform-origin: 0% 50%;
        transform: scaleX(1);
    }
    .btn1-white:hover .arrow-right-blue::before,
    .btn1-white:hover .arrow-right-blue::after {
        background: var(--sub-font-color);
    }
}
.btn1-white .arrow-right-blue {
    right: -37px;
}
/* 背景青ボタン */
.btn1-blue {
    color: var(--sub-font-color);
    font-size: 16px;
    font-weight: bold;
    background: var(--main-color);
    width: 260px;
    text-align: center;
    border: 2px solid var(--sub-font-color);
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    transition: .3s;
    padding: 20px 60px;
    border-radius: 999px;
}
.btn1-blue:visited,
.btn1-blue:link {
    color: var(--sub-font-color);
}
.btn1-blue::before {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    right: -60px;
    z-index: -1;
    border-right: 60px solid transparent;
    border-bottom: 60px solid var(--sub-font-color);
    transform: translateX(-100%);
    transition: transform ease .3s;
}
@media screen and (min-width : 601px) {
    .btn1-blue:hover {
        color: var(--main-color);
        background: var(--sub-font-color);
        border-color: var(--main-color);
    }
    .btn1-blue:hover::before {
        transform-origin: 0% 50%;
        transform: scaleX(1);
    }
    .btn1-blue:hover .arrow-right-white::before,
    .btn1-blue:hover .arrow-right-white::after {
        background: var(--main-color);
    }
}
.btn1-blue .arrow-right-white {
    right: -37px;
}
/*--------------------------------
 見出し
---------------------------------*/
/* 共通項目 */
/* base */
.index-heading {
    display: flex;
}
.index-heading>h2 {
    font-size: 30px;
    font-weight: bold;
}
.index-heading>p {
    text-transform: uppercase;
    font-size: 78px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
}
/* base_end */
/* 縦向き_大きい */
.column-heading {
    flex-direction: column-reverse;
    row-gap: 16px;
    align-items: flex-end;
}
/* 縦向き_中くらい */
.column-heading-middum {
    align-items: flex-start;
    row-gap: 14px;
}
.column-heading-middum>h2 {
    font-size: 20px;
}
.column-heading-middum>p {
    font-size: 50px;
}
/* 横一列 */
.row-heading {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
    column-gap: 40px;
}
.row-heading>h2 {
    margin-bottom: 15px;
}
.row-heading>p {
    font-size: 90px;
}
/* 横一列_白文字 */
.row-heading-white {
    column-gap: 20px;
}
.row-heading-white>h2,
.row-heading-white>p {
    color: var(--sub-font-color);
}
.row-heading-white>p {
    line-height: 0.6;
}
.row-heading-white>h2 {
    margin-bottom: 0px;
}
/* 文字の前に縦線見出し */
.line-heading {
    position: relative;
    font-size: 32px;
    font-weight: bold;
    padding: 5px;
    padding-left: 20px;
    margin-bottom: 0.5em;
}
.line-heading:before {
    position: absolute;
    border-radius: 1px;
    content: "";
    left: 0%;
    top: 5%;
    bottom: 10%;
    width: .2em;
    height: 90%;
}
/*--------------------------------
 共通項目
---------------------------------*/
.index-service,
.index-case {
    margin-bottom: 150px;
}
.index-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
/*--------------------------------
 マウスオーバーエフェクト
---------------------------------*/
.rotate-link {
    display: inline-block;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    overflow: hidden;
}
.rotate-link span {
    display: block;
    transition: transform 0.5s ease;
    transform-origin: center top;
}
.rotate-link span:first-child {
    transform: translateY(0) rotateX(0deg);
}
.rotate-link span:last-child {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%) rotateX(-90deg);
}
@media screen and (min-width : 601px) {
    .rotate-link:hover span:first-child {
        transform: translateY(-100%) rotateX(90deg);
    }
    .rotate-link:hover span:last-child {
        transform: translateY(0) rotateX(0deg);
    }
}
.opacity-link {
    transition: opacity .3s;
}
@media screen and (min-width : 601px) {
    .opacity-link:hover {
        opacity: 0.6;
    }
}
/*--------------------------------
 フェードアップアニメーション
---------------------------------*/
.fadeUp1 {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
}
.fadeUp2 {
    opacity: 0;
    transform: translate(0,50%);
    transition: 3.5s;
}
.fadeUp1.show,
.fadeUp2.show {
    opacity: 1;
    transform: translate(0, 0);
}
/*--------------------------------
 ヘッダー
---------------------------------*/
.header {
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .nav-menu {
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}
@media screen and (max-width : 1100px) {
    .header .nav-menu li {
        margin-right: 50px;
    }
    .header .nav-menu li:last-child {
        margin-right: 60px;
    }
}
.header .nav-menu li {
    margin-right: 90px;
}
.header .nav-menu li:nth-last-child(2) {
    margin-right: 55px;
}
.header .nav-menu li:last-child {
    margin-right: 100px;
}
.header h1 {
    position: fixed;
    z-index: 2;
}
.header #navi {
    margin-left: auto;
}
/*--------------------------------
 ハンバーガーメニュー
---------------------------------*/
#navi-full {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    padding: 90px 00px;
    background-color: var(--main-font-color);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 20;
    pointer-events: none;
}
.navi-full-menu hgroup {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 7px;
}
.navi-full-menu hgroup>h2,
.navi-full-menu li:last-child {
    font-size: 14px;
    font-weight: normal;
}
.navi-full-menu hgroup>p {
    text-transform: uppercase;
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
}
.sns-list {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.sns-list li {
    margin-bottom: 0;
}
.navi-full-menu li {
    margin-bottom: 30px;
}
.navi-full-menu li a {
    color: var(--sub-font-color);
}
.open #navi-full {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}
.menu_btn {
    position: fixed;
    cursor: pointer;
    width: 70px;
    height: 70px;
    top: 1.5%;
    right: 3%;
    z-index: 30;
    transition: .3s ease;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(234, 244, 250, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_btn::after {
    content: "MENU";
    font-size: 10px;
    position: absolute;
    font-weight: bold;
    color: var(--main-font-color);
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}
.menu_btn.active::after {
    content: "CLOSE";
    font-size: 9px;
    bottom: 12px;
}
.menu_btn span {
    display: block;
    position: absolute;
    width: 33px;
    height: 2px;
    background: var(--main-font-color);
    transition: all .4s ease;
    border-radius: 20px;
}
.menu_btn span:nth-of-type(1) {
    top: 18px;
}
.menu_btn span:nth-of-type(2) {
    top: 28px;
}
.menu_btn span:nth-of-type(3) {
    top: 38px;
}
.menu_btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
}
.menu_btn.active span:nth-of-type(2) {
    opacity: 0;
}
.menu_btn.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
}
/*--------------------------------
 フッター
---------------------------------*/
footer {
    width: 100%;
    background: var(--bg-black);
    color: var(--sub-font-color);
    margin-top: -70px;
    position: absolute;
    z-index: -1;
}
.footer-middle a:link,
.footer-middle a:visited,
.footer-site .site-map ul li a:visited,
.footer-site .site-map ul li a:link {
    color: var(--sub-font-color);
}
.footer-top {
    padding-top: 150px;
    padding-bottom: 25px;
}
.footer-bottom {
    padding: 25px 0;
    border-top: 2px solid #9b9b9b;
    text-align: center;
}
.footer-site {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-site .site-map ul {
    display: flex;
}
.footer-site .site-map ul li {
    padding: 3px 33px;
}
.footer-site .site-map ul li {
    border-right: 2px solid var(--sub-font-color);
}
.footer-site .site-map ul li:last-child {
    border-right: none;
    padding: 3px 0px 3px 33px;
}
.footer-site .site-map ul li a {
    font-size: 15px;
    font-weight: bold;
}
.footer-middle {
    display: flex;
    justify-content: space-between;
    padding-bottom: 77px;
}
.footer-middle .right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.footer-middle .right>a {
    font-size: 11px;
}
.footer-middle .address {
    margin-bottom: 27px;
}
.footer-middle .left dl dt,
.footer-middle .left dl dd {
    margin-bottom: 13px;
}
.footer-middle .left dl dd p {
    margin-bottom: 13px;
}
.footer-sns-list {
    display: flex;
    justify-content: flex-end;
}
/*--------------------------------
 メインビジュアル
---------------------------------*/
.hero-area {
    width: 100vw;
    height: calc(100vh - 95px);
}
.hero {
    width: calc(100vw - 30%);
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.hero .hero-text {
    position: absolute;
    left: -30%;
    padding: 0 0 100px 10px;
    z-index: 1;
}
.hero-text .sub-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.075em;
    margin-bottom: 40px;
}
@media screen and (max-width : 999px) {
    .hero-text .sub-title>p {
        display: inline-block;
        background: #005BAC;
        background: linear-gradient(19deg, rgba(0, 91, 172, 1) 0%, rgba(113, 207, 243, 1) 100%);
        color: var(--sub-font-color);
        padding: 10px;
    }
}
.hero .swiper-wrapper {
    width: 100%;
}
.hero .swiper-wrapper div {
    height: 100vh;
    width: auto;
}
.hero .swiper-wrapper div img {
    border-radius: 50px 0px 0px 50px;
    object-fit: cover;
    height: 87vh;
    width: 100%;
}
/* 流れる文字 */
.bg .bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 20px;
}
.bg .bg-wrap:last-child {
    margin-bottom: 30px;
}
.bg.is-animated .bg-wrap::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: linear-gradient(to right, #fff 0%, #fff 50%, #fff 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    z-index: 1;
}
.bg .bg-wrap .inn {
    color: #333;
    display: inline-block;
    font-size: 60px;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
}
@keyframes bg {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-5%);
    }
    30% {
        transform: scaleX(1) translateX(0);
    }
    100% {
        transform: scaleX(1) translateX(0);
    }
    30%,
    100% {
        opacity: 1;
    }
}
/* 流れる文字_end */
/* スクロールダウンボタン */
.scroll_down {
    position: absolute;
    top: 85%;
    right: 12%;
}
.scroll_down a {
    color: var(--sub-font-color);
    font-size: 13px;
    letter-spacing: 2px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    display: block;
    background-size: 14px auto;
    z-index: 2;
    transform: translate(-50%, -50%);
    writing-mode: vertical-lr;
    text-orientation: upright;
    cursor: default;
}
.scroll_down a:before {
    position: absolute;
    top: calc(50% - 56px);
    left: calc(50% - 8px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid var(--sub-font-color);
    border-width: 0px 0 2px 2px;
}
.scroll_down a:after {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid var(--sub-font-color);
    content: "";
    border-radius: 100%;
    top: calc(50% - 64px);
    left: calc(50% - 19px);
}
.scroll_down a span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 0 0 var(--sub-font-color);
    opacity: 0;
    animation: circle 3s infinite;
    top: calc(50% - 63px);
    left: calc(50% - 19px);
}
@keyframes circle {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, .1);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/* スクロールダウンボタン_end */
/*--------------------------------
 ブライトについて
---------------------------------*/
.index-about {
    margin-left: 2%;
    border-radius: 0 0 0 80px;
    position: relative;
    top: -200px;
    margin-bottom: 60px;
    padding: 300px 0 230px 0;
    background: rgb(237, 244, 250);
    background: linear-gradient(0deg, rgba(237, 244, 250, 1) 0%, rgba(255, 255, 255, 1) 76%);
}
.index-about-desc {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 20px;
    position: relative;
    right: 2%;
}
.index-about-desc .text-area {
    background: var(--sub-font-color);
    border-radius: 10px;
    padding: 40px 60px;
    max-width: 560px;
    box-shadow: 11px 11px 20px 0px rgba(0, 91, 172, 0.08);
    margin-top: 100px;
    position: absolute;
    right: 0;
}
.index-about-desc .text-area>h3 {
    color: var(--main-color);
    font-size: 30px;
    margin-bottom: 45px;
}
.index-about-desc .text-area p {
    margin-bottom: 30px;
}
.index-about-desc .text-area p:last-child {
    margin-bottom: 45px;
}
.index-about-desc .img-area img {
    aspect-ratio: 29 / 22;
    height: 440px;
    object-fit: cover;
    border-radius: 50px;
}
/*--------------------------------
 事業内容
---------------------------------*/
.index-flex>div {
    margin-right: 220px;
}
@media screen and (max-width : 1200px) {
    .index-flex>div {
        margin-right: 140px;
    }
}
.index-service-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.index-service-list-item .line-heading,
.index-service-list-item>a div>p {
    color: var(--sub-font-color)
}
.index-service-list-item .line-heading::before {
    background: var(--sub-font-color);
}
.index-service-list-item>a {
    position: relative;
    aspect-ratio: 230 / 307;
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    transition: all .3s;
    border-radius: 40px;
    display: block;
}
.index-service-list-item>a::before {
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    content: "";
    height: auto;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .6s ease;
    width: 100%;
    z-index: 1;
}
.index-service-list-item>a div {
    position: absolute;
    bottom: 0%;
    padding: 70px 30px;
    z-index: 2;
}
.index-service-list-item>a img {
    border-radius: 40px;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 40px;
    transform-origin: center center;
}
@media screen and (min-width: 600px) {
    .index-service-list-item>a:hover img {
        transform: scale(1.1);
    }
    .index-service-list-item>a:hover::before {
        opacity: 1;
    }
}
/*--------------------------------
 施工事例
---------------------------------*/
.index-case .index-flex>div {
    margin-right: 0;
}
.swiper2-item {
    width: 290px;
    flex-shrink: 0;
}
.swiper2-item figure {
    position: relative;
    display: inline-block;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 290px;
    height: 245px;
    width: 100%;
    transition: all .3s;
    border-radius: 0px 0px 50px 0px;
}
@media screen and (max-width : 1300px) {
    .swiper2-item figure {
        height: 200px;
    }
}
@media screen and (max-width : 1100px) {
    .swiper2-item figure {
        height: 175px;
    }
}
.swiper2-item figure img {
    border-radius: 0px 0px 20% 0px;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    transform-origin: center center;
}
.index-service-list-item>a img {
    border-radius: 40px;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 40px;
    transform-origin: center center;
}
@media screen and (min-width: 600px) {
    .swiper2-item a:hover img {
        transform: scale(1.1);
    }
}
.swiper2-item figure figcaption {
    position: absolute;
    right: 4%;
    top: 4%;
    padding: 7px 10px;
    background: var(--sub-font-color);
    border-radius: 999px;
    font-size: 85%;
}
.swiper2-item .swiper2-time {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}
.swiper2-item .swiper2-title {
    font-weight: bold;
}
.swiper2 {
    overflow: visible;
    padding-left: 30rem;
}
@media screen and (max-width: 1800px) {
    .swiper2 {
        padding-left: 28rem;
    }
}
@media screen and (max-width: 1700px) {
    .swiper2 {
        padding-left: 24rem;
    }
}
@media screen and (max-width: 1600px) {
    .swiper2 {
        padding-left: 22rem;
    }
}
@media screen and (max-width: 1600px) {
    .swiper2 {
        padding-left: 22rem;
    }
}
@media screen and (max-width: 1500px) {
    .swiper2 {
        padding-left: 18rem;
    }
}
@media screen and (max-width: 1400px) {
    .swiper2 {
        padding-left: 15rem;
    }
}
@media screen and (max-width: 1300px) {
    .swiper2 {
        padding-left: 12rem;
    }
}
@media screen and (max-width: 1200px) {
    .swiper2 {
        padding-left: 8rem;
    }
}
@media screen and (max-width: 1100px) {
    .swiper2 {
        padding-left: 6rem;
    }
}
@media screen and (max-width: 1000px) {
    .swiper2 {
        padding-left: 3rem;
    }
}
.swiper2-all {
    position: relative;
}
.swiper-btn {
    display: flex;
    gap: 1em;
}
.swiper-controller {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    left: auto;
    width: auto;
}
/* ナビボタンのベーススタイル */
.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
    color: var(--main-font-color);
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
/* ホバー時：白背景＋グレー枠 */
@media screen and (min-width: 600px) {
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background-color: var(--sub-font-color);
        border-color: var(--gray-dark);
        color: var(--main-font-color);
    }
}
/* デフォルトの矢印（疑似要素）に対しても中央に合わせる */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
}
/* 横線スタイルのページネーション */
.swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    background-color: #ccc;
    opacity: 1;
    border-radius: 0;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}
/* アクティブなバレット（現在のスライド） */
.swiper-pagination-bullet-active {
    width: 40px;
    background-color: var(--main-color);
}
.swiper-wrapper {
    width: auto !important;
}
/*--------------------------------
 採用情報・協力会社募集
---------------------------------*/
.index-recruit-partners {
    background: url(../common_images/index/bg.webp) no-repeat;
    padding: 60px 0 150px 0;
    background-size: 1100px;
    background-position: right 0px;
}
.index-recruit {
    display: flex;
    justify-content: center;
}
.index-recruit-partners-item {
    width: calc(96% / 2);
}
.index-recruit-partners-item img {
    border-radius: 50px;
    margin-bottom: 25px;
}
.index-recruit-partners-item hgroup {
    margin-bottom: 30px;
}
.index-recruit-partners-item>p {
    margin-bottom: 40px;
}
.index-recruit-partners-item:nth-child(2) {
    margin-top: 160px;
}
/*--------------------------------
 インスタグラム
---------------------------------*/
.index-instgram {
    background: var(--bg-black);
    padding-bottom: 100px;
    margin-bottom: 150px;
}
.index-instgram .inst-title {
    margin-bottom: 60px;
}
.index-instgram .inst-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
.index-instgram .inst-title>div a {
    position: relative;
    color: var(--sub-font-color);
    font-size: 20px;
    padding-left: 10px;
}
.index-instgram .inst-title>div a::before {
    position: absolute;
    content: "";
    background: url(../common_images/icon-inst.svg)no-repeat;
    width: 24px;
    height: 24px;
    left: -20%;
}
.index-instgram .inst-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 25px;
}
.index-instgram .inst-account {
    margin-right: 20px;
    position: absolute;
    right: 13%;
}
@media screen and (max-width : 1300px) {
    .index-instgram .inst-account {
        margin-right: 0;
        right: 0%;
    }
}
@media screen and (max-width : 1050px) {
    .index-instgram .inst-account {
        position: static;
    }
    .index-instgram .inst-title {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
        margin-bottom: 40px;
    }
    .index-instgram .inst-title>div a {
        left: 23%;
    }
}
/*--------------------------------
 お知らせ
---------------------------------*/
.index-news {
    padding: 150px 0;
}
.index-news .news-all hgroup {
    margin-bottom: 30px;
}
.index-news .news-all {
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
.index-news .news-all .news-title {
    width: 30%;
}
.index-news .news-all .news-main {
    width: 70%;
}
/* 下層のお知らせも共通リスト */
.news-list {
    width: 100%;
}
.news-list li {
    width: 100%;
    border-top: 1px solid var(--gray-thin);
}
.news-list li a {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 25px 26px 25px 8px;
    transition: all .3s ease;
    row-gap: 10px;
}
@media screen and (min-width: 600px) {
    .news-list li a:hover {
        background: var(--main-thin-color);
    }
    .news-list li a:hover .arrow-right {
        opacity: 1;
    }
}
.news-list li:last-child {
    border-bottom: 1px solid var(--gray-thin);
}
.news-list li .date {
    width: 17%;
    color: #a8a8a8;
}
.news-list li .arrow-right {
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: auto;
    top: 4px;
}
/* 下層のお知らせも共通リスト_end */
.index-news .btn1-blue {
    width: 210px;
}
/*--------------------------------
 CTA
---------------------------------*/
.cta-all {
    background: var(--main-thin-color);
    border-radius: 50px;
    padding: 78px;
}
.cta-all .cta-text {
    text-align: center;
}
.cta-all .cta-text .column-heading {
    align-items: center;
    margin-bottom: 30px;
}
.cta-all .cta-text>p {
    margin-bottom: 45px;
}
.cta-btnlist {
    display: flex;
    justify-content: space-between;
}
.cta-btnlist li {
    width: calc(98% / 2);
}
.tel-btn,
.cta-btnlist .mail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    height: 114px;
}
.cta-btnlist .mail-btn::before {
    width: 40px;
    height: 40px;
    margin-right: 25px;
}
/* 電話ボタン */
.tel-btn {
    font-size: 35px;
    background: var(--sub-font-color);
    border: 2px solid var(--main-color);
    padding: 20px 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .2s;
}
@media screen and (max-width : 1029px) {
    .tel-btn {
        font-size: 30px;
    }
    .tel-number::before {
        content: "";
        width: 27px !important;
        height: 27px !important;
    }
}
.tel-btn .tel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.tel-btn .tel-hours {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    color: var(--main-font-color);
}
.tel-btn:link {
    color: var(--main-color);
}
.tel-btn:visited {
    color: var(--main-color);
}
.tel-number {
    letter-spacing: 0.1em;
}
.tel-number::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../common_images/icon-tel-blue.svg) no-repeat;
    background-size: cover;
    margin-right: 10px;
}
@media screen and (min-width : 601px) {
    .tel-btn:hover {
        background: var(--main-color);
        color: var(--sub-font-color);
    }
    .tel-btn:hover .tel-number::before {
        width: 31px;
        height: 31px;
        background: url(../common_images/icon-tel.svg) no-repeat;
    }
    .tel-btn:hover .tel-hours {
        color: var(--sub-font-color) !important;
    }
}
/* 電話ボタン_end */