@charset "UTF-8";
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2a2a2a;
  background: #fff;
}

@media screen and (max-width: 640px) {
  body img {
    width: 100%;
    height: auto;
  }
}

body a{
  -webkit-transition: 0.3s ease-in-out;  -moz-transition: 0.3s ease-in-out;  -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out;
}

body a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
}

.mark {
  background: linear-gradient(transparent 72%, #fbff00 50%);
}

ul,ol{
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header {
  height: 100%;
  border-bottom: 5px solid #8b1d23;
  overflow: hidden;
  width: 100%;
}

header .head-txt{
  background: #941E23;
}

header h1 {
  font-size: 1.4rem;
  font-weight: normal;
  max-width: 1080px;
  margin: 0 auto;
  padding: 5px 0;
  color: #ffffff;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  header h1 {
    text-align: center;
  }
}

header .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

@media screen and (max-width: 640px) {
  header .inner .logo {
    margin: 0 auto;
    width: 40%;
  }
}

header .inner .cta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

@media screen and (max-width: 640px) {
  header .inner .cta {
    display: none;
  }
}


header .inner .cta a{
  text-decoration: none;
  color: #232323;
}

header .inner .cta .mail {
  order: 2;
  text-align: center;
}

header .inner .cta .mail a{
  color: #ffffff;
  background: #0458BE;
  border-radius: 100px;
  display: block;
  padding: 10px 20px;
  font-size: 1.3rem;
  width: 210px;
}

header .inner .cta .mail a span{
  font-size: 1.8rem;
  display: block;
}

header .inner .cta .mail a span:before{
  content: url(../images/icon-mail.svg);
  margin-right: 5px;
}

/*header .inner .cta .tel {
  margin-right: 20px;
  order: 1;
  font-size: 1.4rem;
}

header .inner .cta .tel span{
  font-size: 2.8rem;
  color: #941E23;
  font-weight: bold;
  line-height: 1;
}

header .inner .cta .tel span:before{
  content: url(../images/icon-tel.svg)
}

header .inner .cta .tel small{
  font-size: 1.2rem;
  margin-left: 5px;
  vertical-align: 6px;
}*/

header .inner .cta .tel {
  order: 1;
  text-align: center;
}

header .inner .cta .tel a{
  color: #ffffff;
  background: #FC9791;
  border-radius: 100px;
  display: block;
  padding: 10px 20px;
  font-size: 1.3rem;
  width: 210px;
  margin-right: 10px;
}

header .inner .cta .tel a span{
  font-size: 1.8rem;
  display: block;
}

header .inner .cta .tel a span:before{
  content: url(../images/icon-mail.svg);
  margin-right: 5px;
}


#mainvis {
  background-image: url("../img/back01.jpg");
  background-size: cover;
}

#mainvis .mainvis_pc {
  width: 100%;
  margin: 0 auto;
  background: url(../images/main-img.jpg) center;
  background-size: cover;
  text-align: center;
  padding: 20px 0;
}

@media screen and (max-width: 640px) {
  #mainvis .mainvis_pc {
    display: none;
  }
}

#mainvis .mainvis_pc .hero_pc {
  vertical-align: bottom;
}

.mainvis_pc-img{
  max-width: 1000px;
  background: url(../images/main-txt2@2x.png) center no-repeat;
  background-size: contain;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.mainvis_pc-img img{
  width: 24%;
}

.mainvis_pc-img-right{
  width: 22%;
}

.mainvis_pc-img-right img{
  width: 100%;
  vertical-align: bottom;
}

.mainvis_pc-img-right dl dt{
  color: #ffffff;
  font-size: 18px;
  background: #941E23;
  padding: 5px;
}

.mainvis_pc-img-right dl dd{
  font-size: 18px;
  border: 1px solid #941E23;
  background: #ffffff;
  padding: 10px 0;
  font-weight: bold;
}

#mainvis .mainvis_sp {
  display: none;
  margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
  #mainvis .mainvis_sp {
    display: block;
    margin-bottom: 0;
  }
}

#introduction{
  padding: 0;
}

#introduction h2 {
  background: #7B7B7B;
  text-align: center;
  padding: 40px;
  line-height: 1.2;
  color: #fff;
  font-size: 4.0rem;
  position: relative;
}

@media screen and (max-width: 640px) {
  #introduction h2 {
    padding: 20px;
    color: #fff;
    font-size: 1.8rem;
  }
}

