@charset "UTF-8";

/* 共通 */
body{
	box-sizing: border-box;
	font-family:  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", YuGothic, "游ゴシック体", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 auto;
	overflow-wrap : break-word;
	text-align: center;
	word-wrap : break-word;
	word-break : break-all;
    color: #333;
    max-width: 1980px;
}
body.scroll {
    width: 100%;
    overflow: scroll;
    position: relative;
}
.full_page {
    width: 100%;
    min-width: 1280px;
    overflow: scroll;
}
.body_fixed {
    height: 100vh;
    overflow-y: hidden !important;
}
*{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
}
a{
	color: #333;
	list-style: none;
	text-decoration: none;
	display: block;
}
img {
    width: 100%;
    height: auto;
    line-height: 0;
}
/* マウスオーバー時の透過 */
.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;
}
.mouseover_under:hover {
    opacity: 1 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0) !important;
}
.main {
    background-color: #fff;
	margin-top: 0;
}
.only_pc_main {
    width: 100%;
    min-width: 1280px;
}
body {
    overflow-x: hidden;
}
.inner {
    width: 90%;
    max-width: 1080px;
    margin: auto;
}
.section_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    z-index: 10;
}
.section_title h2 {
    color: #fff;
    font-size: 94px;
    font-weight: 600;
    line-height: 1em;
    margin-right: 30px;
}
.section_title > p {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}
.main_btn a,
.main_btn button {
    margin: auto;
    border: 1px solid #fff;
    color: #fff;
    width: 100%;
    max-width: 320px;
    height: 50px;
    text-align: center;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    background-color: #009DFF;
}
.main_btn a {
    line-height: 50px;
}
.main_btn a:hover,
.main_btn button:hover {
    opacity: 1 !important;
    background-color: #fff;
    color: #009DFF;
}
.main_btn a::after,
.main_btn button::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 27px;
    background: no-repeat url(../img/main_btn_arr.png) center center / contain;
    width: 7px;
    height: 14px;
    transform: translateY(-50%);
}
.main_btn a:hover:after {
    background: no-repeat url(../img/link_arr_bl.png) center center / contain !important;
}
.main_btn.normal_color a:hover,
.main_btn.normal_color button:hover {
    opacity: .5 !important;
    background-color: #009DFF;
    color: #fff;
}
.main_btn.normal_color a:hover:after {
    background: no-repeat url(../img/main_btn_arr.png) center center / contain !important;
}

.back_btn a::after,
.back_btn button::after {
    top: 50%;
    right: 27px;
/*    background: no-repeat url(../img/main_btn_arr.png) center center / contain; */
    background:none;
    width: 7px;
    height: 14px;
    transform: translateY(-50%);
}
.back_btn {
    margin-top: 40px;
}
.back_btn.normal_color a:hover:after {
/*    background: no-repeat url(../img/main_btn_arr.png) center center / contain !important;*/
    background: none!important;
}
.back_btn a:hover:after {
/*    background: no-repeat url(../img/link_arr_bl.png) center center / contain !important; */
    background: none!important;
}

.btn_under_b {
    color: #009DFF;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}
.btn_under_b:hover {
    border-bottom: 1px solid #009DFF;
    opacity: 1 !important;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
/* スクロールフェードイン */
.fadein {
    opacity: 0;
    transform : translate(0, 50px);
    transition : all 1500ms;
}
.fadein.scrollin{
    opacity: 1;
    transform: translate(0, 0);
}
/* top top btn */
.top_topbtn {
    position: fixed;
    right: 10%;
    bottom: 50px;
    width: 70px;
    height: 70px;
    z-index: 20;
}
/* モーダル */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: scroll;
    /* min-width: 1280px; */
    background-color: rgba(0, 0, 0, .5);
    display: none;
    z-index: 100;
}
.modal_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal_inner.pdf_img {
    width: 1080px;
}
.modal_content_wrap {
    position: relative;
    padding: 35px 35px 50px;
    background-color: #fff;
}
.modal_title {
    padding-bottom: 35px;
    border-bottom: 1px solid #333333;
}
.modal_title p {
    font-size: 24px;
    font-weight: 600;
}
.modal_body {
    padding-top: 34px;
}
.modal .modal_body.form_wrap {
    max-height: 345px;
    overflow-y: scroll;
    /* margin-bottom: 20px; */
}
.modal_btn {
    width: 390px;
    margin: auto;
}
.modal_btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 50px;
}
.modal_btn ul li {
    width: calc(50% - 15px / 2);
    margin-right: 15px;
}
.modal_btn ul li:last-of-type {
    margin-right: 0;
}
.modal_btn ul li a {
    color: #fff;
    line-height: 50px;
}
.modal_btn ul li:first-of-type a {
    background-color: #CCC;
    height: 50px;
}
.modal_btn ul li:last-of-type a {
    background-color: #009DFF;
}
.modal .modal_content_wrap .close_btn {
    position: absolute;
    top: -35px;
    right: 0;
}
.close_btn a {
    width: 24px;
    height: auto;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .section_title {
        display: block;
    }
    .section_title h2 {
        font-size: 42px;
        text-align: left;
    }
    .section_title > p {
        font-size: 16px;
        text-align: left;
        margin-top: 10px;
    }
    .main_btn a,
    .main_btn button {
        display: block;
        background-color: #009DFF;
        height: 40px;
        line-height: 40px;
        max-width: 220px;
        border-radius: 20px;
    }
}

