@charset "utf-8";

/*
  form_title
*/
.form_title {
  margin-top: 40px;
  text-align: center;
}

.form_title .title h2 {
  font-size: 2.0rem;
  color: #01538f;
  margin-bottom: 10px;
}

.form_title .title p {
  font-size: 1.5rem;
}

.form_title .link_btn {
  max-width: 300px;
  margin: 10px auto 0;
}

.form_title .link_btn a {
  width: 100%;
  height: 40px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.8;
  display: block;
  color: white;
  position: relative;
  transition: .3s;
  padding-left: 5px;
  border-radius: 20px;
  background-color: #01538f;
}

.form_title .link_btn a:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: auto 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
}

.form_title .link_btn a:hover {
  opacity: .7;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
    .form_title {
      margin-top: 80px;
  }
  
    .form_title .title h2 {
      font-size: 2.6rem;
      margin-bottom: 5px;
  }
  
    .form_title .title p {
      font-size: 1.8rem;
  }
  
  .form_title .link_btn {
    max-width: 400px;
    margin: 30px auto 0;
  }

  .form_title .link_btn a {
    height: 55px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 3;
    padding-left: 5px;
    border-radius: 28px;
  }
  
  .form_title .link_btn a:after {
    width: 5px;
    height: 5px;
    left: 25px;
  }
}

/*
  method_nav
*/

.method_nav {
  margin-bottom: 20px;
  display: flex;
}

.method_nav li {
  width: 50%;
  min-height: 40px;
  padding: 5px 0;
  font-size: 1.4rem;
  color: #01538f;
  text-align: center;
  font-weight: bold;
  background: #dce6e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.method_nav li a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method_nav li .small {
  font-size: 1.1rem;
  font-weight: bold;
}

.method_nav .current {
  color: #fff;
  background: #01538f;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .method_nav {
    margin-bottom: 45px;
  }

  .method_nav li {
    padding: 0;
    height: 75px;
    line-height: 75px;
    font-size: 2.4rem;
    flex-direction: row;
  }

  .method_nav li a {
    font-size: 2.4rem;
    line-height: 75px;
    flex-direction: row;
  }

  .method_nav li .small {
    font-size: 1.8rem;
    font-weight: bold;
  }

  .method_nav li:not(.current):hover {
    opacity: .7;
  }
}

/*
  method_flow
*/

.flow_area {
  width: 100%;
  box-sizing: border-box;
  margin: 40px 0;
}

.method_flow {
  display: flex;
  justify-content: space-between;
  margin: 0 15px 30px;
}

.flow_area .method_flow {
  margin-bottom: 0;
}

.method_flow li {
  font-size: 1.2rem;
  color: #01538f;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  background: #dce6e6;
  position: relative;
}

.method_flow .current {
  color: #fff;
  background: #f6ac19;
}

.method_flow li:first-child {
  width: 32.41379%;
  margin-right: 12px;
  border-radius: 4px 0 0 4px;
}

.method_flow li:first-child:after,
.method_flow li:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border: 15px solid;
  border-color: white;
  border-left: 8px solid #dce6e6;
}

.method_flow li:nth-child(2):before,
.method_flow li:nth-child(3):before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  border: 15px solid #dce6e6;
  border-right: 0;
  border-left: 8px solid transparent;
}

.method_flow li:nth-child(2) {
  width: 29.65517%;
  margin-right: 12px;
}

.method_flow li:nth-child(3) {
  width: 29.65517%;
  border-radius: 0 4px 4px 0;
}

.method_flow li:nth-child(2).current:before,
.method_flow li:nth-child(3).current:before {
  border-top-color: #f6ac19;
  border-bottom-color: #f6ac19;
}

