@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&family=Roboto:wght@700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background-color: #FFF2F5;
  font-size: 15px;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 1279px) {
  body {
    font-size: 14px;
  }
}

main {
  min-height: 100vh;
}

@media screen and (max-width: 1279px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .sp_only {
    display: none !important;
  }
}

.basic_width {
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.basic_width img {
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .basic_width {
    width: 100%;
  }
  .basic_width img {
    width: 100%;
  }
}

.f_pink {
  color: #FD2470;
}

.btn_main {
  padding: 25px 150px;
  position: relative;
  overflow: hidden;
  background-color: #FD2470;
  border: solid 1px #FD2470;
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 1279px) {
  .btn_main {
    width: 100%;
    padding: 20px 4vw;
  }
}
.btn_main::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /*背景の形状*/
  width: 0;
  height: 100%;
  background-color: #FFF2F5;
  /*アニメーションの指定*/
  transition: all 0.3s cubic-bezier(0.52, 0.03, 0.65, 0.99);
  opacity: 0; /*はじめは透過0*/
}
.btn_main:hover {
  color: #FD2470;
  border: solid 1px #FD2470;
  z-index: 1;
}
.btn_main:hover::after {
  width: 100%; /*横幅を伸ばす*/
  opacity: 1; /*不透明に*/
}

h2 {
  height: 120px;
  width: fit-content;
  text-align: left;
}
h2 img {
  height: 100%;
}
@media screen and (max-width: 1279px) {
  h2 {
    height: 50px;
  }
}

.fadein {
  animation-name: fadein;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}

.slidedown {
  transform: translateY(-50px);
}

.slideright {
  transform: translateX(50px);
}

.slideleft {
  transform: translateX(-50px);
}

span[id] {
  display: block;
  height: 70px;
  margin-top: -70px;
  content: "";
}

@keyframes kaiten {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(5px, -7px);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(3px, 0) rotate(0deg);
  }
  50% {
    transform: translate(5px, -10px) rotate(-7deg);
  }
  100% {
    transform: translate(15px, 0) rotate(0deg);
  }
}
._fade_in_box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
._fade_in_box.ready {
  opacity: 1;
  transform: translateY(0px);
}

body {
  width: 100%;
}

