@charset "UTF-8";
a {
  transition: 0.5s;
}

body {
  background-color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.wrap {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.pagetop {
  margin-right: 120px;
  margin-left: auto;
  text-align: right;
  margin-top: 100px;
}
.pagetop img {
  width: 155px;
}
.pagetop:hover {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }

  body {
    font-size: 3.5vw;
    line-height: 1.6;
  }

  .pagetop {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
    margin-top: 5%;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
header {
  padding: 0;
  background: url(../img/common/bcg_header.png);
  display: flex;
  justify-content: space-between;
  background-position: bottom;
  height: 100px;
  align-items: center;
}
header .logo {
  margin-left: 9%;
  display: flex;
  align-items: center;
  flex: 1;
}
header .logo::after {
  display: block;
  background: url(../img/common/bcg_logo.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 240px;
  height: 100px;
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
header nav ul li a {
  display: table-cell;
  height: 100px;
  width: 120px;
  text-align: center;
  vertical-align: middle;
}
header nav ul li.new a {
  border-top: solid 10px #d46a75;
  letter-spacing: 1em;
}
header nav ul li.new a:hover {
  background: rgba(212, 106, 117, 0.5);
}
header nav ul li.old a {
  border-top: solid 10px #fbb03b;
}
header nav ul li.old a:hover {
  background: rgba(251, 176, 59, 0.5);
}
header nav ul li.mente a {
  border-top: solid 10px #ffd200;
}
header nav ul li.mente a:hover {
  background: rgba(255, 210, 0, 0.5);
}
header nav ul li.credit a {
  border-top: solid 10px #83ac59;
}
header nav ul li.credit a:hover {
  background: rgba(131, 172, 89, 0.5);
}
header nav ul li.shop a {
  border-top: solid 10px #6d98b5;
}
header nav ul li.shop a:hover {
  background: rgba(109, 152, 181, 0.5);
}
header nav ul li.contact a {
  border-top: solid 10px #3d5993;
}
header nav ul li.contact a:hover {
  background: rgba(61, 89, 147, 0.5);
}
header nav ul::after {
  display: block;
  border-top: solid 10px #860093;
  content: "";
  width: 120px;
  height: 100px;
}

#toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  #toggle {
    position: fixed;
    top: 25px;
    right: 25px;
    display: block;
  }

  #toggle-box {
    position: relative;
    width: 36px;
    height: 32px;
    cursor: pointer;
  }

  #toggle-box > span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #000;
    position: absolute;
    transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
  }

  #toggle-box > span:nth-child(1) {
    top: 0;
  }

  #toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
  }

  #toggle-box > span:nth-child(3) {
    bottom: 0;
  }

  .is-open #toggle-box > span {
    background: #fff;
  }

  .is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
  }

  .is-open #toggle-box > span:nth-child(2) {
    width: 0;
  }

  .is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
  }

  /* z-index */
  #toggle {
    z-index: 1000;
  }

  #main {
    position: relative;
    z-index: 990;
  }

  #nav-content {
    z-index: 900;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
  }

  #nav-content ul {
    list-style: none;
  }

  #nav-content a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5% 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }

  #nav-content a:hover {
    opacity: 0.6;
  }

  .is-open {
    overflow: hidden;
  }

  .is-open #nav-content {
    z-index: 999;
    visibility: visible;
    opacity: 1;
  }

  .is-open #nav-content a {
    pointer-events: auto;
  }

  header {
    display: block;
    height: auto;
  }
  header .logo {
    display: block;
    width: 60%;
    padding: 3% 6% 6%;
    margin-left: 0;
  }
  header .logo::after {
    display: none;
  }
  header nav ul {
    list-style: none;
    display: block;
  }
  header nav ul li a {
    display: block;
    height: auto;
    width: auto;
  }
  header nav ul li.new a {
    border-top: solid 10px #d46a75;
    letter-spacing: 0;
  }
  header nav ul li.new a:hover {
    background: rgba(212, 106, 117, 0.5);
  }
  header nav ul li.old a {
    border-top: solid 10px #fbb03b;
  }
  header nav ul li.old a:hover {
    background: rgba(251, 176, 59, 0.5);
  }
  header nav ul li.mente a {
    border-top: solid 10px #ffd200;
  }
  header nav ul li.mente a:hover {
    background: rgba(255, 210, 0, 0.5);
  }
  header nav ul li.credit a {
    border-top: solid 10px #83ac59;
  }
  header nav ul li.credit a:hover {
    background: rgba(131, 172, 89, 0.5);
  }
  header nav ul li.shop a {
    border-top: solid 10px #6d98b5;
  }
  header nav ul li.shop a:hover {
    background: rgba(109, 152, 181, 0.5);
  }
  header nav ul li.contact a {
    border-top: solid 10px #3d5993;
  }
  header nav ul li.contact a:hover {
    background: rgba(61, 89, 147, 0.5);
  }
  header nav ul::after {
    border-top: none;
    border-bottom: solid 10px #999;
    width: 100%;
    height: auto;
  }
}
footer {
  background: url(../img/common/bcg_footer.png);
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 120px 10px;
  height: 440px;
  margin-top: -1px;
}
footer small {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
}
footer ul.fnav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 710px;
  margin-bottom: 20px;
}
footer ul.fnav > li {
  width: 32%;
  max-width: 230px;
  color: #fff;
  margin-bottom: 40px;
}
footer ul.fnav > li h2 {
  border-bottom: solid 1px #fff;
  margin-bottom: 15px;
  font-weight: bold;
  padding-bottom: 10px;
}
footer ul.fnav > li li {
  margin-bottom: 5px;
}
footer ul.fnav > li a {
  color: #fff;
  text-decoration: none;
}
footer ul.fnav > li a::before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  footer {
    display: block;
    padding: 5%;
    height: auto;
    margin-top: -1px;
    background: #fff;
  }
  footer .logo {
    width: 50%;
    margin: 0 auto 5%;
  }
  footer small {
    color: #000;
  }
  footer ul.fnav {
    display: none;
  }
  footer ul.fnav > li {
    width: 48%;
    max-width: auto;
    color: #000;
    margin-bottom: 40px;
  }
  footer ul.fnav > li h2 {
    border-bottom: solid 1px #ccc;
    margin-bottom: 5%;
    padding-bottom: 5%;
  }
  footer ul.fnav > li li {
    margin-bottom: 5px;
  }
  footer ul.fnav > li a {
    color: #000;
    text-decoration: none;
  }
}
main {
  background-color: #fff;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  main {
    overflow: hidden;
  }
}
main#index section.mv {
  background-color: #000;
}
main#index section.mv .slick-list.draggable {
  height: 518px;
}
main#index section.mv ul.slick-dots {
  background-color: #000;
  height: 80px;
  margin-left: auto;
  text-align: right;
  padding-right: 300px;
  padding-top: 36px;
}
main#index section.mv .slick-dots li button:before {
  color: #b3b3b3;
}
main#index section.mv .slick-prev,
main#index section.mv .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 98%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 100;
}
main#index section.mv .slick-prev:before,
main#index section.mv .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main#index section.mv .slick-prev {
  left: 1047px;
}
main#index section.mv .slick-next {
  right: 275px;
}
main#index section.mv .slick-dots li button:before {
  font-size: 20px;
}
main#index section#about {
  background: url(../img/index/bcg_about.png) no-repeat center bottom;
  background-size: cover;
  padding-bottom: 200px;
}
main#index section#about h1 {
  width: 400px;
  margin: auto;
  margin-top: -50px;
  margin-bottom: 70px;
  position: relative;
}
main#index section#about ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: flex-end;
}
main#index section#about ul li {
  width: 49%;
}
main#index section#news {
  background: #f4f4f4 url(../img/index/bcg_news.png) no-repeat center 50px;
  background-size: 100%;
  padding-bottom: 140px;
}
main#index section#news h1 {
  width: 400px;
  margin-right: 130px;
  margin-left: auto;
  transform: translateY(-50px);
  position: relative;
}
main#index section#news ul.news {
  max-width: 1100px;
  margin: auto;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  padding: 40px 40px 10px;
}
main#index section#news ul.news li {
  margin-bottom: 30px;
}
main#index section#news ul.news li a:hover {
  text-decoration: underline;
}
main#index section#news ul.news time {
  margin-right: 20px;
}
main#index section#news ul.news span {
  margin-right: 20px;
  display: inline-block;
  background-color: #00a3bb;
  color: #fff;
  padding: 5px;
}
main#index section#news ul.news span.news {
  background-color: #00a3bb;
}
main#index section#news ul.news span.newcar {
  background-color: #ff0000;
}
main#index section#news ul.news span.topics {
  background-color: #fc7d21;
}
main#index section#news ul.news span.oldcar {
  background-color: #8cc63f;
}
main#index section#news ul.olditem {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
main#index section#news ul.olditem li {
  width: 32%;
}
main#index section#news ul.olditem li img {
  width: 100%;
  margin-bottom: 10px;
}
main#index section#news ul.olditem li .price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: solid 1px #000;
}
main#index section#news ul.olditem li .price img {
  height: 40px;
  width: auto;
}

