@charset "UTF-8";
/*===========================================================*/
/*共通
/*===========================================================*/

html {
    font-size: 62.5%;
    min-height: 100%;
    height: -webkit-fill-available;
}
body {
	position: relative;
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 1.6rem;
    background-color: #fff;
    color: #000;
    -webkit-text-size-adjust: 100%;
}
body.is-fixed {
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
    overflow-y: scroll;
}
p {
    word-break: break-all;
    line-height: 1.4;
}
p.txt {
    margin-bottom: 1em;
}
a {
    text-decoration: none;
    transition: all .2s;
}
a:hover {
    opacity: 0.7;
}
*:focus {
	outline: none;
}
img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: bottom;
}

.bold { font-weight: bold !important; }

.align_c { text-align: center !important; }
.align_l { text-align: left !important; }
.align_r { text-align: right !important; }

.indent_1 { padding-left: 1em; text-indent: -1em; }

.mt_5 { margin-top: 5px !important; }
.mt_10 { margin-top: 10px !important; }
.mt_15 { margin-top: 15px !important; }
.mt_20 { margin-top: 20px !important; }
.mt_25 { margin-top: 25px !important; }
.mt_30 { margin-top: 30px !important; }
.mt_35 { margin-top: 35px !important; }
.mt_40 { margin-top: 40px !important; }

.mb_5 { margin-bottom: 5px !important; }
.mb_10 { margin-bottom: 10px !important; }
.mb_15 { margin-bottom: 15px !important; }
.mb_20 { margin-bottom: 20px !important; }
.mb_25 { margin-bottom: 25px !important; }
.mb_30 { margin-bottom: 30px !important; }
.mb_35 { margin-bottom: 35px !important; }
.mb_40 { margin-bottom: 40px !important; }

.c_or { color: #ed6c00; }

/* ローディング */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	text-align: center;
	z-index: 2000;
}
.container {
    display: flex;
    flex-direction: column;
}
.container_inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.pc { display: block; }
.sp { display: none; }
br.pc {font-size: 0;}
br.sp {font-size: 0;}

@media screen and (max-width: 767px) {
    a:hover {
        opacity: 1;
    }
    .pc { display: none; }
    .sp { display: block; }
}

/* フェードイン */
.slide-up {
    position: relative;
    -webkit-transform : translate(0, 50px);
            transform : translate(0, 50px);
    opacity: 0;
    transition: top 860ms, opacity 1s;
}
.slide-up.is-show {
    -webkit-transform : translate(0, 0);
            transform : translate(0, 0);
    opacity: 1;
}

