@charset "utf-8";
/* ========================================================
	form.css => フォームページ用CSS
======================================================== */
/* ------------------------------------------------
	変更履歴
	2018年第1回模試より全体のカラーを変更	「193e97」 -> 「cc0033」
										「0f7ec5」 -> 「003399」
------------------------------------------------ */
/* tab
============================================================================================================ */
.tab {
 margin-bottom: 40px;
 padding: 0 65px;
 border-bottom: 5px solid #ededed;
}
.tab2 {
 margin-bottom: 40px;
 padding: 0 65px;
}
.tab p, .tab2 p {
 text-align: center;
 margin-bottom: 20px;
 font-size: 120%;
 font-weight: bold;
}
.tab ul, .tab2 ul {
 display: table;
 width: 100%;
 table-layout: fixed;
}
.tab ul li, .tab2 ul li {
 display: table-cell;
 padding: 0 10px;
 vertical-align: top;
}
.tab ul li a, .tab2 ul li a {
 position: relative;
 display: table;
 width: 100%;
 border: 3px solid #ededed;
 background-color: #fff;
 font-weight: bold;
 color: #000;
 -webkit-transition: all 0.15s;
 -o-transition: all 0.15s;
 transition: all 0.15s;
 text-decoration: none;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
.tab ul li a:after, .tab2 ul li a:after {
 content: none;
}
.tab ul li a span, .tab2 ul li a span {
 display: table-cell;
 height: 56px;
 text-align: center;
 vertical-align: middle;
}
.tab ul li a.current, .tab2 ul li a.current {
 padding-bottom: 20px;
 background-color: #cc0033;
 border-color: #cc0033;
 border-bottom-width: 0;
 color: #fff;
}
.tab ul li a:hover, .tab2 ul li a:hover {
 background-color: #cc0033;
 border-color: #cc0033;
 color: #fff;
}
.tab ul li a.current:before, .tab2 ul li a.current:before {
 content: "";
 position: absolute;
 right: 20px;
 top: 20px;
 width: 11px;
 height: 11px;
 border-right: 3px solid #fff;
 border-bottom: 3px solid #fff;
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 -o-transform: rotate(45deg);
 transform: rotate(45deg);
}
@media screen and (max-width: 680px) {
 .tab {
  margin-bottom: 20px;
  padding: 0;
  border-bottom-width: 3px;
 }
 .tab2 {
  margin-bottom: 20px;
  padding: 0;
 }
 .tab ul {}
 .tab ul li, .tab2 ul li {
  padding: 0 5px;
 }
 .tab ul li a span, .tab2 ul li a span {
  height: 50px;
  line-height: 15px;
 }
 .tab ul li a.current, .tab2 ul li a.current {
  padding-bottom: 10px;
  border-width: 2px 2px 0;
 }
 .tab ul li a.current:before, .tab2 ul li a.current:before {
  right: auto;
  top: auto;
  /*bottom: 10px;*/
  bottom: 8px;
  left: 50%;
  margin-left: -7px;
 }
}
/* box
============================================================================================================ */
.box {
 padding: 40px;
 border: 1px solid #f1f1f1;
}
@media screen and (max-width: 680px) {
 .box {
  padding: 0;
  border: 0;
 }
}
/* check_age
============================================================================================================ */
.check_age {}
.check_age .main {
 font-size: 30px;
 font-size: 3rem;
 font-weight: bold;
 text-align: center;
 line-height: 1.4;
}
.check_age .bg {
 margin-top: 25px;
 padding: 30px;
 background-color: #f5f5f5;
 font-size: 13px;
 font-size: 1.3rem;
}
@media screen and (max-width: 680px) {
 .check_age {}
 .check_age .main {
  font-size: 2rem;
 }
 .check_age .bg {
  margin-top: 15px;
  padding: 15px;
 }
}
/* flow
============================================================================================================ */
.flow {
 margin-bottom: 40px;
}
.flow ol {
 position: relative;
 overflow: hidden;
 background-color: #f5f5f5;
}
.flow ol:after {
 content: "";
 display: table;
 clear: both;
}
.flow ol li {
 position: relative;
 float: left;
 width: 32%;
 padding: 25px 0;
 font-size: 20px;
 font-size: 2rem;
 line-height: 1.4;
 text-align: center;
 font-weight: bold;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
.flow ol li span {
 position: relative;
 display: inline-block;
 z-index: 3;
}
.flow ol li.step1 {
 background-color: #d3d3d3;
 z-index: 3;
}
.flow ol li.step2 {
 background-color: #e6e6e6;
 z-index: 2;
}
.flow ol li.step3 {
 width: 36%;
}
.flow ol li.step1:after, .flow ol li.step2:after {
 content: "";
 position: absolute;
 top: 50%;
 right: -37px;
 margin-top: -50px;
 width: 100px;
 height: 100px;
 -webkit-transform: scaleX(0.5) rotate(45deg);
 -ms-transform: scaleX(0.5) rotate(45deg);
 -o-transform: scaleX(0.5) rotate(45deg);
 transform: scaleX(0.5) rotate(45deg);
}
.flow ol li.step1:after {
 background-color: #d3d3d3;
}
.flow ol li.step2:after {
 background-color: #e6e6e6;
}
.flow ol li.current, .flow ol li.current:after {
 background-color: #00b7ce;
 color: #fff;
}
.flow .bg {
 margin-top: 25px;
 padding: 25px 30px;
 background-color: #f5f5f5;
 font-size: 13px;
 font-size: 1.3rem;
}
@media screen and (max-width: 680px) {
 .flow {
  margin-bottom: 20px;
 }
 .flow ol {}
 .flow ol li {
  padding: 15px 0;
  font-size: 1.1rem;
 }
 .flow ol li span {
  left: 5px;
 }
 .flow ol li.step1, .flow ol li.step3 {
  width: 30%;
 }
 .flow ol li.step2 {
  width: 40%;
 }
 .flow ol li.step1:after, .flow ol li.step2:after {
  right: -29px;
 }
 .flow .bg {
  margin-top: 15px;
  padding: 15px;
 }
}
/* form_limit
============================================================================================================ */
.form_limit {
 margin: 10px 0 40px;
 text-align: center;
 font-size: 13px;
 font-size: 1.3rem;
}
.form_limit strong {
 display: block;
 margin-bottom: 6px;
 font-size: 30px;
 font-size: 3rem;
 line-height: 1.4;
 color: #c5171f;
}
@media screen and (max-width: 680px) {
 .form_limit {
  margin: 20px 0;
  font-size: 1.1rem;
  line-height: 1.4;
 }
 .form_limit strong {
  margin-right: -10px;
  margin-left: -10px;
  font-size: 1.8rem;
 }
}
/* head_notes
============================================================================================================ */
.head_notes {
 margin-bottom: 10px;
 text-align: center;
 font-size: 20px;
 font-size: 2rem;
 line-height: 1.4;
 color: #c5171f;
 font-weight: bold;
}
.head_notes2 {
 margin-bottom: 10px;
 text-align: center;
 font-size: 26px;
 font-size: 2.6rem;
 line-height: 1.6;
 color: #c5171f;
 font-weight: bold;
}
@media screen and (max-width: 680px) {
 .head_notes {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.4;
 }
 .head_notes2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
 }
}
/* table
============================================================================================================ */
table {
 width: 100%;
 background-color: #f7f7f7;
 line-height: 1.6;
}
table + table {
 margin-top: 30px;
}
table th, table td {
 padding: 1.8em 2em;
}
table tr + tr th, table tr + tr td {
 border-top: 1px solid #e5e5e5;
}
table th {
 width: 32%;
 background-color: #f1f1f1;
 text-align: center;
 font-weight: bold;
}
table th div {
 position: relative;
}
table th .hissu {
 position: absolute;
 right: -10px;
 top: 50%;
 margin-top: -12px;
 padding: 0 5px;
 background-color: #c5171f;
 color: #fff;
 font-size: 90%;
}
table td p + p {
 margin-top: 10px;
}
form .input {
 vertical-align: middle;
}
form input[type=text], form input[type=tel], form textarea, form select {
 padding: .4em .8em;
 border: 1px solid #ccc;
 /*
 border-radius: 2px;
	*/
 background-color: #fff;
}
.size01 {
 width: 220px;
}
.size02 {
 width: 130px;
}
.size03 {
 width: 580px;
}
.size04 {
 width: 250px;
}
textarea.size01 {
 width: 580px;
 height: 200px;
}
form label {
 display: inline-block;
 margin-right: 20px;
}
form label > input {
 margin-right: 5px;
}
form .name {
 display: table;
}
form .name > * {
 display: table-cell;
 vertical-align: middle;
}
form .name > div {
 width: 220px;
}
form .name .t {
 display: inline-block;
 width: 2.2em;
 text-align: center;
}
form .ex {
 display: inline-block;
 margin-top: 10px;
 padding: 3px 10px;
 background-color: #ddd;
 border-radius: 4px;
 font-size: 14px;
 font-size: 1.4rem;
}
form .notes {
 margin-top: 10px;
 font-size: 13px;
 font-size: 1.3rem;
}
form .btn {
 margin-top: 40px;
 text-align: center;
}
form .btn *:hover {
 cursor: pointer;
}
form .btn button, form .btn input[type='submit'], form .btn input[type='button'] {
 display: inline-block;
 width: 310px;
 margin: 0 5px;
 padding: 18px 0;
 border: 0;
 /*background-color: #003399;*/background-color: #00b7ce;
 color: #fff;
 font-size: 16px;
 font-size: 1.6rem;
 font-weight: bold;
}
form .btn input[type='button'] {
 background-color: #999;
}
form .zip_search {
 margin-left: 10px;
 padding: 5px 10px;
 border: 0;
 background-color: #cc0033;
 color: #fff;
 font-size: 14px;
 font-size: 1.4rem;
 font-weight: bold;
 vertical-align: middle;
}
@media screen and (max-width: 680px) {
 table {
  background: none;
 }
 table + table {
  margin-top: 20px;
 }
 table, table tbody, table tr, table th, table td {
  display: block;
  width: auto;
 }
 table tr {
  margin-bottom: 10px;
  border: 1px solid #e5e5e5;
 }
 table th {
  padding: 0.5em;
  border: 0 !important;
 }
 table td {
  padding: 1em;
  background-color: #f7f7f7;
  border-top: 1px solid #e5e5e5 !important;
 }
 table th .hissu {
  right: 0;
  padding: 0 2px;
 }
 form {
  margin-bottom: 30px;
 }
 form input[type=text], form input[type=tel], form textarea, form select {
  font-size: 1.6rem;
 }
 .size01 {
  width: 100%;
 }
 .size02 {
  width: 120px;
 }
 .size03 {
  width: 100%;
 }
 .size04 {
  width: 100%;
 }
 textarea.size01 {
  width: 100%;
  height: 100px;
 }
 form label {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
 }
 form .name {
  display: block;
  margin: 0 -5px;
 }
 form .name:after {
  content: "";
  display: table;
  clear: both;
 }
 form .name > * {
  display: block;
  float: left;
  width: 70% !important;
  padding: 0 5px;
 }
 form .name .t {
  width: auto;
 }
 form .name .type {
  clear: both;
  float: none;
  padding-top: 3px;
  font-size: 1.2rem;
 }
 form .ex {
  font-size: 1.1rem;
 }
 form .notes {
  font-size: 1.2rem;
  display: block;
 }
 form .btn {
  margin-top: 30px;
 }
 form .btn button, form .btn input[type='submit'], form .btn input[type='button'] {
  width: 100%;
  margin: 5px 0;
  padding: 15px 0;
  font-size: 1.4rem;
 }
 form .zip_search {
  margin: 5px 0 0;
  padding: 4px 5px;
  font-size: 1.3rem;
 }
}
.error_box {
 margin-bottom: 40px;
 padding: 40px;
 background-color: #ffebec;
 border: 2px solid #c5171f;
 font-weight: bold;
}
.error_box p {
 margin-bottom: 1em;
 font-size: 16px;
 font-size: 1.6rem;
}
.error_box li {
 color: #c5171f;
}
.error {
 margin-top: 10px;
}
.error strong {
 display: inline-block;
 padding: 0 5px;
 background-color: #c5171f;
 border-radius: 4px;
 color: #fff;
}
@media screen and (max-width: 680px) {
 .error_box {
  margin-bottom: 20px;
  padding: 15px;
 }
 .error_box p {
  margin-bottom: 1em;
  font-size: 1.4rem;
 }
 .error {
  margin-top: 6px;
 }
}
.box.fin {
 padding: 60px 0;
 text-align: center;
 font-size: 18px;
 font-size: 1.8rem;
}
.box p.fin {
 margin-top: 50px;
 text-align: center;
 font-size: 18px;
 font-size: 1.8rem;
}
.back_link {
 margin-top: 60px;
 text-align: center;
}
.back_link a {
 display: inline-block;
 width: 310px;
 padding: 18px 0;
 border: 0;
 background-color: #cc0033;
 color: #fff;
 font-size: 16px;
 font-size: 1.6rem;
 font-weight: bold;
 text-decoration: none;
}
@media screen and (max-width: 680px) {
 .box.fin {
  padding: 40px 0;
  font-size: 1.5rem;
 }
 .box p.fin {
  margin-top: 20px;
  font-size: 1.4rem;
 }
 .back_link {
  margin-top: 20px;
  text-align: center;
 }
 .back_link a {
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 1.4rem;
 }
}
/* Google reCAPTCHA v2
============================================================================================================ */
.recaptcha {
 margin-top: 20px;
}
/*============================================================================
　add
=============================================================================*/
form {
 margin-bottom: 70px;
}
input::placeholder {
 color: #bbb;
}
/* IE */
input:-ms-input-placeholder {
 color: #bbb;
}
/* Edge */
input::-ms-input-placeholder {
 color: #bbb;
}
.thanks_capt {
 text-align: center;
 margin-bottom: 40px;
}
.thanks_capt p {
 margin-bottom: 1em;
}
/**/
.btnWrap {
 clear: both;
 width: 360px;
 margin-left: auto;
 margin-right: auto;
}
.btnWrap a {
 display: block;
 margin: 0 5px;
 padding: 18px 0;
 border: 0;
 /*background-color: #003399;*/background-color: #00b7ce;
 color: #fff;
 font-size: 16px;
 font-size: 1.6rem;
 font-weight: bold;
 text-align: center;
 text-decoration: none;
 -webkit-transition: 0.3s;
 -moz-transition: 0.3s;
 -o-transition: 0.3s;
 transition: 0.3s;
}
@media screen and (max-width : 680px) {
 form {
  margin-bottom: 30px;
 }
}
/* input
--------------------------------------------------------------------------------*/
input[type='text'], input[type='tel'] {
 font: 15px/24px sans-serif;
 box-sizing: border-box;
 transition: 0.3s;
 letter-spacing: 1px;
 /*
 color: #aaaaaa;
	*/
 border: 1px solid #1b2538;
 margin-right: 10px;
 border-radius: 5px;
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
}
input[type='text']:focus, input[type='tel']:focus {
 border: 1px solid #dd0000;
 box-shadow: 0 0 5px 1px rgba(218, 60, 65, .5);
 outline: none;
 /*
 
 border: 1px solid #003399;
 box-shadow: 0 0 5px 1px rgba(0, 51, 153, .5);
 */
}
/* select
--------------------------------------------------------------------------------*/
.selectWrap {
 display: inline-block
}
.selectWrap select {
 padding-right: 1em;
 cursor: pointer;
 text-indent: 0.01px;
 text-overflow: ellipsis;
 border: none;
 outline: none;
 background: transparent;
 background-image: none;
 box-shadow: none;
 -webkit-appearance: none;
 appearance: none;
}
.selectWrap select::-ms-expand {
 display: none;
}
.selectWrap {
 position: relative;
 border: 1px solid #cccccc;
 border-radius: 5px;
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 background: #ffffff;
}
.selectWrap::before {
 position: absolute;
 top: 40%;
 right: 0.9em;
 width: 0;
 height: 0;
 padding: 0;
 content: '';
 border-left: 6px solid transparent;
 border-right: 6px solid transparent;
 border-top: 6px solid #666666;
 pointer-events: none;
}
.selectWrap select {
 padding-top: 8px;
 padding-right: 38px;
 padding-left: 12px;
 padding-bottom: 8px;
 color: #666666;
}
.selectWrap select.is-selected {
  color: #000000;
}

