@charset "UTF-8";

/* 共通 */
body{
	box-sizing: border-box;
	font-family:　YuMincho, 'Yu Mincho', serif;
	font-size: 15px;
	line-height: 1.5;
	margin: 0 auto;
	overflow-wrap : break-word;
	text-align: center;
	word-wrap : break-word;
	word-break : break-all;
    color: #000;
}
*{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a{
	color: #000;
	list-style: none;
	text-decoration: none;
	display: block;
}
img {
    width: 100%;
    height: auto;
}

h2{
	font-family:  "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo,"Yu Gothic", YuGothic, sans-serif;
}
/* マウスオーバー時の透過 */
.mouseover:hover {
	filter:alpha(opacity=50); /* IE 6,7*/
	-ms-filter: "alpha(opacity=50)" !important; /* IE 8,9 */
	-moz-opacity:0.5 !important; /* FF , Netscape */
	-khtml-opacity: 0.5 !important; /* Safari 1.x */
	opacity:0.5 !important;
    transition: 0.7s !important;
    cursor: pointer;
}
.main {
	margin-top: 0;
}
body {
    background-color: #4f019f;
    overflow-x: hidden;
}
.inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/*====================

header

======================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
		background-color: #4F019F;
		opacity: 0.9;
}
header .inner {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
}
header .inner .header_logo {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 57%;
    flex: 1 0 57%;
    padding-left: 20px;
    text-align: left;
}
header .inner .header_logo > a > img {
    max-width: 350px;
    min-width: 250px;
}
header .inner .header_nav {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 43%;
	flex: 1 0 43%;
}
header .inner .header_nav > ul {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
header .inner .header_nav > ul > li > a {
    color: #fff;
    font-size: 16px;
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    header .inner .header_nav {
        display: none;
    }
}
/* ===== 400px以下 ===== */
@media(max-width: 400px) {
    header .inner .header_logo {
        padding-left: 0px;
    }
    header .inner .header_logo > a > img {
        max-width: 75%;
        padding-top: 10px;
    }
}
/* header_sp_nav */
header .header_nav_sp {
    display: none;
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    header .header_nav_sp {
        background-color: #fff;
        z-index: 50;
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 800px;
        height: auto;
        max-height: 700px;
        overflow-y: scroll;
    }
    header .header_nav_sp nav {
        padding-top: 70px;
        list-style: none;
        width: 95%;
        margin: auto;
        padding-bottom: 30px;
    }
    header .header_nav_sp nav li {
        border-top: 1px solid #75549687;
    }
    header .header_nav_sp nav li:last-of-type {
        border-bottom: 1px solid #75549687;
    }
    header .header_nav_sp nav a {
        line-height: 3em;
        font-size: 16px;
        color: #4F019F;
        text-align: left;
        padding-left: 30px;
    }
    header .header_nav_sp .header_nav_sp_bottom {
        background-color: #4f019f;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    header .header_nav_sp .header_nav_sp_bottom > a {
        color: #fff;
        display: block;
        width: 95%;
        max-width: 500px;
        font-size: 16px;
        line-height: 3em;
        margin: auto;
        border: 1px solid #fff;
        white-space: nowrap;
    }
    header .header_nav_sp .header_nav_sp_bottom > a:last-of-type {
        margin-top: 20px;
    }
    header .header_nav_sp .header_nav_sp_bottom > a > i {
        display: inline-block;
        font-size: 20px;
        padding-top: 7px;
        padding-right: 15px;
    }
    header .header_nav_sp .header_nav_sp_bottom .header_nav_sp_company_name {
        width: 90%;
        max-width: 200px;
        min-width: 200px;
        margin: auto;
        padding: 20px 0;
    }
}

/* ハンバーガーメニュー */
header .inner .btn{
    display: none;
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    header .inner .btn{
        display: block;
        width: 45px;
        height: 25px;
        position: absolute;
        right: 20px;
        top: 25px;
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    header .inner .btn:before,
    header .inner .btn:after,
    header .inner .btn span{
        display: inline-block;
        width: 80%;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }
    header .inner .btn span{
        height: 3px;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 70%;
        height: 2px;
        background-color: #002041;
        border-radius: 4px;
        display: inline-block;
    }
    header .inner .btn:before{
        content: "";
    }
    header .inner .btn:after{
        content: "";
        position: absolute;
        left: 0;
        bottom: -16px;
        display: block;
        width: 80%;
        color: #002041;
        font-size: 10px;
        text-decoration: none;
        text-align: center;
        white-space: nowrap;
        transition: all .4s;
    }
    header .inner .btn.on {
        z-index: 60;
    }
    header .inner .btn.on:before{

    }
    header .inner .btn span:nth-of-type(1) {
        top: 0;
    }
    header .inner .btn span:nth-of-type(2) {
        top: 11px;
    }
    header .inner .btn span:nth-of-type(3) {
        bottom: 0;
    }
    header .inner .btn.on span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }
    header .inner .btn.on span:nth-of-type(2) {
        opacity: 0;
    }
    header .inner .btn.on span:nth-of-type(3) {
        -webkit-transform: translateY(-12px) rotate(45deg);
        transform: translateY(-14px) rotate(45deg);
    }
    header .inner > .btn span{
        background-color: #FFF;
    }
    header .inner > .btn:after{
        color: #FFF;
    }
    header .inner > .btn.on span{
        background-color: #4f019f;
        height: 1px;
    }
}
/* ===== 400px以下 ===== */
@media(max-width: 400px) {
    header .inner .btn{
        right: 0;
    }
}

/*====================

main

======================*/
/* top */
.top {
    position: relative;
}
.top .top_text {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 30px;
    letter-spacing: .2em;
    transform: translateY(-50%);
}
.top .top_text > p {
    line-height: 1.8em;
}
.top .top_text > p > .sp {
    display: none;
}
/* ===== 960px以下 ===== */
@media(max-width: 960px) {
    .top {
        overflow: hidden;
        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;
    }
    .top .top_text {
        left: 36%;
    }
    .top .top_img > img {
        width: auto;
        height: 100vh;
        max-height: 600px;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .top .top_text {
        width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .top .top_text > p > .sp {
        display: block;
    }
}
/* ===== 460px以下 ===== */
@media(max-width: 460px) {
    .top .top_text {
        font-size: 25px;
        margin: auto;
    }
}

/* mission */
.mission .inner {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    padding: 70px 0;
}
.mission .inner > .img {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 50%;
    flex: 1 0 50%;
    overflow: hidden;
    width: 50%;
    height: auto;
    /* 変更点 */
    max-width: 500px;
    /* padding-top: 50%;
    min-height: 400px;
    margin-right: 20px;
    position: relative; */
}
.mission .inner > .img > img {
   width: 100%;
   /* position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%); */
}
.mission .inner .section_contents {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 50%;
    flex: 1 0 50%;
    text-align: right;
}
.mission .inner .section_contents > h2 {
    font-size: 40px;
    color: #a27acd;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 30px;
}
.mission .inner .section_contents > h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    height: 7px;
    width: 80px;
    background-color: #a27acd;
}
.mission .inner .section_contents > .catch_text {
    color: #a27acd;
    font-size: 20px;
    padding-bottom: 30px;
    font-weight: 600;
}
.mission .inner .section_contents > div {
    color: #fff;
}
.mission .inner .section_contents > .text_1 {
    font-size: 18px;
    padding-bottom: 20px;
}
.mission .inner .section_contents > .text_2 {}
.mission .inner .section_contents > div > p {
    line-height: 2em;
}
.mission .inner .section_contents .sp {
    display: none;
}
/* ===== 1450px以下 ===== */
@media(min-width: 1450px) {
    .mission .inner {
        margin: auto;
    }
}
/* ===== 1050px以下 ===== */
@media(max-width: 1050px) {
    .mission .inner > .img {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
        flex: 1 0 45%;
    }
    .mission .inner .section_contents {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 55%;
        flex: 1 0 55%;
    }
}
/* ===== 940px以下 ===== */
@media(max-width: 940px) {
    .mission .inner {
        display: block;
        margin: auto;
        padding: 0 0 30px;
    }
    .mission .inner > .img {
        margin: auto;
        width: 95%;
    }
    .mission .inner .section_contents {
        text-align: left;
        max-width: 500px;
        margin: auto;
    }
    .mission .inner .section_contents > h2 {
        font-size: 35px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .mission .inner .section_contents > h2::after {
        left: 0;
        right: auto;
        height: 5px;
    }
    .mission .inner .section_contents > .catch_text {
        padding-bottom: 15px;
        font-weight: 500;
    }
    .mission .inner .section_contents > div {
        color: #fff;
    }
    .mission .inner .section_contents > .text_1 {
        font-size: 16px;
        padding-bottom: 20px;
    }
    .mission .inner .section_contents > .text_2 {}
    .mission .inner .section_contents > div > p {
        line-height: 2em;
        font-size: 14px;
    }
    .mission .inner .section_contents .sp {
        display: block;
    }
    .mission .inner .section_contents .pc {
        display: none;
    }
}

/* work */
.work {
    background-color: #fff;
    padding: 100px 0 60px;
}
.work .inner {
    max-width: 700px;
}
.work .inner > h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: left;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
}
.work .inner > h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 7px;
    width: 100px;
    background-color: #000;
}
.work .inner > h2 > .sp {
    display: none;
}
.work .inner p {
    text-align: left;
}
.work .inner > .catch_text {
    font-size: 20px;
    margin-bottom: 30px;
}
.work .inner > .work_top_text > p {
    line-height: 2em;
}
.work > .work_main_contents {
    margin-top: 30px;
}
.work > .work_main_contents > .work_item {
    overflow: hidden;
    min-width: 100%;
    position: relative;
}
.work > .work_main_contents > .work_item:nth-of-type(n + 2) {
    margin-top: 50px;
}
.work > .work_main_contents > .work_item > .img {
    width: 100%;
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: center;
}
.work > .work_main_contents > .work_item_2 > .img {
    /* margin-top: -20%; */
}
.work > .work_main_contents > .work_item > .img > img {
    min-width: 1000px;
}
.work > .work_main_contents > .work_item > .img > .sp {
    display: none;
}
.work > .work_main_contents > .work_item .work_item_text {
    max-width: 90%;
    margin: auto;
    padding: 25px 20px;
    font-size: 20px;
    color: #000;
    background-color: rgba(255, 255, 255, .7);
    position: absolute;
    z-index: 20;
}
.work > .work_main_contents > .work_item .work_item_text > p > .sp {
    display: none;
}
.work > .work_main_contents > .work_item_1 .work_item_text {
    top: 55%;
    right: 0%;
    text-align: right;
    min-width: 600px;
}
.work > .work_main_contents > .work_item_2 .work_item_text {
    top: 55%;
    left: 0%;
    text-align: left;
    min-width: 350px;
}
.work > .work_main_contents > .work_item_3 .work_item_text {
    top: 50%;
    right: 0%;
    text-align: right;
    min-width: 500px;
    transform: translateY(-50%);
}
.work > .work_main_contents > .work_item_4 .work_item_text {
    width: 100%;
    max-width: 100%;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    background: none;
    text-align: left;
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    padding: 0;
}
.work > .work_main_contents > .work_item_4 .work_item_text .work_recruit {
    background-color: #4f019f;
    color: #fff;
    -webkit-box-flex: 1;
	-ms-flex: 1 0 55%;
    flex: 1 0 55%;
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: right;
    padding: 30px 50px 30px 0;
}

.wrap{
	margin-left: 20px;
}

.work > .work_main_contents > .work_item_4 .work_item_text .work_recruit .wrap > .catch {
    font-size: 25px;
    margin-bottom: 15px;
}
.work > .work_main_contents > .work_item_4 .work_item_text .work_recruit .wrap > .text > p {
    font-weight: normal;
}
.work > .work_main_contents > .work_item_4 .work_item_text .work_recruit_btn {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 45%;
    flex: 1 0 45%;
    text-align: center;
}
.work > .work_main_contents > .work_item_4 .work_item_text .work_recruit_btn > a {
    display: inline-block;
    background-color: #fff;
    color: #4f019f;
    border: 2px solid #4f019f;
    font-size: 24px;
    height: 80px;
    line-height: 80px;
    width: 95%;
    max-width: 350px;
}
.work > .work_main_contents > .work_item .work_item_text p {
    font-weight: 600;
    line-height: 2em;
}
.work > .work_main_contents > .work_item_1 .work_item_text > p {
}
/* ===== 800px以下 ===== */
@media(max-width: 800px) {
    .work > .work_main_contents > .work_item_4 .work_item_text .work_recruit {
        padding: 30px 15px 30px 10px;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .work {
        padding: 60px 0 60px;
    }
    .work .inner > h2 {
        font-size: 35px;
        line-height: 1.4em;
    }
    .work .inner > h2 > .sp {
        display: block;
    }
    .work .inner > .catch_text {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .work > .work_main_contents {
        margin-top: 30px;
    }
    /* .work > .work_main_contents > .work_item > .img {
        padding-left: 100px;
    } */
    .work > .work_main_contents > .work_item > .img > img {
        min-width: 900px;
    }
    .work > .work_main_contents > .work_item .work_item_text {
        font-size: 16px;
    }
    .work > .work_main_contents > .work_item_1 .work_item_text {
        right: 0%;
        text-align: left;
        min-width: auto;
        max-width: 90%;
    }
    .work > .work_main_contents > .work_item_2 .work_item_text {
        left: 0;
        min-width: auto;
        padding-right: 50px;
    }
    /* .work > .work_main_contents > .work_item_2 > .img {
        justify-content: flex-start;
        padding-left: 0;
        margin-left: 0px;
    } */
    .work > .work_main_contents > .work_item_3 .work_item_text {
        top: 55%;
        right: 0;
        text-align: left;
        min-width: auto;
    }
    .work > .work_main_contents > .work_item_4 .work_item_text {
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        display: block;
        padding: 30px 0 40px;
        background-color: #4f019f;
    }
    .work > .work_main_contents > .work_item_4 .work_item_text .work_recruit {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
        padding: 10px 30px 10px;
        margin: auto;
    }
    .work > .work_main_contents > .work_item_4 .work_item_text .work_recruit .wrap > .catch {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .work > .work_main_contents > .work_item_4 .work_item_text .work_recruit .wrap > .catch > .pc {
        display: none;
    }
    .work > .work_main_contents > .work_item_4 .work_item_text .work_recruit .wrap > .catch > text > p {
        font-size: 13px;
    }
    .work > .work_main_contents > .work_item .work_item_text p {
        font-size: 14px;
    }
    .work > .work_main_contents > .work_item_1 .work_item_text > p {
    }
}
/* ===== 500px以下 ===== */
@media(max-width: 500px) {
    .work > .work_main_contents > .work_item > .img > img {
        min-width: 0;
    }
    .work > .work_main_contents > .work_item > .img > .sp {
        display: block;
    }
    .work > .work_main_contents > .work_item > .img > .pc {
        display: none;
    }
}
/* ===== 420px以下 ===== */
@media(max-width: 420px) {
    .work > .work_main_contents > .work_item .work_item_text > p > .sp {
        display: block;
    }
}

/* profile */
.profile {
    background: no-repeat url('../img/company.png') center center / cover;
    padding: 100px 0;
}
.profile > .inner {
    background-color: rgba(255, 255, 255, .7);
    padding: 50px 25px 30px 50px;
    max-width: 850px;
}
.profile > .inner > h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: left;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}
.profile > .inner > h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 7px;
    width: 100px;
    background-color: #000;
}
.profile > .inner > h2 > .sp {
    display: none;
}
.profile > .inner > .profile_contents_wrap {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 60%;
    flex: 1 0 60%;
    text-align: left;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
		font-family:  "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo,"Yu Gothic", YuGothic, sans-serif;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item:nth-of-type(n + 2) {
    margin-top: 28px;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item p {
    line-height: 2em;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item .name {
    font-weight: 700;
    -webkit-box-flex: 1;
	-ms-flex: 1 0 30%;
    flex: 1 0 30%;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item .text {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 70%;
    flex: 1 0 70%;
		color: #5A5A5A;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item .text_list li {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item .text_list li > p:first-of-type {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 60%;
    flex: 1 0 60%;
    padding-right: 10px;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item .text_list li > p:last-of-type {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 20%;
    flex: 1 0 20%;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_img {
    -webkit-box-flex: 1;
	-ms-flex: 1 0 40%;
    flex: 1 0 40%;
}
.profile > .inner > .profile_contents_wrap > .profile_contents_img > div:nth-of-type(n + 2) {
    margin-top: 10px;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .profile {
        padding: 50px 0;
    }
    .profile > .inner {
        padding: 30px 20px 20px;
    }
    .profile > .inner > h2 {
        font-size: 35px;
    }
    .profile > .inner > h2 > .sp {
        display: block;
    }
    .profile > .inner > .profile_contents_wrap {
        display: block;
    }
    .profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item {
       display: block;
    }
    .profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item .text_list li > p:first-of-type {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        max-width: 300px;
        padding-right: 10px;
    }
    .profile > .inner > .profile_contents_wrap > .profile_contents_text > .profile_contents_text_item .text_list li > p:last-of-type {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }
    .profile > .inner > .profile_contents_wrap > .profile_contents_img {
        display: none;
    }
}
/* contact */
.contact {
    padding: 80px 0 60px;
}
.contact > .inner {
    text-align: left;
    max-width: 800px;
    color: #fff;
}
.contact > .inner > h2 {
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 30px;
}
.contact > .inner > h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 7px;
    width: 100px;
    background-color: #fff;
}
.contact > .inner > .contact_text {
    font-size: 16px;
    margin-bottom: 30px;
}
.contact > .inner > .tel,
.contact > .inner > .mail {
    border: 2px solid #fff;
    padding: 25px 20px;
}
.contact > .inner > .tel .title,
.contact > .inner > .mail .title  {
    font-size: 20px;
    margin-bottom: 10px;
}
.contact > .inner > .tel .btn_wrap,
.contact > .inner > .mail .btn_wrap {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
}
.contact > .inner > .tel .btn_wrap > a,
.contact > .inner > .mail .btn_wrap > a {
    background-color: #fff;
    color: #4f019f;
    max-width: 300px;
    -webkit-box-flex: 1;
	-ms-flex: 1 0 30%;
    flex: 1 0 30%;
    text-align: center;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
}
.contact > .inner > .tel {
    margin-bottom: 30px;
}
.contact > .inner > .tel .btn_wrap {
    margin-bottom: 20px;
}
.contact > .inner > .tel .btn_wrap > a > i {
    font-size: 14px;
    display: inline-block;
    margin-top: -4px;
    vertical-align: middle;
}
.contact > .inner > .tel .btn_wrap > a:first-of-type {
    margin-right: 50px;
}
.contact > .inner > .tel .btn_wrap > a > span:first-of-type {
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
}
.contact > .inner > .tel > .btn_wrap > .sp_text {
    display: none;
}
.contact > .inner > .mail .btn_wrap > a > i {
    font-size: 25px;
    display: inline-block;
    margin-top: -5px;
    vertical-align: middle;
}
.contact > .inner > .mail > .text {
    margin-bottom: 20px;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .contact {
        padding: 50px 0 40px;
    }
    .contact > .inner > h2 {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .contact > .inner > h2::after {
        height: 4px;
    }
    .contact > .inner > .contact_text {
        margin-bottom: 15px;
    }
    .contact > .inner > .tel,
    .contact > .inner > .mail {
        padding: 25px 10px;
        max-width: 400px;
        margin: auto;
    }
    .contact > .inner > .tel .title,
    .contact > .inner > .mail .title  {
        font-size: 18px;
        max-width: 300px;
        margin: 0 auto 10px;
    }
    .contact > .inner > .tel .btn_wrap,
    .contact > .inner > .mail .btn_wrap {
        display: block;
    }
    .contact > .inner > .tel .btn_wrap > a,
    .contact > .inner > .mail .btn_wrap > a {
        max-width: 300px;
        margin: auto;
    }
    .contact > .inner > .tel {
        margin-bottom: 30px;
    }
    .contact > .inner > .tel .btn_wrap > a:first-of-type {
        margin-right: auto;
        margin-bottom: 20px;
    }
    .contact > .inner > .tel > .btn_wrap > .sp_text {
        display: block;
        max-width: 300px;
        margin: 0 auto 10px;
    }
    .contact > .inner > .tel > .pc_text {
        display: none;
    }
    .contact > .inner > .mail > .text {
        margin-bottom: 20px;
        max-width: 300px;
        margin: 0 auto 10px;
    }
}

/*====================

footer

======================*/
footer {
    padding: 50px 0;
    background-color: #232323;
}
footer .footer_nav ul {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
}
footer .footer_nav ul li {
    margin-right: 40px;
}
footer .footer_nav ul li a {
    color: #fff;
}
footer .footer_contents {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
}
footer .footer_contents .footer_info {
    text-align: left;
    color: #fff;
}
footer .footer_contents .footer_info .name {
    font-size: 24px;
    margin-bottom: 20px;
}
footer .footer_contents .footer_info .name_sp {
    display: none;
}
footer .footer_contents .footer_info .address {
    font-size: 18px;
    margin-bottom: 15px;
}
footer .footer_contents .footer_info .address > .sp {
    display: none;
}
footer .footer_contents .footer_info .tel,
footer .footer_contents .footer_info .fax  {
    font-size: 16px;
    line-height: 2em;
}
footer .footer_contents .footer_btn a {
    display: block;
    color: #fff;
    background-color: #4f019f;
    width: 350px;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
}
footer .footer_contents .footer_btn a > i {
    font-size: 20px;
    display: inline-block;
    padding-right: 10px;
    vertical-align: middle;
}
footer .footer_contents .footer_btn a:first-of-type {
    margin-bottom: 15px;
}
footer .footer_contents .footer_btn a:last-child i {
    font-size: 25px;
    margin-top: -2px;
}
/* ===== 850px以下 ===== */
@media(max-width: 850px) {
    footer .footer_contents .footer_info .address {
        font-size: 16px;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    footer .footer_nav ul {
        display: none;
    }
    footer .footer_contents {
        display: block;
        max-width: 300px;
        margin: auto;
    }
    footer .footer_contents .footer_info .name {
        display: none;
    }
    footer .footer_contents .footer_info .name_sp {
        display: block;
        max-width: 250px;
        margin: 0 auto 20px;
    }
    footer .footer_contents .footer_info .address {
        line-height: 2em;
        margin-bottom: 5px;
    }
    footer .footer_contents .footer_info .address,
    footer .footer_contents .footer_info .tel,
    footer .footer_contents .footer_info .fax  {
        text-align: center;
        font-size: 13px;
    }
    footer .footer_contents .footer_info .address > .sp {
        display: block;
    }
    footer .footer_contents .footer_btn {
        display: none;
    }
}
