     @charset "UTF-8";
     /* CSS Document */
     /***************<下層ページ共通>**************/
     
     header {
         position: fixed;
         top: 0;
     }
     
     p.white {
         display: none;
     }
     
     .subject {
         margin-top: 200px;
         text-align: center;
         height: 152px;
         background-image: url(../images/subject_bar.png);
         background-repeat: repeat-x;
         background-position: center;
     }
     
     .subject img {
         position: relative;
         top: 25px;
     }
     /**************</下層ページ共通>***************/
     
     p.intro {
         text-align: center;
         margin-bottom: 50px;
         line-height: 1.5;
     }
     
     .bold {
         font-weight: bold;
     }
     
     .small {
         font-weight: normal;
     }
     /******************<よくある質問のQ&A折り畳み> *************/
     
     .qa-list dl {
         position: relative;
         margin: 0;
         padding: 28px 80px 28px 30px;
         cursor: pointer;
         border-bottom: 2px solid #ff983b;
     }
     
     .qa-list dl:first-child {
         border-top: 2px solid #ff983b;
     }
     
     .qa-list dl::before {
         position: absolute;
         top: 35px;
         right: 35px;
         display: block;
         width: 7px;
         height: 7px;
         margin: auto;
         content: '';
         transform: rotate(135deg);
         border-top: 2px solid #000;
         border-right: 2px solid #000;
     }
     
     .qa-list .open::before {
         transform: rotate(-45deg);
     }
     
     .qa-list dl dt {
         position: relative;
         margin: 0;
         padding: 0 0 0 50px;
         font-weight: bold;
         line-height: 1.5;
     }
     
     .qa-list dl dt::before {
         line-height: 1;
         position: absolute;
         top: 3px;
         left: 0;
         display: block;
         content: 'Q.';
         color: #3285bf;
         font-weight: bold;
         line-height: 1.5;
     }
     
     .qa-list dl dd::before {
         line-height: 1;
         position: absolute;
         top: 3px;
         left: 2px;
         display: block;
         content: 'A.';
         color: #ff0000;
         line-height: 1.5;
     }
     
     .qa-list dl dd {
         position: relative;
         display: none;
         height: auto;
         margin: 20px 0 0;
         padding: 0 0 0 50px;
         line-height: 1.5;
     }
     
     .qa-list dl dd p {
         margin: 30px 0 0;
         line-height: 1.5;
     }
     
     .qa-list dl dd p:first-child {
         margin-top: 0;
     }
     
     .qa-list dl dd a {
         text-decoration: none;
         color: #ffce61;
         line-height: 1.5;
     }
     
     .qa-list dl dd a:hover {
         color: #ff4d1d;
     }
     /******************</よくある質問のQ&A折り畳み> *************/
     
     form {
         background: #fff;
         width: 920px;
         margin-left: auto;
         margin-right: auto;
         box-sizing: border-box;
         padding-top: 15px;
         padding-bottom: 30px;
     }
     
     .musttext {
         text-align: center;
         padding-bottom: 35px;
         color: #ff0000;
         line-height: 1.5;
     }
     
     form dt {
         float: left;
         margin-left: 65px;
         line-height: 1.5;
     }
     
     .form {
         padding-left: 275px;
     }
     
     form dt span {
         color: #FF0000;
     }
     
     .alert {
         color: #ff0000;
         font-size: 16px;
     }
     
     form dd {
         margin-bottom: 30px;
         line-height: 1.5;
     }
     
     input {
         width: 460px;
         height: 35px;
         border: 1px solid #A5A5A5;
     }
     
     input:focus {
         outline: none;
     }
     
     select:focus {
         outline: none;
     }
     
     textarea:focus {
         outline: none;
     }
     
     select {
         width: 195px;
         height: 35px;
         border: 1px solid #A5A5A5;
     }
     
     textarea {
         height: 140px;
         width: 460px;
         resize: none;
         border: 1px solid #A5A5A5;
     }
     
     .btn_confirm {
         color: transparent;
         border: none;
         width: 126px;
         height: 65px;
         background-image: url(../images/btn_confirm.png);
         background-repeat: no-repeat;
         display: block;
         font-size: 0px;
         line-height: 0px;
         border: none;
         margin: auto;
     }
     
     .btn_confirm:hover {
         color: transparent;
         border: none;
         width: 126px;
         height: 65px;
         background-image: url(../images/btn_confirm_hover.png);
         background-repeat: no-repeat;
         cursor: pointer;
         display: block;
         font-size: 0px;
         line-height: 0px;
         border: none;
         margin: auto;
     }
     
     .btn_confirm:active {
         /*ボタンを押したとき*/
         -webkit-transform: translateY(4px);
         transform: translateY(4px);
         /*下に動く*/
     }
     /**********************<レスポンシブ>*********************/
     
     @media screen and (max-width: 640px) {
         .subject {
             background-image: none;
             margin: 100px 0 70px;
             height: auto;
         }
         .subject img {
             width: 40%;
         }
         .contact_form:before,
         .contact_form:after {
             width: 2em;
         }
         p.intro {
             margin: 30px 20px;
         }
         .small {
             font-size: 14px;
         }
         form {
             width: auto;
             background: none;
         }
         form dt {
             margin-left: 20px;
         }
         input,
         textarea {
             width: 90%;
         }
         textarea {
             height: 300px;
         }
         .form {
             clear: left;
             padding-left: 20px;
         }
         .btn_confirm {
             width: 70px;
             height: 37px;
             background-size: 100%;
         }
         .btn_confirm:hover {
             width: 70px;
             height: 37px;
             background-size: 100%;
         }
     }
     /**********************</レスポンシブ>*********************/