main#index section#news ul.olditem li .price em {
  font-size:3em;
  font-weight: bold;
  color: #C1272D;
  line-height: 1;
}

main#index section#news ul.olditem li .price em span {
  font-size:.5em;
  font-weight: bold;
  color: #C1272D;
  font-style: normal;
}
main#index section#news ul.olditem li dl {
  border-left: solid 4px #000;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}
main#index section#news ul.olditem li dt {
  width: 35%;
  font-weight: normal;
  margin-right: 10px;
  padding: 5px 10px;
}
main#index section#news ul.olditem li dd {
  width: 55%;
  padding: 5px 10px;
}
main#index section#news h2 {
  border: solid 2px #006837;
  border-radius: 5px;
  background-color: rgba(0, 104, 55, 0.1);
  color: #006837;
  max-width: 1200px;
  line-height: 60px;
  font-weight: bold;
  font-size: 1.8em;
  margin: 0 auto 50px;
  text-align: center;
  letter-spacing: 0.5em;
}
main#index section#pickup {
  background: url(../img/index/bcg_pickup.png) no-repeat center bottom;
  background-size: cover;
}
main#index section#pickup h1 {
  width: 700px;
  margin-right: auto;
  margin-left: auto;
  transform: translateY(-50px);
  position: relative;
}
main#index section#pickup ul {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
main#index section#pickup ul li {
  margin-bottom: 20px;
}
main#index section#pickup ul::after {
  display: block;
  content: "";
  width: 460px;
}
main#index section#service {
  background: url(../img/index/bcg_service.png) no-repeat center bottom;
  background-size: cover;
  padding-bottom: 200px;
}
main#index section#service h1 {
  width: 400px;
  margin-left: 130px;
  margin-top: -50px;
  margin-bottom: 70px;
}
main#index section#service ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}
main#index section#service ul li {
  width: 270px;
  margin-bottom: 40px;
}
main#index section#service ul li img {
  height: 100%;
}
main#index section#service ul li.cal {
  width: 580px;
  background-color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
main#index section#service ul li.cal h3 {
  color: #0071bc;
  text-align: center;
  margin-bottom: 5px;
  width: 100%;
}
main#index section#service ul li.cal .cal_wrapper {
  width: 49%;
}
main#index section#service ul li.cal .attent {
  width: 100%;
  font-size: 0.8em;
  text-align: center;
}
main#index section#service ul li.cal .attent::before {
  display: inline-block;
  content: "";
  background-color: #dd7590;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  main#index section.mv {
    background-color: #000;
  }
  main#index section.mv .slick-list.draggable {
    height: 43vw;
  }
  main#index section.mv ul.slick-dots {
    background-color: #000;
    height: 46px;
    margin-left: auto;
    text-align: center;
    padding-right: 0;
    padding-top: 0;
  }
  main#index section.mv .slick-dots li button:before {
    color: #b3b3b3;
  }
  main#index section.mv .slick-prev,
main#index section.mv .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 98%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 100;
  }
  main#index section.mv .slick-prev:before,
