@charset "utf-8";
/******************************************************

        スマートフォンサイト用

******************************************************/
@media screen and (max-width: 640px) {


/******************************************************/
/* elements  */
/******************************************************/
* {
    margin: 0;
    padding: 0;
}
html {
    font-size: 10px;
}
body {
    color: #111111;
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-align: center;
    font-family:
        "Noto Sans Japanese",
        "メイリオ",
        "Meiryo",
        "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN",
        "ＭＳ Ｐゴシック",
        "MS P Gothic",
        Verdana,
        Arial,
        Helvetica,
        sans-serif;
    -webkit-text-size-adjust: 100%;
}
p {
    text-align: justify;
    padding-bottom: 1em;
}
dt {
}
dd {
}
strong, th {
    font-weight: bold;
}
ul, ol {
}
li {
}
td p, td li, td dt, td dd, dd li, dd p, li p, li li {
}
table {
    font-size: 100%;
    line-height: 1.6;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-right-style: none;
    border-bottom-style: none;
}
tr {
    text-align: left;
    vertical-align: top;
}
td, th {
    padding: 18px;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    border-top-style: none;
    border-left-style: none;
    outline-style: none;
}
hr {
    text-align:        left;
    vertical-align:    top;
    height: 1px;
    border-top-style:  none;
    border-bottom:     1px solid #cccccc;
    border-right-style: none;
    border-left-style: none;
    outline-style:     none;
}
a:link {
    color: #2b180e;
    text-decoration:none;
}
a:visited {
    color: #918e8d;
    text-decoration:none;
}
a:active {
}
img {
    border-style: none;
    border-width: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
.pc {
    display: none !important;
}
.justifyleft {
    text-align: left !important;
}
.justifyright {
    text-align: right !important;
}


/******************************************************/
/* base  */
/******************************************************/
#top {
    overflow: hidden;
}
#wrapper {
    position: relative;
    background: #ffffff url(../images/bg.png) top center;
}
#main {
    background: #e5ebf2 url(../images/contents_bg.png);
    display: block;
    position: relative;
}
.contents {
}
.contents .main {
    display: block;
}
.contents a:link {
    color: #0066ff;
    text-decoration:underline;
}
.contents a:visited {
    color: #0b4fb5;
}
#wrapper .totop {
    position: absolute;
    bottom: -20px;
    right: -5px;
    padding: 0;
}


/******************************************************/
/* header  */
/******************************************************/
header {
    background: #00438f;
    border-bottom: 1px solid #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15000;
    width: 100%;
    height: 40px;
}
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15000;
}
header .inbox {
    width: 100%;
    padding: 0;
    position: relative;
}
header #logo a {
    background: url(../images/smp_logo.png) no-repeat;
    background-size: 112px 14px;
    position: absolute;
    top: 13px;
    left: 50%;
    width: 112px;
    height: 14px;
    display: block;
    margin-left: -56px;
}
header #logo img {
    display: none;
}
header #gn.fixed {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5000;
}

/* ハンバーガーメニュー */
header .smp_head {
    position: relative;
}
header #smp_open_menu {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    width: 40px;
}
#overlay {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.5);
}
header #gn_main {
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 80%;
    height: 100%;
    background: #ffffff;
    background: #00438f;
    color: #ffffff;
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
header #gn_main.open {
    right: 0;
}

header #gn_main nav {
    text-align: left;
}
header #gn_main ul {
    padding: 0;
}
header #gn_main li {
    border-bottom: 1px solid #cccccc;
}
header #gn_main li a {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.35;
    display: block;
    margin-bottom: 1px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
header #gn_main li span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.5;
}
header #gn_main .nav ul.links {
    background: #3f3a39;
    display: table;
    width: 100%;
    padding: 0 30px 0 10px;
    box-sizing: border-box;
}
header #gn_main .nav .links li {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    border: 0;
}
header #gn_main .nav .links li a {
    padding: 10px;
    margin: 0;
}
header #gn_main .nav .links li img {
}
header li a:hover img {
    opacity:0.75;
}