/* 電話番号リンクPCのみ無効 */
@media screen and (min-width:768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

/*===========================================================*/
/*ヘッダー
/*===========================================================*/

.header {
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .16);
    z-index: 999;
}
.top .header {
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    transition: all .5s;
}
.top .header.is-show {
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
.header_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.header_logo {
    height: 100%;
    padding: 30px 10px 20px 45px;
}
.header_logo > a {
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
}
.header_logo img {
    height: 60px;
    max-width: 100%;
}
.header_menu_area {
    height: 100%;
    margin-left: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.header_menu {
    padding-bottom: 25px;
    display: flex;
}
.header_nav {
    display: flex;
    align-items: center;
}
.header_nav_item {
    margin-right: 3em;
}
.header_nav_link {
    font-size: 1.6rem;
    font-weight: bold;
    color: #0d2188;
    letter-spacing: 0.1em;
    line-height: 1;
    padding-left: 1.4em;
    display: inline-block;
    position: relative;
}
.header_nav_link::before {
    content: '';
    width: 0.95em;
    height: 0.95em;
    background: url("../img/arrow_blu.svg") no-repeat center center / contain;
    position: absolute;
    top: 0.1em;
    left: 0;
}
.header_cta {
    width: 40%;
    min-width: 360px;
    height: 100%;
    background-color: #0d2188;
    padding: 10px 20px 10px 30px;
    color: #fff;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}
.header_cta_txt {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.header_cta_tel {
    width: 94%;
    max-width: 450px;
    font-size: 0;
    line-height: 1;
    display: inline-block;
    margin-bottom: 5px;
}
.header_cta_tel img {
    width: 100%;
}
.header_cta_txt2 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: -0.02em;
}
/* 調整 */
@media screen and (max-width: 1280px) {
    .header_nav_item {
        margin-right: 2em;
    }
    .header_nav_link {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1130px) {
    .header_nav_item {
        margin-right: 1.5em;
    }
    .header_nav_link {
        font-size: 1.4rem;
    }
    .header_logo {
        padding-left: 30px;
    }
}
@media screen and (max-width: 980px) {
    .header_nav_item {
        margin-right: 1em;
    }
}
/*=== SPハンバーガーメニュー ===*/
.hamburger {
    display: none;
}
/* ヘッダー切替 */
@media screen and (max-width: 930px) {
    .header {
        height: 65px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    }
    .header_inner {
        padding: 0 65px 0 20px;
    }
    body.is-fixed .header_inner {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    }
    .header_logo {
        margin-right: 10px;
        padding: 0;
    }
    .header_logo img {
        height: 40px;
    }
    .header_menu_area {
        display: none;
        margin: 0;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        overflow-y: auto;
        padding: 15px;
        margin-top: 65px;
        margin-bottom: 50px;
        transition: all .3s;
    }
    .header_menu_area.is-show {
        display: block;
        transition: all .3s;
    }
    .header_menu {
        display: block;
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }
    .header_nav {
        width: 100%;
        margin-bottom: 50px;
        flex-direction: column;
    }
    .header_nav_item:first-child,
    .header_nav_item {
        width: 100%;
        margin-right: 0;
        border-bottom: 1px solid #707070;
    }
    .header_nav_link {
        width: 100%;
        font-size: 1.5rem;
        padding: 1.4em 0 1.4em 2em;
        position: relative;
    }
    .header_nav_link::before {
        content: '';
        display: block;
        width: 1.2em;
        height: 1.2em;
        background: url("../img/arrow_blu.svg") no-repeat center center / contain;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
    .header_cta {
        width: 100%;
        min-width: auto;
        height: auto;
        display: inline-block;
        padding: 15px;
    }
    /*=== SPハンバーガーメニュー ===*/
    .hamburger {
        width: 65px;
        height: 65px;
        background-color: #0d2188;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
    }
    .hamburger > span {
        width: 53%;
        display: inline-block;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        height: 6px;
        background: #fff;
        transition: all .4s;
    }
    .hamburger > span:nth-of-type(1) {
        top: 15px;
    }
    .hamburger > span:nth-of-type(2) {
        top: 30px;
    }
    .hamburger > span:nth-of-type(3) {
        top: 43px;
    }
    .hamburger.open > span:nth-of-type(1) {
        top: 30px;
        -webkit-transform: translateX(-50%) rotate(-135deg);
                transform: translateX(-50%) rotate(-135deg);
    }
    .hamburger.open > span:nth-of-type(2) {
        opacity: 0;
    }
    .hamburger.open > span:nth-of-type(3){
        top: 30px;
        -webkit-transform: translateX(-50%) rotate(135deg);
                transform: translateX(-50%) rotate(135deg);
    }
}

/*-------------------------*/
/*ヘッダーの動き
/*-------------------------*/

@media screen and (max-width: 885px) {
    /* 上がる */
    #header.UpMove{
        animation: UpAnime 0.5s forwards;
    }
}
@keyframes UpAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}
@media screen and (max-width: 885px) {
    /* 下がる */
    #header.DownMove{
        animation: DownAnime 0.5s forwards;
    }
}
@keyframes DownAnime{
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*===========================================================*/
/*フッター
/*===========================================================*/

.footer {
    width: 100%;
    height: 260px;
    background-color: #fff;
    margin-top: auto;
}
.footer_cta {
    width: 32%;
    min-width: 463px;
    max-width: 463px;
    display: inline-block;
    background-color: #ed6c00;
    padding: 20px 20px 0 40px;
    border-radius: 0 13px 13px 0;
    color: #fff;
    position: fixed;
    bottom: 50px;
    left: 0;
}
.footer_cta.fixed {
    bottom: 10px;
}
.footer_cta_inner {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}
.footer_cta_inner::before {
    content:'';
    width: 3px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}
.footer_cta_txt {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer_cta_tel {
    max-width: 97%;
    font-size: 0;
    line-height: 1;
    display: inline-block;
    margin-bottom: 10px;
}
.footer_cta_txt2 {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

/* 調整 */
@media screen and (max-width: 1100px) {
    .footer_cta {
        min-width: 405px;
    }
    .footer_cta_txt {
        font-size: 1.5rem;
    }
    .footer_cta_txt2 {
        font-size: 1.2rem;
    }
    .footer_cta_tel img {
        max-width: 300px;
    }
}
@media screen and (max-width: 767px) {
    .footer {
        height: 190px;
        padding: 0;
    }
    .footer_cta_tel img {
        max-width: 100%;
    }
}

/* ====================================
    TOPに戻るボタン
==================================== */

#pagetop {
    position: fixed;
    bottom: 16px;
    right: 40px;
    z-index: 99;
}
#pagetop a {
    width: 80px;
	height: 80px;
    display: block;
    background: url("../img/page_top.svg") no-repeat center center / contain;
}
#pagetop a:hover {
    opacity: .7;
}
#pagetop.fixed {
    position: fixed;
    bottom: 10px;
}

@media screen and (max-width: 767px) {
    #pagetop {
        bottom: 90px;
        right: 15px;
    }
    #pagetop a {
        width: 60px;
        height: 60px;
    }
    #pagetop.fixed {
        position: fixed;
        bottom: 90px;
    }
}


