@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* ============================================
   FONT FACE
==============================================*/

@font-face {
    font-family: MinchoDemibold;
    src: url("../fonts/Mincho-Demibold.ttf");
}

@font-face {
    font-family: Arial;
    src: url("../fonts/arial.ttf");
}

@font-face {
    font-family: Meiryo;
    src: url("../fonts/Meiryo.ttf");
}

@font-face {
    font-family: MeiryoRegular;
    src: url("../fonts/Meiryo-Regular.ttf");
}


/* ============================================
   BASIC
==============================================*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "游明朝", YuMincho, "游ゴシック", YuGothic, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "メイリオ", "Meiryo", serif;
    font-weight: 500;
    color: #333333;
}

a {
    cursor: pointer;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

a:hover {
    opacity: .7;
}

img {
    max-width: 100%;
    width: 100%;
}


/* ============================================
   UTILITY
==============================================*/

.u-textorange {
    color: #F26E14;
}

.u-textblue {
    color: #0071BC;
}

.u-textblue--link {
    font-weight: bold;
    border-bottom: 1px solid #0071BC;
}

.u-textcenter {
    text-align: center;
}

.u-onlypc {
    display: block;
}

.u-onlysp {
    display: none;
}

.u-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.u-flex--start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (max-width: 850px) {
    .u-onlypc {
        display: none;
    }
    .u-onlysp {
        display: block;
    }
}


/**********
/* CONTAINER
***********/

.l-container {
    max-width: 1080px;
    margin: 0 auto;
}

.l-container--full {
    max-width: 1920px;
}

.l-container--collapse {
    max-width: 900px;
}

.l-container--small {
    max-width: 800px;
}

.l-container--footer {
    max-width: 1080px;
}

@media only screen and (max-width: 850px) {
    .l-container {
        max-width: 92%;
    }
    .l-container--collapse {
        max-width: 100%;
    }
    .l-container--footer {
        max-width: 100%;
    }
}


/**********
/* HEADER
***********/

.c-hamburger__line {
    display: block;
    width: 60px;
    height: 8px;
    margin: 17px auto;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    -webkit-transform: translateY(20px) rotate(45deg);
    transform: translateY(20px) rotate(45deg);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
    opacity: 0;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
    -webkit-transform: translateY(-29px) rotate(-45deg);
    transform: translateY(-29px) rotate(-45deg);
}

.c-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.c-header__logo {
    margin: 16px 0 0 21px;
    width: 100%;
    max-width: 303px;
}

.c-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
}

.c-header__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 35px;
    text-align: center;
    border-left: 1px solid #fff;
}

.c-header__list li:last-child {
    display: none;
}

.c-header__list li span {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    display: block;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
}

.c-header__list li span:nth-child(2) {
    margin-top: 9px;
    color: #EC9700;
    font-size: 1.2rem;
    font-weight: 500;
}

.c-header__btn {
    display: block;
    width: 120px;
    height: 120px;
    background-color: #183F77;
    cursor: pointer;
    z-index: 1001;
}

.c-header__path {
    margin-top: 30px;
}

.c-header__contact {
    width: 100px;
    height: 80px;
    border-left: none;
    background: #EC9700;
}

.c-header__contact a {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.c-header__contact img {
    max-width: 44px;
}

.c-header__contact--phone {
    display: none;
}

.c-header__btn {
    display: none;
}

.c-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.c-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 1000px) {
    .c-header__logo {
        max-width: 220px;
    }
    .c-header__list li {
        padding: 0 25px;
    }
}

@media only screen and (max-width: 850px) {
    .c-header__contact {
        width: calc((100% / 2));
        margin-left: 38px;
        height: 120px;
    }
    .c-header__contact:first-child {
        margin-left: 0;
    }
    .c-header__contact--phone {
        display: block;
    }
    .c-header__contact--phone img {
        max-width: 50px;
    }
    .c-header__contact--mail img {
        max-width: 93px;
    }
    .c-header__contact--phone {
        display: block;
    }
    .c-header__logo {
        margin: 24px 0 0 30px;
        width: 100%;
        max-width: 535px;
    }
    .c-header__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 130px 20px 80px;
    }
    .c-header__list li {
        border-left-width: 0;
        border-bottom: 1px solid #fff;
        padding: 0;
    }
    .c-header__list li a {
        display: block;
        width: 100%;
        padding: 34px 0 25px 255px;
    }
    .c-header__list li:first-child {
        border-top: 1px solid #fff;
    }
    .c-header__list li:last-child {
        display: block;
    }
    .c-header__list li span {
        font-size: 3rem;
        font-weight: 400;
        text-align: left;
    }
    .c-header__list li span::before {
        margin-left: -36px;
        margin-right: 13px;
        width: 24px;
        height: 24px;
        background: #EC9700;
        display: inline-block;
        content: "";
    }
    .c-header__list li span:nth-child(2) {
        display: none;
    }
    .c-header__btn {
        display: block;
    }
    .c-header__btn.is-active {
        position: fixed;
        top: 0;
        right: 0;
    }
    .c-header__pm {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0 40px;
    }
    .c-header__menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        min-height: 900px;
        position: fixed;
        top: 0;
        right: -100%;
        background-color: #183F77;
        -webkit-transition: all .4s linear;
        transition: all .4s linear;
    }
    .c-header__menu.is-active {
        right: 0;
        overflow-y: scroll;
    }
}