header {
  position: relative;
}
header .header_logo_first {
  position: fixed;
  opacity: 0;
  width: 500px;
  padding: 15px 0 0 20px;
  z-index: 99;
}
@media screen and (max-width: 1279px) {
  header .header_logo_first {
    width: 70vw;
    padding: 10px 0 0 2vw;
  }
}
header .header_logo_first img {
  width: 100%;
}
header .header_logo_first.active {
  display: none;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  height: auto;
  padding: 10px;
  background-color: #fff;
  z-index: 99;
  transition: all 0.1s;
  display: none;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1279px) {
  .header {
    display: none;
    margin: initial;
    border-radius: initial;
    top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .header.pc_head_active {
    display: block;
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.4s;
  }
}
.header.active {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media screen and (max-width: 1279px) {
  .header.active {
    display: block;
    position: fixed;
    background-color: #FD2470;
    width: 100vw;
    height: 100vh;
    color: #fff;
    left: 0;
    z-index: 98;
    padding-top: 100px;
  }
}
.header .header_logo {
  width: 15%;
  padding-left: 30px;
}
@media screen and (max-width: 1279px) {
  .header .header_logo {
    width: 90%;
    margin-top: 50px;
  }
}
.header .header_logo img {
  width: 100%;
}
.header .con_header {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .header .con_header {
    flex-direction: column;
    z-index: 100;
  }
}
.header .con_header .menu {
  display: flex;
  color: #000;
  margin: auto 0;
  font-size: 18px;
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu {
    display: block;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    padding: initial;
    padding-top: 30px;
    font-size: 18px;
    color: #FFF;
  }
}
.header .con_header .menu li {
  padding: 0 20px;
  margin: auto 0;
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu li {
    padding: 15px 20px;
  }
}
.header .con_header .menu a:hover {
  color: #FD2470;
}
.header .con_header .menu .btn_main {
  padding: 5px 30px;
  margin-right: 30px;
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu .btn_main {
    width: 90vw;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    padding: 25px 15px;
    border-color: #FFF2F5;
  }
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu .btn_link {
    font-size: 18px;
    padding: 15px;
  }
}
.header .side_btn_line {
  position: absolute;
  top: 60vh;
  right: -90px;
  transform: translateY(0px);
  rotate: 90deg;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.header .side_btn_line a {
  display: block;
  padding: 30px 30px 15px;
  background-color: #FD2470;
  font-weight: bold;
  text-align: center;
  line-height: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 1279px) {
  .header .side_btn_line {
    transform: initial;
    rotate: 0deg;
    bottom: 10vh;
  }
}
.header .side_btn_line:hover {
  transform: translateY(10px);
}
@media screen and (max-width: 1279px) {
  .sp_menu_con {
    position: fixed;
    z-index: 99;
    right: 15px;
    top: 15px;
  }
}

.hamburger {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 60px;
  height: 60px;
  background-color: #FD2470;
  border-radius: 50px;
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  right: 8px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 70%;
}
.hamburger span:nth-of-type(1) {
  top: 26px;
}
.hamburger span:nth-of-type(2) {
  width: 50%;
  top: 35px;
}
.hamburger.active {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  background-color: initial;
}
.hamburger.active span {
  background-color: #FFF2F5;
}
.hamburger.active span:nth-of-type(1) {
  top: 15px;
  right: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.hamburger.active span:nth-of-type(2) {
  top: 28px;
  right: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/main_visual.png");
  background-position: -20vw 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
}
.main_visual::after {
  position: absolute;
  content: "";
  background-image: url("../img/bg_gradation.svg");
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  width: 1500px;
  height: 1500px;
  right: -20%;
  bottom: -10vh;
  z-index: -1;
  animation: kaiten 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .main_visual::after {
    width: 90vw;
    height: 90vw;
    right: -20vw;
    bottom: -2vh;
  }
}
@media screen and (max-width: 1279px) {
  .main_visual {
    background-image: url("../img/sp/main_visual.png");
    height: 70vh;
    background-position: right top;
    padding-bottom: 30vh;
  }
}
.main_visual .logo_txt {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 30vw;
  margin: auto;
}
@media screen and (max-width: 1279px) {
  .main_visual .logo_txt {
    width: 70vw;
    left: 0;
    top: 45vh;
  }
  .main_visual .logo_txt img {
    width: 100%;
  }
}

.concept_container {
  padding: 180px 0;
  height: 100%;
  background-image: url("../img/bg_sky_01.png");
  background-position: -30vw 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
  position: relative;
}
.concept_container::after {
  position: absolute;
  content: "";
  background-image: url("../img/bg_sky_02.png");
  width: 710px;
  height: 710px;
  background-size: cover;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 1279px) {
  .concept_container {
    background-image: url("../img/sp/bg_sky_01.png");
    margin-top: 50px;
    padding: 70px 0 60px;
    background-position: 50% 10%;
  }
  .concept_container::after {
    display: none;
  }
}
.concept_container .basic_width {
  padding: 0 4vw;
}
.concept_container .basic_width h2 {
  position: relative;
  margin-top: 15px;
}
.concept_container .basic_width h2::after {
  position: absolute;
  content: "";
  background-image: url("../img/logo_heartbeat_mark.png");
  width: 240px;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
  z-index: 3;
}
@media screen and (max-width: 1279px) {
  .concept_container .basic_width h2::after {
    width: 130px;
    height: 130px;
    right: -50px;
    top: -100px;
  }
}
.concept_container .basic_width ._img {
  position: absolute;
  width: 400px;
  right: 15vw;
  top: 5vh;
}
@media screen and (max-width: 1279px) {
  .concept_container .basic_width ._img {
    width: 60vw;
    z-index: -1;
    top: 0;
    right: -20px;
  }
}
.concept_container .basic_width ._copy {
  font-size: 45px;
  font-weight: bold;
  padding: 35px 0 40px;
}
@media screen and (max-width: 1279px) {
  .concept_container .basic_width ._copy {
    font-size: 30px;
    padding: 90px 0 0;
  }
}
.concept_container .basic_width ._txt {
  font-size: 20px;
  line-height: 1.5rem;
  width: 800px;
}
@media screen and (max-width: 1279px) {
  .concept_container .basic_width ._txt {
    font-size: 14px;
    line-height: 1.25rem;
    padding: 8px 0;
    width: 100%;
  }
}
.concept_container .about_liver {
  background-color: #FFF;
  display: flex;
  margin-top: 95px;
  padding: 20px 0;
}
@media screen and (max-width: 1279px) {
  .concept_container .about_liver {
    flex-direction: column;
    margin-top: 50px;
  }
}
.concept_container .about_liver ._img {
  position: relative;
  width: 450px;
  right: initial;
  top: -50px;
}
.concept_container .about_liver ._img img {
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .concept_container .about_liver ._img {
    width: 100%;
  }
}
.concept_container .about_liver ._txt {
  padding: 0 20px;
}
@media screen and (max-width: 1279px) {
  .concept_container .about_liver ._txt {
    width: 100%;
    margin-top: -40px;
    line-height: 1.25rem;
    padding: 0 10px 20px;
  }
}
.concept_container .about_liver ._txt .f_pink {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1279px) {
  .concept_container .about_liver ._txt .f_pink {
    margin: 15px 0;
  }
}

.service_container, .contact_container {
  padding-bottom: 80px;
}
@media screen and (max-width: 1279px) {
  .service_container, .contact_container {
    padding: 0px 4vw 60px;
  }
}
.service_container h2, .contact_container h2 {
  margin: -20px 0 20px;
  overflow: visible;
}
@media screen and (max-width: 1279px) {
  .service_container h2, .contact_container h2 {
    margin: initial;
    margin-bottom: 20px;
  }
}
.service_container ._txt, .contact_container ._txt {
  width: 800px;
  background-color: #fff;
  padding: 30px;
  font-size: 20px;
  line-height: 1.75rem;
}
@media screen and (max-width: 1279px) {
  .service_container ._txt, .contact_container ._txt {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    line-height: 1.25rem;
  }
}
.service_container ._detail_list, .contact_container ._detail_list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 1279px) {
  .service_container ._detail_list, .contact_container ._detail_list {
    flex-direction: column;
  }
}
.service_container ._detail_list ._box, .contact_container ._detail_list ._box {
  width: 30%;
  padding: 100px 20px 30px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
}
@media screen and (max-width: 1279px) {
  .service_container ._detail_list ._box, .contact_container ._detail_list ._box {
    width: 100%;
    padding: 35px 15px 30px;
    margin-bottom: 30px;
  }
}
.service_container ._detail_list ._box:first-child::before, .contact_container ._detail_list ._box:first-child::before {
  position: absolute;
  content: "";
  background-image: url("../img/img_01.svg");
  width: 120px;
  height: 96px;
  background-size: cover;
  background-repeat: no-repeat;
  top: -20px;
  left: -20px;
}
@media screen and (max-width: 1279px) {
  .service_container ._detail_list ._box:first-child::before, .contact_container ._detail_list ._box:first-child::before {
    width: 63px;
    height: 50px;
    left: initial;
  }
}
.service_container ._detail_list ._box:nth-child(2)::before, .contact_container ._detail_list ._box:nth-child(2)::before {
  position: absolute;
  content: "";
  background-image: url("../img/img_02.svg");
  width: 147px;
  height: 96px;
  background-size: cover;
  background-repeat: no-repeat;
  top: -20px;
  left: -20px;
}
@media screen and (max-width: 1279px) {
  .service_container ._detail_list ._box:nth-child(2)::before, .contact_container ._detail_list ._box:nth-child(2)::before {
    width: 77px;
    height: 50px;
    left: initial;
  }
}
.service_container ._detail_list ._box:nth-child(3)::before, .contact_container ._detail_list ._box:nth-child(3)::before {
  position: absolute;
  content: "";
  background-image: url("../img/img_03.svg");
  width: 149px;
  height: 96px;
  background-size: cover;
  background-repeat: no-repeat;
  top: -20px;
  left: -20px;
}
@media screen and (max-width: 1279px) {
  .service_container ._detail_list ._box:nth-child(3)::before, .contact_container ._detail_list ._box:nth-child(3)::before {
    width: 78px;
    height: 50px;
    left: initial;
  }
}
.service_container ._detail_list ._box ._img, .contact_container ._detail_list ._box ._img {
  position: relative;
}
.service_container ._detail_list ._box h3, .contact_container ._detail_list ._box h3 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0;
}
@media screen and (max-width: 1279px) {
  .service_container ._detail_list ._box h3, .contact_container ._detail_list ._box h3 {
    font-size: 18px;
    line-height: 1.5rem;
    margin: 10px 0;
  }
}
.service_container ._detail_list ._txt, .contact_container ._detail_list ._txt {
  width: auto;
  background-color: initial;
  padding: initial;
}
.service_container::before, .contact_container::before {
  position: absolute;
  content: "";
  background-image: url("../img/bg_rainbow.jpg");
  width: 80vw;
  height: 90vh;
  mix-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  left: 10vw;
  bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .service_container::before, .contact_container::before {
    background-image: url("../img/sp/bg_rainbow.jpg");
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
  }
}
.service_container::after, .contact_container::after {
  position: absolute;
  content: "";
  background-image: url("../img/logo_heartbeat_mark.png");
  width: 240px;
  height: 200px;
  bottom: 0;
  right: 10vw;
  background-size: cover;
  background-repeat: no-repeat;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
  z-index: 3;
}
@media screen and (max-width: 1279px) {
  .service_container::after, .contact_container::after {
    width: 130px;
    height: 130px;
  }
}

.bg_gradation {
  width: 100%;
  height: 100vh;
  position: relative;
}
.bg_gradation::after {
  overflow: hidden;
  position: absolute;
  content: "";
  background-image: url("../img/bg_gradation.svg");
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  width: 1500px;
  height: 1500px;
  left: -20%;
  bottom: 10vh;
  z-index: -1;
  animation: kaiten 5s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .bg_gradation {
    height: auto;
  }
  .bg_gradation::after {
    width: 90vw;
    height: 90vw;
    left: -20vw;
    top: 0;
  }
}

.q_A_cotainer {
  margin: 100px auto;
}
@media screen and (max-width: 1279px) {
  .q_A_cotainer {
    padding: 0 4vw;
    margin: 50px auto;
  }
}
.q_A_cotainer table {
  width: 100%;
  margin: 30px 0;
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 1279px) {
  .q_A_cotainer table {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.q_A_cotainer table th, .q_A_cotainer table td {
  display: block;
  width: 100%;
  padding-left: 50px;
}
@media screen and (max-width: 1279px) {
  .q_A_cotainer table th, .q_A_cotainer table td {
    padding: 10px 20px;
  }
}
.q_A_cotainer table th {
  background-color: #000;
  color: #FFF;
}
.q_A_cotainer table td {
  background-color: #FFF;
  line-height: 1.5rem;
  padding: 10px 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1279px) {
  .q_A_cotainer table td {
    padding-left: 20px;
  }
}

.contact_container {
  margin-top: 80px;
}
@media screen and (max-width: 1279px) {
  .contact_container {
    margin: initial;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.contact_container ._box {
  z-index: 2;
}
.contact_container::after {
  right: initial;
  left: 10vw;
}
@media screen and (max-width: 1279px) {
  .contact_container::after {
    left: 5vw;
    bottom: -20px;
  }
}
.contact_container .btn_line {
  display: block;
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1279px) {
  .contact_container .btn_line {
    margin-top: 0;
    font-size: 16px;
    padding: 0;
  }
}

.bg_gradation_b {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.bg_gradation_b::after {
  overflow: hidden;
  position: absolute;
  content: "";
  background-image: url("../img/bg_gradation.svg");
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  width: 1000px;
  height: 1000px;
  right: 0;
  top: 0;
  z-index: -1;
  animation: kaiten 5s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

.company_cotainer {
  width: 100%;
  padding: 50px 0 80px;
  background-image: url("../img/bg_sky_03.jpg");
  background-size: cover;
}
@media screen and (max-width: 1279px) {
  .company_cotainer .basic_width {
    padding: 0 4vw;
  }
}
.company_cotainer h2 {
  margin-top: -90px;
}
.company_cotainer table {
  margin: 50px auto 0;
}
.company_cotainer table th, .company_cotainer table td {
  line-height: 1.5rem;
  padding: 10px 0;
}
.company_cotainer table td {
  padding-left: 20px;
}
.company_cotainer table a:hover {
  color: #FD2470;
}

.form_container {
  margin: 80px auto;
}
@media screen and (max-width: 1279px) {
  .form_container {
    margin: 40px auto;
  }
}

.contact_info_con {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  padding: 55px 0;
}
@media screen and (max-width: 1279px) {
  .contact_info_con {
    padding: 55px 5vw 30px;
    font-size: 14px;
    letter-spacing: 0.05rem;
    line-height: 1.5rem;
    text-align: left;
  }
}
.contact_info_con .btn_box {
  margin: 70px 0;
}
@media screen and (max-width: 1279px) {
  .contact_info_con .btn_box {
    margin: 30px 0;
  }
}
.contact_info_con .btn_box .red_btn .red_btn_link {
  font-size: 18px;
  padding: 20px 120px;
  margin: 0 10px;
}
@media screen and (max-width: 1279px) {
  .contact_info_con .btn_box .red_btn .red_btn_link {
    text-align: center;
    display: block;
    padding: 15px 0;
    width: 90vw;
    margin: 10px auto;
  }
}

.contact {
  text-align: center;
  padding: 0 0 80px 0;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .contact {
    padding: 0 5vw;
    padding-bottom: 80px;
  }
}
.contact table {
  width: 100%;
  margin-top: 40px;
}
.contact th {
  text-align: right;
  padding: 13px 0;
  padding-right: 20px;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 1279px) {
  .contact th {
    display: block;
    text-align: left;
    padding: initial;
    letter-spacing: 0.1rem;
  }
}
.contact td {
  width: calc(100% - 150px);
  margin: 0 auto;
  text-align: left;
  padding: 10px 0;
}
@media screen and (max-width: 1279px) {
  .contact td {
    display: block;
    width: 100%;
    padding: initial;
    font-size: 15px;
  }
}
.contact .required::before {
  content: "必須";
  color: #FFF;
  font-size: 13px;
  margin-right: 3px;
  padding: 3px 5px;
  background-color: #FD2470;
}
.contact input {
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .contact input {
    width: 100%;
    text-align: left;
    margin: 0;
  }
}
.contact textarea {
  height: 200px;
  line-height: 1.5rem;
}
.contact input, .contact textarea, .contact select {
  width: calc(100% - 150px);
  text-align: left;
  background-color: #fff;
  padding: 2px 10px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #000;
}
@media screen and (max-width: 1279px) {
  .contact input, .contact textarea, .contact select {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    letter-spacing: 0.05rem;
  }
}
.contact input[type=submit], .contact input[type=button] {
  width: initial;
  text-align: initial;
  background-color: initial;
  padding: initial;
  border-radius: initial;
  border: initial;
  font-size: initial;
  font-weight: initial;
  margin: initial;
  margin: 15px auto;
  font-size: 15px;
  font-weight: 400;
  width: 250px;
  padding: 10px 50px;
  color: #fff;
  background-color: #FD2470;
  border: 0.5px solid #FD2470;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .contact input[type=submit], .contact input[type=button] {
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
    width: 90vw;
    margin: 20px auto 0;
  }
}
.contact input[type=submit]:hover, .contact input[type=button]:hover {
  color: #FD2470;
  background-color: #FFF2F5;
  border-color: #FD2470;
}
.contact input[type=checkbox] {
  justify-content: center;
  width: 15px;
  margin-right: 15px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .contact input[type=checkbox] {
    margin: initial;
    padding: 10px;
  }
}
.contact input[type=checkbox]:checked + .wpcf7-list-item-label:after { /*チェックアイコン*/
  border: none;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  height: 11px;
  left: -30px;
  top: 5px;
  margin: 0 auto;
  transform: rotate(45deg);
  width: 7px;
  opacity: 1;
  position: absolute;
}
@media screen and (max-width: 1279px) {
  .contact input[type=checkbox]:checked + .wpcf7-list-item-label:after {
    left: -15px;
    top: 7px;
  }
}
.contact ::placeholder {
  font-size: 14px;
  letter-spacing: 0.1rem;
  font-weight: 400;
  color: #ccc;
}

.ttl_thx {
  padding-top: 150px;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}

.txt_thx {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 40px 0;
  line-height: 2rem;
}

.btn_back {
  margin-top: 110px;
}
.btn_back a {
  margin: 15px auto;
  padding: 20px 0 50px;
  font-size: 18px;
  font-weight: bold;
  width: 300px;
  padding: 20px 80px;
  color: #000;
  border: 0.5px solid #000;
  position: relative;
  text-align: center;
}
.btn_back a:hover {
  color: #fff;
  background-color: #000;
}

.contact_thanks {
  text-align: center;
}
.contact_thanks .main_visual {
  width: 100%;
  height: 30vh;
  position: relative;
  background-image: url("../img/main_visual_contact.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .contact_thanks .main_visual {
    background-image: url("../img/sp/main_visual_contact.jpg");
    height: 30vh;
  }
}
.contact_thanks .main_visual .logo_hda {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1279px) {
  .contact_thanks .main_visual .logo_hda {
    width: 60vw;
  }
  .contact_thanks .main_visual .logo_hda img {
    width: 100%;
  }
}
.contact_thanks h1 {
  font-size: 35px;
  padding: 50px 0;
}
.contact_thanks .txt_thx p {
  font-size: 20px;
  padding: 30px 0 50px;
}

footer {
  width: 100%;
  text-align: center;
  background-color: #000;
  padding: 10px 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 1279px) {
  footer {
    line-height: 1.2rem;
    font-size: 12px;
  }
}