@charset "UTF-8";
/*================================================
共通
 ================================================*/
*, *:before, *:after {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    outline: 0;
    margin: 0;
    border: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    color: #333333;
}
body {
    line-height: 1.6;
    background-color: #FFFFFF;
    font-size: 1.6rem;
}
a {
    display: inline-block;
    text-decoration: none;
    color: #333333;
    transition: all .3s;
    line-height: 1.2;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
.pc_only {
    display: block;
}
.sp_only {
    display: none;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wrapper {
    padding: 80px 10px;
}
.container {
    max-width: 1080px;
    margin: 0 auto;
}
.note {
    font-size: 1.2rem;
    font-weight: 300;
    padding-left: 1em;
    text-indent: -1em;
    color: #6d6d6d;
}
@media (min-width: 769px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
    }
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
    .flex {
        display: block;
    }
    .wrapper {
        padding: 40px 15px;
    }
    .container {
        max-width: none;
        width: 100%;
    }
}

/*================================================
ヘッダー
================================================*/
header {
    padding: 12px 10px;
    background: #fff;
    filter: drop-shadow(0px 4px 5px rgba(104,104,104,0.2));
    position: fixed;
    z-index: 999;
    width: 100%;
}
.header__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.sp-btnArea {
    display: none;
}
.logo {
    width: auto;
    display: inline-flex;
    align-items: center;
}
.logo a {
    display: inline-flex;
    align-items: center;
}
.globalNav {
    width: 90%;
}
.globalNav__box {
    display: flex;
    justify-content: flex-end;
    gap: 4%;
    font-size: 1.4rem;
    align-items: center;
}
.globalNav li a {
    position: relative;
    width: 100%;
}
.globalNav li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0058B1;
    transition: all .3s;
}
@media screen and (max-width: 768px) {
    header {
        padding: 0;
        height: 50px;
        display: flex;
    }
    .header__inner {
        align-items: center;
    }
    .logo {
        margin-left: 15px;
        width: 200px;
    }
    .logo img {
        height: 40px;
        width: auto;
    }
    .sp-btnArea {
        display: flex;
        align-items: stretch;
        height: 100%;
    }
    .sp-menubtn {
        width: 60px;
        height: 100%;
        position: relative;
        display: block;
        z-index: 5000;
        border: none;
        cursor: pointer;
        background: #fff;
    }
    .sp-menubtn span {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-indent: 100%;
        width: 22px;
        height: 3px;
        background: #535353;
        position: absolute;
        transition: 0.2s;
        left: 50%;
        top: 50%;
    }
    .sp-menubtn span:nth-child(1) {
        transform: translate(-50%, -9px);
    }
    .sp-menubtn span:nth-child(2) {
        transform: translate(-50%, -50%);
    }
    .sp-menubtn span:nth-child(3) {
        transform: translate(-50%, 6px);
    }
    .sp-menubtn.active span {
        width: 25px;
        height: 2px;
    }
    .sp-menubtn.active span:nth-child(1) {
        transform: translate(-50%, 50%) rotate(45deg);
    }
    .sp-menubtn.active span:nth-child(2) {
        opacity: 0;
        left: 50%;
    }
    .sp-menubtn.active span:nth-child(3) {
        transform: translate(-50%, 50%) rotate(-45deg);
    }
    .globalNav {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: opacity .6s ease, visibility .6s ease;
    }
    .globalNav.active {
        opacity: 100;
        visibility: visible;
        z-index: 100;
    }
    .globalNav__box {
        display: block;
        height: 100vh;
        padding: 40px 30px 60px;
        background: #fff;
    }
    .globalNav__box li {
        margin-bottom: 40px;
        text-align: center;
    }
}
@media (hover: hover) {
    .globalNav li a:hover::after {
        width: 100%;
    }
}
/*================================================
フッター
================================================*/
footer {
    background: #F7F7F7;
    margin-top: 60px;
}
footer .container {
    padding: 70px 10px;
    display: grid;
    grid-template-columns: 15% 60% 25%;
}
.footerHomeBtn a {
    color: #535353;
    font-size: 1.4rem;
    font-weight: bold;
}
.footerNav__box {
    justify-content: flex-start
}
.footerNav__box li {
    width: calc(100% / 4);
}
.footerNav__box a {
    color: #535353;
    font-size: 1.4rem;
    font-weight: bold;
}
.addressBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.addressBox div {
    display: flex;
    align-items: center;
}
.footerLogo {
    width: 34%;
}
.footerContact {
    width: 100%;
}
.footerContact a {
    background: #0058B1;
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 14px 0 14px 30px;
    border: solid 1px #0058B1;
}
.footerContact a span {
    position: relative;
    color: #fff;
}
.footerContact a span::before {
    position: absolute;
    content: "";
    background: no-repeat center / contain url(../img/icon_01.svg);
    width: 20px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    left: -26px;
}
.address {
    font-size: 1.4rem;
    color: #535353;
    text-align: left;
    width: 100%;
    margin-bottom: 16px;
    font-style: normal;
}
.space_address {
    padding-top: 1rem;
}
.footerBtnarea {
    text-align: center;
}
.footerBtnarea a {
    font-size: 1.2rem;
    color: #6d6d6d;
    font-weight: 300;
}
.footerCopy {
    background: #0054B1;
    text-align: center;
    padding: 6px 10px;
}
.footerCopy small {
    color: #fff;
    font-weight: 300;
}
.footerContact.sp_only {
    display: none;
}
@media (hover: hover) {
    .footerNav__box a:hover {
        text-decoration: underline;
    }
    .footerBtnarea a:hover {
        text-decoration: underline;
    }
    .footerContact a:hover {
        background: #fff;
    }
    .footerContact a:hover span {
        color: #0058B1;
    }
    .footerContact a:hover span::before {
        background: no-repeat center / contain url("../img/icon_01_blue.svg");
    }
}
@media screen and (max-width: 768px) {
    footer .container {
        padding: 30px 15px 20px;
        grid-template-columns: 1fr;
    }
    .footerHomeBtn {
        margin-bottom: 26px;
    }
    .footerHomeBtn a {
        font-size: 1.2rem;
    }
    .footerNav__box {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .footerNav__box li {
        width: 100%;
    }
    .footerNav__box a {
        font-size: 1.2rem;
    }
    .footerLogo {
        width: 40%;
        margin: 0 auto 20px;
        justify-content: center;
    }
    .addressBox {
        padding: 50px 0;
    }
    .address {
        font-size: 1.2rem;
    }
    .footerContact {
        width: 100%;
        margin-top: 20px;
    }
    .footerContact.sp_only {
        display: flex;
        align-items: center;
    }
    .footerContact.sp_only a span::before {
        background: no-repeat center / contain url(../img/icon_02.svg);
    }
}

/*================================================
スクロールアニメーション
================================================*/
.fade-block {
    transition: all .3s ease-in;
    transform: translateY(100px);
    opacity: 0;
}
.fade-block.blockIn {
    opacity: 1;
    transform: translateY(0);
}
/*================================================
ボタン
================================================*/
.blueBtn {
    color: #004FB1;
    margin-top: 36px;
    max-width: 300px;
}
.blueBtn a {
    color: #004FB1;
    font-weight: bold;
    width: 100%;
    padding: 20px 10px;
    border: 1px solid #004FB1;
    display: flex;
    justify-content: center;
}
.pastBtn .blueBtn {
    text-align: center;
    margin: 80px auto 0;
    max-width: 500px;
}
@media (hover: hover) {
    .blueBtn a:hover {
        background: #004FB1;
        color: #fff;
    }
}
@media screen and (max-width: 768px) {
    .blueBtn {
        max-width:100%;
        margin: 26px auto;
    }
    .pastBtn .blueBtn {
        margin: 40px auto 0;
        max-width: 100%;
        width: 100%;
    }
}
/*================================================
メインビジュアル
================================================*/
main {
    padding-top: 80px;
}
.mainv {
    position: relative;
    background: no-repeat center / cover url("../img/back_01.png");
    padding: 280px 10px;
}
.mainv::before {
    position: absolute;
    content: "";
    background-image: url("../img/mainv_triangle01.svg"),url("../img/mainv_triangle02.svg"),url("../img/mainv_triangle03.svg");
    background-repeat: no-repeat;
    background-position: right bottom,left bottom,left top;
    background-size: 80% auto,50% auto,40% auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.mainvTtl {
    position: relative;
    z-index: 100;
}
@media screen and (max-width: 768px) {
    main {
        padding-top: 50px;
        position: relative;
        z-index: 0;
    }
    .mainv {
        padding: 80px 15px;
    }
    .mainv::before {
        background-size: 110% auto,90% auto,90% auto;
    }
}
/*================================================
下層　メイン
================================================*/
.mainv__under {
    padding: 120px 10px;
}
.mainv__underTtl {
    font-family: Verdana;
    line-height: 1.2;
    color: #fff;
    font-size: 6rem;
    font-weight: bold;
}
.mainv__under h1 {
    font-size: 2.4rem;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .mainv__under {
        padding: 50px 15px;
    }
    .mainv__underTtl {
        font-size: 3.2rem;
    }
    .mainv.mainv__under::before {
        background-size: 90% auto,70% auto,70% auto;
    }
}

/*================================================
下層　パンくず
================================================*/
.breadcrumb {
    padding: 20px 10px;
}
.breadcrumb__box {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 1.4rem;
    display: flex;
}
.breadcrumb__box li {
    padding-right: 40px;
    position: relative;
}
.breadcrumb__box li:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #0058B1;
    border-right: solid 2px #0058B1;
    -ms-transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    display: inline-block;
    top: 50%;
    right: 20px;
}
@media (hover: hover) {
    .breadcrumb__box li a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 768px) {
    .breadcrumb__box {
        font-size: 1.2rem;
    }
    .breadcrumb {
        padding: 20px 15px 0;
    }
}
/*================================================
下層　ラインテーブル
================================================*/
.tableLine {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.tableLine tr {
    border-top: solid 1px #C4C4C4;
    border-bottom: solid 1px #C4C4C4;
}
.tableLine th,.tableLine td {
    padding: 40px 20px;
}
.tableLine th {
    width: 20%;
}
.tableLine td {
    width: 80%;
}
@media screen and (max-width: 768px) {
    .tableLine th, .tableLine td {
        padding: 15px 10px;
    }
    .tableLine th {
        width: 30%;
    }
    .tableLine td {
        width: 70%;
        padding-left: 0;
    }
}