main#index section.mv .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  main#index section.mv .slick-prev {
    left: 10px;
  }
  main#index section.mv .slick-next {
    right: 10px;
  }
  main#index section.mv .slick-dots li button:before {
    font-size: 20px;
  }
  main#index section#about {
    padding: 0 5% 10%;
  }
  main#index section#about h1 {
    width: 50%;
    margin-top: -7%;
    margin-bottom: 5%;
  }
  main#index section#about ul {
    display: block;
  }
  main#index section#about ul li {
    width: 100%;
  }
  main#index section#news {
    background: #f4f4f4 url(../img/index/bcg_news.png) no-repeat center bottom;
    background-size: contain;
    padding: 0 5% 10%;
  }
  main#index section#news h1 {
    width: 50%;
    margin: auto;
    transform: translateY(0);
    margin-top: -7%;
    margin-bottom: 5%;
  }
  main#index section#news h2 {
    margin-bottom: 5%;
  }
  main#index section#news ul.news {
    padding: 5% 5% 0;
  }
  main#index section#news ul.news li {
    margin-bottom: 5%;
  }
  main#index section#news ul.news time {
    margin-right: 0;
    display: block;
  }
  main#index section#news ul.news span {
    margin-right: 0;
    display: block;
    width: 5em;
    margin-bottom: 2%;
  }
  main#index section#news ul.olditem {
    flex-wrap: wrap;
  }
  main#index section#news ul.olditem li {
    width: 48%;
    margin-bottom: 5%;
  }
  main#index section#news ul.olditem li img {
    margin-bottom: 2%;
  }
  main#index section#news ul.olditem li dl {
    display: block;
  }
  main#index section#news ul.olditem li dt {
    width: auto;
    padding-bottom: 0;
  }
  main#index section#news ul.olditem li dd {
    width: auto;
    padding-top: 0;
  }
  main#index section#news ul.olditem li .price {
    display: block;
  }
  main#index section#news ul.olditem li .price img {
    height: 20px;
    display: block;
    margin-left: auto;
  }
  main#index section#pickup {
    padding: 0 5% 0;
  }
  main#index section#pickup h1 {
    width: 100%;
    transform: translateY(0);
    margin-top: -7%;
    margin-bottom: 5%;
  }
  main#index section#pickup ul li {
    width: 48%;
  }
  main#index section#pickup ul::after {
    display: block;
    content: "";
    width: 460px;
  }
  main#index section#service {
    padding: 2% 2% 0%;
  }
  main#index section#service h1 {
    width: 50%;
    margin: auto;
    margin-top: -7%;
    margin-bottom: 5%;
  }
  main#index section#service ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  main#index section#service ul li {
    width: 49%;
    margin-bottom: 2%;
  }
  main#index section#service ul li img {
    height: auto;
  }
  main#index section#service ul li.cal {
    width: 100%;
    background-color: #fff;
    padding: 10px;
  }
  main#index section#service ul li.cal h3 {
    color: #0071bc;
    text-align: center;
    margin-bottom: 5px;
  }
  main#index section#service ul li.cal img {
    height: auto;
    margin: 0 5px;
  }
}
div.btn-area {
  width: 280px;
  margin: 45px auto;
}
div.btn-area a {
  display: block;
  background-color: #333333;
  color: #fff;
  text-align: center;
  line-height: 50px;
  position: relative;
}
div.btn-area a::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/index/img_arrow01.png) no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: 20px;
  top: 30%;
}

main#maintenance {
  line-height: 2;
}
main#maintenance #mente01 {
  max-width: 1200px;
  margin: 100px auto 0;
}
main#maintenance #mente01 figure {
  text-align: right;
  margin-top: -100px;
}
main#maintenance #mente02 {
  background: url(../img/maintenance/bcg_list.jpg) no-repeat;
  background-size: cover;
  padding: 70px 70px 70px 300px;
  margin-top: -50px;
}
main#maintenance #mente02 h2 {
  color: #96272d;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 10px;
}
main#maintenance #mente02 p {
  margin-bottom: 20px;
}
main#maintenance #mente03 {
  max-width: 1200px;
  margin: 120px auto;
}
main#maintenance #mente03 strong {
  color: #c1272d;
}
main#maintenance #mente03 h2 {
  width: 900px;
  margin: 70px auto 40px;
  font-size: 1.8em;
  font-weight: bold;
}
main#maintenance #mente03 p {
  width: 900px;
  margin: auto;
}
main#maintenance #mente04 {
  max-width: 1200px;
  margin: 120px auto;
}
main#maintenance #mente04 strong {
  color: #009245;
}
main#maintenance #mente04 h2 {
  width: 900px;
  margin: 70px auto 40px;
  font-size: 1.8em;
  font-weight: bold;
}
main#maintenance #mente04 p {
  width: 900px;
  margin: 40px auto;
}
main#maintenance #mente04 .attent {
  background-color: rgba(0, 104, 55, 0.1);
  padding: 40px 150px;
  line-height: 2;
}
main#maintenance #mente05 {
  max-width: 1200px;
  margin: 120px auto 0;
  line-height: 1.8;
}
main#maintenance #mente05 ul {
  display: flex;
  justify-content: space-between;
}
main#maintenance #mente05 li {
  width: 49%;
  max-width: 565px;
  border: solid 4px #f15a24;
  border-radius: 10px;
  overflow: hidden;
}
main#maintenance #mente05 li h2 {
  background: url(../img/maintenance/bcg_bankinttl.png) no-repeat;
  color: #fff;
  font-size: 1.8em;
  height: 145px;
  background-size: contain;
  padding: 80px 0 0 50px;
}
main#maintenance #mente05 li p {
  padding: 50px;
}
main#maintenance #mente05 li:last-child {
  border: solid 4px #8cc63f;
}
main#maintenance #mente05 li:last-child h2 {
  background: url(../img/maintenance/bcg_mangattl.png) no-repeat;
}


main#maintenance #support01 {
  max-width: 1200px;
  margin: 100px auto 0;
}
main#maintenance #support01 figure {
  text-align: right;
  margin-top: -210px;
}
main#maintenance #support02 {
  background: url(../img/maintenance/bcg_support.png) no-repeat;
  background-size: cover;
  padding: 70px 70px 70px 300px;
  margin-top: -50px;
}
main#maintenance #support02 h2 {
  color: #8cc63f;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 20px;
  line-height: 1.3;
}
main#maintenance #support02 p {
  margin-bottom: 20px;
}

main#maintenance #support03 {
  margin: 60px auto 0;
  text-align: center;
  max-width: 1200px;
}
main#maintenance #support03 h2 {
  color: #8cc63f;
  font-weight: bold;
  font-size: 1.8em;
  margin-bottom: 10px;
  line-height: 1.3;
}
main#maintenance #support03 p {
  margin-bottom: 20px;
}

main#maintenance #support03 p.attent {
  text-align: right;
}

main#maintenance #support03 ul {
  display: flex;
  justify-content: space-between;
  width: 96%;
  margin: auto;
}

main#maintenance #support03 ul li {
  width: 30%;
}

