@charset "UTF-8";
/* ====================================================
Width Media Quary
==================================================== */
/* ====================================================
 Font
==================================================== */
html {
  margin-top: unset !important;
  font-size: 10px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* スムーズスクロール */
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

*,
*:after,
*:before,
blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
p,
pre,
td,
th {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Kosugi Maru", "Noto Sans JP", "Noto Serif", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS 明朝", "MS Mincho", serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: #555555;
  line-height: 1.8;
  overscroll-behavior: none;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: "Kosugi Maru", "Noto Sans JP", "Noto Serif", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS 明朝", "MS Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
body a {
  text-decoration: none;
  transition: 0.3s;
  color: #AA1437;
  cursor: pointer;
}
body a:hover,
body a ::before,
body a ::after,
body a :hover::before,
body a :hover::after {
  transition: 0.3s;
}
body .only-sp {
  display: none !important;
}
@media screen and (max-width: 576px) {
  body .only-sp {
    display: block !important;
  }
}
@media screen and (max-width: 576px) {
  body .only-pc {
    display: none !important;
  }
}
body li {
  list-style: none;
}
body img {
  max-width: 100%;
  height: auto;
}
body input[type=text],
body input[type=tel],
body input[type=email],
body select,
body textarea {
  font-size: 1.5rem;
  font-family: "Jost", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  background-color: #f2f2f2;
  border: none;
  padding: 15px;
  width: 100%;
}
body select {
  position: relative;
  width: 100%;
  padding-right: 28px;
  background: url(./img/select.svg) no-repeat center right 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #f2f2f2;
}
body ::placeholder {
  color: #ccc;
}
body img {
  width: 100%;
  display: block;
}

h1,
h2,
h3 {
  color: #EC6D81;
}

.en {
  font-family: "Zen Kurenaido", sans-serif;
}

.pink {
  color: #EC6D81;
  font-size: 8.5rem;
}
.pink_2 {
  font-size: 3.5rem;
  color: #EC6D81;
}

.txt_center {
  text-align: center;
}
.txt_left {
  text-align: left;
}

.notice-txt {
  margin-top: 10px;
}
@media screen and (max-width: 500px) {
  .notice-txt {
    font-size: 1.4rem;
  }
}

.tel-link {
  color: #555555;
  transition: all 0.3s;
}
.tel-link:hover {
  opacity: 0.7;
}

.btn {
  display: block;
  color: #555555;
  font-size: 2rem;
  background: #fff;
  border-radius: 100px;
  border: #EC6D81 solid 2px;
  padding: 25px 40px;
  position: relative;
  transition: all 0.3s ease-out;
  max-width: 500px;
  margin: 0 auto;
}
.btn div {
  position: absolute;
  background: #EC6D81;
  border-radius: 100px;
  width: 52px;
  height: 52px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.btn div span {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/arrow.png) center/contain no-repeat;
  transition: all 0.3s ease-out;
}
.btn:hover {
  color: #fff;
  background: #EC6D81;
  transition: all 0.3s ease-out;
}
.btn:hover div {
  background: #fff;
}
.btn:hover div span {
  background: url(../img/arrow_02.png) center/contain no-repeat;
}
.btn_form {
  margin: 70px auto 50px;
}

header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.header_inner {
  background: #fff;
  height: 50px;
  position: relative;
}
.header_inner a.header_logo {
  background: url(../img/header_icon.png) center/contain no-repeat;
  width: 120px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .global-nav {
  opacity: 0;
  height: 100%;
  overflow: scroll;
  padding-bottom: 100px;
  pointer-events: none;
  background-color: #FEF2F2;
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.5s ease-out;
  z-index: 999;
}
.header .global-nav.js-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: all 0.5s ease-out;
}
.header .global-nav_list {
  max-width: 350px;
  width: 100%;
  margin: 80px auto 0;
  padding: 0 20px;
}
.header .global-nav_item {
  margin-bottom: 20px;
}
.header .global-nav_item a {
  color: #EC6D81;
  padding-left: 20px;
  position: relative;
  font-size: 1.8rem;
}
.header .global-nav_item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #EC6D81;
}
.header .global-nav_contact {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header_hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: none;
}
@media screen and (max-width: 1080px) {
  .header_hamburger {
    display: block;
  }
}
.header_hamburger span {
  background-color: #EC6D81;
  width: 30px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: 0.3s;
}
.header_hamburger span::before, .header_hamburger span::after {
  content: "";
  background-color: #EC6D81;
  width: 30px;
  height: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.header_hamburger span::before {
  top: -9px;
}
.header_hamburger span::after {
  bottom: -9px;
}
.header_hamburger.js-open span {
  background-color: transparent;
}
.header_hamburger.js-open span::before {
  top: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.header_hamburger.js-open span::after {
  bottom: -1px;
  transform: translateX(-50%) rotate(-45deg);
}

footer {
  padding: 40px 0;
  background: #fff;
}
footer figure {
  width: 165px;
  height: auto;
  margin: 0 auto 20px;
}
footer p {
  text-align: center;
  font-size: 1.8rem;
}

.column {
  display: flex;
}

.left {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 250px);
  background-size: cover;
  z-index: 80;
  padding-top: 50px;
  background: url(../img/bg1.png) center/cover no-repeat;
}
@media screen and (max-width: 576px) {
  .left {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .left_inner {
    display: none;
  }
}
.left_inner .global_nav {
  position: relative;
  top: 200px;
}
.left_inner .global_nav ul {
  width: 250px;
  margin: 0 auto;
}
.left_inner .global_nav ul li {
  font-size: 2rem;
  margin-bottom: 20px;
  transition: all 0.3s;
  padding-left: 25px;
  position: relative;
}
.left_inner .global_nav ul li:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url(../img/nav-deco1.png) center/contain no-repeat;
}
.left_inner .global_nav ul li:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url(../img/nav-deco2.png) center/contain no-repeat;
}
.left_inner .global_nav ul li a {
  color: #EC6D81;
  transition: all 0.3s;
}
.left_inner .global_nav ul li:hover a {
  color: #FCD4D4;
}

.right {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 250px);
  z-index: 80;
  padding: 50px 20px 0;
  background: url(../img/bg2.png) center/cover no-repeat;
}
.right_inner {
  margin-top: 200px;
}
@media screen and (max-width: 1080px) {
  .right_inner {
    display: none;
  }
}
.right_inner .btn {
  margin: 0 auto 30px;
  max-width: 350px;
}
.right_contact_ttl {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
}
.right_contact_ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: url(../img/about/ttl_line.png) center/contain no-repeat;
}
@media screen and (max-width: 576px) {
  .right {
    display: none;
  }
}