#introduction h2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -35px;
  border: 35px solid transparent;
  border-top: 35px solid #7B7B7B;
}

@media screen and (max-width: 640px) {
  #introduction h2::before {
    margin-left: -25px;
    border: 25px solid transparent;
    border-top: 25px solid #7B7B7B;
  }
}

#introduction .introduction_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px 0;
  background: url(../images/worries-bk.jpg) top right no-repeat;
}

@media screen and (max-width: 640px) {
  #introduction .introduction_inner {
  background: none;
}
}

#introduction .introduction_inner ul {
  position: relative;
  list-style: none;
  margin:10px auto 0;
  width: 94%;

}

@media screen and (max-width: 640px) {
  #introduction .introduction_inner ul {
    padding: 10px;
    margin-bottom: 0;
  }
}

#introduction .introduction_inner ul li {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 24px;
  display: flex;
}

#introduction .introduction_inner ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  #introduction .introduction_inner ul li {
  font-size: 2.4vw;
}
}

#introduction .introduction_inner ul li:before {
  content: url(../images/icon-check.svg);
  margin-right: 5px;
}

#introduction .introduction_inner ul li span{
  color: #941E23;
}

@media screen and (max-width: 640px) {
  #introduction .introduction_inner ul li {
    font-size: 1.6rem;
    line-height: 140%;
  }
}

#introduction .introduction_inner ul .man {
  position: absolute;
  top: 0;
  left: 620px;
  z-index: -1;
  width: 341px;
}

@media screen and (max-width: 640px) {
  #introduction .introduction_inner ul .man {
    display: none;
  }
}

.introduction_after{
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    font-size: 38px;
    color: #ffffff;
    max-width: 845px;
    margin: 0 auto;
    line-height: 1;
    padding: 20px 0;
}

@media screen and (max-width: 820px) {
  .introduction_after{
  max-width: 750px;
}
}

@media screen and (max-width: 640px) {
  .introduction_after{
    width: 85%;
    font-size: 2.8rem;
    padding: 10px 0;
  }
}

.introduction_after:before{
    transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    z-index: -1;
    background-color:#941E23;
}

#catch {
  background: #FDF9F2;
  padding: 55px 30px 55px ;
  margin: 50px 0 0;
}

@media screen and (max-width: 640px) {
  #catch {
    background-image: none;
    padding: 40px 3%;
  }
}

#catch h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 640px) {
  #catch h2 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}

#catch h2 b{
  font-size: 73px;
  color: #941E23;
}

@media screen and (max-width: 640px) {
  #catch h2 b{
  font-size: 4.8rem;
}
}

#catch h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 86px;
    bottom: 0;
    left: 47%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  #catch h2:after{
    width: 70px;
    top: 70px;
    left: 41%;
  }
}

#catch .catch_outer {
  max-width: 980px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.catch-inner{
  max-width: 1000px;
  margin: 50px auto 0;
}

.catch-inner ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-bottom: 170px;
}

.catch-inner ul:after{
  content: url(../images/icon-plus.svg);
  bottom: -130px;
  left: 40%;
  position: absolute;
}

@media screen and (max-width: 640px) {
  .catch-inner ul:after{
    left: 35%;
  }
}

.catch-inner ul li{
  width: calc(33.333% - 2.5%);
  position: relative;
  font-weight: bold;
  line-height: 1;
  box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.13);
}

@media screen and (max-width: 640px) {
  .catch-inner ul li{
    width:100%;
    margin-top: 30px;
  }
}

.catch-inner ul li:nth-child(n + 4){
  margin-top: 35px;
}

.catch-inner ul li img{
  width: 100%;
  height: auto;
}

.catch-inner ul li .catch-num{
  position: absolute;
  top: 50%;
  left: 37%;
  background: #941E23;
  color: #ffffff;
  font-size: 2.9rem;
  width: 20%;
  height: 18%;
  text-align: center;
  box-sizing: border-box;
  padding: 6px 0;
  font-weight: 500;
}

@media screen and (max-width: 975px) {
.catch-inner ul li .catch-num{
  font-size: 2.5vw;
  left: 39%;
}
}

.catch-inner ul li .catch-num span{
  font-size: 1.7rem;
  display: block;
}

@media screen and (max-width: 640px) {
  .catch-inner ul li .catch-num{
  font-size: 3rem;
}
  .catch-inner ul li .catch-num span{
  font-size: 2rem;
}
}