.method_flow li:first-child.current:after,
.method_flow li:nth-child(2).current:after {
  border-left-color: #f6ac19;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .flow_area {
    width: 100%;
    margin: 80px 0;
  }
  .method_flow {
    width: 1000px;
    margin: 0 auto 60px;
  }
  
  .flow_area .method_flow {
    margin-bottom: 0;
  }

  .method_flow li {
    height: 60px;
    font-size: 2.4rem;
    line-height: 60px;
  }

  .method_flow li:first-child {
    width: 320px;
    margin-right: 36px;
    border-radius: 10px 0 0 10px;
  }

  .method_flow li:first-child:after,
  .method_flow li:nth-child(2):after {
    border: 30px solid;
    border-color: transparent;
    border-left: 16px solid #dce6e6;
  }

  .method_flow li:nth-child(2):before,
  .method_flow li:nth-child(3):before {
    border: 30px solid #dce6e6;
    border-right: 0;
    border-left: 16px solid transparent;
  }

  .method_flow li:nth-child(2) {
    width: 304px;
    margin-right: 36px;
  }

  .method_flow li:nth-child(3) {
    width: 304px;
    border-radius: 0 10px 10px 0;
  }
}

/*
  base_form, card_form, transfer_form, transfer_info, auto_form
*/

.card_form,
.transfer_form,
.auto_form {
  padding: 15px 0 0;
  border-top: 1px solid #e6e6e6;
}

.base_form dl,
.card_form dl,
.transfer_form dl,
.transfer_info dl,
.auto_form dl {
  margin-bottom: 40px;
}

.base_form dt,
.card_form dt,
.transfer_form dt,
.transfer_info dt,
.auto_form dt {
  color: #01538f;
  margin-bottom: 5px;
}

.base_form dd,
.card_form dd,
.transfer_form dd,
.transfer_info dd,
.auto_form dd {
  margin-bottom: 20px;
}

.base_form dt span,
.card_form dt span,
.transfer_form dt span,
.auto_form dt span {
  color: #c1272d;
}

.base_form dd input[type="text"],
.card_form dd input[type="text"],
.auto_form dd input[type="text"],
.transfer_form dd input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 5px;
  font-size: 1.6rem;
  font-family: inherit;;
  background: #f2f2f2;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.base_form dd input.name,
.card_form dd input.name {
  width: 31.0345%;
}