.center {
  width: 500px;
  background: #FEF2F2 url(../img/bg.png) center/cover no-repeat;
  background-attachment: fixed;
  box-shadow: 0px 0px 17px #e8bac2;
  z-index: 100;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .center {
    width: 100%;
    margin-top: unset;
  }
}

.mv_img {
  position: relative;
  height: 600px;
}
@media screen and (max-width: 500px) {
  .mv_img {
    height: 450px;
  }
}
.mv_img_bg {
  position: absolute;
  top: -40px;
  right: 0;
  width: 80%;
  height: auto;
  z-index: 1;
  max-width: 500px;
}
@media screen and (max-width: 500px) {
  .mv_img_bg {
    top: 0px;
  }
}
.mv_img_bg img {
  width: 100%;
}
.mv_img h1 {
  position: absolute;
  top: 170px;
  left: 20px;
  z-index: 2;
}
@media screen and (max-width: 500px) {
  .mv_img h1 {
    top: 120px;
  }
}
.mv_img h1 .top_copy01 {
  max-width: 320px;
  margin-bottom: 5px;
}
@media screen and (max-width: 500px) {
  .mv_img h1 .top_copy01 {
    max-width: 250px;
  }
}
.mv_img h1 .top_copy02 {
  max-width: 420px;
}
@media screen and (max-width: 500px) {
  .mv_img h1 .top_copy02 {
    max-width: 310px;
  }
}
.mv_img h1 .top_copy03 {
  max-width: 300px;
  margin-top: 10px;
}
@media screen and (max-width: 500px) {
  .mv_img h1 .top_copy03 {
    max-width: 240px;
  }
}

.sec_about {
  background-color: #FDFFF5;
  border-radius: 30px;
  padding: 45px 20px;
  margin: 0 20px 50px;
  position: relative;
  z-index: 1;
}