/******************************************************/
/* footer */
/******************************************************/
footer {
    background: #00438f;
    color: #ffffff;
    clear: both;
    text-align: center;
    position: relative;
    z-index: 1;
}
footer .pagetop {
    background: #ffffff;
    padding: 4.6875vw;
}
footer .pagetop img {
    width: 100%;
    height: auto;
}
footer dl {
    display: block;
    padding: 6.25vw;
}
footer dt {
    height: 14px;
    display: block;
    margin-bottom: 3.125vw;
}
footer dt a {
    background: url(../images/smp_logo.png) no-repeat center top;
    background-size: 112px 14px;
    height: 14px;
    width: 112px;
    display: block;
    margin: auto;
}
footer dt img {
    display: none;
}
footer dd {
    font-size: 1rem;
}
footer nav.fnav {
    background: #003672;
    text-align: left;
}
footer nav.fnav ul.navarea {
    padding: 20px 1.5625vw 6px;
}
footer nav.fnav li {
    padding: 0 1.5625vw;
    width: 50%;
    float: right;
    display: block;
    box-sizing: border-box;
}
footer nav.fnav li.list {
    float: left;
    margin-bottom: 10px;
}
footer nav.fnav li a {
    background: #ffffff;
    color: #000000;
    padding: 1vw 3.125vw;
    display: block;
    font-size: 1rem;
    border-radius: 4px;
    margin-bottom: 4px;
}
footer nav.fnav li ul li {
    width: 90%;
}
footer nav.fnav ul {
    padding-bottom: 0;
}
footer #copyright {
    clear: both;
    background: #ffffff;
    color: #00438f;
    text-align: center;
    padding: 12px 3.125vw;
    font-size: 0.9rem;
    line-height: 1.2;
}
footer #copyright small {
    font-size: 0.9rem;
    line-height: 1.2;
}
footer #copyright small span {
    display: inline-block;
    white-space: nowrap;
}
footer #copyright.recruit_foot {
    padding-bottom: 20vw;
}


/******************************************************/
/* btn  */
/******************************************************/
.main .btn {
    text-align: center;
    padding-bottom: 0;
}
.main .btn a {
}


/******************************************************/
/* base  */
/******************************************************/
#pagetitle {
    padding-top: 41px;
}
#pagetitle h1 {
}
#pagetitle h1 img {
}
.contents article {
    background: #ffffff;
/*    padding: 6.25vw;*/
    margin: 3.125vw;
}


/******************************************************/
/* 会社概要 */
/******************************************************/
/* ごあいさつ */
#greeting {
    margin-bottom: 30px;
    padding: 6.25vw 6.25vw 0;
}
#greeting h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#greeting p.name {
    text-align: right;
    margin-bottom: 10px;
}
#greeting p.name img {
    vertical-align: bottom;
}
/* 会社概要 */
#outline {
    margin-bottom: 30px;
    padding: 6.25vw 6.25vw 0;
}
#outline h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#outline table {
    border: none;
    width: 100%;
}
#outline tr {
    border-bottom: 1px solid #afafaf;
    vertical-align: middle;
    text-align: center;
    padding: 6px 0;
    display: block;
}
#outline th {
    border: none;
    color: #00438f;
    font-weight: 600;
    border-right: 1px solid #afafaf;
    padding: 0 4px;
    width: 80px;
}
#outline td {
    border: none;
    padding: 0 0 0 10px;
    text-align: left;
    vertical-align: middle;
}
/* 沿革 */
#history {
    margin-bottom: 30px;
    padding: 6.25vw 6.25vw 0;
}
#history h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#history table {
    border: none;
    width: 100%;
}
#history tr {
    border-bottom: 1px solid #afafaf;
    vertical-align: middle;
    text-align: center;
    padding: 6px 0;
    display: block;
}
#history th {
    border: none;
    color: #00438f;
    font-weight: 600;
    border-right: 1px solid #afafaf;
    padding: 0 4px;
    width: 106px;
		text-align: left;
}
#history td {
    border: none;
    padding: 0 0 0 10px;
    text-align: left;
    vertical-align: middle;
}

/* SDGs */
#sdgs {
    padding-left: 17px;
    padding-right: 17px;
    margin-top: 5px;
    margin-bottom: 60px;
    text-align: left;
}
#sdgs h2 {
    text-align: center;
}
#sdgs h2 {
    background: url(../images/bar_title1.png) no-repeat center bottom;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