/*===========================================================*/
/*コンテンツ
/*===========================================================*/

/* ====================================
    コンテンツ共通
==================================== */

.main {
    margin-top: 100px;
}
.inner {
    width: 100%;
    max-width: 1150px;
    padding: 0 25px;
    margin: 0 auto;
}
@media screen and (max-width: 930px) {
    .main {
        margin-top: 65px;
    }
}

/* ====================================
    リスト
==================================== */

.list_note > li {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.13em;
    padding-left: 1.4em;
    position: relative;
    margin-bottom: 1.3em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}
.list_note > li:last-child {
    margin-bottom: 0;
}
.list_note > li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}
.list > li {
    position: relative;
    line-height: 1.4;
    padding-left: 0.8em;
    margin-bottom: 1em;
}
.list > li:last-child {
    margin-bottom: 0;
}
.list > li::before {
    content: "";
    width: 3px;
    height: 3px;
    position: absolute;
    top: 0.65em;
    left: 0;
    background-color: currentColor;
    border-radius: 50%;
}
.list_1 {
    font-size: 1.4rem;
    margin: 1em 0;
}
.list_1 > li {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.13em;
    padding-left: 1.4em;
    position: relative;
    margin-bottom: 1.3em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}
.list_1 > li:last-child {
    margin-bottom: 0;
}
.list_1 > li::before {
    content: "";
    width: 0.86em;
    height: 0.86em;
    position: absolute;
    top: 0.3em;
    left: 0;
    background-color: #ed6c00;
    border-radius: 50%;
}
ul > li > .list {
    padding-left: 1em;
    margin-top: 1em;
}
.list_2 {
    font-size: 1.4rem;
    margin: 1em 0;
}
.list_2 > li {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.13em;
    padding-left: 1.4em;
    position: relative;
    margin-bottom: 1.3em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}
.list_2 > li:last-child {
    margin-bottom: 0;
}
.list_2 > li::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 0.3em;
    left: 0;
    background-color: #ed6c00;
}