.catch-inner ul li p{
  font-size: 2.2rem;
  line-height: 140%;
  text-align: center;
  background: #ffffff;
  padding: 50px 0 30px;
}

@media screen and (max-width: 975px) {
  .catch-inner ul li p{
  font-size: 2vw;
}
}

@media screen and (max-width: 640px) {
  .catch-inner ul li p{
  font-size: 2.4rem;
}
}

.catch-inner ul + p{
  font-size: 4rem;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 640px) {
  .catch-inner ul + p{
  font-size: 2.8rem;
  font-weight: bold;
}
}

.catch-inner ul + p span{
  color: #941E23;
}

@media screen and (max-width: 640px) {
  #catch .catch_outer {
    flex-flow: column;
    margin-bottom: 0;
  }
}

#catch .catch_outer .catch_inner {
  width: calc(100% / 5 - 2%);
}

@media screen and (max-width: 640px) {
  #catch .catch_outer .catch_inner {
    width: 100%;
    margin-bottom: 48px;
  }
}

#catch .catch_outer .catch_inner .reason {
  margin-bottom: 24px;
}

@media screen and (max-width: 640px) {
  #catch .catch_outer .catch_inner .reason {
    width: 60%;
    margin: 0 auto 24px;
  }
}

#catch .catch_outer .catch_inner .reason .icon {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
}

#catch .catch_outer .catch_inner h4 {
  font-size: 2.0rem;
  text-align: center;
  line-height: 1.2;
  background: #fff000;
  color: #8b1d23;
}

#catch h3 {
  max-width: 980px;
  margin: 0 auto;
}

.transfer-inner{
  max-width: 1000px;
  margin: 0 auto;
  border: 7px solid #941E23;
  position: relative;
}

.transfer-copy{
  position: absolute;
  top: -7px;
  left: -7px;
}

.transfer-copy02{
  display: none;
}

@media screen and (max-width: 640px) {
  .transfer-copy{
    display: none;
  }
  .transfer-copy02{
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
  }
  .transfer-copy02 span{
    color: #941E23;
  }
}

@media screen and (max-width: 640px) {
  #transfer{
    padding: 0 3%;
  }
}

.transfer-inner h2{
  padding: 13px 0 20px;
  text-align: center;
  color: #F7FF24;
  font-size: 2.4rem;
  font-weight: 500;
  background: #941E23;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  .transfer-inner h2{
    font-size: 1.6rem;
    font-weight: bold;
  }
}

.transfer-box{
  padding: 25px;
}

@media screen and (max-width: 640px) {
  .transfer-box{
  padding: 3%;
}
}

.transfer-inner .transfer-box h3{
  font-size: 4rem;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .transfer-inner .transfer-box h3{
  font-size: 2.6rem;
}
}

.transfer-inner .transfer-box h3:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 63px;
    bottom: 0;
    left: 44%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  .transfer-inner .transfer-box h3:after{
    width: 70px;
    top: 50px;
    left: 40%;
  }
}

.transfer-inner .transfer-box h3 span{
  color: #941E23;
}

.transfer-inner .transfer-box h3 + p{
  font-size: 2rem;
  text-align: center;
  margin: 40px 0;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .transfer-inner .transfer-box h3 + p{
    font-size: 1.6rem;
  }
}

.transfer-inner .transfer-box ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.transfer-inner .transfer-box ul li{
  width: calc(33.333% - 1.3%);
  box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.13);
}

@media screen and (max-width: 640px) {
  .transfer-inner .transfer-box ul li{
    width: 100%;
    margin-top: 30px;
  }
  .transfer-inner .transfer-box ul li:first-child{
    margin-top: 0;
  }
}

.transfer-inner .transfer-box ul li img{
  width: 100%;
  height: auto;
}

.transfer-txt{
  padding: 15px 10px 45px;
}

.transfer-txt h4{
  font-size: 1.8rem;
  padding-left: 40px;
  color: #941E23;
  position: relative;
}

.transfer-txt h4 span{
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.6rem;
  color: #ffffff;
  background: #941E23;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
}

.transfer-txt p{
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 500;
}

#regular{
  background: #FDF7F9;
  margin: 60px 0 0;
  padding: 60px 30px;
}

@media screen and (max-width: 640px) {
  #regular{
    margin: 40px 0 0;
    padding: 60px 3%;
  }
}