.about_deco01 {
  position: absolute;
  right: 0;
  top: 150px;
  width: 105px;
  height: 135px;
  object-fit: contain;
  z-index: -1;
}
.about_deco02 {
  position: absolute;
  left: 0;
  top: 350px;
  width: 135px;
  height: 215px;
  object-fit: contain;
  z-index: -1;
}
.about_deco03 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 110px;
  object-fit: contain;
  z-index: -1;
}
.about_ttl {
  background: url(../img/about/ttl.png) center/contain no-repeat;
  width: 300px;
  height: 120px;
  text-align: center;
  padding-top: 40px;
  margin: 0 auto 50px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .about_ttl {
    width: 250px;
    font-size: 1.8rem;
  }
}
.about_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 30px;
  background: url(../img/about/ttl_deco.png) center/contain no-repeat;
}
.about_ttl_h3 {
  text-align: center;
  position: relative;
  font-size: 2.5rem;
}
.about_ttl_h3::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: url(../img/about/ttl_line.png) center/contain no-repeat;
}
.about_ttl_h3 span {
  display: block;
  font-size: 1.2rem;
  color: #555555;
}
.about_item {
  max-width: 360px;
  width: 100%;
  margin: 40px auto 0;
}
.about_item ul {
  margin-top: 20px;
}
.about_item ul li {
  position: relative;
  padding-left: 20px;
}
.about_item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  background: #EC6D81;
  border-radius: 10px;
  width: 10px;
  height: 10px;
}
.about_item p {
  margin-top: 20px;
}

.sec_good-point {
  margin: 0 0 60px;
  padding: 115px 0 0;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFF8F8;
  background-image: radial-gradient(circle, #FFF4F4 12px, transparent 12px), radial-gradient(circle, #FFF4F4 12px, transparent 12px);
  background-size: 63px 63px;
  background-position: 0 0, 28px 28px;
}
.sec_good-point::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 30px;
  background: url(../img/good_point/bg_top.png) center/contain no-repeat;
}
.sec_good-point::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 30px;
  background: url(../img/good_point/bg_bottom.png) center/contain no-repeat;
}

.good-point {
  margin-bottom: 20px;
}
.good-point_ttl {
  text-align: center;
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.good-point_ttl::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 55px;
  background: url(../img/good_point/good_point.png) center/contain no-repeat;
}
.good-point_copy {
  text-align: center;
  font-size: 3.4rem;
}
.good-point_txt {
  max-width: 335px;
  margin: 20px auto 0;
}
.good-point_01 {
  text-align: center;
  font-size: 4rem;
  line-height: normal;
  margin-top: 30px;
}
.good-point_01 span {
  position: relative;
}
.good-point_01 span::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -16px;
  width: 30px;
  height: 30px;
  background: url(../img/good_point/deco01.png) center/contain no-repeat;
}
.good-point_02 {
  text-align: center;
  font-size: 2.5rem;
}
.good-point_02 span:nth-of-type(2) {
  position: relative;
}
.good-point_02 span:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -20px;
  width: 50px;
  height: 45px;
  background: url(../img/good_point/deco02.png) center/contain no-repeat;
}
.good-point_03 {
  text-align: center;
  font-size: 2.5rem;
}
.good-point_03 span {
  position: relative;
}
.good-point_03 span::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -32px;
  width: 45px;
  height: 39px;
  background: url(../img/good_point/deco03.png) center/contain no-repeat;
}
.good-point figure {
  width: 100%;
}
.good-point figure img {
  object-fit: contain;
  width: 360px;
  height: 407px;
}
.good-point figure img.point01, .good-point figure img.point03 {
  margin-left: auto;
}
.good-point figure img.point02 {
  margin-right: auto;
}

.sec-salary {
  margin-top: 50px;
  padding: 0 20px;
  position: relative;
}
.sec-salary::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 50px;
  width: 50px;
  height: 80px;
  background: url(../img/salary/left_deco.png) center/contain no-repeat;
  z-index: 1;
}
.sec-salary::after {
  content: "";
  position: absolute;
  bottom: 100px;
  right: 50px;
  width: 40px;
  height: 50px;
  background: url(../img/salary/right_deco.png) center/contain no-repeat;
}

.salary_inner {
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  padding: 100px 0 50px;
}
.salary_inner::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
  background: url(../img/salary/top_deco.png) center/contain no-repeat;
}
.salary_ico {
  width: 45px;
  height: 45px;
  margin: 0 auto 20px;
}
.salary_ttl {
  font-size: 2.2rem;
  text-align: center;
  color: #555555;
}

.simulation_img {
  max-width: 300px;
  width: 100%;
  padding: 0 30px;
  margin: 40px auto 0;
}

.sec-keakea {
  background: #FCD4D4;
  padding: 30px 0 200px;
  position: relative;
  margin: 160px 0 0;
  z-index: 0;
}
.sec-keakea::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  background: url(../img/about_keakea/bg_top.png) center/contain no-repeat;
}
@media screen and (max-width: 576px) {
  .sec-keakea::before {
    top: -100px;
    height: 110px;
  }
}
@media screen and (max-width: 500px) {
  .sec-keakea::before {
    top: -85px;
    height: 100px;
  }
}
@media screen and (max-width: 390px) {
  .sec-keakea::before {
    top: -60px;
    height: 70px;
  }
}

