@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100...900&family=Quicksand:wght@300..700&family=Roboto:wght@700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, main, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --site-color-main: #000;
  --site-color-sub: #444;
  --site-color-extra: #0F0F0F;
  --site-color-aqua01: rgb(128 203 239 / .15);
  --site-color-aqua02: #D0F1FA;
  --site-color-cyanite: #02B5E9;
  --site-color-blue01: #014D9F;
  --site-color-blue02: #00499D;
  --site-color-green: #57A521;
  --site-color-gray: #B1B5C1;
  --site-color-orange: #FF5A29;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  color: var(--site-color-main);
  background-color: #fff;
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
@media print, screen and (width > 1024px) {
  body {
    font-size: 18px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

button {
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (width <= 1024px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (width > 1024px) {
  .u-use--sp {
    display: none !important;
  }
}

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

.l-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  background-color: #fff;
}
@media print, screen and (width > 1024px) {
  .l-header {
    height: 111px;
    padding: 0 min(3.125vw, 60px);
  }
}
.l-header__btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: 60px;
  height: 60px;
  padding-top: 35px;
  background-color: var(--site-color-green);
  border: 0;
}
@media print, screen and (width > 1024px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__btn.is_open .l-header__btn__line:nth-child(1) {
  top: 10px;
  rotate: -45deg;
}
.l-header__btn.is_open .l-header__btn__line:nth-child(2) {
  opacity: 0;
}
.l-header__btn.is_open .l-header__btn__line:nth-child(3) {
  top: 10px;
  rotate: 45deg;
}
.l-header__btn.is_open .l-header__btn__txt::before {
  opacity: 1;
}
.l-header__btn__icon {
  width: 30px;
  height: 23px;
  position: absolute;
  top: 10px;
  left: 15px;
}
.l-header__btn__line {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
}
.l-header__btn__line:nth-child(1) {
  top: 0;
}
.l-header__btn__line:nth-child(2) {
  top: 10px;
}
.l-header__btn__line:nth-child(3) {
  top: 20px;
}
.l-header__btn__txt {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.23;
  color: #fff;
  position: relative;
}
.l-header__btn__txt::before {
  content: "Close";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  background-color: var(--site-color-green);
}

.l-main {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  background-color: #fff;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .l-main {
    padding-top: 111px;
    border-radius: 0 0 135px 135px;
  }
}

.l-section {
  position: relative;
  padding-bottom: 80px;
}
.l-section:last-of-type {
  padding-bottom: 50px;
}
.l-section:not(:first-of-type) {
  margin-top: 0;
}
@media print, screen and (width > 1024px) {
  .l-section {
    padding-bottom: 130px;
  }
  .l-section:last-of-type {
    padding-bottom: 120px;
  }
}
.l-section--bg01 {
  margin-top: 80px;
  padding-bottom: 80px;
  background-color: var(--site-color-aqua01);
}
.l-section--bg01::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url(../images/common/bg_wave_primary_sp.svg) repeat-x left top;
  background-size: auto 100%;
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .l-section--bg01 {
    margin-top: 47px;
    padding-top: 90px;
    padding-bottom: 130px;
  }
  .l-section--bg01::before {
    top: -47px;
    height: 47px;
    background-image: url(../images/common/bg_wave_primary.svg);
  }
}
.l-section--bg02 {
  margin-top: 80px;
  padding-bottom: 80px;
  background-color: var(--site-color-aqua02);
}
.l-section--bg02::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url(../images/common/bg_wave_secondary_sp.svg) repeat-x left top;
  background-size: auto 100%;
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .l-section--bg02 {
    margin-top: 47px;
    padding-top: 90px;
    padding-bottom: 130px;
  }
  .l-section--bg02::before {
    top: -47px;
    height: 47px;
    background-image: url(../images/common/bg_wave_secondary.svg);
  }
}
.l-section--bg03 {
  margin-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
.l-section--bg03::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url(../images/common/bg_wave_tertiary_sp.svg) repeat-x left top;
  background-size: auto 100%;
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .l-section--bg03 {
    margin-top: 47px;
    padding-top: 90px;
    padding-bottom: 130px;
  }
  .l-section--bg03::before {
    top: -47px;
    height: 47px;
    background-image: url(../images/common/bg_wave_tertiary.svg);
  }
}
.l-section--home01 {
  position: relative;
  padding-bottom: 40px;
  overflow: hidden;
}
.l-section--home01::before, .l-section--home01::after {
  content: "";
  position: absolute;
  left: 0;
  top: 144px;
  width: 100%;
  pointer-events: none;
}
.l-section--home01::before {
  height: 60px;
  background: url(../images/common/bg_wave_primary_sp.svg) repeat-x left top;
  background-size: auto 100%;
}
.l-section--home01::after {
  height: 79.19%;
  background-color: var(--site-color-aqua01);
  translate: 0 60px;
}
@media print, screen and (width > 1024px) {
  .l-section--home01 {
    padding-bottom: 100px;
  }
  .l-section--home01::before, .l-section--home01::after {
    top: 122px;
  }
  .l-section--home01::before {
    height: 47px;
    background-image: url(../images/common/bg_wave_primary.svg);
  }
  .l-section--home01::after {
    height: 76.17%;
    translate: 0 47px;
  }
}
.l-section--home02 {
  position: relative;
  background-color: var(--site-color-aqua01);
}
.l-section--home03 {
  position: relative;
  background-color: var(--site-color-aqua02);
}
@media only screen and (width <= 1024px) {
  .l-section--home03 {
    display: flex;
    flex-direction: column;
  }
  .l-section--home03 .l-section__inner--home {
    order: 1;
  }
  .l-section--home03 .p-obligation {
    order: 2;
  }
  .l-section--home03 .p-cta {
    order: 3;
  }
}
.l-section__inner {
  width: calc(100% - 40px);
  margin: auto;
}
@media print, screen and (width > 1024px) {
  .l-section__inner {
    width: min(96.774svw, 1200px);
  }
}
.l-section__inner:not(:last-of-type) {
  margin-bottom: 50px;
}
@media print, screen and (width > 1024px) {
  .l-section__inner:not(:last-of-type) {
    margin-bottom: 100px;
  }
}
.l-section__inner--home {
  display: grid;
}
@media print, screen and (width > 1024px) {
  .l-section__inner--home {
    grid-template-columns: 12.35% 37.65% 37.65% 12.35%;
    row-gap: 120px;
  }
  .l-section__inner--home > *:nth-child(odd) {
    grid-column: 1/4;
  }
  .l-section__inner--home > *:nth-child(even) {
    grid-column: 2/5;
  }
}

.l-footer {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  padding: 108px 0 17px;
  background: var(--site-color-blue01) url(../images/common/bg_footer.svg) repeat-x left bottom;
  background-size: 386px 58px;
}
@media print, screen and (width > 1024px) {
  .l-footer {
    margin-top: -140px;
    padding: 240px 0 30px;
    background-size: 642px 96px;
  }
}
.l-footer__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: calc(100% - 40px);
  margin: auto;
  container-type: inline-size;
  container-name: footer;
}
@media print, screen and (width > 1024px) {
  .l-footer__inner {
    width: 85.9375vw;
    flex-direction: row;
  }
}
@media only screen and (width <= 1024px) {
  .l-footer__info {
    margin-bottom: 24px;
  }
}

.c-lead {
  width: calc(100% - 40px);
  margin: auto;
  margin-bottom: 40px;
}
@media print, screen and (width > 1024px) {
  .c-lead {
    width: min(96.774svw, 1200px);
  }
}
@media print, screen and (width > 1024px) {
  .c-lead {
    margin-bottom: 90px;
  }
}
.c-lead__txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.875;
  color: var(--site-color-main);
}
.c-lead__txt:not(:last-child) {
  margin-bottom: 1.0em;
}
@media print, screen and (width > 1024px) {
  .c-lead__txt {
    font-size: 20px;
    line-height: 2.45;
    text-align: center;
  }
  .c-lead__txt:not(:last-child) {
    margin-bottom: 1.0em;
  }
}
@media print, screen and (width > 1024px) {
  .c-lead--policy {
    margin-top: -18px;
    margin-bottom: 80px;
  }
  .c-lead--policy .c-lead__txt {
    font-size: 20px;
    font-weight: 400;
    line-height: 2.25;
  }
}