.regular-inner{
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.regular-inner h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 640px) {
  .regular-inner h2 {
  font-size: 2.6rem;
}
}

.regular-inner h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 58px;
    bottom: 0;
    left: 45%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  .regular-inner h2:after{
    top: 50px;
    left: 39%;
    width: 70px;
  }
}

.regular-inner .regular-copy{
  position: absolute;
  background: #F7FF24;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  color: #941E23;
  font-size: 2rem;
  top: -64px;
  left: 21%;
  text-align: center;
  box-sizing: border-box;
  padding-top: 45px;
  transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .regular-inner .regular-copy{
    left:0px;
    top: -81px;
  }
}

.regular-inner h3 {
  font-size: 3.2rem;
  text-align: center;
  color: #941E23;
  line-height: 110%;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.regular-inner h3:before,
.regular-inner h3:after {
  border-top: 1px solid;
  content: "";
  width: 40%;
}

@media screen and (max-width: 640px) {
  .regular-inner h3:before,
.regular-inner h3:after {
  width: 30%;
}
}

.regular-inner h3:before {
  margin-right: 3%;
}
.regular-inner h3:after {
  margin-left: 3%;
}


.regular-inner h3 span{
  font-size: 1.8rem;
}

@media screen and (max-width: 975px) {
  .regular-inner h3 {
  font-size: 3vw;
}
}

@media screen and (max-width: 640px) {
  .regular-inner h3 {
  font-size: 2.6rem;
}
}

.regular-inner h3 + p{
  text-align: center;
  color: #941E23;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 975px) {
  .regular-inner h3 + p {
  font-size: 2vw;
}
}

@media screen and (max-width: 640px) {
  .regular-inner h3 + p {
  font-size: 1.8rem;
}
}

.regular-txt{
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 20px;
}

.regular-table{
  display: flex;
  margin-top: 35px;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .regular-table{
  flex-wrap: wrap;
}
}

.regular-table table{
  text-align: center;
  width: 48%;
}

@media screen and (max-width: 640px) {
  .regular-table table{
    width: 100%;
  }
  .regular-table table:nth-child(2){
    margin-top: 30px;
  }
}

.regular-table table th{
  background: #043876;
  color: #ffffff;
  font-size: 1.8rem;
  padding: 10px 0;
  font-weight: 500;
  border: 1px solid #cccccc;
  line-height: 1;
}

.regular-table table td{
  font-size: 1.8rem;
  font-weight: 500;
  padding: 10px 0;
  border: 1px solid #cccccc;
  background: #FDF9F2;
  line-height: 1;
}

.red{
  color: #941E23;
}

.regular-inner h4{
  color: #941E23;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 15px 0;
}

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

@media screen and (max-width: 975px) {
  .regular-inner p{
  text-align: left;
}
}

@media screen and (max-width: 640px) {
  .regular-inner p{
  text-align: center;
}
}

.regular-inner ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.regular-inner ul li{
  width: calc(33.333% - 2.5%);
  position: relative;
  line-height: 1;
  margin-top: 40px;
}

.regular-inner ul li img{
  width: 100%;
  height: auto;
}

@media screen and (max-width: 640px) {
  .regular-inner ul li{
    width: 48%;
  }
}

.regular-inner ul p{
  line-height: 140%;
  font-weight: bold;
}

.regular-inner ul p b{
  margin-bottom: 5px;
  display: block;
}

.egular-toilet{
  display: flex;
  justify-content: space-between;
}

.egular-toilet p{
  text-align: left;
}

@media screen and (max-width: 640px) {
  .egular-toilet{
  display: block;
}
.egular-toilet p{
  text-align: center;
}
}



#action {
  background: #8b1d23;
  padding: 40px 3% 0;
  overflow: hidden;
  display: flex;
}

@media screen and (max-width: 640px) {
  #action {
    margin-bottom: 40px;
    padding: 40px 3%;
  }
}

#action .action_inner {
  max-width: 1000px;
  margin: 0 0 0 auto;
  position: relative;
}

#action .action_inner h2 {
  font-size: 4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}

#action .action_inner h2 + p{
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
  #action .action_inner h2 {
    font-size: 2.6rem;
    text-align: center;
  }
}

#action .cta {
  display: flex;
  flex-wrap: nowrap;
}

#action .cta .mail{
  width: 50%;
}