/*==================== 
header
======================*/
/* トップ & 共通 */
.only_pc_header {
    width: 100%;
    min-width: 1280px;
}
.top_header,
.common_header {
    background-color: rgba(0, 0, 0, 0.55);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    max-width: 1980px;
}
.top_header,
.common_header:not(.only_pc_header) {
    left: 50%;
    transform: translateX(-50%);
}
.top_header {
    position: absolute;
}
.common_header {
    position: fixed;
}
.header_inner.top_header_s {
    display: none;
    background-color: #fff;
    width: 100%;
}
.header_inner {
    padding: 0 15px 0 25px;
    max-width: 1980px;
    width: 100%;
    margin: auto;
    height: 70px;
    line-height: 70px;
    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_nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.top_header .top_header_f .header_nav > ul li {
    margin-right: 40px;
}
.top_header .header_nav > ul li:last-of-type {
    margin-right: 0;
}
.top_header .top_header_f .header_nav > ul a {
    color: #fff;
}
.header_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header_btn > a {
    width: 62px;
    height: 48px;
}
.header_btn > a:nth-of-type(n + 3) {
    margin-left: 10px;
}
.header_btn > a.sp {
    display: none;
}
.sp_site_logo {
    display: none;
}
.header_nav_sp {
    display: none;
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    transition: all 0.6s;
}
/* common header & top_header_s */
.common_header {
    background-color: #fff !important;
}
.common_header .header_inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.common_header .site_logo a,
.top_header_s .site_logo a {
    max-width: 148px;
    height: auto;
    vertical-align: middle;
    line-height: 1em;
}
.common_header .header_nav,
.top_header_s .header_nav {
    width: 73%;
    max-width: 813px;
    margin-left: 30px;
    margin-right: auto;
}
.common_header .header_nav ul,
.top_header_s .header_nav ul {
    width: 100%;
    justify-content: space-around;
}
.common_header .header_nav li:last-of-type,
.top_header_s .header_nav li:last-of-type {
    margin-right: 0;
}
.common_header .header_nav li > a,
.top_header_s .header_nav li > a {
    font-weight: 600;
}
header:not(.only_pc_header) .header_nav_sp .header_nav_sp_top {
    display: none;
}
/* ===== 1980px以下 ===== */
@media(min-width: 1980px) {
.top_header,
.common_header {
    left: 50% !important;
    transform: translateX(-50%);
}
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    header:not(.only_pc_header).top_header {
        background-color: #fff;
        width: 100%;
        position: fixed !important;
        top: 0;
        left: 0;
        transform: translateX(0%);
    }
    header:not(.only_pc_header) .sp_site_logo,
    header:not(.only_pc_header) .site_logo {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 160px;
        height: auto;
    }
    header:not(.only_pc_header) .sp_site_logo > a,
    header:not(.only_pc_header) .site_logo > a {
        display: inline-block;
        padding-bottom: 5px;
        line-height: 1em;
        vertical-align: middle;
    }
    header:not(.only_pc_header) .sp_site_logo > div img,
    header:not(.only_pc_header) .site_logo > a img {
        vertical-align: middle;
    }
    header:not(.only_pc_header) .header_btn > a.sp {
        display: block;
    }
    header:not(.only_pc_header) .header_btn > a.pc {
        display: none;
    }
    header:not(.only_pc_header) .header_inner {
        display: block !important;
    }
    header:not(.only_pc_header) .header_inner.top_header_s {
        display: none !important;
    }
    header:not(.only_pc_header) .header_btn {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 70px;
        padding-top: 5px;
    }
    header:not(.only_pc_header) .header_btn > a {
        width: 45px;
        height: auto;
    }
    header:not(.only_pc_header) .header_btn > a img {
        vertical-align: middle;
    }
    header:not(.only_pc_header) .header_btn .mypage {
        width: 53px;
        height: auto;
    }
    header:not(.only_pc_header) .header_btn .cart {
        width: 35px;
        height: auto;
    }
    header:not(.only_pc_header) .header_nav_sp {
        display: block !important;
        background-color: rgba(0, 0, 0, .8);
        width: 100%;
        z-index: 90;
    }
    header:not(.only_pc_header) .header_nav_sp.active {
        left: 0;
        max-height: 100vh;
        overflow-y: scroll;
    }
    header:not(.only_pc_header) .header_nav_sp .header_nav_sp_top {
        background-color: #fff;
        display: block;
        width: 90%;
        height: 70px;
        line-height: 70px;
    }
    header:not(.only_pc_header) .header_nav_sp .header_nav_sp_top .logo {
        width: 160px;
        padding-bottom: 5px;
        padding-left: 4%;
    }
    header:not(.only_pc_header) .header_nav_sp .header_nav_sp_top .logo > img {
        vertical-align: middle;
    }
    header:not(.only_pc_header) .header_nav_sp > ul {
        background-color: #fff;
        width: 90%;
    }
    header:not(.only_pc_header) .header_nav_sp > .header_nav_sp_bottom:last-of-type {
        background-color: #F4F4F4;
        width: 90%;
        padding: 30px 0;
    }
    header:not(.only_pc_header) .header_nav_sp > ul > li > p,
    header:not(.only_pc_header) .header_nav_sp > ul > li > a {
        height: 42px;
        line-height: 42px;
        text-align: left;
        padding-left: 4%;
    }
    header:not(.only_pc_header) .header_nav_sp > ul > li > a {
        border-bottom: 1px solid #ccc;
    }
    header:not(.only_pc_header) .header_nav_sp > ul > li:first-of-type p {
        background-color: #009DFF;
        color: #fff;
        font-weight: 600;
    }
    header:not(.only_pc_header) .header_nav_sp > .header_nav_sp_bottom ul li {
        margin-bottom: 20px;
    }
    header:not(.only_pc_header) .header_nav_sp > .header_nav_sp_bottom ul li:last-of-type {
        margin-bottom: 0;
    }
    header:not(.only_pc_header) .header_nav_sp > .header_nav_sp_bottom ul li a {
        text-align: left;
        padding-left: 4%;
        color: #009DFF;
        font-size: 14px;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    header:not(.only_pc_header).top_header > .header_inner {
        padding: 0 13px 0 12px;
        height: 60px;
        line-height: 60px;
    }
    header:not(.only_pc_header).common_header {
        height: 60px;
    }
    header:not(.only_pc_header) .sp_site_logo,
    header:not(.only_pc_header) .site_logo {
        width: 108px;
        height: auto;
    }
    header:not(.only_pc_header) .sp_site_logo > div,
    header:not(.only_pc_header) .sp_site_logo > a {
        padding-bottom: 0;
    }
    header:not(.only_pc_header) .header_btn {
        height: 60px;
        padding-top: 0px;
    }
    header:not(.only_pc_header) .header_btn > a {
        width: 40px;
        height: 100%;
    }
    header:not(.only_pc_header) .header_btn .mypage {
        width: 48px;
        height: auto;
    }
    header:not(.only_pc_header) .header_btn .cart {
        width: 30px;
        height: auto;
    }
    header:not(.only_pc_header) .header_nav_sp .header_nav_sp_top {
        height: 60px;
        line-height: 60px;
    }
    header:not(.only_pc_header) .header_nav_sp .header_nav_sp_top .logo {
        width: 108px;
        padding-bottom: 0;
        padding-left: 0%;
        margin-left: 4%;
    }
}
/* ハンバーガーメニュー */
.header_inner .btn{
    display: none;
    transition: all 0s;
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    header:not(.only_pc_header) .header_inner .btn{
        display: block;
        width: 32px;
        height: 25px;
        position: absolute;
        left: 20px;
        top: 25px;
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        z-index: 80;
    }
    header:not(.only_pc_header) .header_inner .btn:before,
    header:not(.only_pc_header) .header_inner .btn:after,
    header:not(.only_pc_header) .header_inner .btn span{
        display: inline-block;
        width: 100%;
        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:not(.only_pc_header) .header_inner .btn span{
        height: 3px;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: #009DFF;
        display: inline-block;
    }
    header:not(.only_pc_header) .header_inner .btn:before{
        content: "";
    }
    header:not(.only_pc_header) .header_inner .btn.on {
        z-index: 100;
        left: 83%;
        transition: all .6s;
    }
    header:not(.only_pc_header) .header_inner .btn span:nth-of-type(1) {
        top: 0;
    }
    header:not(.only_pc_header) .header_inner .btn span:nth-of-type(2) {
        top: 11px;
    }
    header:not(.only_pc_header) .header_inner .btn span:nth-of-type(3) {
        bottom: 0;
    }
    header:not(.only_pc_header) .header_inner .btn.on span:nth-of-type(1) {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }
    header:not(.only_pc_header) .header_inner .btn.on span:nth-of-type(2) {
        opacity: 0;
    }
    header:not(.only_pc_header) .header_inner .btn.on span:nth-of-type(3) {
        -webkit-transform: translateY(-14px) rotate(45deg);
        transform: translateY(-14px) rotate(45deg);
    }
    header:not(.only_pc_header) .header_inner > .btn span{
        background-color: #009DFF;
    }
    header:not(.only_pc_header) .header_inner > .btn:after{
        color: #009DFF;
    }
    header:not(.only_pc_header) .header_inner > .btn.on span{
        background-color: #009DFF;
        height: 3px;
    }
    header:not(.only_pc_header) .header_nav {
        display: none;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    header:not(.only_pc_header) .header_inner .btn{
        top: 20px;
    }
    header:not(.only_pc_header) .header_inner .btn.on {
        left: 80%;
    }
    header:not(.only_pc_header) .header_inner .btn.on span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }
    header:not(.only_pc_header) .header_inner .btn.on span:nth-of-type(3) {
        -webkit-transform: translateY(-12px) rotate(45deg);
        transform: translateY(-12px) rotate(45deg);
    }
    header.only_pc_header .header_btn .pc {
        display: block;
    }
}


/*==================== 
footer
======================*/
footer {
    background-color: #5A5A5A;
}
.only_pc_footer {
    width: 100%;
    min-width: 1280px;
}
footer .footer_flex {
    padding: 50px 0 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
footer .footer_flex .footer_company {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 34%;
    flex: 1 0 34%;
    padding-right: 15px;
}
footer .footer_flex .footer_company .footer_logo {
    max-width: 150px;
    height: auto;
    padding-bottom: 33px;
}
footer .footer_flex .footer_company p,
footer .footer_flex .footer_company a {
    color: #fff;
    text-align: left;
    font-size: 13px;
}
footer .footer_flex .footer_link {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 66%;
    flex: 1 0 66%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
footer .footer_flex .footer_link ul {
    width: 100%;
}
footer .footer_flex .footer_link ul li {
    text-align: left;
}
footer .footer_flex .footer_link ul li a {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
}
footer .copyright {
    background-color: #333;
}
footer .copyright p {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    footer:not(.only_pc_footer) .footer_flex {
        display: block;
        padding: 40px 0 25px;
    }
    footer:not(.only_pc_footer) .footer_flex .footer_company {
        padding: 0;
    }
    footer:not(.only_pc_footer) .footer_flex .footer_company .footer_logo {
        margin: auto;
        padding-bottom: 22px;
        max-width: 111px;
    }
    footer:not(.only_pc_footer) .footer_flex .footer_company p,
    footer:not(.only_pc_footer) .footer_flex .footer_company a {
        text-align: center;
    }
    footer:not(.only_pc_footer) .footer_flex .footer_company > p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    footer:not(.only_pc_footer) .footer_flex .footer_link {
        display: block;
    }
    footer:not(.only_pc_footer) .footer_flex .footer_link ul li a {
        margin-bottom: 25px;
    }
    footer:not(.only_pc_footer) .footer_flex .footer_link ul:last-of-type {
        border-top: 1px solid #fff;
        padding-top: 25px;
    }
}

/*==================== 
main
======================*/
/* **********top_page*********** */
.top_link.sp {
    display: none;
}
.main_top {
    position: relative;
    max-width: 1980px;
    margin: auto;
}
.main_top .top_img {
    position: relative;
}
.main_top .top_img .slide-img {
    position: relative;
}
.main_top .slide-img.sp {
    display: none;
}
.main_top .top_img .slide-img > img {
    min-width: 1150px;
    height: auto;
    position: relative;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
}
.main_top .top_img_front {
    position: absolute;
    top: 20%;
    left: 0;
    width: 95%;
    transition: all 1s !important;
} 
.main_top .top_news {
    position: absolute;
    right: 50%;
    bottom: 28px;
    transform: translateX(50%);
    padding: 16px 20px 13px;
    background-color: rgba(255, 255, 255, 0.95);
    width: 65%;
    max-width: 828px;
    border-radius: 8px;
}
.main_top .top_news .title {
    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;
    padding-bottom: 5px;
}
.main_top .top_news .title p {
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.main_top .top_news .title p span {
    font-size: 14px;
    margin-left: 15px;
    font-weight: 600;
}
.main_top .top_news .title > a {
    line-height: 1;
    font-size: 13px;
    position: relative;
    padding-right: 20px;
    border-bottom: 1px solid #333;
    font-weight: 600;
}
.main_top .top_news .title > a::after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: no-repeat url(../img/link_arr_b.png) center center / contain;
    width: 13px;
    height: 13px;
}
.main_top .top_news ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #CCC;
}
.main_top .top_news ul li:last-of-type a {
    border-bottom: none;
}
.main_top .top_news ul li a .date {
    font-size: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 93px;
    flex: 1 0 93px;
    max-width: 93px;
    text-align: left;
}
.main_top .top_news ul li a .label {
    max-width: 90px;
    height: 22px;
    line-height: 22px;
    background-color: #8B8B8B;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 90px;
    flex: 1 0 90px;
}
.main_top .top_news ul li a .label.campaign {
    background-color: #CF0000;
}
.main_top .top_news ul li a .news_title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: left;
    text-decoration: underline;
    margin-left: 15px;
    font-size: 14px;
}
.main_top .top_news .main_btn.sp {
    display: none;
}
/* top-page slick */
.main_top .slick-dots li button:before {
    color: #fff !important;
    opacity: 1;
}
.main_top .slick-dots li.slick-active button:before {
    color: #0072B9 !important;
}
/* ------ */
.toppage_main .itemlist {
    margin-top: -30px;
    padding-top: 120px;
    padding-bottom: 100px;
    background-color: #009DFF;
}
.toppage_main .top_itemlist_wrap {
    padding-top: 45px;
}
.toppage_main .slide-item_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.toppage_main .slide-item_flex .slide-item_flex_child {
    width: calc(33.3333% - 15px * 2 / 3);
    margin-right: 15px;
    position: relative;
}
.toppage_main .slide-item_flex .slide-item_flex_child:nth-of-type(3n) {
    margin-right: 0;
}
.toppage_main .slide-item_flex .slide-item_flex_child:nth-of-type(n + 4) {
    margin-top: 12px;
}
.toppage_main .slide-item_flex .slide-item_flex_child .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 73px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 9px 18px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.toppage_main .slide-item_flex .slide-item_flex_child .text > p {
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
/* toppage itemList */
.toppage_main .itemlist .slick-prev {
    z-index: 10;
    left: -14px;
    transform: translateY(10px);
}
.toppage_main .itemlist .slick-next {
    right: -14px;
    transform: translateY(10px);
}
.toppage_main .itemlist .slick-next:before {
    position: absolute;
    content: '';
    background: no-repeat url(../img/scroll_r_icon.png) center center / contain;
    width: 46px;
    height: 46px;
    z-index: 10;
    transform: translate(-50%, -50%);
}
.toppage_main .itemlist .slick-prev:before {
    position: absolute;
    content: '';
    background: no-repeat url(../img/scroll_l_icon.png) center center / contain;
    width: 46px;
    height: 46px;
    z-index: 10;
    transform: translate(-50%, -50%);
}
.toppage_main .itemlist .main_btn {
    margin-top: 70px;
}
/* toppage banner */
.top_page_design_banner,
.top_page_accept_banner {
    line-height: 0;
    background-color: #fff;
}
.top_page_design_banner > a,
.top_page_accept_banner > div {
    max-width: 1980px;
    margin: auto;
}
/* toppage voice */
.toppage_main .voice {
    padding-top: 105px;
    padding-bottom: 80px;
    background-color: #009DFF;
}
.toppage_main .voice .voice_flex {
    margin-top: 35px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.toppage_main .voice .voice_flex .voice_flex_item {
    width: calc(33.333% - 20px * 2 / 3);
    margin-right: 20px;
}
.toppage_main .voice .voice_flex .voice_flex_item:last-of-type {
    margin-right: 0;
}
.toppage_main .voice .voice_flex .voice_flex_item .text {
    margin-top: 28px;
    padding-top: 26px;
    text-align: left;
    color: #fff !important;
    border-top: 2px solid #fff;
    font-weight: 600 !important;
    font-size: 15px;
}
.toppage_main .voice .voice_flex .voice_flex_item .text .title {
    font-size: 20px;
    overflow: hidden;
    margin-bottom: 13px;
}
.toppage_main .voice .voice_flex .voice_flex_item .text .title > p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 600;
}
.toppage_main .voice .voice_flex .voice_flex_item .text .letter_body {
    margin-top: 25px;
    overflow: hidden;
}
.toppage_main .voice .voice_flex .voice_flex_item .text .letter_body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-height: 1.8em;
}
/* toppage contact */
.toppage_main .contact {
    background-color: #009DFF;
    padding: 88px 0 80px;
}
.toppage_main .contact .contact_content {
    background-color: #fff;
    margin-top: 35px;
}
.toppage_main .contact .contact_content .catch {
    width: 85%;
    margin: auto;
}
.toppage_main .contact .contact_content .catch p {
    font-size: 20px;
    font-weight: 600;
    padding-top: 50px;
    position: relative;
    display: inline-block;
    margin: 0 auto 55px;
}
.toppage_main .contact .contact_content .catch p::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -40px;
    background: no-repeat url(../img/men_icon.png) center center / contain;
    width: 32px;
    height: 42px;
}
.toppage_main .contact .contact_content .contact_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 95%;
    max-width: 990px;
    margin: auto;
}
.toppage_main .contact .contact_content .contact_flex > div {
    width: calc(50% - 15px / 2);
    margin-right: 15px;
    border: 2px solid #009DFF;
    padding: 25px 10px 35px;
}
.toppage_main .contact .contact_content .contact_flex > div:last-of-type {
    margin-right: 0;
}
.toppage_main .contact .contact_content .contact_flex > div > a {
    pointer-events: none;
}
.toppage_main .contact .contact_content .contact_flex > div > p,
.toppage_main .contact .contact_content .contact_flex > div > a > p {
    font-size: 22px;
    color: #009DFF;
    font-weight: 600;
}
.toppage_main .contact .contact_content .contact_flex > div.tel .num p {
    font-size: 47px;
    color: #009DFF;
    font-weight: 600;
    margin-top: 15px;
}
.toppage_main .contact .contact_content .contact_flex > div.tel .num p i {
    font-size: 31px;
    vertical-align: middle;
}
.toppage_main .contact .contact_content .contact_flex > div.tel a .num > p.date {
    color: #333;
    font-size: 16px;
    line-height: 1em;
    margin: 0;
}
.toppage_main .contact .contact_content .contact_flex > div.mail .mail_address {
    margin-top: 25px;
}
.toppage_main .contact .contact_content .contact_flex > div.mail .mail_address > a {
    background-color: #009DFF;
    width: 90%;
    margin: auto;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 10px 25px;
}
.toppage_main .contact .contact_content .contact_flex > div.mail .date {
    color: #333;
    font-size: 16px;
    line-height: 1em;
    margin: 0;
    margin-top: 20px;
}
.toppage_main .contact .contact_content .sns_icon ul {
    margin-top: 44px;
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.toppage_main .contact .contact_content .sns_icon ul li {
    margin-right: 40px;
    max-width: 56px;
}
.toppage_main .contact .contact_content .sns_icon ul li:last-of-type {
    margin-right: 0;
}
.toppage_main .contact .contact_content_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.toppage_main .contact .contact_content_flex .contact_content {
    width: calc(50% - 18px / 2);
    margin-right: 18px;
    padding: 0 25px;
    text-align: left !important;
    position: relative;
}
.toppage_main .contact .contact_content_flex .contact_content:last-of-type {
    margin-right: 0;
}
.toppage_main .contact .contact_content_flex .contact_content .catch {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}
.toppage_main .contact .contact_content_flex .contact_content .catch p {
    padding: 0;
    margin: 0;
    width: 100%;
    padding: 15px 0 15px 60px;
}
.toppage_main .contact .contact_content_flex .contact_content:first-of-type .catch p::before {
    transform: translateY(-50%);
    background: no-repeat url(../img/pay_icon.png) center center / contain;
    width: 38px;
    height: 24px;
    left: 0;
}
.toppage_main .contact .contact_content_flex .contact_content:last-of-type .catch p::before {
    transform: translateY(-50%);
    background: no-repeat url(../img/cancel_icon.png) center center / contain;
    width: 36px;
    height: 31px;
    left: 0;
}
.toppage_main .contact .contact_content_flex .contact_content .letter_body p {
    font-size: 15px;
    line-height: 1.8em;
    margin-bottom: 10px;
}
.toppage_main .contact .contact_content_flex .contact_content .credit {
    margin-bottom: 60px;
    background-color: #F4F4F4;
    padding: 10px 15px;
}
.toppage_main .contact .contact_content_flex .contact_content .credit p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.toppage_main .contact .contact_content_flex .contact_content .credit .img {
    max-width: 314px;
}
.toppage_main .contact .contact_content_flex .contact_content > a {
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 13px;
    padding-right: 20px;
    border-bottom: 1px solid #333;
}
.toppage_main .contact .contact_content_flex .contact_content > a::after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: no-repeat url(../img/link_arr_b.png) center center / contain;
    width: 13px;
    height: 13px;
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    .top_link.sp {
        margin-top: 70px;
        display: block;
        background-color: #009DFF;
    }
    .top_link.sp  .top_link_flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        line-height: 1em;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        position: relative;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item:first-of-type::after,
    .top_link.sp  .top_link_flex .top_link_flex_item:nth-of-type(2)::after {
        position: absolute;
        content: "";
        right: 0;
        top: -2px;
        background-color: #fff;
        width: 1px;
        height: 105%;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item .img {
        margin: auto;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item:first-of-type .img {
        max-width: 26px;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item:nth-of-type(2) .img {
        max-width: 32px;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item:last-of-type .img {
        max-width: 42px;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item > p {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .top_link.sp {
        margin-top: 60px;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item {
        padding: 10px 0;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item:first-of-type .img {
        max-width: 13px;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item:nth-of-type(2) .img {
        max-width: 16px;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item:last-of-type .img {
        max-width: 21px;
    }
    .top_link.sp  .top_link_flex .top_link_flex_item > p {
        font-size: 10px;
        padding-top: 5px;
    }
    .toppage_main .main_top {
        background-color: #009DFF;
    }
    .toppage_main .main_top .slide-img.pc {
        display: none;
    }
    .toppage_main .main_top .slide-img.sp {
        display: block;
    }
    .main_top .top_img .slide-img > img {
        min-width: 100%;
    }
    .main_top .top_news {
        position: static;
        margin: 50px auto 0;
        width: 95%;
        transform: translateX(0);
    }
    .main_top .top_news .title > a {
        display: none;
    }
    .main_top .top_news .main_btn.sp {
        display: block;
        margin-top: 30px;
    }
    .main_top .top_news ul li a {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        overflow: hidden;
    }
    .main_top .top_news ul li a .news_title {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    /* toppage itemlist */
    .toppage_main .itemlist {
        margin-top: 0px;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .toppage_main .top_itemlist_wrap {
        padding-top: 22px;
    }
    .toppage_main .slide-item_flex {
        display: block;
    }
    .toppage_main .top_itemlist_wrap .slick-slider.pc {
    }
    .toppage_main .slide-item_flex .slide-item_flex_child {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        line-height: 0;
    }
    .toppage_main .slide-item_flex .slide-item_flex_child:nth-of-type(3n) {
        margin-right: auto;
    }
    .toppage_main .slide-item_flex .slide-item_flex_child:nth-of-type(n) {
        margin-top: 10px;
    }
    .toppage_main .slide-item_flex .slide-item_flex_child .text > p {
        font-size: 18px;
    }
    .toppage_main .itemlist .main_btn {
        margin-top: 30px;
    }
    /* toppage voice */
    .toppage_main .voice {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .toppage_main .voice .voice_flex {
        margin-top: 35px;
        padding-bottom: 30px;
        display: block;
    }
    .toppage_main .voice .slick-prev {
        z-index: 10;
        left: -10px;
        top: 25%;
        transform: translate(50%, -50%);
    }
    .toppage_main .voice .slick-next {
        right: 10px;
        top: 25%;
        transform: translate(50%, -50%);
    }
    .toppage_main .voice .slick-next:before {
        position: absolute;
        content: '';
        background: no-repeat url(../img/scroll_r_icon.png) center center / contain;
        width: 36px;
        height: 36px;
        z-index: 10;
        transform: translate(-50%, -50%);
    }
    .toppage_main .voice .slick-prev:before {
        position: absolute;
        content: '';
        background: no-repeat url(../img/scroll_l_icon.png) center center / contain;
        width: 36px;
        height: 36px;
        z-index: 10;
        transform: translate(-50%, -50%);
    }
    .toppage_main .voice .voice_flex .voice_flex_item {
        margin: auto;
    }
    .toppage_main .voice .voice_flex .voice_flex_item:last-of-type {
        margin: auto;
    }
    .toppage_main .voice .voice_flex .voice_flex_item .img {
        max-width: 500px;
        margin: auto;
    }
    .toppage_main .voice .voice_flex .voice_flex_item .text {
        max-width: 500px;
        margin: auto;
        margin-top: 25px;
    }
    /* toppage contact */
    .toppage_main .contact {
        padding: 60px 0;
    }
    .toppage_main .contact .contact_content {
        margin-top: 18px;
    }
    .toppage_main .contact .contact_content .catch {
        width: 95%;
    }
    .toppage_main .contact .contact_content .catch p {
        font-size: 16px;
        padding-top: 25px;
        padding-left: 45px;
        margin: 0 auto 30px;
        text-align: left;
    }
    .toppage_main .contact .contact_content .catch p::before {
        left: 0;
        transform: translateY(-25%);
        width: 28px;
        height: 36px;
    }
    .toppage_main .contact .contact_content .contact_flex {
        display: block;
    }
    .toppage_main .contact .contact_content .contact_flex > div {
        width: 100%;
        max-width: 450px;
        margin: 0 auto 0;
        padding: 20px 10px 24px;
    }
    .toppage_main .contact .contact_content .contact_flex > div:last-of-type {
        margin-top: 10px;
        margin-right: auto;
    }
    .toppage_main .contact .contact_content .contact_flex > div > a {
        pointer-events: auto;
        width: 100%;
    }
    .toppage_main .contact .contact_content .contact_flex > div > p,
    .toppage_main .contact .contact_content .contact_flex > div > a > p {
        font-size: 18px;
    }
    .toppage_main .contact .contact_content .contact_flex > div.tel .num p {
        font-size: 27px;
        margin-top: 5px;
    }
    .toppage_main .contact .contact_content .contact_flex > div.tel .num p i {
        font-size: 23px;
        margin-right: 5px;
    }
    .toppage_main .contact .contact_content .contact_flex > div.tel .num > a > p.date {
        font-size: 14px;
        margin-top: 10px;
    }
    .toppage_main .contact .contact_content .contact_flex > div.mail .mail_address {
        margin-top: 10px;
    }
    .toppage_main .contact .contact_content .contact_flex > div.mail .mail_address > a {
        width: 100%;
        font-size: 14px;
        border-radius: 20px;
        max-width: 300px;
    }
    .toppage_main .contact .contact_content .contact_flex > div.mail .date {
        font-size: 14px;
        margin-top: 10px;
    }
    .toppage_main .contact .contact_content .sns_icon ul {
        margin-top: 30px;
        padding-bottom: 30px;
    }
    .toppage_main .contact .contact_content .sns_icon ul li {
        margin-right: 30px;
        max-width: 44px;
    }
    .toppage_main .contact .contact_content_flex {
        display: block;
    }
    .toppage_main .contact .contact_content_flex .contact_content {
        width: 100%;
        margin-right: 0;
        padding: 0 15px;
    }
    .toppage_main .contact .contact_content_flex .contact_content:last-of-type {
        margin-right: 0;
        margin-top: 15px;
    }
    .toppage_main .contact .contact_content_flex .contact_content .catch {
        margin-bottom: 10px;
    }
    .toppage_main .contact .contact_content_flex .contact_content .catch p {
        padding: 20px 0 15px 60px;
        font-size: 18px;
    }
    .toppage_main .contact .contact_content_flex .contact_content .credit,
    .toppage_main .contact .contact_content_flex .contact_content .letter_body {
        margin-bottom: 0 !important;
    }
    .toppage_main .contact .contact_content_flex .contact_content .letter_body {
        padding-bottom: 60px;
    }
}
/* **********common page*********** */
/* 
    共通
*/
.common_page_main {
    background-color: #009DFF;
}
.common_page_top {
    position: relative;
    width: 100%;
    background-color: #fff;
    margin-top: 70px;
}
.common_page_top > .img {
    max-width: 1980px;
    margin: auto;
    line-height: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.common_page_top > .img > img {
    min-width: 1100px;
}
.common_page_top .top_text {
    position: absolute;
    width: 90%;
    max-width: 1080px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
}
.common_page_top .top_text > p {
    font-size: 94px;
    font-weight: 600;
    line-height: 1.1em;
}
.common_page_top .top_text > p.sub {
    font-size: 46px;
}
.breadcrumb {
    height: 60px;
    line-height: 60px;
}
.breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.breadcrumb a,
.breadcrumb p {
    color: #fff;
    font-size: 12px;
    margin-right: 25px;
}
.breadcrumb a {
    text-decoration: underline;
    position: relative;
}
.breadcrumb a::after {
    position: absolute;
    content: "";
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: no-repeat url(../img/link_arr_w.png) center center / contain;
    width: 13px;
    height: 14px;
}
.common_title p,
.common_title a {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    padding-left: 10px;
    border-left: 8px solid #009DFF;
}
.none_top {
    margin-top: 70px;
}
/* page nation */
.page_nation {
    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;
    max-width: 126px;
    margin: 60px auto;
}
.page_nation > a {
    max-width: 10px;
    height: auto;
    line-height: 1em;
}
.page_nation > p,
.page_nation > p span {
    font-weight: 600;
}
/* ====flow==== */
.flow {
    background-color: #E8F5FD;
    padding: 85px 0;
}
.flow .section_title h2,
.flow .section_title p {
    color: #333 !important;
}
.flow .flow_content {
    background-color: #fff;
    margin-top: -47px;
    padding-top: 105px;
}
.flow .flow_content > div {
    position: relative;
    width: 81%;
    max-width: 878px;
    margin: auto;
}
.flow .flow_content > div::before {
    position: absolute;
    content: "";
    left: 52px;
    top: 0;
    background-color: #333;
    width: 2px;
    height: 90%;
    z-index: 0;
}
.flow .flow_content .flow_content_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 60px;
    text-align: left !important;
    position: relative;
    z-index: 5;
}
.flow .flow_content .flow_content_item:nth-of-type(2) {
    padding-bottom: 40px;
}
.flow .flow_content .flow_content_item:nth-of-type(3),
.flow .flow_content .flow_content_item:nth-of-type(4) {
    padding-bottom: 50px;
}
.flow .flow_content .flow_content_item .flow_img {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 21%;
    flex: 1 0 21%;
    padding-right: 10px;
}
.flow .flow_content .flow_content_item .flow_img img {
    max-width: 104px;
    height: auto;
    background-color: #fff;
    padding: 15px 0;
}
.flow .flow_content .flow_content_item .flow_r {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 79%;
    flex: 1 0 79%;
    padding-top: 31px;
}
.flow .flow_content .flow_content_item .flow_r .flow_name p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 17px;
}
.flow .flow_content .flow_content_item .flow_r .flow_text p {
    line-height: 2em;
}
.flow .flow_content .flow_content_item .flow_r .flow_text > p > a {
    display: inline-block !important;
    color: #009DFF;
}
.flow .flow_content .flow_content_item .flow_r .flow_text p .text_red {
    color: #CF0000;
}
.flow .flow_content .flow_content_item .flow_r .flow_text .flow_text_img > p {
    font-size: 13px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}
.flow .flow_content .flow_content_item .flow_r .flow_text .flow_text_img > div {
    width: 293px;
}
/* ====form==== */
.form_wrap {
    background-color: #fff;
}
.form_wrap form{
    width: 90%;
    max-width: 766px;
    margin: auto;
}
.form_wrap form .form_item {
    margin-bottom: 20px;
    position: relative;
}
.form_wrap form .form_item:last-of-type {
    margin-bottom: 50px;
}
.form_wrap form .form_item label,
.form_wrap form .form_item select,
.form_wrap form .form_item input,
.form_wrap form .form_item textarea {
    display: block;
    width: 100%;
    text-align: left;
}
.form_wrap form .form_item label::placeholder,
.form_wrap form .form_item select::placeholder,
.form_wrap form .form_item input::placeholder,
.form_wrap form .form_item textarea::placeholder {
    color: #ccc;
}
.form_wrap form .form_item select.input_err,
.form_wrap form .form_item input.input_err,
.form_wrap form .form_item textarea.input_err {
    background-color: #FFE5E5;
}
.form_wrap form .form_item select,
.form_wrap form .form_item input,
.form_wrap form .form_item textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #969696;
}
.form_wrap form .form_item select:focus,
.form_wrap form .form_item input:focus,
.form_wrap form .form_item textarea:focus {
    border: 1px solid #969696;
    outline: 0;
}
.form_wrap form .form_item > p {
    text-align: left;
}
.confirmation_request_check {
    width: 100%;
    display: block !important;
    text-align: left;
}
.confirmation_request_check p {
    font-weight: 600;
}
.form_wrap form .form_item label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
    width: 100%;
}
.form_wrap form .form_item label span {
    font-size: 11px;
    font-weight: 600;
    padding: 0 9px;
    margin-right: 5px;
    margin-top: -5px;
    vertical-align: text-bottom;
}
.form_wrap form .form_item label span.req {
    color: #CF0000;
    background-color: #FFE5E5;
}
.form_wrap form .form_item label span.any {
    color: #797979;
    background-color: #EAEAEA;
}
.form_wrap form .form_item label .err_text {
    padding-left: 20px;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #CF0000;
}
.form_item_check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
}
.check.err_text {
    color: #CF0000;
    font-size: 12px;
    text-align: left;
}
.form_item_check.input_err {
    padding: 15px 0 14px;
    background-color: #FFE5E5;
}
.form_item_select_wrap {
    position: relative;
    width: 196px;
}
.form_item_select_wrap:nth-of-type(n + 2) {
    margin-top: 15px;
}
.form_item_select_wrap::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: no-repeat url(../img/select_icon.png) center center / contain;
    pointer-events: none;
}
.form_wrap form .form_item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background: #fff;
    border-radius: 0;
    max-width: 196px;
    height: 40px;
}
.form_wrap form .form_item select:first-child {
    color: #333333;
}
.form_item_check input {
    margin-right: 10px;
}
.form_wrap form .form_item input#tel {
    max-width: 300px;
}
.form_item_check a {
    display: inline-block;
    color: #009DFF;
}
.form_item_check a:hover {
    border-bottom: 1px solid #009DFF;
}
.form_wrap form .main_btn {
    max-width: 320px;
    margin: 54px auto 0;
}
.form_wrap form .main_btn a,
.form_wrap form .main_btn button {
    background-color: #009DFF;
}
.form_wrap form .main_btn a:hover,
.form_wrap form .main_btn button:hover {
    background-color: #009DFF;
    color: #fff;
    opacity: 0.5 !important;
}
.form_wrap form .main_btn a:hover:after,
.form_wrap form .main_btn button::after {
    background: no-repeat url(../img/main_btn_arr.png) center center / contain !important;
}
.contact_main .form_wrap form .common_title {
    margin-bottom: 40px;
}
.contact_main .form_wrap .contact_comp_top {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 70px;
}
.contact_main .form_wrap .letter_body p {
    line-height: 2em;
}
.contact_main .form_wrap .to_top a {
    margin-top: 80px;
    color: #009DFF;
    font-size: 14px;
    font-weight: 600;
}

/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    .common_page_top {
        margin-top: 70px;
    }
    .common_page_top .top_text > p {
        font-size: 76px;
    }
    .common_page_top .top_text > p.sub {
        font-size: 36px;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .common_page_top {
        margin-top: 60px;
    }
    .common_page_top > .img > img {
        min-width: auto;
    }
    .common_page_top .top_text > p {
        font-size: 30px;
    }
    .common_page_top .top_text > p.sub {
        font-size: 14px;
    }
    .breadcrumb {
        height: 40px;
        line-height: 40px;
    }
    .breadcrumb a,
    .breadcrumb p {
        margin-right: 20px;
    }
    .breadcrumb a::after {
        right: -14px;
        width: 13px;
        height: 14px;
    }
    main:not(.only_pc_main).none_top {
        margin-top: 60px;
    }
    /* ====flow==== */ 
    .flow {
        padding: 60px 0;
    }
    .flow .flow_content {
        background-color: #fff;
        margin-top: -53px;
        padding-top: 75px;
    }
    .flow .flow_content > div::before {
        height: 0;
    }
    .flow .flow_content .flow_content_item {
        display: block;
        text-align: center !important;
    }
    .flow .flow_content .flow_content_item:nth-of-type(2) {
        padding-bottom: 60px;
    }
    .flow .flow_content .flow_content_item:nth-of-type(3) {
        padding-bottom: 60px;
    }
    .flow .flow_content .flow_content_item:nth-of-type(4) {
        padding-bottom: 40px;
    }
    .flow .flow_content .flow_content_item .flow_img {
        padding: 0;
    }
    .flow .flow_content .flow_content_item .flow_img img {
        padding: 0;
    }
    .flow .flow_content .flow_content_item .flow_r {
        padding-top: 25px;
    }
    .flow .flow_content .flow_content_item .flow_r .flow_name p {
        font-size: 20px;
        line-height: 1em;
        margin-bottom: 10px;
        text-align: left;
    }
    .flow .flow_content .flow_content_item .flow_r .flow_text p {
        text-align: left;
    }
    .flow .flow_content .flow_content_item .flow_r .flow_text .flow_text_img > p {
        margin-bottom: 0;
    }
    /* ====form==== */ 
    .form_wrap form{
        width: 90%;
    }
    .form_wrap form .form_item {
        margin-bottom: 20px;
    }
    .form_wrap form .form_item:last-of-type {
        margin-bottom: 30px !important;
    }
    .form_wrap form .form_item label .err_text {
        text-align: left;
        width: 100%;
        padding-left: 0;
    }
    .form_wrap form .form_item input#tel {
        max-width: 100%;
    }
    .form_wrap form .main_btn {
        margin: 40px auto 0;
    }
    .contact_main .form_wrap .contact_comp_top {
        font-size: 20px;
        width: 90%;
        margin: 40px auto;
        text-align: center;
    }
    .contact_main .form_wrap .letter_body {
        width: 90%;
        margin: auto;
    }
    .contact_main .form_wrap .letter_body p {
        line-height: 2em;
        text-align: left;
    }
    .contact_main .form_wrap .to_top a {
        margin-top: 50px;
    }
}
/* 
    当サイトについて
*/
.about_main .about {
    padding-top: 25px;
    padding-bottom: 80px;
}
.about_main .about .about_title {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 45px;
}
.about_main .about .catch {
    color: #fff;
    line-height: 2em;
    margin-bottom: 55px;
}
.about_main .about .about_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 75px;
}
.about_main .about .about_flex .about_flex_item {
    width: calc(33.333% - 17px * 2 / 3);
    margin-right: 17px;
    background-color: #fff;
    padding: 30px 37px 45px;
    border-radius: 6px;
}
.about_main .about .about_flex .about_flex_item:last-of-type {
    margin-right: 0;
}
.about_main .about .about_flex .about_flex_item .img {
    width: 90%;
    max-width: 270px;
    height: auto;
    margin: auto;
    margin-bottom: 35px;
}
.about_main .about .about_flex .about_flex_item:first-of-type .img {
    max-width: 275px;
    margin-top: -20px;
}
.about_main .about .about_flex .about_flex_item:nth-of-type(2) .img {
    max-width: 275px;
}
.about_main .about .about_flex .about_flex_item:nth-of-type(3) .img {
    max-width: 279px;
}
.about_main .about .about_flex .about_flex_item .img img {
    object-fit: cover;
}
.about_main .about .about_flex .about_flex_item .title p {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 18px;
}
.about_main .about .about_flex .about_flex_item .text p {
    line-height: 2em;
    text-align: left;
}
.about_main .about .main_btn a {
    height: 70px;
    line-height: 70px;
    border-radius: 35px;
    max-width: 640px;
    font-size: 20px;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .about_main .about {
        padding-top: 0;
        padding-bottom: 60px;
    }
    .about_main .about .about_title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .about_main .about .catch {
        margin-bottom: 30px;
        text-align: left;
    }
    .about_main .about .about_flex {
        display: block;
        margin-bottom: 40px;
    }
    .about_main .about .about_flex .about_flex_item {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
        padding: 40px 15px 37px;
    }
    .about_main .about .about_flex .about_flex_item .img {
        max-width: 180px;
        margin-bottom: 15px;
    }
    .about_main .about .about_flex .about_flex_item:first-of-type .img {
        max-width: 180px;
        margin-top: 0;
    }
    .about_main .about .about_flex .about_flex_item:nth-of-type(2) .img {
        max-width: 180px;
    }
    .about_main .about .about_flex .about_flex_item:nth-of-type(3) .img {
        max-width: 180px;
    }
    .about_main .about .main_btn a {
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
        max-width: 300px;
        font-size: 14px;
    }
}

/* 
    デザイン制作
*/
.design_main .design_top .design_top_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 35px;
}
.design_main .design_top .design_top_flex .img {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 55%;
    flex: 1 0 55%;
}
.design_main .design_top .design_top_flex .text {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
}
.design_main .design_top .design_top_flex .text p {
    color: #fff;
    padding-left: 40px;
    text-align: left;
    line-height: 1.8em;
    margin-top: -5px;
}
.design_main .reference_price {
    margin-top: -60px;
    padding-top: 120px;
}
.design_main .reference_price .inner {
    background-color: #fff;
    padding: 65px 5% 70px 4%;
}
.design_main .reference_price .reference_price_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
}
.design_main .reference_price .reference_price_flex .reference_price_item {
    width: 50%;
    padding: 20px 23px 20px 13px;
    position: relative;
}
.design_main .reference_price .reference_price_flex .reference_price_item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 1px;
    background-color: #707070;
}
.design_main .reference_price .reference_price_flex .reference_price_item:nth-of-type(odd)::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 95%;
    background-color: #707070;
}
.design_main .reference_price .reference_price_flex .reference_price_item.pc {
    padding: 0;
}
.reference_price_item .reference_price_item1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.reference_price_item .reference_price_item1 .item_text {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    text-align: left !important;
}
.reference_price_item .reference_price_item1 .item_text .name p {
    font-size: 24px;
    font-weight: 600;
    padding-left: 5px;
}
.reference_price_item .reference_price_item1 .item_text .example > p {
    margin-top: 25px;
    display: inline-block;
    background-color: #989898;
    color: #fff;
    font-size: 13px;
    border-radius: 12px;
    width: auto;
    text-align: center;
    padding: 0 7px;
    height: 22px;
    line-height: 24px;
}
.reference_price_item .reference_price_item1 .item_text .example > ul {
    margin-top: 10px;
}
.reference_price_item .reference_price_item1 .item_text .example > ul p {
    font-size: 14px;
}
.reference_price_item .reference_price_item1 .item_text .example > ul p span {
    display: inline-block;
    margin-right: 5px;
}
.reference_price_item .reference_price_item1 .item_img {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60%;
    flex: 1 0 60%;
}
.reference_price_item .reference_price_item2 {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #009DFF !important;
}
.reference_price_item .reference_price_item2 .price_label p {
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #009DFF;
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    margin-right: 20px;
    min-width: 87px !important;
}
.reference_price_item .reference_price_item2 .price p {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -.05em;
}
.reference_price_item .reference_price_item2 .price p span {
    font-size: 21px;
    vertical-align: middle;
    margin-right: 10px;
}
.past_work {
    padding-top: 80px;
    padding-bottom: 105px;
}
.past_work .past_work_flex {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.past_work .past_work_flex .past_work_flex_item {
    width: calc(33.333% - 15px * 2 / 3);
    margin-right: 15px;
}
.past_work .past_work_flex .past_work_flex_item:last-of-type {
    margin-right: 0;
}
.request {
    padding-top: 60px;
    padding-bottom: 80px;
}
.request .form_wrap {
    margin-top: 25px;
    padding: 55px 0 60px;
}    
.request .form_wrap > p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 80px;
}
/* ===== 1050px以下 ===== */
@media(max-width: 1050px) {
    .design_main .design_top .design_top_flex {
        display: block;
        padding-top: 35px;
    }  
    .design_main .design_top .design_top_flex .img {
        max-width: 600px;
        margin: auto;
    }
    .design_main .design_top .design_top_flex .text p {
        margin-top: 40px;
        padding-left: 0;
        font-size: 16px;
    } 
    .design_main .reference_price {
        margin-top: 30px;
    }
    .design_main .reference_price .inner {
        padding: 16px 13px 20px 17px;
    }
    .reference_price_item .reference_price_item1 {
        display: block;
    }
    .reference_price_item .reference_price_item1 .item_text .pc {
        display: none;
    }
    .reference_price_item .reference_price_item1 .item_text .sp {
        display: block;
    }
    .reference_price_item .reference_price_item1 .item_text .name p {
        font-size: 20px;
        padding-left: 0px;
        padding-bottom: 20px;
    }
    .reference_price_item .reference_price_item1 .item_text .example > p {
        margin-top: 20px;
    }
    .reference_price_item .reference_price_item1 .item_img {
        width: 100%;
        padding-left: 26px;
    }
    .reference_price_item .reference_price_item2 {
        margin-top: 15px;
    }
    .reference_price_item .reference_price_item2 .price_label p {
        font-size: 10px;
        height: 18px;
        line-height: 18px;
        margin-right: 15px;
        min-width: 70px !important;
    }
    .reference_price_item .reference_price_item2 .price p {
        font-size: 27px;
    }
    .reference_price_item .reference_price_item2 .price p span {
        font-size: 16px;
    }
    .past_work .section_title h2 {
        font-size: 80px;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .design_main .design_top .design_top_flex {
        padding-top: 0;
    }
    .design_main .design_top .design_top_flex .text p {
        padding-left: 0;
        margin-top: 24px;
    }
    .design_main .reference_price {
        margin-top: -30px;
        padding-top: 60px;
    }
    .design_main .reference_price .reference_price_flex {
        display: block;
        margin-top: 15px;
    }
    .design_main .reference_price .reference_price_flex .reference_price_item {
        width: 100%;
        padding: 15px 0px 25px 0;
    }
    .design_main .reference_price .reference_price_flex .reference_price_item::before {
        width: 100%;
    }
    .design_main .reference_price .reference_price_flex .reference_price_item:nth-of-type(odd)::after {
        height: 0;
    }
    .reference_price_item .reference_price_item1 .item_text .name p {
        font-size: 20px;
        padding-left: 0;
    }
    .reference_price_item .reference_price_item1 .item_img {
        padding: 0;
        width: 90%;
        margin: auto;
    }
    .reference_price_item .reference_price_item2 .price_label p {
        padding: 0 9px;
    }
    .past_work {
        padding-top: 60px;
        padding-bottom: 58px;
    }
    .past_work .section_title h2 {
        font-size: 42px;
        margin-right: 0;
    }
    .past_work .past_work_flex {
        margin-top: 30px;
        display: block;
    }
    .past_work .past_work_flex .past_work_flex_item {
        width: 100%;
    }
    .past_work .past_work_flex .past_work_flex_item:nth-of-type(n + 2) {
        margin-top: 20px;
    }
    .request {
        padding-top: 55px;
        padding-bottom: 60px;
    }
    .request .form_wrap {
        margin-top: 14px;
        padding: 25px 0 40px;
    }    
    .request .form_wrap > p {
        font-size: 18px;
        margin-bottom: 40px;
        padding: 0 20px 0;
    }
}

/* 
    お問い合わせ
*/
.contact_main {
    padding-bottom: 80px;
}
.contact_main .form_wrap {
    margin-top: 20px;
    padding: 55px 0 60px;
}
.contact_main .form_wrap .contact_tel {
    width: 90%;
    max-width: 766px;
    margin: 75px auto 80px;
}
.contact_main .form_wrap .contact_tel .common_title {
    margin-bottom: 25px;
}
.contact_main .form_wrap .contact_tel .contact_tel_content {
    border: 2px solid #009DFF;
    padding: 40px 0 38px;
}
.contact_main .form_wrap .contact_tel .contact_tel_content .num {
    width: 90%;
    max-width: 580px;
    margin: auto;
    border-bottom: 1px solid #009DFF;
    padding-bottom: 25px;
}
.contact_main .form_wrap .contact_tel .contact_tel_content .num p {
    font-size: 47px;
    font-weight: 600;
    color: #009DFF;
    line-height: 1em;
    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;
}
.contact_main .form_wrap .contact_tel .contact_tel_content .num p i {
    font-size: 31px;
    vertical-align: middle;
    padding-right: 5px;
}
.contact_main .form_wrap .contact_tel .contact_tel_content .text p {
    font-weight: 600;
    padding-top: 25px;
}
.contact_main .form_wrap form .common_title {
    margin-bottom: 30px;
}
.contact_main .form_wrap form .common_title.confirmation_title p {
    border-left: none !important;
    padding-left: 0;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .contact_main {
        padding-bottom: 60px;
    }   
    .contact_main .form_wrap {
        margin-top: 10px;
        padding: 20px 0 40px;
    }
    .contact_main .form_wrap > p {
        font-size: 15px;
        width: 90%;
        margin: auto;
        text-align: left;
    }
    .contact_main .form_wrap .contact_tel {
        margin: 40px auto 60px;
    }
    .contact_main .form_wrap .contact_tel .common_title {
        margin-bottom: 20px;
    }
    .contact_main .form_wrap .contact_tel .contact_tel_content {
        padding: 25px 0 20px;
    }
    .contact_main .form_wrap .contact_tel .contact_tel_content .num {
        padding-bottom: 15px;
    }
    .contact_main .form_wrap .contact_tel .contact_tel_content .num p {
        font-size: 25px;
    }
    .contact_main .form_wrap .contact_tel .contact_tel_content .num p i {
        font-size: 24px;
        transform: rotate(10deg);
    }
    .contact_main .form_wrap .contact_tel .contact_tel_content .text p {
        padding-top: 15px;
        font-size: 14px;
        width: 95%;
        margin: auto;
    }
}
/* 
    ご利用ガイド
*/
.guide {
    padding-bottom: 75px;
}
.guide .guide_top_btn {
    position: relative;
    z-index: 1;
}
.guide .guide_top_btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.guide .guide_top_btn li {
    width: calc(25% - 13px * 3 / 4);
    margin-right: 13px;
}
.guide .guide_top_btn li:last-of-type {
    margin-right: 0;
}
.guide .guide_top_btn li a {
    color: #fff;
    font-size: 20px;
    text-align: center;
    border: 1px solid #fff;
    padding: 26px 0 23px;
}
.guide .orde {
    margin-top: -60px;
    padding-top: 120px;
    margin-bottom: 40px;
}
.guide .orde > div {
    background-color: #fff;
    padding: 45px 50px 50px;
}
.guide .orde > div > .text {
    margin-top: 35px;
    margin-bottom: 75px;
}
.guide .orde > div > .text > p {
    line-height: 2em;
    text-align: left;
}
.guide .orde .orde_step > p {
    color: #009DFF;
    font-weight: 600;
    font-size: 24px;
}
.guide .orde .orde_step .orde_step_item_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 55px auto 60px;
    max-width: 820px;
}
.guide .orde .orde_step .orde_step_item_wrap .orde_step_item {
    width: calc(33.333% - 40px * 2 / 3);
    margin-right: 40px;
}
.guide .orde .orde_step .orde_step_item_wrap .orde_step_item:last-of-type {
    margin-right: 0;
}
.guide .orde .orde_step .orde_step_item_wrap .orde_step_item > p {
    font-weight: 600;
    margin-top: 17px;
}
.guide .orde .main_btn a:hover {
    background-color: #009DFF;
    color: #fff;
    opacity: 0.5 !important;
}
.guide .orde .main_btn a:hover:after {
    background: no-repeat url(../img/main_btn_arr.png) center center / contain !important;
}
.guide .orde .top_flow_btn a {
    margin-top: 55px;
    color: #009DFF;
    font-size: 14px;
    font-weight: 600;
}
.guide .data {
    margin-bottom: 40px;
    margin-top: -40px;
    padding-top: 80px;
}
.guide .data > div {
    background-color: #fff;
    padding: 45px 50px 50px;
}
.guide .data .data_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;   
}
.guide .data .data_btn a {
    font-size: 18px;
    color: #009DFF;
    font-weight: 600;
    width: 300px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #009DFF;
}
.guide .data .data_btn a:first-of-type {
    margin-right: 20px;
}
.guide .data .data_btn a:hover {
    color: #fff;
    background-color: #009DFF;
    opacity: 1 !important;
}
.guide .data #illustrator {
    margin-top: -60px;
    padding-top: 140px;
}
.guide .data #microsoft {
    margin-top: -70px;
    padding-top: 70px;
}
.guide .data > div > div > .title > p {
    color: #009DFF;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 40px;
}
.guide .data li {
    margin-bottom: 70px;
}
.guide .data li .title {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
}
.guide .data li .text {
    text-align: left;
    line-height: 2em;
}
.guide .data li .img {
    margin-top: 30px;
    text-align: left;
}
.guide .data li .img img {
    width: 482px;
    max-width: 100%;
}
.guide .data li:nth-of-type(n + 4) .img img {
    width: 592px;
}
.guide #draft {
    margin-top: -40px;
    padding-top: 80px;
    background-color: transparent;
}
.guide #draft > div {
    background-color: #fff;
    padding: 45px 0px 50px;
}
.guide #draft .common_title {
    padding-left: 50px;
    z-index: 5;
    position: relative;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .guide {
        padding-bottom: 60px;
    }
    .guide .guide_top_btn ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .guide .guide_top_btn li {
        width: calc(50% - 10px / 2);
        margin-right: 10px;
    }
    .guide .guide_top_btn li:nth-of-type(2n) {
        margin-right: 0;
    }
    .guide .guide_top_btn li:nth-of-type(n + 3) {
        margin-top: 5px;
    }
    .guide .guide_top_btn li a {
        font-size: 16px;
        padding: 15px 0 13px;
        font-weight: 600;
    }
    .guide .orde {
        margin-top: -20px;
        padding-top: 40px;
        margin-bottom: 0;
    }
    .guide .orde > div {
        margin-bottom: 15px;
        padding: 15px 15px 32px;
    }
    .guide .orde > div > .text {
        margin-top: 11px;
        margin-bottom: 55px;
    }
    .guide .orde .orde_step > p {
        font-size: 18px;
    }
    .guide .orde .orde_step .orde_step_item_wrap {
        display: block;
        margin: 40px auto;
        width: 90%;
    }
    .guide .orde .orde_step .orde_step_item_wrap .orde_step_item {
        width: 100%;
        max-width: 250px;
        margin-right: auto;
        margin: auto;
    }
    .guide .orde .orde_step .orde_step_item_wrap .orde_step_item:nth-of-type(n + 2) {
        margin-top: 40px;
    }
    .guide .orde .orde_step .orde_step_item_wrap .orde_step_item:last-of-type {
        margin-right: auto;
    }
    .guide .data {
        margin-top: -20px;
        padding-top: 40px;
    }
    .guide .data > div {
        padding: 15px 15px 32px;
        margin-bottom: 20px;
    }
    .guide .data .data_btn {
        display: block;
        margin-top: 20px;
    }
    .guide .data .data_btn a {
        font-size: 16px;
        width: 100%;
        max-width: 320px;
        height: 50px;
        line-height: 50px;
        margin: auto;
    }
    .guide .data .data_btn a:first-of-type {
        margin-right: auto;
        margin-bottom: 10px;
    }
    .guide .data #illustrator {
        margin-top: -50px;
        padding-top: 100px;
    }
    .guide .data > div > div > .title > p {
        margin-bottom: 35px;
    }
    .guide .data li {
        margin-bottom: 35px;
    }
    .guide .data li .title {
        margin-bottom: 15px;
    }
    .guide #draft {
        margin-top: -20px;
        padding-top: 40px;
    }
    .guide #draft > div {
        padding: 15px 0 32px;
    }
    .guide #draft .common_title {
        padding-left: 15px;
    }   
}
/* 
    テンプレート
*/
.template_main {
    padding-bottom: 80px;
}
.template_main .template {
    background-color: #fff;
    max-width: 1080px;
    margin: auto;
}
.template_main .template .inner {
    padding: 50px 0px 60px;
    text-align: left;
}
.template_main .template .inner h2 {
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 40px;
}
.template_main .template .template_items {
    margin-top: 40px;
}
.template_main .template .template_item:nth-of-type(n + 2) {
    margin-top: 30px;
}
.template_main .template .template_item .title p {
    font-weight: 600;
    color: #009DFF;
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #009DFF;
}
.template_main .template .template_item .template_item_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
}
.template_main .template .template_item .template_item_content:nth-of-type(n + 2)::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 585px;
    height: 1px;
    background-color: #969696;
}
.template_main .template .template_item .template_item_content > p {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 385px;
    flex: 1 0 385px;
    padding-left: 10px;
}
.template_main .template .template_item .template_item_content .template_item_content_btn {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 585px;
    flex: 1 0 585px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.template_main .template .template_item .template_item_content a {
    width: calc(33.333% - 20px * 2 / 3);
    margin-right: 20px;
    height: 40px;
}
.template_main .template .template_item .template_item_content .illustrator {
    background: no-repeat url(../img/illustrator_btn.png) center center / cover;
}
.template_main .template .template_item .template_item_content .word {
    background: no-repeat url(../img/word_btn.png) center center / cover;
}
.template_main .template .template_item .template_item_content .powerpoint {
    background: no-repeat url(../img/powepoint_btn.png) center center / cover;
}
/* 
    商品のお届けについて
*/
.delivery_main .delivery {
    padding-bottom: 80px;
}
.delivery_main .delivery .inner {
    background-color: #fff;
    padding: 50px 5% 63px;
}
.delivery_main .delivery_main section:nth-of-type(n + 2) {
    padding-top: 200px;
    margin-top: -130px;
}
.delivery_main .delivery_main section > p {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 2em;
}
.delivery_main .delivery_main .text_item:nth-of-type(n + 2) {
    margin-top: 40px;
}
.delivery_main .delivery_main .text_item .title p {
    color: #009DFF;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}
.delivery_main .delivery_main .text_item .letter_body {
    margin-top: 10px;
    text-align: left;
}
.delivery_main .delivery_main .text_item .letter_body p {
    text-align: left;
    line-height: 2em;
}
.delivery_main .delivery_main .text_item > div:not([class]) p {
    text-align: left;
    margin-bottom: 20px;
}
.delivery_main .delivery_main .text_item .letter_body .list {
    background-color: #F4F4F4;
    display: inline-block;
    padding: 20px 30px 18px 10px;
}
.delivery_main .delivery_main .text_item .letter_body .list p {
    font-size: 15px;
    padding-left: 1em;
    text-indent: -1.0em;
}
.delivery_main .delivery_main .text_item .letter_body .credit {
    background-color: #F4F4F4;
    margin-top: 20px;
    display: inline-block;
    padding: 18px 140px 10px 20px;
}
.delivery_main .delivery_main .text_item .letter_body .credit > p {
    font-size: 14px;
    font-weight: 600;
}
.delivery_main .delivery_main .text_item .letter_body .credit .img {
    max-width: 314px;
    margin-top: 10px;
}
.delivery_main .delivery_main > section:first-of-type {
    margin-top: -180px;
    padding-top: 180px;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .delivery_main .delivery {
        padding-bottom: 60px;
    }
    .delivery_main .delivery .inner {
        background-color: #fff;
        padding: 15px 5% 35px;
    }
    .delivery_main .delivery_main section:nth-of-type(n + 2) {
        padding-top: 170px;
        margin-top: -120px;
    }
    .delivery_main .delivery_main .text_item .letter_body .credit {
        background-color: #F4F4F4;
        margin-top: 20px;
        display: inline-block;
        padding: 18px 20px 10px;
    }
}
/* 
    商品一覧
*/
.itemlist_main .item_list .item_list_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.itemlist_main .item_list .item_list_flex .item_list_flex_item {
    width: calc(33.333% - 15px * 2 / 3);
    margin-right: 15px;
    position: relative;
    line-height: 0em;
}
.itemlist_main .item_list .item_list_flex .item_list_flex_item:nth-of-type(3n) {
    margin-right: 0;
}
.itemlist_main .item_list .item_list_flex .item_list_flex_item:nth-of-type(n + 4) {
    margin-top: 15px;
}
.itemlist_main .item_list .item_list_flex .item_list_flex_item .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .7);
    line-height: 1em;
}
.itemlist_main .item_list .item_list_flex .item_list_flex_item .text p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    padding: 25px 15px 20px;
}
.itemlist_main .paper {
    margin-top: -60px;
    padding-top: 120px;
}
.itemlist_main .paper .inner {
    background-color: #fff;
    padding: 40px 35px 50px;
}
.itemlist_main .paper .inner .common_title p {
    font-size: 24px;
}
.itemlist_main .paper .paper_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}
.itemlist_main .paper .paper_flex .paper_flex_item {
    width: calc(25% - 30px * 3 / 4);
    margin-right: 30px;
    text-align: left;
}
.itemlist_main .paper .paper_flex .paper_flex_item:nth-of-type(4n) {
    margin-right: 0;
}
.itemlist_main .paper .paper_flex .paper_flex_item:nth-of-type(n + 5) {
    margin-top: 20px;
}
.itemlist_main .paper .paper_flex .paper_flex_item .text .name p {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 0;
}
.itemlist_main .paper .paper_flex .paper_flex_item .text .letter_body p {
    font-size: 12px;
}
.itemlist_main .option_list {
    margin-top: -75px;
    padding-top: 150px;
    padding-bottom: 80px;
}
.itemlist_main .option_list .inner {
    background-color: #fff;
    padding: 20px 50px 50px;
}
.itemlist_main .option_list .inner .option_list_flex_wrap {
    padding-top: 35px;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex_name {
    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;
    padding-bottom: 10px;
    border-bottom: 1px solid #707070;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex_name p:first-of-type {
    font-weight: 600;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex_name p:last-of-type {
    font-size: 15px;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    max-width: 826px;
    margin: 40px auto 35px;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex:last-of-type {
    margin-bottom: 0;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .option_list_flex_item {
    width: calc(33.333% - 11% * 2 / 3);
    margin-right: 90px;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .option_list_flex_item:last-of-type {
    margin-right: 0;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .name p {
    font-weight: 600;
    font-size: 15px;
}
.itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .letter_body p {
    font-size: 12px;
    text-align: left;
    margin-top: 25px;
}
/* ===== 850px以下 ===== */
@media(max-width: 850px) {
    .itemlist_main .item_list .item_list_flex .item_list_flex_item .text p {
        font-size: 16px;
    }   
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .option_list_flex_item {
        width: calc(33.333% - 6% * 2 / 3);
        margin-right: 6%;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .item_list_top_btn_sp {
        width: 90%;
        max-width: 400px;
        margin: 20px auto;
    }
    .item_list_top_btn_sp > a {
        border: 1px solid #fff;
        color: #fff;
        font-weight: 600;
        height: 50px;
        line-height: 50px;
    }
    .item_list_top_btn_sp > a:first-of-type {
        margin-bottom: 10px;
    }
    .itemlist_main .item_list .item_list_flex {
        display: block;
    }

    /*  */
    .itemlist_main .item_list .item_list_flex .item_list_flex_item {
        width: 100%;
        max-width: 400px;
        margin: auto;
    }
    .itemlist_main .item_list .item_list_flex .item_list_flex_item:nth-of-type(n + 2) {
        margin-top: 10px;
    }
    .itemlist_main .item_list .item_list_flex .item_list_flex_item:nth-of-type(3n) {
        margin-right: auto;
    }
    .itemlist_main .item_list .item_list_flex .item_list_flex_item .text p {
        font-size: 16px;
        padding: 25px 16px;
    }
    .itemlist_main .paper {
        margin-top: -30px;
        padding-top: 60px;
    }
    .itemlist_main .paper .inner {
        padding: 25px 18px 40px;
        max-width: 400px;
        margin: auto;
    }
    .itemlist_main .paper .inner .common_title p {
        font-size: 16px;
    }
    .itemlist_main .paper .paper_flex {
        display: block;
        margin-top: 25px;
    }
    .itemlist_main .paper .paper_flex .paper_flex_item {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .itemlist_main .paper .paper_flex .paper_flex_item:nth-of-type(n + 2) {
        margin-top: 20px;
    }
    .itemlist_main .paper .paper_flex .paper_flex_item > div {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
    }
    .itemlist_main .paper .paper_flex .paper_flex_item .img {
        padding-right: 10px;
    }
    .itemlist_main .paper .paper_flex .paper_flex_item .text .name p {
        padding: 0 0 5px;
    }
    .itemlist_main .option_list {
        margin-top: -30px;
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .itemlist_main .option_list .inner {
        padding: 10px 15px 30px;
        max-width: 400px;
        margin: auto;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap {
        padding-top: 20px;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex_name {
        display: block;
        text-align: left;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex_name p:last-of-type {
        font-size: 14px;
        margin-top: 13px;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex {
        display: block;
        width: 100%;
        margin: 20px auto 30px;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .option_list_flex_item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; 
        width: 100%;
        margin: auto;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .option_list_flex_item:nth-of-type(n + 2) {
        margin-top: 30px;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .option_list_flex_item > div {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        text-align: left;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .img {
        padding-right: 10px;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .name p {
        font-size: 14px;
    }
    .itemlist_main .option_list .inner .option_list_flex_wrap .option_list_flex .letter_body p {
        margin-top: 5px;
    }
}
/* 
    商品一覧 詳細
*/
.itemlist_order {
    padding-bottom: 70px;
}
.order_form .inner {
    background-color: #fff;
    padding: 45px 0 50px;
}
.order_form .inner .order_form_top,
.order_form .inner .order_form_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90%;
    max-width: 980px;
    margin: auto;
}
.order_form .inner .order_form_top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.order_form .inner .order_form_top h2 {
    font-size: 30px;
    font-weight: 600;
}
.order_form .template_btn {
    color: #009DFF;
    border: 1px solid #009DFF;
    font-weight: 600;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 240px;
}
.order_form .inner .order_form_wrap {
    margin-top: 25px;
}
.order_form .inner .order_form_wrap .order_form_input {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 63%;
    flex: 1 0 63%;
    padding-right: 30px;
}
.order_form .inner .order_form_wrap .order_form_input .form_item:nth-of-type(n + 2) {
    margin-top: 25px;
}
.order_form .inner .order_form_wrap .order_form_input label {
    font-size: 20px;
    font-weight: 600;
    padding-left: 15px;
    line-height: 1em;
    margin-bottom: 15px;
    position: relative;
}
.order_form .inner .order_form_wrap .order_form_input label::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    max-height: 20px;
    width: 8px;
    background-color: #009DFF;
}
.order_form .inner .order_form_wrap .order_form_input label span {
    margin-left: 20px;
}
.order_form .inner .order_form_wrap .order_form_input label span.req {
    margin-right: 20px;
}
.order_form .inner .order_form_wrap .order_form_input label span.err_text {
    padding-left: 0;
    margin-left: 0;
}
.order_form .inner .order_form_wrap .order_form_input .form_item_select_wrap {
    width: 100% !important;
}
.order_form .inner .order_form_wrap .order_form_input .form_item_select_wrap select {
    max-width: 100%;
}
.order_form .inner .order_form_wrap .order_form_output {
    -webkit-box-flex: 1;
    -ms-flex: 1 37%;
    flex: 1 0 37%;
    margin-bottom: 50px;
}
.order_form .inner .order_form_wrap .order_form_output .order_form_output_content {
    background-color: #F4F4F4;
    padding: 20px 20px 12px;
    text-align: left;
}
.order_form .inner .order_form_wrap .order_form_output .order_form_output_content .title p {
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid #707070;
}
.order_form .inner .order_form_wrap .order_form_output .order_form_output_content .order_form_output_item {
    margin-top: 15px;
}
.order_form .inner .order_form_wrap .order_form_output .order_form_output_content .order_form_output_item .name p {
    font-weight: 600;
}
.order_form .inner .order_form_wrap .order_form_output .order_form_output_content .order_form_output_item p {
    font-size: 15px;
}
.order_form .inner .order_form_wrap .order_form_output .total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #707070;
    margin-top: 32px;
}
.order_form .inner .order_form_wrap .order_form_output .total p:first-of-type {
    font-size: 15px;
    font-weight: 600;
}
.order_form .inner .order_form_wrap .order_form_output .total p:last-of-type {
    font-weight: 600;
    font-size: 26px;
}
.order_form .inner .order_form_wrap .order_form_output .total p:last-of-type span {
    font-size: 15px;
    font-weight: 600;
}
.pages_table table {
    width: 100%;
    border-collapse: collapse;
}
.pages_table .thead,
.pages_table .tbody {
}
.pages_table thead td,
.pages_table tbody th,
.pages_table tbody td {
    border: 1px solid #707070;
}
.pages_table thead td {
    padding: 8px 0 11px;
}
.pages_table thead td:first-of-type {
    border: none;
    background: none;
}
.pages_table table tbody tr th p,
.pages_table table tbody tr td a,
.pages_table table tbody tr td p {
    text-align: right;
    padding: 20px 12px 15px;
}
.pages_table table thead td,
.pages_table table tbody th > p {
    font-weight: 600;
    font-size: 14px;
    background-color: #F4F4F4;
}
.pages_table thead td p {
    font-weight: 600;
}
.pages_table table thead td > .img {
    width: 57px;
    margin: auto;
    margin-top: 10px;
}
.pages_table table tbody tr td a {
    color: #009DFF;
    font-weight: 600;
}
.pages_table table tbody tr td a:hover {
    background-color: #CEECFF;
    opacity: 1 !important;
}
.pages_table .table_text {
    text-align: left;
    padding-top: 10px;
    margin-bottom: 150px;
}
.pages_table .table_text p {
    font-size: 14px;
}
.order_form_wrap .num_order .num_order_select_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.order_form_wrap .num_order .num_order_select_wrap > p,
.order_form_wrap .num_order .num_order_select_wrap > .form_item_select_wrap {
    margin-right: 15px;
}
.order_form_wrap .num_order .num_order_select_wrap .form_item_select_wrap {
    max-width: 90px;
    width: 90px;
}
.order_form_wrap .num_order .num_order_select_wrap .form_item_select_wrap select {
    width: 90px;
    max-width: 90px;
}
.plus_option_btn {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    font-weight: 600;
    color: #009DFF;
    border-bottom: 1px solid #009DFF;
}
.order_form_confirmation .form_wrap form .form_item:last-of-type {
    margin-bottom: 80px !important;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .itemlist_order.itemlist_order_only {
        padding-bottom: 50px;
    }
    .itemlist_order_only .order_form .inner {
        padding: 20px 0 35px;
    }
    .itemlist_order_only .order_form .inner .order_form_top,
    .itemlist_order_only .order_form .inner .order_form_wrap {
        display: block;
        width: 100%;
    }
    .itemlist_order_only .order_form .inner .order_form_top {
        text-align: left;
        width: 90%;
        margin: auto;
    }
    .itemlist_order_only .order_form .inner .order_form_top h2 {
        font-size: 20px;
    }
    .itemlist_order_only .order_form .template_btn {
        margin: 20px auto 40px;
    }
    .itemlist_order_only .order_form .inner .order_form_wrap {
        margin-top: 40px;
    }
    .itemlist_order_only .order_form .inner .order_form_wrap .order_form_input {
        padding-right: 0;
    }
    .itemlist_order_only .order_form .inner .order_form_wrap .order_form_input .form_item:nth-of-type(n + 2) {
        margin-top: 20px;
    }
    .itemlist_order_only .order_form .inner .order_form_wrap .order_form_input label {
        font-size: 16px;
        margin-bottom: 10px;
        position: relative;
    }
    .itemlist_order_only .order_form .inner .order_form_wrap .order_form_input label .err_text {
    }
    .itemlist_order_only .order_form .inner .order_form_wrap .order_form_input label span {
        margin-left: 10px;
    }
    .itemlist_order_only .order_form .inner .order_form_wrap .order_form_output {
        width: 90%;
        margin: auto;
    }
    .itemlist_order_only .order_form .inner .order_form_wrap .order_form_output .order_form_output_content {
        margin-bottom: 36px;
    }
    .itemlist_order_only .itemlist_order_pages {
        min-width: 1280px;
        overflow-x: scroll;
    }
    .itemlist_order_only .itemlist_order_pages .pages_table {
        padding-right: 20px !important;
    }
    .itemlist_order_only .itemlist_order_pages .order_form .inner .order_form_top,
    .itemlist_order_only .itemlist_order_pages .order_form .inner .order_form_wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .itemlist_order_only .itemlist_order_pages .order_form_output {
        margin: 0 !important;
    }
    .itemlist_order_only .itemlist_order_pages .order_form .template_btn {
        margin: 0;
    }
}
/* 
    カート
*/
.cart_main {
    padding-bottom: 80px;
}
.cart_content_wrap {
    width: 90%;
    max-width: 1080px;
    margin: 0px auto 0;
    background-color: #fff;
}
.cart_content_wrap .inner {
    width: 90%;
    max-width: 980px;
    padding: 50px 0 60px;
}
.cart_content_wrap .inner .cart_content_top h2 {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item {
    background-color: #F4F4F4;
    padding: 35px 40px 29px;
    text-align: left;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item:nth-of-type(n + 2) {
    margin-top: 20px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    position: relative;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_top .change_btn {
    position: absolute;
    top: 0;
    right: 0;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_top .change_btn a {
    font-size: 14px;
    color: #009DFF;
    font-weight: 600;
    border: 1px solid #009DFF;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 84px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .category_name p {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_detail_text {
    font-size: 15px;
    line-height: 1.8em;
    margin-bottom: 5px;
    max-width: 800px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_option > p {
    margin-right: 15px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_option p {
    font-size: 15px;
    line-height: 1.8em;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .delete_btn {
    padding-bottom: 10px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .delete_btn a {
    font-size: 14px;
    border-bottom: 1px solid #333;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_bottom .total p {
    font-size: 26px;
    font-weight: 600;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_bottom .total p span {
    font-size: 15px;
    font-weight: 600;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_bottom .total p span:first-of-type {
    margin-right: 25px;
}
.cart_content_wrap .inner .cart_item_wrap .cart_item .cart_item_bottom .main_btn {
    width: 320px;
}
.cart_content_wrap .to_toppage {
    margin-top: 105px;
    margin-bottom: 80px;
}
/* 
    ご注文内容入力
*/
.enter_order_details_main {
    padding-bottom: 80px;
}
.enter_order_details_wrap {
    background-color: #fff;
    width: 90%;
    max-width: 1080px;
    margin: 20px auto 0;
}
.enter_order_details_wrap .inner {
    padding: 50px 0 60px;    
}
.enter_order_details_top h2 {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
}
.enter_order_details_wrap form {
    max-width: 100%;
    width: 100%;
}
.enter_order_details_wrap form .form_item {
    border-bottom: 1px solid #707070;
    padding-bottom: 26px;
    margin-bottom: 0;
}
.enter_order_details_wrap form .form_item:nth-of-type(n + 2) {
    padding-top: 25px;
}
.enter_order_details_wrap form .form_item:last-of-type {
    padding-bottom: 0 !important;
    border-bottom: none !important;
}
.enter_order_details_wrap form .form_item > .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.enter_order_details_wrap form .form_item > .name > label {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 600;
    border-left: 8px solid #009DFF;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
}
.enter_order_details_wrap form .form_item > .name > label span {
    display: inline-block;
    height: 14px;
    line-height: 14px;
    vertical-align: middle;
    margin-left: 15px;
}
.enter_order_details_wrap form .form_item > .name > div a {
    color: #009DFF;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #009DFF;
    height: 40px;
    line-height: 40px;
}
.enter_order_details_wrap form .form_item > .name > div.change_btn a {
    min-width: 84px;
}
.enter_order_details_wrap form .form_item > .name > div.d_address_input a {
    min-width: 154px;
}
.enter_order_details_wrap form .form_item > .form_item_select_wrap {
    width: 580px;
}
.enter_order_details_wrap form .form_item > .form_item_select_wrap select {
    width: 580px;
    max-width: 580px;
}
.enter_order_details_wrap form .form_item > .radio_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.enter_order_details_wrap form .form_item > .radio_items .radio_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 227px;
}
.enter_order_details_wrap form .form_item > .radio_items .radio_item input[type=radio] {
    display: inline-block;
    text-align: left;
    margin: 0;
    width: 15px;
}
.enter_order_details_wrap form .form_item > .radio_items .radio_item label {
    margin: 0 0 0 10px;
}
.enter_order_details_wrap form .form_item .point_text {
    margin-top: 15px;
    text-align: left;
}
.enter_order_details_wrap form .form_item .point_text .point_text_select {
    font-weight: 600;
    margin-bottom: 10px;
}
.enter_order_details_wrap form .form_item .point_text .point_text_select .points {
    color: #CF0000;
    font-size: 20px;
    font-weight: 600;
}
.enter_order_details_wrap form .form_item .point_text .point_text_select .points .num {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.enter_order_details_wrap form .form_item .point_text .owned_points,
.enter_order_details_wrap form .form_item .point_text .point_caution {
    font-size: 14px;
}
.enter_order_details_wrap form .form_item .point_text .owned_points {
    margin-bottom: 10px;
}
.enter_order_details_wrap form .form_item > div:last-of-type {
    text-align: left;
    margin-top: 15px;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type {
    background-color: #F4F4F4;
    padding: 30px 40px;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_top {
    padding-bottom: 20px;
    border-bottom: 1px solid #707070;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .category_name p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_detail_text {
    font-size: 15px;
    line-height: 1.8em;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.8em;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_option > p {
    margin-right: 15px;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_bottom {
    margin-top: 20px;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_bottom td p {
    font-size: 15px;
    line-height: 1.8em;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_bottom td p > span {
    font-size: 12px;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_bottom .total p {
    font-size: 26px;
    font-weight: 600;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_bottom .total td:first-of-type p {
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    vertical-align: sub;
    width: 100px;
}
.enter_order_details_wrap form .form_item:last-of-type > div:last-of-type .order_details_bottom .total td:last-of-type p span {
    font-size: 15px;
    font-weight: 600;
}
.enter_order_details_completion .inner {
    padding: 100px 0 60px;
}
.enter_order_details_completion .enter_order_details_top h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 70px;
}
.enter_order_details_completion .letter_body p {
    line-height: 2em;
}
.enter_order_details_completion .main_btn {
    margin-bottom: 60px;
    margin-top: 50px;
}
.delete_modal .modal_content_wrap {
    width: 494px;
}
.delete_modal .modal_btn {
    margin-top: 100px;
}
.point_modal .modal_inner {
    width: 618px;
}
.point_modal .form_item .radio_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.point_modal .form_item .radio_item input,
.point_modal .form_item .radio_item label {
    margin: 0;
}
.point_modal .form_item .radio_item input {
    width: 26px;
    margin-right: 10px;
}
.point_modal .form_item .radio_item label {
    font-weight: 400;
    font-size: 16px;
    line-height: 2em;
}
.point_modal .form_item .radio_item label span {
    font-size: 14px;
    font-weight: 400;
    vertical-align: bottom;
}
.point_modal .form_item.use_point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 0;
}
.point_modal .form_item.use_point p:first-of-type {
    width: 105px;
}
.point_modal .form_item.use_point input {
    width: 116px;
    text-align: right;
}
.point_modal .form_item.use_point p:last-of-type {
    width: 25px;
    text-align: right;
}
.point_modal .point_modal_message p {
    text-align: left;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 35px;
}
.point_modal .input_err {
    border: 1px solid #CF0000 !important;
}
.point_modal .err_text {
    text-align: left;
    padding-left: 105px;
    font-size: 12px;
    color: #CF0000;
}
.delivery_modal .modal_inner {
    width: 834px;
}
.delivery_modal .modal_inner .modal_title p {
    position: relative;
}
.delivery_modal.delivery_modal_select .modal_inner .modal_title p a {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    padding-left: 1em;
    color: #009DFF;
    border: 1px solid #009DFF;
    width: 180px;
    height: 40px;
    line-height: 40px;
    background: no-repeat url(../img/add_icon_b.png);
    background-size: 14px;
    background-position: 10px 12px;
}
.delivery_modal.delivery_modal_select .modal_body {
    padding-top: 15px;
}
.delivery_modal.delivery_modal_select .modal_body.form_wrap {
    max-height: 100%;
}
.delivery_modal.delivery_modal_select .modal_body form {
    margin: 0;
}
.delivery_modal.delivery_modal_select .modal_body .search_area .form_item {
    width: 370px;
    height: 36px;
    line-height: 36px;
    position: relative;
    margin-bottom: 15px;
}
.delivery_modal.delivery_modal_select .modal_body .form_item::after {
    position: absolute;
    content: "";
    top: 55%;
    right: 10px;
    transform: translateY(-50%);
    background: no-repeat url(../img/search_icon_b.png) center center / contain;
    width: 20px;
    height: 20px;
}
.delivery_modal.delivery_modal_select .modal_body .form_item input {
    border: 1px solid #009DFF;
}
.delivery_modal.delivery_modal_select .modal_body .form_item input::placeholder {
    font-size: 15px;
}
.delivery_modal.delivery_modal_select .modal_body .target_area {
    height: 290px;
    overflow: scroll;
    /* margin-bottom: 25px; */
    -ms-overflow-style: none;
    scrollbar-width: none;  
}
.delivery_modal.delivery_modal_select .modal_body .target_area::-webkit-scrollbar {
    display:none;
}
.delivery_modal.delivery_modal_select .modal_body .target_area li:nth-of-type(n + 2) {
    margin-top: 5px;
}
.delivery_modal.delivery_modal_select .modal_body .target_area .radio_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #F4F4F4;
    padding: 20px 10px 15px 0;
}
.delivery_modal.delivery_modal_select .modal_body .target_area .radio_item .input_wrap {
    min-width: 60px;
    margin: 0;
}
.delivery_modal.delivery_modal_select .modal_body .target_area .radio_item.active_radio_item {
    background-color: #CEECFF;
}
.delivery_modal.delivery_modal_select .modal_body .target_area .radio_item input[type="radio"] {
    margin: 0 auto 3px;
}
.delivery_modal.delivery_modal_select .modal_body .target_area .radio_item > label {
    width: 100%;
}
.delivery_modal.delivery_modal_select .modal_body .target_area .radio_item > label span {
    text-align: left;
    display: block;
    font-size: 15px;
    line-height: 1.7em;
}
.delivery_modal.delivery_modal_select .modal_body .target_area .radio_item > label .name {
   font-weight: 600;
}
/* 
    新規登録
*/
.register_page {
    padding-bottom: 60px;
}
.register_main {   
}
.register_main_mail {
    max-width: 744px;
    width: 90%;
    margin: 20px auto 0;
    background-color: #fff;
}
.register_main_mail .inner {
    padding: 54px 0 60px;
    max-width: 580px;
    text-align: left;
}
.register_main_mail h2 {
    font-size: 30px;
    font-weight: 600;
}
.register_main_mail .form_wrap {
    margin-top: 35px;
}
.register_main_mail .form_wrap > p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.register_main_mail .form_wrap > form {
    width: 100%;
}
.register_main_mail .form_wrap > form > .form_item_check {
    margin-top: 65px;
}
.register_main_mail .form_wrap > form > .main_btn {
    margin-top: 24px;
}
.register_completion .inner {
    max-width: 680px;
}
.register_completion .inner h2 {
    text-align: center;
    font-size: 24px;
}
.register_completion .inner .register_main_mail_contents {
    margin-top: 75px;
    text-align: center;
}
.register_completion .inner .register_main_mail_contents .comp_text p {
    line-height: 2em;
}
.register_completion .inner .register_main_mail_contents .caution_text {
    background-color: #E8F5FD;
    margin-top: 60px;
    padding: 20px 25px 15px;
}
.register_completion .inner .register_main_mail_contents .caution_text p {
    font-size: 13px;
    line-height: 2em;
    text-align: left;
}
.register_completion .inner .register_main_mail_contents .caution_text p a {
    display: inline-block;
    color: #009DFF;
}
.register_completion .inner .register_main_mail_contents .caution_text p a.mouseover_under:hover {
    border-bottom: 1px solid #009DFF !important;
}
/* .register_info .register_main {
    padding-top: 60px;
} */
.register_info .register_main .inner {
    background-color: #fff;
    padding: 50px 0 60px;
}
.register_info .register_main .inner > div {
    max-width: 768px;
    width: 95%;
    margin: auto;
}
.register_info .register_main .inner h2 {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
}
.register_info .register_main .inner .form_wrap > p {
    margin: 35px auto 30px;
}
.register_info .register_main .inner .form_wrap form {
    width: 100%;
}
.register_info .register_main .inner .form_wrap #tel,
.register_info .register_main .inner .form_wrap #password,
.register_info .register_main .inner .form_wrap #postcode,
.register_info .register_main .inner .form_wrap #prefecture {
    max-width: 300px;
    width: 100%;
}
.register_info .register_main .inner .form_wrap .form_item_select_wrap {
    max-width: 300px;
    width: 100%;
}
.register_info .register_main .inner .form_wrap #prefecture:invalid {
    color: #ccc !important;
}
.register_info .register_main .inner .form_wrap #prefecture{
    color: #333;
}
.confirmation_register_info_wrap form {
    margin-top: 60px;
}
.register_info.register_completion .inner {
    margin: auto;
    padding: 100px 0 60px;
}
.register_info.register_completion .inner > div {
    width: auto;
}
.register_info.register_completion h2 {
    font-size: 24px !important;
    text-align: center !important;
    margin-bottom: 70px;
}
.register_info.register_completion .comp_text {
    margin-bottom: 60px;
}
.register_info.register_completion .main_btn {
    margin-bottom: 60px;
}
.register_info.register_completion .main_btn a:hover {
    background-color: #009DFF !important;
    color: #fff !important;
    opacity: .5 !important;
}

/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .register_page {
    }
    .register_main_mail {
        width: 90%;
        margin: 0px auto;
    }
    .register_main_mail .inner {
        padding: 20px 0 40px;
    }
    .register_main_mail h2 {
        font-size: 20px;
    }
    .register_main_mail .form_wrap {
        margin-top: 40px;
    }
    .register_main_mail .form_wrap > p {
        margin-bottom: 5px;
    }
    .register_main_mail .form_wrap > form > .form_item_check {
        margin-top: 40px;
    }
    .register_main_mail .form_wrap > form > .main_btn {
        margin-top: 40px;
    }
    .register_completion .inner {
        max-width: 680px;
        padding: 40px 0 30px;
    }
    .register_completion .inner h2 {
        font-size: 20px;
    }
    .register_completion .inner .register_main_mail_contents {
        margin-top: 40px;
        text-align: left;
    }
    .register_completion .inner .register_main_mail_contents .comp_text p {
        font-size: 15px;
    }
    .register_completion .inner .register_main_mail_contents .caution_text {
        margin-top: 30px;
        padding: 15px 13px 20px;
    }
    .register_info .register_main .inner {
        background-color: #fff;
        padding: 25px 20px 40px;
    }
    .register_info .register_main .inner h2 {
        font-size: 20px;
    }
    .register_info .register_main .inner .form_wrap > p {
        margin: 35px auto 30px;
        font-size: 15px;
        text-align: left;
    }
    .register_info.register_completion .inner {
        padding: 37px 0;
    }
    .register_info.register_completion .inner > div {
        width: auto;
    }
    .register_info.register_completion h2 {
        font-size: 20px !important;
        margin-bottom: 40px;
    }
    .register_info.register_completion .comp_text {
        width: 95%;
        margin: 0 auto 35px;
    }
    .register_info.register_completion .main_btn {
        margin-bottom: 35px;
    }
    .register_info.register_completion .to_toppage {
        text-align: center;
    }
}
/* 
    ログイン
*/
.login_page {
    padding-bottom: 60px;
}
.login_page_main {
    max-width: 744px;
    width: 90%;
    margin: 20px auto 0;
    background-color: #fff;
}
.login_page_main .inner {
    padding: 54px 0 60px;
    max-width: 580px;
    text-align: left;
}
.login_page_main h2 {
    font-size: 30px;
    font-weight: 600;
}
.login_page_main .form_wrap {
    margin-top: 35px;
}
.login_page_main .form_wrap > p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.login_page_main .form_wrap > form {
    width: 100%;
}
.login_page_main .form_wrap > form > .form_item_check {
    margin-top: -10px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.login_page_main .form_wrap > form > .main_btn {
    margin-top: 24px;
}
.login_page_main .form_wrap > form > .forget_pass {
    text-align: center;
    margin-top: 24px;
}
.login_page_first_use {
    background-color: #fff;
    max-width: 744px;
    width: 90%;
    margin: 40px auto 0;
}
.login_page_first_use .inner {
    padding: 55px 0 60px;
}
.login_page_first_use .inner .first_use > p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 47px;
}
.login_page_first_use .inner .first_use .main_btn a:hover {
    background-color: #009DFF;
    color: #fff;
    opacity: 0.5 !important;
}
.login_page_first_use .inner .first_use .main_btn a:hover:after {
    background: no-repeat url(../img/main_btn_arr.png) center center / contain !important;
}
.remind_main .remind_main_form_top {
    text-align: center;
    line-height: 2em;
    margin: 50px 0 60px;
}
.remind_main form .form_item {
    margin-bottom: 60px;
}
.remind_url_issue .login_page_main h2 {
    font-size: 24px;
    text-align: center;
}
.remind_url_issue .login_page_main .remind_url_issue_main {
    text-align: center;
    margin: 70px auto 60px;
    line-height: 2em;
}
.remind_setting_main h2 {
    text-align: center;
}
.remind_setting_main .form_wrap {
    margin-top: 50px;
    text-align: center;
}
.remind_setting_main .form_wrap .remind_main_form_top {
    margin-bottom: 70px;
}
.remind_setting_main .form_wrap .form_item {
    max-width: 300px;
    margin: 0 auto 20px;
}
.remind_setting_main .form_wrap .main_btn {
    margin-top: 60px !important;
}
.remind_setting .breadcrumb .inner {
    padding: 0;
}
.remind_setting .register_main {
    padding-top: 0;
}
.remind_setting .register_main .inner {
    padding: 90px 0 55px;
}

/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .login_page {
    }
    .login_page_main {
        width: 90%;
        margin: 0px auto;
    }
    .login_page_main .inner {
        padding: 20px 0 40px;
    }
    .login_page_main h2 {
        font-size: 20px;
    }
    .login_page_main .form_wrap {
        margin-top: 40px;
    }
    .login_page_first_use {
        background-color: #fff;
        max-width: 744px;
        width: 90%;
        margin: 16px auto 0;
    }
    .login_page_first_use .inner {
        padding: 40px 0 36px;
    }
    .login_page_first_use .inner .first_use > p {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 40px;
    }
    .remind_main .remind_main_form_top {
        margin: 30px 0;
        text-align: left;
    }
    .remind_main form .form_item {
        margin-bottom: 40px;
    }
    .remind_url_issue .login_page_main h2 {
        font-size: 20px;
        margin-top: 40px; 
    }
    .remind_url_issue .login_page_main .remind_url_issue_main {
        text-align: left;
        margin: 40px auto 0px;
        font-size: 15px;
    }

    .remind_setting_main h2 {
        text-align: left;
    }
    .remind_setting_main .form_wrap {
        margin-top: 30px;
        text-align: left;
    }
    .remind_setting_main .form_wrap .remind_main_form_top {
        margin-bottom: 25px;
    }
    .remind_setting_main .form_wrap .main_btn {
        margin-top: 40px !important;
    }
    .remind_setting .register_main .inner {
        padding: 40px 0;
    }
}
/* 
    マイページ
*/
.mypage_main_content_wrap {
    padding-bottom: 80px;
}
.mypage_main_content_wrap .inner {
    background-color: #fff;
    padding: 50px 0 60px;
}
.mypage_main_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 90%;
    max-width: 980px;
    margin: 0 auto 30px;
}
.mypage_main_top h2 {
    font-size: 30px;
    font-weight: 600;
}
.mypage_main_top .mypage_main_top_point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.mypage_main_top .mypage_main_top_point > p {
    font-size: 12px;
}
.mypage_main_top .mypage_main_top_point > p > span {
    font-size: 18px;
    font-weight: 600;
    color: #CF0000;
    margin: 0 10px 0 50px;
}
.mypage_main_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    max-width: 980px;
    margin: auto;
}
.mypage_main_content .mypage_content_side {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 220px;
    flex: 1 0 220px;
    padding-right: 50px;
    text-align: left;
}
.mypage_main_content .mypage_content_side li a {
    position: relative;
    font-weight: 600;
    height: 55px;
    line-height: 55px;
    padding-left: 30px;
    border-top: 1px solid #333333;
}
.mypage_main_content .mypage_content_side li:last-of-type a {
    border-bottom: 1px solid #333333;
}
.mypage_main_content .mypage_content_side li a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
}
.mypage_main_content .mypage_content_side li:nth-of-type(1) a::before {
    background: no-repeat url(../img/list_icon1.png) center center / contain;
    transform: translateY(-60%);
}
.mypage_main_content .mypage_content_side li:nth-of-type(2) a::before {
    background: no-repeat url(../img/list_icon2.png) center center / contain;
}
.mypage_main_content .mypage_content_side li:nth-of-type(3) a::before {
    background: no-repeat url(../img/list_icon3.png) center center / contain;
}
.mypage_main_content .mypage_content_side li:nth-of-type(4) a::before {
    background: no-repeat url(../img/list_icon4.png) center center / contain;
}
.mypage_main_content .mypage_content_side li:nth-of-type(5) a::before {
    background: no-repeat url(../img/list_icon5.png) center center / contain;
}
.mypage_main_content .mypage_content_side li:nth-of-type(6) a::before {
    background: no-repeat url(../img/list_icon6.png) center center / contain;
}
.mypage_main_content .mypage_content_main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 760px;
    flex: 1 0 760px;
}
.mypage_content_main_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
}
.mypage_content_main_top .tab_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mypage_content_main_top .tab_btn a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #969696;
    font-weight: 600;
    border: 1px solid #009DFF;
}
.mypage_content_main_top .tab_btn a.this {
    background-color: #009DFF;
    color: #fff;
}
.mypage_content_main .form_item_select_wrap {
    width: 130px;
    position: relative;
}
.mypage_content_main select {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid #969696;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background: #fff;
    border-radius: 0;
    max-width: 130px;
    height: 30px;
}
.mypage_content_main select:focus {
    border: 1px solid #969696;
    outline: 0;
}
.mypage_content_main_item {
    border: 1px solid #969696;
}
.mypage_content_main_item_none,
.mypage_content_main_derivary_none {
    border: none;
    background-color: #F4F4F4;
    height: 100px; 
}
.mypage_content_main_item_none > p,
.mypage_content_main_derivary_none > p {
    text-align: left;
    padding-left: 20px;
    line-height: 100px;
}
.mypage_content_main_item:nth-of-type(n + 2) {
    margin-top: 20px;
}
.mypage_content_main_item .mypage_content_main_item1,
.mypage_content_main_item .mypage_content_main_item2,
.mypage_content_main_item .mypage_content_main_item3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mypage_content_main_item .mypage_content_main_item1 {
    border-bottom: 1px solid #969696;
}

.mypage_comp_main_content .mypage_content_main_item2 {
    border-bottom: 1px solid #969696;
}
.mypage_content_main_item .mypage_content_main_item1 > div,
.mypage_content_main_item .mypage_content_main_item2 > div,
.mypage_content_main_item .mypage_content_main_item3 > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-right: 1px solid #969696;
    height: 46px;
    line-height: 46px;
}
.mypage_content_main_item .mypage_content_main_item1 > div:last-of-type,
.mypage_content_main_item .mypage_content_main_item2 > div:last-of-type,
.mypage_content_main_item .mypage_content_main_item3 > div:last-of-type {
    border-right: none;
}
.mypage_content_main_item .mypage_content_main_item1 > div p,
.mypage_content_main_item .mypage_content_main_item2 > div p,
.mypage_content_main_item .mypage_content_main_item3 > div p {
    font-size: 13px;
}
.mypage_content_main_item .mypage_content_main_item1 > div .name,
.mypage_content_main_item .mypage_content_main_item2 > div .name,
.mypage_content_main_item .mypage_content_main_item3 > div .name {
    border-right: 1px solid #969696;
    background-color: #F4F4F4;
    padding: 0 15px;
}
.mypage_content_main_item_date {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 26%;
    flex: 1 0 26%;
}
.mypage_content_main_item_date > p:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 125px;
    flex: 1 0 125px;
}
.mypage_content_main_item_num {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 37%;
    flex: 1 0 37%;
}
.mypage_content_main_item_num p:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 195px;
    flex: 1 0 195px;
}
.mypage_content_main_item_document {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 37%;
    flex: 1 0 37%;
}
.mypage_content_main_item_document > .form_item_select_wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 170px;
    flex: 1 0 170px;
}
.mypage_content_main_item_document > .form_item_select_wrap::after {
    right: 30px;
}
.mypage_content_main_item .mypage_content_main_item1 div.form_item_select_wrap select {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mypage_content_main_item_pname {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 53%;
    flex: 1 0 53%;
}
.mypage_content_main_item_pname p:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 330px;
    flex: 1 0 330px;
    padding-left: 15px;
    text-align: left;
}
.mypage_content_main_item_pname p a {
    color: #009DFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1em;
    vertical-align: middle;
    padding-top:15px;
}
.mypage_content_main_item_pname p a.btn_under_b {
    font-weight: 400;
}
.mypage_content_main_item_situation {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 47%;
    flex: 1 0 47%;
}
.mypage_content_main_item_situation > div {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 273px;
    flex: 1 0 273px;
}
.mypage_content_main_item .mypage_content_main_item_situation > div {
    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;
}
.mypage_content_main_item .mypage_content_main_item_situation .situation_item {
    width: 120px;
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
}
.mypage_content_main_item .mypage_content_main_item_situation .situation_item:nth-of-type(n + 2) {
    margin-left: 14px;
}
.r_bg {
    background-color: #CF0000;
}
.gr_bg {
    background-color: #15A5BF;
}
.mypage_content_main_item .mypage_content_main_item_situation > div p {
    font-weight: 600;
    color: #fff;
}
.mypage_content_main_item3 .mypage_content_main_item_amount {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 33%;
    flex: 1 0 33%;
}
.mypage_content_main_item3 .mypage_content_main_item_amount .name {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 70px;
    flex: 1 0 70px;
}
.mypage_content_main_item3 .mypage_content_main_item_amount p:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 181px;
    flex: 1 0 181px;
}
.mypage_content_main_item3 .mypage_content_main_item_pay {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 34%;
    flex: 1 0 34%;
}
.mypage_content_main_item3 .mypage_content_main_item_pay p:first-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 84px;
    flex: 1 0 84px;
}
.mypage_content_main_item3 .mypage_content_main_item_pay p:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 170px;
    flex: 1 0 170px;
}
.mypage_content_main_item3 .mypage_content_main_item_receive {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 33%;
    flex: 1 0 33%;
}
.mypage_content_main_item3 .mypage_content_main_item_receive p:first-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 84px;
    flex: 1 0 84px;
}
.mypage_content_main_item3 .mypage_content_main_item_receive p:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 169px;
    flex: 1 0 169px;
}
.mypage_product_item:nth-of-type(n + 2) {
    margin-top: 45px;
}
.mypage_product_items .mypage_product_item_table {
    border: 1px solid #969696;
    margin-top: 15px;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item,
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .order_date,
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .delivery_date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #969696;
}
.order_num {
    position: relative;
}
.order_num .again_btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.order_num .again_btn a {
    background-color: #009DFF;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    width: 110px;
    text-align: center;
    height: 30px;
    line-height: 30px;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item_date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .order_date,
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .delivery_date {
    border-bottom: none;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item:last-of-type {
    border-bottom: none;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .name {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 180px;
    flex: 1 0 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #F4F4F4;
    font-size: 14px;
    text-align: left;
    padding-left: 16px;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .order_date {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 415px;
    flex: 1 0 415px;
    text-align: left;
    border-left: none;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .delivery_date {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 345px;
    flex: 1 0 345px;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .order_date .name{
    -webkit-box-flex: 1;
    -ms-flex: 1 0 180px;
    flex: 1 0 180px;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .delivery_date .name {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 111px;
    flex: 1 0 111px;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item > div:not([class]):nth-of-type(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 578px;
    flex: 1 0 578px;
    text-align: left;
    padding: 15px;
    border-left: 1px solid #969696;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .order_date > div:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 235px;
    flex: 1 0 235px;
    border-left: 1px solid #969696;
    border-right: 1px solid #969696;
    padding: 15px;
    font-size: 15px !important;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .delivery_date > div:last-of-type {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 230px;
    flex: 1 0 230px;
    padding: 15px;
    border-left: 1px solid #969696;
    text-align: left;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item > div:last-of-type p {
    font-size: 15px;
}
.mypage_product_items .mypage_product_item_table .mypage_product_item_table_item .delivery_date .name p {
    font-size: 14px !important;
}
.order_again_form .form_item label {
    position: relative;
    margin-left: 50px;
}
.order_again_form .form_item label > span {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 14px;
    line-height: 14px;
    margin: 0 !important;
}
.order_again_form .form_item .form_item_select_wrap {
    width: 300px;
    max-width: 300px;
}
.mypage_member_info_main .register_main .form_wrap {
    margin-top: 55px !important;
}
.mypage_member_info_main .change_message {
    background-color: #E8F5FD;
    max-width: 766px;
    height: 100px;
    line-height: 100px;
    margin: 35px auto 0;
    font-size: 18px;
    font-weight: 600;
}
.mypage_member_info_main .form_wrap .to_toppage {
    margin-top: 55px;
}
.mypage_derivary .mypage_derivary_add a {
    width: 180px;
    border: 1px solid #009DFF;
    color: #009DFF;
    font-weight: 600;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding-left: 1em;
    position: relative;
}
.mypage_derivary .mypage_derivary_add a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    background: no-repeat url(../img/add_icon_b.png) center center / contain;
    width: 14px;
    height: 14px;
}
.mypage_derivary .mypage_content_main_derivary table {
    border: 1px solid #707070;
    text-align: left;
}
.mypage_derivary .mypage_content_main_derivary table td {
    border: 1px solid #707070;
}
.mypage_derivary .mypage_content_main_derivary table thead td {
    padding: 15px 15px 12px;
    background-color: #F4F4F4;
    font-size: 15px !important;
}
.mypage_derivary .mypage_content_main_derivary table td:first-of-type {
    width: 282px;
}
.mypage_derivary .mypage_content_main_derivary table td:nth-of-type(2) {
    width: 281px;
}
.mypage_derivary .mypage_content_main_derivary table td:last-of-type {
    width: 200px;
}
.mypage_derivary .mypage_content_main_derivary table tbody td {
    padding: 10px 16px;
    font-size: 15px;
}
.mypage_derivary .mypage_content_main_derivary table tbody td.btn {
    padding: 10px 13px;
}
.mypage_derivary .mypage_content_main_derivary table tbody td.btn > div {
    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;
}
.mypage_derivary .mypage_content_main_derivary table tbody td.btn > div a {
    width: 84px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #969696;
}
.mypage_derivary .mypage_content_main_derivary table tbody td.btn > div a.change_btn {
    color: #009DFF;
}
.mypage_derivary .mypage_content_main_derivary table tbody td.btn > div a.delete_btn {
    color: #969696;
}
.change_modal .modal_content_wrap,
.register_modal .modal_content_wrap {
    width: 834px;
}
.mypage_withdrawal .mypage_content_main > p {
    font-size: 15px;
    text-align: left;
    margin-bottom: 24px;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_main_wrap {
    background-color: #F4F4F4;
    text-align: left;
    padding: 30px 25px;
    margin-bottom: 40px;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_main_wrap .withdrawal_main_item {
    padding: 30px 0;
    border-bottom: 1px solid #969696;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_main_wrap .withdrawal_main_item:first-of-type {
    padding-top: 0;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_main_wrap .withdrawal_main_item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_main_wrap .withdrawal_main_item .title p {
    font-weight: 600;
    margin-bottom: 5px;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_main_wrap .withdrawal_main_item .text p {
    font-size: 14px;
    line-height: 2em;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .form_item_check {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 60px;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .form_item_check label {
    font-size: 16px;
    font-weight: 600;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_btn ul a,
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_btn ul button {
    width: 187px;
    height: 50px;
    line-height: 50px;
    margin-right: 20px;
    color: #fff;
    font-weight: 600;
    background-color: #ccc;
}
.mypage_withdrawal .mypage_content_main .withdrawal_main .withdrawal_btn ul button {
    margin-right: 0;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    background-color: #009DFF;
    font-size: 16px;
}
.mypage_withdrawal_completion .breadcrumb {
    
}
.mypage_withdrawal_completion .inner {
    max-width: 1080px;
}
.mypage_withdrawal_completion .register_main .inner {
    padding: 77px 0 104px;
}
.mypage_withdrawal_completion .register_main .inner .comp_text {
    margin-bottom: 90px;
}
.register_info.register_completion.mypage_withdrawal_completion .breadcrumb .inner {
    padding-top: 0 !important;
}
/* 
    特定商取引法 & プライバシーポリシー
*/
.text_page_main {
    padding-bottom: 80px;
}
.text_page_main .text_page {
    background-color: #fff;
    width: 90%;
    max-width: 1080px;
    margin: auto;
    padding: 60px 0;
}
.text_page_main .text_page h2 {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}
.text_page_main .text_page .text_page_top {
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.8em;
}
.text_page_main .text_page .text_page_item:nth-of-type(n + 2) {
    margin-top: 50px;
}
.text_page_main .text_page .text_page_item .text {
    text-align: left;
    margin-top: 20px;
    line-height: 2em;
}
.text_page_main .text_page .text_page_item .text p.space {
    margin-top: 40px;
}
.text_page_main .text_page .text_page_item .text p.space a {
    font-weight: 400;
    line-height: 1em;
}
/* 
    アップロードページ
*/
.upload_page {
    padding-top: 60px;
    padding-bottom: 80px;
}
.upload_page .upload_page_main {
    background-color: #fff;
    max-width: 744px;
    margin: auto;
}
.upload_page .upload_page_main .inner {
    padding: 50px 0 57px;
}
.upload_page .upload_page_main .inner h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}
.upload_page .upload_page_main .upload_page_main_form form .name,
.upload_page .upload_page_main .upload_page_main_form form .category {
    text-align: left;
    font-weight: 600;
    line-height: 1.8em;
}
#upFileWrap {
    margin-top: 25px;
}
#inputFile {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
}
#dropArea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    padding: 50px 0 0;
    border: 2px dashed #CCCCCC;
    background: rgba(22, 165, 191, 0);
    transition: all 0.25s cubic-bezier(0.21, 0.51, 0.51, 1);
    font-size: 22px;
    text-align: center;
    font-size: 22px;
    color: #969696;
    font-weight: 600;
    line-height: 2em;
}
#dropArea.dragover {
    background: #f4f4f4;
}
#uploadFile {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 190px;
    height: 32px;
    opacity: 0;
}
#inputFileWrap {
    position: relative;
    display: inline-block;
}
#btnInputFile,
#btnChangeFile {
    display: table;
    width: 190px;
    height: 32px;
}
#btnChangeFile {
    display: none;
}
#btnInputFile span,
#btnChangeFile span {
    position: relative;
    z-index: 2;
    display: table-cell;
    width: 190px;
    height: 32px;
    background: #006BAD;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    vertical-align: middle;
}
#upFileWrap.selected #btnInputFile {
    display: none;
}
#upFileWrap.selected #btnChangeFile {
    display: table;
}
#filesize {
    font-size: 14px;
}
.upload_page_main_form .main_btn .no_click {
    pointer-events: none;
    opacity: .5;
}
.upload_completion_main .upload_completion_main_contents {
    margin-top: 68px;   
}
.upload_completion_main .upload_completion_main_contents p {
    line-height: 2em;
}
#close_blows {
    margin-top: 70px;
    margin-bottom: 265px;
}
/* 
    新着情報
*/
.common_page_top.news_main .top_text > p {
    font-size: 94px !important;
}
.news_main_contents {
    margin-top: 20px;
    padding-bottom: 80px;
}
.news_main_contents .inner {
    background-color: #fff;
    padding: 40px 50px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
}
.news_main_contents .inner .news_item_wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 748px;
    flex: 1 0 748px;
    padding-right: 55px;
}
.news_item_wrap .news_item {
    padding-bottom: 35px;
}
.news_item_wrap .news_item:nth-of-type(n + 2) {
    padding-top: 40px;
    border-top: 1px solid #707070;
}
.news_item_wrap .news_item .new_item_title_sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.news_item_wrap .news_item .new_item_title_sub .label {
    font-size: 12px;
    width: 90px;
    text-align: center;
    height: 22px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    margin-right: 20px;
    border-radius: 4px;
}
.news_item_wrap .news_item .new_item_title_sub .label.campaign {
    background-color: #CF0000;
}
.news_item_wrap .news_item .new_item_title_sub .label.news {
    background-color: #8B8B8B;
}
.news_item_wrap .news_item .new_item_title_sub .label.holiday {
    background-color: #009DFF;
}
.news_item_wrap .news_item .new_item_title_sub .date {
    font-size: 14px;
}
.news_item_wrap .news_item .new_item_title_main p {
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 30px;
}
.news_item_wrap .news_item .new_item_img_wrap {
    margin-bottom: 25px;
}
.news_item_wrap .news_item .new_item_img_wrap .new_item_img {
    text-align: left;
}
.news_item_wrap .news_item .new_item_img_wrap .new_item_img img {
    object-fit: contain;
    max-height: 525px;
    width: auto;
    max-width: 100%;
}
.news_item_wrap .news_item .new_item_text p {
    line-height: 2em;
}
.news_main_contents .inner .new_sub {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 230px;
    flex: 1 0 230px;
}
.news_main_contents .inner .new_sub .common_title {
    margin-bottom: 12px;
}
.news_main_contents .inner .new_sub .new_sub_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.news_main_contents .inner .new_sub .new_sub_item:nth-of-type(n + 2) {
    margin-top: 10px;
}
.news_main_contents .inner .new_sub .new_sub_item a,
.news_main_contents .inner .new_sub .new_sub_item p {
    color: #009DFF;
    border-bottom: 1px solid #009DFF;
}
.news_main_contents .inner .new_sub .new_sub_item p {
    font-size: 13px;
    border-bottom: none;
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    .news_main .common_page_top .top_text > p  {
        font-size: 94px !important;
    }
    .news_main .common_page_top .top_text .sub {
        font-size: 46px !important;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .news_main .common_page_top .top_text > p  {
        font-size: 94px !important;
    }
    .news_main .common_page_top .top_text .sub {
        font-size: 46px !important;
    }
}
/* 
    お客様の声
*/
.voice_main_contents {
    padding-top: 35px;
    padding-bottom: 120px;
}
.voice_main_contents .voice_top_text p {
    color: #fff;
}
.voice_main_contents .voice_item_wrap {
    padding-top: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.voice_main_contents .voice_item_wrap .voice_item {
    width: calc(33.333% - 18px * 2 / 3);
    margin-right: 18px;
    text-align: left;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 20px 20px 45px;
}
.voice_main_contents .voice_item_wrap .voice_item:nth-of-type(3n) {
    margin-right: 0;
}
.voice_main_contents .voice_item_wrap .voice_item:nth-of-type(n + 4) {
    margin-top: 30px;
}
.voice_main_contents .voice_item_wrap .voice_item .category p {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.voice_main_contents .voice_item_wrap .voice_item .name p {
    padding-bottom: 20px;
}
.voice_main_contents .voice_item_wrap .voice_item .name p,
.voice_main_contents .voice_item_wrap .voice_item .letter_body p {
    font-size: 15px;
    line-height: 2em;
}
/* ===== 1000px以下 ===== */
@media(max-width: 1000px) {
    .voice_main_contents .voice_item_wrap {
        max-width: 718px;
        margin: auto;
    }
    .voice_main_contents .voice_item_wrap .voice_item {
        width: calc(50% - 18px / 2);
    }
    .voice_main_contents .voice_item_wrap .voice_item:nth-of-type(2n) {
        margin-right: 0;
    }
    .voice_main_contents .voice_item_wrap .voice_item:nth-of-type(n + 3) {
        margin-top: 30px;
    }
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .voice_main_contents {
        padding-top: 10px;
        padding-bottom: 60px;
    }
    .voice_main_contents .voice_top_text p {
        text-align: left;
        line-height: 2em;
    }
    .voice_main_contents .voice_item_wrap {
        padding-top: 40px;
        display: block;
        max-width: 360px;
        margin: auto;
    }
    .voice_main_contents .voice_item_wrap .voice_item {
        width: 100%;
        padding: 20px 15px 15px;
    }
    .voice_main_contents .voice_item_wrap .voice_item:nth-of-type(2n) {
        margin-top: 20px;
    }
}


/* 
    faq
*/
.faq {
    padding-top: 50px;
    padding-bottom: 80px;
}
.faq_top_text {
    color: #fff;
    line-height: 1.8em;
}
.faq .faq_item_wrap {
    padding-top: 85px;
}
.faq_item {
    background-color: #fff;
    padding: 15px 25px 16px 15px;
    text-align: left;
}
.faq_item:nth-of-type(n + 2) {
    margin-top: 30px;
}
.faq_item .question {
    position:relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.faq_item .question .question_mark {
    font-size: 20px;
    text-align: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: #009DFF;
    color: #fff;
    border-radius: 36px;
    display: inline-block;
    margin-right: 15px;
    font-weight: 600;
}
.faq_item .question > p:not([class]) {
    font-size: 18px;
    font-weight: 600;
}
.faq_item .question::after,
.faq_item .question::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
    display: block;
    width: 18px;
    height: 3px;
    background-color: #009DFF;
}
.faq_item .question::before {
    transform: translateY(-50%) rotate(90deg);
}
.faq_item .answer {
    padding-top: 24px;
    border-top: 1px solid #707070;
    margin-left: 50px;
    font-size: 16px;
    line-height: 2em;
    margin-top: 15px;
}
.faq_item .open::before {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
    .faq {
        padding-top: 0px;
        padding-bottom: 40px;
    }
    .faq_top_text {
        text-align: left;
    }
    .faq .faq_item_wrap {
        padding-top: 40px;
    }

    .faq_item {
        padding: 10px 20px 15px 10px;
    }
    .faq_item:nth-of-type(n + 2) {
        margin-top: 20px;
    }
    .faq_item .question {
    }
    .faq_item .question .question_mark {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-5%);
        font-size: 16px;
        width: 28px;
        min-width: 28px;
        height: 28px;
        line-height: 28px;
        border-radius: 28px;
    }
    .faq_item .question > p:not([class]) {
        font-size: 16px;
        margin-left: 40px;
    }
    .faq_item .question::after,
    .faq_item .question::before {
        width: 16px;
        top: 11px;
    }
    .faq_item .answer {
        padding-top: 15px;
        margin-left: 40px;
        font-size: 15px;
        margin-top: 13px;
    }
}
/* 
    サイトマップ
*/
.site_map_wrap {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.site_map_wrap .site_map_item_list {
    width: 33.333%;
    text-align: left;
}
.site_map_wrap .site_map_item_list .site_map_item:nth-of-type(n + 2) {
    margin-top: 55px;
}
.site_map_wrap .site_map_item_list .child_link {
    padding-left: 18px;
    padding-top: 20px;
}
.site_map_wrap .site_map_item_list .child_link a {
    font-size: 15px;
}
.site_map_wrap .site_map_item_list .child_link a:nth-of-type(n + 3) {
    margin-top: 14px;
}
.site_map_wrap .site_map_item_list .child_link > .space_line {
    margin-top: 14px;
    border-top: 1px solid #707070;
    max-width: 185px;
}