main#maintenance #support03 ul li {
  border: solid 4px #ff9900;
  border-radius: 10px;
}
main#maintenance #support03 ul li:nth-child(2) {
  border: solid 4px #8cc63f;
}
main#maintenance #support03 ul li:nth-child(3) {
  border: solid 4px #9966ff;
}
main#maintenance #support03 ul li h3 {
  background: url(../img/maintenance/bcg_supportttl01.png);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.4em;
}

main#maintenance #support03 ul li:nth-child(2) h3 {
  background: url(../img/maintenance/bcg_supportttl02.png);
}
main#maintenance #support03 ul li:nth-child(3) h3 {
  background: url(../img/maintenance/bcg_supportttl03.png);
}

main#maintenance #support03 ul li div {
  background: rgba(255, 153, 0, .15);
  color: #ff1d25;
  font-weight: bold;
  text-align: center;
  font-size: 1.4em;
}

main#maintenance #support03 ul li:nth-child(2) div {
  background: rgba(140, 198, 0, .15);
}

main#maintenance #support03 ul li:nth-child(3) div {
  background: rgba(153, 102, 255, .15);
}

main#maintenance #support03 ul li dl{
  padding: 10px 20px;
  text-align: left;
}
main#maintenance #support03 ul li dl dt {
  color: #ff1d25;
}
main#maintenance #support03 ul li dl dd {
  line-height: 1.2;
  margin-bottom: 1em;
}
main#maintenance #support03 ul li dl dd.l8 {
  height: 6em;
}

main#maintenance #support03 ul li dl dd dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}

main#maintenance #support03 ul li dl dd dl dt {
  width: 50%;
  color: #000;
}
main#maintenance #support03 ul li dl dd dl dd {
  width: 50%;
  text-align: right;
  color: #ff1d25;
  font-weight: bold;
  font-size: 1.6em;
  margin-bottom: 0;
}

main#maintenance #support03 ul li dl dd dl dd span {
  display: inline;
}

main#maintenance #support03 ul li dl dd span {
  display: block;
  font-size: .8em;
}

main#maintenance #support03 p.attent02 {
  text-align: left;
  width: 95%;
  margin: 20px auto 100px;
  line-height: 1.3;
}

main#maintenance #support03 p.attent02 em{
  color: #ff1d25;
  font-style: normal;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  main#maintenance #mente01 {
    margin: 5%;
  }
  main#maintenance #mente01 figure {
    margin-top: 0;
    width: 50%;
    margin-left: auto;
  }
  main#maintenance #mente02 {
    padding: 10% 5%;
    margin-top: -50px;
  }
  main#maintenance #mente02 h2 {
    font-size: 1em;
    margin-bottom: 2%;
  }
  main#maintenance #mente02 p {
    margin-bottom: 2%;
  }
  main#maintenance #mente03 {
    max-width: 1200px;
    margin: 5%;
  }
  main#maintenance #mente03 h2 {
    width: auto;
    margin: 5% auto 2%;
    font-size: 1.4em;
  }
  main#maintenance #mente03 p {
    width: auto;
    margin: auto;
  }
  main#maintenance #mente04 {
    max-width: 1200px;
    margin: 5%;
  }
  main#maintenance #mente04 h2 {
    width: auto;
    margin: 5% auto 2%;
    font-size: 1.4em;
  }
  main#maintenance #mente04 p {
    width: auto;
    margin: auto;
  }
  main#maintenance #mente04 .attent {
    padding: 5%;
  }
  main#maintenance #mente05 {
    max-width: 1200px;
    margin: 5% auto 0;
  }
  main#maintenance #mente05 ul {
    display: block;
    margin: 5%;
  }
  main#maintenance #mente05 li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 5%;
  }
  main#maintenance #mente05 li h2 {
    background: url(../img/maintenance/bcg_bankinttl.png) no-repeat;
    color: #fff;
    font-size: 1.8em;
    height: auto;
    padding: 5%;
    text-align: center;
  }
  main#maintenance #mente05 li p {
    padding: 5%;
  }
  main#maintenance #mente05 li:last-child {
    border: solid 4px #8cc63f;
  }
  main#maintenance #mente05 li:last-child h2 {
    background: url(../img/maintenance/bcg_mangattl.png) no-repeat;
  }

  main#maintenance #support01 {
    margin: 50px 5% 0;
  }
  main#maintenance #support01 figure {
    margin-top: 0;
    width: 50%;
    margin-left: auto;
  }
  main#maintenance #support02 {
    padding: 12% 5% 5%;
    margin-top: -50px;
  }
  main#maintenance #support02 h2 {
    font-size: 1em;
    margin-bottom: 2%;
  }
  main#maintenance #support02 p {
    margin-bottom: 2%;
  }

  main#maintenance #support03 {
    width: 90%;
    margin-top: 20px;
  }
  main#maintenance #support03 h2 {
    font-size: 1.5em;
 }

   main#maintenance #support03 ul {
    width: 100%;
    display: block;
  }
  main#maintenance #support03 ul li {
    width: 100%;
    margin-bottom: 1em;
  }
  main#maintenance #support03 ul li dl dd.l8 {
    height: auto;
  }

  main#maintenance #support03 p.attent02 {
    margin-bottom: 2em;
  }
  main#maintenance #support03 p.attent {
    text-align: left;
  }



}