@media only screen and (max-width: 650px) {
    .c-hamburger__line {
        width: 30px;
        height: 4px;
        margin: 8px auto;
    }
    .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
        -webkit-transform: translateY(11px) rotate(45deg);
        transform: translateY(11px) rotate(45deg);
    }
    .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
        -webkit-transform: translateY(-13px) rotate(-45deg);
        transform: translateY(-13px) rotate(-45deg);
    }
    .c-header__menu {
        min-height: 450px;
    }
    .c-header__pm {
        padding: 0 7px;
    }
    .c-header__logo {
        margin: 11px 0 0 15px;
        max-width: 266px;
    }
    .c-header__contact {
        width: calc((100% / 2) - 23px);
        margin-left: 20px;
        height: 60px;
    }
    .c-header__contact--phone img {
        max-width: 25px;
    }
    .c-header__contact--mail img {
        max-width: 47px;
    }
    .c-header__btn {
        width: 60px;
        height: 60px;
    }
    .c-header__list {
        padding: 65px 10px 40px;
    }
    .c-header__list li a {
        padding: 16px 0 13px 130px;
    }
    .c-header__list li span {
        font-size: 1.5rem;
    }
    .c-header__list li span::before {
        margin-left: -20px;
        margin-right: 5px;
        width: 12px;
        height: 12px;
    }
    .c-header__path {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 350px) {
    .c-header__logo {
        max-width: 215px;
    }
}


/**********
/* FOOTER
***********/

.c-footer__legal {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 30px;
    padding-top: 4px;
}

.c-footer__legal .c-footer__title {
    margin-bottom: 24px;
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    font-size: 1.8rem;
    color: #fff;
}

.c-footer__legal .c-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-footer__legal .c-footer__list>a {
    min-width: 60px;
}

.c-footer__legal .c-footer__list ul {
    margin-left: 30px;
}

.c-footer__legal .c-footer__list li {
    padding-left: 24px;
}

.c-footer__legal .c-footer__list li::before {
    margin-left: -21px;
    padding-right: 5px;
    vertical-align: middle;
    line-height: 20px;
    content: "\2022";
    font-size: 26px;
    color: #EC9700;
    font-weight: bold;
    display: inline-block;
}

.c-footer__legal .c-footer__list a,
.c-footer__legal .c-footer__list li {
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    font-size: 1.5rem;
    line-height: 1.9;
    color: #fff;
}

.c-footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 32px 0;
    background: #183F77;
}

