@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

@font-face {
  font-family: "HeiseiMaruGothic";
  src: url("./font/Heisei-Maru-Gothic-Std-W8.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HeiseiMaruGothic";
  src: url("./font/Heisei-Maru-Gothic-Std-W4.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "HeiseiMaruGothic";
  color: #3D3D3D;
}
@media screen and (max-width: 460px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img/lp-bg.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 800px) {
  .bg {
    background-color: rgba(113, 189, 255, 0.5);
    background-image: none;
  }
}
@media screen and (max-width: 460px) {
  .bg {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .bg_content {
    display: none;
  }
}

.lp_body {
  position: absolute;
  z-index: 4;
  margin-inline: auto;
  width: 100%;
  background-color: #F3F3F3;
  max-width: 460px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1200px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 460px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
    border-radius: 0;
  }
}

.bg_bottom {
  position: absolute;
  width: 180px;
  bottom: 40px;
  right: 40px;
}
@media screen and (max-width: 1400px) {
  .bg_bottom {
    width: 160px;
  }
}

.bg_main {
  width: 28vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4vw;
}
@media screen and (max-width: 1400px) {
  .bg_main {
    left: 2vw;
  }
}
.bg_main .cta_btn {
  margin-top: 40px;
}

/*------------------- fv ------------------*/
.fv {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.fv_top {
  background-color: #fff;
  padding: 8px 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 1rem;
}

.fv_top span {
  font-weight: 700;
  color: #FF7171;
  animation: marquee 12s linear infinite;
  font-size: 18px;
}

@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
.fv_main {
  position: relative;
  margin-bottom: 20px;
}

.fv_bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.fv_txt {
  width: 350px;
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 28px;
}
@media screen and (max-width: 460px) {
  .fv_txt {
    width: 76vw;
    top: 5.2vw;
    left: 3vw;
  }
}

.fv_logo {
  width: 164px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 340px;
}
@media screen and (max-width: 460px) {
  .fv_logo {
    width: 35vw;
    top: 74vw;
  }
}

.fv_img {
  width: 160px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 460px) {
  .fv_img {
    width: 35vw;
  }
}

.fv_content {
  padding-bottom: 40px;
}

.fv_heading {
  margin-bottom: 24px;
}

.fv_heading span {
  display: block;
  font-size: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}

.fv_heading h2 {
  font-size: 36px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #FF7171;
}

.fv_inner {
  border-radius: 16px;
  border: 3px solid #FF7171;
  border-bottom: 6px solid #FF7171;
  overflow: hidden;
  width: 94%;
  margin: 0 auto 8px;
}

.fv_inner h3 {
  color: #fff;
  background-color: #FF7C81;
  padding: 16px 0;
  font-weight: 700;
  font-size: 21px;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .fv_inner h3 {
    font-size: 18px;
  }
}

.fv_list {
  background-color: #FFFAEB;
  padding: 20px 0;
}

.fv_list ul {
  width: 320px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .fv_list ul {
    width: 280px;
  }
}

.fv_list li {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-left: 40px;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .fv_list li {
    font-size: 16px;
    padding-left: 28px;
  }
}
.fv_list li:not(:last-child) {
  margin-bottom: 16px;
}
.fv_list li span {
  font-size: 12px;
  font-weight: 400;
}
.fv_list li::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  background-image: url(../img/check-pink.webp);
  background-size: 100% 100%;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 460px) {
  .fv_list li::after {
    width: 20px;
    height: 20px;
  }
}

.header_hamburger_menu {
  display: block;
  position: fixed;
  top: 58px;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 460px) {
  .header_hamburger_menu {
    top: 48px;
  }
}

.toggle_btn {
  width: 32px;
  height: 36px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.toggle_btn:hover {
  opacity: 0.7;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 4px;
  background-color: #FF7C81;
  border-radius: 1000px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
  width: 100%;
}
.toggle_btn span:nth-child(2) {
  top: 16px;
  width: 100%;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
  width: 100%;
}

.open .toggle_btn span {
  background-color: #2993EF;
  transition: all 0.5s;
}
.open .toggle_btn span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  bottom: 14px;
  transform: rotate(-45deg);
}

.mask {
  padding: 120px 0;
  display: block;
  position: fixed;
  opacity: 0;
  top: 0;
  right: -1000px;
  height: 100vh;
  width: 350px;
  background: #fff;
  z-index: -4;
  transition: all 0.5s;
}

.mask .header_link {
  margin: 0 auto 36px;
  width: -moz-fit-content;
  width: fit-content;
}

.mask .header_link a {
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  transform: all 0.3s;
  width: 280px;
  border-bottom: 2px solid #71BDFF;
  text-align: right;
  padding-bottom: 4px;
}
@media screen and (max-width: 460px) {
  .mask .header_link a {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 2px;
  }
}
.mask .header_link a:hover {
  opacity: 0.6;
}

.open.mask {
  opacity: 1;
  z-index: 80;
  right: 0;
}

/*------------------- cta ------------------*/
.cta {
  background-image: url(../img/cta_bg.webp);
  background-size: 100% 100%;
  padding: 24px 0;
  position: relative;
}

.cta_img {
  width: 140px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 460px) {
  .cta_img {
    width: 120px;
  }
}

.cta_wrap {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  padding: 32px 16px;
}
@media screen and (max-width: 460px) {
  .cta_wrap {
    width: 94%;
  }
}

.cta_bubble {
  font-size: 18px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  position: relative;
  color: #2993EF;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 460px) {
  .cta_bubble {
    font-size: 16px;
  }
}
.cta_bubble::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 24px;
  background-color: #2993EF;
  transform: translateY(-50%) rotate(-32deg);
  border-radius: 10px;
  left: -24px;
  top: 50%;
}
@media screen and (max-width: 460px) {
  .cta_bubble::before {
    left: -16px;
  }
}
.cta_bubble::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 24px;
  background-color: #2993EF;
  transform: translateY(-50%) rotate(32deg);
  border-radius: 10px;
  right: -24px;
  top: 50%;
}
@media screen and (max-width: 460px) {
  .cta_bubble::after {
    right: -16px;
  }
}

