@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: middle;
    background: transparent;
}

:root {
    --primary-white: #FFFFFF;
    --primary-gray: #F2F2F2;
    --primary-blue: #016FD7;
    --primary-orange: #FE9028;
    --primary-black: #222222;
    /* --section-padding: 72px 5.3%; */
}

html {
    margin-top: 0px !important;
    font-size: 62.5%;
    min-height: 0;
    min-width: 0;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
    text-align: justify;
}

body {
    font-family: "Noto Sans JP", 'MS UI Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', YuGothic, 'Yu Gothic', 'TsukuBRdGothic-Regular', 'ヒラギノ角ゴシック', 'Hiragino Sans', "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-style: normal;
    color: var(--primary-black, #222222);
    background-color: var(--primary-white, #FFFFFF);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: .05em;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: pixelated;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

/* 
a.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

.anchor {
    display: inline-block;
    transition: all 0.2s;
    cursor: pointer;
}

.anchor:hover {
    opacity: 0.6;
} */

.tab {
    display: none;
}

.pc {
    display: none;
}

.sp {
    display: block;
}

.SpBr {
    display: inline-block;
}

/* <br class=”SpBr”> */

.TABBr {
    display: none;
}

.pcBr {
    display: inline-block;
}

.en {
    font-family: 'Poppins';
}

.bold {
    font-weight: 700;
}

h1 {
    color: #F2F2F2;
}

.blue {
    color: var(--primary-blue, #016FD7);
}

.orange {
    color: var(--primary-orange, #FE9028);
}

/* 共通 pc */

@media screen and (min-width: 768px) {
    .SpBr {
        display: none;
    }

    .TABBr {
        display: inline-block;
    }

    .tab {
        display: inline-block;
    }

    :root {
        --section-padding: 108px 12%;
    }
}

@media screen and (min-width: 1024px) {
    .TABBr {
        display: none;
    }

    .pcBr {
        display: inline-block;
    }

    /* <br class="pcBr"> */
    .pc {
        display: block;
    }

    /* <br class="pc"> */
    .sp {
        display: none;
    }

    /* <br class="sp"> */
    a[href^="tel:"] {
        pointer-events: none;
    }
}

@media screen and (min-width: 1440px) {
    .pcBr {
        display: none;
    }
}


/* ----------------------------------------------
 hamburger 
----------------------------------------------*/
#header .hamburger {
    position: relative;
    width: 72px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0;
    border: transparent;
    cursor: pointer;
    z-index: 99;
}

#header .hamburger span {
    display: block;
    position: relative;
    left: 50%;
    width: 32px;
    height: 2px;
    transform: translateX(-50%);
    background-color: var(--primary-white, #FFFFFF);
    transition: all 0.5s;
}

/* スクロール後 */
#header.scrolled .hamburger span {
    background-color: var(--primary-black, #000D1A);
}

#header .hamburger span:nth-of-type(1) {
    top: -7px;
}

#header .hamburger span:nth-of-type(2) {
    top: 1px;
    transform: translateX(-0.45deg);
}

#header .hamburger span:nth-of-type(3) {
    top: 9px;
    transform: translateX(-0.45deg);
}

#header .hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
    background-color: var(--primary-white, #FFFFFF);
}

#header .hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
}

#header .hamburger.is-active span:nth-of-type(3) {
    top: -4px;
    transform: translateX(-50%) rotate(-225deg);
    background-color: var(--primary-white, #FFFFFF);
}

/* ハンバーガーキット pc */

@media screen and (min-width:1024px) {
    .hamburger {
        display: none;
    }
}

/* ----------------------------------------------
  header
----------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5% 0px;
    transition: all 0.3s ease;
    background-color: transparent;
    z-index: 100;
}

#header p {
    color: var(--primary-white, #FFFFFF);
    text-decoration: none;
    transition: color 0.3s;
}

/* header__wrapper */
.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    z-index: 98;
}

.logoImg {
    width: 72px;
    height: auto;
    aspect-ratio: 1/1;
    margin-right: 0.5em;
}

.logoImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logoTitle-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding-bottom: 2px;
}