.c-footer__top a {
    margin: 0 23px;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.c-footer__inner {
    padding-top: 68px;
    padding-bottom: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-footer__main {
    background: #1B4FA3;
}

.c-footer__bottom {
    background: #333333;
    text-align: center;
    padding: 33px 0;
}

.c-footer__bottom p {
    color: #fff;
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: 1.5rem;
}

.c-footer__info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}

.c-footer__info__logo {
    max-width: 300px;
    width: 100%;
    margin-bottom: 48px;
}

.c-footer__info__content {
    text-align: left;
}

.c-footer__info__content p,
.c-footer__info__content a {
    margin: 0;
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
}

.c-footer__pm {
    display: none;
}

@media only screen and (max-width: 850px) {
    .c-footer__legal {
        padding: 0 75px;
    }
    .c-footer__legal .c-footer__title {
        font-size: 4.2rem;
        margin-bottom: 42px;
    }
    .c-footer__legal .c-footer__list {
        margin-bottom: 60px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-footer__legal .c-footer__list>a {
        font-size: 3.1rem;
    }
    .c-footer__legal .c-footer__list li {
        margin-bottom: 2px;
    }
    .c-footer__legal .c-footer__list li::before {
        font-size: 50px;
        padding-right: 7px;
    }
    .c-footer__legal .c-footer__list a,
    .c-footer__legal .c-footer__list li {
        font-size: 3rem;
        line-height: 1.8;
    }
    .c-footer__legal .c-footer__list ul {
        margin-left: 0;
    }
    .c-footer span {
        font-size: 3rem;
        font-weight: 400;
        text-align: left;
    }
    .c-footer span::before {
        margin-left: -36px;
        margin-right: 13px;
        width: 24px;
        height: 24px;
        background: #EC9700;
        display: inline-block;
        content: "";
    }
    .c-footer__pm {
        display: block;
        margin-top: 80px;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .c-footer__contact {
        width: calc((100% / 2) - 45px);
        margin-left: 38px;
        height: 120px;
        background-color: #EC9700;
    }
    .c-footer__contact:first-child {
        margin-left: 0;
    }
    .c-footer__contact a {
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
    }
    .c-footer__contact--phone {
        display: block;
    }
    .c-footer__contact--phone img {
        max-width: 50px;
    }
    .c-footer__contact--mail img {
        max-width: 93px;
    }
    .c-footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 130px 20px 120px;
    }
    .c-footer__menu {
        display: block;
        width: 100%;
        padding: 34px 0 25px 255px;
        border-bottom: 1px solid #fff;
    }
    .c-footer__menu:first-child {
        border-top: 1px solid #fff;
    }
    .c-footer__menu:nth-child(5) {
        display: none;
    }
    .c-footer__inner {
        padding-top: 90px;
        padding-bottom: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-footer__inner .c-footer__info {
        text-align: center;
        margin-bottom: 115px;
    }
    .c-footer__inner .c-footer__info__logo {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        padding: 0 80px 0 80px;
    }
    .c-footer__inner .c-footer__info__content {
        margin-top: 48px;
        text-align: center;
    }
    .c-footer__inner .c-footer__info__content p,
    .c-footer__inner .c-footer__info__content a {
        font-size: 2.8rem;
        line-height: 1.9;
    }
    .c-footer__bottom {
        padding: 40px 50px;
        line-height: 1.7;
    }
    .c-footer__bottom p {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 650px) {
    .c-footer__legal {
        padding: 0 42px 0 37px;
    }
    .c-footer__legal .c-footer__title {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
    .c-footer__legal .c-footer__list {
        margin-bottom: 28px;
    }
    .c-footer__legal .c-footer__list li::before {
        font-size: 27px;
        padding-right: 2px;
    }
    .c-footer__legal .c-footer__list a,
    .c-footer__legal .c-footer__list li {
        font-size: 1.5rem;
    }
    .c-footer__top {
        padding: 65px 10px 60px;
    }
    .c-footer__menu {
        padding: 15px 0 13px 126px;
    }
    .c-footer span {
        font-size: 1.5rem;
    }
    .c-footer span::before {
        margin-left: -17px;
        margin-right: 5px;
        width: 12px;
        height: 12px;
    }
    .c-footer__contact {
        width: calc((100% / 2) - 18px);
        margin-left: 18px;
        height: 60px;
    }
    .c-footer__contact--phone img {
        max-width: 25px;
    }
    .c-footer__contact--mail img {
        max-width: 46px;
    }
    .c-footer__pm {
        margin-top: 40px;
    }
    .c-footer__inner {
        padding-top: 41px;
        padding-bottom: 21px;
    }
    .c-footer__inner .c-footer__info {
        margin-bottom: 60px;
    }
    .c-footer__inner .c-footer__info__logo {
        margin-bottom: 40px;
        padding: 0 40px 0 40px;
    }
    .c-footer__inner .c-footer__info__content p,
    .c-footer__inner .c-footer__info__content a {
        font-size: 1.4rem;
    }
    .c-footer__bottom {
        padding: 20px 25px;
    }
    .c-footer__bottom p {
        font-size: 1.5rem;
    }
}

.c-back {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.c-back.is-active {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 650px) {
    .c-back {
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 25px;
    }
}


/**********
/* CONTACT
***********/

.c-contact {
    padding-top: 63px;
    padding-bottom: 74px;
    background-color: #EBF8FC;
}

.c-contact__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-contact__title {
    text-align: center;
    font-size: 3.2rem;
    color: #4D4D4D;
    letter-spacing: -1px;
    font-family: 'MinchoDemibold', "游明朝", YuMincho, sans-serif;
    margin-bottom: 56px;
}

.c-contact__title br {
    display: none;
}

.c-contact__item {
    width: 100%;
    max-width: 400px;
    background: #009245;
    margin: 0 25px;
    min-height: 120px;
    -webkit-transition: .3s linear;
    transition: .3s linear;
}

.c-contact__item:hover {
    background: #8CC63F;
}

.c-contact__tel .c-contact__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 22px 0 18px;
}

.c-contact__tel .c-contact__top span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-right: 15px;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.c-contact__tel .c-contact__main {
    background: #fff;
    text-align: center;
    margin: 0 5px 5px 5px;
}

.c-contact__tel .c-contact__main a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: 4rem;
    font-weight: bold;
    color: #0071BC;
}

.c-contact__mail {
    padding: 10px;
}

.c-contact__mail a {
    display: block;
    padding: 31px 0;
    border: 2px solid #fff;
}

.c-contact__mail .c-contact__mail__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 43px;
}

.c-contact__mail .c-contact__mail__main img {
    max-width: 53px;
    width: 100%;
    margin-right: 12px;
}

.c-contact__mail .c-contact__mail__main p {
    font-family: "メイリオ", "Meiryo", sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

@media only screen and (max-width: 850px) {
    .c-contact {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .c-contact__main {
        padding: 0 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-contact__title {
        position: relative;
        font-size: 5rem;
        line-height: 1.5;
        margin-bottom: 59px;
    }
    .c-contact__title::before,
    .c-contact__title::after {
        content: "";
        position: absolute;
        background: #999999;
        top: 10px;
        height: 120px;
        width: 2px;
        border-radius: 0px;
    }
    .c-contact__title::before {
        left: 100px;
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    .c-contact__title::after {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
        right: 100px;
    }
    .c-contact__title span {
        color: #F15A24;
    }
    .c-contact__title br {
        display: block;
    }
    .c-contact__item {
        max-width: 100%;
        margin: 0 0 40px 0;
        min-height: 240px;
    }
    .c-contact__item:nth-child(2) {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .c-contact__mail {
        padding: 17px;
    }
    .c-contact__mail a {
        padding: 62px 0;
        border: 5px solid #fff;
    }
    .c-contact__mail .c-contact__mail__main {
        padding: 0 10px 0 63px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .c-contact__mail .c-contact__mail__main img {
        max-width: 108px;
        margin-right: 46px;
    }
    .c-contact__mail .c-contact__mail__main p {
        font-size: 3rem;
    }
    .c-contact__mail .c-contact__mail__main p span {
        display: none;
    }
    .c-contact__tel .c-contact__top {
        padding: 44px 20px 26px;
    }
    .c-contact__tel .c-contact__top span {
        font-size: 3rem;
        margin-right: 30px;
    }
    .c-contact__tel .c-contact__main {
        margin: 0 20px 20px 20px;
    }
    .c-contact__tel .c-contact__main a {
        padding: 25px 0 15px;
        font-size: 8rem;
    }
}

@media only screen and (max-width: 650px) {
    .c-contact {
        padding-top: 50px;
        padding-bottom: 16px;
    }
    .c-contact__main {
        padding: 0 20px;
    }
    .c-contact__title {
        font-size: 2.5rem;
        margin-bottom: 31px;
    }
    .c-contact__title::before {
        left: 50px;
        top: 5px;
        height: 60px;
    }
    .c-contact__title::after {
        right: 50px;
        top: 5px;
        height: 60px;
    }
    .c-contact__item {
        min-height: 120px;
        margin: 0 0 20px 0;
    }
    .c-contact__mail {
        padding: 8px;
    }
    .c-contact__mail .c-contact__mail__main {
        padding: 0 10px 0 0px;
    }
    .c-contact__mail .c-contact__mail__main p {
        font-size: 1.5rem;
    }
    .c-contact__mail .c-contact__mail__main img {
        max-width: 55px;
        margin-right: 23px;
    }
    .c-contact__mail a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 31px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-width: 3px;
    }
    .c-contact__tel .c-contact__top {
        padding: 22px 20px 13px;
    }
    .c-contact__tel .c-contact__top span {
        font-size: 1.5rem;
        margin-right: 15px;
    }
    .c-contact__tel .c-contact__main {
        margin: 0 10px 10px 10px;
    }
    .c-contact__tel .c-contact__main a {
        padding: 11px 0 9px;
        font-size: 4rem;
    }
}

@media only screen and (max-width: 350px) {
    .c-contact__title::before {
        left: 35px;
    }
    .c-contact__title::after {
        right: 35px;
    }
    .c-contact__tel .c-contact__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .c-contact__tel .c-contact__top span {
        margin-top: 6px;
    }
    .c-contact__tel .c-contact__main a {
        font-size: 3.2rem;
    }
}


/**********
/* HEADING
***********/

.c-heading {
    background-color: #2f4192;
}

.c-heading__number {
    background-color: #000;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-family: "Times New Roman", sans-serif;
    text-align: center;
    color: #fff;
    font-size: 4rem;
    font-style: italic;
    font-weight: bold;
}

.c-heading__number::after {
    content: counter(counter);
    counter-increment: counter;
}

.c-heading__title {
    line-height: 60px;
    padding-left: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
}

.c-heading--table .c-heading__title {
    text-align: center;
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    line-height: 44px;
    padding: 0;
    font-size: 1.6rem;
}

.c-heading--lawyer {
    border-bottom: 5px solid #EC9700;
}

.c-heading--lawyer .c-heading__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    font-family: 'MinchoDemibold', "游明朝", YuMincho, sans-serif;
    font-size: 2rem;
}

.c-heading--lawyer .c-heading__title--representative {
    font-size: 2.4rem;
}

.c-heading--lawyer .c-heading__title--name {
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

@media only screen and (max-width: 850px) {
    .c-heading__number {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 6rem;
    }
    .c-heading__title {
        line-height: 80px;
        padding-left: 30px;
        font-size: 4rem;
    }
    .c-heading--lawyer {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-height: 104px;
        border-bottom: 18px solid #EC9700;
    }
    .c-heading--lawyer .c-heading__title {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 2.4rem;
    }
    .c-heading--lawyer .c-heading__title--representative {
        font-size: 3.2rem;
    }
    .c-heading--table .c-heading__title {
        line-height: 80px;
        font-size: 2.6rem;
    }
}

@media only screen and (max-width: 650px) {
    .c-heading__number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 3rem;
    }
    .c-heading__title {
        line-height: 40px;
        padding-left: 15px;
        font-size: 2rem;
    }
    .c-heading--lawyer {
        min-height: 52px;
        border-bottom: 8px solid #EC9700;
    }
    .c-heading--lawyer .c-heading__title {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 1.2rem;
    }
    .c-heading--lawyer .c-heading__title--representative {
        font-size: 1.6rem;
    }
    .c-heading--table .c-heading__title {
        line-height: 40px;
        font-size: 1.3rem;
    }
}


/**********
/* TEXT
 *  - Line
***********/

.c-text__title {
    font-family: 'MinchoDemibold', "游明朝", YuMincho, sans-serif;
    font-size: 3.6rem;
    color: #4D4D4D;
}

.c-text__title--line {
    position: relative;
    padding-bottom: 52px;
    margin-bottom: 39px;
    letter-spacing: 4px;
}

.c-text__title--line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 200px;
    height: 5px;
    background-color: #EC9700;
}

.c-text__desc {
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #4D4D4D;
}

@media only screen and (max-width: 850px) {
    .c-text__title {
        font-size: 5.6rem;
    }
    .c-text__title--line {
        padding-bottom: 71px;
        margin-bottom: 61px;
    }
    .c-text__title--line::after {
        width: 400px;
        height: 10px;
    }
    .c-text__desc {
        font-size: 3.2rem;
    }
}

@media only screen and (max-width: 650px) {
    .c-text__title {
        font-size: 2.8rem;
    }
    .c-text__title--line {
        padding-bottom: 34px;
        margin-bottom: 32px;
    }
    .c-text__title::after {
        width: 200px;
        height: 5px;
    }
    .c-text__desc {
        font-size: 1.6rem;
    }
}


/**********
/* LIST
***********/

.c-list li {
    position: relative;
    padding-left: 13px;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1px;
}

.c-list li::before {
    content: "\2022";
    position: absolute;
    left: -3px;
    top: -18px;
    font-size: 37px;
    color: #29ABE2;
    font-weight: bold;
}

@media only screen and (max-width: 850px) {
    .c-list li {
        padding-left: 38px;
        margin-bottom: 48px;
        font-size: 3rem;
        line-height: 1.6;
    }
    .c-list li::before {
        font-size: 70px;
        left: -4px;
        top: -33px;
    }
    .c-list li:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 650px) {
    .c-list li {
        padding-left: 19px;
        margin-bottom: 24px;
        font-size: 1.5rem;
    }
    .c-list li::before {
        font-size: 35px;
        left: -3px;
        top: -15px;
    }
}

.c-image {
    width: 100%;
    -webkit-box-shadow: 20px 20px 0px white;
    box-shadow: 20px 20px 0px white;
    background-size: cover;
    z-index: 10;
    position: absolute;
    top: 80px;
    left: 0;
    max-width: 400px;
    height: 266px;
}

.c-image--shadowe6 {
    -webkit-box-shadow: 20px 20px 0px #e6e6e6;
    box-shadow: 20px 20px 0px #e6e6e6;
}

@media only screen and (max-width: 850px) {
    .c-image {
        top: 53px;
        max-width: 200px;
        height: 300px;
    }
}

@media only screen and (max-width: 650px) {
    .c-image {
        top: 28px;
        max-width: 100px;
        height: 150px;
        -webkit-box-shadow: 10px 10px 0px #fff;
        box-shadow: 10px 10px 0px #fff;
    }
}


/**********
/* BANNER
***********/

.c-banner {
    position: relative;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../images/sub-mainvisual-image.jpg");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sub-mainvisual-image.jpg");
    background-size: cover;
    background-position: center;
    height: 350px;
}

.c-banner__text {
    position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: 'MinchoDemibold', "游明朝", YuMincho, sans-serif;
    font-size: 4.4rem;
    color: #fff;
    text-shadow: 2px 2px 2px rgba(51, 51, 51, 0.75);
    line-height: 1.6;
}

.c-banner__text span:first-child {
    font-size: 3.6rem;
}

@media only screen and (max-width: 850px) {
    .c-banner {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25))), url("../images/sub-mainvisual-image-mobile.jpg");
        background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../images/sub-mainvisual-image-mobile.jpg");
        height: 400px;
    }
    .c-banner__text {
        display: none;
    }
}

@media only screen and (max-width: 650px) {
    .c-banner {
        height: 200px;
    }
}


/**********
/* TITLE
***********/

.c-title {
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    font-size: 2rem;
    font-weight: bold;
}

.c-title--left {
    padding-left: 18px;
    border-left: 5px solid #5987ff;
}

@media only screen and (max-width: 850px) {
    .c-title {
        font-size: 4rem;
    }
    .c-title--left {
        padding-left: 0;
        text-align: center;
        position: relative;
        line-height: 1.5;
        border-left-width: 0;
        padding-bottom: 75px;
    }
    .c-title--left::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 98%;
        height: 8px;
        background-color: #004B94;
    }
}

@media only screen and (max-width: 650px) {
    .c-title {
        font-size: 2rem;
    }
    .c-title--left {
        padding-bottom: 38px;
    }
    .c-title--left::after {
        height: 4px;
    }
}


/**********
/* TABLE
***********/

.c-table__main {
    border: 1px solid #6493bf;
    border-top-width: 0px;
}

.c-table__main--odd .c-table__item:nth-child(odd) {
    background-color: #fff;
}

.c-table__main--odd .c-table__item:nth-child(even) {
    background-color: #f0f7fe;
}

.c-table__main--even .c-table__item:nth-child(odd) {
    background-color: #f0f7fe;
}

.c-table__main--even .c-table__item:nth-child(even) {
    background-color: #fff;
}

.c-table__main--big .c-table__item__title {
    min-width: 287px;
}

.c-table__main--big .c-table__item__desc {
    padding: 15px 39px 10px;
}

.c-table__main--custom5 .c-table__item__title {
    padding: 14px 18px 0px 24px;
    border-right-width: 0;
    width: 100%;
    max-width: 300px;
}

.c-table__main--custom5 .c-table__item__title.c-table__item__title__only {
    max-width: 100%;
    color: #333;
}

.c-table__main--custom5 .c-table__item:first-child .c-table__item__title {
    padding: 21px 18px 0px 24px;
}

.c-table__main--custom5 .c-table__item:first-child .c-table__item__desc {
    padding: 21px 28px 0px;
}

.c-table__main--custom5 .c-table__item:last-child .c-table__item__title {
    padding: 15px 18px 28px 24px;
}

.c-table__main--custom5 .c-table__item__desc {
    padding: 15px 28px 0px;
}

.c-table__list {
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-table__list p {
    font-size: 1.5rem;
    line-height: 1.7;
}

.c-table__list__title {
    width: 100%;
    max-width: 404px;
    padding: 24px 53px 21px;
}

.c-table__list__desc {
    padding: 24px 0px 21px;
}

.c-table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    font-weight: 500;
}

.c-table__item__title {
    padding: 15px 24px 6px;
    min-width: 168px;
    border-right: 1px solid #6493bf;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.c-table__item__desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 15px 10px 10px 17px;
    font-size: 1.5rem;
}

.c-table__item--custom1 .c-table__item__title {
    border-right-width: 0;
    min-width: initial;
    width: 100%;
    max-width: 317px;
}

.c-table__item--custom2 .c-table__item__desc {
    border-right-width: 0;
    padding: 18px 20px 45px;
    line-height: 2;
}

.c-table__item--custom3 .c-table__item__title {
    border-right-width: 0;
    min-width: initial;
    width: 100%;
    max-width: 263px;
}

.c-table__item--custom3 .c-table__item__desc {
    padding: 14px 28px 13px;
}

.c-table__item--custom4 .c-table__item__title {
    border-right-width: 0;
    min-width: initial;
    width: 100%;
}

.c-table__item--custom4 .c-table__item__desc {
    font-size: 1.6rem;
    padding: 16px 28px 22px;
    line-height: 2;
}

.c-table__item--custom5 .c-table__item__title {
    border-right-width: 0;
    min-width: initial;
    width: 100%;
    max-width: 310px;
}

.c-table__item--custom6 .c-table__item__desc {
    padding: 12px 28px 17px;
    line-height: 1.8;
}

.c-table__item--custom7 .c-table__item__desc {
    padding: 20px 23px 19px;
    line-height: 1.8;
}

.c-table__item--custom8 .c-table__item__desc {
    padding: 14px 23px 17px;
    line-height: 1.8;
}

.c-table__item--custom9 .c-table__item__desc {
    padding: 15px 23px 19px;
    line-height: 1.9;
}

.c-table__main hr {
    width: calc(100% - (28px * 2));
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(2em - 14px);
}

@media only screen and (max-width: 850px) {
    .c-table {
        padding-bottom: 30px;
        border: 1px solid #6493bf;
    }
    .c-table--last {
        padding-bottom: 0;
    }
    .c-table__main {
        border-width: 0;
    }
    .c-table__main--custom5 .c-table__item__title {
        max-width: 100%;
        padding: 9px 6px;
    }
    .c-table__main--custom5 .c-table__item__desc {
        padding: 0px 14px 7px;
    }
    .c-table__main--custom5 .c-table__item:first-child .c-table__item__title {
        padding: 8px 4px;
    }
    .c-table__main--custom5 .c-table__item:first-child .c-table__item__desc {
        padding: 0px 16px 10px;
    }
    .c-table__main--custom5 .c-table__item:last-child .c-table__item__title {
        padding: 11px 6px;
    }
    .c-table__main--big .c-table__item__desc {
        padding: 0 16px 14px;
    }
    .c-table__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-table__list p {
        font-size: 3rem;
        line-height: 1.45;
    }
    .c-table__list__title {
        max-width: 100%;
        padding: 21px 6px;
    }
    .c-table__list__desc {
        padding: 0px 12px 12px;
    }
    .c-table__main.c-table__main--custom5 {
        padding-top: 6px;
    }
    .c-table__main--custom5 .c-table__item__title.c-table__item__title__only {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 6px;
    }
    .c-table__main hr {
        width: 100%;
        margin-top: calc(2em - 14px);
        border-color: #6493bf;
    }
}

@media only screen and (max-width: 650px) {
    .c-table {
        padding-bottom: 15px;
    }
    .c-table__item--custom8 .c-table__item__desc {
        padding: 4px 8px 4px;
    }
    .c-table__main--custom5 .c-table__item__title {
        max-width: 100%;
        padding: 4px 3px;
    }
    .c-table__main--custom5 .c-table__item__desc {
        padding: 0px 7px 3px;
    }
    .c-table__main--custom5 .c-table__item:first-child .c-table__item__title {
        padding: 4px 2px;
    }
    .c-table__main--custom5 .c-table__item:first-child .c-table__item__desc {
        padding: 0 8px 5px;
    }
    .c-table__main--custom5 .c-table__item:last-child .c-table__item__title {
        padding: 5px 3px;
    }
    .c-table__main--big .c-table__item__desc {
        padding: 0 8px 7px;
    }
    .c-table__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-table__list p {
        font-size: 1.4rem;
    }
    .c-table__list__title {
        padding: 10px 3px;
    }
    .c-table__list__desc {
        padding: 0px 6px 6px;
    }
}


/**********
/* LABEL
***********/

.c-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 13px;
}