.cta_btn {
  position: relative;
  transition: all 0.3s;
  display: block;
  margin-bottom: 20px;
}
.cta_btn img {
  position: relative;
  z-index: 3;
  border-radius: 8px;
}
.cta_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 0;
  background-color: #FFA133;
  border-radius: 8px;
}

.cta_btn:hover {
  top: 5px;
}
.cta_btn:hover::after {
  top: 0;
}

.cta_note {
  background-color: #2993EF;
  padding: 6px 40px 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 460px) {
  .cta_note {
    font-size: 16px;
  }
}

/*------------------- diagnosis ------------------*/
.diagnosis {
  background-color: #F3F3F3;
  padding: 48px 0 100px;
  background-image: url(../img/diagnosis_bg.webp);
  background-size: cover;
  position: relative;
}
.diagnosis::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 140px;
  background-image: url(../img/diagnosis_bottom.webp);
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
}

.diagnosis_wrap {
  position: relative;
  z-index: 6;
}

.diagnosis_heading {
  width: 70%;
  margin: 0 auto 24px;
}

.diagnosis_form {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .diagnosis_form {
    width: 94%;
  }
}

.diagnosis_item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}
@media screen and (max-width: 460px) {
  .diagnosis_item {
    padding: 20px 12px;
  }
}
.diagnosis_item:not(:last-child) {
  margin-bottom: 24px;
}

.diagnosis_ttl h3 {
  color: #2993EF;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 6px;
  position: relative;
}
.diagnosis_ttl h3::after {
  content: "";
  position: absolute;
  width: 110%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #71BDFF;
  height: 3px;
  border-radius: 100px;
}

.diagnosis_ttl p {
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .diagnosis_ttl p {
    font-size: 16px;
  }
}

.diagnosis_check {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 375px) {
  .diagnosis_check {
    grid-template-columns: 1fr 1.4fr 1fr;
  }
}

input[type=radio] {
  display: none;
}

.checkbox-style {
  display: block;
  position: relative;
  padding-top: 48px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.checkbox-style span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .checkbox-style span {
    font-size: 14px;
  }
}

