@charset "UTF-8";
/* Color */
/* Animation */
@keyframes ttl-fade {
  0% {
    transform: translate(-100px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes img-fade {
  0% {
    transform: translate(0, 40px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes img-fade {
  0% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes img-fade02 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes img-fade02 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes img-fade03 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes img-fade03 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.is-fadein {
  -webkit-animation: ttl-fade 1.1s cubic-bezier(1, 0, 0, 0.3) both;
  -webkit-animation-delay: 0.1s;
  animation: ttl-fade 1.1s cubic-bezier(1, 0, 0, 0.3) both;
  animation-delay: 0.1s;
}

.is-fadein02 {
  -webkit-animation: img-fade 1.1s cubic-bezier(0.2, 0, 0, 0.3) both;
  -webkit-animation-delay: 0.1s;
  animation: img-fade 1.1s cubic-bezier(0.2, 0, 0, 0.3) both;
  animation-delay: 0.1s;
}

.is-fadein03 img {
  -webkit-animation: img-fade 0.85s cubic-bezier(0.1, 0, 0, 0.6) both;
  -webkit-animation-delay: 0.2s;
  animation: img-fade 0.85s cubic-bezier(0.1, 0, 0, 0.6) both;
  animation-delay: 0.2s;
}

.is-fadein04 {
  -webkit-animation: img-fade 1.1s cubic-bezier(0.2, 0, 0, 0.3) both;
  -webkit-animation-delay: 0.1s;
  animation: img-fade 1.1s cubic-bezier(0.2, 0, 0, 0.3) both;
  animation-delay: 0.8s;
}

.js-fade {
  display: block;
  transform: translate(0, 120%) scale(1, 1.4);
  opacity: 0;
}

.js-fade02 {
  display: block;
  transform: translate(0, 0);
  opacity: 0;
}

.js-fade03 img {
  display: block;
  transform: translate(0, 0);
  opacity: 0;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    top: -3px;
  }
  100% {
    top: 119px;
  }
}
@keyframes circlemove {
  0% {
    top: -3px;
  }
  100% {
    top: 119px;
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes circlemove {
    0% {
      top: -3px;
    }
    100% {
      top: 64px;
    }
  }
  @keyframes circlemove {
    0% {
      top: -3px;
    }
    100% {
      top: 64px;
    }
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.p-top__bar {
  padding: 6px 10px 9px;
  background: #e73b35;
  color: #ffffff;
  font-weight: 500;
  font-size: 29px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .p-top__bar {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 1200px) {
  .p-top__bar {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__bar {
    padding: 2% 3%;
    font-size: 3vw;
    line-height: 1.6;
  }
}

.p-mv {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 0;
  }
}
.p-mv figure {
  position: relative;
  width: 100%;
}
.p-mv figure img {
  width: 100%;
}
.p-mv figure img.p-mv__main--pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-mv figure img.p-mv__main--pc {
    display: none;
  }
}
.p-mv figure img.p-mv__main--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-mv figure img.p-mv__main--sp {
    display: block;
  }
}
.p-mv__scroll {
  position: absolute;
  bottom: -65px;
  left: 50%;
  width: 1px;
  height: 130px;
  background: linear-gradient(0deg, #ffffff 0%, #ffffff 50%, #e73b35 50%, #e73b35 100%);
}
@media screen and (max-width: 767px) {
  .p-mv__scroll {
    bottom: -37px;
    height: 74px;
  }
}
.p-mv__scroll:after {
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  position: absolute;
  bottom: 0;
  left: calc(50% - 5px);
  width: 9px;
  height: 9px;
  border-radius: 50px;
  background: #ffffff;
  content: "";
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll:after {
    left: calc(50% - 4.5px);
  }
}
.p-mv__inner {
  display: flex;
  position: relative;
}
.p-mv__main {
  position: relative;
  width: 100%;
  /*height: calc(100vh - 174px);*/
  /*height: 52vw;*/
  /*background: url(../../assets/images/top/mv-bg.jpg);
  background-size: cover;
  background-position: right; */
}
.p-mv__main--txt {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-mv__main--txt {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__main--txt {
    position: static;
    padding: 40px 5%;
    transform: translate(0, 0);
    background: #f5f5f5;
  }
}
.p-mv__main--ttl {
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 500;
  font-size: 45px;
  line-height: 1.45;
  opacity: 1;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-mv__main--ttl {
    width: 100%;
    margin: 0 auto 2%;
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 980px) {
  .p-mv__main--ttl {
    width: 100%;
    font-size: 3vw;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__main--ttl {
    width: 100%;
    font-size: 4.8vw;
    text-align: center;
  }
}
.p-mv__main--ttl span {
  font-weight: 600;
  font-size: 59px;
}
@media screen and (max-width: 1200px) {
  .p-mv__main--ttl span {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__main--ttl span {
    font-size: 6.2vw;
  }
}
.p-mv__main--ttl strong {
  margin-top: 2vw;
  color: #ea1710;
  font-weight: 600;
  font-size: 65px;
  margin: 0 -35px;
}
@media screen and (max-width: 1200px) {
  .p-mv__main--ttl strong {
    font-size: 3.8vw;
    margin: 0 -1vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__main--ttl strong {
    font-size: 8.2vw;
  }
}
.p-mv__main--subttl {
  margin-bottom: 30px;
  font-size: 29px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-mv__main--subttl {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__main--subttl {
    margin-top: 12px;
    font-size: 3.8vw;
  }
}
.p-mv__main--subttl strong {
  font-weight: 600;
}
.p-mv__benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 1200px) {
  .p-mv__benefit {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__benefit {
    width: 100%;
  }
}
.p-mv__benefit li {
  width: 50%;
  max-width: 250px;
}
@media screen and (max-width: 1200px) {
  .p-mv__benefit li {
    font-size: 3.8vw;
  }
}

.p-relief {
  padding: 78px 0;
}
@media screen and (max-width: 767px) {
  .p-relief {
    padding: 78px 0 5%;
  }
}
.p-relief__inner {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-relief__inner {
    margin-top: 22px;
  }
}
.p-relief .c-title__ja {
  color: #ffe400;
}
.p-relief__main--top {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-relief__main--top {
    display: block;
  }
}
.p-relief__main--btm {
  position: relative;
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .p-relief__main--btm {
    display: block;
    margin-top: 20px;   
  }
}
.p-relief__main--contact {
  display: flex;
  align-items: center;
  border: 5px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-relief__main--contact {
    display: block;
  }
}
.p-relief__main--contact dt {
  width: 42%;
  padding: 10px 30px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .p-relief__main--contact dt {
    font-size: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-relief__main--contact dt {
    padding: 12px 30px;
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--contact dt {
    width: 100%;
    padding: 3% 5%;
    font-size: 4.4vw;
  }
}
.p-relief__main--contact dd {
  width: 58%;
  padding: 11px 20px 20px;
  font-size: 65px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  border-left: 5px solid #ffffff;
}
@media screen and (max-width: 1100px) {
  .p-relief__main--contact dd {
    font-size: 58px;
  }
}
@media screen and (max-width: 960px) {
  .p-relief__main--contact dd {
    font-size: 5.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--contact dd {
    width: 100%;
    padding: 1.6% 5% 2.5%;
    font-size: 8.8vw;
    border-left: 0;
    border-top: 5px solid #ffffff;
    text-align: center;
  }
}
.p-relief__main--txt {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-relief__main--txt {
    width: 100%;
    margin-top: 20px;
  }
}
.p-relief__main--txt p {
  color: #ffffff;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-relief__main--txt p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--txt p {
    font-size: 4.2vw;
  }
}
.p-relief__main--txt p small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-relief__main--txt p small {
    font-size: 3.8vw;
  }
}
.p-relief__main--payment {
  margin-top: 60px;
  display: flex;
  background: #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-relief__main--payment {
    display: block;
    margin-top: 20px;
  }
}
.p-relief__main--paymentLeft { 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 50%;
  padding: 23px;
  border-right: 1px solid #e73b35;
}
@media screen and (max-width: 767px) {
  .p-relief__main--paymentLeft {
    display: block;
    width: 100%;
    padding: 5%;
    border-right: 0;
    border-bottom: 1px solid #e73b35;
  }
}
.p-relief__main--paymentLeft h5 {
  font-size: 22px;
  line-height: 1.6;
  color: #004595;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-relief__main--paymentLeft h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--paymentLeft h5 {
    line-height: 1.4;
    font-size: 4.8vw;
  }
}
.p-relief__main--paymentLeft h5 strong {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-relief__main--paymentLeft h5 strong {
  	font-size: 5.6vw;
  }
}
@media screen and (max-width: 960px) {
  .p-relief__main--paymentLeft figure {
    width: 34%;
    margin: 12px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--paymentLeft figure {
    width: 50%;
    margin: 12px auto 0;
  }
}
.p-relief__main--paymentRight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  width: 50%;
  padding: 23px;
}
@media screen and (max-width: 767px) {
  .p-relief__main--paymentRight {
    display: block;
    width: 100%;
    padding: 5%;
  }
}
.p-relief__main--paymentRight h5 {
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-relief__main--paymentRight h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--paymentLeft h5 {
    font-size: 4.8vw;
  }
}
.p-relief__main--paymentRight h5 strong {
  font-weight: bold;
}
.p-relief__main--paymentRight h5 span {
  display: block;
  margin-top: 8px;
  padding: 4px 4px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  background: #f9e900;
  border-radius: 6px;
}
@media screen and (max-width: 960px) {
  .p-relief__main--paymentRight h5 span {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--paymentRight h5 span {
    display: inline-block;
    padding: 4px 12px;
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 960px) {
  .p-relief__main--paymentRight figure {
    width: 20%;
    margin: 0 auto 12px;
  }
}
.p-relief__main--list {
  display: flex;
  width: 53%;
  min-width: 529px;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .p-relief__main--list {
    width: 53%;
    min-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--list {
    width: 100%;
    min-width: auto;
    gap: 0 2%;
  }
}
.p-relief__main--list li {
  width: 33.333%;
  padding: 20px;
  background: #ffffff;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .p-relief__main--list li {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--list li {
    padding: 12px 2.8%;
  }
}
.p-relief__main--list li h4 {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .p-relief__main--list li h4 {
    min-height: 43px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--list li h4 {
    min-height: inherit;
    margin-bottom: 0;
    font-size: 3.2vw;
    line-height: 1.3;
  }
}
.p-relief__main--list li p {
  color: #ea1710;
  font-weight: 600;
  font-size: 40px;
  line-height: 0.8;
}
@media screen and (max-width: 960px) {
  .p-relief__main--list li p {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--list li p {
    font-size: 7vw;
    line-height: 1;
  }
}
.p-relief__main--list li p strong {
  font-size: 120px;
}
@media screen and (max-width: 960px) {
  .p-relief__main--list li p strong {
    font-size: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-relief__main--list li p strong {
    font-size: 18vw;
  }
}
.p-bnr {
  padding: 74px 0 100px;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-bnr {
    padding: 5% 5% 12%;
  }
}
@media screen and (max-width: 767px) {
  .p-bnr__list {
    margin-bottom: 50px;
  }
}
.p-bnr__list li img {
	width: 100%;
}
.p-bnr__inner {
  padding: 0 1%;
}
.p-bnr .slick-dots {
  bottom: -60px;
}
@media screen and (max-width: 767px) {
  .p-bnr .slick-dots {
    bottom: -40px;
  }
}
.p-bnr .slick-dots li button:before {
  color: #aaaaaa;
  font-size: 16px;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .p-bnr .slick-dots li button:before {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-bnr .slick-dots li button:before {
    font-size: 14px;
  }
}
.p-bnr .slick-dots li.slick-active button:before {
  color: #e73b35;
  font-size: 16px;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .p-bnr .slick-dots li.slick-active button:before {
    font-size: 14px;
  }
}
.p-bnr .slick-initialized .slick-dots {
  display: none;
}
.p-bnr__inner {
  max-width: 1070px;
  margin: 0 auto;
}
.p-bnr li a {
  display: block;
  margin: 0 15px;
}
.p-bnr li a:hover {
  color: #e73b35;
}
@media screen and (max-width: 767px) {
  .p-bnr li a {
    margin: 0;
  }
}
.p-bnr li a p {
  margin-top: 16px;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .p-bnr li a p {
    font-size: 14px;
  }
}
.p-youtube {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin: 0 auto;
  padding: 100px 0 0;
  gap: 16px;
}
@media screen and (max-width: 960px) {
  .p-youtube {
    align-items: flex-end;
    padding: 100px 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-youtube {
    display: block;
    margin: 70px auto 0;
    padding: 0;
  }
}
.p-youtube figure {
  max-width: 499px;
  min-width: 499px;
}
@media screen and (max-width: 960px) {
  .p-youtube figure {
    min-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .p-youtube figure {
    width: 100%;
    margin: 0 auto 16px;
  }
}
.p-youtube h3 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 29px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 960px) {
  .p-youtube h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-youtube h3 {
    font-size: 4.9vw;
  }
}
.p-youtube p {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-youtube p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-youtube p {
    font-size: 4.2vw;
  }
}
.p-youtube__main--txt {
  padding-right: 17px;
}
@media screen and (max-width: 767px) {
  .p-youtube__main--txt {
    padding-right: 0;
  }
}
.p-service__link {
  max-width: 1040px;
  margin: 0 auto 40px;
  padding: 34px 40px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-service__link {
    margin: 0 auto 20px;
    padding: 16px 20px;
  }
}
.p-service__link h3 {
  margin: 0 auto 34px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__link h3 {
    margin: 0 auto 20px;
    font-size: 5.8vw;
  }
}
.p-service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    gap: 12px;
  } 
}
.p-service__list li {
  width: calc(33.333% - 17px);
  border: 2px solid #eeeeee;
  border-radius: 10px;
} 
@media screen and (max-width: 767px) {
  .p-service__list li {
    width: calc(50% - 6px);
  } 
}
.p-service__list li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-service__list li a {
    padding: 16px 8px;
    gap: 8px;
  } 
}
.p-service__list li a:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 27px;
  height: 27px;
  margin-top: -13px;
  content: "";
  transition-duration: 0.3s;
  /*background: url(../../assets/images/common/icon-btn-arrow-r.png) no-repeat;
  background-size: 100%;*/
  background: #e73b35;
  border-radius: 50px;
  transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-service__list li a:after {
    width: 20px;
    height: 20px;
    right: 8px;
    margin-top: -10px;
  } 
}
.p-service__list li a:before {
  position: absolute;
  top: 50%;
  right: 31px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  content: "";
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service__list li a:before {
    right: 16px;
    width: 8px;
    height: 8px;
  } 
}
.p-service__list li a figure {
  min-width: 82px;
  max-width: 82px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-service__list li a figure {
    min-width: 52px;
    max-width: 52px;
  } 
}
@media screen and (max-width: 767px) {
  .p-service__list li a figure {
    min-width: 38px;
    max-width: 38px;
  } 
}
.p-service__list li a p {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .p-service__list li a p {
    font-size: 16px;
  } 
}
@media screen and (max-width: 767px) {
  .p-service__list li a p {
    font-size: 3.4vw;
  } 
}
.p-service__work {
  max-width: 1040px;
  margin: 80px auto 40px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-service__work {
    margin: 40px auto 20px;
    padding: 0;
  }
}
.p-service__work h3 {
  position: relative;
  margin-bottom: 12px;
  padding: 16px 40px;
  background: #ea1710;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-service__work h3 {
    padding: 16px 20px;
    margin: 0 auto;
    font-size: 5vw;
  }
}
.p-service__work--ttlImg {
  position: absolute;
  top: -46px;
  right: 350px;
  width: 212px;
}
@media screen and (max-width: 960px) {
  .p-service__work--ttlImg {
    right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-service__work--ttlImg {
    position: absolute;
    top: -38%;
    right: 2%;
    width: 30%;
  }
}
.p-service__work--ttlImg02 {
  position: absolute;
  top: -46px;
  right: 342px;
  width: 212px;
}
@media screen and (max-width: 960px) {
  .p-service__work--ttlImg02 {
    right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-service__work--ttlImg02 {
    position: absolute;
        top: -23%;
        right: 2%;
        width: 28%;
  }
}
.p-service__work--list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 5px 40px 40px;
}
@media screen and (max-width: 767px) {
  .p-service__work--list {
    margin: 0;
    padding: 16px 20px 30px;
  }
}
.p-service__work--list li {
  width: calc(33.333% - 17px);
  margin-top: 24px;
} 
@media screen and (max-width: 767px) {
  .p-service__work--list li {
    width: 100%;
    margin-top: 14px;
  } 
}
.p-service__work--list li figure {
  min-width: 82px;
  max-width: 82px;
  width: 100%;
  margin: 0 auto 12px;
}
@media screen and (max-width: 767px) {
  .p-service__work--list li figure {
    margin: 0 auto 6px;
  } 
}
.p-service__work--list li h4 {
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__work--list li h4 {
    margin: 14px 0 0;
    font-size: 4.8vw;
  } 
}
.p-service__work--list li p {
  min-height: 156px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .p-service__work--list li p {
    min-height: 176px;
  } 
}
@media screen and (max-width: 767px) {
  .p-service__work--list li p {
    min-height: inherit;
    margin-top: 12px;
    font-size: 4.2vw;
  } 
}
.p-service__work--list li .c-button {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-service__work--list li .c-button {
    margin-top: 16px;
  }
}
.p-service__work--list li a {
  padding: 14px 4px 16px;
  font-size: 16px;
}
.p-service__work--list li a:after {
  width: 24px;
  height: 24px;
  margin-top: -12px;
}
.p-reason {
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding: 0 0 0;
  }
}
.p-reason__main {
  margin-top: 30px;
  padding: 45px 0 0;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-reason__main {
    margin-top: 25px;
    padding: 0;
    /*background: #f5f5f5;*/
  }
}
.p-reason__main--top {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 960px) {
  .p-reason__main--top {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--top {
    display: block;
    padding: 0;
  }
}
.p-reason__main--top figure {
  min-width: 512px;
  max-width: 512px;
}
@media screen and (max-width: 960px) {
  .p-reason__main--top figure {
    min-width: 372px;
  }
}
@media screen and (max-width: 768px) {
  .p-reason__main--top figure {
    padding-top: 20px;
    background: #ffffff;
  }
}
.p-reason__main--mdl {
  background: url(../../assets/images/top/reason-bg.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1500px) {
  .p-reason__main--mdl {
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-reason__main--mdl {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--mdl {
    background: url(../../assets/images/top/reason-bg-sp.jpg) no-repeat;
    background-size: cover;
  }
}
.p-reason__main--btm {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin: 0 auto;
  padding: 70px 0;
  gap: 18px;
}
@media screen and (max-width: 960px) {
  .p-reason__main--btm {
    padding: 70px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--btm {
    display: block;
    margin: 40px 0 0;
    padding: 0;
  }
}
.p-reason__main--btm figure {
  max-width: 499px;
  min-width: 499px;
}
@media screen and (max-width: 960px) {
  .p-reason__main--btm figure {
    min-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--btm figure {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--btm .p-reason__main--txt h3 {
    text-align: left;
  }
}
.p-reason__main--list {
  display: flex;
  flex-wrap: wrap;
  /*padding: 40px 24px;
  gap: 40px 10%;*/
}
@media screen and (max-width: 767px) {
  .p-reason__main--list {
    display: block;
    padding: 0;
  }
}
.p-reason__main--list li {
  width: 50%;
  padding: 3.2% 2%;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-reason__main--list li {
    width: 100%;
    padding: 24px 5%;
    border-right: 0;
  }
}
.p-reason__main--list li:nth-child(2) {
  border-right: 0;
}
.p-reason__main--list li:nth-child(3) {
  border-bottom: 0;
}
.p-reason__main--list li:last-child {
  border-bottom: 0;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__main--list li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--list li:nth-child(3) {
    border-bottom: 1px solid #ffffff;
  }
}
.p-reason__main--list li strong {
  display: block;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
  font-size: 29px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-reason__main--list li strong {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--list li strong {
    font-size: 6.8vw;
  }
}
.p-reason__main--list li h4 {
  max-width: 356px;
  margin: 0 auto 24px;
  padding: 14px 0 15px;
  border-radius: 50px;
  background: #ffffff;
  color: #e73b35;
  font-weight: 500;
  font-size: 21px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-reason__main--list li h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--list li h4 {
    margin: 0 auto 16px;
    font-size: 4.4vw;
    font-weight: 600;
  }
}
.p-reason__main--list li p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 960px) {
  .p-reason__main--list li p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--list li p {
    font-size: 4.2vw;
    text-align: left;
  }
}
.p-reason__main--txt {
  padding-right: 17px;
}
@media screen and (max-width: 960px) {
  .p-reason__main--txt {
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--txt {
    box-sizing: border-box;
    padding: 30px 5%;
  }
}
.p-reason__main--txt h3 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 960px) {
  .p-reason__main--txt h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--txt h3 {
    font-size: 6.4vw;
    text-align: center;
  }
}
.p-reason__main--txt p {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-reason__main--txt p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__main--txt p {
    font-size: 4.2vw;
  }
}
.p-reason .c-button {
  padding: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .p-reason .c-button {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 0;
    background: #f5f5f5;
  }
}
@media screen and (max-width: 767px) {
  .p-reason .c-button a {
    width: 90%;
    margin: 0 auto;
  }
}
.p-offer {
  padding: 74px 0 0;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-offer {
    width: 100%;
    margin: 0 auto;
    padding: 40px 5% 0;
  }
}
.p-offer__last {
  padding: 0 0 74px;
  background: inherit;
}
@media screen and (max-width: 767px) {
  .p-offer__last {
    padding: 0 5% 20px;
    background: inherit;
  }
}
.p-offer__inner {
  position: relative;
  max-width: 965px;
  margin: 0 auto;
  padding: 70px 30px;
  background: #e73b35;
}
@media screen and (max-width: 767px) {
  .p-offer__inner {
    padding: 30px 5% 74%;
    border-radius: 10px;
  }
}
.p-offer__inner figure {
  position: absolute;
  right: 28px;
  bottom: 0;
}
@media screen and (max-width: 960px) {
  .p-offer__inner figure {
    width: 31%;
    right: -2%;
  }
}
@media screen and (max-width: 767px) {
  .p-offer__inner figure {
    width: 60%;
    right: 20%;
    margin: 0 auto;
  }
}
.p-offer__main h4 {
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 35px;
}
@media screen and (max-width: 960px) {
  .p-offer__main h4 {
    font-size: 31px;
  }
}
@media screen and (max-width: 767px) {
  .p-offer__main h4 {
    font-size: 7.8vw;
    line-height: 1.2;
    text-align: center;
  }
}
.p-offer__main p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .p-offer__main p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-offer__main p {
    font-size: 4.8vw;
    text-align: center;
  }
}
.p-offer__main--txt {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-offer__main--tel {
    margin-bottom: 12px;
  }
}
.p-offer__main--telTop {
  display: flex;
  margin-bottom: 6px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-offer__main--telTop {
    justify-content: center;
  }
}
.p-offer__main--telTop span {
  padding: 6px 16px;
  background: #ffffff;
  color: #e73b35;
}
@media screen and (max-width: 767px) {
  .p-offer__main--telTop span {
    padding: 6px 3%;
    font-size: 4.8vw;
  }
}
.p-offer__main--telBtm {
  line-height: 1 !important;
}
.p-offer__main--telBtm a {
  color: #ffffff;
  font-weight: 600;
  font-size: 42px;
}
@media screen and (max-width: 960px) {
  .p-offer__main--telBtm a {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .p-offer__main--telBtm a {
    font-size: 11.5vw;
  }
}
.p-offer__main--contact {
  display: flex;
  align-items: center;
  margin-top: 36px;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .p-offer__main--contact {
    display: block;
    margin-top: 24px;
  }
}
.p-offer__main--contact .c-button {
  min-width: 330px;
}
@media screen and (max-width: 960px) {
  .p-offer__main--contact .c-button {
    min-width: 290px;
  }
}
@media screen and (max-width: 767px) {
  .p-offer__main--contact .c-button {
    min-width: inherit;
  }
}
.p-offer__main--contact .c-button a {
  padding: 21px 44px 23px 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-offer__main--contact .c-button a {
    display: block;
    padding: 21px 16px;
    font-size: 4.6vw;
  }
}
.p-offer__main--contact .c-button a:after {
  margin-top: -11px;
  width: 22px;
  height: 22px;
}
.p-service {
  padding: 80px 0 40px;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding: 40px 0 24px;
  }
}
.p-service__inner {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    margin-top: 24px;
  }
}
.p-service__main--listItem {
  padding: 0 0 70px;
}
@media screen and (max-width: 767px) {
  .p-service__main--listItem {
    padding: 0 0 40px;
  }
}
.p-service__main--listItem:first-child {
  background: url(../../assets/images/top/service01-bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-service__main--listItem:first-child {
    background: url(../../assets/images/top/service01-bg-sp.jpg);
    background-size: cover;
  }
}
.p-service__main--listItem:nth-child(2) {
  background: url(../../assets/images/top/service02-bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-service__main--listItem:nth-child(2) {
    background: url(../../assets/images/top/service02-bg-sp.jpg);
    background-size: cover;
  }
}
.p-service__main--listItem:nth-child(3) {
  background: url(../../assets/images/top/service03-bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-service__main--listItem:nth-child(3) {
    background: url(../../assets/images/top/service03-bg-sp.jpg);
    background-size: cover;
  }
}
.p-service__detail--top {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-service__detail--top {
    padding: 24px 0;
  }
}
.p-service__detail--top .p-service__detail--inner {
  display: flex;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  gap: 80px;
}
@media screen and (max-width: 960px) {
  .p-service__detail--top .p-service__detail--inner {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__detail--top .p-service__detail--inner {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.p-service__detail--top .p-service__detail--inner[data-flex=reverse] {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-service__detail--top .p-service__detail--inner[data-flex=reverse] {
    flex-direction: column-reverse;
  }
}
.p-service__detail--top .p-service__detail--inner figure {
  min-width: 476px;
}
@media screen and (max-width: 1200px) {
  .p-service__detail--top .p-service__detail--inner figure {
    min-width: 380px;
  }
}
@media screen and (max-width: 960px) {
  .p-service__detail--top .p-service__detail--inner figure {
    min-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__detail--top .p-service__detail--inner figure {
    min-width: inherit;
    margin-bottom: 20px;
  }
}
.p-service__detail--txt p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-service__detail--txt p {
    margin-top: 12px;
    font-size: 4.2vw;
  }
}
.p-service__detail--mdl {
  padding: 40px 0;
  border-top: 2px solid #dddddd;
}
@media screen and (max-width: 960px) {
  .p-service__detail--mdl {
    padding: 36px 0;
  }
}
.p-service__detail--mdlTxt {
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-service__detail--mdlTxt {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__detail--mdlTxt {
    font-size: 4.2vw;
    text-align: left;
  }
}
.p-service__detail--mdl h4 {
  margin-bottom: 35px;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-service__detail--mdl h4 {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__detail--mdl h4 {
    margin-bottom: 20px;
    font-size: 5.4vw;
  }
}
.p-service__detail--mdl ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .p-service__detail--mdl ul {
    flex-wrap: wrap;
    margin-bottom: 12px;
    gap: 5%;
  }
}
.p-service__detail--mdl ul li {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-service__detail--mdl ul li {
    width: 31%;
    margin-bottom: 20px;
  }
}
.p-service__detail--mdl ul li figure {
  max-width: 125px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-service__detail--mdl ul li figure {
    margin-bottom: 4px;
  }
}
.p-service__detail--mdl ul li p {
  margin-top: 20px;
  color: #e73b35;
  font-weight: 600;
  font-size: 19px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-service__detail--mdl ul li p {
    margin-top: 12px;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__detail--mdl ul li p {
    font-size: 4.8vw;
  }
}
.p-service__detail--btm {
  padding: 36px 0;
  border-top: 2px solid #dddddd;
}
.p-service__detail--btm .p-service__detail--inner {
  max-width: 580px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-service__detail--btm .p-service__detail--inner {
    padding: 0 5%;
  }
}
.p-service__detail--btmTxt {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-service__detail--btmTxt {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__detail--btmTxt {
    margin-bottom: 20px;
    font-size: 4.2vw;
    text-align: left;
  }
}
.p-service__detail--btm h4 {
  margin-bottom: 35px;
  font-weight: 500;
  font-size: 27px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-service__detail--btm h4 {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__detail--btm h4 {
    margin-bottom: 20px;
    font-size: 5.4vw;
  }
}
.p-service__ttl {
  display: flex;
  align-items: center;
  gap: 13px; 
}
@media screen and (max-width: 767px) {
  .p-service__ttl {
    gap: 2px; 
  }
}
.p-service__ttl--num {
  color: #e73b35;
  font-weight: 600;
  font-size: 90px;
}
@media screen and (max-width: 960px) {
  .p-service__ttl--num {
    font-size: 86px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__ttl--num {
    margin-right: 3%;
    font-size: 18vw;
  }
}
.p-service__ttl--main small {
  display: block;
  margin-bottom: 9px;
  color: #e73b35;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .p-service__ttl--main small {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__ttl--main small {
    font-size: 4vw;
  }
}
.p-service__ttl--main h3 {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .p-service__ttl--main h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__ttl--main h3 {
    font-size: 8vw;
  }
}
.p-service__ttl--main h3:before {
  display: inline-block;
  position: relative;
  top: -12px;
  width: 46px;
  height: 2px;
  margin-right: 5px;
  transform: rotate(-45deg);
  background: #e73b35;
  content: "";
}
.p-service__price {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service__price {
    display: block;
  }
}
.p-service__price--item {
  width: 50%;
  border: 1px solid #e73b35;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-service__price--item {
    width: 100%;
  }
}
.p-service__price--item dt {
  padding: 6px 0 8px;
  background: #e73b35;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-service__price--item dt {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__price--item dt {
    font-size: 4.8vw;
  }
}
.p-service__price--item:first-child dt {
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-service__price--item:first-child dt {
    border-right: 1px solid #e73b35;
  }
}
.p-service__price--item:nth-child(2) {
  border-left: 0;
}
@media screen and (max-width: 767px) {
  .p-service__price--item:nth-child(2) {
    border-left: 1px solid #e73b35;
  }
}
.p-service__price--item dd {
  padding: 10px 20px 14px;
  background: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__price--item dd {
    padding: 12px 5%;
  }
}
.p-service__price--item dd p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .p-service__price--item dd p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__price--item dd p {
    min-height: inherit;
    font-size: 4.2vw;
  }
}
.p-service__price--item dd h5 {
  margin-top: 8px;
  color: #e73b35;
  font-weight: 600;
  font-size: 55px;
}
@media screen and (max-width: 767px) {
  .p-service__price--item dd h5 {
    min-height: inherit;
    font-size: 12vw;
  }
}
.p-service__price--item dd h5 small {
  margin-left: 4px;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .p-service__price--item dd h5 small {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__price--item dd h5 small {
    font-size: 4.8vw;
  }
}
.p-service__attention {
  margin-top: 20px;
  color: #888888;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-service__attention {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__attention {
    min-height: inherit;
    margin-top: 12px;
    font-size: 4.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-service .c-button {
    width: 100%;
    margin: 0 auto;
  }
}

.p-flow {
  padding: 74px 0;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 40px 0 40px;
  }
}
.p-flow__inner {
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-top: 24px;
  }
}
.p-flow__img {
  position: absolute;
  top: -267px;
  right: 8px;
  max-width: 263px;
}
@media screen and (max-width: 960px) {
  .p-flow__img {
    top: -168px;
    right: 3%;
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__img {
    display: none;
  }
}
.p-flow__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    display: block;
    margin-bottom: 30px;
  }
}
.p-flow__list--item {
  width: calc(50% - 15px);
  padding: 36px 32px;
  border: 5px solid #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-flow__list--item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 5%;
    border: 4px solid #f5f5f5;
  }
}
.p-flow__list--item h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  border: 3px solid #e73b35;
  border-radius: 100px;
  color: #e73b35;
}
@media screen and (max-width: 767px) {
  .p-flow__list--item h4 {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
  }
}
.p-flow__list--item h4 small {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-flow__list--item h4 small {
    font-size: 12px;
  }
}
.p-flow__list--item h4 strong {
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  .p-flow__list--item h4 strong {
    font-size: 26px;
    line-height: 0.9;
  }
}
.p-flow__list--item h5 {
  margin-bottom: 34px;
  font-weight: 600;
  font-size: 29px;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-flow__list--item h5 {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__list--item h5 {
    margin-bottom: 20px;
    font-size: 6.2vw;
  }
}
.p-flow__list--detail p {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-flow__list--detail p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__list--detail p {
    font-size: 4.2vw;
  }
}
.p-flow__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.p-flow__tel--top {
  display: flex;
  gap: 8px;
}
.p-flow__tel--top span {
  padding: 8px 20px 9px;
  background: #e73b35;
  color: #ffffff;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .p-flow__tel--top span {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__tel--top span {
    padding: 6px 16px 8px;
    font-size: 4.6vw;
  }
}
.p-flow__tel--btm {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-flow__tel--btm {
    margin-top: 12px;
  }
}
.p-flow__tel--btm a {
  color: #e73b35;
  font-weight: 600;
  font-size: 46px;
  line-height: 0.9;
}
@media screen and (max-width: 960px) {
  .p-flow__tel--btm a {
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__tel--btm a {
    display: block;
    font-size: 12.2vw;
    line-height: 0.9;
  }
}
.p-flow__after {
  margin: 0 auto 70px; 
}
@media screen and (max-width: 767px) {
  .p-flow__after {
    margin: 0 auto 20px; 
  }
}
.p-flow__after--inner {
  display: flex;
  align-items: center;
  gap: 70px; 
  padding: 46px;
  background: #ffe1e0;
}
@media screen and (max-width: 960px) {
  .p-flow__after--inner {
    gap: 20px; 
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__after--inner {
    display: block;
    padding: 24px 20px;
  }
}
.p-flow__after--inner h5 {
  font-size: 32px;
  font-weight: 600;
  color: #ea1710;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .p-flow__after--inner h5 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__after--inner h5 {
    margin-bottom: 16px;
    font-size: 6.8vw;
    text-align: center;
  }
}
.p-flow__after--inner p {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-flow__after--inner p {
    font-size: 4.2vw;
  }
}
.p-flow__after small {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-flow__after small {
    margin-top: 12px;
    font-size: 4.2vw;
  }
}
.p-faq {
  padding: 74px 0;
  background: #f5f5f5;
}
@media screen and (max-width: 960px) {
  .p-faq {
    padding: 74px 3%;
  }
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 40px 0;
  }
}
.p-faq__list {
  margin: 40px auto 70px;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin: 20px auto;
  }
}
.p-faq__list--item {
  margin-bottom: 20px;
  padding: 11px 32px;
  border-radius: 6px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq__list--item {
    margin-bottom: 12px;
    padding: 14px 20px;
  }
}
.p-faq__list--item dt, .p-faq__list--item dd {
  position: relative;
}
.p-faq__list--item dt {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .p-faq__list--item dt {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__list--item dt {
    font-size: 4.2vw;
  }
}
.p-faq__list--item dt i {
  position: absolute;
  top: 50%;
  right: 0;
  width: 23px;
  height: 23px;
  margin-top: -12px;
  /*background: url(../../assets/images/common/icon-accordion-off.png) no-repeat;
  background-position: center;
  background-size: 100%;*/
  background: #fff;
  border: 1px solid #000000;
  border-radius: 50px;
  content: "";
}
.p-faq__list--item dt i:before, .p-faq__list--item dt i:after {
  display: block;
  content: '';
  background-color: #000000;
  position: absolute;
  width: 11px;
  height: 1px;
  top: 10px;
  left: 5px;
}
.p-faq__list--item dt i:before {
  width: 1px;
  height: 11px;
  top: 5px;
  left: 10px;
}
.p-faq__list--item dt.is-open i:before {
  display: none;
  /*background: url(../../assets/images/common/icon-accordion-on.png) no-repeat;
  background-position: center;
  background-size: 100%;*/
}
.p-faq__list--item dd {
  display: none;
  padding: 20px 50px 20px;
  font-size: 14px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-faq__list--item dd {
    padding: 12px 30px 12px;
    font-size: 4.2vw;
  }
}
.p-faq__list--item span {
  display: block;
  margin-right: 36px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .p-faq__list--item span {
    margin-right: 5%;
    font-size: 16px;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .p-faq__list--item span {
    font-size: 14px;
  }
}
@media screen and (max-width: 960px) and (max-width: 767px) {
  .p-faq__list--item span {
    font-size: 4.8vw;
  }
}
.p-faq__list--inner {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
@media screen and (max-width: 767px) {
  .p-faq .c-button {
    margin-top: 40px;
  }
}

.p-place {
  padding: 74px 0;
}
@media screen and (max-width: 767px) {
  .p-place {
    padding: 40px 0;
  }
}
.p-place__main {
  padding: 40px 0 0;
}
@media screen and (max-width: 1200px) {
  .p-place__main {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 960px) {
  .p-place__main {
    padding: 40px 3% 0;
  }
}
@media screen and (max-width: 767px) {
  .p-place__main {
    padding: 24px 5% 0;
  }
}
.p-place__main--item {
  display: none;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-place__main--item {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-place__main--item {
    font-size: 4.2vw;
  }
}
.p-place__main--item.is-active {
  display: block;
}
@media screen and (max-width: 1500px) {
  .p-tab__list {
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .p-tab__list {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-tab__list {
    overflow: auto;
    font-size: 4.2vw;
  }
}
.p-tab__list--inner {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-tab__list--inner {
    width: 700px;
    gap: 1%;
  }
}
.p-tab__list li {
  width: 14.25%;
  padding: 20px 10px;
  border-radius: 50px;
  background: #ffe1e0;
  color: #e73b35;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition-duration: 0.3s;
}
.p-tab__list li:hover {
  opacity: 0.8;
}
@media screen and (max-width: 960px) {
  .p-tab__list li {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-tab__list li {
    padding: 16px 4px;
    font-size: 4.2vw;
  }
}
.p-tab__list li.is-active {
  background: #e73b35;
  color: #ffffff;
}
.p-info__list li {
  padding: 24px 0;
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .p-info__list li {
    padding: 5% 0;
  }
}
.p-info__list li:last-child {
  border-bottom: 1px solid #dddddd;
}
.p-info__list li time {
  margin-right: 32px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-info__list li time {
    display: block;
    margin-right: 0;
    margin-bottom: 2px;
  }
}