main#shop #shop01 {
  max-width: 1200px;
  margin: 100px auto;
}
main#shop #shop01 h1 {
  background-color: #000;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#shop #shop01 table {
  border: solid 1px #000;
  margin-top: 50px;
  width: 100%;
}
main#shop #shop01 table th {
  background-color: #f2f2f2;
  padding: 10px 100px;
  width: 300px;
  border-bottom: solid 1px #ccc;
}
main#shop #shop01 table span.w2 {
  letter-spacing: 2em;
}
main#shop #shop01 table span.w3 {
  letter-spacing: 0.5em;
}
main#shop #shop01 table td {
  padding: 10px 60px;
  border-bottom: solid 1px #ccc;
}
main#shop #shop01 table td br {
  display: none;
}
main#shop #shop01 table td a {
  color: #0071bc;
}
main#shop #shop01 table td a:hover {
  text-decoration: underline;
}
main#shop #shop01 figure {
  width: 750px;
  margin: 100px auto;
}
main#shop #shop01 figure img {
  width: 100%;
}
main#shop #shop01 table + a {
  display: block;
  width: 200px;
  height: 120px;
  margin-top: -140px;
  margin-left: auto;
  margin-right: 20px;
}
main#shop #shop01 table + a img {
  width: 100%;
}
main#shop #shop02 {
  max-width: 1200px;
  margin: 100px auto;
}
main#shop #shop02 h1 {
  background-color: #000;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#shop #shop02 .map {
  margin-bottom: 50px;
}
main#shop #shop02 .map iframe {
  width: 100%;
  height: 640px;
}
main#shop #shop02 .access {
  background-color: #f2f2f2;
  padding: 50px 100px;
  position: relative;
}
main#shop #shop02 .access h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}
main#shop #shop02 .access h2::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 45px;
  background: url(../img/shop/icon_car.svg) no-repeat;
  background-size: contain;
  vertical-align: bottom;
}
main#shop #shop02 .access li.train h2::before {
  width: 80px;
  height: 45px;
  background: url(../img/shop/icon_train.svg) no-repeat;
}
main#shop #shop02 .access p {
  margin-bottom: 25px;
  margin-left: 80px;
}
main#shop #shop02 .access::after {
  display: block;
  content: "";
  width: 350px;
  height: 220px;
  background: url(../img/shop/img_access.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -130px;
  right: 20px;
}
main#shop #shop03 {
  max-width: 1200px;
  margin: 130px auto 100px;
  border: solid 2px #96272d;
  border-radius: 10px;
}
main#shop #shop03 h1 {
  background: url(../img/shop/bcg_only1.png) no-repeat;
  background-size: cover;
  height: 145px;
  line-height: 145px;
  color: #fff;
  font-size: 1.8em;
  padding-left: 40px;
}
main#shop #shop03 h1::before {
  display: inline-block;
  content: "";
  width: 120px;
  height: 120px;
  background: url(../img/shop/icon_only1.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
main#shop #shop03 p {
  margin: 40px;
  line-height: 1.8;
}
main#shop #shop04 {
  max-width: 1200px;
  margin: 100px auto 0;
}
main#shop #shop04 h1 {
  background-color: rgba(150, 39, 45, 0.2);
  color: #96272d;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#shop #shop04 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
main#shop #shop04 li {
  display: flex;
  justify-content: space-between;
  width: 49%;
  padding: 25px 40px;
  align-items: center;
  line-height: 1.8;
  border-bottom: solid 1px #000;
  margin-right: 0.5%;
  position: relative;
}
main#shop #shop04 li img {
  margin-right: 50px;
}
main#shop #shop04 li h2 {
  font-size: 1.4em;
  margin-bottom: 20px;
  font-weight: bold;
}
main#shop #shop04 li h2 span {
  font-weight: normal;
  font-size: 1rem;
  vertical-align: middle;
}
main#shop #shop04 li.w2 {
  width: 100%;
}
main#shop #shop04 li.line-n {
  border-bottom: solid 0 #000;
}
main#shop #shop04 li.line-r::after {
  content: "";
  height: 93%;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: 3.5%;
  right: -1.8%;
}
main#shop #shop04 .attent {
  background-color: rgba(150, 39, 45, 0.1);
  padding: 40px 150px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  main#shop #shop01 {
    margin: 5%;
  }
  main#shop #shop01 h1 {
    line-height: 2;
    margin-bottom: 5%;
  }
  main#shop #shop01 table {
    margin-top: 5%;
    width: 100%;
  }
  main#shop #shop01 table th {
    padding: 0.5em 0 0.5em 0.5em;
    width: 30%;
    vertical-align: middle;
    font-size: 0.8em;
  }
  main#shop #shop01 table span.w2 {
    letter-spacing: 2em;
  }
  main#shop #shop01 table span.w3 {
    letter-spacing: 0.5em;
  }
  main#shop #shop01 table td {
    padding: 0.5em;
    font-size: 0.8em;
  }
  main#shop #shop01 table td br {
    display: block;
  }
  main#shop #shop01 figure {
    width: auto;
    margin: 5% auto;
  }
  main#shop #shop01 figure img {
    width: 100%;
  }
  main#shop #shop01 table + a {
    display: block;
    margin-top: 0%;
    margin-right: 2%;
    width: 35%;
    margin-top: -10%;
    height: auto;
  }
  main#shop #shop01 table + a img {
    width: 100%;
  }
  main#shop #shop02 {
    max-width: 1200px;
    margin: 5%;
  }
  main#shop #shop02 h1 {
    font-size: 1.6em;
    line-height: 2;
    margin-bottom: 5%;
  }
  main#shop #shop02 .map {
    margin-bottom: 5%;
  }
  main#shop #shop02 .map iframe {
    width: 100%;
    height: 300px;
  }
  main#shop #shop02 .access {
    padding: 5%;
  }
  main#shop #shop02 .access h2 {
    font-size: 1.4em;
    margin-bottom: 2%;
  }
  main#shop #shop02 .access h2::before {
    width: 60px;
    height: 30px;
  }
  main#shop #shop02 .access li.train h2 {
    display: flex;
    line-height: 1.2;
  }
  main#shop #shop02 .access li.train h2::before {
    width: 80px;
    height: 30px;
  }
  main#shop #shop02 .access p {
    margin: 5%;
  }
  main#shop #shop02 .access::after {
    display: block;
    width: 50%;
    margin-left: auto;
    height: 10%;
    position: relative;
    bottom: 0;
    right: 0;
  }
  main#shop #shop03 {
    max-width: 1200px;
    margin: 5%;
  }
  main#shop #shop03 h1 {
    height: auto;
    font-size: 1.4em;
    padding-left: 0;
    text-align: center;
    line-height: 3.5;
  }
  main#shop #shop03 h1::before {
    width: 60px;
    height: 60px;
  }
  main#shop #shop03 p {
    margin: 5%;
    line-height: 1.6;
  }
  main#shop #shop04 {
    max-width: 1200px;
    margin: 5%;
  }
  main#shop #shop04 h1 {
    line-height: 2;
    margin-bottom: 5%;
  }
  main#shop #shop04 ul {
    margin-bottom: 5%;
  }
  main#shop #shop04 li {
    display: block;
    width: 48%;
    padding: 3% 1%;
  }
  main#shop #shop04 li img {
    margin-right: 0;
  }
  main#shop #shop04 li h2 {
    font-size: 1.4em;
    margin-bottom: 0;
    font-weight: bold;
    margin-top: 5%;
  }
  main#shop #shop04 li h2 span {
    display: block;
    line-height: 1.2;
  }
  main#shop #shop04 li.line-r::after {
    right: -3%;
  }
  main#shop #shop04 .attent {
    padding: 5%;
    line-height: 1.8;
  }
}
main#credit {
  line-height: 1.6;
}
main#credit #credit01 {
  max-width: 1200px;
  margin: 100px auto 0;
}
main#credit #credit01 figure {
  text-align: right;
  margin-top: -100px;
}
main#credit #credit02 {
  background: url(../img/credit/bcg_credit.jpg) no-repeat;
  background-size: cover;
  padding: 70px 50px 70px 300px;
  margin-top: -50px;
}
main#credit #credit02 h2 {
  color: #0071bc;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 10px;
}
main#credit #credit02 p {
  margin-bottom: 20px;
}
main#credit #credit03 {
  max-width: 1200px;
  margin: 100px auto 0;
}
main#credit #credit03 figure {
  text-align: right;
  margin-top: -100px;
}
main#credit #credit04 {
  background: url(../img/credit/bcg_insurance.jpg) no-repeat;
  background-size: cover;
  padding: 70px 50px 70px 300px;
  margin-top: -50px;
}
main#credit #credit04 h2 {
  color: #0071bc;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 10px;
}
main#credit #credit04 p {
  margin-bottom: 20px;
}
main#credit #credit05 {
  max-width: 1200px;
  margin: 100px auto 0;
}
main#credit #credit05 h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #96272d;
  text-align: center;
  margin-bottom: 60px;
}
main#credit #credit05 ul {
  display: flex;
  justify-content: space-between;
}
main#credit #credit05 li {
  width: 30%;
}
main#credit #credit05 li h2 {
  background: url(../img/credit/bcg_reason.png) no-repeat;
  height: 150px;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  font-size: 1.7em;
  text-align: center;
  box-shadow: 5px 5px 5px #999;
  border-radius: 10px;
  position: relative;
  padding-top: 30px;
  line-height: 1.2;
  margin-bottom: 50px;
}
main#credit #credit05 li h2.line2 {
  padding-top: 50px;
}
main#credit #credit06 {
  max-width: 1200px;
  margin: 30px auto 0;
}
main#credit #credit06 h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #f7931e;
  text-align: center;
  margin-bottom: 30px;
}
main#credit #credit06 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main#credit #credit06 li {
  width: 30%;
  background: url(../img/credit/bcg_hoken.png) no-repeat;
  height: 100px;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  font-size: 1.7em;
  text-align: center;
  box-shadow: 5px 5px 5px #999;
  border-radius: 10px;
  position: relative;
  line-height: 100px;
  margin-bottom: 50px;
}
main#credit #credit06 li.line2 {
  padding-top: 20px;
  line-height: 1.2;
}
main#credit #credit06 .strongtxt {
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  color: #f7931e;
  margin-bottom: 15px;
}
main#credit #credit06 p {
  margin: 1rem 50px;
}