.checkbox-style span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
}

.checkbox-style span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 24px;
  height: 16px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

.checkbox-style:nth-child(1) span {
  color: #2993EF;
}
.checkbox-style:nth-child(1) span::before {
  border: 2px solid #A6D5FF;
  background-color: #D7ECFF;
}
.checkbox-style:nth-child(1) input[type=radio]:checked + span::before {
  border: 2px solid #4FADFF;
  background-color: #9FD2FF;
}

.checkbox-style:nth-child(2) span {
  color: #828282;
}
.checkbox-style:nth-child(2) span::before {
  border: 2px solid #FFCEA3;
  background-color: #FFEEDB;
}
.checkbox-style:nth-child(2) input[type=radio]:checked + span::before {
  border: 2px solid #FFA133;
  background-color: #FFC786;
}

.checkbox-style:nth-child(3) span {
  color: #FF7C81;
}
.checkbox-style:nth-child(3) span::before {
  border: 2px solid #FFB5B8;
  background-color: #FFE8E9;
}
.checkbox-style:nth-child(3) input[type=radio]:checked + span::before {
  border: 2px solid #FF7C81;
  background-color: #FFA2A5;
}

input[type=radio]:checked + span {
  font-weight: 700;
}

.diagnosis_submit {
  width: 100%;
  margin: 0 auto;
  height: 66px;
  position: relative;
}
.diagnosis_submit::after {
  content: "";
  position: absolute;
  background-color: #D65A78;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 5px;
  left: 0;
}
.diagnosis_submit::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow.webp);
  background-size: 100% 100%;
  top: 52%;
  transform: translateY(-50%);
  right: 48px;
  z-index: 7;
}
@media screen and (max-width: 460px) {
  .diagnosis_submit::before {
    right: 32px;
  }
}

.diagnosis_submit:hover {
  top: 5px;
}
.diagnosis_submit:hover::after {
  top: 0;
}

.diagnosis_submit button {
  background-color: #FF8BA7;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 460px) {
  .diagnosis_submit button {
    font-size: 20px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1200px) {
  .modal {
    z-index: 3;
  }
}
@media screen and (max-width: 460px) {
  .modal {
    padding: 12px;
  }
}
@media screen and (max-width: 460px) {
  .modal .lp_body {
    overflow-y: scroll;
    -ms-overflow-style: none;
  }
}
@media screen and (max-width: 460px) {
  .modal .lp_body::-webkit-scrollbar {
    display: none;
  }
}

.modal_content {
  display: none;
  padding: 40px 0 80px;
  position: relative;
  height: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@media screen and (max-width: 460px) {
  .modal_content {
    height: auto;
  }
}

.modal_close {
  width: 40px;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 8;
  cursor: pointer;
  display: block;
}

.modal_bg1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.modal_bg2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

#modalHigh {
  background-color: #FFE597;
}

#modalMiddle {
  background-color: #C9E6FF;
}

#modalLow {
  background-color: #F1FFD5;
}

.modal_wrap {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 460px) {
  .modal_wrap {
    width: 94%;
  }
}

.modal_heading {
  width: 186px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 5;
}

.modal_top {
  margin-bottom: 24px;
}

.modal_img {
  width: 260px;
  margin: 0 auto;
}

.modal_detail {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  margin-bottom: 24px;
}

.modal_btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: 66px;
  position: relative;
}
.modal_btn::after {
  content: "";
  position: absolute;
  background-color: #D65A78;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 5px;
  left: 0;
}
.modal_btn::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow.webp);
  background-size: 100% 100%;
  top: 52%;
  transform: translateY(-50%);
  right: 48px;
  z-index: 7;
}
@media screen and (max-width: 460px) {
  .modal_btn::before {
    right: 32px;
  }
}

.modal_btn:hover {
  top: 5px;
}
.modal_btn:hover::after {
  top: 0;
}

.modal_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF8BA7;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 460px) {
  .modal_btn span {
    font-size: 20px;
  }
}

/*-------------------  ------------------*/
.message {
  background-color: #F3F3F3;
}