.keakea_deco01, .keakea_deco02, .keakea_deco03, .keakea_deco04, .keakea_deco05 {
  position: absolute;
  z-index: -1;
}
.keakea_deco01 {
  left: 0;
  top: 40px;
  width: 157px;
  height: 296px;
}
.keakea_deco02 {
  right: 0;
  top: 370px;
  width: 140px;
  height: 293px;
}
.keakea_deco03 {
  left: 0;
  top: 758px;
  width: 238px;
  height: 292px;
}
.keakea_deco04 {
  right: 0;
  bottom: 362px;
  width: 235px;
  height: 279px;
}
.keakea_deco05 {
  left: 0;
  bottom: 240px;
  width: 212px;
  height: 194px;
}
.keakea_ttl {
  width: 240px;
  height: 190px;
  margin: 0 auto;
}
.keakea_copy {
  background: url(../img/about_keakea/copy_bg.png) center/cover no-repeat;
  padding: 40px 25px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .keakea_copy {
    font-size: 1.6rem;
  }
}

.point3 {
  margin-top: 50px;
}
.point3_ttl {
  width: 307px;
  height: 94px;
  margin: 0 auto;
}
.point3_item {
  background: url(../img/about_keakea/txt_bg.png) center/contain no-repeat;
  max-width: 335px;
  width: 100%;
  height: 356px;
  margin: 20px auto 0;
  padding: 80px 40px;
}
.point3_item_ttl {
  text-align: center;
  font-size: 1.6rem;
  color: #EC6D81;
  text-decoration: underline #EC6D81 1px;
  text-underline-offset: 5px;
  margin-bottom: 20px;
}

.sec-support {
  position: relative;
  background: #fff;
  padding: 0 20px;
  z-index: 1;
}
.sec-support::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  background: url(../img/support/bg_top.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (max-width: 576px) {
  .sec-support::before {
    top: -100px;
    height: 110px;
  }
}
@media screen and (max-width: 500px) {
  .sec-support::before {
    top: -85px;
    height: 100px;
  }
}
@media screen and (max-width: 390px) {
  .sec-support::before {
    top: -60px;
    height: 70px;
  }
}
.sec-support::after {
  content: "";
  position: absolute;
  bottom: -95px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  background: url(../img/support/bg_bottom.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (max-width: 576px) {
  .sec-support::after {
    bottom: -100px;
    height: 110px;
  }
}
@media screen and (max-width: 500px) {
  .sec-support::after {
    bottom: -85px;
    height: 100px;
  }
}
@media screen and (max-width: 390px) {
  .sec-support::after {
    bottom: -60px;
    height: 70px;
  }
}

.support_ttl {
  text-align: center;
}
.support_ttl figure {
  width: 325px;
  height: 110px;
  margin: 0 auto;
}
.support_ttl span {
  font-size: 1.8rem;
  color: #555555;
  padding-top: 40px;
  display: block;
}
.support_ttl_h4 {
  font-size: 1.8rem;
  text-align: center;
  color: #EC6D81;
  position: relative;
  margin-top: 50px;
  display: inline-block;
}
.support_ttl_h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -45px;
  transform: translateY(-50%);
  width: 36px;
  height: 45px;
  background: url(../img/support/copy_deco_left.png) center/contain no-repeat;
}
.support_ttl_h4::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -45px;
  transform: translateY(-50%);
  width: 36px;
  height: 45px;
  background: url(../img/support/copy_deco_right.png) center/contain no-repeat;
}
.support_txt {
  width: 100%;
  margin: 30px auto 0;
}

.profile {
  margin-top: 85px;
}
.profile_ttl {
  width: 265px;
  margin: 0 auto;
}
.profile_item {
  background: url(../img/support/txt_bg01.png) center/contain no-repeat;
  padding: 25px 20px;
  margin-top: 35px;
  width: 100%;
  min-height: 400px;
  text-align: center;
}
.profile_item figure {
  width: 122px;
  margin: 0 auto 35px;
}
.profile_item p {
  max-width: 295px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .profile_item p {
    font-size: 1.4rem;
  }
}
.profile_item p span {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 500px) {
  .profile_item p span {
    font-size: 2rem;
  }
}
.profile_item_02 {
  margin-top: 30px;
  background: url(../img/support/txt_bg02.png) center/contain no-repeat;
  padding: 25px 20px;
  text-align: center;
  min-height: 153px;
}
.profile_item_02 p span {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.sec-contact {
  padding: 170px 20px 60px;
  background: #FEF2F2;
}

.contact_ttl {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  font-size: 2.5rem;
  line-height: 30px;
}
.contact_ttl::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 37px;
  background: url(../img/contact/mail_icon.png) center/contain no-repeat;
}
.contact_ttl_02 {
  text-align: center;
  color: #555555;
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}
.contact_ttl_02::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -25px;
  width: 30px;
  height: 25px;
  background: url(../img/contact/ttl_deco_left.png) center/contain no-repeat;
}
.contact_ttl_02::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -25px;
  width: 30px;
  height: 25px;
  background: url(../img/contact/ttl_deco_right.png) center/contain no-repeat;
}
.contact_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.contact_flex span {
  text-align: center;
  font-size: 4rem;
  color: #EC6D81;
  padding-top: 8px;
  position: relative;
  line-height: normal;
}
.contact_flex span::before {
  content: "Step";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #EC6D81;
  font-size: 1.5rem;
}
.contact_flex p {
  background: #fff;
  border-radius: 10px;
  padding: 18px 15px;
  width: 88%;
  color: #EC6D81;
  line-height: 20px;
}
@media screen and (max-width: 500px) {
  .contact_flex p {
    width: 83%;
  }
}

