@charset "UTF-8";
/*--------------------------
Common Styles
---------------------------*/
.morebutton {
  display: inline-block;
  font-size: 1.8rem;
  background-color: #a8011b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 15px 80px;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.4);
  font-size: 1.6rem;
}

.morebutton::before {
  content: "\e807";
  font-family: 'fontello';
  font-size: 1.4rem;
  display: inline-block;
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  z-index: 1000;
}

.morebutton::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0;
  height: 100%;
  background: #000000;
  transition: 0.3s;
  z-index: -1;
}

.morebutton:hover::after {
  width: 100%;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .morebutton {
    padding: 15px 60px;
    font-size: 1.4rem;
  }
}

/*--------------------------
Main Visual / it is necessary JScript
---------------------------*/
#main_visual {
  width: 100%;
  height: 370px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  #main_visual {
    height: 170px;
  }
}

#main_visual .backarea {
  width: 100vw;
  height: 320px;
  position: absolute;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea {
    height: 150px;
  }
}

#main_visual .backarea::before {
  content: "";
  display: block;
  width: 100vw;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(102, 0, 15, 0.5);
  z-index: 1000;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea::before {
    height: 150px;
  }
}

#main_visual .backarea .crop {
  width: 1070px;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  clip: rect(0, 1070px, 1070px, 0);
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .crop {
    width: 90vw;
    height: 150px;
    clip: rect(0, 90vw, 90vw, 0);
  }
}

#main_visual .backarea .titlearea {
  width: 100vw;
  height: 320px;
  background-size: cover;
  background-position: center calc(30% - 50px);
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50px;
  left: -20vw;
  z-index: 2000;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .titlearea {
    height: 150px;
    background-position: center calc(30% - 30px);
    top: 30px;
  }
}

#main_visual .backarea .titlearea h1 {
  font-size: 5.0rem;
  color: #ffffff;
  text-align: center;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .titlearea h1 {
    font-size: 2.5rem;
  }
}

#main_visual .backarea .titlearea h1 span {
  display: block;
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .titlearea h1 span {
    font-size: 1.5rem;
    margin-top: 10px;
    letter-spacing: 0;
  }
}

/*--------------------------
index / Common
---------------------------*/
.page_index #main_visual .backarea, .page_index #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-14.jpg");
}

@media only screen and (max-width: 768px) {
  .page_index #main_visual .backarea, .page_index #main_visual .titlearea {
    background-size: 150%;
  }
}

.page_index #main_visual .backarea {
  background-position: center 55%;
}

@media only screen and (max-width: 768px) {
  .page_index #main_visual .backarea {
    background-size: 150%;
    background-position: center calc(70% + 30px);
  }
}

.page_index #main_visual .backarea::before {
  background-color: rgba(22, 34, 59, 0.5);
}

.page_index #main_visual .titlearea {
  background-position: center calc(55% - 50px);
}

@media only screen and (max-width: 768px) {
  .page_index #main_visual .titlearea {
    background-size: 150%;
    background-position: center 70%;
  }
}

/*--------------------------
index / Section01
---------------------------*/
.page_index #section01 {
  width: 1070px;
  margin: 0 auto;
  padding-bottom: 150px;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 {
    width: 100%;
    padding-bottom: 80px;
  }
}

.page_index #section01 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1070px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 ul {
    width: 95%;
    margin: 0 auto;
    justify-content: space-around;
    align-content: space-between;
  }
}

.page_index #section01 ul li {
  width: 343px;
  height: 343px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 ul li {
    width: 45vw;
    height: 45vw;
    margin-top: 3%;
    padding: 10px;
  }
}

.page_index #section01 ul li img {
  position: absolute;
  top: 0;
  left: 0;
}

.page_index #section01 ul li a {
  color: #ffffff;
  z-index: 1;
  transition-duration: 0.5s;
}

.page_index #section01 ul li a p {
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 ul li a p {
    font-size: 2.0rem;
    text-align: center;
  }
}