.message_wrap {
  background-color: #71BDFF;
  padding: 80px 0 0;
  position: relative;
}
@media screen and (max-width: 460px) {
  .message_wrap {
    padding: 60px 0 0;
  }
}

.message_left {
  position: absolute;
  width: 76px;
  left: 0;
  bottom: -120px;
}
@media screen and (max-width: 460px) {
  .message_left {
    width: 50px;
  }
}

.message_right {
  width: 68px;
  position: absolute;
  right: 0;
  bottom: -4px;
}
@media screen and (max-width: 460px) {
  .message_right {
    width: 48px;
    bottom: 16px;
  }
}

.message_img {
  width: 280px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -45px;
}
@media screen and (max-width: 460px) {
  .message_img {
    width: 220px;
    top: -39px;
  }
}

.message_list {
  width: 90%;
  margin: 0 auto 40px;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 460px) {
  .message_list {
    width: 94%;
    margin: 0 auto 24px;
  }
}

.message_list li {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  width: 100%;
  padding: 22px 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 460px) {
  .message_list li {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .message_list li {
    font-size: 16px;
  }
}
.message_list li:nth-child(1) {
  margin-bottom: 16px;
}

.message_bubble {
  background-color: #FF7171;
  padding: 8px 24px;
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 16px;
  color: #fff;
  position: relative;
  font-size: 18px;
  z-index: 6;
}
.message_bubble::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  background-color: #FF7171;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.message_bubble span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
}

.message_heading {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  font-size: 36px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 460px) {
  .message_heading {
    font-size: 28px;
  }
}
.message_heading span {
  font-size: 42px;
}
@media screen and (max-width: 460px) {
  .message_heading span {
    font-size: 36px;
  }
}

.message_sub {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 460px) {
  .message_sub {
    font-size: 16px;
  }
}

/*------------------- reason ------------------*/
.reason {
  padding: 40px 0 60px;
}

.reason_heading {
  margin-bottom: 24px;
}
.reason_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
.reason_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

.reason_content {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 460px) {
  .reason_content {
    padding: 16px;
    width: 94%;
  }
}
.reason_content img {
  border-radius: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 460px) {
  .reason_content img {
    margin-bottom: 12px;
  }
}
.reason_content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width: 460px) {
  .reason_content p {
    font-size: 16px;
  }
}
.reason_content p span {
  color: #FF7171;
  font-weight: 700;
}

/*------------------- keyword ------------------*/
.keyword {
  padding: 60px 0;
  background-color: #FF7171;
  position: relative;
}

.keyword_bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.keyword_wrap {
  position: relative;
  z-index: 5;
}

.keyword_heading {
  margin-bottom: 24px;
}
.keyword_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
.keyword_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
  color: #fff;
}

.keyword_img {
  width: 220px;
  margin: 0 auto;
  transform: translateY(1px);
}
@media screen and (max-width: 460px) {
  .keyword_img {
    width: 180px;
  }
}

.keyword_list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 460px) {
  .keyword_list {
    width: 94%;
  }
}

/*------------------- voice ------------------*/
.voice {
  padding: 60px 0 90px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .voice {
    padding: 40px 0 60px;
  }
}
.voice::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 140px;
  background-image: url(../img/diagnosis_bottom.webp);
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
}

.voice_wrap {
  position: relative;
  z-index: 2;
}

.voice_heading {
  margin-bottom: 24px;
}
.voice_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 460px) {
  .voice_heading img {
    width: 80px;
  }
}
.voice_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 460px) {
  .voice_heading h2 {
    font-size: 20px;
  }
}

.voice_list {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .voice_list {
    width: 94%;
  }
}

.voice_item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.14);
}
.voice_item:not(:last-child) {
  margin-bottom: 16px;
}
.voice_item img {
  border-radius: 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .voice_item img {
    margin-bottom: 12px;
  }
}
.voice_item p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width: 460px) {
  .voice_item p {
    font-size: 16px;
  }
}
.voice_item p span {
  color: #FF7171;
  font-weight: 700;
}

/*------------------- wanted ------------------*/
.wanted {
  background-color: #71BDFF;
  padding: 32px 0 0;
}
@media screen and (max-width: 460px) {
  .wanted {
    padding: 12px 0 0;
  }
}