@media screen and (max-width: 768px) {
  main#credit {
    line-height: 1.6;
  }
  main#credit #credit01 {
    margin: 5%;
  }
  main#credit #credit01 figure {
    margin-top: -2%;
    width: 50%;
    margin-left: auto;
  }
  main#credit #credit02 {
    padding: 10% 5% 5%;
    margin-top: -50px;
  }
  main#credit #credit02 h2 {
    color: #0071bc;
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  main#credit #credit02 p {
    margin-bottom: 20px;
  }
  main#credit #credit03 {
    max-width: 1200px;
    margin: 5%;
  }
  main#credit #credit03 figure {
    margin-top: 0;
    width: 50%;
    margin-left: auto;
  }
  main#credit #credit04 {
    padding: 10% 5% 5%;
    margin-top: -50px;
  }
  main#credit #credit04 p {
    margin-bottom: 5%;
  }
  main#credit #credit05 {
    margin: 5%;
  }
  main#credit #credit05 h1 {
    font-size: 1.6em;
    margin-bottom: 5%;
  }
  main#credit #credit05 ul {
    display: block;
  }
  main#credit #credit05 li {
    width: 100%;
    margin-bottom: 5%;
  }
  main#credit #credit05 li h2 {
    height: auto;
    font-size: 1.5em;
    padding: 3%;
    margin-bottom: 3%;
  }
  main#credit #credit05 li h2.line2 {
    padding-top: 3%;
  }
  main#credit #credit06 {
    margin: 5%;
  }
  main#credit #credit06 h1 {
    font-size: 1.6em;
    margin-bottom: 5%;
  }
  main#credit #credit06 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  main#credit #credit06 li {
    width: 48%;
    height: auto;
    font-size: 1.4em;
    padding: 5% 0;
    margin-bottom: 5%;
    line-height: 1.2;
  }
  main#credit #credit06 li.line2 {
    padding-top: 5%;
  }
  main#credit #credit06 .strongtxt {
    font-size: 1.4em;
    margin-bottom: 5%;
  }
  main#credit #credit06 p {
    margin: 5%;
  }
}
main#recruit {
  line-height: 1.6;
  background: #fff url(../img/recruit/bcg_recruit.jpg) no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
main#recruit #recruit01 {
  max-width: 1200px;
  margin: 100px auto 0;
  line-height: 1.6;
}
main#recruit #recruit01 h1 {
  background-color: #000;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#recruit #recruit01 p {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 50px;
}
main#recruit #recruit01 table {
  border: solid 1px #000;
  margin-top: 50px;
  width: 100%;
}
main#recruit #recruit01 table caption {
  border: solid 1px #000;
  border-bottom: none;
  padding: 10px;
  text-align: center;
}
main#recruit #recruit01 table th {
  background-color: #f2f2f2;
  padding: 10px 100px;
  width: 300px;
  border-bottom: solid 1px #ccc;
}
main#recruit #recruit01 table span.w2 {
  letter-spacing: 2em;
}
main#recruit #recruit01 table span.w3 {
  letter-spacing: 0.5em;
}
main#recruit #recruit01 table td {
  padding: 10px 60px;
  border-bottom: solid 1px #ccc;
}
main#recruit #recruit01 table tr:last-child th {
  border-bottom: solid 1px #000;
}
main#recruit #recruit01 table tr:last-child td {
  border-bottom: solid 1px #000;
}
main#recruit #recruit01 .attent {
  width: 820px;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
}
main#recruit #recruit01 .attent figure {
  width: 570px;
}
main#recruit #recruit01 .attent figure img {
  width: 100%;
}
main#recruit #recruit01 .attent a {
  display: block;
  background-color: #f15a24;
  padding: 55px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  font-size: 1.4em;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  main#recruit #recruit01 {
    margin: 5%;
  }
  main#recruit #recruit01 h1 {
    font-size: 1.4em;
    line-height: 1.2;
    margin-bottom: 5%;
    padding: 5%;
  }
  main#recruit #recruit01 p {
    margin-bottom: 5%;
    margin-top: 5%;
  }
  main#recruit #recruit01 table {
    margin-top: 5%;
    width: 100%;
  }
  main#recruit #recruit01 table caption {
    padding: 10px;
    text-align: center;
  }
  main#recruit #recruit01 table th {
    padding: 2% 0 2% 2%;
    width: 30%;
    font-size: 0.8em;
  }
  main#recruit #recruit01 table span.w2 {
    letter-spacing: 2em;
  }
  main#recruit #recruit01 table span.w3 {
    letter-spacing: 0.5em;
  }
  main#recruit #recruit01 table td {
    padding: 2%;
    font-size: 0.8em;
  }
  main#recruit #recruit01 .attent {
    width: 100%;
    margin: 0;
    display: block;
    padding: 5%;
    text-align: center;
  }
  main#recruit #recruit01 .attent figure {
    width: 100%;
  }
  main#recruit #recruit01 .attent a {
    padding: 5%;
    color: #fff;
    width: 100%;
    height: auto;
    margin-top: 5%;
  }
  main#recruit #recruit01 .attent a br {
    display: none;
  }
}
main#campaign {
  line-height: 1.6;
  background: #fff url(../img/campaign/bcg_camp.png) no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
