@charset "UTF-8";

/*----------------
reset
----------------*/
* {
    margin: 0;
    padding: 0;
}

input,
button,
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
}

ul {
    list-style-type: none
}

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

/*----------------
baseLayout
----------------*/
html {
    font-size: 62.5%;
    min-height: 100%;
    position: relative;
    font-family: 'Microsoft Yahei', 'PingHei', 'Malgun Gothic', 'Yoon Gothic', 'Arial', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
}

body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
    background: #fff;
    color: #333;
    min-height: 100%;
    margin-bottom: 256px;
}

a,
a:visited {
    color: #ca2033;
    text-decoration: underline;
}

a:hover,
a:active {
    color: #666;
    text-decoration: none;
}

/*--header--*/
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    background: #fff;
    z-index: 999;
    top: 0;
}

body.index header {
    background: #f2f2f2;
}

header a {
    text-decoration: none;
}

header .logo {
    width: 80px;
}

header .logo img {
    width: 100%;
    height: auto;
}

nav .menu {
    display: table;
}

nav .menu li {
    display: table-cell;
    padding-left: 12px;
    padding-top: 20px;
    font-size: 12px;
    font-size: 1.2rem;
}

header .sbumenu {
    margin-left: auto;
    text-align: right;
    font-size: 10px;
    font-size: 1rem;
}

header .sbumenu .login,
.drawer-menu .login {
    background: url(../images/icon-lock.svg) left no-repeat;
    background-size: 13px 13px;
    padding-left: 18px;
    display: inline-block;
    margin-right: 10px;
}

header .sbumenu p a {
    padding-right: 5px;
}

/*--menu--*/
.pcmenu {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
}

.spmenu {
    display: none;
}

/*--section--*/
section:first-of-type,
section.contents:first-of-type,
section.data:first-of-type {
    margin-top: 120px;
    /*header分*/
}

section.contents {
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
}

section.data {
    background: #ca2033;
    padding: 25px;
    color: #fff;
    text-align: center;
}

/*--footer--*/
footer {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 25px 0 0;
    position: absolute;
    bottom: 0;
}

footer a,
footer a:visited {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-size: 1.2rem;
}

footer a:hover {
    color: #ccc;
}

footer .footermenu {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 25px;
    display: flex;
}

footer .footermenu div {
    font-size: 14px;
    font-size: 1.4rem;
}

footer .footermenu div img {
    width: 64px;
    height: auto;
}

footer .footermenu div p {
    margin-top: 10px;
}

footer .footermenu dl {
    margin-left: 40px;
}

footer .footermenu dt {
    font-weight: bold;
}

footer .footermenu dt a {
    font-size: 12px;
    font-size: 1.2rem;
}

footer .copyright {
    width: 100%;
    background: #000;
}

footer .copyright p {
    display: block;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 15px 0;
}

/*----------------
common
----------------*/

/*--title--*/
.titleL {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: bold;
}

.titleM {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: bold;
}

.titleS {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: bold;
}

/*--headline--*/
.headlineL {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: bold;
}

.headlineM {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}

/*--text--*/
.txtLL {
    font-size: 24px;
    font-size: 2.4rem;
}

.txtM {
    font-size: 14px;
    font-size: 1.4rem;
}

.txtS {
    font-size: 12px;
    font-size: 1.2em;
}

.alC {
    text-align: center;
}

.alL {
    text-align: left;
}

/*--float--*/
.flArea {
    overflow: hidden;
}

.flL {
    float: left;
}

.flR {
    float: right;
}

.flC {
    clear: both;
}

.flL img {
    margin-right: 30px;
}

.flR img {
    margin-left: 30px;
}

/*--margin--*/
/*top*/
.mgtLL {
    margin-top: 100px;
}

.mgtL {
    margin-top: 70px;
}

.mgtM {
    margin-top: 50px;
}

.mgtS {
    margin-top: 30px;
}

.mgtSS {
    margin-top: 20px;
}

/*bottom*/
.mgbL {
    margin-bottom: 70px;
}

.mgbM {
    margin-bottom: 50px;
}

.mgbS {
    margin-bottom: 30px;
}

.mgbSS {
    margin-bottom: 20px;
}

/*--padding--*/
.pdtL {
    padding-top: 70px;
}

.pdtM {
    padding-top: 50px;
}

.pdtS {
    padding-top: 30px;
}

.pdbL {
    padding-bottom: 70px;
}

/*--button--*/
a.btn,
input.btn,
button.btn {
    color: #fff;
    padding: 25px 35px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    font-size: 2rem;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btnMain,
input.btnMain {
    background: #ca2033;
}

.btnSub,
input.btnSub {
    background: #666;
}

.btnMain:hover {
    background: #a92033;
}

.btnSub:hover {
    background: #505050;
}

input.btn {
    margin-top: 50px;
}

/*--Decoration--*/
.decoration {
    border: 1px solid #ccc;
    background: #f2f2f2;
}

/*--slider--*/
.slider {
    overflow: hidden;
    position: relative;
}

.slider .siema,
.slider .siema2 {
    width: calc(100% - 80px);
    margin: 10px auto;
}

.slider p.btnPrev,
.slider p.btnNext {
    width: 15px;
    height: 30px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider p.btnPrev {
    left: 0
}

.slider p.btnNext {
    right: 0;
}

.slideContent {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.slideContent .split2 {
    width: calc(100% / 2);
}

.slideContent .split3 {
    width: calc(100% / 3);
}

.slideContent .split4 {
    width: calc(100% / 4);
}

.slideContent .split5 {
    width: calc(100% / 5);
}

.slideContent div {
    float: left;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.slideContent div img {
    max-width: 100%;
    height: auto;
}

.pcslide {
    display: block;
}

.spslide {
    display: none;
}


/*----------------
index
----------------*/
.index {
    background: url(../images/background-top.png) top left repeat-x;
}

.indexMain {
    position: relative;
}

.indexMain .flR img {
    width: 500px;
    max-width: 100%;
}

.indexCatch {
    width: calc(100% - 500px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.indexBtn {
    text-align: right;
}

.indexBtn a:first-of-type {
    margin-right: 10px;
}

.indexBtn a.btn {
    padding: 20px;
    font-size: 16px;
    font-size: 1.6rem;
}

/*----------------
form　20180823　s_shimizu
----------------*/
section.inquiryArea {
    width: 90%;
    max-width: 900px;
    margin: 120px auto 0;
}

section.inquiryArea input[type="text"],
section.inquiryArea input[type="email"],
textarea {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

section.inquiryArea input[type="text"],
section.inquiryArea input[type="email"] {
    width: 380px;
}

textarea {
    width: 100%;
}

.formArea {
    padding: 10px 40px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.formArea dl {
    margin-top: 30px;
}

.formArea dt {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.indis {
    display: inline-block;
    background: #ca2033;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0 3px;
    margin-left: 5px;
}

.formError {
    color: #ca2033;
    background: url(../images/icon-error.svg) no-repeat left;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
    padding-left: 25px;
    margin-left: 5px;
}

.radio {
    display: inline-block;
}

.radio input[type="radio"] {
    float: left;
    height: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 0;
}

.radio input[type="radio"]+label {
    background: rgba(0, 0, 0, 0) url("../images/radio-off.svg") no-repeat scroll left center / 20px 20px;
    cursor: pointer;
    display: inline-block;
    min-height: 20px;
    padding: 0px 10px 0px 25px;
}

.radio input[type="radio"]:checked+label {
    background: rgba(0, 0, 0, 0) url("../images/radio-on.svg") no-repeat scroll left center / 20px 20px;
}

label,
.agree {
    color: #666;
}

.agree {
    font-size: 14px;
    font-size: 1.4rem;
}

.otherOption input {
    margin-left: 5px;
}

.inqimg {
    text-align: center;
}

.inqimg img {
    width: 250px;
    max-width: 70%;
}

.confirm .flL,
.confirm .flR {
    width: 48%;
}

.confirm dd,
.otherOption span {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    color: #666;
}

.otherOption span {
    display: inline-block;
    width: 400px;
    margin-left: 5px;
}

.confirm dd.radioArea {
    border: none;
}

.formArea input[type="submit"] {
    padding: 25px 60px;
}

.confirm input.btnSub {
    margin-left: 20px;
}

.imgInquiry img {
    width: 200px;
    height: auto;
}

/*--スマホ切り替え--*/
@media screen and (max-width:740px) {

    body {
        margin-bottom: 0;
    }

    /*--header--*/
    header {
        padding: 0;
    }

    header .logo {
        width: 80px;
        height: 40px;
    }

    .pcmenu {
        display: none;
    }

    .spmenu {
        display: flex;
    }

    .logo {
        width: 60px;
        height: auto;
        margin: 10px;
    }

    .drawer-hamburger {
        background: #333;
        position: relative;
        margin-left: auto;
        padding: 18px 2rem 30px 1rem;
    }

    .drawer-hamburger:hover {
        background: #333;
    }

    .drawer-hamburger-icon {
        width: 3rem;
    }

    .drawer-hamburger-icon,
    .drawer-hamburger-icon::after,
    .drawer-hamburger-icon::before {
        background: #fff;
    }

    .drawer--right.drawer-open .drawer-hamburger {
        right: 23rem;
    }

    .drawer--right .drawer-nav {
        right: -23rem;
    }

    .drawer-nav {
        width: 23rem;
    }

    nav .drawer-menu {
        padding: 10px 0;
    }

    nav .drawer-menu li a {
        font-size: 14px;
        font-size: 1.4rem;
        display: block;
        padding: 5px 10px;
    }

    nav .drawer-menu li.language a {
        display: inline;
    }

    nav .drawer-menu li.language {
        margin-top: 10px;
    }

    .drawer-menu .login {
        margin: 10px 0 0 10px;
        padding-left: 15px;
    }

    /*--footer--*/
    footer {
        position: relative;
        padding: 0;
    }

    footer .footermenu {
        display: block;
        width: 100%;
        margin: 0;
    }

    footer .footermenu>div {
        overflow: hidden;
        padding: 10px;
        border-bottom: 1px solid #666;
    }

    footer .footermenu .footerLogo,
    footer .footermenu .address {
        float: left;
    }

    footer .footermenu .footerLogo {
        margin-right: 10px;
    }

    footer .footermenu .address {
        width: calc(100% - 80px);
        font-size: 12px;
        font-size: 1.2rem;
    }

    footer .footermenu .address p:first-of-type {
        margin-top: 0;
    }

    footer .footermenu dl {
        margin: 0;
        padding: 10px;
        border-bottom: 1px solid #666;
    }

    footer .footermenu dl a {
        display: block;
        padding: 5px;
    }

    footer .copyright p {
        font-size: 10px;
        font-size: 1rem;
    }

    /*--button--*/
    a.btn,
    input.btn,
    button.btn {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 20px 15px;
    }

    input.btn {
        margin-top: 20px;
        width: 70%;
    }

    .flL,
    .flR {
        float: none;
    }

    .flL img,
    .flR img {
        margin: 0;
    }

    /*--section--*/
    section:first-of-type,
    section.contents:first-of-type,
    section.data:first-of-type,
    .inquiryArea {
        margin-top: 70px;
        /*header分*/
    }

    /*--slider--*/
    .pcslide {
        display: none;
    }

    .spslide {
        display: block;
    }

    /*--margin--*/
    /*top*/
    .mgtLL {
        margin-top: 70px;
    }

    .mgtL {
        margin-top: 50px;
    }

    .mgtM {
        margin-top: 30px;
    }

    .mgtS {
        margin-top: 20px;
    }

    .mgtSS {
        margin-top: 10px;
    }

    /*bottom*/
    .mgbL {
        margin-bottom: 50px;
    }

    .mgbM {
        margin-bottom: 30px;
    }

    .mgbS {
        margin-bottom: 20px;
    }

    .mgbSS {
        margin-bottom: 10px;
    }

    /*--padding--*/
    .pdtL {
        padding-top: 50px;
    }

    .pdtM {
        padding-top: 30px;
    }

    .pdtS {
        padding-top: 20px;
    }

    .pdbL {
        padding-bottom: 50px;
    }

    /*--title--*/
    .titleL {
        font-size: 26px;
        font-size: 2.6rem;
    }

    .titleM {
        font-size: 20px;
        font-size: 2rem;
    }

    .titleS {
        font-size: 16px;
        font-size: 1.6rem;
    }

    /*--text--*/
    .txtLL {
        font-size: 20px;
        font-size: 2rem;
    }

    /*--form--*/
    section.inquiryArea input[type="text"],
    section.inquiryArea input[type="email"] {
        width: 100%;
    }

    .formArea {
        padding: 0 20px 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-size: 14px;
        font-size: 1.4rem;
    }

    .formArea dl {
        margin-top: 20px;
    }

    .formArea dt {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .radio {
        margin: 10px 0;
    }

    .radio,
    .radio input[type="radio"]+label {
        display: block;
    }

    .otherOption input {
        margin-left: 0;
    }

    .confirm .flL,
    .confirm .flR,
    .otherOption span {
        width: 100%;
    }

    .confirm input.btnSub {
        margin-left: 0;
    }

    .imgInquiry img {
        width: 40%;
        max-width: 200px;
        height: auto;
    }
}