.wanted_heading {
  margin-bottom: 24px;
}
.wanted_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 460px) {
  .wanted_heading img {
    width: 80px;
  }
}
.wanted_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .wanted_heading h2 {
    font-size: 20px;
  }
}

.wanted_content {
  width: 90%;
  margin: 0 auto 24px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .wanted_content {
    width: 94%;
  }
}

.wanted_ttl {
  color: #fff;
  padding: 12px 0;
  text-align: center;
  width: 100%;
  background-color: #2993EF;
  font-weight: 700;
  font-size: 22px;
}
@media screen and (max-width: 460px) {
  .wanted_ttl {
    font-size: 20px;
  }
}

.wanted_list {
  background-color: #fff;
  padding: 20px;
}

.wanted_item {
  padding-bottom: 16px;
  border-bottom: 2px solid #DEDEDE;
  margin-bottom: 16px;
}

.wanted_item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2993EF;
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
@media screen and (max-width: 460px) {
  .wanted_item h4 {
    font-size: 18px;
  }
}
.wanted_item h4::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/check-blue.webp);
  background-size: 100% 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.wanted_item p {
  line-height: 1.6;
}

.wanted_slide {
  position: relative;
}

.wanted_bottom {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide {
  height: 200px !important;
  /* 高さを指定 */
  width: auto !important;
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: 200px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------- schedule ------------------*/
.schedule {
  background-color: #FFBD83;
  padding: 32px 0 60px;
}

.schedule_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .schedule_wrap {
    width: 94%;
  }
}

.schedule_heading {
  margin-bottom: 12px;
}

.schedule_item:not(:last-child) {
  margin-bottom: 12px;
}

/*------------------- career ------------------*/
.career {
  padding: 40px 0;
}

.career_heading {
  margin-bottom: 24px;
}
.career_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
.career_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.6;
}

.career_list {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .career_list {
    width: 90%;
  }
}

.career_item {
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.14);
}
.career_item:not(:last-child) {
  margin-bottom: 16px;
}

/*------------------- future ------------------*/
.future {
  padding-bottom: 40px;
}

.future_heading {
  margin-bottom: 16px;
}
.future_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 460px) {
  .future_heading img {
    width: 80px;
  }
}
.future_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 460px) {
  .future_heading h2 {
    font-size: 20px;
  }
}

.future .fv_list {
  background-color: #fff;
}

.future_img {
  width: 260px;
  margin: 0 auto;
}

/*------------------- philosophy ------------------*/
.philosophy {
  background-color: #FFBD83;
  padding: 40px 0;
  position: relative;
}

.philosophy_bg {
  position: absolute;
  width: 100%;
  top: 120px;
  left: 0;
}

.philosophy_wrap {
  position: relative;
  z-index: 5;
}

.philosophy_heading {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .philosophy_heading {
    width: 94%;
  }
}

.philosophy_img {
  width: 94%;
  margin: 0 auto 16px;
}
@media screen and (max-width: 460px) {
  .philosophy_img {
    width: 98%;
  }
}

.philosophy_main {
  width: 90%;
  margin: 0 auto 24px;
}
@media screen and (max-width: 460px) {
  .philosophy_main {
    width: 94%;
  }
}
.philosophy_main img {
  width: 86%;
}

.philosophy_txt {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  padding: 16px;
  border-radius: 8px;
}
@media screen and (max-width: 460px) {
  .philosophy_txt {
    width: 94%;
  }
}