main#campaign .campcont {
  width: 1000px;
  margin: 100px auto 0;
  line-height: 1.6;
}
main#campaign .campcont h1 {
  background-color: #96272d;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#campaign .campcont p.koushin {
  text-align: right;
  border-bottom: dashed 2px #96272d;
  margin-bottom: 60px;
}
main#campaign .campcont p {
  margin-bottom: 1em;
}
main#campaign .campcont p strong {
  color: #96272d;
}
main#campaign .campcont .flex-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
main#campaign .campcont .flex-area img {
  margin-left: 20px;
}
main#campaign .campcont figure {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
main#campaign .campcont figure a {
  width: 49%;
}
main#campaign .campcont figure a img {
  width: 100%;
}
main#campaign .campcont figure img {
  width: 49%;
}
main#campaign .campcont figure.w100 {
  display: block;
}
main#campaign .campcont figure.w100 img {
  width: 100%;
}

main#campaign .campcont figure.w30 {
  display: block;
}
main#campaign .campcont figure.w30 img {
  width: 30%;
}

@media screen and (max-width: 768px) {
  main#campaign .campcont {
    width: auto;
    margin: 5%;
  }
  main#campaign .campcont h1 {
    font-size: 1.6em;
    line-height: 1.2;
    margin-bottom: 5%;
    padding: 5%;
  }
  main#campaign .campcont p.koushin {
    margin-bottom: 5%;
  }
  main#campaign .campcont p {
    margin-bottom: 1em;
  }
  main#campaign .campcont .flex-area {
    display: block;
  }
  main#campaign .campcont .flex-area img {
    margin-left: 0;
  }
  main#campaign .campcont figure {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 5%;
  }
  main#campaign .campcont figure img {
    width: 48%;
  }
}
main#contact {
  line-height: 1.6;
}
main#contact #contact01 {
  max-width: 1200px;
  margin: 100px auto;
  line-height: 1.6;
}
main#contact #contact01 h1 {
  background-color: #000;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#contact #contact01 .attent {
  background-color: #f2f2f2;
  padding: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
main#contact #contact01 .attent::before {
  display: inline-block;
  content: "";
  background: url(../img/contact/img_soudan.svg) no-repeat;
  width: 275px;
  height: 75px;
  margin-right: 30px;
}
main#contact #contact01 dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: dotted 2px #ccc;
  margin-bottom: 50px;
}
main#contact #contact01 dl dt {
  width: 40%;
  border-bottom: dotted 2px #ccc;
  padding: 30px;
  text-align: center;
}
main#contact #contact01 dl dt span.hisu {
  color: #c1272d;
  font-size: 1em;
}
main#contact #contact01 dl dt span {
  font-size: 0.8em;
}
main#contact #contact01 dl dt.pt {
  line-height: 8;
}
main#contact #contact01 dl dd {
  width: 60%;
  border-bottom: dotted 2px #ccc;
  padding: 20px;
}
main#contact #contact01 input,
main#contact #contact01 textarea,
main#contact #contact01 select {
  border: solid 1px #999;
  width: 480px;
  padding: 10px;
}
main#contact #contact01 .w640 {
  width: 640px;
}
main#contact #contact01 .w260 {
  width: 260px;
}
main#contact #contact01 p {
  text-align: center;
}
main#contact #contact01 p strong {
  color: #c1272d;
}
main#contact #contact01 .btn-area {
  position: relative;
}
main#contact #contact01 .btn-area input {
  width: 280px;
  line-height: 50px;
  color: #fff;
  background-color: #96272d;
  text-align: center;
  padding: 0;
  line-height: 50px;
}
main#contact #contact01 .btn-area::after {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/contact/img_arrow.png) no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: 10px;
  top: 30%;
}
main#contact #contact02 {
  max-width: 1200px;
  margin: 100px auto;
  line-height: 1.6;
}
main#contact #contact02 h1 {
  background-color: #000;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#contact #contact02 p {
  text-align: center;
}
main#contact #contact02 .flex-area {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
main#contact #contact02 .flex-area a {
  width: 48%;
}
main#contact #contact02 .flex-area a img {
  width: 100%;
}
main#contact #contact03 {
  max-width: 1200px;
  margin: 100px auto;
  line-height: 1.6;
}
main#contact #contact03 h1 {
  background-color: #000;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 50px;
}
main#contact #contact03 p {
  width: 800px;
  margin: auto;
  padding-left: 1em;
  text-indent: -1em;
}
main#contact #contact03 ul {
  width: 800px;
  margin: auto;
  padding-left: 3em;
  color: #0071bc;
  list-style: disc;
}
main#contact #contact03 p.txt-c {
  text-align: center;
}
main#contact #contact03 figure {
  width: 700px;
  margin: 50px auto;
}
main#contact #contact03 figure img {
  width: 100%;
}
main#contact #contact03 h2 {
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
  width: 800px;
  margin: 50px auto;
  border-bottom: solid 1px #000;
}
main#contact #contact03 ol {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 60px auto;
}
main#contact #contact03 ol li {
  width: 48%;
  border: solid 5px #f7931e;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  font-size: 0.8em;
}
main#contact #contact03 ol li h3 {
  width: 435px;
  margin-top: -70px;
  margin-left: -50px;
  margin-bottom: 0;
}
main#contact #contact03 ol li h3 img {
  width: 100%;
  margin-bottom: 0;
}
main#contact #contact03 ol li p {
  width: auto;
}
main#contact #contact03 ol li img {
  width: 190px;
  margin-bottom: 50px;
}
main#contact #contact03 ol li:last-child h3 {
  width: 330px;
}
main#contact #contact03 ol li:last-child h3 img {
  width: 100%;
}
main#contact #contact03 ol li:last-child .flex-area {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
main#contact #contact03 ol li:last-child .flex-area img {
  margin-bottom: 0;
  margin-right: 30px;
}
main#contact #contact03 ol li:last-child .flex-area p {
  text-align: left;
}
main#contact #contact03 ol li:last-child .flex-area span {
  display: block;
  position: absolute;
  bottom: 0;
}
main#contact #contact03 h3 {
  font-size: 1.4em;
  font-weight: bold;
  width: 800px;
  margin: 20px auto 5px;
}
main#contact #contact03 p.attent {
  text-align: right;
}
main#contact #contact03 p.attent img {
  width: 230px;
  margin-right: 0;
  margin-top: -250px;
}
main#contact #contact-thanks {
  max-width: 1200px;
  margin: 100px auto;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  main#contact {
    line-height: 1.6;
  }
  main#contact #contact01 {
    margin: 5%;
  }
  main#contact #contact01 h1 {
    padding: 5%;
    line-height: 1.2;
    margin-bottom: 5%;
  }
  main#contact #contact01 .attent {
    padding: 5%;
    display: block;
    margin-bottom: 5%;
  }
  main#contact #contact01 .attent::before {
    display: block;
    content: "";
    background: url(../img/contact/img_soudan.svg) no-repeat;
    width: 60%;
    height: 8%;
    margin-right: auto;
    margin-left: auto;
  }
  main#contact #contact01 dl {
    display: block;
    margin-bottom: 5%;
  }
  main#contact #contact01 dl dt {
    width: auto;
    border-bottom: none;
    padding: 5% 5% 0;
  }
  main#contact #contact01 dl dt.pt {
    line-height: 1.2;
  }
  main#contact #contact01 dl dd {
    width: auto;
    padding: 1% 5% 5%;
  }
  main#contact #contact01 input,