.c-hd {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto 30px;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  position: relative;
}
.c-hd::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 153px;
  height: 9px;
  background: url(../images/common/bg_title_sp.svg) no-repeat left top;
  background-size: 100%;
}
@media print, screen and (width > 1024px) {
  .c-hd {
    padding-bottom: 38px;
    margin-bottom: 65px;
    font-size: 38px;
  }
  .c-hd::before {
    width: 339px;
    height: 19px;
    background-image: url(../images/common/bg_title.svg);
  }
}

.c-btn {
  display: block;
  width: fit-content;
}
.c-btn__inner {
  display: block;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 2;
  font-weight: 600;
}
.c-btn__inner::before {
  content: "";
  position: absolute;
  z-index: 2;
}
.c-btn--primary {
  position: relative;
  padding: 8px 20px;
  background-color: var(--site-color-green);
  border-radius: 25px;
  transition: background-color 0.2s;
}
.c-btn--primary:hover {
  background-color: var(--site-color-cyanite);
  transition: background-color 0.3s;
}
.c-btn--primary .c-btn__inner {
  padding-left: 40px;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}
.c-btn--primary .c-btn__inner::before {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 24px;
  -webkit-mask-image: url(../images/common/icon_mail.svg);
  -webkit-mask-size: 30px 24px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_mail.svg);
  mask-size: 30px 24px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  transition: background-color 0.2s;
}
.c-btn--secondary {
  position: relative;
  padding: 8px 20px;
  background-color: #fff;
  border-radius: 25px;
  transition: background-color 0.2s;
}
.c-btn--secondary:hover {
  background-color: var(--site-color-green);
  transition: background-color 0.3s;
}
.c-btn--secondary:hover .c-btn__inner {
  color: #fff;
  transition: color 0.3s;
}
.c-btn--secondary:hover .c-btn__inner::before {
  background-color: #fff;
  transition: background-color 0.3s;
}
.c-btn--secondary .c-btn__inner {
  padding-left: 40px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--site-color-blue01);
  transition: color 0.2s;
}
.c-btn--secondary .c-btn__inner::before {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 24px;
  -webkit-mask-image: url(../images/common/icon_mail.svg);
  -webkit-mask-size: 30px 24px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_mail.svg);
  mask-size: 30px 24px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--site-color-blue01);
  transition: background-color 0.2s;
}
.c-btn--map {
  position: relative;
  padding: 12px 20px;
  background-color: var(--site-color-green);
  border-radius: 33px;
  transition: background-color 0.2s;
}
.c-btn--map:hover {
  background-color: var(--site-color-cyanite);
  transition: background-color 0.3s;
}
.c-btn--map .c-btn__inner {
  padding-left: 35px;
  font-size: 22px;
  line-height: 1.45;
  color: #fff;
}
.c-btn--map .c-btn__inner::before {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 23px;
  -webkit-mask-image: url(../images/common/icon_map.svg);
  -webkit-mask-size: 24px 23px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_map.svg);
  mask-size: 24px 23px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  transition: background-color 0.2s;
}
@media print, screen and (width > 1024px) {
  .c-btn--map {
    padding: 14px 20px 14px 28px;
  }
  .c-btn--map .c-btn__inner {
    padding-left: 40px;
    font-size: 25px;
  }
  .c-btn--map .c-btn__inner::before {
    width: 30px;
    height: 28px;
    -webkit-mask-size: 30px 28px;
    mask-size: 30px 28px;
  }
}
.c-btn--recruit {
  position: relative;
  padding: 20px 40px;
  margin: 30px auto 0;
  background-color: var(--site-color-green);
  border-radius: 33px;
  transition: background-color 0.2s;
}
.c-btn--recruit:hover {
  background-color: var(--site-color-cyanite);
  transition: background-color 0.3s;
}
.c-btn--recruit .c-btn__inner {
  padding-top: 54px;
  font-size: 25px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.c-btn--recruit .c-btn__inner::before {
  left: 50%;
  top: 0;
  translate: -50% 0;
  width: 55px;
  height: 44px;
  -webkit-mask-image: url(../images/common/icon_mail.svg);
  -webkit-mask-size: 55px 44px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_mail.svg);
  mask-size: 55px 44px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  transition: background-color 0.2s;
}
@media print, screen and (width > 1024px) {
  .c-btn--recruit {
    margin-top: 60px;
    padding: 14px 28px;
  }
  .c-btn--recruit .c-btn__inner {
    padding-top: 0;
    padding-left: 46px;
    line-height: 1.45;
    text-align: left;
  }
  .c-btn--recruit .c-btn__inner::before {
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 36px;
    height: 29px;
    -webkit-mask-size: 36px 29px;
    mask-size: 36px 29px;
  }
}
.c-btn--submit {
  width: max(232px, 59.487svw);
  position: relative;
  padding: 14px 20px;
  background-color: var(--site-color-green);
  border: 0;
  border-radius: 39px;
  transition: background-color 0.2s;
  cursor: pointer;
}
.c-btn--submit:hover {
  background-color: var(--site-color-cyanite);
  transition: background-color 0.3s;
}
.c-btn--submit .c-btn__inner {
  font-size: 28px;
  line-height: 1.42;
  color: #fff;
}
.c-btn--submit .c-btn__inner::before {
  display: none;
}
@media print, screen and (width > 1024px) {
  .c-btn--submit {
    width: 256px;
  }
  .c-btn--submit .c-btn__inner {
    font-size: 34px;
  }
}
.c-btn--revision {
  width: max(232px, 59.487svw);
  position: relative;
  padding: 14px 20px;
  background-color: var(--site-color-cyanite);
  border: 0;
  border-radius: 39px;
  transition: background-color 0.2s;
  cursor: pointer;
}
.c-btn--revision:hover {
  background-color: var(--site-color-green);
  transition: background-color 0.3s;
}
.c-btn--revision .c-btn__inner {
  font-size: 28px;
  line-height: 1.42;
  color: #fff;
}
.c-btn--revision .c-btn__inner::before {
  display: none;
}
@media print, screen and (width > 1024px) {
  .c-btn--revision {
    width: 256px;
  }
  .c-btn--revision .c-btn__inner {
    font-size: 34px;
  }
}

.c-link {
  display: grid;
  grid-template-columns: 70px 1fr;
  place-items: center start;
  width: fit-content;
  margin: auto;
}
.c-link:hover .c-link__icon::before {
  scale: 1;
  transition: scale 0.3s;
}
.c-link:hover .c-link__icon::after {
  width: 32px;
  height: 23px;
  background-color: var(--site-color-cyanite);
  transition: all 0.3s;
  transition-duration: 0.1s;
}
.c-link__icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  background-color: var(--site-color-cyanite);
  border-radius: 50%;
}
.c-link__icon::before, .c-link__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-link__icon::before {
  z-index: 1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  border-radius: 50%;
  scale: 0 0;
  transition: scale 0.2s;
}
.c-link__icon::after {
  z-index: 2;
  width: 12px;
  height: 9px;
  -webkit-mask-image: url(../images/common/icon_arrow_secondary.svg);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow_secondary.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  transition: all 0.2s;
  transition-duration: 0.1s;
}
.c-link__txt {
  margin-left: -15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.c-list__item {
  width: fit-content;
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}
.c-list__item:not(:last-child) {
  margin-bottom: 16px;
}
.c-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 17px;
  height: 17px;
  -webkit-mask-image: url(../images/common/icon_list.svg);
  -webkit-mask-position: left top;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-image: url(../images/common/icon_list.svg);
  mask-position: left top;
  mask-repeat: no-repeat;
  mask-size: 100%;
  background: rgba(2, 181, 233, 0.5);
}
@media print, screen and (width > 1024px) {
  .c-list__item {
    padding-left: 34px;
    font-size: 20px;
  }
  .c-list__item:not(:last-child) {
    margin-bottom: 25px;
  }
  .c-list__item::before {
    top: 8px;
    width: 23px;
    height: 23px;
  }
}
.c-list--guide {
  width: fit-content;
}
.c-list--guide .c-list__item {
  padding-left: 24px;
  font-size: 15px;
}
.c-list--guide .c-list__item:not(:last-child) {
  margin-bottom: 18px;
}
.c-list--guide .c-list__item::before {
  top: 7px;
}
@media print, screen and (width > 1024px) {
  .c-list--guide {
    margin: auto;
    text-align: center;
  }
  .c-list--guide .c-list__item {
    margin: auto;
    padding-left: 30px;
    font-size: 22px;
    line-height: 2.45;
  }
  .c-list--guide .c-list__item::before {
    top: 17px;
  }
}