@media screen and (max-width: 640px) {
  #action .cta {
    display: block;
    margin: 0 auto;
  }
}

#action .cta .mail a{
  display: block;
  margin-right: 20px;
  max-width: 387px;
  background: #0458BE;
  border: 5px solid #ffffff;
  border-radius: 100px;
  padding: 20px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  #action .cta .mail a{
    width: 100%;
  }
}

#action .cta .mail a span{
  display: block;
  font-size: 1.6rem;
  margin-top: 5px;
}

#action .cta .mail a p:before{
  content: url(../images/icon-mail.svg);
  margin-right: 5px;
}

@media screen and (max-width: 640px) {
  #action .cta .mail {
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
  }
}

#action .cta .tel{
  width: 50%;
}

#action .cta .tel a {
  display: block;
  max-width: 387px;
  background: #FC9791;
  border: 5px solid #ffffff;
  border-radius: 100px;
  padding: 20px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  #action .cta .tel {
    width: 100%;
  }
}

#action .cta .tel a span{
  display: block;
  font-size: 1.6rem;
  margin-top: 5px;
}

#action .cta .tel a p:before{
  content: url(../images/icon-tel-white.svg);
  margin-right: 5px;
}

@media screen and (max-width: 640px) {
  #action .action_inner .woman {
    display: none;
  }
}

@media screen and (max-width: 640px) {
.cta-img{
  display: none;
}
}

.cta-img{
    max-width: 222px;
    margin: 0 auto 0 0;
}

.cta-img img{
  vertical-align: bottom;
}








#pop .cta {
  display: flex;
  flex-wrap: nowrap;
}

#pop .cta .mail{
  width: 50%;
}

@media screen and (max-width: 640px) {
  #pop .cta {
    display: block;
    margin: 0 auto;
  }
}

#pop .cta .mail a{
  display: block;
  margin-right: 20px;
  max-width: 387px;
  background: #0458BE;
  border: 5px solid #ffffff;
  border-radius: 100px;
  padding: 20px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  #pop .cta .mail a{
    width: 100%;
  }
}

#pop .cta .mail a span{
  display: block;
  font-size: 1.6rem;
  margin-top: 5px;
}

#pop .cta .mail a p:before{
  content: url(../images/icon-mail.svg);
  margin-right: 5px;
}

@media screen and (max-width: 640px) {
  #pop .cta .mail {
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
  }
}

#pop .cta .tel{
  width: 50%;
}

#pop .cta .tel a {
  display: block;
  max-width: 387px;
  background: #FC9791;
  border: 5px solid #ffffff;
  border-radius: 100px;
  padding: 20px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  #pop .cta .tel {
    width: 100%;
  }
}

#pop .cta .tel a span{
  display: block;
  font-size: 1.6rem;
  margin-top: 5px;
}

#pop .cta .tel a p:before{
  content: url(../images/icon-tel-white.svg);
  margin-right: 5px;
}

@media screen and (max-width: 640px) {
  #pop .action_inner .woman {
    display: none;
  }
}

















#pop .cta .mail a{
  font-size: 1.4rem;
}

#pop .cta .tel a{
  font-size: 1.6rem;
}

#pop .cta .mail a span,
#pop .cta .tel a span{
  font-size: 1.2rem;
}

#pop .cta .tel a p:before{
  content: url(../images/icon-tel-pop.svg);
}

.voice-inner{
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .voice-inner{
  padding: 40px 3%;
}
}

.voice-inner h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 640px) {
  .voice-inner h2 {
  font-size: 2.6rem;
}
}

.voice-inner h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 58px;
    bottom: 0;
    left: 45%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  .voice-inner h2:after{
    width: 70px;
    top: 74px;
    left: 41%;
  }
}

.voice-inner ul{
  display: flex;
  justify-content: space-between;
  margin-top: 188px;
}

@media screen and (max-width: 640px) {
  .voice-inner ul{
    flex-wrap: wrap;
    margin-top: 50px;
  }
}

.voice-inner ul li{
  margin-right: 10px;
  width: 33.333%;
  background: #FDF9F2;
  padding: 0 50px 50px;
  box-sizing: border-box;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .voice-inner ul li{
    width: 100%;
    margin-top: 100px;
    text-align: center;
  }
}

.voice-inner ul li:last-child{
  margin-right: 0;
}

.voice-inner ul li img{
  margin-top: -100px;
      width: 80%;
    height: auto;
}