.page_index #section01 ul li a p span {
  display: block;
  font-family: Y "Hiragino Sans GB", "Hiragino Sans GB W3", "STXihei", "Microsoft YaHei", "微软雅黑", "SimSun", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 ul li a p span {
    font-size: 1.3rem;
  }
}

.page_index #section01 ul li a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page_index #section01 ul li:nth-of-type(n+4) {
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 ul li:nth-of-type(n+4) {
    margin-top: 3%;
  }
}

.page_index #section01 ul li::before {
  content: "";
  display: block;
  width: 92%;
  height: 92%;
  border: 2px solid #a8011b;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 ul li::before {
    border: 1px solid #ffffff;
    opacity: 1;
  }
}

.page_index #section01 ul li::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.page_index #section01 ul li:hover a {
  color: #a8011b;
}

.page_index #section01 ul li:hover img {
  scale: 120%;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.page_index #section01 ul li:hover::before {
  opacity: 1;
}

.page_index #section01 ul li:hover::after {
  background-color: rgba(255, 255, 255, 0.6);
}

/*--------------------------
Application Common
---------------------------*/
.common_application #navigationtab {
  width: 100%;
  background-color: #f2f2f2;
  padding: 45px 0 25px;
}

@media only screen and (max-width: 768px) {
  .common_application #navigationtab {
    padding: 15px 5% 25px;
  }
}

.common_application #navigationtab ul {
  width: 1070px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

@media only screen and (max-width: 768px) {
  .common_application #navigationtab ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}

.common_application #navigationtab ul li {
  flex-grow: 1;
  width: 100%;
  text-align: center;
  border: 1px solid #a8011b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .common_application #navigationtab ul li {
    flex-grow: initial;
    width: calc(50% - 5px);
    margin-top: 10px;
  }
}

.common_application #navigationtab ul li a {
  display: inline-block;
  padding: 12px 0;
  width: 100%;
  color: #a8011b;
  font-size: 1.4rem;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .common_application #navigationtab ul li a {
    font-size: 3.5vw;
    line-height: 1.3;
  }
}

.common_application #navigationtab ul li + li {
  margin-left: 10px;
}

@media only screen and (max-width: 768px) {
  .common_application #navigationtab ul li + li {
    margin-left: 0;
  }
}

.common_application #navigationtab ul li.active, .common_application #navigationtab ul li:hover {
  background-color: #a8011b;
}

.common_application #navigationtab ul li.active a, .common_application #navigationtab ul li:hover a {
  color: #ffffff;
}

.common_application #section01 {
  position: relative;
  padding: 0 0 150px;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 {
    padding-bottom: 80px;
  }
}

.common_application #section01 .wrap {
  width: 1070px;
  margin: 0 auto;
  padding: 0 50px;
  background-color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .wrap {
    width: 90%;
    padding: 0 5%;
  }
}

.common_application #section01 .wrap h2 {
  padding: 50px 0;
  font-size: 3.2rem;
  color: #a8011b;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .wrap h2 {
    padding: 40px 0 20px;
    font-size: 5vw;
  }
}

.common_application #section01 .contentarea {
  width: 100%;
  margin: 0;
  padding: 50px;
  background-color: #f2f2f2;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea {
    padding: 5vw;
  }
}

.common_application #section01 .contentarea .maparea {
  margin-bottom: 50px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .maparea {
    margin-bottom: 40px;
  }
}

.common_application #section01 .contentarea .maparea .imagearea {
  width: 870px;
  height: 500px;
  background-color: #ffffff;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .maparea .imagearea {
    width: 100%;
    height: calc(65vw * 0.75);
  }
}