.c-table {
  width: 100%;
  position: relative;
}
.c-table::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle, #7FA6CF 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 13px 3px;
}
@media print, screen and (width > 1024px) {
  .c-table {
    display: block;
  }
  .c-table tbody {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .c-table tr {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
  }
}
@media only screen and (width <= 1024px) {
  .c-table {
    display: block;
  }
  .c-table tbody,
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }
}
.c-table tr {
  position: relative;
}
.c-table tr::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle, #7FA6CF 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 13px 3px;
}
.c-table th,
.c-table td {
  padding: 20px 6px;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}
@media print, screen and (width > 1024px) {
  .c-table th,
  .c-table td {
    font-size: 20px;
    padding: 30px 10px;
  }
}
.c-table th {
  padding-bottom: 8px;
  font-weight: 600;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .c-table th {
    white-space: nowrap;
    padding-right: 30px;
  }
}
.c-table td {
  padding-top: 0;
  font-weight: 400;
}
@media print, screen and (width > 1024px) {
  .c-table td {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
    font-weight: 500;
  }
}

.c-input {
  width: 100%;
  height: 45px;
  padding: 2px 5px;
  font-size: 14px;
  border: 2px solid #7FA6CF;
  border-radius: 10px;
}
@media print, screen and (width > 1024px) {
  .c-input {
    height: 50px;
    font-size: 16px;
  }
}
@media print, screen and (width > 1024px) {
  .c-input--middle {
    width: 50%;
  }
}
@media print, screen and (width > 1024px) {
  .c-input--short {
    width: 25%;
  }
}

.c-textarea {
  width: 100%;
  height: 45px;
  padding: 5px;
  font-size: 14px;
  border: 2px solid #7FA6CF;
  border-radius: 10px;
  field-sizing: content;
}
@media print, screen and (width > 1024px) {
  .c-textarea {
    height: 50px;
    font-size: 16px;
  }
}
@media print, screen and (width > 1024px) {
  .c-textarea--large {
    height: 250px;
  }
}
@media print, screen and (width > 1024px) {
  .c-textarea--middle {
    height: 140px;
  }
}

.c-check {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  position: relative;
  cursor: pointer;
}
@media print, screen and (width > 1024px) {
  .c-check {
    font-size: 20px;
  }
}
@media only screen and (width <= 1024px) {
  .c-check {
    padding-top: 35px;
    text-align: center;
  }
}
.c-check__input {
  display: none;
}
.c-check__input:checked ~ .c-check__box::before {
  opacity: 1;
}
.c-check__box {
  position: relative;
  width: 25px;
  height: 25px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #7FA6CF;
  border-radius: 5px;
  pointer-events: none;
}
.c-check__box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  translate: -50% 0;
  rotate: -45deg;
  width: 11px;
  height: 5px;
  border-left: 2px solid #7FA6CF;
  border-bottom: 2px solid #7FA6CF;
  opacity: 0;
}
@media print, screen and (width > 1024px) {
  .c-check__box {
    width: 34px;
    height: 34px;
    margin: 0 15px 0 0;
  }
  .c-check__box::before {
    top: 10px;
    width: 13px;
    height: 7px;
  }
}
@media only screen and (width <= 1024px) {
  .c-check__box {
    position: absolute;
    left: 50%;
    top: 0;
    translate: -50% 0;
  }
}
.c-check__label {
  cursor: pointer;
}
.c-check__link {
  color: var(--site-color-blue01);
  text-decoration: underline;
}

.c-radio {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  margin-top: 6px;
}
@media print, screen and (width > 1024px) {
  .c-radio {
    margin-top: 13px;
    margin-bottom: 7px;
    justify-content: flex-start;
    column-gap: 60px;
  }
}
.c-radio__item {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 10px;
  position: relative;
  width: 50%;
  cursor: pointer;
}
@media print, screen and (width > 1024px) {
  .c-radio__item {
    width: fit-content;
  }
}
.c-radio__input {
  display: none;
}
.c-radio__input:checked ~ .c-radio__circle::before {
  opacity: 1;
}
.c-radio__circle {
  position: relative;
  width: 27px;
  height: 27px;
  background: #fff;
  border: 2px solid #7FA6CF;
  border-radius: 50%;
}
.c-radio__circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 19px;
  height: 19px;
  background-color: #7FA6CF;
  border-radius: 50%;
  opacity: 0;
}
@media print, screen and (width > 1024px) {
  .c-radio__circle {
    width: 30px;
    height: 30px;
  }
  .c-radio__circle::before {
    width: 22px;
    height: 22px;
  }
}
.c-radio__txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (width > 1024px) {
  .c-radio__txt {
    font-size: 20px;
  }
}

.p-logo {
  width: 142px;
}
@media print, screen and (width > 1024px) {
  .p-logo {
    width: 227px;
  }
}
.p-logo__img {
  width: 100%;
  height: auto;
}
.p-logo--info {
  width: 260px;
  margin: 0 auto 24px;
}
@media print, screen and (width > 1024px) {
  .p-logo--info {
    width: 379px;
    margin-bottom: 50px;
  }
}