#sdgs h3 {
    color: #000;
    font-weight: bold;
    font-size: 1.4rem;
    padding-bottom: 4px;
    margin-bottom: 14px;

    margin-top: 30px;
    text-align: center;
}
#sdgs h3.type-2 {
    margin-top: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: #0599d9;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
    color: #fff;
    font-size: 1.4rem;
}
#sdgs h4 {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}
#sdgs .sdgs-accent {
    color: #0599d9;
    font-weight: bold;
}
#sdgs .sdgs2030 {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}
#sdgs .name {
    text-align: right;
}
#sdgs table {
    border: none;
}
#sdgs tr {
    border-bottom: 1px solid #efefef;
}
#sdgs th {
    background-color: #0599d9;
    border: 3px solid #fff;
    color: #fff;
    text-align: center;
    padding: 7px 5px;
}
#sdgs th:first-child {
    width: 20%;
    border-left: 0;
}
#sdgs th:nth-child(2) {
    width: 30%;
}
#sdgs th:nth-child(3) {
    width: 50%;
    border-right: 0;
}
#sdgs td {
    border: none;
    padding: 7px 4px;
}
#sdgs td:first-child {
    vertical-align: middle;
    display: table-cell;
}
#sdgs td:nth-child(2) {
   text-align: center;
   font-weight: bold;
    vertical-align: middle;
}
#sdgs .sdgs-flex {
    display: block;
}
#sdgs .sdgs-right {
    text-align: center;
    margin-bottom: 30px;
}
#sdgs img {
    display: block;
    margin: 0 auto;
}
#sdgs .pdf-link {
    margin-top: 20px;
    text-align: center;
}
#a-sdgs {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/******************************************************/
/* アンリックスの強み */
/******************************************************/
/* 高品質 */
#quality {
    background: #ffffff url(../images/smp_title_advantage1.png) no-repeat 5px 5px;
    background-size: 290px 60px;
    padding: 60px 6.25vw 25px;
}
#quality h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#quality h2 span {
    font-size: 1rem;
    display: block;
}
/* 一貫生産体制 */
#integrated {
    background: #00438f url(../images/smp_title_advantage2.png) no-repeat 5px 5px;
    background-size: 290px 60px;
    color: #ffffff;
    padding: 60px 6.25vw 25px;
}
#integrated h2 {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#integrated h2 span {
    font-size: 1rem;
    display: block;
}
/* スピード納品 */
#speed {
    background: #ffffff url(../images/smp_title_advantage3.png) no-repeat 5px 5px;
    background-size: 290px 60px;
    padding: 60px 6.25vw 25px;
}
#speed h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#speed h2 span {
    font-size: 1rem;
    display: block;
}
/* 特殊加工 */
#special {
    background: #00438f url(../images/smp_title_advantage4.png) no-repeat 5px 5px;
    background-size: 290px 60px;
    color: #ffffff;
    padding: 60px 6.25vw 25px;
}
#special h2 {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#special h2 span {
    font-size: 1rem;
    display: block;
}
#special p.btn {
    text-align: center;
}


/******************************************************/
/* 事業内容 */
/******************************************************/
/* タブ */
#business_tabmenu {
    background: #e5ebf2;
    height: 15.625vw;
    overflow: hidden;
}
#business_tabmenu ul {
    padding: 0;
    width: 93.75vw;
}
#business_tabmenu li {
    float: left;
    width: 31.25vw;
    height: 15.625vw;
}
#business_tabmenu li a {
    display: block;
    width: 31.25vw;
    height: 15.625vw;
    text-indent: -9999px;
}
#business_tabmenu li:nth-child(1) a {
    background: url(../images/smp_tabimg_technology.png) no-repeat center bottom;
    background-size: contain;
}
#business_tabmenu li:nth-child(1) a.active {
    background: url(../images/smp_tabimg_technology_ov.png) no-repeat center bottom;
    background-size: contain;
}
#business_tabmenu li:nth-child(2) a {
    background: url(../images/smp_tabimg_products.png) no-repeat center bottom;
    background-size: contain;
}
#business_tabmenu li:nth-child(2) a.active {
    background: url(../images/smp_tabimg_products_ov.png) no-repeat center bottom;
    background-size: contain;
}
#business_tabmenu li:nth-child(3) a {
    background: url(../images/smp_tabimg_facility.png) no-repeat center bottom;
    background-size: contain;
}
#business_tabmenu li:nth-child(3) a.active {
    background: url(../images/smp_tabimg_facility_ov.png) no-repeat center bottom;
    background-size: contain;
}
/* メインコピー */
#business_copy {
    padding: 40px 6.25vw;
}
#business_copy h2 {
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 12px;
}
#business_copy p {
    text-align: center;
}
#business_copy p.smp_tl {
    text-align: justify;
}
/* 加工技術フロー */
#main .tech_flow {
    background: #ffffff url(../images/smp_arrow_technology_blue.png) no-repeat center top;
    background-size: 111px auto;
    padding: 55px 6.25vw 30px;
}
#main .tech_flow:nth-child(2n+1) {
    background: #00438f url(../images/smp_arrow_technology_white.png) no-repeat center top;
    background-size: 111px auto;
    color: #ffffff;
}
#main .tech_flow h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 6px;
    margin-bottom: 12px;
}
#main .tech_flow:nth-child(2n+1) h2 {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}
#main .tech_flow p {
    text-align: left;
}
#main .tech_flow .lbox h3,
#main .tech_flow .rbox h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4px;
    text-align: left;
}
/* 設備紹介 */
#main .facilities {
    padding: 0 6.25vw 30px;
}
#main .facilities h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#main .facilities p {
    text-align: center;
    padding-bottom: 6px;
}
#main .facilities .lbox,
#main .facilities .rbox {
    margin-bottom: 10px;
}
#main .facilities dl {
    background: #d2e7ff;
    clear: both;
    display: block;
    margin: 10px 0;
    border: 1px solid #6b96c8;
    border-bottom: none;
}
#main .facilities dt {
    color: #00438f;
    display: block;
    font-size: 1rem;
    font-weight: 600;
    padding: 3px 0;
    display: table;
    margin: auto;
}
#main .facilities dt span {
    display: table-cell;
    padding: 0 8px;
    text-align: left;
}
#main .facilities dt span:first-child {
    border-right: 1px solid #00438f;
    white-space: nowrap;
    vertical-align: middle;
    text-align: right;
}
#main .facilities dd {
    background: #ffffff;
    display: block;
    padding: 3px 8px;
    border-bottom: 1px solid #6b96c8;
    font-size: 1rem;
}