@media screen and (max-width: 767px) {
    .list_note > li,
    .list > li,
    .list_1 > li,
    .list_2 > li {
        font-size: 1.3rem;
    }
}

/* ====================================
    テーブル
==================================== */

.table {
	width: 100%;
    table-layout: fixed;
	border-top: solid #0d2188 1px;
	border-left: solid #0d2188 1px;
	border-collapse: collapse;
	line-height: 1.5;
}
.table th,
.table td {
    font-size: 1.7rem;
}
.table th {
	margin: 0;
    color: #0d2188;
    font-weight: 500;
	padding: 0.7em;
	vertical-align: top;
	background-color: #c8d7f0;
	border-right: solid #0d2188 1px;
	border-bottom: solid #0d2188 1px;
	text-align: left;
}
.table td {
    color: #0d2188;
    font-weight: bold;
	padding: 0.7em;
	border-right: solid #0d2188 1px;
	border-bottom: solid #0d2188 1px;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .table th,
    .table td {
        font-size: 1.1rem;
        padding: 0.5em;
    }
}


/* ====================================
    タイトル
==================================== */

.main_ttl {
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0.25em;
    padding: 3.8vw 6.3vw 0 0;
    background-color: #0d2188;
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 0;
    width: calc(100% - 57%);
    margin-left: 0;
    margin-right: auto;
    border-left: solid transparent;
    border-left-width: 30px;
}
/* 調整 */
@media screen and (max-width: 1455px) {
    .main_ttl {
        font-size: 5rem;
        align-items: flex-start;
        min-width: 470px;
    }
}
.main_ttl::after {
    content: '';
    width: 12px;
    height: 12px;
    background: url("../img/triangle.svg") no-repeat center center / contain;
    position: absolute;
    bottom: 18px;
    right: 16px;
}
.main_ttl span {
    display: inline-block;
    padding: 0 0 50px 0.8em;
    border-left: 3px solid #fff;
}


@media screen and (max-width: 767px) {

}

/* ====================================
    コンテンツ その他
==================================== */

/*-------------------------*/
/*mv
/*-------------------------*/

.mv {
    padding-top: 100px;
    background: url("../img/bg_img_01.svg") no-repeat top right / 560px auto;
    position: relative;
    margin-bottom: 185px;
}
.mv_inner {
    background: linear-gradient(to right, #fff 30%, transparent 60%, transparent),
                url("../img/mv_img_cover.png") no-repeat top right /  1144px auto,
                url("../img/mv_img_01.jpg") no-repeat top right / 1144px auto;
}
.main_desc {
    padding: 250px 0 80px;
    display: inline-flex;
    flex-direction: column;
    /* background: linear-gradient(to right, #fff 80%, transparent); */
}
.main_desc p {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}
.main_desc p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .mv {
        padding-top: 0;
        margin-bottom: 0;
        background: none;
    }
    .main_ttl {
        width: 100%;
        min-width: auto;
        font-size: 3rem;
        padding: 1.3em 1em 0 1.3em;
        border: none;
        position: relative;
    }
    .main_ttl span {
        padding: 0 0 1em 0.8em;
    }
    .mv_inner {
        background: #fff url("../img/bg_img_01_sp.svg") no-repeat top right / 70px auto;
    }
    .main_desc {
        padding: 40px 0 60px;
    }
    .main_desc p {
        font-size: 1.4rem;
        margin-bottom: 2.5em;
    }
}

/*-------------------------*/
/*main_contents
/*-------------------------*/