@media screen and (max-width: 640px) {
  .voice-inner ul li img{
    width: 80%;
  }
}

.voice-inner ul li h3{
  font-size: 1.8rem;
  color: #941E23;
  text-align: center;
  margin: 10px 0;
}

.voice-inner ul li h3 + p{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 10px;
}

.voice-inner ul li h3 + p + p{
  font-size: 1.4rem;
  text-align: left;
}

.intermediate-img{
  display: flex;
  width: 100%;
}

.intermediate-img img{
  width: 100%;
  height: 100%;
}

#area{
  background: #FDF9F2;
  padding: 70px;
}

@media screen and (max-width: 640px) {
  #area{
    padding: 40px 3%;
  }
}

.area-inner{
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .area-inner{
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 640px) {
  .area-inner .area-txt{
    width: 100%;
  }
}

.area-inner .area-txt h2{
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 640px) {
  .area-inner .area-txt h2{
    font-size: 2.6rem;
  }
}

.area-inner .area-txt h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 58px;
    bottom: 0;
    left: 31%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

.area-inner .area-txt h3{
  margin-top: 58px;
  font-size: 2.8rem;
  color: #941E23;
  text-align: center;
}

.area-inner .area-txt h3 + p{
  font-size: 1.4rem;
  text-align: center;
  margin-top: 20px;
}

.area-img img{
  width: 100%;
  height: auto;
}

.difference-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 0;
}

.difference-inner table{
  width: 100%;
  margin-top: 78px;
}

@media screen and (max-width: 640px) {
.difference-inner table{
    border-collapse: collapse;
    table-layout: fixed;
    width: 94%;
    margin: 78px auto 0;
  }
}

.difference-inner table th{
  width: 25%;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .difference-inner table th{
    font-size: 1.2rem;
  }
}

.difference-inner table th.titarea{
  background: #7B7B7B;
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
}

.difference-inner table th.logoarea{
  background: #ffffff;
  padding: 5px 40px;
  border: 10px #941E23 solid;
  border-bottom: 5px solid #941E23;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .difference-inner table th.logoarea{
    width: 40%;
    padding: 5px 3%;
  }
}

.difference-inner table td{
  text-align: center;
  padding: 10px;
  font-size: 3rem;
  font-weight: 500;
  border: 1px solid #cccccc;
}

.difference-inner table td p{
  font-size: 1.6rem;
  color: #941E23;
}

@media screen and (max-width: 640px) {
  .difference-inner table td p{
    font-size: 1.2rem;
  }
}

.difference-inner table td.itemname{
  font-size: 2.7rem;
  color: #941E23;
}

@media screen and (max-width: 640px) {
  .difference-inner table td.itemname{
  font-size: 1.2rem;
}
}

.difference-inner table td.txtarea{
  color: #941E23;
  border: 4px #941E23 solid;
  border-bottom: 1px solid #cccccc;
  border-top: none;
}

@media screen and (max-width: 640px) {
  .difference-inner table td.txtarea{
    width: 42%;
  }
}

.difference-inner table td.txtarea.last{
  border-bottom: 4px #941E23 solid;
}

.difference-inner h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 640px) {
  .difference-inner h2 {
    font-size: 2.6rem;
  }
}

.difference-inner h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 58px;
    bottom: 0;
    left: 45%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  .difference-inner h2:after{
    width: 70px;
    top: 50px;
    left: 43%;
  }
}

#step h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 640px) {
  #step h2 {
    font-size: 2.6rem;
  }
}

#step h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 58px;
    bottom: 0;
    left: 45%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  #step h2:after{
    width: 70px;
    top: 50px;
    left: 41%;
  }
}

.step_inner{
  max-width: 1000px;
  margin: 0 auto;
}

.step_inner ul{
  display: flex;
  justify-content: space-between;
  margin-top: 78px;
}

@media screen and (max-width: 640px) {
  .step_inner ul{
    flex-wrap: wrap;
    justify-content: left;
  }
}

.step_inner ul li{
  position: relative;
}

@media screen and (max-width: 640px) {
  .step_inner ul li{
    width: 46%;
  }
  .step_inner ul li:nth-child(odd){
    margin-right: 10px;
  }
  .step_inner ul li:nth-child(n + 3){
    margin-top: 10px;
  }
}