main#contact #contact01 textarea,
main#contact #contact01 select {
    width: 100%;
    padding: 5%;
  }
  main#contact #contact01 .w640 {
    width: 100%;
  }
  main#contact #contact01 .w260 {
    width: 100%;
  }
  main#contact #contact01 .btn-area {
    position: relative;
    margin: 5%;
  }
  main#contact #contact01 .btn-area input {
    width: 100%;
  }
  main#contact #contact01 .btn-area::after {
    display: block;
  }
  main#contact #contact02 {
    margin: 5%;
  }
  main#contact #contact02 h1 {
    padding: 5%;
    line-height: 1.2;
    margin-bottom: 5%;
  }
  main#contact #contact02 .flex-area {
    display: block;
    margin-top: 5%;
  }
  main#contact #contact02 .flex-area img {
    width: 100%;
    margin-bottom: 5%;
  }
  main#contact #contact03 {
    margin: 5%;
  }
  main#contact #contact03 h1 {
    padding: 5%;
    line-height: 1.2;
    margin-bottom: 5%;
  }
  main#contact #contact03 p {
    width: auto;
    margin: 0%;
    padding-left: 1em;
    text-indent: -1em;
  }
  main#contact #contact03 ul {
    width: auto;
    margin: auto;
    padding-left: 3em;
    color: #0071bc;
    list-style: disc;
  }
  main#contact #contact03 p.txt-c {
    text-align: center;
  }
  main#contact #contact03 figure {
    width: 100%;
    margin: 5% 0;
  }
  main#contact #contact03 figure img {
    width: 100%;
  }
  main#contact #contact03 h2 {
    width: auto;
    margin: 5% auto;
  }
  main#contact #contact03 ol {
    display: block;
    width: auto;
    margin: auto;
  }
  main#contact #contact03 ol li {
    width: 100%;
    padding: 5%;
    margin-top: 10%;
  }
  main#contact #contact03 ol li h3 {
    width: 80%;
    margin-top: -45px;
    margin-left: 0;
    margin-bottom: 0;
  }
  main#contact #contact03 ol li h3 img {
    width: 100%;
    margin-bottom: 0;
  }
  main#contact #contact03 ol li p {
    width: auto;
  }
  main#contact #contact03 ol li img {
    width: 70%;
    margin-bottom: 5%;
  }
  main#contact #contact03 ol li:last-child h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 5%;
  }
  main#contact #contact03 ol li:last-child h3 img {
    width: 70%;
  }
  main#contact #contact03 ol li:last-child .flex-area {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
  }
  main#contact #contact03 ol li:last-child .flex-area img {
    margin-right: 5%;
    width: 50%;
  }
  main#contact #contact03 h3 {
    width: auto;
    margin: 5% 0 5% 1em;
    text-indent: -1em;
  }
  main#contact #contact03 p.attent {
    text-align: center;
  }
  main#contact #contact03 p.attent img {
    width: 50%;
    margin-right: 0;
    margin-top: 0;
  }
}
#calendar {
  text-align: center;
  width: 100%;
  /*日曜日*/
  /*土曜日*/
  /*前後月の日付*/
  /*本日*/
}
#calendar table {
  outline: 2px solid #ddd;
  border-collapse: collapse;
  width: 100%;
}
#calendar th {
  color: #000;
}
#calendar th,
#calendar td {
  outline: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
#calendar td:first-child {
  color: red;
}
#calendar td:last-child {
  color: blue;
}
#calendar td.disabled {
  color: #ccc;
}
#calendar td.today {
  background-color: #D65E72;
  color: #fff;
}

/*ボタン*/
#next-prev-button {
  position: relative;
}

#next-prev-button button {
  cursor: pointer;
  background: #B78D4A;
  color: #fff;
  border: 1px solid #B78D4A;
  border-radius: 4px;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  margin: 1rem 0;
}

#next-prev-button button:hover {
  background-color: #D4BB92;
  border-color: #D4BB92;
}

#prev {
  float: left;
}

#next {
  float: right;
}

.blue-link {
    color: blue;
    text-decoration: none; /* 通常時は下線を非表示にする */
}

.blue-link:hover {
    text-decoration: underline; /* マウスオーバー時に下線を表示する */
}