.base_form dd select,
.card_form dd select,
.transfer_info td select {
  height: 40px;
  padding: 5px;
  font-size: 1.6rem;
  font-family: inherit;;
  background: #f2f2f2;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-weight: bold;
  color: #4d4d4d;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .card_form,
  .transfer_form,
  .auto_form {
    padding: 30px 0 0;
    border-top: 1px solid #e6e6e6;
    }  .base_form dt,

  .card_form dt,
  .transfer_form dt,
  .transfer_info dt,
  .auto_form dt {
    width: 310px;
    margin-bottom: 20px;
    padding: 14px 0 14px 40px;
    font-size: 1.4rem;
    box-sizing: border-box;
    float: left;
    clear: both;
  }

  .card_form dt,
  .transfer_form dt,
  .transfer_info dt {
    font-size: 1.4rem;
    padding: 15px 0 15px 40px;
  }

  .base_form dd,
  .card_form dd,
  .transfer_form dd,
  .transfer_info dd,
  .auto_form dd {
    width: 690px;
    margin-bottom: 20px;
    padding: 0 40px 0 0;
    font-size: 1.6rem;
    box-sizing: border-box;
    float: left;
  }

  .base_form dd input[type="text"],
  .card_form dd input[type="text"],
  .auto_form dd input[type="text"],
  .transfer_form dd input[type="text"] {
    width: 100%;
    height: 54px;
    padding: 10px;
    font-size: 1.8rem;
    font-family: inherit;;
    background: #f2f2f2;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

  .base_form dd input.name,
  .card_form dd input.name {
    width: 200px;
  }

  .base_form dd select,
  .card_form dd select,
  .transfer_info td select {
    height: 54px;
    padding: 10px;
    font-size: 1.8rem;
  }
}

/*
  base_form
*/

.base_form dd input.year {
  width: 27.58620%;
}

.base_form dd input.zip {
  width: 34.482%;
}

.base_form dd input.address1,
.base_form dd input.address2,
.base_form dd input.address3 {
  margin-bottom: 8px;
}

.base_form dd input.address1 {
  width: 34.48275%;
}

.base_form dd input.address2 {
  width: 51.72413%;
}

.base_form dd input.address3 {
  width: 72.41379%;
}

.base_form dd textarea {
  width: 100%;
  height: 180px;
  padding: 5px;
  font-size: 1.6rem;
  font-family: inherit;;
  background: #f2f2f2;
  border: 1px solid #ccc;
  box-sizing: border-box;
  resize: none;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .base_form h2 {
    margin-bottom: 50px;
  }

  .base_form dl {
    margin-bottom: 80px;
  }

  .base_form dd input.year {
    width: 146px;
  }

  .base_form dd input.zip {
    width: 181px;
  }

  .base_form dd input.address1 {
    width: 100px;
    margin-bottom: 5px;
  }

  .base_form dd input.address2 {
    width: 300px;
    margin-bottom: 5px;
  }

  .base_form dd input.address3 {
    width: 560px;
    margin-bottom: 5px;
  }

  .base_form dd textarea {
    padding: 10px;
    font-size: 1.8rem;
  }
}

/*
  payment_form
*/
.payment_form h2 {
  line-height: 1.1;
}

.payment_form h2 span {
  font-size: 1.5rem;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .payment_form h2 {
    margin-bottom: 50px;
    font-size: 2.6rem;
  }
  
  h2.title {
    border-bottom: 2px solid #01538f;
  }
}

/*
  tab_list
*/

.tab_list {
  display: flex;
  border-bottom: 5px solid #01538f;
}

.tab_list li {
  width: 50%;
  padding: 6px 0;
  font-size: 1.3rem;
  color: #6e9cba;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  background: #dce6e6;
  border-radius: 0 10px 0 0;
}

.tab_list li:first-child {
  border-radius: 10px 0 0 0;
}

.tab_list li.select {
  color: #fff;
  background: #01538f;
  cursor: auto;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .tab_list {
    border-bottom: 5px solid #01538f;
  }

  .tab_list li {
    width: 500px;
    height: 70px;
    padding: 0;
    font-size: 2.4rem;
    line-height: 70px;
    border-radius: 0 15px 0 0;
    cursor: pointer;
  }

  .tab_list li:hover {
    opacity: .7;
  }

  .tab_list li:first-child {
    border-radius: 15px 0 0 0;
  }

  .tab_list li.select {
    cursor: auto;
  }

  .tab_list li.select:hover {
    opacity: 1;
  }
}

/*
  card_type
*/

.card_type {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.card_type img {
  width: 40px;
  margin: 5px 0 0 10px;
}

.card_type img:first-of-type {
  margin-left: 0;
}

.card_type img,
.card_type small {
  display: inline-block;
  vertical-align: middle;
}

.card_type small {
  margin-top: 10px;
  font-weight: normal;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .card_type {
    padding: 50px 0 30px;
    font-size: 1.8rem;
  }

  .card_type img,
  .card_type small {
    width: auto;
    display: inline-block;
    vertical-align: middle;
  }

  .card_type .cards {
    margin: 0 0 0 20px;
  }

  .card_type img:first-of-type {
    margin-left: 20px;
  }

  .card_type small {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

/*
  card_form
*/

.card_form dd.security_code .sc-note {
  margin-top: 10px;
}

.card_form dd.security_code p {
  margin-bottom: 10px;
}

.card_form dd.security_code .sc-note img {
  width: 100%;
  max-width: 480px;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .card_form dd input.card_no {
    width: 326px;
  }

  .card_form dd.security_code input {
    width: 166px;
    margin-right: 15px;
  }

  .card_form dd.security_code p {
    font-size: 1.4rem;
  }

  .card_form dd.security_code small {
    margin-left: 0;
    padding: 8px 0;
    font-size: 1.2rem;
    text-indent: 0;
    display: block;
  }
}

/*
  privacy_area
*/

.privacy_area {
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.privacy_area p {
  font-size: 1.3rem;
}

.privacy_area a {
  color: #7ebae0;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .privacy_area {
    margin-bottom: 40px;
    padding: 40px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
  }

  .privacy_area p {
    font-size: 1.4rem;
    text-align: center;
  }

  .privacy_area a:hover {
    text-decoration: underline;
  }
}

/*
  submit_area
*/
.submit_area {
  text-align: center;
}

.submit_area input[type="submit"],
.submit_area input[type="button"] {
  width: 100%;
  max-width: 500px;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 40px;
  color: #fff;
  font-weight: bold;
  background: #01538f url(../images/common/link_arrow4.png) no-repeat 10px center;
  border: none;
  border-radius: 4px;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .submit_area input[type="submit"],
  .submit_area input[type="button"] {
    height: 70px;
    background: #01538f url("../images/common/link_arrow4.png") no-repeat 25px center;
    font-size: 2.0rem;
    cursor: pointer;
  }
  .submit_area input[type="submit"]:hover,
  .submit_area input[type="button"]:hover {
    opacity: 0.7;
  }
}

/*
  transfer_info
*/

.transfer_inner {
  padding: 20px 0 40px;
}

.transfer_info {
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
}

.transfer_info .title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #01538f;
  text-align: left;
  margin-bottom: 10px;
}

.transfer_info .title span {
  font-size: 1.4rem;
  font-weight: normal;
  color: #4d4d4d;
  text-align: left;
  margin-bottom: 10px;
  display: block;
}

.transfer_info tr {
  display: block;
  margin-bottom: 20px;
}

.transfer_info th,
.transfer_info td {
  display: block;
  text-align: left;
}


/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .transfer_inner {
    width: 900px;
    padding: 40px 0 100px;
    margin: auto;
  }
  
  .transfer_info {
    padding: 45px 0 30px;
    margin-bottom: 30px;
  }
  
  .transfer_info .title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 2.2;
  }

  .transfer_info .title span {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .transfer_info tr {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 0;
    padding: 30px 0;
  }
  
  .transfer_info tr:first-child {
    border-bottom: none;
  }
  
  .transfer_info th,
  .transfer_info td {
    font-size: 1.8rem;
    display: table-cell;
  }
  
  .transfer_info th {
    width: 300px;
    vertical-align: middle;
    text-align: right;
  }
  
  .transfer_info td {
    padding-left: 80px;
  }

  .transfer_inner .lead {
    font-size: 1.5rem;
    text-align: center;
  }
}

/*
  .cp
*/

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .cperr {
    margin: 100px 0;
    font-size: 20px;
    text-align: center;
    color: #c1272d;
  }

  .cpback {
    text-align: center;
  }

  .cpback a {
    width: 480px;
    height: 70px;
    background: #01538f url("../images/common/link_arrow3.png") no-repeat 25px center;
    font-size: 2.0rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 68px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
  }

  .cperr + p {
    margin-bottom: 100px;
    font-size: 20px;
    text-align: center;
  }

  .cperr + p a:hover {
    text-decoration: underline;
  }
}

/*
  mailmagazine
*/

.mailmagazine label {
  width: 62%;
  padding: 0 10px;
  font-size: 1.4rem;
  color: #01538f;
  font-weight: bold;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background: #f2f2f2;
  display: block;
  border-radius: 3px;
  line-height: 40px;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .mailmagazine label {
    width: 293px;
    height: 54px;
    padding: 0 16px;
    float: left;
    font-size: 1.6rem;
    border-radius: 6px;
    line-height: 54px;
  }
}

/*
  tip
*/

.tip-wrap {
  position: relative;
}

.tip {
  display: none;
  width: 200px;
  height: 30px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  line-height: 30px;
  background: #7ebae0;
  position: absolute;
  right: 10px;
  bottom: -45px;
  border-radius: 10px;
}

.tip:after {
  content: "";
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent #7ebae0 transparent;
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
  .tip {
    top: -55px;
    bottom: auto;
  }

  .tip:after {
    top: auto;
    bottom: -20px;
    border-color: #7ebae0 transparent transparent transparent;
  }
}