.step_inner ul li:after{
  content: url(../images/step-arrow.svg);
  position: absolute;
  top: 35%;
  right: -34px;
  z-index: 1;
}

.step_inner ul li:last-child:after{
  content: "";
}

#faq {
  padding: 70px 0;
}

@media screen and (max-width: 640px) {
  #faq {
    padding: 40px 0;
  }
}

#faq h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
  margin-bottom: 78px;
}

@media screen and (max-width: 640px) {
  #faq h2 {
    font-size: 2.6rem;
  }
}

#faq h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 58px;
    bottom: 0;
    left: 45%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  #faq h2:after{
    width: 70px;
    top: 50px;
    left: 41%;
  }
}


#step {
  background-image: url("../img/back03.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 70px 0;
}

@media screen and (max-width: 640px) {
  #step {
    background-image: none;
    padding: 30px 5% 60px;
  }
}

@media screen and (max-width: 640px) {
  #step h2::before {
    top: 88%;
    margin-left: -25px;
    border: 25px solid transparent;
    border-top: 25px solid #8b1d23;
  }
}

#step .step_outer {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 640px) {
  #step .step_outer {
    flex-flow: column;
  }
}

#step .step_outer .step_inner {
  display: flex;
  flex-flow: column;
}

#step .step_outer .step_inner .flow {
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  #step .step_outer .step_inner .flow {
    width: 60%;
    margin: 0 auto 24px;
  }
}

#step .step_outer .step_inner .flow .icon {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
}

#step .step_outer .step_inner h3 {
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  color: #8b1d23;
}

@media screen and (max-width: 640px) {
  #step .step_outer .step_inner h3 br {
    display: none;
  }
}

#step .step_outer i {
  font-size: 5.0rem;
  color: #cbb06d;
  display: block;
  padding: 50px 10px;
}

@media screen and (max-width: 640px) {
  #step .step_outer i {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 30px 10px;
  }
}


#faq .faq_inner {
  display: flex;
  flex-flow: column;
  max-width: 980px;
  margin: 0 auto 0;
}

@media screen and (max-width: 640px) {
  #faq .faq_inner {
    padding: 0 5%;
  }
}

#faq .faq_inner dl dt {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-top: 1px #cccccc solid;
  padding-top: 20px;
  align-items: center;
}

#faq .faq_inner dl dt h3 {
  font-size: 1.8rem;
  color: #8b1d23;
  line-height: 1;
  padding-bottom: 20px;
}

@media screen and (max-width: 640px) {
  #faq .faq_inner dl dt h3 {
        font-size: 1.6rem;
    display: flex;
    line-height: 140%;
  }
}

#faq .faq_inner dl dt h3 .q {
  background: #8b1d23;
  color: #fff;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  #faq .faq_inner dl dt h3 .q {
    padding: 10px;
  }
}

#faq .faq_inner dl dt .accordion_icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  transition: all .4s;
}

#faq .faq_inner dl dt .accordion_icon span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 6px;
  width: 50%;
  height: 2px;
  background-color: #941E23;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
}

#faq .faq_inner dl dt .accordion_icon span:nth-of-type(1) {
  top: 5px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

#faq .faq_inner dl dt .accordion_icon span:nth-of-type(2) {
  top: 5px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

#faq .faq_inner dl dt .active span:nth-of-type(1) {
  display: none;
}

#faq .faq_inner dl dt .active span:nth-of-type(2) {
  top: 5px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

#faq .faq_inner dl dd {
  display: none;
  padding: 0 0 20px 15px;
  font-size: 1.8rem;
  line-height: 2;
  clear: both;
}

@media screen and (max-width: 640px) {
  #faq .faq_inner dl dd {
    font-size: 1.4rem;
  }
}

#faq .faq_inner dl dd p{
  display: flex;
}

#faq .faq_inner dl dd p:before{
  content: "A";
  font-weight: bold;
  font-size: 2.1rem;
  margin-right: 30px;
}

#form{
  background: #FDF9F2;
  padding: 70px 0;
}

@media screen and (max-width: 640px) {
  #form {
    padding: 40px 0;
  }
}

#form h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: relative;
  margin-bottom: 78px;
}

@media screen and (max-width: 640px) {
  #form h2 {
    font-size: 2.6rem;
  }
}

#form h2:after{
  transform: skewX(-35deg);
    content: "";
    position: absolute;
    top: 58px;
    bottom: 0;
    left: 45%;
    right: 0;
    background-color: #941E23;
    height: 8px;
    width: 100px;
}