/******************************************************/
/* よくある質問 */
/******************************************************/
#faq-area {
    margin-bottom: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
}
#faq-box {
    padding: 20px 6.25vw 0;
    margin-top: 5px;
    margin-bottom: 5px;

}
#faq-box li {
    text-align: left;
}
#faq-box li.faq-q {
    position: relative;
    margin-bottom: 15px;
    font-weight: bold;
    padding-left: 5em;
    text-indent: -5em;
}
#faq-box li.faq-q:before {
    content: '質問';
    background-color: #868686;
    font-weight: normal;
    color: #fff;
    padding: 2px 7px;
    margin-right: 18px;
}
#faq-box li.faq-a {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 30px;
    padding-left: 5em;
    text-indent: -5em;
    border-bottom: 1px solid #efefef;
}
#faq-box li.faq-a:before {
    content: '回答';
    background-color: #00438f;
    font-weight: normal;
    color: #fff;
    padding: 2px 7px;
    margin-right: 18px;
}
.btn-faq {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center!important;
}


/******************************************************/
/* 採用情報 */
/******************************************************/
/* 動画 */
#youtube-recruit-page-pc {
    display: none;
}
#youtube-recruit-page-sp {
    padding: 30px 6.25vw;
}
/* 採用サイト誘導 */
#floatbtn {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 0;
    width: 100%;
}
/* メッセージ */
#message {
    margin-bottom: 30px;
    padding: 6.25vw 6.25vw 0;
}
#message h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#message h3 {
    background: #00438f;
    color: #ffffff;
    padding: 5px 2px;
    font-size: 1.1rem;
    line-height: 1.35;
    letter-spacing: normal;
    margin-bottom: 15px;
}
#message .img {
    margin-bottom: 12px;
}
/* 育成制度 */
#training {
    margin-bottom: 30px;
    padding: 6.25vw 6.25vw 0;
}
#training h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#training .num {
    margin-top: 15px;
}
#training .num dl {
    text-align: left;
    display: block;
    padding: 0 0 0 40px;
    min-height: 30px;
    margin-bottom: 18px;
}
#training .num dl:nth-of-type(1) {
    background: url(../images/smp_icon_recruit_1.png) no-repeat;
    background-size: 30px 30px;
}
#training .num dl:nth-of-type(2) {
    background: url(../images/smp_icon_recruit_2.png) no-repeat;
    background-size: 30px 30px;
}
#training .num dl:nth-of-type(3) {
    background: url(../images/smp_icon_recruit_3.png) no-repeat;
    background-size: 30px 30px;
}
#training .num dl:nth-of-type(4) {
    background: url(../images/smp_icon_recruit_4.png) no-repeat;
    background-size: 30px 30px;
    margin-bottom: 0;
}
#training dt {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 5px;
}
/* 社内レクリエーション */
#recreation {
    margin-bottom: 30px;
    padding: 6.25vw 6.25vw 0;
}
#recreation h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#recreation .lbox {
    margin-bottom: 15px;
}
/* エントリー */
#entry {
    padding: 6.25vw 6.25vw 40px;
}
#entry h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#entry p.btn {
    text-align: center;
}
#entry p.btn img {
    width: 56.25vw;
    height: auto;
}
/* ジョブドラフトバナー */
#recruit-banner img {
    border: 1px;
    border-style: solid;
    border-color: #858585;
}

#guidelines {
    margin-bottom: 30px;
    padding: 6.25vw 6.25vw 0;
}
#guidelines h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#guidelines table {
    border: none;
    width: 100%;
}
#guidelines tr {
    border-bottom: 1px solid #afafaf;
    vertical-align: middle;
    text-align: center;
    padding: 6px 0;
    display: block;
}
#guidelines th {
    border: none;
    color: #00438f;
    font-weight: 600;
    border-right: 1px solid #afafaf;
    padding: 0 4px;
    width: 94px;
}
#guidelines td {
    border: none;
    padding: 0 0 0 10px;
    text-align: left;
    vertical-align: middle;
}

/******************************************************/
/* プライバシーポリシー */
/******************************************************/
#privacypolicy {
    padding: 6.25vw 6.25vw 40px;
}
#privacypolicy h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
    margin-top: 30px;
}


/******************************************************/
/* お問い合わせ */
/******************************************************/
/* 電話＆FAXでのお問い合わせ */
#contact {
    padding: 6.25vw 6.25vw 40px;
}
#contact h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#contact #tel {
    display: none;
}
#contact #telbtn {
    text-align: center;
    margin-bottom: 30px;
}
#contact #telbtn img {
    width: 68.75vw;
    height: auto;
}
#contact #fax {
    font-size: 2.1rem;
    font-weight: 600;
    color: #ff5400;
    text-align: center;
    margin-bottom: 20px;
}
#contact #tel span,
#contact #fax span {
    font-size: 1.4rem;
    font-weight: 400;
    display: inline-block;
}
#contact .btn-faq a img {
    border: 1px solid #efefef;
    margin-bottom: 80px;
}

/* メールフォーム */
#contactform {
    padding: 6.25vw 6.25vw 40px;
}
#contactform h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#contactform p {
}
#contactform form {
}
#contactform form textarea {
    padding: 10px;
    font-size: 1.6rem;
    border: 1px solid #afafaf;
    display: block;
    width: 68.75vw;
    height: 40vw;
    margin: 0 auto;
    box-sizing: border-box;
}
#contactform form label {
    display: block;
    margin-bottom: 4px;
}
#contactform form input[type="radio"] {
    font-size: 1.6rem;
    margin: 0 5px 0 0;
}
#contactform form input[type="text"] {
    font-size: 1.6rem;
    padding: 10px;
    border: 1px solid #afafaf;
    display: block;
    width: 68.75vw;
    margin: 0 auto;
    box-sizing: border-box;
}
#contactform form .submit {
    text-align: center;
}
#contactform form input[type="submit"] {
    background: url(../images/smp_btn_confirmation.png) no-repeat center center;
    background-size: contain;
    width: 56.25vw;
    height: 15.625vw;
    margin: 20px auto 0;
    text-indent: -9999px;
    cursor: pointer;
    border: none;
}
#contactform form input[type="submit"]:hover {
    opacity: 0.7;
}
#contactform table {
    border: none;
    margin-bottom: 25px;
    display: block;
}
#contactform tbody {
    display: block;
}
#contactform tr {
    border-bottom: 1px solid #afafaf;
    vertical-align: middle;
    text-align: center;
    padding: 15px 0 10px;
    display: block;
}
#contactform th {
    display: block;
    border: none;
    color: #00438f;
    font-weight: 600;
    text-align: left;
    padding: 0;
    width: 68.75vw;
    margin: 0 auto 6px;
}
#contactform th span {
    color: #ff0000;
}
#contactform td {
    display: block;
    border: none;
    padding: 0;
    text-align: left;
    width: 68.75vw;
    margin: auto;
}


/******************************************************/
/* 404 */
/******************************************************/
#notfound {
    padding: 6.25vw 6.25vw 40px;
}
#notfound h2 {
    border-bottom: 1px solid #00428e;
    color: #00438f;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-bottom: 14px;
}
#notfound p span.smp_br {
    display: block;
}


/******************************************************/
/* clearfix  */
/******************************************************/

div#content:after,
.clfx:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    max-height: 0;
    visibility: hidden;
}
/* ie7,macIE5 */
div#content,
.clfx {
    display: inline-block;
}
/* winIE6 below, exclude macIE5 \*/
* html div#content,
* html .clfx {
    height: 1%;
}
div#content,
.clfx {
    display: block;
}


}

