@charset "utf-8";

/***********************************************************************

------------------------------------------------------------------------
トップページ（優待コード入力）
***********************************************************************/

#home {
}
#home h2 {
    text-align: center;
    margin-top: 50px;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    #home h2 {
        margin-top: 30px;
    }
}
#home .y_code {
    text-align: center;
    max-width: 500px;
    margin: 15px auto 0;
}
#home .y_code input[type="text"] {
    height: 95px;
    font-size: 24px;
    letter-spacing: .5em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    #home .y_code input[type="text"] {
        height: 76px;
        font-size: 20px;
        letter-spacing: .4em;
    }
}

/***********************************************************************

------------------------------------------------------------------------
申込みページ
***********************************************************************/

#apply {
}

/* 割引額
========================================== */

#apply p.forYou {
    background-color: #FFFFD5;
    padding: 25px 40px;
    text-align: center;
    margin-top: 50px;
    display: inline-block;
}
#apply p.forYou em {
    font-weight: 700;
    font-size: 30px;
    color: #FF7F00;
    vertical-align: -.1em;
    padding: 0 5px;
}
@media screen and (max-width: 767px) {
    #apply p.forYou {
        width: 100%;
        padding: 25px 15px;
        margin-top: 30px;
        line-height: 1.5;
    }
}
@media screen and (max-width: 400px) {
    #apply p.forYou {
        letter-spacing: normal;
    }
    #apply p.forYou em {
        font-size: 24px;
    }
}

/* カタログ
========================================== */

a.catalog {
    background-color: #F8F8F8;
    display: inline-block;
    background: #F8F8F8 url(../img/ic_pdf.png) 15px 50% no-repeat;
    padding: 15px 25px 15px 60px;
    margin-top: 30px;
}

/* 申込みフォーム
========================================== */

#apply table {
	width: 100%;
    margin-top: 20px;
}
#apply table tbody tr th {
	padding: 25px 15px;
	border-top: 1px solid #DCDCDC;
	width: 220px;
	position: relative;
}
/* 必須 */
#apply table tbody tr th em {
	display: inline-block;
	padding: 1px 3px 2px 5px;
	font-size: 14px;
	color: #FFF;
	border-radius: 2px;
    background-color: #FF7F00;
	position: absolute;
	top: 25px;
	right: 10px;
}
#apply table tbody tr td {
	padding: 10px 15px;
	border-top: 1px solid #DCDCDC;
}
@media only screen and (max-width:767px) {
    #apply table tbody tr th {
        display: block;
        width: 100%;
	    padding: 15px 0 0;
    }
    #apply table tbody tr td {
        display: block;
	    border-top: none;
        padding: 15px 0;
    }
    #apply table tbody tr th em {
        position: static;
        margin-left: 10px;
        vertical-align: top;
    }
}

/* ---------------------------
商品内容
----------------------------- */

#apply table tbody tr td p.check_item {
    margin-top: 10px;
}
#apply table tbody tr td p.check_item em {
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    #apply table tbody tr td p.check_item {
        margin-top: 0;
        letter-spacing: normal;
    }
    #apply table tbody tr td p.check_item em {
        font-size: 16px;
    }
}

/* ---------------------------
確認画面
----------------------------- */

#apply table tbody tr td strong {
    display: block;
    margin-top: 15px;
}
#apply table tbody tr td strong + strong {
    margin-top: 0;
}

/* ---------------------------
のしリスト
----------------------------- */

ul.noshi_list {
	display: flex;
    flex-wrap: wrap;
}
ul.noshi_list li {
    width: 25%;
    margin-top: 15px;
}
ul.noshi_list li:last-of-type {
    width: 100%;
}
ul.noshi_list li:last-of-type input[type="text"] {
    width: 75%;
    margin-left: 15px;
}
@media screen and (max-width: 767px) {
    ul.noshi_list li {
        width: 50%;
        margin-top: 0;
        margin-bottom: 15px;
    }
    ul.noshi_list li:last-of-type {
        margin-bottom: 0;
    }
    ul.noshi_list li:last-of-type input[type="text"] {
        width: 100%;
        margin: 10px 0 0 0;
    }
}

/* ---------------------------
連絡方法リスト
----------------------------- */

ul.kind_list {
	display: flex;
    margin-top: 15px;
}
ul.kind_list li {
	margin-right: 30px;
}
@media screen and (max-width: 767px) {
    ul.method_list {
        margin-top: 0;
    }
}

/* 注意書き
========================================== */

dl#notes {
    border: solid 1px #ccc;
    padding: 35px 40px 20px;
    margin-top: 60px;
}
dl#notes dt {
    font-weight: 700;
    position: relative;
    padding-bottom: 6px;
}
dl#notes dt:before {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background: #000;
}
dl#notes dd {
    margin: 20px 0;
}
dl#notes dd ul {
}
dl#notes dd ul li {
    list-style: circle;
    margin-left: 15px;
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    dl#notes {
        padding: 25px 15px 15px;
        margin-top: 40px;
    }
    dl#notes dd ul li {
        font-size: 13px;
        line-height: 1.6;
        margin-top: 5px;
    }
}

/***********************************************************************

------------------------------------------------------------------------
IE警告
***********************************************************************/

#ie_alert {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgb(196, 52, 52);
    background: rgba(196, 52, 52, 0.95);
    color: #fff;
    padding: .25em .75em;
    display: none;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    opacity: 0;
    /* IE11未満用（全画面表示） */
    z-index: 9999;
    display: block\9;
    height: 100%\9;
    top: 0px\9;
    opacity: 1\9;
}
#ie_alert.visible {
    will-change: transform;
    opacity: 1;
}
#ie_alert p.only_under_ie11 {
    display: none;
    /* IE11未満用 */
    display: block\9;
}
#ie_alert p {
    padding-left: 30px;
    /* IE11未満用 */
    padding-left: 0\9;
}
#ie_alert a {
    color: #fff;
    text-decoration: underline;
}
span#btn_close_ie {
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    cursor: pointer;
    /* IE11未満用 */
    display: none\9;
}
span#btn_close_ie:before {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 40px;
    top: 0vw;
    left: 20px;
    background-color: #fff;
}
span#btn_close_ie:after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    top: 20px;
    left: 0vw;
    background-color: #fff;
}