.logoTitle {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

/* スクロール後 */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#header.scrolled a {
    color: #333;
}

#header.scrolled .logoTitle {
    color: var(--primary-black, #000D1A);
}

#header.scrolled .logoTitle-sub {
    color: var(--primary-blue, #016FD7);
}

/* header pc */

@media screen and (min-width:1024px) {
    .header__inner {
        width: 100%;
        max-width: 1440px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__wrapper {
        height: 96px;
    }

    .logoImg {
        width: 96px;
    }

    .logoTitle-sub {
        display: block;
        font-size: 1.0rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        padding-bottom: 0px;
    }

    .logoTitle {
        display: block;
        font-size: 2.0rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .header__wrapper {
        position: relative;
        background-color: transparent;
    }


}

/* ナビゲーション */

.header__nav {
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgb(34, 34, 34, 0.98);
    width: 100vw;
    padding: 96px 6.4% 24px;
    transition: 0.4s;
    z-index: 98;
    height: 100vh;
    overflow-y: scroll;
    scrollbar-width: none;
    max-width: 400px;
}

.header__nav.is-active {
    position: fixed;
    right: 0;
}

.navItem {
    padding: 8px 16px 4px;
    line-height: 2.0;
    border-bottom: solid 1px #fff;
}

.contact-Item {
    padding: 8px 16px;
    background-color: var(--primary-blue, #016FD7);
    border-bottom: solid 1px #fff;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.navTxt {
    display: inline-block;
    transition: all 0.2s;
    position: relative;
    font-size: 1.6rem;
    line-height: 1.6;
}

.navTxt span {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
}

#header.scrolled .navTxt {
    color: var(--primary-white, #FFFFFF);
}

@media screen and (min-width:1024px) {

    .header__nav {
        max-width: none;
        position: relative;
        right: 0;
        padding: 0;
        height: auto;
        width: auto;
        background-color: transparent;
        overflow-y: visible;
    }

    .nav__list {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .navItem {
        padding: 8px 16px;
        line-height: 2.0;
        border-bottom: none;
    }

    .contact-Item {
        padding: 8px 32px;
        border-radius: 16px;
        margin-left: 16px;
        background-color: var(--primary-blue, #016FD7);
    }

    #header.scrolled .contact-Item {
        padding: 8px 32px;
        border-radius: 16px;
        margin-left: 16px;
        background-color: var(--primary-blue, #016FD7);
    }

    #header.scrolled .contact-Item p {
        color: var(--primary-white, #FFFFFF);
    }

    .navTxt {
        color: var(--primary-black, #222222);
        text-align: center;
    }

    #header.scrolled .navTxt span {
        color: var(--primary-blue, #016FD7);
    }

    #header.scrolled .contact-Item p span {
        color: var(--primary-white, #FFFFFF);
    }

    .navTxt:before {
        content: "";
        width: 0;
        height: 1px;
        background: var(--primary-white, #FFFFFF);
        display: block;
        position: absolute;
        top: calc(100% + 5px);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        transition: .3s;
        z-index: 99;
    }

    #header.scrolled .navTxt {
        color: var(--primary-black, #222222);
    }

    #header.scrolled .navTxt:before {
        content: "";
        width: 0;
        height: 1px;
        background: var(--primary-blue, #016FD7);
        display: block;
        position: absolute;
        top: calc(100% + 5px);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        transition: .3s;
        z-index: 99;
    }

    .navTxt:hover::before {
        width: 100%;
    }

    #header.scrolled .navTxt:hover::before {
        width: 100%;
    }

}

/* ----------------------------------------------
 footer 
----------------------------------------------*/
.inner.footer {
    padding: 72px 5.3% 40px;
    background: var(--primary-gray, #F2F2F2);
    background-size: cover;
}

.nav__list.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1em;
    gap: 0.5em;
    margin: 40px auto 16px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.4rem;
}

.areaA {
    margin-bottom: 40px;
}

.navItem.footer {
    padding: 8px 0 12px;
    line-height: 0;
    border-bottom: solid 1px #a5a3a3;
}

.navTxt.footer {
    font-size: 1.4rem;
}

/* infoWrapper */

.infoName {}

/* .logo.footer {
    width: 50%;
    height: auto;
    max-width: 240px;
    margin: 0 auto;
}

.logo.footer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

/* .infoWrapper {
    padding-top: 40px;
    border-top: solid 1px #a5a3a3;
} */

.logoTitle-sub.footer {
    color: var(--primary-blue, #016FD7);
}

.logoTitle.footer {
    color: var(--primary-black, #222222);
    text-align: left;
    font-weight: 700;
    line-height: 1.4;
}

.copyright {
    text-align: center;
    display: block;
    color: var(--primary-white, #FFFFFF);
    background-color: var(--primary-black, #222222);
    padding: 16px 0;
    font-size: 1.0rem;
}

.infoItem {
    margin-bottom: 24px;
}

.infoItem__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5em;
}

.infoItem__name {
    color: var(--primary-black, #222222);
    text-align: center;
    font-size: 1.4rem;
}

.infoItem__icon {
    background-color: var(--primary-blue, #016FD7);
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 0.5em;
}

.infoItem__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.infoTxt__wrapper {
    padding-top: 4px;
    padding-left: 16px;
}

.infoTxt {
    line-height: 1.6;
    font-size: 1.2rem;
}

.infoTxt.tel {
    font-size: 1.2rem;
}

.infoList {
    margin-top: 40px;
}

.page-link {
    text-align: center;

}

.page-link a {
    font-size: 1.2rem;
    display: inline-block;
    color: #797878;
    border-bottom: solid 1px #797878;
}

.page-link img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

@media screen and (min-width:1024px) {
    .inner.footer {
        padding: 72px 5.3% 40px;
        background: var(--primary-gray, #F2F2F2);
        background-size: cover;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .areaA,
    .areaB {
        width: 50%;
    }

    /* areaA */
    .nav__list.footer {
        width: auto;
        margin: 24px 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 1em;
    }

    .navItem.footer {
        border: none;
    }

    .page-link {
        text-align: right;
        margin-top: 16px;
    }

    .page-link a {
        font-size: 1.2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 2em;
    }

    .page-link img {
        width: 32px;
        height: 32px;
        object-fit: cover;
    }

    /* areaB */
    .infoWrapper {}

    .infoList {
        margin-top: 40px;
        display: block;
    }

    .infoItem {
        margin-top: 0px;
    }

    .nav__list.work.footer {
        flex-direction: column;
        gap: 0;
    }

    .copyright {
        padding: 24px 0;
    }

    .logoTitle-sub.footer {
        font-size: 1.2rem;
        color: var(--primary-blue, #016FD7);
    }

    .logoTitle.footer {
        font-size: 2.4rem;
    }
}

@media screen and (min-width:1440px) {
    .nav__list.footer {
        width: 100%;
        margin: 24px auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 2em;
        padding-right: 3.5em;
        border-bottom: solid 1px #333;
    }
}


/* section */

.inner {
    padding: var(--section-padding);
}

.inner.blue {
    background-color: var(--primary-gray, #F2F2F2);
}

.titleWrapper {
    display: block;

}

.mainTitle {
    font-size: 3.2rem;
    font-weight: 700;
}

.subTitle {
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    /* line-height: 1.6; */
    color: var(--primary-blue, #016FD7);

}

.subTitle::after {
    content: "";
    display: inline-block;
    color: var(--primary-blue, #016FD7);
    width: 40px;
    height: 1px;
    margin-right: 20px;
    vertical-align: middle;
}

.secTit {
    font-size: 2.8rem;
    margin: 24px auto 24px;
    /* color: var(--primary-blue, #016FD7); */
}

.secWrapper {
    margin-top: 48px;
    display: block;
    row-gap: 1em;
}

.secTxtWrapper {
    /* display: grid;
    grid-template-columns: auto 4em 1fr;
    grid-template-rows: 48px 48px auto;
    margin-top: 32px;
    row-gap: 1em; */

}

.secTxtWrapper .name {
    width: 90%;
    margin: 0 auto;
    margin-top: 1em;
    text-align: right;
}

.secTitle {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: var(--primary-blue, #016FD7);
    color: var(--primary-white, #FFFFFF);
    font-weight: 700;
    font-size: 2.0rem;
}

.secTitle.second {}

.secTxt {
    margin-top: 24px;
    max-width: 640px;
}

.secImg {
    width: 90%;
    margin: 0 auto;
    height: auto;
    max-width: 800px;
    margin-bottom: 2em;
}

.secImg img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: 80% 50%;
}

.name .sec-flex {
    display: flex;
    row-gap: 2em;
    flex-direction: column-reverse
}

.CotImg {}

.Img01 {}

.Img02 {}

.Img01 img,
.Img02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* section pc */

@media screen and (min-width:768px) {

    .secWrapper {
        margin-top: 72px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        row-gap: 1em;
    }

    .secTxtWrapper {
        margin-top: 48px;
        grid-template-rows: 4em 4em 1fr;
    }

}

@media screen and (min-width:1024px) {
    .titleWrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
    }

    .mainTitle {
        font-size: 5.6rem;
        font-weight: 700;
        line-height: 1;
    }


    .subTitle {
        font-size: 3.2rem;
        line-height: 1.4;
        color: var(--primary-blue, #016FD7);
    }


    .secWrapper {
        display: flex;
        gap: 4%;
    }

    .secTit {
        font-size: 3.0rem;
        margin: 48px auto 32px;
        line-height: 1.6;
        /* color: var(--primary-blue, #016FD7); */
    }

    .secImg {
        height: auto;
        width: 48%;
    }

    .secTxtWrapper {
        width: 48%;
        margin-top: 0px;
    }

    .secTxt {
        /* margin: 40px auto 0; */
    }

    .sec-flex {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-direction: row;
    }

    .CotTxt {
        width: 50%;
        padding: 0 4em;
    }

    .CotImg {
        width: 50%;
    }

    .CotImg {}

    .Img01 {}

    .Img02 {}
}

/* item */

.itemList {
    margin-top: 48px;
    gap: 40px;
}

.item {
    position: relative;
    margin-top: 40px;
    border: 1px solid var(--primary-black, #222222);
}

.itemTitleWrapper {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 24px;
}

.itemWrapper {
    padding: 40px 1.5em;
}

.iconTitle {
    width: 24.4%;
    height: 32px;
}

.iconTitle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.itemTitle {
    color: var(--primary-blue, #016FD7);
    font-family: "Noto Sans JP";
    font-weight: 700;
    /* line-height: 1.5; */
}

.itemSubTitle {
    color: var(--primary-black, #222222);
    font-family: "Poppins";
    font-weight: 700;
    /* line-height: 1.5; */
    padding: 0.5em;
    border-left: 1px solid var(--primary-black, #222222);
}

.itemTxt {
    margin-top: 16px;
    max-width: 640px;
}

.itemLink {
    background-color: var(--primary-white, #FFFFFF);
    border: 1px solid var(--primary-black, #222222);
    width: 100%;
}

.itemImg {
    width: 100%;
    height: 240px;
}

.itemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* item tab */

@media screen and (min-width:768px) {

    .itemList {
        margin-top: 72px;
        display: flex;
        gap: 4vw 4%;
        flex-wrap: wrap;
    }

    .item {
        margin-top: 0px;
        width: 48%;
    }

    .itemTxt {
        margin-top: 24px;
    }

    .itemWrapper {
        padding: 64px 2.25em;
    }

    .itemTitleWrapper {
        padding: 40px;
    }
}

/* ----------------------------------------------
ボタン共通
----------------------------------------------*/
.button {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 220px;
    padding: 6px 0;
    background-color: var(--primary-blue, #016FD7);
    border-radius: 50rem;
    justify-content: center;
    position: relative;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
    margin: 48px auto 0;
}

.button__txt {
    color: var(--primary-white, #FFFFFF);
    font-size: 1.4rem;
    font-weight: 700;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}

.button__arrow {
    position: absolute;
    right: 14px;
    width: clamp(1.6rem, 1.318rem + 1.2vw, 2.4rem);
    height: auto;
    aspect-ratio: 1/1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(212deg) brightness(107%) contrast(101%);
    transition: all 0.4s;
    z-index: 1;
}

.button:active {
    opacity: 0.8;
    transform: scale(0.99);
}

.button:active .button__arrow {
    transform: translateX(5px);
}

@media screen and (min-width:1024px) {
    .button {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 280px;
        padding: 8px 0;
        background-color: var(--primary-blue, #016FD7);
        border-radius: 50rem;
        justify-content: center;
        position: relative;
        transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
        margin: 48px auto 0;
    }

    .button__txt {
        color: var(--primary-white, #FFFFFF);
        font-size: 1.6rem;
        font-weight: 700;
        transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
    }
}


/* CSS */
.button-77 {
    align-items: center;
    appearance: none;
    background-clip: padding-box;
    background-color: initial;
    background-image: none;
    border-style: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    flex-direction: row;
    flex-shrink: 0;
    font-family: Eina01, sans-serif;
    font-size: 16px;
    font-weight: 800;
    justify-content: center;
    line-height: 24px;
    margin: 0;
    min-height: 64px;
    outline: none;
    overflow: visible;
    padding: 19px 26px;
    pointer-events: auto;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    width: auto;
    word-break: keep-all;
    z-index: 0;
}

@media (min-width: 768px) {
    .button-77 {
        padding: 19px 32px;
    }
}

.button-77:before,
.button-77:after {
    border-radius: 80px;
}

.button-77:before {
    background-color: rgba(249, 58, 19, .32);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

.button-77:after {
    background-color: initial;
    background-image: linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
    bottom: 4px;
    content: "";
    display: block;
    left: 4px;
    overflow: hidden;
    position: absolute;
    right: 4px;
    top: 4px;
    transition: all 100ms ease-out;
    z-index: -1;
}

.button-77:hover:not(:disabled):after {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition-timing-function: ease-in;
}

.button-77:active:not(:disabled) {
    color: #ccc;
}

.button-77:active:not(:disabled):after {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
    bottom: 4px;
    left: 4px;
    right: 4px;
    top: 4px;
}

.button-77:disabled {
    cursor: default;
    opacity: .24;
}

/* ----------------------------------------------
お問い合わせ
----------------------------------------------*/
.contact {
    /* padding: 0;
    margin-top: 80px;
    background: url(../images/backgroundImgpaper.svg) no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    background-attachment: fixed; */
}

.secTxt.contact {
    text-align: left;
}

/* メールのリンクボタン */
.button.mail {
    background-color: unset;
}

.button.mail.button__txt {
    font-size: 1.4rem;
    color: var(--primary-blue, #016FD7);
}

.button__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.button__icon img {
    z-index: 1;
    width: clamp(1.6rem, 1.318rem + 1.2vw, 2.4rem);
    height: auto;
    aspect-ratio: 1/1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(212deg) brightness(107%) contrast(101%);
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}

.button.recruit {
    margin-top: 0px;
}

.button__list {
    margin-top: 32px;
    max-width: 640px;
    padding: 4%;
    background: var(--primary-gray, #F2F2F2);
    border-radius: 4px;
}

.button__item {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px #a5a3a3;
}

.button__item:last-child {
    border-bottom: none;
}

.button__tit {
    font-size: 1.8rem;
    letter-spacing: 0.07em;
    font-weight: 700;
    text-align: center;
}

.button__sub {
    font-size: 1.4rem;
    color: #565555;
    text-align: center;
}

.button.contact {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: 64px;
    background-color: var(--primary-blue, #016FD7);
    border-radius: 4px;
    justify-content: center;
    position: relative;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
    margin: 0 auto;
}

.button__main {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.button__wrapper {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.button__txt.tel {
    color: var(--primary-white, #FFFFFF);
    font-size: 2.4rem;
    font-weight: 700;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}

.button__txt.mail {
    color: var(--primary-white, #FFFFFF);
    font-size: 1.8rem;
    font-weight: 700;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}


/* ボタン tab */

@media screen and (min-width:768px) {
    .contact .inner {
        padding: var(--section-padding);
    }

    .button__list {
        max-width: 100%;
        margin: 40px auto 0;
        display: flex;
        justify-content: center;
        gap: 0;
    }

    .button__item {
        margin-top: 0px;
    }

    .button {
        margin-top: 72px;
    }

    .button:hover {
        opacity: 0.8;
        transform: scale(0.99);
    }

    .button:hover .button__arrow {
        transform: translateX(5px);
    }

    .secTxt.contact {
        margin: 0;
        margin-top: 40px;
    }

    .button.contact {
        margin: 0 auto;
    }

    .button__item {
        border-bottom: none;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .button__item.contact {
        width: 48%;
        margin: 0 auto;
    }
}

@media screen and (min-width:1224px) {
    .contact .inner {
        padding: 108px 8em;
    }
}

/* 下層ページ */
.lowerPage {
    position: relative;
    width: 100%;
    height: 320px;
    background: url(../images/firstview.jpeg), rgba(34, 34, 34, 0.8);
    background-blend-mode: darken;
    background-size: cover;
    background-position-y: 50%;
    position: relative;
}

.inner.lowerPage {
    /* margin-top: 96px; */
    /* position: relative; */
}

.lowerPage .titleWrapper {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-10%);
    display: block;
    width: auto;
    color: #fff;
}

.lowerPage .subTitle {
    font-size: 16px;
    line-height: 1;
}

.inner.lowerPage {
    /* background: url(../images/lowerPage.JPG), rgba(34, 34, 34, 0.8);
    background-blend-mode: darken;
    background-size: cover;
    background-position-y: 50%; */
    /* margin-top: 72px; */
}

.mainTitle.lowerPage {
    color: var(--primary-white, #FFFFFF);
}

.subTitle.lowerPage {
    color: var(--primary-white, #FFFFFF);
    border-top: 1px solid var(--primary-white, #FFFFFF);
}

.breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.5em 3em 0em 1.5em;
    border-radius: 0 15px 0 0;
    background-color: #fff;
    font-size: 12px;
}

.breadcrumb__home {
    /* color: var(--primary-blue, #016FD7); */
}

.breadcrumb__arrow {
    width: 12px;
    height: auto;
    aspect-ratio: 1/1;
}

.breadcrumb__menu {
    color: #424141;
    font-weight: 400;
    white-space: nowrap;
}

/* 下層ページ レスポンシブ */

@media screen and (min-width:768px) {
    .lowerPage {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .inner.lowerPage {
        /* margin-top: 96px; */
        position: relative;
    }

    .lowerPage .titleWrapper {
        position: absolute;
        top: 40%;
        left: 7%;
        -webkit-transform: translateX(-40%);
        transform: translateX(-10%);
        display: block;
        width: auto;
        color: #fff;
    }

    .lowerPage .subTitle::after {
        display: none;
    }

    .lowerPage .subTitle {
        font-size: 16px;
        line-height: 3;
        padding-left: 0.5em;
    }

    .breadcrumb {
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5em;
        padding: 16px 5.3%;
        border-radius: 0 15px 0 0;
        background-color: #fff;
    }
}

@media screen and (min-width:1024px) {
    .breadcrumb {
        padding: 0.5em 8.5em 0em 5.5em;
        font-size: 14px;
    }
}

/* スクロールアニメーション */

.scroll_up {
    transition: 1s cubic-bezier(0, 0.55, 0.45, 1);
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.scroll_left {
    transition: 1s cubic-bezier(0, 0.55, 0.45, 1);
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    transform: translateX(0);
}

.scroll_right {
    transition: 1s cubic-bezier(0, 0.55, 0.45, 1);
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    transform: translateX(0);
}

.scroll_left {
    transition: 1s cubic-bezier(0, 0.55, 0.45, 1);
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    transform: translateX(0);
}

.timing02 {
    transition-delay: .3s;
}

.timing03 {
    transition-delay: .6s;
}

.timing04 {
    transition-delay: .9s;
}

.timing05 {
    transition-delay: 1.2s;
}

.timing06 {
    transition-delay: 1.5s;
}