@media screen and (max-width: 640px) {
  #form h2:after{
    width: 70px;
    top: 50px;
    left: 41%;
  }
}

#form .form_outer {
  max-width: 790px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  #form .form_outer {
    padding: 0 5%;
  }
}

#form .form_outer h3 {
  text-align: center;
  font-size: 2.0rem;
  color: #f16969;
  margin-bottom: 50px;
  line-height: 1.5;
}

#form .form_outer form .form_unit {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

@media screen and (max-width: 640px) {
  #form .form_outer form .form_unit {
    flex-flow: column;
    align-items: normal;
  }
}

@media screen and (max-width: 640px) and (max-width: 640px) {
  #form .form_outer form .form_unit .form_unit--list {
    display: flex;
    flex-flow: column;
  }
}

@media screen and (max-width: 640px) {
  #form .form_outer form .form_unit .form_unit--list input {
    margin-bottom: 10px;
  }
}

#form .form_outer form .form_unit label {
  width: 283px;
  font-size: 1.8rem;
  text-align: left;
  position: relative;
}

@media screen and (max-width: 640px) {
  #form .form_outer form .form_unit label {
    margin-bottom: 8px;
  }
}

#form .form_outer form .form_unit label .must, #form .form_outer form .form_unit label .mustnon {
  background: #8b1d23;
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
  margin-right: 20px;
}

#form .form_outer form .form_unit label .mustnon {
  background: #737373;
}

#form .form_outer form .form_unit p {
  font-size: 1.3rem;
  margin-top: 10px;
}

@media screen and (max-width: 640px) {
  #form .form_outer form .form_unit p {
    margin-top: 0px;
  }
}

#form .form_outer form .form_unit .alert {
  color: red;
  margin-top: 0;
}

@media screen and (max-width: 640px) {
  #form .form_outer form .form_unit .alert {
    margin-top: -10px;
  }
}

#form .form_outer form .form_unit input {
  width: 495px;
  background-color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  height: 30px;
  border: 1px solid #494949;
  border-radius: 2px;
  padding: 16px 8px;
}

@media screen and (max-width: 640px) {
  #form .form_outer form .form_unit input {
    width: auto;
    max-width: 495px;
  }
}

#form .form_outer form .form_unit textarea {
  font-size: 1.3rem;
  font-weight: normal;
  width: 495px;
  border: 1px solid #494949;
  border-radius: 2px;
  padding: 8px;
}

@media screen and (max-width: 640px) {
  #form .form_outer form .form_unit textarea {
    width: auto;
    max-width: 495px;
  }
}

#form .form_outer form .btn {
  margin: 0 auto;
  max-width: 400px;
  position: relative;
  background: #8b1d23;
  border-radius: 10px;
}

#form .form_outer form .btn .submitbtn {
  color: #fff;
  font-size: 3.0rem;
  font-weight: normal;
  letter-spacing: 2px;
  padding: 16px 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

#form .form_outer form .btn i {
  position: absolute;
  right: 10px;
  top: 18%;
  font-size: 5.0rem;
  color: #fff;
  z-index: 0;
}

footer {
  background: #941E23;
  text-align: center;
  color: #ffffff;
}

footer .footer_address {
  padding: 50px 0;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: normal;
}

footer .copy {
  background: #ffffff;
  text-align: center;
  padding: 10px 0px;
  color: #1a1a1a;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px) {
  footer .copy {
    padding-bottom: 105px;
  }
}

@media screen and (max-width: 640px) {
  #pop {
    width: 100%;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 2px solid #8b1d23;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
  }
}

#pop .cta {
  display: none;
}

@media screen and (max-width: 640px) {
  #pop .cta {
    display: flex;
    padding: 10px 2%;
    z-index: 2;
  }
}

#pop .cta .mail {
  margin-right: 10px;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.0rem;
}

#page-top a {
  background: #777777;
  text-decoration: none;
  color: #fff;
  width: 40px;
  padding: 15px 0;
  text-align: center;
  display: block;
}

@media screen and (max-width: 640px) {
  #page-top a {
    margin-bottom: 100px;
  }
}

.pc-none{
  display: none;
}

.sp-none{
  display: block;
}

@media screen and (max-width: 640px) {
  .pc-none{
  display: block;
}

.sp-none{
  display: none;
}
}