.common_application #section01 .contentarea .maparea .imagearea .contents {
  width: 870px;
  height: 500px;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .maparea .imagearea .contents {
    width: 100%;
    height: calc(65vw * 0.75);
  }
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin {
  position: absolute;
  overflow: visible;
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .maparea .imagearea .contents .pin {
    display: none;
  }
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .pinhead {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../png/btn-point-plus.png");
  cursor: pointer;
  transition-duration: 0.3s;
  position: absolute;
  z-index: 3000;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon {
  width: 400px;
  display: block;
  border: 10px solid #a8011b;
  position: relative;
  z-index: 5000;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon a {
  display: inline-block;
  height: 70px;
  background-color: #ffffff;
  background-size: 70px 70px;
  background-position: left center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px 0 85px;
  color: #a8011b;
  position: relative;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon a:hover span {
  text-decoration: none;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon a::before {
  content: "";
  width: 1px;
  height: 50px;
  background-color: #cccccc;
  position: absolute;
  top: 10px;
  left: 75px;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon a::after {
  content: "\e812";
  font-family: 'Fontello';
  font-size: 1.8rem;
  position: absolute;
  top: 25px;
  right: 20px;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon a span {
  text-decoration: underline;
  line-height: 1.4;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon a + a {
  border-top: 1px dotted #cccccc;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin .baloon::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #a8011b transparent transparent transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 8px);
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin.close .pinhead {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin.close .baloon {
  display: none;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin.close:hover .pinhead {
  background-image: url("../png/btn-point-plus_active.png");
}

.common_application #section01 .contentarea .maparea .imagearea .contents .pin.open .pinhead {
  background-image: url("../png/btn-point-minus.png");
}

.common_application #section01 .contentarea .maparea .imagearea .contents .baloon-up .baloon {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translateX(-50%) translateX(25px) translateY(-110px);
  transform: translateX(-50%) translateX(25px) translateY(-110px);
}

.common_application #section01 .contentarea .maparea .imagearea .contents .baloon-up-two .baloon {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translateX(-50%) translateX(25px) translateY(-180px);
  transform: translateX(-50%) translateX(25px) translateY(-180px);
}

.common_application #section01 .contentarea .maparea .imagearea .contents .baloon-up-three .baloon {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translateX(-50%) translateX(25px) translateY(-250px);
  transform: translateX(-50%) translateX(25px) translateY(-250px);
}

.common_application #section01 .contentarea .maparea .imagearea .contents .baloon-down .baloon {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translateX(-50%) translateX(25px) translateY(70px);
  transform: translateX(-50%) translateX(25px) translateY(70px);
}

.common_application #section01 .contentarea .maparea .imagearea .contents .baloon-down .baloon::before {
  border-color: transparent transparent #a8011b transparent;
  border-width: 0 8px 10px 8px;
  top: -20px;
}

.common_application #section01 .contentarea .maparea .imagearea .contents .baloon-right-four .baloon {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translateX(75px) translateY(-50%) translateY(25px);
  transform: translateX(75px) translateY(-50%) translateY(25px);
}

.common_application #section01 .contentarea .maparea .imagearea .contents .baloon-right-four .baloon::before {
  border-color: transparent #a8011b transparent transparent;
  border-width: 8px 10px 8px 0;
  left: -20px;
  top: calc(50% - 5px);
}

.common_application #section01 .contentarea .maparea .selector {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .maparea .selector {
    margin-top: 15px;
  }
}

.common_application #section01 .contentarea .maparea .selector li {
  width: 166px;
  height: 100px;
  background-color: #ffffff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .maparea .selector li {
    width: 30%;
    height: 15vw;
  }
}

.common_application #section01 .contentarea .maparea .selector li.active, .common_application #section01 .contentarea .maparea .selector li:hover {
  border: 2px solid #a8011b;
}

.common_application #section01 .contentarea .maparea .selector li + li {
  margin-left: 10px;
}

.common_application #section01 .contentarea .listarea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.common_application #section01 .contentarea .listarea ul li {
  width: calc((100% - 60px) / 3);
  display: flex;
  align-items: center;
  margin-right: 30px;
  padding: 18px 0 18px 18px;
  border: 1px solid #4d4d4d;
  position: relative;
  cursor: pointer;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .listarea ul li {
    width: 100%;
    padding: 12px 40px 12px 12px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.common_application #section01 .contentarea .listarea ul li a {
  line-height: 1.4;
  color: #333333;
}

.common_application #section01 .contentarea .listarea ul li:nth-of-type(n+4) {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .listarea ul li:nth-of-type(n+4) {
    margin-top: 0;
  }
}

.common_application #section01 .contentarea .listarea ul li::after {
  content: "\e812";
  font-family: 'Fontello';
  font-size: 1.8rem;
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .listarea ul li::after {
    top: calc(50% - 10px);
  }
}

.common_application #section01 .contentarea .listarea ul li.active, .common_application #section01 .contentarea .listarea ul li:hover {
  background-color: #a8011b;
  border-color: #a8011b;
  color: #ffffff;
}

.common_application #section01 .contentarea .listarea ul li.active a, .common_application #section01 .contentarea .listarea ul li:hover a {
  color: #ffffff;
}

.common_application #section01 .contentarea .listarea ul li:nth-of-type(3n) {
  margin-right: 0;
}

.common_application #section01 .contentarea .listarea h3 {
  font-size: 2.0rem;
  font-weight: bold;
  border-bottom: 1px solid #333333;
  margin: 40px 0 20px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .common_application #section01 .contentarea .listarea h3 {
    font-size: 1.6rem;
    margin: 20px 0;
  }
}

.common_application #section01::before {
  content: "";
  display: block;
  background-color: #f2f2f2;
  width: 100%;
  height: 330px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .common_application #section01::before {
    height: 50vw;
  }
}

.common_application #modal .modalwindow {
  display: none;
  width: 990px;
  height: 80vh;
  max-height: 720px;
  position: fixed;
  top: 50%;
  left: 50%;
  border: 10px solid #a8011b;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 9500;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow {
    width: 90%;
    height: 80vh;
  }
}

.common_application #modal .modalwindow .title {
  background-color: #a8011b;
  padding: 10px 0 20px 10px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .title {
    padding: 0;
  }
}

.common_application #modal .modalwindow .title h3 {
  font-size: 3.0rem;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .title h3 {
    font-size: 1.8rem;
    padding: 5px 0 15px 0;
  }
}

.common_application #modal .modalwindow .title .close {
  width: 30px;
  height: 30px;
  margin: 0 10px 0 auto;
  padding: 0 15px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .title .close {
    margin-right: 0;
  }
}

.common_application #modal .modalwindow .title .close span {
  display: inline-block;
  position: relative;
  padding: 0;
  width: 2px;
  height: 30px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.common_application #modal .modalwindow .title .close span::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: -14px;
  width: 30px;
  height: 2px;
  background: #ffffff;
}

.common_application #modal .modalwindow .contents {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: calc(100% - 60px);
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .contents {
    flex-wrap: wrap;
    height: 88%;
  }
}

.common_application #modal .modalwindow .contents .image {
  width: 50%;
  padding: 30px;
  overflow-y: auto;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .contents .image {
    width: 100%;
    padding: 20px;
    text-align: center;
  }
}

.common_application #modal .modalwindow .contents .image img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .contents .image img {
    width: auto;
    height: 30vh;
  }
}

.common_application #modal .modalwindow .contents .detail {
  width: 50%;
  height: 100%;
  padding: 30px 50px 30px 0;
  overflow-y: auto;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .contents .detail {
    width: 100%;
    height: 50%;
    padding: 0 5% 15px;
    -webkit-overflow-scrolling: touch;
  }
}

.common_application #modal .modalwindow .contents .detail dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px;
  border-bottom: 1px solid #cccccc;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .contents .detail dl dt {
    font-size: 1.5rem;
    padding: 5px;
  }
}