.p-gnav {
  position: fixed;
  z-index: 20;
  top: 20px;
  right: 0;
}
@media print, screen and (width > 1024px) {
  .p-gnav {
    padding: 12px min(3.125vw, 60px) 12px min(4.16vw, 8px);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50px 0 0 50px;
  }
}
@media only screen and (width <= 1024px) {
  .p-gnav {
    top: 0;
    width: 100svw;
    height: 100svh;
    padding: 75px 20px;
    background-color: var(--site-color-blue01);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: scroll;
  }
  .p-gnav.is_open {
    visibility: visible;
    opacity: 1;
    pointer-events: initial;
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav__list {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media only screen and (width <= 1024px) {
  .p-gnav__list {
    padding-top: 7px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 13px 3px;
  }
}
@media only screen and (width <= 1024px) {
  .p-gnav__item {
    padding-bottom: 8px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 13px 3px;
  }
  .p-gnav__item:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav__item {
    padding: 0 min(1.818vw, 30px);
    line-height: 1.15;
  }
  .p-gnav__item:not(:last-of-type) {
    border-right: 2px solid rgba(0, 0, 0, 0.1);
  }
}
.p-gnav__link {
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (width <= 1024px) {
  .p-gnav__link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 0 15px;
    line-height: 1.444;
    color: #fff;
    text-align: center;
    border-radius: 15px;
  }
  .p-gnav__link.is_current {
    background-color: var(--site-color-green);
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav__link {
    line-height: 1.15;
    position: relative;
  }
  .p-gnav__link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 0;
    height: 4px;
    background-color: var(--site-color-green);
    transition: width 0.2s;
  }
  .p-gnav__link.is_current::before, .p-gnav__link:hover::before {
    width: 100%;
    transition: width 0.3s;
  }
}
@media only screen and (width <= 1024px) {
  .p-gnav__contact {
    width: 100%;
    margin-top: 45px;
    margin-bottom: 75px;
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav__contact {
    margin-left: min(0.36vw, 6px);
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav .p-info {
    display: none;
  }
}

.p-jumbotron {
  width: 98.666svw;
  margin: 0 auto 35px;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron {
    display: grid;
    margin-bottom: 25px;
    padding: 0 20px 0 7.031svw;
  }
}
.p-jumbotron__content {
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media only screen and (width <= 1024px) {
  .p-jumbotron__content {
    padding: 0 10px;
    margin-top: -25px;
  }
}
.p-jumbotron__mv {
  position: relative;
  z-index: 1;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__mv {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 80.208svw;
    justify-self: flex-end;
  }
}
.p-jumbotron__photo {
  display: block;
  aspect-ratio: 370/180;
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__photo {
    aspect-ratio: 1540/538;
    border-radius: 50px;
  }
}
.p-jumbotron__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-jumbotron__sitetitle {
  color: #fff;
}
.p-jumbotron__sitetitle__main {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  width: fit-content;
  padding: 6px 15px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.42;
  background-color: var(--site-color-green);
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__sitetitle__main {
    margin-bottom: 20px;
    padding: 6px 20px;
    font-size: 56px;
  }
}
.p-jumbotron__sitetitle__sub {
  display: block;
  width: fit-content;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  background-color: var(--site-color-blue02);
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__sitetitle__sub {
    padding: 6px 20px;
    font-size: 30px;
  }
}
.p-jumbotron__catch {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.42;
  color: #fff;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__catch {
    font-size: max(3.4svw, 29px);
    line-height: 1.44;
  }
}
.p-jumbotron__catch__line {
  display: block;
  width: fit-content;
  padding: 6px 20px;
}
.p-jumbotron__catch__line:nth-child(1) {
  margin-bottom: min(1.041svw, 20px);
  background-color: var(--site-color-green);
}
.p-jumbotron__catch__line:nth-child(2) {
  background-color: var(--site-color-blue02);
}
@media only screen and (width <= 1024px) {
  .p-jumbotron__catch__line:nth-child(1) {
    margin-bottom: 10px;
  }
  .p-jumbotron__catch__line:nth-child(2) {
    font-size: 27px;
  }
}
.p-jumbotron__lead {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.875;
  color: var(--site-color-extra);
	letter-spacing: 1px;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__lead {
    margin-top: min(2.395svw, 46px);
    font-size: max(1.8svw, 14px);
    line-height: 1.45;
  }
}
[data-ruby] {
	position: relative;
}
[data-ruby]::before {
	content: attr(data-ruby);
	position: absolute;
	top: -1em;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 0.4em;
	white-space: nowrap;
	text-align: center;
}
.p-jumbotron__lead__line {
  display: block;
  width: fit-content;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__lead__line {
    padding: 20px 15px 8px 0;
    background-color: #fff;
  }
  .p-jumbotron__lead__line:not(:last-child) {
    margin-bottom: 6px;
  }
}
.p-jumbotron--home .p-jumbotron__mv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}
.p-jumbotron--home .p-jumbotron__photo {
  aspect-ratio: 180/278;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron--home {
    margin-bottom: 45px;
  }
  .p-jumbotron--home .p-jumbotron__mv {
    column-gap: 20px;
  }
  .p-jumbotron--home .p-jumbotron__photo {
    aspect-ratio: 760/710;
  }
}

.p-breadcrumb {
  width: calc(100% - 40px);
  margin: auto;
  margin-bottom: 58px;
}
@media print, screen and (width > 1024px) {
  .p-breadcrumb {
    width: min(96.774svw, 1200px);
  }
}
@media only screen and (width <= 1024px) {
  .p-breadcrumb {
    display: none;
  }
}
.p-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.p-breadcrumb__item {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}
.p-breadcrumb__item:not(:last-child) {
  margin-right: 34px;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -19px;
  top: 50%;
  translate: 0 -50%;
  width: 5px;
  height: 9px;
  -webkit-mask-image: url(../images/common/icon_arrow_primary.svg);
  -webkit-mask-size: 5px 9px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow_primary.svg);
  mask-size: 5px 9px;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: var(--site-color-green);
}
.p-breadcrumb__link {
  text-decoration: underline;
}
.p-breadcrumb__link:hover {
  text-decoration: none;
}

.p-news {
  width: calc(100% - 40px);
  margin: auto;
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .p-news {
    width: min(96.774svw, 1200px);
  }
}
.p-news__head {
  margin-bottom: 13px;
  display: flex;
  align-items: flex-end;
  column-gap: 20px;
  font-weight: 700;
}
@media print, screen and (width > 1024px) {
  .p-news__head {
    margin-bottom: 20px;
  }
}
.p-news__head__main {
  font-size: 50px;
  line-height: 1.26;
  color: var(--site-color-cyanite);
  text-transform: capitalize;
}
@media print, screen and (width > 1024px) {
  .p-news__head__main {
    font-size: 60px;
  }
}
.p-news__head__sub {
  padding-bottom: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media print, screen and (width > 1024px) {
  .p-news__head__sub {
    padding-bottom: 20px;
  }
}
.p-news__item {
  background-image: radial-gradient(circle, var(--site-color-gray) 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 13px 3px;
  padding-bottom: 38px;
  margin-bottom: 30px;
}
.p-news__item:last-child {
  margin-bottom: 0;
}
@media print, screen and (width > 1024px) {
  .p-news__item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 30px;
  }
}
@media only screen and (width <= 1024px) {
  .p-news__item {
    margin-bottom: 20px;
    padding-bottom: 23px;
  }
  .p-news__item:last-child {
    margin-bottom: 0;
    background: none;
  }
}
.p-news__time {
  padding-bottom: 9px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.888;
  color: var(--site-color-green);
}
@media print, screen and (width > 1024px) {
  .p-news__time {
    font-size: 20px;
    line-height: 1.7;
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.p-news__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
@media print, screen and (width > 1024px) {
  .p-news__title {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.p-news__txt {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.85;
}
@media print, screen and (width > 1024px) {
  .p-news__txt {
    margin-top: 17px;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.p-news__list {
  max-height : 410px;
  overflow-y: auto;
}

.p-intro {
  position: relative;
  container-type: inline-size;
  container-name: intro-body;
}
.p-intro:nth-child(odd) {
  padding: 60px 20px 40px;
}
.p-intro:nth-child(odd) .p-intro__bg {
  border-radius: 195px 195px 0 0;
}
.p-intro:nth-child(even) {
  padding: 40px 20px 60px;
}
.p-intro:nth-child(even) .p-intro__bg {
  border-radius: 0 0 195px 195px;
}
@media print, screen and (width > 1024px) {
  .p-intro {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 4.75cqw;
    padding: 0 !important;
  }
  .p-intro:nth-child(odd) .p-intro__picture {
    border-radius: 0 50px 50px 0;
  }
  .p-intro:nth-child(odd) .p-intro__bg {
    border-radius: 0 440px 440px 0;
  }
  .p-intro:nth-child(even) {
    flex-direction: row-reverse;
  }
  .p-intro:nth-child(even) .p-intro__picture {
    border-radius: 50px 0 0 50px;
  }
  .p-intro:nth-child(even) .p-intro__bg {
    border-radius: 440px 0 0 440px;
  }
}
.p-intro__picture {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  aspect-ratio: 350/226;
}
@media print, screen and (width > 1024px) {
  .p-intro__picture {
    width: 50.505cqw;
    aspect-ratio: 850/548;
  }
}
.p-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-intro__inner {
  position: relative;
  z-index: 3;
  padding: 25px 20px 20px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
@media print, screen and (width > 1024px) {
  .p-intro__inner {
    width: 37.433cqw;
    padding: min(2.673cqw, 45px);
    margin-top: 15.448cqw;
    border-radius: 30px;
  }
}
.p-intro__catchcopy {
  position: absolute;
  top: max(-11.794svw, -46px);
  left: 50%;
  translate: -50% 0;
  font-size: min(11.794svw, 46px);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}
@media print, screen and (width > 1024px) {
  .p-intro__catchcopy {
    font-size: 4.2cqw;
    top: -4.15cqw;
  }
}
.p-intro__lead {
  margin-bottom: 20px;
  color: var(--site-color-blue01);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.777;
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-intro__lead {
    margin-bottom: min(2.376cqw, 40px);
    font-size: 1.901cqw;
    line-height: 1.625;
  }
}
.p-intro__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.866;
}
.p-intro__txt:not(:last-of-type) {
  margin-bottom: 25px;
}
@media print, screen and (width > 1024px) {
  .p-intro__txt {
    font-size: 1.269cqw;
    line-height: 2;
  }
}
.p-intro__btn {
  margin-top: 20px;
}
@media print, screen and (width > 1024px) {
  .p-intro__btn {
    margin-top: 30px;
  }
}
.p-intro__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.p-intro__bg--business {
  background-image: url(../images/home/bg_business.jpg);
}
.p-intro__bg--company {
  background-image: url(../images/home/bg_company.jpg);
}
.p-intro__bg--recruit {
  background-image: url(../images/home/bg_recruit.jpg);
}
@media print, screen and (width > 1024px) {
  .p-intro__bg {
    top: 5.169cqw;
    height: 35.888cqw;
  }
}

.p-results {
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
}
.p-results::before, .p-results::after {
  content: "";
  position: absolute;
  left: 0;
  top: 283px;
  width: 100%;
  pointer-events: none;
}
.p-results::before {
  height: 60px;
  background: url(../images/common/bg_wave_secondary_sp.svg) repeat-x left top;
  background-size: auto 100%;
}
.p-results::after {
  height: 298.205svw;
  background-color: var(--site-color-aqua02);
  translate: 0 60px;
}
@media print, screen and (width > 1024px) {
  .p-results {
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .p-results::before, .p-results::after {
    top: 417px;
  }
  .p-results::before {
    height: 47px;
    background-image: url(../images/common/bg_wave_secondary.svg);
  }
  .p-results::after {
    height: 52.06%;
    translate: 0 47px;
  }
}
.p-results__inner {
  width: calc(100% - 40px);
  margin: auto;
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .p-results__inner {
    width: min(96.774svw, 1200px);
  }
}
.p-results__title {
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
.p-results__title__main {
  display: block;
  margin-bottom: 6px;
  font-size: 50px;
  line-height: 1.26;
  color: var(--site-color-cyanite);
  text-transform: capitalize;
}
@media print, screen and (width > 1024px) {
  .p-results__title__main {
    font-size: 84px;
  }
}
.p-results__title__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-results__title__sub {
    font-size: 32px;
  }
}
@media print, screen and (width > 1024px) {
  .p-results__title {
    margin-bottom: 40px;
  }
}
.p-results__contents {
  margin-bottom: 20px;
  position: relative;
  display: grid;
}
@media print, screen and (width > 1024px) {
  .p-results__contents {
    margin-bottom: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-results__box {
  position: relative;
  padding-top: 15px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
	margin: 10px 10px;
	display:flex;
	flex-direction: column;
	justify-content: space-between;
}
.p-results__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 5px solid #D9DEEB;
  border-radius: 20px;
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .p-results__box {
    padding-top: 20px;
    border-radius: 30px;
  }
  .p-results__box::before {
    border-radius: 30px;
  }
}
.p-results__name {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-results__name {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.p-results__txt {
  margin-bottom: 20px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
}
@media print, screen and (width > 1024px) {
  .p-results__txt {
    margin-bottom: 30px;
    padding: 0 40px;
    font-size: 17px;
    line-height: 1.777;
  }
}
.p-results__picture {
  display: block;
  border-radius: 0 0 20px 20px;
  aspect-ratio: 350/230;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .p-results__picture {
    border-radius: 0 0 30px 30px;
    aspect-ratio: 400/230;
  }
}
.p-results__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-obligation {
  width: calc(100% - 40px);
  margin: auto;
  margin-top: 50px;
}
@media print, screen and (width > 1024px) {
  .p-obligation {
    width: min(96.774svw, 1200px);
  }
}
@media print, screen and (width > 1024px) {
  .p-obligation {
    margin-top: 130px;
  }
}
.p-obligation__title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-obligation__title {
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 25px;
    place-items: center start;
    font-size: 30px;
    line-height: 1.466;
  }
  .p-obligation__title::before, .p-obligation__title::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--site-color-blue01);
    opacity: 0.3;
  }
}
.p-obligation__inner {
  display: grid;
}
@media print, screen and (width > 1024px) {
  .p-obligation__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-obligation__box {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
	margin: 0px 10px;
}
.p-obligation__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 5px solid #D9DEEB;
  border-radius: 20px;
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .p-obligation__box {
    border-radius: 30px;
  }
  .p-obligation__box::before {
    border-radius: 30px;
  }
}
.p-obligation__name {
  background-color: var(--site-color-blue01);
  padding: 10px 0 7px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
@media print, screen and (width > 1024px) {
  .p-obligation__name {
    margin-bottom: 18px;
    padding: 15px 0 9px;
    font-size: 30px;
    border-radius: 30px 30px 0 0;
  }
}
.p-obligation__txt {
  padding: 0 20px 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}
@media print, screen and (width > 1024px) {
  .p-obligation__txt {
    padding: 0 25px 25px;
    font-size: 16px;
  }
}

@media print, screen and (width > 1024px) {
  .p-mechanism {
  }
}
.p-mechanism__picture {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .p-mechanism__picture {
    width: 1000px;
    margin: 0 auto 60px;
  }
}
.p-mechanism__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mechanism__txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666;
}
.p-mechanism__txt:not(:last-child) {
  margin-bottom: 1.0em;
}
@media print, screen and (width > 1024px) {
  .p-mechanism__txt {
    font-size: 20px;
    line-height: 2.5;
    text-align: center;
  }
  .p-mechanism__txt:not(:last-child) {
    margin-bottom: 1.0em;
  }
}

.p-lineup__lead {
  margin-bottom: 35px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.466;
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-lineup__lead {
    margin-bottom: 65px;
    font-size: 30px;
  }
}
.p-lineup__section:not(:last-of-type) {
   margin-bottom: 1.0em;
}
@media print, screen and (width > 1024px) {
  .p-lineup__section {
    display: grid;
  }
  .p-lineup__section .p-lineup__title {
    align-self: end;
  }
  .p-lineup__section .p-lineup__txt {
    align-self: start;
  }
  .p-lineup__section:nth-child(odd) {
    margin-bottom: 25px;
    grid-template-columns: 36.666% 1fr;
    column-gap: 5%;
  }
  .p-lineup__section:nth-child(odd) .p-lineup__img {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .p-lineup__section:nth-child(odd) .p-lineup__title {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .p-lineup__section:nth-child(odd) .p-lineup__txt {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .p-lineup__section:nth-child(even) {
    grid-template-columns: 1fr 36.666%;
    column-gap: 5%;
  }
  .p-lineup__section:nth-child(even) .p-lineup__img {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .p-lineup__section:nth-child(even) .p-lineup__title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .p-lineup__section:nth-child(even) .p-lineup__txt {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .p-lineup__section:not(:last-of-type) {
    margin-bottom: 45px;
  }
}
.p-lineup__img {
  display: block;
  width: max(260px, 66.666svw);
  height: auto;
  margin: 0 auto 22px;
}
@media print, screen and (width > 1024px) {
  .p-lineup__img {
    width: 100%;
    margin: 0;
  }
}
.p-lineup__title {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-lineup__title {
    margin-bottom: 24px;
    font-size: 28px;
    text-align: left;
  }
}
.p-lineup__txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.866;
}
@media print, screen and (width > 1024px) {
  .p-lineup__txt {
    font-size: 18px;
    line-height: 2;
  }
}

.p-greeting {
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .p-greeting {
    margin: 0;
    display: grid;
    grid-template-columns: 60.4% 30.8%;
    gap: 100px 8.8%;
  }
}
.p-greeting__photo {
  margin-bottom: 30px;
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-greeting__photo {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.p-greeting__img {
  width: 66.666svw;
  height: auto;
  border-radius: 30px;
  box-shadow: 3px 3px var(--site-color-cyanite);
}
@media print, screen and (width > 1024px) {
  .p-greeting__img {
    width: 100%;
    border-radius: 50px;
    box-shadow: 5px 5px var(--site-color-cyanite);
  }
}
.p-greeting__caption {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-greeting__caption {
    margin-top: 20px;
    font-size: 24px;
  }
}
@media print, screen and (width > 1024px) {
  .p-greeting__message {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-greeting__txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}
.p-greeting__txt:not(:last-child) {
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-greeting__txt {
    font-size: 20px;
    line-height: 2.5;
  }
  .p-greeting__txt:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media print, screen and (width > 1024px) {
  .p-greeting__bottom {
    position: relative;
    padding-top: 66px;
    padding-left: 24.75%;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.p-greeting__routine {
  margin-top: 55px;
  padding: 35px 20px 0;
  background-color: rgba(208, 241, 250, 0.2);
  border: 5px solid rgba(2, 181, 233, 0.2);
  border-radius: 20px;
}
.p-greeting__routine .p-greeting__img {
  display: block;
  margin: 30px auto -34px;
}
@media print, screen and (width > 1024px) {
  .p-greeting__routine {
    padding: 40px 7.419% 45px 16.05%;
    border-radius: 30px;
  }
  .p-greeting__routine .p-greeting__img {
    width: 30.8%;
    margin: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
  }
}
.p-greeting__hd {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  margin-bottom: 20px;
  font-size: min(5.641svw, 22px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--site-color-blue01);
  text-align: center;
}
.p-greeting__hd::before {
  content: "";
  position: absolute;
  top: -73px;
  right: -12px;
  width: 65px;
  height: 71px;
  background: url(../images/company/icon_routine.svg) no-repeat left top;
  background-size: 100%;
}
@media print, screen and (width > 1024px) {
  .p-greeting__hd {
    margin-bottom: 30px;
    font-size: 32px;
    text-align: left;
  }
  .p-greeting__hd::before {
    top: auto;
    right: auto;
    bottom: 7px;
    left: 470px;
    width: 93px;
    height: 101px;
  }
}

.p-access__address {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-access__address {
    margin-bottom: 60px;
    font-size: 30px;
    line-height: 2;
  }
}
.p-access__map {
  aspect-ratio: 345/222;
  border: 10px solid #fff;
  border-radius: 30px;
  overflow: hidden;
}
.p-access__map iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
@media print, screen and (width > 1024px) {
  .p-access__map {
    aspect-ratio: 1200/770;
  }
}
.p-access__btn {
  margin: 30px auto 0;
}
@media print, screen and (width > 1024px) {
  .p-access__btn {
    margin-top: 60px;
  }
}

.p-voice {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 25px;
}
@media print, screen and (width > 1024px) {
  .p-voice {
    row-gap: 60px;
  }
}
.p-voice__section {
  background-color: rgba(208, 241, 250, 0.2);
  padding: 22px;
  border: 5px solid rgba(2, 181, 233, 0.2);
  border-radius: 20px;
}
@media print, screen and (width > 1024px) {
  .p-voice__section {
    padding: 27px 35px 35px;
    border-radius: 30px;
  }
}
.p-voice__name {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--site-color-blue01);
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-voice__name {
    margin-bottom: 22px;
    font-size: 26px;
    text-align: left;
  }
}
.p-voice__comment {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (width > 1024px) {
  .p-voice__comment {
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
  }
}

.p-achievements {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
@media print, screen and (width > 1024px) {
  .p-achievements {
    justify-content: flex-start;
    gap: 67px 45px;
  }
}
.p-achievements__item {
  width: calc((100% - 25px) / 2);
}
@media print, screen and (width > 1024px) {
  .p-achievements__item {
    width: calc((100% - 90px) / 3);
  }
}
.p-achievements__box {
  cursor: pointer;
}
.p-achievements__img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 30px;
  box-shadow: 3px 3px var(--site-color-cyanite);
}
@media print, screen and (width > 1024px) {
  .p-achievements__img {
    margin-bottom: 35px;
    border-radius: 50px;
    box-shadow: 5px 5px var(--site-color-cyanite);
  }
}
.p-achievements__img--big {
  width: 100%;
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-achievements__img--big {
    margin-bottom: 40px;
  }
}
.p-achievements__btn {
  position: relative;
  padding-top: 41px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.p-achievements__btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
  width: 31px;
  height: 31px;
  background: url(../images/common/icon_loupe.svg) no-repeat left top;
  background-size: 100%;
}
@media print, screen and (width > 1024px) {
  .p-achievements__btn {
    width: fit-content;
    margin: auto;
    padding: 5px 0 0 49px;
    font-size: 20px;
  }
  .p-achievements__btn::before {
    width: 37px;
    height: 37px;
    left: 0;
    translate: 0;
  }
}
.p-achievements__modal {
  border: 0;
  padding: 0;
  background: none;
  overflow: initial;
}
.p-achievements__modal[open] {
  display: grid;
  place-items: center;
}
.p-achievements__modal::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
@media print, screen and (width > 1024px) {
  .p-achievements__modal {
    width: 800px;
    height: auto;
  }
}
.p-achievements__inner {
  position: relative;
  width: 100%;
}
.p-achievements__close {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -15px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 2px solid var(--site-color-blue01);
  border-radius: 50%;
  cursor: pointer;
}
.p-achievements__close::before, .p-achievements__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 45px;
  height: 4px;
  background-color: var(--site-color-blue01);
  border-radius: 10px;
}
.p-achievements__close::before {
  rotate: 45deg;
}
.p-achievements__close::after {
  rotate: -45deg;
}
@media print, screen and (width > 1024px) {
  .p-achievements__close {
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
  }
  .p-achievements__close::before, .p-achievements__close::after {
    width: 55px;
  }
}
.p-achievements__name {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
@media print, screen and (width > 1024px) {
  .p-achievements__name {
    margin-bottom: 28px;
    font-size: 24px;
  }
}
.p-achievements__txt {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  color: #fff;
}
@media print, screen and (width > 1024px) {
  .p-achievements__txt {
    font-size: 18px;
    line-height: 2;
  }
}

.p-feature {
  container-type: inline-size;
  container-name: featurebox;
  display: grid;
}
.p-feature__item {
  position: relative;
  margin-top: 75px;
  padding: 0 22px 22px;
  background-color: #fff;
  border: 5px solid rgba(2, 181, 233, 0.2);
  border-radius: 20px;
}
@media print, screen and (width > 1024px) {
  .p-feature__item {
    margin-top: 10cqw;
  }
  .p-feature__item:nth-child(odd) {
    margin-left: 24.75cqw;
    padding: 2.75cqw 2.916cqw 2.916cqw 10.25cqw;
  }
  .p-feature__item:nth-child(odd) .p-feature__img {
    left: -5px;
    translate: -24.75cqw -5cqw;
  }
  .p-feature__item:nth-child(even) {
    margin-right: 24.75cqw;
    padding: 2.75cqw 10.25cqw 2.916cqw 2.916cqw;
  }
  .p-feature__item:nth-child(even) .p-feature__img {
    right: -5px;
    translate: 24.75cqw -5cqw;
  }
}
.p-feature__name {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-feature__name {
    margin-bottom: 22px;
    font-size: 26px;
    line-height: 1.3;
    text-align: left;
  }
}
.p-feature__comment {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.86;
}
.p-feature__comment:not(:last-child) {
  margin-bottom: 12px;
}
@media print, screen and (width > 1024px) {
  .p-feature__comment {
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
  }
  .p-feature__comment:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-feature__img {
  display: block;
  width: 66.666svw;
  margin: -50px auto 23px;
  border-radius: 30px;
  box-shadow: 5px 5px var(--site-color-cyanite);
}
@media print, screen and (width > 1024px) {
  .p-feature__img {
    position: absolute;
    top: -5px;
    margin: 0;
    width: 30.8333cqw;
    border-radius: 50px;
  }
}

.p-recruit {
  container-type: inline-size;
  container-name: recruitbox;
}
.p-recruit__item {
  position: relative;
  margin-top: 47px;
  margin-bottom: 34px;
  padding: 0 25px 0 25px;
  background-color: var(--site-color-blue01);
  border-radius: 20px;
}
.p-recruit__item .c-list__item {
  color: #fff;
}
.p-recruit__item .c-list__item::before {
  background-color: var(--site-color-cyanite);
}
@media print, screen and (width > 1024px) {
  .p-recruit__item {
    margin-top: 135px;
    margin-bottom: 0;
    border-radius: 30px;
  }
  .p-recruit__item:nth-child(odd) {
    margin-left: 24.75cqw;
    padding: 0 2.5cqw 3.33cqw 12.5cqw;
  }
  .p-recruit__item:nth-child(odd) .p-recruit__img {
    left: -5px;
    translate: -24.75cqw -5cqw;
  }
  .p-recruit__item:nth-child(even) {
    margin-right: 24.75cqw;
    padding: 0 12.5cqw 3.33cqw 2.5cqw;
  }
  .p-recruit__item:nth-child(even) .p-recruit__img {
    right: -5px;
    translate: 24.75cqw -5cqw;
  }
  .p-recruit__item .c-list__item {
    font-size: 26px;
    line-height: 2.3;
    margin-bottom: 0 !important;
  }
  .p-recruit__item .c-list__item::before {
    top: 20px;
  }
}
.p-recruit__title {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  padding-top: 36px;
  font-size: 26px;
  font-weight: 700;
  line-height: 2;
  color: #fff;
}
.p-recruit__title::after {
  content: "";
  position: absolute;
  top: -27px;
  right: -88px;
  width: 75px;
  height: 74px;
  background: url(../images/recruit/icon_recruit.svg) no-repeat left top;
  background-size: 100%;
}
@media print, screen and (width > 1024px) {
  .p-recruit__title {
    margin: 0 0 27px;
    padding-top: 3.083cqw;
    font-size: 32px;
    line-height: 1.625;
  }
  .p-recruit__title::after {
    top: -2.16cqw;
    right: -148px;
    width: 115px;
    height: 113px;
  }
}
.p-recruit__img {
  position: relative;
  display: block;
  width: 66.666svw;
  margin: auto;
  bottom: -34px;
  border-radius: 30px;
  box-shadow: 5px 5px var(--site-color-cyanite);
}
@media print, screen and (width > 1024px) {
  .p-recruit__img {
    position: absolute;
    top: -5px;
    margin: 0;
    width: 30.8333cqw;
    border-radius: 50px;
  }
}

.p-work {
  position: relative;
  margin-top: 103px;
  padding: 85px 10px 25px 20px;
  background-color: rgba(208, 241, 250, 0.2);
  border: 5px solid rgba(2, 181, 233, 0.2);
  border-radius: 20px;
}
@media print, screen and (width > 1024px) {
  .p-work {
    margin-top: 113px;
    padding-top: 72px;
    padding-bottom: 35px;
    border-radius: 30px;
  }
}
.p-work .c-list {
  width: fit-content;
  margin: auto;
}
.p-work__title {
  position: relative;
  width: max-content;
  position: absolute;
  top: -5px;
  left: 50%;
  translate: -50% -50%;
  padding: 14px min(5.897svw, 23px);
  font-size: min(5.128svw, 20px);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: var(--site-color-cyanite);
  border-radius: 15px;
}
@media print, screen and (width > 1024px) {
  .p-work__title {
    padding: 19px min(4.166svw, 50px);
    font-size: min(2.166svw, 26px);
  }
}

.p-work02 {
  position: relative;
  margin-top: 103px;
  padding: 85px 10px 25px 20px;
  background-color: rgba(255, 2551, 255, 0.8);
  border: 5px solid rgba(2, 181, 233, 0.6);
  border-radius: 20px;
}
@media print, screen and (width > 1024px) {
  .p-work02 {
    margin-top: 113px;
    padding-top: 72px;
    padding-bottom: 35px;
    border-radius: 30px;
  }
}
.p-work02 .c-list {
  width: fit-content;
  margin: auto;
	display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display:flex;
	-ms-flex-wrap: wrap;      flex-wrap: wrap;
	margin-top: 2.0em;
}
.p-work02 .c-list li {
  width: 50%;
}
.p-work02 .p-lineup__lead {
  margin-bottom: 0px;
	margin-top: 2.0em;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
	 color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-work02 {
   font-size: 30px;
  }
}

.p-tel {
  display: grid;
  grid-template-columns: 100%;
  container-type: inline-size;
  container-name: telbox;
}
@media print, screen and (width > 1024px) {
  .p-tel {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-tel__inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.p-tel__inner:nth-child(1) {
  padding: 28px 0 8px;
  background-color: #fff;
  border: 4px solid var(--site-color-blue01);
  border-radius: 20px 20px 0 0;
}
@media print, screen and (width > 1024px) {
  .p-tel__inner:nth-child(1) {
    justify-content: flex-start;
    padding: 36px 0 36px 40px;
    border-radius: 155px 0 0 155px;
  }
}
.p-tel__inner:nth-child(2) {
  padding: 15px 0;
  background-color: var(--site-color-blue01);
  border-radius: 0 0 20px 20px;
}
@media print, screen and (width > 1024px) {
  .p-tel__inner:nth-child(2) {
    border-radius: 0 155px 155px 0;
  }
}
.p-tel__label {
  padding: 14px 17px;
  font-size: 2cqw;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  background-color: var(--site-color-orange);
  border-radius: 155px;
}
@media only screen and (width <= 1024px) {
  .p-tel__label {
    position: absolute;
    left: 50%;
    top: -4px;
    translate: -50% -50%;
    padding: 10px 20px;
    font-size: 20px;
  }
}
.p-tel__txt {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
@media print, screen and (width > 1024px) {
  .p-tel__txt {
    margin-left: 20px;
    font-size: 2.5cqw;
    line-height: 1.666;
  }
}
.p-tel__number {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  position: relative;
  padding-left: 53px;
  font-size: min(9.23svw, 36px);
  line-height: 1.25;
  color: #fff;
}
.p-tel__number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 39px;
  height: 39px;
  background: url(../images/common/icon_tel.svg) no-repeat left top;
  background-size: 100%;
}
.p-tel__number a {
  color: inherit !important;
  text-decoration: none !important;
}
@media print, screen and (width > 1024px) {
  .p-tel__number {
    padding-left: 7.08cqw;
    font-size: 5cqw;
  }
  .p-tel__number::before {
    width: 5.333cqw;
    height: 5.333cqw;
  }
}

.p-contact {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 5px solid var(--site-color-blue01);
  border-radius: 20px;
}
@media print, screen and (width > 1024px) {
  .p-contact {
    background-color: #fff;
  }
}
.p-contact__title {
  position: relative;
  z-index: 3;
  margin-top: -5px;
  margin-left: -5px;
  width: calc(100% + 10px);
  padding: 12px 0 11px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background-color: var(--site-color-blue01);
  border-radius: 20px 20px 0 0;
}
@media print, screen and (width > 1024px) {
  .p-contact__title {
    padding: 24px 0;
    font-size: 30px;
    border-radius: 30px 30px 0 0;
  }
}
.p-contact__inner {
  padding: 5px 20px 25px;
}
.p-contact__inner .c-table {
  margin-bottom: 10px;
}
.p-contact__inner .c-table::before {
  display: none;
}
.p-contact__inner .c-table tr:last-child::after {
  display: none;
}
.p-contact__inner .c-table th {
  padding-left: 0;
}
@media print, screen and (width > 1024px) {
  .p-contact__inner .c-table th {
    padding-top: 40px;
  }
}
@media only screen and (width <= 1024px) {
  .p-contact__inner .c-table th {
    padding-bottom: 14px;
  }
}
.p-contact__inner .c-table td {
  padding-bottom: 23px;
  padding-right: 0;
  padding-left: 0;
}
@media print, screen and (width > 1024px) {
  .p-contact__inner .c-table td {
    padding-bottom: 33px;
  }
}
@media print, screen and (width > 1024px) {
  .p-contact__inner {
    padding: 10px 45px 45px;
  }
}
.p-contact__require {
  display: inline-block;
  margin-left: 15px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.42;
  background-color: var(--site-color-cyanite);
}
@media print, screen and (width > 1024px) {
  .p-contact__require {
    margin-left: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-contact__policy {
  position: relative;
  width: 100%;
  padding: 16px 0 22px;
  background-color: #ECF7FD;
  border-radius: 10px;
}
@media print, screen and (width > 1024px) {
  .p-contact__policy {
    padding: 16px;
  }
}
.p-contact__btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}
@media print, screen and (width > 1024px) {
  .p-contact__btn {
    flex-direction: row;
    margin-top: 45px;
  }
}

.p-policy {
  padding: 20px;
  background-color: rgba(208, 241, 250, 0.2);
  border: 5px solid rgba(2, 181, 233, 0.2);
  border-radius: 20px;
}
@media print, screen and (width > 1024px) {
  .p-policy {
    padding: 35px;
    border-radius: 30px;
  }
}
.p-policy__section:not(:last-child) {
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
}
.p-policy__section:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle, #7FA6CF 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 13px 3px;
}
@media print, screen and (width > 1024px) {
  .p-policy__section:not(:last-child) {
    padding-bottom: 40px;
  }
  .p-policy__section:not(:last-child):not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-policy__title {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-policy__title {
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
  }
}
.p-policy__txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media print, screen and (width > 1024px) {
  .p-policy__txt {
    font-size: 18px;
    line-height: 2;
  }
}
.p-policy__list__item {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.p-policy__list__item::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: rgba(2, 181, 233, 0.5);
  border-radius: 50%;
}
@media print, screen and (width > 1024px) {
  .p-policy__list__item {
    padding-left: 20px;
    font-size: 18px;
    line-height: 2;
  }
  .p-policy__list__item::before {
    top: 11px;
    width: 16px;
    height: 16px;
  }
}
.p-policy__counter {
  counter-reset: my-counter;
}
.p-policy__counter .p-policy__txt {
  position: relative;
  padding-left: 17px;
}
.p-policy__counter .p-policy__txt::before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
  position: absolute;
  left: 0;
  top: 0;
}
@media print, screen and (width > 1024px) {
  .p-policy__counter .p-policy__txt {
    padding-left: 27px;
  }
}
.p-policy__inner:not(:last-child) {
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-policy__inner:not(:last-child) {
    margin-bottom: 35px;
  }
}
.p-policy__inner .p-policy__list {
  margin-top: 12px;
}
@media print, screen and (width > 1024px) {
  .p-policy__inner .p-policy__list {
    margin-top: 20px;
    margin-left: 26px;
  }
}
.p-policy__contact {
  margin-top: 20px;
  padding: 15px;
  background-color: #fff;
  border: 5px solid rgba(2, 181, 233, 0.2);
  border-radius: 20px;
}
@media print, screen and (width > 1024px) {
  .p-policy__contact {
    margin-top: 40px;
    padding: 35px 30px;
    border-radius: 30px;
  }
}
.p-policy__contact .p-policy__list__item {
  font-weight: 500;
}

.p-cta {
  width: calc(100% - 40px);
  margin: 50px auto 0;
  padding: 12px 20px 25px;
  border: 5px solid var(--site-color-cyanite);
  border-radius: 20px;
  background-color: #fff;
}
@media print, screen and (width > 1024px) {
  .p-cta {
    margin-top: 120px;
    display: grid;
    grid-template-columns: 1fr min(40vw, 498px);
    column-gap: min(7.25vw, 50px);
    align-items: start;
    width: min(96.77vw, 1200px);
    padding: 35px 55px 55px;
    border-width: 10px;
    border-radius: 30px;
  }
}
.p-cta__title {
  margin-bottom: 18px;
  font-weight: 700;
}
@media print, screen and (width > 1024px) {
  .p-cta__title {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-bottom: 44px;
  }
}
.p-cta__title__main {
  font-size: 55px;
  line-height: 1.25;
  color: var(--site-color-cyanite);
}
@media print, screen and (width > 1024px) {
  .p-cta__title__main {
    font-size: min(6.93vw, 86px);
  }
}
.p-cta__title__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  line-height: 1.45;
  display: block;
}
@media print, screen and (width > 1024px) {
  .p-cta__title__sub {
    font-size: min(2.09vw, 26px);
  }
}
.p-cta__txt {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  color: var(--site-color-blue01);
}
@media print, screen and (width > 1024px) {
  .p-cta__txt {
    grid-column: 1/2;
    grid-row: 2/3;
    font-size: min(2.58vw, 32px);
    line-height: 1.65;
  }
}
.p-cta__img {
  height: auto;
  margin: 30px auto 0;
}
@media only screen and (width <= 1024px) {
  .p-cta__img {
    display: block;
    width: max(66.666vw, 250px);
  }
}
@media print, screen and (width > 1024px) {
  .p-cta__img {
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
.p-cta__btn {
  width: 252px;
  height: auto;
  margin: 30px auto 0;
  padding: 14px 28px;
  border-radius: 33px;
}
.p-cta__btn .c-btn__inner {
  padding-left: 46px;
  font-size: 25px;
  line-height: 1.44;
}
.p-cta__btn .c-btn__inner::before {
  width: 36px;
  height: 25px;
  mask-size: 36px 25px;
  -webkit-mask-size: 36px 25px;
}
@media print, screen and (width > 1024px) {
  .p-cta__btn {
    margin: 60px 0 0;
    grid-column: 1/2;
    grid-row: 3/4;
  }
}

.p-fnav {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px min(2.12cqw, 35px);
}
.p-fnav:last-child {
  margin-top: 55px;
}
@media only screen and (width <= 1024px) {
  .p-fnav:last-child {
    display: none;
  }
}
.p-fnav__list {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px min(2.12cqw, 35px);
}
@media only screen and (width <= 1024px) {
  .p-fnav__list {
    display: none;
  }
}
.p-fnav__link {
  padding-left: 13px;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
}
.p-fnav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 5px;
  height: 9px;
  -webkit-mask-image: url(../images/common/icon_arrow_primary.svg);
  -webkit-mask-size: 5px 9px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow_primary.svg);
  mask-size: 5px 9px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #7FA6CF;
}

.p-info__address {
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
@media print, screen and (width > 1024px) {
  .p-info__address {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
.p-info__tel {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  text-align: center;
  color: #fff;
  font-size: min(8.205svw, 32px);
  font-weight: 700;
  line-height: 1.25;
	margin-bottom: 0.4em;
}
@media print, screen and (width > 1024px) {
  .p-info__tel {
    font-size: 32px;
  }
}
.p-info__tel a {
  color: inherit !important;
  text-decoration: none !important;
}

.p-pagetop {
  position: absolute;
  right: 20px;
  bottom: 30px;
  width: fit-content;
  padding-top: 43px;
}
.p-pagetop:hover .p-pagetop__icon::before {
  scale: 1;
  transition: scale 0.3s;
}
.p-pagetop:hover .p-pagetop__icon::after {
  width: 26px;
  height: 19px;
  background-color: var(--site-color-cyanite);
  transition: all 0.3s;
  transition-duration: 0.1s;
}
@media print, screen and (width > 1024px) {
  .p-pagetop:hover .p-pagetop__icon::after {
    width: 32px;
    height: 23px;
  }
}
.p-pagetop:hover .p-pagetop__txt {
  color: var(--site-color-green);
  transition: color 0.3s;
}
@media print, screen and (width > 1024px) {
  .p-pagetop {
    right: 95px;
    bottom: 40px;
    padding-top: 58px;
  }
}
.p-pagetop__icon {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  background-color: var(--site-color-cyanite);
  border-radius: 50%;
}
.p-pagetop__icon::before, .p-pagetop__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-pagetop__icon::before {
  z-index: 1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  border-radius: 50%;
  scale: 0 0;
  transition: scale 0.2s;
}
.p-pagetop__icon::after {
  z-index: 2;
  width: 12px;
  height: 9px;
  -webkit-mask-image: url(../images/common/icon_arrow_secondary.svg);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow_secondary.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  rotate: -90deg;
  transition: all 0.2s;
  transition-duration: 0.1s;
}
@media print, screen and (width > 1024px) {
  .p-pagetop__icon {
    width: 70px;
    height: 70px;
  }
}
.p-pagetop__txt {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: 0;
  white-space: nowrap;
  color: #fff;
  transition: color 0.2s;
}
@media print, screen and (width > 1024px) {
  .p-pagetop__txt {
    font-size: 18px;
    line-height: 1.888;
  }
}

.p-copyright {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  margin-top: 90px;
  text-align: center;
  color: #fff;
  font-size: min(3.076svw, 12px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}
@media print, screen and (width > 1024px) {
  .p-copyright {
    margin-top: 100px;
    font-size: 14px;
  }
}

.p-consultation__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.866;
	text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-consultation__txt {
font-size: 20px;
    line-height: 2;
  }
}


/* ↓ お問い合わせフォーム用 ↓ */
#formWrap {

  & form { container:form / inline-size;}
  & .formTable {
    width:min(700px, 90%);
    margin:5em auto;

    & :is(tbody, tr) { position:relative;}
    & :is(tbody, tr):after {
      content:"";
      position:absolute;
      inset-inline:0 auto;
      width:100%;
      height:3px;
      background:radial-gradient(circle, #7FA6CF 1.5px, transparent 1.5px) repeat-x left top / 13px 3px;
    }
    & tbody:after { inset-block:auto 100%;}
    & tr:after { inset-block:auto 0;}
    & :is(th, td) { padding:1em 0.5em;}
    & th { text-align:start; width:40%; color:var(--site-color-blue01); font-weight:600;}
    & td { width:60%;}
  }
  & .buttonWrap { display:flex; justify-content:center; flex-direction:row-reverse; flex-wrap:wrap; gap:2rem; margin-top:2rem;}
  & button {
    
    &.return { background-color:var(--site-color-cyanite);}
    &.return:hover { background-color:var(--site-color-green);}
  }
  & .p-contact__btn { margin-top:0px;}
  & textarea { resize:vertical;}
  & .error_messe { margin-top:3em; color:red;}
  & .error_messe + .error_messe { margin-top:1em;}
}
@container form (width < 600px){

  #formWrap .formTable {

    & :is(th, td) { display:block; width:100%; padding-block:0.5em;}
    & td { padding-top:0px;}
  }
}

/* エラー文章 */
form .error { color:red; font-weight:bold;}
.p-contact__policy .error { width:fit-content; margin-inline:auto;}