.acc_cont {
    display: none;
}
.contents_ttl_en {
    text-align: center;
    margin-bottom: 30px;
}
.contents {
    background-color: #c8d7f0;
}
.contents_ttl {
    font-size: 3rem;
    font-weight: bold;
    color: #0d2188;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 40px 15px;
    cursor: pointer;
    transition: all .2s;
}
.contents_ttl span {
    display: inline-block;
    padding-left: 1.66em;
    position: relative;
}
.contents_ttl span::before {
    content: '';
    width: 0.9em;
    height: 0.9em;
    background: url("../img/arrow_wht.svg") no-repeat center center / contain;
    position: absolute;
    top: 0.2em;
    left: 0;
    transition: all .2s;
}
.contents_ttl.is-active span::before {
    transform: rotate(180deg);
}
.contents_inner {
    padding: 90px 0;
    position: relative;
}
.contents_item {
    border-bottom: 1px solid #fff;
}
.box {
    background-color: #fff;
    border-radius: 20px;
    padding: 7.7% 55px;
}
.box_inner {
    max-width: 1060px;
    margin: 0 auto;
}
.box_ttl {
    font-size: 3.6rem;
    font-weight: bold;
    color: #0d2188;
    letter-spacing: 0.13em;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #0d2188;
    margin-bottom: 50px;
}
.attention {
    font-size: 2.9rem;
    font-weight: bold;
    letter-spacing: 0.11em;
    text-align: center;
    margin-bottom: 70px;
}
.attention span {
    padding: 0 2.76em;
    position: relative;
    display: inline-block;
}
.attention span::before {
    content: '';
    width: 1.69em;
    height: 1.69em;
    display: block;
    background: url("../img/attention.svg") no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.attention span::after {
    content: '';
    width: 1.69em;
    height: 1.69em;
    display: block;
    background: url("../img/attention.svg") no-repeat center center / contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.box_item {
    margin-bottom: 60px;
}
.box_item:last-of-type {
    margin-bottom: 0;
}
.box_item_ttl {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.13em;
    background-color: #ed6c00;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 60px;
}
.case {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.case_item {
    width: 48%;
    text-align: center;
}
.case_item figure .caption {
    font-size: 2rem;
    font-weight: bold;
    color: #ed6c00;
    line-height: 1.5;
    letter-spacing: 0.13em;
    margin-top: 60px;
}
/* 調整 */
@media screen and (max-width: 770px) {
    .case_item figure .caption {
        font-size: 1.8rem;
    }
}
.case_item_01 img {
    width: 100%;
    max-width: 332px;
}
.case_item_02 img {
    width: 100%;
    max-width: 407px;
}
.case_item_03 img {
    width: 100%;
    max-width: 398px;
    transform: translateY(30px);
}
.case_item_04 img {
    width: 100%;
    max-width: 389px;
}
.case_table {
    max-width: 840px;
    margin: 50px auto;
}
.case_table .table th,
.case_table .table td {
    text-align: center;
    letter-spacing: 0.11em;
}
.case_table .table th {
    letter-spacing: 0.5em;
}
.case_table .table .sm {
    font-size: 0.8em;
}
.box_item_wrap {
    border-bottom: 3px dotted #0d2188;
    padding-bottom: 80px;
}
.box_item_bottom {
    padding-top: 90px;
    display: flex;
    align-items: flex-start;
}
.box_bottom_txt {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d2188;
    line-height: 1.2;
    letter-spacing: 0.17em;
    margin-right: 1.5em;
    flex-shrink: 0;
}
.box_desc {
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    line-height: 2.5;
    text-align: center;
    margin-bottom: 80px;
}
.step_item {
    margin-bottom: 70px;
}
.step_ttl {
    padding-bottom: 15px;
    border-bottom: 1px solid #0d2188;
}
.step_num {
    display: inline-block;
    margin-right: 35px;
}
.step_ttl_txt {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d2188;
    line-height: 1.2;
    letter-spacing: 0.21em;
    padding-top: 0.5em;
    display: inline-block;
}
.step_cta {
    width: 100%;
    max-width: 490px;
    margin: 50px auto 40px;
    color: #fff;
    background-color: #ed6c00;
    padding: 1em 1.5em;
    border-radius: 17px;
}
.step_cta_txt {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.step_cta_tel {
    font-size: 0;
    line-height: 1;
    display: inline-block;
    margin-bottom: 10px;
}
.step_cta_txt2 {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}
.lity-container {
    position: relative;
}
.lity-image img {
    max-height: 85vh !important;
}
.lity-close {
    font-size: 50px;
    position: absolute;
    top: -35px;
    right: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
    font-size: 50px;
}
.lity-close:active {
    top: -34px;
}
.works {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.works_item {
    width: 44.7%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
/*
    margin-bottom: 80px;
*/
}
.works_item:last-child {
    margin-bottom: 0;
}
.works_ttl {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d2188;
    letter-spacing: 0.015em;
    margin-bottom: 20px;
}
.works_img {
    width: 100%;
    position: relative;
}
.works_img img {
    width: 100%;
}
.works_icon {
    min-width: 160px;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.025em;
    text-align: center;
    background-color: #ed6c00;
    padding: 0.5em;
    position: absolute;
    top: 0;
    left: 0;
}

/*=============== PCのみ ===============*/

@media screen and (min-width: 768px) {
    .contents_ttl:hover {
        background-color: #94b7f2;
    }
}

@media screen and (max-width: 767px) {
    .contents_inner {
        padding: 15px 0 45px;
    }
    .contents_ttl_en {
        width: 61.8%;
        margin: 0 auto 15px;
    }
    .contents_ttl {
        font-size: 1.5rem;
        padding: 1.4em 15px;
    }
    .box {
        padding: 35px 20px 45px;
    }
    .box_item {
        margin-bottom: 50px;
    }
    .box_ttl {
        font-size: 1.7rem;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }
    .attention {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 40px;
    }
    .box_item_ttl {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    .case {
        display: block;
    }
    .case_item {
        width: 100%;
        margin-bottom: 30px;
    }
    .case_item:last-child {
        margin-bottom: 0;
    }
    .case_item_01 img {
        max-width: 166px;
    }
    .case_item_02 img {
        max-width: 200px;
    }
    .case_item_03 img {
        max-width: 200px;
    }
    .case_item_04 img {
        max-width: 200px;
    }
    .case_item figure .caption {
        margin-top: 30px;
        font-size: 1.3rem;
    }
    .case_item_03 img {
        transform: none;
    }
    .box_item + .list_2 {
        margin-top: 0;
    }
    .case_table {
        margin: 45px 0;
    }
    .case_table th:first-of-type {
        width: 20%;
    }
		.case_table .table th {
		    letter-spacing: 0.2em;
		}
    .box_item_wrap {
        padding-bottom: 40px;
    }
    .box_item_bottom {
        padding-top: 40px;
        display: block;
    }
    .box_bottom_txt {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1em;
    }
    .box_desc {
        font-size: 1.3rem;
        line-height: 2;
        text-align: left;
        margin-bottom: 40px;
    }
    .step_item {
        margin-bottom: 35px
    }
    .step_item:last-child {
        margin-bottom: 0;
    }
    .step_num {
        margin-right: 20px;
        width: 30%;
    }
    .step_ttl_txt {
        font-size: 1.6rem;
    }
    .step_cta {
        margin: 30px 0;
    }
    .step_cta_txt {
        font-size: 1.2rem;
    }
    .step_cta_txt2 {
        font-size: 1.2rem;
    }
    .works {
        display: block;
    }
    .works_item {
        width: 100%;
        margin-bottom: 40px;
    }
    .works_ttl {
        font-size: 1.4rem;
        margin-bottom: 0.8em;
    }
    .works_icon {
        min-width: 100px;
        font-size: 1.2rem;
    }
    .footer_cta {
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 15px 20px;
        border-radius: 0;
        bottom: 0;
    }
    .footer_cta.fixed {
        bottom: 0;
    }
    .footer_cta_inner {
        padding: 0;
    }
    .footer_cta_inner::before {
        content: none;
    }
    .footer_cta_txt {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .footer_sp_bottom {
        display: flex;
    }
    .footer_cta_tel {
        margin-right: 10px;
    }
    .footer_cta_txt2 {
        font-size: 1rem;
    }
}