.common_application #modal .modalwindow .contents .detail dl dd {
  padding: 10px;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .contents .detail dl dd {
    padding: 5px;
  }
}

.common_application #modal .modalwindow .contents .detail dl dd a {
  color: #a8011b;
  border-bottom: 1px solid #a8011b;
  line-height: 1.1;
  display: inline-block;
}

.common_application #modal .modalwindow .contents .detail dl dd a.extlink::after {
  content: "\e802";
  font-family: 'Fontello';
  font-size: 1.2rem;
  vertical-align: 3px;
  margin: 0 5px;
}

.common_application #modal .modalwindow .contents .detail dl dd a.extlink:hover {
  border: none;
}

.common_application #modal .modalwindow .contents .detail dl dd a + a {
  margin-left: 1.0em;
}

.common_application #modal .modalwindow .contents .detail dl dd + dt {
  margin-top: 20px;
}

.common_application #modal .modalwindow .inquiry {
  display: inline-block;
  font-size: 1.8rem;
  background-color: #a8011b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 15px 80px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 50px;
  left: 25%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.common_application #modal .modalwindow .inquiry::before {
  content: "\e807";
  font-family: 'fontello';
  font-size: 1.4rem;
  display: inline-block;
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  z-index: 1000;
}

.common_application #modal .modalwindow .inquiry::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0;
  height: 100%;
  background: #000000;
  transition: 0.3s;
  z-index: -1;
}

.common_application #modal .modalwindow .inquiry:hover::after {
  width: 100%;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .common_application #modal .modalwindow .inquiry {
    display: block;
    width: 90%;
    padding: 15px 0;
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    bottom: inherit;
    left: inherit;
    margin: 20px auto;
    -webkit-transform: inherit;
    transform: inherit;
  }
}

.common_application #transoverlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2000;
  top: 0;
  left: 0;
}

.common_application #overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9200;
  top: 0;
  left: 0;
}

/*--------------------------
Automotive Common
---------------------------*/
.page_automotive #main_visual .backarea, .page_automotive #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-15.jpg");
}

@media only screen and (max-width: 768px) {
  .page_automotive #main_visual .backarea, .page_automotive #main_visual .titlearea {
    background-size: 150%;
  }
}

/*--------------------------
MobilePhone Common
---------------------------*/
.page_mobilephone #main_visual .backarea, .page_mobilephone #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-16.jpg");
}

.page_mobilephone #main_visual .backarea {
  background-position: center 70%;
}

@media only screen and (max-width: 768px) {
  .page_mobilephone #main_visual .backarea {
    background-size: 150%;
    background-position: center calc(75% + 30px);
  }
}

.page_mobilephone #main_visual .titlearea {
  background-position: center calc(70% - 50px);
}

@media only screen and (max-width: 768px) {
  .page_mobilephone #main_visual .titlearea {
    background-size: 150%;
    background-position: center 75%;
  }
}

/*--------------------------
Printer Common
---------------------------*/
.page_printer #main_visual .backarea, .page_printer #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-17.jpg");
}

.page_printer #main_visual .backarea {
  background-position: center 60%;
}

@media only screen and (max-width: 768px) {
  .page_printer #main_visual .backarea {
    background-position: center calc(75% + 30px);
  }
}

.page_printer #main_visual .titlearea {
  background-position: center calc(60% - 50px);
}

@media only screen and (max-width: 768px) {
  .page_printer #main_visual .titlearea {
    background-position: center 75%;
  }
}

/*--------------------------
Cosmetic Brush Common
---------------------------*/
.page_c_brush #main_visual .backarea, .page_c_brush #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-18.jpg");
}

/*--------------------------
Water Usage Common
---------------------------*/
.page_w_usage #main_visual .backarea, .page_w_usage #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-19.jpg");
}

/*--------------------------
Film Common
---------------------------*/
.page_film #main_visual .backarea, .page_film #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-20.jpg");
}