.philosophy_txt p {
  line-height: 2;
  /* 行間調整 */
  background: repeating-linear-gradient(to bottom, transparent 0, transparent calc(2em - 2px), #E1E1E1 calc(2em - 1px), #E1E1E1 2em);
}

/*------------------- visit ------------------*/
.visit {
  position: relative;
}

.visit_wrap {
  position: relative;
}
@media screen and (max-width: 375px) {
  .visit_wrap {
    padding-bottom: 24px;
    background-color: #71BDFF;
  }
}

.visit_heading {
  width: 90%;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 460px) {
  .visit_heading {
    width: 94%;
  }
}

.visit_content {
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 460px) {
  .visit_content {
    width: 94%;
  }
}

.visit_main {
  margin-bottom: 16px;
}
@media screen and (max-width: 375px) {
  .visit_main {
    margin-bottom: 8px;
  }
}

.visit_ttl {
  padding: 8px 0;
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .visit_ttl {
    margin-bottom: 8px;
  }
}
.visit_ttl h4 {
  font-weight: 700;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .visit_ttl h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .visit_ttl h4 {
    font-size: 16px;
  }
}

.visit_txt {
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .visit_txt {
    font-size: 14px;
  }
}

/*------------------- flow ------------------*/
.flow {
  padding: 40px 0 60px;
}

.flow_heading {
  margin-bottom: 24px;
}
@media screen and (max-width: 460px) {
  .flow_heading {
    margin-bottom: 20px;
  }
}
.flow_heading img {
  width: 96px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .flow_heading img {
    width: 80px;
  }
}
.flow_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 460px) {
  .flow_heading h2 {
    font-size: 20px;
  }
}

.flow_list {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .flow_list {
    width: 94%;
  }
}

.flow_item {
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.14);
}
.flow_item:not(:last-child) {
  margin-bottom: 16px;
}

/*------------------- benefits ------------------*/
.benefits {
  background-color: #71BDFF;
  padding: 40px 0 60px;
  position: relative;
}

.benefits_bg {
  width: 124px;
  position: absolute;
  top: 120px;
  left: 0;
}
@media screen and (max-width: 460px) {
  .benefits_bg {
    width: 100px;
  }
}

.benefits_wrap {
  position: relative;
  z-index: 5;
}

.benefits_heading {
  width: 80%;
  margin: 0 auto 24px;
}

.benefits_list {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .benefits_list {
    width: 94%;
  }
}

.benefits_item {
  background-color: #fff;
  padding: 22px;
  border: 4px solid #FFA133;
  border-radius: 16px;
  box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 460px) {
  .benefits_item {
    border: 3px solid #FFA133;
    padding: 12px;
  }
}
.benefits_item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 460px) {
  .benefits_item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.benefits_item img {
  border-radius: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .benefits_item img {
    margin-bottom: 12px;
  }
}

.benefits_txt h3 {
  position: relative;
  padding-left: 48px;
  font-weight: 400;
  color: #FFA133;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .benefits_txt h3 {
    font-size: 18px;
    padding-left: 36px;
    margin-bottom: 8px;
  }
}
.benefits_txt h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 40px;
  background-image: url(../img/benefit_medal.webp);
  background-size: 100% 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 460px) {
  .benefits_txt h3::after {
    width: 24px;
    height: 32px;
  }
}

.benefits_txt p {
  line-height: 1.8;
}

/*------------------- foam ------------------*/
.foam {
  background-color: #FFFAEB;
  padding: 40px 0 60px;
}

.foam_heading {
  margin-bottom: 24px;
}
.foam_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 460px) {
  .foam_heading img {
    width: 80px;
  }
}
.foam_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .foam_heading h2 {
    font-size: 20px;
  }
}
.foam_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.foam_list {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .foam_list {
    width: 94%;
  }
}

.foam_item {
  background-color: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.14);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 460px) {
  .foam_item {
    padding: 16px;
  }
}
.foam_item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 460px) {
  .foam_item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.foam_img {
  border-radius: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 460px) {
  .foam_img {
    margin-bottom: 16px;
  }
}

.foam_ttl {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width: 460px) {
  .foam_ttl {
    font-size: 18px;
  }
}

.foam_txt {
  margin-bottom: 12px;
  display: block;
}

.foam_num {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 350px) {
  .foam_num {
    font-size: 14px;
  }
}

.foam_num_tel {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 24px;
}
.foam_num_tel::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/foam_tel.webp);
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.foam_num_fax {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 24px;
}
.foam_num_fax::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/foam_fax.webp);
  background-size: 100% 100%;
  top: 56%;
  transform: translateY(-50%);
  left: 0;
}

.foam_map {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}
.foam_map iframe {
  width: 100%;
  height: 100%;
}

/*------------------- attention ------------------*/
.attention_content {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 48px 0;
  position: relative;
}

.attention_bg {
  position: absolute;
  width: 100%;
  top: -150px;
  left: 0;
}

.attention_img {
  width: 160px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
}

.attention_content h3 {
  font-weight: 700;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 375px) {
  .attention_content h3 {
    font-size: 16px;
  }
}

.attention_content h2 {
  text-align: center;
  color: #FF7171;
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 375px) {
  .attention_content h2 {
    font-size: 28px;
  }
}

.attention_bubble {
  background-color: #FF7171;
  color: #fff;
  padding: 16px 40px 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 100px;
  position: relative;
}
.attention_bubble::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-color: #FF7171;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}
.attention_bubble span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
}

/*------------------- form ------------------*/
.form {
  background-color: #FFFAEB;
  padding: 40px 0 60px;
}

.form_heading {
  margin-bottom: 24px;
}
.form_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 460px) {
  .form_heading img {
    width: 80px;
  }
}
.form_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .form_heading h2 {
    font-size: 20px;
  }
}

.form_content {
  width: 90%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 460px) {
  .form_content {
    width: 94%;
  }
}

.form_item {
  margin-bottom: 20px;
}

.form_item h3 {
  margin-bottom: 12px;
  font-weight: 700;
}

.form_input input,
.form_input textarea,
.form_input select {
  width: 100%;
  border: 2px solid #9AC939;
  border-radius: 4px;
  padding: 12px;
  background-color: #fff;
  line-height: 1.5;
}

.form_submit {
  width: 100%;
  margin: 0 auto;
  height: 66px;
  position: relative;
}
.form_submit::after {
  content: "";
  position: absolute;
  background-color: #D65A78;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 5px;
  left: 0;
}
.form_submit::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow.webp);
  background-size: 100% 100%;
  top: 52%;
  transform: translateY(-50%);
  right: 48px;
  z-index: 7;
}
@media screen and (max-width: 460px) {
  .form_submit::before {
    right: 32px;
  }
}

.form_submit:hover {
  top: 5px;
}
.form_submit:hover::after {
  top: 0;
}

.form_submit input {
  background-color: #FF8BA7;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 460px) {
  .form_submit input {
    font-size: 20px;
  }
}

.form_check .wpcf7-form-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-weight: 500;
}
.form_check .wpcf7-form-control .wpcf7-list-item {
  margin: 0;
}

/* チェックボックスを非表示（ただしアクセシビリティのため視覚的にだけ隠す） */
.wpcf7 input[type=checkbox] {
  display: none;
}

/* ラベル全体をクリック可能にする */
.wpcf7 input[type=checkbox] + span {
  position: relative;
  padding-left: 34px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.6;
}

/* 擬似要素でチェックボックスを描画 */
.wpcf7 input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 2px solid #9AC939;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
}

/* チェックが入ったときの見た目 */
.wpcf7 input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  left: 8.5px;
  top: 4.5px;
  width: 8px;
  height: 14px;
  border-right: 2px solid #9AC939;
  border-bottom: 2px solid #9AC939;
  transform: rotate(45deg);
}

/*------------------- company ------------------*/
.company {
  background-color: #71BDFF;
  padding: 60px 0;
  position: relative;
}

.company_bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.company_wrap {
  position: relative;
  z-index: 5;
}

.company_heading {
  margin-bottom: 32px;
  color: #fff;
}
.company_heading img {
  width: 96px;
  margin: 0 auto 8px;
}
.company_heading h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .company_heading h2 {
    margin: 0 auto 0;
  }
}
.company_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 460px) {
  .company_heading span {
    font-size: 16px;
    margin: 0 auto 12px;
  }
}

.company_list {
  width: 90%;
  margin: 0 auto;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .company_list {
    font-size: 16px;
  }
}

.company_item:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .company_item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.company_item h3 {
  font-weight: 700;
}

.company_row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.company_map {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.company_map iframe {
  width: 100%;
  height: 100%;
}

.company_ul li {
  position: relative;
  padding-left: 24px;
  margin-top: 4px;
}
.company_ul li::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 100%;
  left: 7px;
  top: 9px;
}/*# sourceMappingURL=index.css.map */