.c-label__text {
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.c-label__required {
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 21px;
    color: #C1272D;
}

@media only screen and (max-width: 850px) {
    .c-label {
        margin-bottom: 25px;
    }
    .c-label__text {
        font-size: 3.2rem;
    }
    .c-label__required {
        margin-left: 33px;
        font-size: 3.2rem;
    }
}

@media only screen and (max-width: 650px) {
    .c-label {
        margin-bottom: 13px;
    }
    .c-label__text {
        font-size: 1.6rem;
    }
    .c-label__required {
        margin-left: 16px;
        font-size: 1.6rem;
    }
}


/**********
/* INPUT
***********/

.c-input {
    border-width: 0;
    background-color: #EFF1F3;
    width: 100%;
    min-height: 50px;
    border-radius: 5px;
    padding: 10px;
}

.c-input:focus-visible {
    outline: none;
    border: 1px solid #0071BC;
}

.c-input--textarea {
    resize: none;
    min-height: 200px;
}

.c-submit {
    border-radius: 5px;
    border-width: 0;
    background-color: #EC9700;
    font-weight: bold;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    min-height: 80px;
    cursor: pointer;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.c-submit:hover {
    opacity: .7;
}

@media only screen and (max-width: 850px) {
    .c-input {
        border-radius: 10px;
        min-height: 100px;
    }
    .c-input--textarea {
        min-height: 400px;
    }
    .c-submit {
        min-height: 140px;
        max-width: 100%;
        font-size: 4rem;
    }
}

@media only screen and (max-width: 650px) {
    .c-input {
        border-radius: 5px;
        min-height: 50px;
    }
    .c-input--textarea {
        min-height: 200px;
    }
    .c-submit {
        min-height: 70px;
        max-width: 100%;
        font-size: 1.6rem;
    }
}


/**********
/* NOTICE
***********/

.c-notice {
    padding: 18px 18px 7px;
    border-radius: 5px;
    border: 1px solid #B3B3B3;
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
}

.c-notice__title {
    font-size: 1.5rem;
    font-weight: bold;
}

.c-notice__subtitle {
    padding-top: 9px;
    font-size: 1.4rem;
    line-height: 1.5;
}

.c-notice__desc {
    padding: 20px 50px 14px;
    line-height: 1.7;
    font-size: 1.4rem;
    font-weight: 500;
}

.c-notice__heading {
    text-align: center;
    border-radius: 5px;
    background: #EBF8FC;
    padding: 18px 10px;
}

@media only screen and (max-width: 850px) {
    .c-notice {
        padding: 38px 29px 7px;
    }
    .c-notice__title {
        font-size: 3rem;
    }
    .c-notice__desc {
        padding: 45px 0px 37px;
        line-height: 1.6;
        font-size: 2.8rem;
    }
    .c-notice__desc--path {
        padding: 28px 65px 31px;
        text-align: left;
    }
    .c-notice__subtitle {
        padding-top: 18px;
        font-size: 2.8rem;
    }
    .c-notice__heading {
        padding: 35px 20px;
    }
}

@media only screen and (max-width: 650px) {
    .c-notice {
        padding: 18px 10px 7px;
    }
    .c-notice__title {
        font-size: 1.5rem;
    }
    .c-notice__desc {
        padding: 23px 0px 19px;
        font-size: 1.4rem;
    }
    .c-notice__desc--path {
        padding: 18px 42px 8px;
    }
    .c-notice__subtitle {
        padding-top: 8px;
        font-size: 1.4rem;
    }
    .c-notice__heading {
        padding: 17px 10px;
    }
}


/**********
/* PRIVACY
***********/

.c-privacy {
    position: relative;
    margin: 35px 0 27px;
    display: block;
    font-family: 'MeiryoRegular', "メイリオ", "Meiryo", sans-serif;
    text-align: center;
    font-size: 1.5rem;
}

.c-privacy__checkbox {
    cursor: pointer;
    margin-right: 11px;
    height: 20px;
    width: 20px;
    border-radius: 0;
    border: 1px solid #B3B3B3;
}

@media only screen and (max-width: 850px) {
    .c-privacy {
        margin: 56px 0 48px;
        font-size: 3rem;
    }
    .c-privacy__checkbox {
        margin-right: 22px;
        height: 40px;
        width: 40px;
    }
}

@media only screen and (max-width: 650px) {
    .c-privacy {
        margin: 27px 0 24px;
        font-size: 1.5rem;
    }
    .c-privacy__checkbox {
        margin-right: 11px;
        height: 20px;
        width: 20px;
    }
}


/*# sourceMappingURL=base.css.map */