.contact_form {
  margin-top: 110px;
  padding: 0 20px;
}
.contact_form label {
  font-size: 1.8rem;
  color: #EA5E6E;
}
.contact_form span.req {
  font-size: 1rem;
  color: #818181;
  border: #818181 solid 1px;
  border-radius: 100px;
  padding: 5px 10px;
}
.contact_form dt {
  margin-bottom: 5px;
}
.contact_form dd {
  margin-bottom: 40px;
}
.contact_form .agree span.req {
  line-height: 1;
}

.postal_flex {
  display: flex;
  align-items: center;
}
.postal_flex .wpcf7-form-control-wrap {
  flex: 1;
}
.postal_ico {
  color: #555555;
  font-size: 2rem;
  width: 40px;
  margin-bottom: 15px;
}

body .form input[type=text],
body .form input[type=tel],
body .form input[type=email],
body .form select,
body .form textarea {
  background-color: #FDFFF5;
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 20px;
}

input[type=submit] {
  color: #fff;
  border: none;
  background: transparent;
  font-size: 2rem;
  font-family: "Kosugi Maru", "Noto Sans JP", "Noto Serif", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS 明朝", "MS Mincho", serif;
  line-height: unset;
  cursor: pointer;
}

.form_submit {
  text-align: center;
  padding: 10px 40px;
  max-width: 300px;
  background: #EA5E6E;
  transition: all 0.3s ease-out;
  display: block;
  margin: 0 auto;
  border-radius: 100px;
  cursor: pointer;
}
.form_submit:hover {
  background: #AA1437;
  transition: 0.3s;
}

.agree {
  text-align: center;
}
.agree a {
  color: #EA5E6E;
  position: relative;
  font-size: 1.4rem;
  text-decoration: underline;
  margin-right: 25px;
  transition: 0.3s;
}
.agree a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../img/another_ico.png) center/contain no-repeat;
}
.agree a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.agree label {
  color: #555555;
  font-size: 1.4rem;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.form_arrow {
  position: relative;
}
.form_arrow::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 20px;
  transform: rotate(135deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #EA5E6E;
  border-right: 2px solid #EA5E6E;
  z-index: 1;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #EA5E6E;
  border: 2px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}

#included-files-fie-on-wp-footer {
  display: none;
}

.form_birth_flex {
  display: flex;
  gap: 15px;
}
.form_birth_item {
  display: flex;
  align-items: flex-end;
  flex: 1;
  gap: 5px;
}
.form_birth_item span.wpcf7-form-control-wrap {
  width: 100%;
}
.form_birth_item span.unit {
  display: block;
  margin-bottom: 10px;
}

.form_radio span.wpcf7-list-item {
  margin-right: 30px;
}
.form_radio span.wpcf7-form-control.wpcf7-radio {
  align-items: center;
  display: flex;
}
.form_radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}
.form_radio input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: #EA5E6E;
}

.form_checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  margin-bottom: 15px;
}

.form_note {
  font-size: 1.2rem;
  color: #818181;
}

.form_interview input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-date {
  width: 200px;
  height: 50px;
  border: none;
  background-color: #FDFFF5;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 10px;
}

.masseur_recruit_thanks_txt {
  margin-bottom: 120px;
}
.masseur_recruit_thanks_txt span {
  color: #EA5E6E;
  font-size: 2rem;
}
.masseur_recruit_thanks_txt a {
  text-decoration: underline;
  color: #EA5E6E;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */