html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1023px) {
  body.is-fixed {
    overflow: hidden;
  }
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
button,
input[type=submit] {
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover,
button:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

strong {
  font-weight: 700;
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}

button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

.is-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.font-jost {
  font-family: "Jost", sans-serif;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* Contact Form 7 */
.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 14px;
  color: #db0000;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

/* Swiper */
.swiper {
  visibility: hidden;
}
.swiper.swiper-initialized {
  visibility: visible;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/* c-input */
.c-input {
  width: 100%;
  padding: 12px 30px;
  border-radius: 9999px;
  background-color: #f5f5f5;
}
.c-input--textarea {
  padding: 28px 30px;
  border-radius: 30px;
}

/* c-checkbox */
.c-checkbox .wpcf7-list-item {
  margin: 0;
}
.c-checkbox .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0 10px;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.c-checkbox .wpcf7-list-item label:has(input:checked) {
  border-color: #00bab9;
}
.c-checkbox .wpcf7-list-item label:has(input:checked):before {
  background-color: #00bab9;
  border-color: #00bab9;
}
.c-checkbox .wpcf7-list-item label:before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #333;
  border-radius: 3px;
  text-align: center;
  transition: all 0.2s ease;
}
.c-checkbox .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-checkbox .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 46%;
  left: 4px;
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.c-checkbox--reservation .wpcf7-list-item {
  margin: 0;
}
.c-checkbox--reservation .wpcf7-list-item label:has(input:checked) {
  border-color: #f38303;
}
.c-checkbox--reservation .wpcf7-list-item label:has(input:checked):before {
  background-color: #f38303;
  border-color: #f38303;
}

/* c-radio */
@media screen and (max-width: 767px) {
  .c-radio {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
  }
}
.c-radio .wpcf7-list-item {
  margin: 0 24px 0 0;
}
@media screen and (max-width: 767px) {
  .c-radio .wpcf7-list-item {
    margin: 0;
  }
}
.c-radio .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 8px;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.c-radio .wpcf7-list-item label:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  border: 1px solid #ccc;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s ease;
}
.c-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
.c-radio .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #00bab9;
}
.c-radio--reservation .wpcf7-list-item {
  margin: 0 30px 0 0;
}
@media screen and (max-width: 767px) {
  .c-radio--reservation .wpcf7-list-item {
    margin: 0;
  }
}
.c-radio--reservation .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before {
  background-color: #f38303;
}

/* c-ttl */
.c-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    gap: 8px 0;
    margin-bottom: 48px;
  }
}
.c-ttl__en {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-ttl__en {
    gap: 0 20px;
    font-size: 32px;
  }
}
.c-ttl__en__line {
  width: 165.5px;
  height: 4px;
  background-image: url("../img/common/line_ttl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-ttl__en__line {
    width: 53px;
    background-image: url("../img/common/line_ttl_sp.png");
  }
}
.c-ttl__en img {
  width: 163px;
}
.c-ttl__ja {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .c-ttl__ja {
    font-size: 20px;
  }
}

/* c-btn */
.c-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 30px;
  width: fit-content;
  padding: 16px 30px;
  border: 1px solid #333;
  border-radius: 9999px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  transition: all 0.3s;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn--back img {
  transform: scaleX(-1);
}
.c-btn--reservation, .c-btn--contact, .c-btn--recruit {
  gap: 0 10px;
  max-width: 300px;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  color: #fff;
}
.c-btn--reservation {
  background-color: #f38303;
}
.c-btn--contact {
  background-color: #06a59a;
}
.c-btn--recruit {
  background-color: #fff;
  color: #00bab9;
}
.c-btn--noborder {
  border: none;
}

/* c-pagination */
.c-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  font-family: "Jost", sans-serif;
}
.c-pagination > a.prev, .c-pagination > a.next {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.c-pagination > a.prev:before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.c-pagination > ul.page-numbers {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
}
.c-pagination > ul.page-numbers li a,
.c-pagination > ul.page-numbers li span:not(.dots) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 35px;
  height: 35px;
  border-radius: 9999px;
  background-color: #d9d9d9;
  color: #b0b0b0;
}
.c-pagination > ul.page-numbers li .dots {
  position: relative;
  margin: 0 5px;
}
.c-pagination > ul.page-numbers li span.current {
  background-color: #000;
  color: #fff;
}

/* l-wrapper */
.l-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* l-inner */
.l-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.l-inner--xs {
  max-width: 940px;
}
.l-inner--sm {
  max-width: 1040px;
}

/* l-header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 80px;
}
@media screen and (max-width: 1023px) {
  .l-header {
    height: 50px;
  }
}
.l-header--recruit.is-scrolled {
  background-color: #00bab9;
}
@media screen and (max-width: 1023px) {
  .l-header--recruit.is-scrolled {
    background-color: transparent;
  }
}
.l-header--recruit.is-scrolled .l-header__inner {
  max-width: 1240px;
}
@media screen and (max-width: 1023px) {
  .l-header--recruit.is-scrolled .l-header__logo .path {
    fill: #1cc1c0;
  }
}
.l-header--recruit .l-header__logo {
  width: 292px;
}
@media screen and (max-width: 1199px) {
  .l-header--recruit .l-header__logo {
    width: 240px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header--recruit .l-header__logo {
    width: 183px;
  }
}
.l-header--recruit .l-header__nav__item a {
  color: #fff;
}
.l-header--recruit .l-header__toggle {
  border: 3px solid #fff;
}
.l-header--recruit .l-header__toggle.is-active {
  background-color: #00bab9;
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
  max-width: none;
}
.l-header__logo {
  display: block;
  width: 316px;
}
@media screen and (max-width: 1349px) {
  .l-header__logo {
    width: 240px;
  }
}
@media screen and (max-width: 1239px) {
  .l-header__logo {
    width: 194px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    width: 194px;
  }
}
.l-header__toggle {
  display: none;
  position: absolute;
  top: -17px;
  right: -17px;
  width: 80px;
  height: 80px;
  background-color: #06a59a;
  border-radius: 9999px;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .l-header__toggle {
    display: block;
  }
}
.l-header__toggle__line {
  position: absolute;
  top: 45%;
  left: 46%;
  transform: translate(-50%, -50%);
  display: block;
  width: 21px;
  height: 1.5px;
  background-color: #fff;
  transition: all 0.3s;
}
.l-header__toggle__line:first-child {
  transform: translate(-50%, -1px);
}
.l-header__toggle__line:nth-child(2) {
  transform: translate(-50%, 6px);
}
.l-header__toggle__line:last-child {
  transform: translate(-50%, 13px);
}
.l-header__toggle.is-active {
  background-color: transparent;
}
.l-header__toggle.is-active .l-header__toggle__line {
  top: 54%;
  border-radius: 9999px;
}
.l-header__toggle.is-active .l-header__toggle__line:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header__toggle.is-active .l-header__toggle__line:nth-child(2) {
  opacity: 0;
}
.l-header__toggle.is-active .l-header__toggle__line:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__overlay {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: tra;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__overlay.is-active {
    display: block;
  }
}

/* l-footer */
.l-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 63px 0 20px;
  background-color: #00bab9;
  border-radius: 60px 60px 0 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 10px;
    border-radius: 40px 40px 0 0;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: row;
  gap: 28px 20px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
  }
}
.l-footer__logo {
  display: block;
  width: 351px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 249px;
  }
}
.l-footer__logo .path {
  fill: #fff;
}
.l-footer__address {
  margin: 11px 0 17px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin: 20px 0 30px;
    margin-bottom: 0;
  }
}
.l-footer__btns {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (max-width: 767px) {
  .l-footer__btns {
    margin: 30px 0 0;
    gap: 8px 0;
  }
}
.l-footer__btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  max-width: 335px;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-radius: 4px;
  font-weight: 500;
  color: #00bab9;
  line-height: 1;
  border: 1px solid #fff;
}
.l-footer__btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #00bab9;
}
.l-footer__btn:hover {
  opacity: 1;
  background-color: #00bab9;
  color: #fff;
}
.l-footer__btn:hover:after {
  background-color: #fff;
}
.l-footer__btn--reservation svg {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.l-footer__btn--reservation:hover .path {
  fill: #fff;
}
.l-footer__btn--reservation:after {
  display: none;
}
.l-footer__btn--recruit:hover .path {
  fill: #fff;
}
.l-footer__btn--recruit:after {
  display: none;
}
.l-footer__copyright {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
  }
}
.l-footer__btm {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__btm {
    display: block;
    width: 100%;
  }
}
.l-footer__utils {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .l-footer__utils {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
  }
}
.l-footer__sns {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0 17px;
}
.l-footer__privacy {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

/* l-main */
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 72px;
  }
}
.l-main--noMargin {
  padding-top: 0 !important;
}

/* l-box */
.l-box {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .l-box {
    padding: 50px 0 0;
  }
}

/* p-nav */
.p-nav--header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 24px;
}
@media screen and (max-width: 1349px) {
  .p-nav--header {
    gap: 10px 18px;
  }
}
@media screen and (max-width: 1239px) {
  .p-nav--header {
    padding-left: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--header {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    flex-direction: column;
    align-items: flex-start;
    background-color: #00bab9 !important;
    border-radius: 30px 0 0 0;
    max-width: 335px;
    width: 100%;
    height: 100%;
    padding: 64px 20px 0;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--header.is-active {
    transform: translateX(0);
  }
}
.p-nav--header .p-nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 24px;
}
@media screen and (max-width: 1239px) {
  .p-nav--header .p-nav__list {
    gap: 10px 18px;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--header .p-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-nav--header .p-nav__item a {
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1349px) {
  .p-nav--header .p-nav__item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1239px) {
  .p-nav--header .p-nav__item a {
    font-size: 13px;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--header .p-nav__item a {
    font-size: 16px;
    color: #fff;
  }
}
.p-nav--header .p-nav__childList {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-nav--header .p-nav__childList {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0 0 12px;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--header .p-nav__childItem a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--header .p-nav__btns {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin-top: 20px;
  }
}
.p-nav--header .c-btn {
  max-width: none;
  width: 241px;
  height: 56px;
  font-size: 15px;
}
@media screen and (max-width: 1239px) {
  .p-nav--header .c-btn {
    width: 220px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--header .c-btn {
    width: 300px;
    height: 50px;
    border: 1px solid #fff;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-nav--header .c-btn--reservation {
    border: none;
  }
}
.p-nav--header .c-btn--contact, .p-nav--header .c-btn--recruit {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-nav--header .c-btn--contact, .p-nav--header .c-btn--recruit {
    display: flex;
  }
}
.p-nav--header .p-nav__sns {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-nav--header .p-nav__sns {
    display: flex;
    flex-direction: row;
    gap: 0 17px;
    margin-top: 20px;
  }
}
.p-nav--header .p-nav__sns__item a {
  width: 30px;
}
.p-nav--recruit {
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
@media screen and (max-width: 1023px) {
  .p-nav--recruit {
    padding: 100px 30px 0;
    border-radius: 30px 0 0 0;
  }
}
.p-nav--recruit .p-nav__item a {
  color: #fff;
  font-size: 16px !important;
}
@media screen and (max-width: 1199px) {
  .p-nav--recruit .p-nav__item a {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-nav--recruit .p-nav__item a {
    font-size: 16px !important;
  }
}
.p-nav--footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 89px;
}
@media screen and (max-width: 767px) {
  .p-nav--footer {
    gap: 0 15px;
  }
}
.p-nav--footer .p-nav__list {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.p-nav--footer .p-nav__list:last-child {
  width: 185px;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__list:last-child {
    width: auto;
  }
}
.p-nav--footer .p-nav__item > a,
.p-nav--footer .p-nav__item .ttl {
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.p-nav--footer .p-nav__childList {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  margin: 10px 0 0 12px;
}
.p-nav--footer .p-nav__childItem a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

/* p-table */
.p-table {
  width: 100%;
  border-spacing: 0;
}
.p-table th,
.p-table td {
  font-size: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #ccc;
}
.p-table th {
  width: 180px;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-table th {
    display: block;
    width: 100%;
    padding: 16px 0 8px;
    border-bottom: none;
  }
}
.p-table td {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-table td {
    display: block;
    font-size: 16px;
    padding: 0 0 16px;
  }
}
.p-table tr:first-child th,
.p-table tr:first-child td {
  padding-top: 0;
}

/* p-img */
.p-img {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-img {
    padding-top: 32px;
  }
}
.p-img img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-img img {
    border-radius: 10px;
  }
}

/* p-recruit */
.p-recruit__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 30px;
  width: 450px;
  height: 72px;
  background-color: #fff600;
  border: 3px solid #333;
  border-radius: 9999px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .p-recruit__btn {
    gap: 0 20px;
    max-width: 300px;
    width: 100%;
    height: 48px;
    font-size: 16px;
    border-width: 2px;
  }
}
.p-recruit__btn--sm {
  width: 334px;
  height: 52px;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .p-recruit__btn--sm {
    width: 270px;
    gap: 0 10px;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit__btn--sm {
    margin-top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .p-recruit__btn--sm {
    max-width: 300px;
    width: 100%;
    height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .p-recruit__btn img {
    width: 22px;
  }
}
.p-recruit__mv {
  width: 102.8571428571vw;
  height: 70.2142857143vw;
  background-image: url("../img/recruit/bg_mv.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv {
    width: 100%;
    height: 198.6666666667vw;
    background-image: url("../img/recruit/bg_mv_sp.png");
  }
}
.p-recruit__mv__inner {
  position: absolute;
  top: 9vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-recruit__mv__inner {
    top: 24vw;
  }
}
.p-recruit__mv__ttl {
  font-size: 4.4285714286vw;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv__ttl {
    font-size: 11.4666666667vw;
  }
}
.p-recruit__mv__txt {
  margin: 4vw 0 3.4285714286vw;
  font-size: 1.4285714286vw;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv__txt {
    margin: 8.5333333333vw 0 36.8vw;
    font-size: 3.7333333333vw;
  }
}
.p-recruit__mv .p-recruit__btn {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv .p-recruit__btn {
    gap: 0 5.3333333333vw;
    max-width: 80vw;
    height: 12.8vw;
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__mv .p-recruit__btn img {
    width: 5.6vw;
  }
}
.p-recruit__rmd__ttl {
  margin-bottom: 28px;
  font-size: 32px;
  color: #00bab9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__rmd__ttl {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.p-recruit__rmd__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .p-recruit__rmd__list {
    max-width: 335px;
    width: 100%;
    gap: 15px;
    margin: 0 auto;
  }
}
.p-recruit__rmd__item {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 9999px;
  border: 2px dashed #b8ebe9;
}
@media screen and (max-width: 767px) {
  .p-recruit__rmd__item {
    width: 160px;
    height: 160px;
    border-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__rmd__item:nth-child(3) .txt {
    top: 24px;
  }
}
.p-recruit__rmd__item .txt {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #000;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__rmd__item .txt {
    top: 42px;
    font-size: 14px;
  }
}
.p-recruit__support {
  padding: 92px 0 264px;
  background-image: url("../img/recruit/bg_support.svg");
  background-repeat: no-repeat;
  background-position: center calc(100% - 43px);
  background-size: contain;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__support {
    padding: 40px 0 104px;
    background-image: url("../img/recruit/bg_support_sp.svg");
    background-position: center calc(100% - 23px);
  }
}
.p-recruit__support__inner {
  display: flex;
  flex-direction: column;
  gap: 28px 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__inner {
    gap: 24px 0;
  }
}
.p-recruit__support__ttl {
  font-size: 40px;
  color: #00bab9;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__ttl {
    font-size: 32px;
    line-height: 1.4;
  }
}
.p-recruit__support__ttl span {
  display: block;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__ttl span {
    font-size: 20px;
  }
}
.p-recruit__support__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 922px;
  height: 320px;
  margin: 0 auto;
  padding: 83px 80px 0;
  background-image: url("../img/recruit/bg_support_circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__list {
    padding: 24px 18px 0;
    width: 335px;
    height: 117px;
    background-image: url("../img/recruit/bg_support_circle_sp.svg");
  }
}
.p-recruit__support__item {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__item {
    gap: 10px 0;
    width: 103px;
  }
}
.p-recruit__support__item .ttl {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  paint-order: stroke fill;
  color: #fff;
  -webkit-text-stroke: 1px #14bfbe;
  text-stroke: 1px #14bfbe;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__item .ttl {
    font-size: 23px;
  }
}
.p-recruit__support__item .txt {
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__item .txt {
    font-size: 9px;
  }
}
.p-recruit__support__cross {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__cross {
    width: 31px;
    margin-top: 16px;
  }
}
.p-recruit__support__txt {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-recruit__support__txt {
    font-size: 20px;
  }
}
.p-recruit__cta__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  margin: 0 auto;
  padding: 40px;
  border: 6px solid #00bab9;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__cta__box {
    padding: 40px 20px;
  }
}
.p-recruit__cta__ttl {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  color: #00bab9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__cta__ttl {
    font-size: 24px;
  }
}
.p-recruit__cta__txt {
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__cta__txt {
    text-align: left;
  }
}
.p-recruit .p-job {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit .p-job {
    margin-bottom: 48px;
  }
}

/* p-target */
.p-target {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-target {
    padding-top: 32px;
  }
}
.p-target__box {
  padding: 64px;
  background-color: #def9f3;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .p-target__box {
    padding: 30px 20px;
  }
}
.p-target__box .ttl {
  margin-bottom: 32px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-target__box .ttl {
    margin-bottom: 16px;
  }
}
.p-target__box .txt {
  line-height: 1.8;
}

/* p-support */
.p-support {
  display: flex;
  flex-direction: column;
  gap: 93px 0;
  padding: 120px 0 149px;
}
@media screen and (max-width: 767px) {
  .p-support {
    gap: 37px 0;
    padding: 48px 0 53px;
  }
}
.p-support__item {
  width: calc(100% - 42px);
  margin-left: auto;
  border-radius: 40px 0 0 40px;
  background-color: #def9f3;
}
@media screen and (max-width: 991px) {
  .p-support__item {
    width: calc(100% - 32px);
    border-radius: 20px 0 0 20px;
    padding-bottom: 34px;
  }
}
.p-support__item--reverse {
  margin: 0;
  border-radius: 0 40px 40px 0;
}
@media screen and (max-width: 991px) {
  .p-support__item--reverse {
    border-radius: 0 20px 20px 0;
  }
}
.p-support__item--reverse .p-support__item__inner {
  flex-direction: row-reverse;
  padding-left: 62px;
  padding-right: 20px;
}
@media screen and (max-width: 991px) {
  .p-support__item--reverse .p-support__item__inner {
    flex-direction: column;
    padding-left: 50px;
    padding-right: 25px;
  }
}
.p-support__item__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 62px;
  padding-right: 62px;
}
@media screen and (max-width: 991px) {
  .p-support__item__inner {
    flex-direction: column;
    gap: 11px 0;
    padding-left: 20px;
    padding-right: 50px;
  }
}
.p-support__item__img {
  position: relative;
  top: -24px;
  max-width: 568px;
  width: 50%;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .p-support__item__img {
    top: -16px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-support__item__head {
  flex: 1;
  padding: 80px 0 51px;
}
@media screen and (max-width: 991px) {
  .p-support__item__head {
    padding: 0;
  }
}
.p-support__item__head .ttl {
  margin-bottom: 32px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-support__item__head .ttl {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.p-support__item__head .txt {
  font-weight: 500;
  line-height: 1.8;
}

/* p-tab */
.p-tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  margin-bottom: 63px;
}
@media screen and (max-width: 767px) {
  .p-tab {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 55px;
  }
}
.p-tab__item a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  background-color: #00bab9;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.p-tab__item a:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 8px;
  background-image: url("../img/common/arrow_tab.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-tab__item a:after {
    bottom: -18px;
  }
}

/* p-job */
.p-job {
  padding: 80px 0;
  background-color: #def9f3;
}
@media screen and (max-width: 767px) {
  .p-job {
    padding: 40px 0;
  }
}
.p-job__inner {
  display: flex;
  flex-direction: column;
  gap: 56px 0;
}
@media screen and (max-width: 767px) {
  .p-job__inner {
    gap: 32px 0;
  }
}
.p-job__ttl {
  font-size: 36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job__ttl {
    font-size: 24px;
  }
}
.p-job__list {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-job__list {
    gap: 32px 0;
  }
}
.p-job__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px 0;
  padding: 64px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-job__item {
    gap: 32px 0;
    padding: 30px 20px;
  }
}
.p-job__item__num {
  position: absolute;
  top: -74px;
  left: 24px;
  font-family: "Jost", sans-serif;
  font-size: 96px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-job__item__num {
    top: -30px;
    left: 10px;
    font-size: 40px;
  }
}
.p-job__item__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px 40px;
  padding-bottom: 56px;
  background-image: url("../img/common/line.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 1074.5px 4px;
}
@media screen and (max-width: 991px) {
  .p-job__item__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-job__item__head {
    padding-bottom: 32px;
  }
}
.p-job__item__head .ttl {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 16px;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-job__item__head .ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-job__item__head .ttl img {
    width: 25px;
  }
}
.p-job__item__head .txt {
  max-width: 516px;
  width: 50%;
  font-size: 20px;
}
@media screen and (max-width: 991px) {
  .p-job__item__head .txt {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-job__item__head .txt {
    font-size: 16px;
  }
}
.p-job__item__body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px 40px;
}
@media screen and (max-width: 991px) {
  .p-job__item__body {
    flex-direction: column;
  }
}
.p-job__item__body .img {
  max-width: 457px;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .p-job__item__body .img {
    margin: 0 auto;
  }
}
.p-job__item__body .head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.p-job__item__body .head__item {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.p-job__item__body .head__item__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0 10px;
  padding: 4px 19px;
  border-width: 2px;
  border-style: solid;
  border-radius: 9999px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-job__item__body .head__item__ttl {
    font-size: 16px;
  }
}
.p-job__item__body .head__item__txt ul {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-job__item__body .head__item__txt ul {
    font-size: 16px;
  }
}
.p-job__item__body .head__item__txt ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-job__txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job__txt {
    line-height: 1.5;
  }
}

/* p-routine */
.p-routine {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-routine {
    padding-top: 48px;
  }
}
.p-routine__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px 64px;
}
@media screen and (max-width: 991px) {
  .p-routine__inner {
    flex-direction: column;
  }
}
.p-routine__head {
  flex: 1;
}
.p-routine__ttl {
  margin-bottom: 56px;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-routine__ttl {
    margin-bottom: 32px;
    font-size: 24px;
  }
}
.p-routine__subTtl {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-routine__subTtl {
    font-size: 20px;
  }
}
.p-routine__txt {
  margin: 16px 0;
}
.p-routine__note {
  font-size: 12px;
}
.p-routine__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  max-width: 636px;
  width: 56%;
}
@media screen and (max-width: 991px) {
  .p-routine__list {
    width: 100%;
  }
}
.p-routine__list:before {
  content: "";
  position: absolute;
  top: 0;
  left: 43px;
  width: 14px;
  height: 100%;
  background-color: #b7ece0;
}
@media screen and (max-width: 767px) {
  .p-routine__list:before {
    top: 25px;
    left: 34px;
    width: 8px;
    height: 92%;
  }
}
.p-routine__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 35px;
}
@media screen and (max-width: 767px) {
  .p-routine__item {
    gap: 0 30px;
  }
}
.p-routine__item__time {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .p-routine__item__time {
    width: 75px;
  }
}
.p-routine__item__detail {
  flex: 1;
  line-height: 1.8;
}
.p-routine__item__detail .ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-routine__item__detail .ttl {
    font-size: 20px;
  }
}
.p-routine__item__detail .ttl span {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #00bab9;
}

/* p-flow */
.p-flow {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-top: 48px;
  }
}
.p-flow__ttl {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-flow__ttl {
    font-size: 24px;
  }
}
.p-flow__txt {
  margin: 24px 0 56px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-flow__txt {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
.p-flow__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px 102px;
  min-height: 204px;
  padding: 40px;
  border: 2px solid #00bab9;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .p-flow__item {
    min-height: auto;
  }
}
@media screen and (max-width: 991px) {
  .p-flow__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    padding: 20px;
    height: auto;
  }
}
.p-flow__item:after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 24px 0 24px;
  border-color: #00bab9 transparent transparent transparent;
}
.p-flow__item:last-child:after {
  display: none;
}
.p-flow__item__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 22px;
  width: 360px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-flow__item__ttl {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    font-size: 20px;
  }
}
.p-flow__item__ttl span {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #00bab9;
}
.p-flow__item__txt {
  flex: 1;
  font-size: 20px;
}

/* p-faq */
.p-faq {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-top: 48px;
  }
}
.p-faq .c-ttl {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-faq .c-ttl {
    margin-bottom: 32px;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    gap: 16px 0;
  }
}
.p-faq__item {
  padding: 24px;
  border: 2px solid #00bab9;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 20px;
  }
}
.p-faq__item__label {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #00bab9;
  min-width: 24px;
}
.p-faq__item__q {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 24px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.p-faq__item__q .p-faq__item__label {
  color: #00bab9;
}
.p-faq__item__a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 24px;
}
.p-faq__item__a .p-faq__item__label {
  color: #ff7aa5;
}

/* p-access */
.p-access {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-top: 48px;
  }
}
.p-access__box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px 40px;
}
@media screen and (max-width: 991px) {
  .p-access__box {
    flex-direction: column;
  }
}
.p-access .p-table {
  max-width: 580px;
  width: 100%;
}
.p-access__map {
  position: relative;
  max-width: 580px;
  width: 100%;
  height: 390px;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    max-width: none;
    aspect-ratio: 335/225;
    height: auto;
  }
}
.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* p-view */
.p-view {
  padding-top: 120px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-view {
    padding-top: 48px;
  }
}
.p-view__ttl {
  margin-bottom: 78px;
  font-size: 36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-view__ttl {
    margin-bottom: 32px;
    font-size: 24px;
  }
}
.p-view__slider {
  display: flex;
  flex-direction: row;
  width: max-content;
  white-space: nowrap;
}
.p-view__slider__list {
  display: flex;
  flex-direction: row;
  animation: auto-slide1 60s -30s linear infinite;
}
.p-view__slider__list:last-child {
  animation: auto-slide2 60s linear infinite;
}
@keyframes auto-slide1 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes auto-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.p-view__slider__list:nth-child(even) .p-view__slider__item {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-view__slider__list:nth-child(even) .p-view__slider__item {
    margin-top: 40px;
  }
}
.p-view__slider__list:nth-child(even) .p-view__slider__item:nth-child(even) {
  margin-top: 0;
}
.p-view__slider__item {
  width: 270px;
  margin-right: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-view__slider__item {
    width: 135px;
    margin-right: 10px;
  }
}
.p-view__slider__item:nth-child(even) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-view__slider__item:nth-child(even) {
    margin-top: 40px;
  }
}
.p-view__slider__item img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-view__slider__item img {
    border-radius: 5px;
  }
}

/* p-cta */
.p-cta {
  position: relative;
  margin: 10vw 0 -60px;
  padding: 7.1428571429vw 0 140px;
  background-color: #def9f3;
}
@media screen and (max-width: 767px) {
  .p-cta {
    margin: 26.1333333333vw 0 -30px;
    padding: 16vw 0 90px;
  }
}
.p-cta:before {
  content: "";
  position: absolute;
  top: -4vw;
  left: 50%;
  transform: translateX(-50%);
  width: 102.8571428571vw;
  height: 9vw;
  background-image: url("../img/common/deco_cta.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-cta:before {
    top: -8vw;
    width: 100%;
    height: 16.2666666667vw;
    background-image: url("../img/common/deco_cta_sp.png");
  }
}
.p-cta__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px 0;
  padding: 80px;
  background-color: #fff;
  border: 6px solid #00bab9;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .p-cta__box {
    gap: 32px 0;
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.p-cta__box .c-ttl {
  margin-bottom: 0;
}
.p-cta__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  max-width: 984px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .p-cta__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-cta__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-cta__item {
    gap: 24px 0;
    padding-bottom: 32px;
    background-image: url("../img/common/line.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 1074.5px 4px;
  }
}
.p-cta__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 3px;
  height: 180px;
  background-image: url("../img/common/line_cta.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .p-cta__item:after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .p-cta__item:last-child {
    padding-bottom: 0;
    background: none;
  }
}
.p-cta__item:last-child:after {
  display: none;
}
.p-cta__item__ttl {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-cta__item__ttl {
    font-size: 20px;
  }
}
.p-cta__item__txt {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-cta__item__txt {
    font-size: 14px;
  }
}
.p-cta__item .c-btn {
  margin-top: auto;
}

/* p-privacy */
.p-privacy__body {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.p-privacy__body h2 {
  margin-bottom: 16px;
  font-size: 20px;
}
.p-privacy__body p {
  line-height: 2;
}
.p-privacy__body ol {
  margin-left: 1em;
  list-style: decimal;
  line-height: 2;
}
.p-privacy__body ol ol[type=a] {
  margin-left: 1em;
  list-style: lower-alpha;
}
.p-privacy__body ol ol[type=a] ol[type=i] {
  margin-left: 1em;
  list-style: lower-roman;
}

/* p-thanks */
.p-thanks__txt {
  margin-bottom: 80px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__txt {
    margin-bottom: 48px;
    text-align: left;
  }
}
.p-thanks .c-btn {
  margin: 0 auto;
}

/* p-form */
.p-form__txt {
  margin-bottom: 80px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__txt {
    margin-bottom: 64px;
    text-align: left;
  }
}
.p-form__box {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.p-form__group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 80px;
}
@media screen and (max-width: 991px) {
  .p-form__group {
    gap: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-form__group {
    flex-direction: column;
    gap: 16px 0;
  }
}
.p-form__group--radio .p-form__head {
  padding-top: 0;
}
.p-form__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
  width: 220px;
  padding-top: 13px;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__head {
    width: 100%;
    padding-top: 0;
  }
}
.p-form__head span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 23px;
  background-color: #ed7456;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.p-form__body {
  flex: 1;
  width: 100%;
}
.p-form__agreement {
  width: fit-content;
  margin: 0 auto;
}
.p-form__agreement a {
  text-decoration: underline;
}
.p-form .c-btn {
  position: relative;
  margin: 0 auto;
}
.p-form .c-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  background-image: url("../img/common/arrow_btn_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-form .c-btn input {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  padding-right: 10px;
}
.p-form .c-btn input:hover {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */