@charset "UTF-8";

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 93px;
}

@media screen and (max-width: 519px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  overflow-x: hidden;
  background: #f4f7fb;
  font-family: "BIZ UDGothic", sans-serif;
  color: #113e71;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #113e71;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  /* 1 */
  height: auto;
  /* 1 */
  vertical-align: middle;
  /* 2 */
  font-style: italic;
  /* 3 */
  background-repeat: no-repeat;
  /* 4 */
  background-size: cover;
  /* 4 */
  shape-margin: 0.75rem;
  /* 5 */
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

::-ms-input-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

/*=========================================================================
# アニメーション
========================================================================= */
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.l-header {
  background: #ffffff;
  position: fixed;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: min(100% - 6vw, 100% - 60px);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(131, 155, 182, 0.15);
  box-shadow: 0px 3px 6px 0px rgba(131, 155, 182, 0.15);
  z-index: 100;
  border-radius: 999px;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 767px) {
  .l-header {
    top: 0;
    left: 0;
    right: 0;
    padding-left: 10px;
    padding-right: 0;
    max-width: unset;
    border-radius: 0;
    -webkit-transform: none;
    transform: none;
  }
}

.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 93px;
}

@media screen and (max-width: 767px) {
  .l-header__container {
    height: 60px;
    width: 100%;
  }
}

.l-header__logo a img {
  width: 350px;
  height: auto;
  aspect-ratio: 252/23;
}

@media screen and (max-width: 1400px) {
  .l-header__logo a img {
    width: 250px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .l-header__logo a img {
    width: 195px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__logo a img {
    width: 9.3125rem;
  }
}

.l-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l-header__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 80px;
    position: fixed;
    top: 60px;
    right: -120%;
    width: 300px;
    height: calc(100svh - 60px);
    z-index: 102;
    background: #113e71;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }

  .l-header__wrapper.js-open {
    right: 0;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .l-header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.l-header__link {
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 1400px) {
  .l-header__link {
    font-size: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .l-header__link {
    font-size: 11px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__link {
    color: #ffffff;
  }
}

.l-header__link.is-sp {
  display: none;
}

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

.l-header__free {}

.l-header__freeNum {
  display: flex;
  align-items: center;
  gap: 15px;
}

.l-header__freeNum img {
  width: 46px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .l-header__freeNum img {
    width: 30px;
  }

}

.l-header__freeNum p {
  font-size: 36px;
  font-weight: 700;
}

@media screen and (max-width: 1400px) {
  .l-header__freeNum p {
    font-size: 26px;
  }

}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .l-header__freeNum p {
    font-size: 20px;
  }

}

.l-header__meta {
  text-align: center;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
}

.l-header__drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-header__drawer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header__tel {
  display: grid;
  place-content: center;
  background: #1da1e6;
  width: 60px;
}

.l-header__tel img {
  width: 25px;
}

.l-header__mail {
  display: grid;
  place-content: center;
  background: #4680ad;
  width: 60px;
}

.l-header__mail img {
  width: 25px;
}

.l-main {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 60px;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: inherit;
  padding: 0 2.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 560px;
    padding: 0 30px;
  }
}

.l-inner--middle {
  max-width: 1220px;
}

@media screen and (max-width: 767px) {
  .l-inner--middle {
    width: 100%;
    max-width: 560px;
    padding: 0 30px;
  }
}

.l-inner--narrow {
  max-width: 1120px;
}

@media screen and (max-width: 767px) {
  .l-inner--narrow {
    width: 100%;
    max-width: 560px;
    padding: 0 30px;
  }
}

.l-inner .ashirai-head01 {
  position: absolute;
  width: 320px;
  bottom: -160px;
  right: -240px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai-head01 {
    width: 200px;
    bottom: 0;
    right: -110px;
  }
}

.l-inner .ashirai-head02 {
  position: absolute;
  width: 100px;
  top: -20px;
  left: -110px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai-head02 {
    width: 50px;
    top: 0;
    left: -40px;
  }
}

.l-inner .ashirai-head02--up {
  z-index: 2;
  top: 0;
}

.l-inner .ashirai-head03 {
  position: absolute;
  width: 90px;
  bottom: 90px;
  left: -20px;
  z-index: 2;
  -webkit-animation: fuwafuwa01 2.5s infinite;
  animation: fuwafuwa01 2.5s infinite;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai-head03 {
    width: 30px;
    bottom: 20px;
    left: 10px;
  }
}

.l-inner .ashirai-head04 {
  position: absolute;
  width: 180px;
  bottom: -20px;
  left: 90px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai-head04 {
    width: 80px;
    bottom: -10px;
    left: 50px;
  }
}

.l-inner .ashirai03 {
  position: absolute;
  width: 100px;
  bottom: 100px;
  right: 0px;
  -webkit-animation: fuwafuwa01 2.5s infinite;
  animation: fuwafuwa01 2.5s infinite;
}

.l-inner .ashirai04 {
  position: absolute;
  width: 300px;
  top: -200px;
  left: -220px;
  opacity: 0.5;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai04 {
    width: 180px;
    top: -180px;
    left: -100px;
  }
}

.l-inner .ashirai04--up {
  z-index: 2;
}

.l-inner .ashirai05 {
  position: absolute;
  width: 200px;
  top: 200px;
  right: -200px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai05 {
    width: 160px;
    top: 160px;
    right: -160px;
  }
}

.l-inner .ashirai06 {
  position: absolute;
  width: 60px;
  top: 100px;
  left: -120px;
  rotate: 90deg;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai06 {
    width: 30px;
    top: -80px;
    left: 0;
  }
}

.l-inner .ashirai06--up {
  z-index: 2;
}

.l-inner .ashirai07 {
  position: absolute;
  width: 240px;
  top: 240px;
  right: -240px;
  z-index: -1;
}

.l-inner .ashirai07--up {
  z-index: 2;
}

.l-inner .ashirai08 {
  position: absolute;
  width: 300px;
  top: 100px;
  left: -220px;
  opacity: 0.5;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai08 {
    width: 200px;
    left: -100px;
  }
}

.l-inner .ashirai08--up {
  z-index: 2;
}

.l-inner .ashirai09 {
  position: absolute;
  width: 200px;
  top: 100px;
  right: -200px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai09 {
    width: 160px;
    top: 0;
    right: -130px;
  }
}

.l-inner .ashirai09--up {
  z-index: 2;
}

.l-inner .ashirai10 {
  position: absolute;
  width: 120px;
  top: 240px;
  left: -160px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l-inner .ashirai10 {
    top: 120px;
    left: -120px;
  }
}

.l-inner .ashirai10--up {
  z-index: 2;
}

@-webkit-keyframes fuwafuwa01 {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fuwafuwa01 {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes fuwafuwa02 {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@keyframes fuwafuwa02 {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

.l-section {
  padding-top: 100px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 90px;
    padding-bottom: 120px;
  }
}

.l-section__wrapper {
  position: relative;
  z-index: 2;
}

.l-section__body {
  margin-top: 50px;
}

.l-section__body--narrow {
  max-width: 800px;
  margin-left: auto;
}

.c-btn {
  display: inline-block;
  width: 229px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #1da1e6;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.c-btn span {
  font-size: 12px;
}

.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 17px;
  width: 12px;
  height: auto;
  aspect-ratio: 12/11;
  background: url(../img/arrow-btn.png) no-repeat center center/cover;
}

.c-btn--404::after {
  content: "";
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  left: 17px;
  right: unset;
  rotate: 180deg;
}

.c-lead {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 26px;
  }
}

.c-lead__text {
  margin-top: 40px;
}

.c-lead__text p {
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .c-lead__text p {
    font-size: 14px;
  }
}

.c-lead__text p+p {
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .c-lead__text p+p {
    margin-top: 14px;
  }
}

.c-head__en {
  font-family: "Exo 2", sans-serif;
  color: #1da1e6;
  font-size: 28px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .c-head__en {
    font-size: 20px;
  }
}

.c-head__ttl {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-head__ttl {
    font-size: 28px;
    margin-top: 12px;
  }
}

.c-breadcrumb {
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  margin-top: 50px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 26px;
  font-size: 14px;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.c-breadcrumb .home {
  color: #aaaaaa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 8px;
}

.c-breadcrumb .post {
  margin-left: 8px;
}

.c-breadcrumb .post-post {
  margin-right: 8px;
}

.c-breadcrumb .post-page {
  margin-right: 8px;
}

.c-breadcrumb .current-item {
  margin-left: 8px;
}

.c-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .c-loop {
    gap: 17px;
  }
}

.c-loop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .c-loop__list {
    gap: 17px;
  }
}

.c-loop__list--left {
  -webkit-animation: infinity-scroll-left 60s infinite linear 0.5s both;
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  .c-loop__list--left {
    -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
  }
}

.c-loop__list--right {
  -webkit-animation: infinity-scroll-right 60s infinite linear 0.5s both;
  animation: infinity-scroll-right 60s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  .c-loop__list--right {
    -webkit-animation: infinity-scroll-right 30s infinite linear 0.5s both;
    animation: infinity-scroll-right 30s infinite linear 0.5s both;
  }
}

.c-loop__item {
  width: 34.3055555556vw;
  height: auto;
  aspect-ratio: 498/350;
}

@media screen and (max-width: 767px) {
  .c-loop__item {
    width: 67.4418604651vw;
  }
}

.c-loop__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.c-section-ttl {
  text-align: center;
  background: #113e71;
  color: #ffffff;
  padding: 22px;
  border-radius: 999px;
  font-size: 36px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-section-ttl {
    font-size: 22px;
  }
}

.p-drawer__iconWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  background: #113e71;
  height: 60px;
}

.p-drawer__icon {
  width: 100%;
  height: 30px;
  position: relative;
}

.p-drawer__icon .bar {
  width: 30px;
  height: 1px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 16px;
}

.p-drawer__icon .bar1 {
  top: 16px;
}

.p-drawer__icon .bar2 {
  top: 22px;
}

.p-drawer__icon .bar3 {
  top: 28px;
}

.p-drawer__icon.js-open .bar {
  left: 18px;
  width: 25px;
  top: 22px;
}

.p-drawer__icon.js-open .bar1 {
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.p-drawer__icon.js-open .bar3 {
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.p-drawer__icon.js-open .bar2 {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-drawer__icon {
    display: block;
  }
}

.p-drawer__iconMenu {
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  text-align: center;
}

.p-drawer__bg {
  position: fixed;
  top: 60px;
  right: -120%;
  width: 100%;
  height: calc(100svh - 60px);
  z-index: 101;
  background: #113e71;
  opacity: 0;
}

.p-drawer__bg.js-open {
  right: 0;
  opacity: 0.5;
}

.p-drawer__menu {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-drawer__menu {
    display: block;
    padding-top: 54px;
    padding-bottom: 20px;
    padding-left: 30px;
    position: fixed;
    top: 60px;
    right: -120%;
    width: 310px;
    height: calc(100svh - 60px);
    overflow: auto;
    z-index: 102;
    background: #113e71;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }

  .p-drawer__menu.js-open {
    right: 0;
  }
}

.p-drawer__link {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-drawer__link:not(:first-child) {
  margin-top: 30px;
}

.p-drawer__mega {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 188px;
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}

.p-drawer__mega::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1px;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.p-drawer__mega::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  width: 18px;
  height: 2px;
  background: #ffffff;
  rotate: 90deg;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-drawer__mega.js-open::after {
  rotate: 0deg;
}

.p-drawer__subMenu {
  display: none;
  padding-left: 10px;
  margin-top: 30px;
}

.p-drawer__subMenu li+li {
  margin-top: 20px;
}

.p-drawer__subMenu a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
}

.p-drawer__subMenu a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 50%;
}

.p-drawer__pribacy {
  display: block;
  margin-top: 50px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}

.p-cta {
  margin-top: 150px;
  padding-top: 54px;
  background: url(../img/bg-cta.jpg) no-repeat center center/cover;
  margin-bottom: 40px;
  border-radius: 80px 80px 0 0;
}

@media screen and (max-width: 767px) {
  .p-cta {
    margin-top: 100px;
    padding: 0;
    background: unset;
    margin-bottom: 0;
    border-radius: unset;
  }
}

.p-cta__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  bottom: -40px;
}

@media screen and (max-width: 767px) {
  .p-cta__wrapper {
    bottom: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}

.p-cta__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #4680ad;
  width: 50%;
  padding-top: 62px;
  padding-bottom: 65px;
}

@media screen and (max-width: 767px) {
  .p-cta__card {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.p-cta__card--blue {
  background: #1da1e6;
}

.p-cta__head {
  font-size: 30px;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-cta__head {
    font-size: 23px;
  }
}

.p-cta__icon {
  margin-top: 20px;
  height: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-cta__icon--tel img {
  width: 39px;
  height: auto;
  aspect-ratio: 1;
}

@media screen and (max-width: 767px) {
  .p-cta__icon--tel img {
    width: 32px;
  }
}

.p-cta__icon--mail img {
  width: 39px;
  height: auto;
  aspect-ratio: 39/30;
}

@media screen and (max-width: 767px) {
  .p-cta__icon--mail img {
    width: 32px;
  }
}

.p-cta__lead {
  font-size: 14px;
  color: #ffffff;
  margin-top: 20px;
}

.p-cta__free {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

@media screen and (max-width: 767px) {
  .p-cta__free {
    margin-top: 30px;
  }
}

.p-cta__free img {
  width: 51px;
}

@media screen and (max-width: 767px) {
  .p-cta__free img {
    width: 42px;
  }
}

.p-cta__free a {
  color: #ffffff;
  font-size: 39px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-cta__free a {
    font-size: 35px;
  }
}

.p-cta__time {
  margin-top: 6px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
}

.p-cta__btn {
  margin-top: 27px;
}

.p-footer {
  padding-top: 55px;
}

@media screen and (max-width: 767px) {
  .p-footer {
    background: #547699;
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.p-footer__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 48px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px 80px;
}

@media screen and (max-width: 767px) {
  .p-footer__upper {
    display: block;
    padding: 0;
  }
}

.p-footer__logo {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-footer__logo {
    text-align: center;
  }
}

.p-footer__logo img {
  width: 252px;
  height: auto;
  aspect-ratio: 252/23;
}

@media screen and (max-width: 767px) {
  .p-footer__logo img.is-pc {
    display: none;
  }
}

.p-footer__logo img.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-footer__logo img.is-sp {
    display: inline;
  }
}

.p-footer__free {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

@media screen and (max-width: 767px) {
  .p-footer__free {
    display: none;
  }
}

.p-footer__free img {
  width: 38px;
  height: auto;
  aspect-ratio: 38/32;
}

.p-footer__free span {
  font-size: 29px;
  font-weight: 700;
}

.p-footer__meta {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8571428571;
}

@media screen and (max-width: 767px) {
  .p-footer__meta {
    text-align: center;
    margin-top: 60px;
    color: #ffffff;
  }

  .p-footer__meta span {
    display: none;
  }
}

.p-footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .p-footer__body {
    display: none;
  }
}

.p-footer__nav {
  min-width: 160px;
}

.p-footer__link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7777777778;
}

.p-footer__link+.p-footer__link {
  margin-top: 36px;
}

.p-footer__mega {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 25px;
}

.p-footer__megaLink {
  font-size: 14px;
  font-weight: 400;
}

.p-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  padding-top: 55px;
  padding-bottom: 60px;
  border-top: 1px solid #ececec;
}

@media screen and (max-width: 767px) {
  .p-footer__bottom {
    display: block;
    padding: 0;
    border: none;
  }
}

.p-footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-footer__copy {
    text-align: center;
    margin-top: 12px;
  }
}

.p-footer__copy small {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .p-footer__copy small {
    color: #ffffff;
  }
}

.p-footer__privacy {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .p-footer__privacy {
    display: none;
  }
}

.p-page-fv {
  padding-top: 220px;
  padding-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-page-fv {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.p-page-fv--single {
  background: #ffffff;
  position: relative;
}

.p-page-fv--single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #f4f7fb;
  border-radius: 0 0 100px 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-page-fv--single::before {
    border-radius: 0 0 50px 0;
  }
}

.p-page-fv--single .l-inner {
  position: relative;
  z-index: 2;
}

.p-page-fv__head p {
  font-family: "Exo 2", sans-serif;
  color: #1da1e6;
  font-size: 40px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .p-page-fv__head p {
    font-size: 38px;
  }
}

.p-page-fv__head h1 {
  margin-top: 18px;
  font-size: 60px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-page-fv__head h1 {
    font-size: 35px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .p-page-fv__head--under p {
    font-size: 26px;
  }

  .p-page-fv__head--under h1 {
    font-size: min(26px, 6.0465116279vw);
  }
}

.p-page-fv__lead {
  margin-top: 50px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-page-fv__lead {
    margin-top: 30px;
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .p-page-fv__lead--under {
    font-size: 18px;
  }
}

.p-page-fv__thumb {
  margin-top: 50px;
  margin-right: calc(50% - 50vw);
  height: 600px;
}

@media screen and (max-width: 767px) {
  .p-page-fv__thumb {
    height: 200px;
  }
}

.p-page-fv__thumb img {
  border-radius: 50px 0 0 50px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-page-fv__thumb img {
    border-radius: 20px 0 0 20px;
  }
}

.page-fv__bigText {
  position: absolute;
  top: 220px;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .page-fv__bigText {
    top: 60px;
  }
}

.page-fv__bigText p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-family: "Exo 2", sans-serif;
  color: rgba(29, 161, 230, 0.05);
  font-size: 300px;
  font-weight: 300;
  -webkit-animation: MoveLeft 24s -12s infinite linear;
  animation: MoveLeft 24s -12s infinite linear;
}

@media screen and (max-width: 767px) {
  .page-fv__bigText p {
    font-size: 180px;
    -webkit-animation: MoveLeft 18s -9s infinite linear;
    animation: MoveLeft 18s -9s infinite linear;
  }
}

@-webkit-keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.p-page-fv__singleMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-page-fv__singleDate {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1da1e6;
}

.p-page-fv__singleTag {
  display: inline-block;
  width: 58px;
  height: 22px;
  background: #f45959;
  border-radius: 10px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  font-family: "Exo 2", sans-serif;
  color: #ffffff;
}

.p-page-fv__singleTtl {
  margin-top: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.p-under--bousui {
  padding-bottom: 100px;
}

.p-under__head {
  margin-bottom: 100px;
}

.p-under__head:not(:first-child) {
  margin-top: 100px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-under__head {
    margin-bottom: 50px;
  }
}

.p-under__head h2 {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 30px;
  padding-left: 50px;
  border-bottom: 1px solid #707070;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-under__head h2 {
    font-size: 22px;
    padding-bottom: 10px;
    padding-left: 28px;
  }
}

.p-under__head h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid #1da1e6;
}

@media screen and (max-width: 767px) {
  .p-under__head h2::before {
    width: 23px;
    border: 8px solid #1da1e6;
  }
}

.p-under__head p {
  margin-top: 50px;
  font-size: 20px;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .p-under__head p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

.p-under__head p span {
  font-weight: 700;
  color: #1da1e6;
}

.p-under__head ul {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-under__head ul {
    margin-top: 30px;
  }
}

.p-under__head ul li {
  font-size: 20px;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .p-under__head ul li {
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

.p-under__head ul li::before {
  content: "●";
}

.p-under__bousuiHead {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-under__bousuiHead {
    margin-bottom: 50px;
  }
}

.p-under__bousuiHead h2 {
  font-size: 36px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-under__bousuiHead h2 {
    font-size: 22px;
  }
}

.p-under__bousuiHead p {
  margin-top: 50px;
  font-size: 20px;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .p-under__bousuiHead p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

.p-under__bousuiHead--border {
  padding-top: 100px;
  border-top: 1px dashed #113e71;
}

.p-under__body {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .p-under__body {
    margin-top: 50px;
  }
}

.p-under__content+.p-under__content {
  margin-top: 100px;
}

.p-under__ttl {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 53px;
  padding-right: 20px;
  margin-bottom: 50px;
  background: #113e71;
  border-radius: 999px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-under__ttl {
    font-size: 18px;
    padding-left: 44px;
    margin-bottom: 30px;
  }
}

.p-under__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-under__ttl::before {
    padding-left: 15px;
  }
}

.p-under__shiroari {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 22px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-under__shiroari {
    gap: 15px;
  }
}

.p-under__shiroariCard {
  width: calc((100% - 44px) / 3);
}

@media screen and (max-width: 767px) {
  .p-under__shiroariCard {
    width: 100%;
  }
}

.p-under__shiroariThumb {
  width: 100%;
  height: auto;
  aspect-ratio: 365/248;
}

.p-under__shiroariThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.p-under__shiroariName {
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
}

.p-under__shiroariText {
  margin-top: 50px;
  font-size: 16px;
  line-height: 2;
}

.p-under__shiroariType {}

.p-under__shiroariType+.p-under__shiroariType {
  margin-top: 50px;
}

.p-under__shiroariType h3 {
  font-size: 24px;
  font-weight: 700;
}

.p-under__shiroariType h3+p {
  margin-top: 30px;
  font-size: 20px;
  line-height: calc(38 / 20);
}

@media screen and (max-width: 767px) {
  .p-under__shiroariType h3+p {
    font-size: 16px;
  }
}

.p-under__shiroariType ul {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-under__shiroariType ul {
    gap: 30px;
  }
}

.p-under__shiroariType ul li {
  width: calc((100% - 20px * 2) / 3);
}

@media screen and (max-width: 767px) {
  .p-under__shiroariType ul li {
    width: 100%;
  }
}

.p-under__shiroariType ul img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 20px;
}

.p-under__shiroariType ul p {
  text-align: center;
  font-size: 20px;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-under__shiroariType ul p {
    font-size: 16px;
  }
}

.p-under__detect {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .p-under__detect {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.p-under__detect+.p-under__detect {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .p-under__detect+.p-under__detect {
    margin-top: 50px;
  }
}

.p-under__detectThumb {
  width: calc(480 / 1140 * 100%);
}

@media screen and (max-width: 767px) {
  .p-under__detectThumb {
    width: 100%;
  }
}

.p-under__detectThumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 480/325;
  border-radius: 20px;
}

.p-under__detectThumb p {
  margin-top: 15px;
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .p-under__detectThumb p {
    font-size: 16px;
  }
}

.p-under__detectContet {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p-under__detectContet {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-under__detectContet h4 {
  display: inline-block;
  width: 225px;
  height: 63px;
  border-radius: 32px;
  background: #2c5f8f;
  color: #fff;
  text-align: center;
  line-height: 63px;
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-under__detectContet h4 {
    display: flex;
    justify-content: center;
    font-size: 18px;
  }
}

.p-under__detectContet p {
  margin-top: 48px;
  font-size: 20px;
  line-height: calc(38 / 20);
}

@media screen and (max-width: 767px) {
  .p-under__detectContet p {
    margin-top: 30px;
    font-size: 16px;
  }
}

.p-under__shiroariAttention {
  margin-top: 138px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-under__shiroariAttention {
    margin-top: 100px;
    text-align: left;
    font-size: 22px;
  }
}

.p-under__shiroariAuthority {
  margin-top: 100px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: calc(17 / 14);
}

@media screen and (max-width: 767px) {
  .p-under__shiroariAuthority {
    margin-top: 50px;
  }
}

.p-under__img img {
  width: 100%;
}

.p-under__img+.p-under__img {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-under__img+.p-under__img {
    margin-top: 30px;
  }
}

.p-under__imgCaption {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}

.p-under__bousui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 32px;
}

.p-under__bousuiCard {
  width: calc((100% - 64px) / 3);
}

@media screen and (max-width: 767px) {
  .p-under__bousuiCard {
    width: 100%;
  }
}

.p-under__bousuiThumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.p-under__bousuiThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.p-under__bousuiName {
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-under__bousuiName {
    margin-top: 15px;
  }
}

.p-under__bousuiText {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
}

.p-under__bousuiText--center {
  text-align: center;
}

.p-under__bousuiLead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 50px;
}

.p-under__bousuiLeadHead {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-under__bousuiLeadHead {
    font-size: 20px;
    line-height: 1.3;
  }
}

.p-under__keisoku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-under__keisokuCard {
  width: 257px;
}

@media screen and (max-width: 767px) {
  .p-under__keisokuCard {
    width: 100%;
  }
}

.p-under__keisokuThumb {
  width: 100%;
  height: auto;
  aspect-ratio: 257/248;
}

.p-under__keisokuThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-under__keisokuText {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-under__keisokuText {
    font-size: 20px;
  }
}

.p-under__surface {
  margin-top: 100px;
}

.p-under__surfaceHead {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-under__surfaceHead {
    font-size: 20px;
  }
}

.p-under__surfaceTable {
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, auto);
  border-top: 1px solid #cecece;
  border-left: 1px solid #cecece;
}

@media screen and (max-width: 767px) {
  .p-under__surfaceTable {
    margin-top: 20px;
    display: block;
  }
}

.p-under__surfaceTable tr,
.p-under__surfaceTable tbody,
.p-under__surfaceTable thead,
.p-under__surfaceTable tfoot {
  display: contents;
}

.p-under__surfaceTable th,
.p-under__surfaceTable td {
  display: block;
  border-bottom: 1px solid #cecece;
  border-right: 1px solid #cecece;
}

.p-under__surfaceTable thead th {
  background: #547699;
  color: #ffffff;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-under__surfaceTable thead {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-under__surfaceTable tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-under__surfaceTable tbody th {
  background: #e9f0f7;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-under__surfaceTable tbody th {
    padding: 16px;
    font-size: 18px;
  }
}

.p-under__surfaceTable tbody td {
  font-size: 24px;
  line-height: 1.6666666667;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

@media screen and (max-width: 767px) {
  .p-under__surfaceTable tbody td {
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
    padding-left: 115px;
  }

  .p-under__surfaceTable tbody td::before {
    color: #fff;
    font-size: 18px;
    content: attr(data-label);
    font-weight: bold;
    height: 100%;
    width: 115px;
    display: inline;
    background-color: #547699;
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-under__surfaceText {
  margin-top: 20px;
  text-align: center;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .p-under__surfaceText {
    font-size: 16px;
  }
}

.p-under__link {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-under__link {
    margin-top: 30px;
  }
}

.p-under__link a {
  display: inline-block;
  width: 310px;
  height: 50px;
  background: #1da1e6;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 999px;
}

@media screen and (max-width: 767px) {
  .p-under__link a {
    width: 288px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
  }
}

.p-under__link--aqua img {
  width: 408px;
}

@media screen and (max-width: 767px) {
  .p-under__link--aqua img {
    width: 227px;
  }
}

.p-under__link--seiho img {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .p-under__link--seiho img {
    width: 200px;
  }
}

.p-under__link--shiroari img {
  width: 440px;
}

@media screen and (max-width: 767px) {
  .p-under__link--shiroari img {
    width: 100%;
  }
}

.p-under__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

.p-top-fv {
  width: 100%;
  height: 100svh;
  position: relative;
  background: url(../img/img-fv.jpg) no-repeat center center / cover;
}

@media screen and (max-width: 767px) {
  .p-top-fv {
    height: calc(100svh - 60px);
    background-size: 100vw calc(100svh - 22.8vw - 360px);
    background-position: center top;
  }
}

.p-top-fv__shiroari {
  width: 10.4166666667vw;
  height: auto;
  aspect-ratio: 150/138;
  position: absolute;
  top: 12.8472222222vw;
  left: 35.625vw;
  position: absolute;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-top-fv__shiroari {
    width: 180px;
    top: calc(100svh - 450px - 22.8vw);
    left: unset;
    right: 20px;
  }
}

.p-top-fv__copy {
  font-size: 6.6666666667vw;
  color: #fff;
  font-weight: 700;
  line-height: calc(111 / 96);
  position: absolute;
  top: 15vw;
  left: 8vw;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-top-fv__copy {
    font-size: 40px;
    line-height: calc(71 / 47);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: calc(100svh - 330px - 22.8vw);
    padding-left: 20px;
    width: 100%;
  }
}

.p-top-fv__sub {
  display: inline-block;
  font-size: 1.8055555556vw;
  width: 36.3194444444vw;
  padding-top: 0.9722222222vw;
  padding-bottom: 0.9722222222vw;
  padding-left: 1.875vw;
  padding-right: 1.875vw;
  background: #123e71;
  border-radius: 999px;
  top: 39.7916666667vw;
  left: 8vw;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .p-top-fv__sub {
    top: calc(100svh - 130px - 22.8vw);
    left: 20px;
    width: calc(100% - 40px);
    height: 38px;
    font-size: 17px;
    line-height: 38px;
    text-align: center;
    padding: 0;
  }
}

.p-top-fv__blue {
  width: 50%;
  height: 100%;
  background: #1da1e6;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-top-fv__blue {
    width: 100%;
    top: calc(100svh - 360px - 22.8vw);
    height: 300px;
  }
}

.p-top-fv__muryou--pc {
  width: 14.9305555556vw;
  height: auto;
  aspect-ratio: 1;
  top: 65svh;
  left: 76.7361111111vw;
  position: absolute;
  z-index: 3;
}

.p-top-fv__muryou--pc:hover {
  rotate: 15deg;
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .p-top-fv__muryou--pc {
    display: none;
  }
}

.p-top-fv__muryou--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-top-fv__muryou--sp {
    display: block;
    width: 100vw;
    aspect-ratio: unset;
    top: calc(100svh - 60px - 22.8vw);
    left: 0;
    position: absolute;
    z-index: 3;
  }
}

.p-top-fv__bk {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-top-fv__bk {
    display: none;
  }
}

.p-top-fv__scrollWrap {
  position: absolute;
  bottom: 0;
  left: 2.4305555556vw;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-top-fv__scrollWrap {
    display: none;
  }
}

.p-top-fv__scroll {
  position: relative;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding-bottom: 65px;
  /* 線のアニメーション部分 */
  /* 線のアニメーション */
}

.p-top-fv__scroll p {
  font-family: "Exo 2", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.p-top-fv__scroll::before {
  -webkit-animation: scroll 2s infinite;
  animation: scroll 2s infinite;
  background-color: #113e71;
  bottom: 0;
  content: "";
  height: 50px;
  right: 0;
  left: -7px;
  margin: auto;
  position: absolute;
  width: 1px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

.p-top-fv__lead {
  font-size: min(16px, 1.1111111111vw);
  line-height: 2;
  margin-top: 3.4722222222vw;
}

@media screen and (max-width: 767px) {
  .p-top-fv__lead {
    margin-top: 3.7209302326vw;
    font-size: 3.7209302326vw;
  }
}

.p-top-fv__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 3.75vw;
  right: 8.3333333333vw;
}

@media screen and (max-width: 767px) {
  .p-top-fv__cta {
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    bottom: 6.976744186vw;
  }
}

@media screen and (max-width: 767px) {
  .p-top-fv__telWrap {
    display: none;
  }
}

.p-top-fv__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 16px;
}

.p-top-fv__tel img {
  width: 3.4722222222vw;
}

.p-top-fv__tel p {
  font-size: 2.7083333333vw;
  font-weight: 700;
}

.p-top-fv__time {
  font-size: max(0.8333333333vw, 12px);
  text-align: center;
  margin-top: 0.625vw;
}

.p-top-fv__free {
  font-size: 1.3888888889vw;
  font-weight: 700;
  position: relative;
  padding-left: 2.2222222222vw;
  padding-right: 2.2222222222vw;
  margin-top: 2.0833333333vw;
}

@media screen and (max-width: 767px) {
  .p-top-fv__free {
    font-size: 3.7209302326vw;
    padding-left: 6.976744186vw;
    padding-right: 6.976744186vw;
    padding-top: 0;
  }
}

.p-top-fv__free span {
  font-size: 1.8055555556vw;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-top-fv__free span {
    font-size: 4.8837209302vw;
  }
}

.p-top-fv__free::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 36px;
  height: 3px;
  background-color: #1da1e6;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.p-top-fv__free::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 36px;
  height: 3px;
  background-color: #1da1e6;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.p-top-fv__btn {
  display: inline-block;
  margin-top: 1.3888888889vw;
  font-size: 1.5277777778vw;
  color: #fff;
  font-weight: 700;
  padding: 2.0833333333vw 4.1666666667vw;
  background: #1da1e6;
  border-radius: 52px;
}

@media screen and (max-width: 767px) {
  .p-top-fv__btn {
    margin-top: 4.6511627907vw;
    font-size: 3.9534883721vw;
    padding: 5.8139534884vw 12.7906976744vw;
  }
}

.p-top-lead {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .p-top-lead {
    padding-top: 50px;
  }
}

.p-top-menu {
  padding-top: 136px;
}

@media screen and (max-width: 767px) {
  .p-top-menu {
    padding-top: 50px;
  }
}

.p-top-menu__wrappaer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-top-menu__wrappaer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: unset;
  }
}

.p-top-menu__wrappaer::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -78px;
  width: 315px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/reception-top-menu.png) no-repeat center center/cover;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-top-menu__wrappaer::after {
    width: 173px;
    bottom: 34px;
  }
}

.p-top-menu__wrappaer+.p-top-menu__wrappaer {
  margin-top: 150px;
}

@media screen and (max-width: 767px) {
  .p-top-menu__wrappaer+.p-top-menu__wrappaer {
    margin-top: 100px;
  }
}

.p-top-menu__wrappaer:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-top-menu__wrappaer:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-top-menu__wrappaer:nth-of-type(even)::after {
  right: unset;
  left: -78px;
}

.p-top-menu__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p-top-menu__body {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-top-menu__body .c-head {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.p-top-menu__lead {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .p-top-menu__lead {
    margin-top: 30px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.p-top-menu__btn {
  margin-top: 44px;
}

@media screen and (max-width: 767px) {
  .p-top-menu__btn {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-top: 30px;
  }
}

.p-top-menu__thumb {
  width: 50%;
  height: inherit;
}

@media screen and (max-width: 767px) {
  .p-top-menu__thumb {
    margin-top: 50px;
    width: 100%;
    height: auto;
    aspect-ratio: 340/250;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.p-top-menu__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.p-top-link {
  margin-top: 148px;
}

@media screen and (max-width: 767px) {
  .p-top-link {
    margin-top: 100px;
  }
}

.p-top-link__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-top-link__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.p-top-link__card {
  display: block;
  width: 50%;
  height: 347px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-top-link__card {
    width: 100%;
    height: 250px;
  }
}

.p-top-link__card:hover .p-top-link__img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  /* 拡大 */
}

.p-top-link__card::after {
  content: "";
  position: absolute;
  bottom: 31px;
  right: 25px;
  width: 36px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/arrow-top-link.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .p-top-link__card::after {
    width: 25px;
    bottom: 22px;
    right: 18px;
  }
}

.p-top-link__img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  /* ゆっくり変化させる */
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-link__content {
  position: absolute;
  top: 25px;
  left: 35px;
}

@media screen and (max-width: 767px) {
  .p-top-link__content {
    top: 20px;
    left: 25px;
  }
}

.p-top-link__content p:first-of-type {
  font-family: "Exo 2", sans-serif;
  font-size: 46px;
  font-weight: 500;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-top-link__content p:first-of-type {
    font-size: 31px;
  }
}

.p-top-link__content p:last-of-type {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-top-link__content p:last-of-type {
    font-size: 18px;
    margin-top: 10px;
  }
}

.p-service {
  padding-bottom: 100px;
}

.p-service--second {
  padding-top: 150px;
}

@media screen and (max-width: 767px) {
  .p-service--second {
    padding-top: 100px;
  }
}

.p-service__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .p-service__wrapper {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 50px;
  }
}

.p-service__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-service__link .c-btn {
    width: 100%;
  }
}

.p-service__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 792px;
}

.p-service__content p:first-of-type {
  font-size: 53px;
  font-weight: 700;
  line-height: 1.4339622642;
}

@media screen and (max-width: 767px) {
  .p-service__content p:first-of-type {
    font-size: 22px;
  }
}

.p-service__content p:last-of-type {
  line-height: 1.7777777778;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-service__content p:last-of-type {
    margin-top: 30px;
    font-size: 16px;
  }
}

.p-materials-message__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .p-materials-message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-materials-message__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-materials-message__content p:first-of-type {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .p-materials-message__content p:first-of-type {
    font-size: min(28px, 6.511627907vw);
  }
}

.p-materials-message__content p:last-of-type {
  margin-top: 70px;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-materials-message__content p:last-of-type {
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-materials-message__thumb {
  width: 50%;
  height: auto;
  aspect-ratio: 6/4;
}

@media screen and (max-width: 767px) {
  .p-materials-message__thumb {
    width: 100%;
    aspect-ratio: 370/246;
  }
}

.p-materials-message__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.p-materials-message__text {
  margin-top: 50px;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-materials-message__text {
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-materials-item {
  margin-top: 150px;
}

@media screen and (max-width: 767px) {
  .p-materials-item--first {
    margin-top: 70px;
  }
}

.p-materials-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 100px 60px;
  margin-top: 50px;
}

.p-materials-item__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc((100% - 60px) / 2);
}

@media screen and (max-width: 767px) {
  .p-materials-item__card {
    width: 100%;
  }
}

.p-materials-item__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 540/360;
  overflow: hidden;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .p-materials-item__thumb {
    aspect-ratio: 1;
  }
}

.p-materials-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  /* ゆっくり変化させる */
}

.p-marterials-item__name {
  text-align: center;
  margin-top: 30px;
  font-size: 26px;
  font-weight: 700;
}

.p-materials-item__text {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-materials-item__text {
    margin-bottom: 50px;
  }
}

.p-materials-item__btn {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .p-materials-item__btn {
    width: 100%;
  }

  .p-materials-item__btn .c-btn {
    width: 100%;
  }
}

.p-materials-history {
  margin-top: 180px;
}

@media screen and (max-width: 767px) {
  .p-materials-history {
    margin-top: 150px;
  }
}

.p-materials-history__lead {
  margin-top: 50px;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-materials-history__lead {
    font-size: 16px;
    line-height: 1.875;
  }
}

.p-materials-history__wrapper {
  margin-top: 50px;
}

.p-materials-history__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
}

.p-materials-history__list:not(:last-of-type) .p-materials-history__body {
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .p-materials-history__list:not(:last-of-type) .p-materials-history__body {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-materials-history__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: unset;
  }
}

.p-materials-history__year {
  width: 300px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-materials-history__year {
    width: auto;
    padding-left: 8vw;
  }
}

.p-materials-history__year::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 47px;
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid #1da1e6;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-materials-history__year::after {
    top: 11px;
    right: unset;
    left: 0;
    width: 18px;
  }
}

.p-materials-history__year p:first-of-type time {
  font-family: "Exo 2", sans-serif;
  font-size: 74px;
  line-height: 100px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-materials-history__year p:first-of-type time {
    font-size: 38px;
    line-height: 1;
  }
}

.p-materials-history__year p:last-of-type {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .p-materials-history__year p:last-of-type {
    font-size: 12px;
    margin-top: 10px;
  }
}

.p-materials-history__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-materials-history__body {
    width: 100%;
    padding-left: 8vw;
  }
}

.p-materials-history__body::after {
  content: "";
  position: absolute;
  top: 33px;
  left: -63px;
  width: 3px;
  height: 100%;
  background: #f0f0f0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-materials-history__body::after {
    top: -42px;
    left: 7px;
    height: calc(100% + 60px);
  }
}

.p-materials-history__body--last::after {
  display: none;
}

.p-materials-history__event {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .p-materials-history__event {
    font-size: 20px;
  }
}

.p-materials-history__detail {
  margin-top: 30px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-materials-history__detail {
    font-size: 16px;
    margin-top: 15px;
  }
}

.p-materials-history__img {
  margin-top: 30px;
  max-width: 460px;
  height: auto;
  aspect-ratio: 460/284;
}

.p-materials-history__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.p-materials-history__annotation {
  margin-top: 50px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-materials-history__annotation {
    padding-left: 8vw;
    font-size: 14px;
  }
}

.p-materials-works {
  margin-top: 150px;
}

.p-materials-works__head {
  margin-top: 50px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5384615385;
}

.p-materials-works__head br.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-materials-works__head br.is-sp {
    display: block;
  }
}

.p-materials-works__text {
  margin-top: 50px;
  text-align: center;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-materials-works__text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.875;
  }
}

.p-materials-works__wrapper {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px 23px;
}

@media screen and (max-width: 767px) {
  .p-materials-works__wrapper {
    margin-top: 50px;
  }
}

.p-materials-works__list {
  width: calc((100% - 46px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-materials-works__list {
    width: 100%;
  }
}

.p-materials-works__tag {
  display: inline-block;
  width: 140px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #113e71;
  border-radius: 999px;
}

@media screen and (max-width: 767px) {
  .p-materials-works__tag {
    font-size: 18px;
    width: 200px;
    height: 60px;
    line-height: 60px;
    padding: 0;
  }
}

.p-materials-works__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 385/270;
}

.p-materials-works__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .p-materials-works__thumb img {
    border-radius: 10px;
  }
}

.p-materials-works__name {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-materials-works__name {
    font-size: 24px;
  }
}

.p-materials-works__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

.p-materials-works__btn a {
  display: inline-block;
  width: 229px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #1da1e6;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.p-company-message {
  background: #ffffff;
  padding-top: 0;
  position: relative;
}

.p-company-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #f4f7fb;
  border-radius: 0 0 100px 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-company-message::before {
    border-radius: 0 0 50px 0;
  }
}

.p-company-message__text p {
  font-size: 16px;
  line-height: 1.875;
}

.p-company-message__text p+p {
  margin-top: 16px;
}

.p-company-message__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.p-company-message__name p:first-of-type {
  font-size: 12px;
}

.p-company-message__name p:last-of-type {
  font-size: 22px;
  font-weight: 700;
}

.p-company-profile {
  position: relative;
}

.p-company-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 100px 0 100px 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-company-profile::before {
    border-radius: 50px 0 50px 0;
  }
}

.p-company-profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid #cecece;
}

@media screen and (max-width: 767px) {
  .p-company-profile__row {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.p-company-profile__row:not(:first-of-type) {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-company-profile__row:not(:first-of-type) {
    padding-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-company-profile__row:first-of-type {
    border-top: 1px solid #cecece;
  }
}

.p-company-profile__row dt {
  width: 260px;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-company-profile__row dt {
    width: 100%;
  }
}

.p-company-profile__row dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6666666667;
}

@media screen and (max-width: 767px) {
  .p-company-profile__row dd {
    width: 100%;
    margin-top: 10px;
  }
}

.p-company-mission {
  background: #ffffff;
  position: relative;
}

.p-company-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #f4f7fb;
  border-radius: 100px 0 100px 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-company-mission::before {
    border-radius: 50px 0 50px 0;
  }
}

.p-compnay-mission__head {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6363636364;
}

@media screen and (max-width: 767px) {
  .p-compnay-mission__head {
    font-size: 22px;
  }
}

.p-company-mission__text {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-company-mission__text {
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-company-history {
  position: relative;
}

.p-company-history::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 100px 0 100px 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-company-history::before {
    border-radius: 50px 0 50px 0;
  }
}

.p-company-history__list {
  padding-top: 16px;
  padding-bottom: 50px;
  border-bottom: 1px solid #123e71;
}

.p-company-history__list:first-of-type {
  border-top: 1px solid #123e71;
}

.p-company-history__year time {
  font-family: "Exo 2", sans-serif;
  font-size: 54px;
  font-weight: 600;
  color: #1da1e6;
}

@media screen and (max-width: 767px) {
  .p-company-history__year time {
    font-size: 36px;
  }
}

.p-company-history__body {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 0;
}

.p-company-history__body+.p-company-history__body {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-company-history__body+.p-company-history__body {
    margin-top: 30px;
  }
}

.p-company-history__month {
  width: 260px;
  font-size: 15px;
  font-weight: 700;
  padding-top: 8px;
}

@media screen and (max-width: 767px) {
  .p-company-history__month {
    width: 100%;
    font-size: 16px;
  }
}

.p-company_history__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 18px;
  line-height: 1.6666666667;
}

@media screen and (max-width: 767px) {
  .p-company_history__content {
    width: 100%;
  }
}

.p-company-access {
  background: #ffffff;
  position: relative;
  padding-bottom: 0;
}

.p-company-access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #f4f7fb;
  border-radius: 100px 0 0 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-company-access::before {
    border-radius: 50px 0 0 0;
  }
}

.p-company-access__map {
  aspect-ratio: 800/450;
}

.p-company-access__map iframe {
  width: 100%;
  height: 100%;
}

.p-company-access__body {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .p-company-access__body {
    gap: 30px;
  }
}

.p-company-access__name {
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-company-access__name {
    font-size: min(24px, 5.5813953488vw);
  }
}

.p-company-access__address {
  margin-top: 20px;
  line-height: 1.6666666667;
}

@media screen and (max-width: 767px) {
  .p-company-access__address {
    font-size: 16px;
    line-height: 1.875;
  }
}

@media screen and (max-width: 767px) {
  .p-company-access__btn {
    width: 100%;
  }

  .p-company-access__btn .c-btn {
    width: 100%;
  }
}

.p-recruit__message {
  background: #ffffff;
  padding-top: 0;
  position: relative;
}

.p-recruit__message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #f4f7fb;
  border-radius: 0 0 100px 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-recruit__message::before {
    border-radius: 0 0 50px 0;
  }
}

.p-recruit__wrapper {
  position: relative;
  z-index: 3;
}

.p-recruit__messageText {
  margin-top: 50px;
}

.p-recruit__messageText p {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-recruit__messageText p {
    line-height: 1.75;
  }
}

.p-recruit__messageText p+p {
  margin-top: 32px;
}

.p-recruit__slide {
  margin-top: 100px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-recruit__slide {
    margin-top: 80px;
    gap: 20px;
  }
}

.p-recruit__slideList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-animation: infinity-scroll-right 60s infinite linear 0.5s both;
  animation: infinity-scroll-right 60s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  .p-recruit__slideList {
    gap: 20px;
    -webkit-animation: infinity-scroll-right 40s infinite linear 0.5s both;
    animation: infinity-scroll-right 40s infinite linear 0.5s both;
  }
}

.p-recruit__slideItem {
  width: 23.6111111111vw;
  height: auto;
  aspect-ratio: 340/500;
}

@media screen and (max-width: 767px) {
  .p-recruit__slideItem {
    width: 51.1627906977vw;
  }
}

.p-recruit__slideItem--wide {
  width: 34.7222222222vw;
  height: auto;
  aspect-ratio: 500/340;
}

@media screen and (max-width: 767px) {
  .p-recruit__slideItem--wide {
    width: 74.4186046512vw;
  }
}

.p-recruit__slideItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.p-recruit__details {
  position: relative;
}

.p-recruit__details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 100px 0 100px 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-recruit__details::before {
    border-radius: 50px 0 50px 0;
  }
}

.p-recruit__content {
  margin-top: 50px;
}

.p-recruit__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cecece;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  display: none;
}

.p-recruit__row:first-of-type {
  border-top: 1px solid #cecece;
}

.p-recruit__row dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  width: 220px;
  height: 115px;
  background: #f7f7f7;
  color: #113e71;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-recruit__row dt {
    width: 100%;
    padding: 20px 10px;
    height: auto;
  }
}

.p-recruit__row dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 30px 30px 90px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 115px;
  background: #ffffff;
  color: #113e71;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2222222222;
}

@media screen and (max-width: 767px) {
  .p-recruit__row dd {
    width: 100%;
    padding: 20px 10px;
    height: auto;
  }
}

.p-recruit__benefit {
  background: #ffffff;
  padding-bottom: 0;
  position: relative;
}

.p-recruit__benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #f4f7fb;
  border-radius: 100px 0 0 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-recruit__benefit::before {
    border-radius: 50px 0 0 0;
  }
}

.p-recruit__btn {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-recruit__btn {
    margin-top: 50px;
    width: 100%;
  }

  .p-recruit__btn .c-btn {
    width: 100%;
  }
}

.p-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.p-contact__row+.p-contact__row {
  margin-top: 50px;
}

.p-contact__row--company.active {
  display: none;
}

.p-contact__head {
  display: inline-block;
  padding-left: 52px;
  width: 325px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-contact__head {
    width: 100%;
  }
}

.p-contact__head label {
  display: inline-block;
  margin-top: 16px;
  color: #113e71;
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-contact__head label {
    font: 20px;
  }
}

.p-contact__head label span {
  font-size: 16px;
}

.p-contact__head::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 38px;
  height: 22px;
  display: grid;
  place-content: center;
  color: #f45959;
  font-size: 12px;
}

.p-contact__head--required::before {
  content: "必須";
  background: #ffffff;
  border: 1px solid #f45959;
  color: #f45959;
}

.p-contact__head--optional::before {
  content: "任意";
  background: #dbe2ed;
  border: 1px solid #dbe2ed;
  color: #113e71;
}

.p-contact__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p-contact__body {
    padding-left: 50px;
    width: 100%;
  }
}

.p-contact__body input[type="text"],
.p-contact__body input[type="tel"],
.p-contact__body input[type="email"],
.p-contact__body textarea {
  width: 100%;
  border-radius: 5px;
  font-size: 18px;
  color: #113e71;
  font-family: "BIZ UDGothic", sans-serif;
  border: 1px solid #113e71;
  padding: 20px;
}

.p-contact__body input[type="text"],
.p-contact__body input[type="tel"],
.p-contact__body input[type="email"] {
  height: 56px;
}

@media screen and (max-width: 767px) {

  .p-contact__body input[type="text"],
  .p-contact__body input[type="tel"],
  .p-contact__body input[type="email"] {
    height: 42px;
    padding: 10px;
  }
}

.p-contact__body textarea {
  resize: vertical;
  height: 300px;
}

@media screen and (max-width: 767px) {
  .p-contact__body textarea {
    height: 210px;
  }
}

.p-contact__body .wpcf7-form-control-wrap:has(input[type="file"]) {
  display: block;
}

.p-contact__body .wpcf7-not-valid-tip {
  margin-top: 0.5em;
  color: #f45959;
}

.p-contact__body--radio input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.p-contact__body--radio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-contact__body--radio .wpcf7-radio {
    gap: 30px;
  }
}

.p-contact__body--radio .wpcf7-list-item {
  margin: 0;
}

.p-contact__body--radio span.wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  color: #113e71;
}

@media screen and (max-width: 767px) {
  .p-contact__body--radio span.wpcf7-list-item-label {
    font-size: 16px;
  }
}

.p-contact__body--radio span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 2px solid #1da1e6;
  background: #ffffff;
  width: 28px;
  height: 28px;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .p-contact__body--radio span.wpcf7-list-item-label::before {
    width: 21px;
    height: 21px;
    border: 1px solid #1da1e6;
    margin-right: 12px;
  }
}

.p-contact__body--radio span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 18px;
  height: 18px;
  background-color: #1da1e6;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

@media screen and (max-width: 767px) {
  .p-contact__body--radio span.wpcf7-list-item-label::after {
    width: 14px;
    height: 14px;
    left: 3px;
  }
}

.p-contact__body--radio input[type="radio"]:checked+span.wpcf7-list-item-label::after {
  display: block;
}

.p-contact__body .wpcf7-file {
  padding-left: 0;
}

.p-contact__body input[type="file"]::-webkit-file-upload-button {
  background-color: #113e71;
  padding: 1em;
  margin-right: 1em;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-contact__body input[type="file"]::file-selector-button {
  background-color: #113e71;
  padding: 1em;
  margin-right: 1em;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-contact__body input[type="file"]::-webkit-file-upload-button:hover {
  opacity: 0.7;
}

.p-contact__body input[type="file"]::file-selector-button:hover {
  opacity: 0.7;
}

.p-contact__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 84px;
}

@media screen and (max-width: 767px) {
  .p-contact__check {
    margin-top: 50px;
  }
}

.p-contact__check .wpcf7-list-item {
  margin-left: 0;
}

.p-contact__check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 19px;
  font-family: "BIZ UDGothic", sans-serif;
  color: #113e71;
  cursor: pointer;
  position: relative;
  padding-left: 45px;
}

@media screen and (max-width: 767px) {
  .p-contact__check label {
    padding-left: 26px;
  }
}

.p-contact__check label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.p-contact__check label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #fff;
  border: 1px solid #113e71;
}

@media screen and (max-width: 767px) {
  .p-contact__check label .wpcf7-list-item-label::before {
    width: 16px;
    height: 16px;
  }
}

.p-contact__check label input[type="checkbox"]:checked~.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 55%;
  -webkit-transform: translateY(-75%) rotate(45deg);
  transform: translateY(-75%) rotate(45deg);
  width: 11px;
  height: 18px;
  border: solid #1da1e6;
  border-width: 0 3px 3px 0;
}

@media screen and (max-width: 767px) {
  .p-contact__check label input[type="checkbox"]:checked~.wpcf7-list-item-label::after {
    left: 6px;
    width: 5px;
    height: 12px;
  }
}

.p-contact__check label a {
  color: #1da1e6;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  font-size: 19px;
  font-family: "BIZ UDGothic", sans-serif;
  color: #113e71;
}

@media screen and (max-width: 767px) {
  .p-contact__check label a {
    font-size: 16px;
  }
}

.p-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-contact__btn {
    margin-top: 50px;
  }

  .p-contact__btn p {
    width: 100%;
  }
}

.p-contact__btn input[type="submit"] {
  display: inline-block;
  width: 320px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #1da1e6;
  border: 1px solid #1da1e6;
  border-radius: 10px;
  text-decoration: none;
  font-size: 24px;
  color: #ffffff;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-contact__btn input[type="submit"] {
    width: 100%;
    font-size: 18px;
    line-height: 1;
  }
}

.p-contact__btn input[type="submit"]:disabled {
  opacity: 0.5;
}

.p-contact__btn input[type="submit"]:not(:disabled):hover {
  background: #ffffff;
  color: #1da1e6;
}

.p-contact__btn .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-contact__row:has(input[name="radio-786"][value="採用について"]:checked)~.p-contact__row--company {
  display: none;
}

.p-contact__row:has(input[name="radio-786"][value="お見積もりのご依頼"]:checked)~.p-contact__row--file {
  display: none;
}

.p-privacy__lead {
  line-height: 1.7777777778;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-privacy__lead {
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-privacy__wrapper+.p-privacy__wrapper {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-privacy__wrapper+.p-privacy__wrapper {
    margin-top: 50px;
  }
}

.p-privacy__heading {
  height: 60px;
  line-height: 60px;
  padding-left: 53px;
  padding-right: 20px;
  background: #113e71;
  border-radius: 999px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-privacy__heading {
    font-size: min(18px, 4.1860465116vw);
    padding-left: 44px;
  }
}

.p-privacy__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-privacy__heading::before {
    left: 15px;
  }
}

.p-privacy__body {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-privacy__body {
    margin-top: 20px;
  }
}

.p-privacy__body p {
  font-size: 18px;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-privacy__body p {
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-privacy__body li {
  font-size: 18px;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-privacy__body li {
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-privacy__body li::before {
  content: "・";
}

.p-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 96px;
}

@media screen and (max-width: 767px) {
  .p-archive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
  }
}

.p-archive__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p-archive__main {
    width: 100%;
  }
}

.p-archive__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.p-archive__card {
  display: block;
  background: #ffffff;
  padding: 30px 60px 30px 30px;
  border-radius: 15px;
}

@media screen and (max-width: 767px) {
  .p-archive__card {
    padding: 15px 20px 20px;
  }
}

.p-archive__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-archive__meta {
    gap: 20px;
  }
}

.p-archive__date {
  font-family: "Exo 2", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1da1e6;
}

@media screen and (max-width: 767px) {
  .p-archive__date {
    font-size: 14px;
  }
}

.p-archive__tag {
  display: inline-block;
  width: 58px;
  height: 22px;
  background: #f45959;
  border-radius: 10px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  font-family: "Exo 2", sans-serif;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-archive__tag {
    width: 44px;
    height: 17px;
    line-height: 17px;
    font-size: 8px;
  }
}

.p-archive__title {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-archive__title {
    font-size: 20px;
  }
}

.p-archive__text {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-archive__text {
    margin-top: 20px;
  }
}

.p-archive__text p {
  font-size: 14px;
  line-height: 2.1428571429;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media screen and (max-width: 767px) {
  .p-archive__text p {
    -webkit-line-clamp: 2;
  }
}

.p-archive__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-top: 78px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-archive__pagination {
    margin-top: 50px;
  }
}

.p-archive__pagination a:hover {
  opacity: 0.7;
}

.p-archive__pagination .page-numbers {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: #ffffff;
  padding: 5px;
  font-size: 24px;
  font-weight: 500;
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-archive__pagination .page-numbers.current {
  background: #113e71;
  color: #ffffff;
}

.p-archive__pagination .page-numbers.prev,
.p-archive__pagination .page-numbers.next {
  position: relative;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  /* テキストを見えなくする */
  overflow: hidden;
}

.p-archive__pagination .page-numbers.prev::before,
.p-archive__pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 13px;
  height: auto;
  aspect-ratio: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-archive__pagination .page-numbers.prev::before {
  background-image: url("../img/arrow-prev.png");
}

.p-archive__pagination .page-numbers.next::before {
  background-image: url("../img/arrow-next.png");
}

.p-archive__aside {
  width: 330px;
}

@media screen and (max-width: 767px) {
  .p-archive__aside {
    width: 100%;
  }
}

.p-archive__asideHead {
  font-size: 20px;
  font-weight: 700;
}

.p-archive__year {
  margin-top: 20px;
}

.p-archive__year li a {
  display: block;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px 20px 20px 60px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}

.p-archive__year li a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 27px;
  width: 13px;
  height: auto;
  aspect-ratio: 1.0833333333;
  background: url(../img/arrow-year.png) no-repeat center center/cover;
}

.p-single {
  padding-top: 100px;
  position: relative;
}

.p-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 100px 0 0 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-single::before {
    border-radius: 50px 0 0 0;
  }
}

.p-single .l-inner {
  position: relative;
  z-index: 2;
}

.p-single::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 0;
  right: 0;
  width: 100vw;
  background: #ffffff;
  height: 200px;
  z-index: -1;
}

.p-single__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 96px;
}

@media screen and (max-width: 767px) {
  .p-single__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
  }
}

.p-single__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p-single__main {
    width: 100%;
  }
}

.p-single__content h2,
.p-single__content h3,
.p-single__content h4,
.p-single__content h5 {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {

  .p-single__content h2,
  .p-single__content h3,
  .p-single__content h4,
  .p-single__content h5 {
    margin-top: 40px;
  }
}

.p-single__content h2 {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 30px;
  padding-left: 50px;
  border-bottom: 1px solid #707070;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-single__content h2 {
    font-size: 22px;
    padding-left: 28px;
    padding-bottom: 10px;
  }
}

.p-single__content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid #1da1e6;
}

@media screen and (max-width: 767px) {
  .p-single__content h2::before {
    width: 23px;
    border: 8px solid #1da1e6;
  }
}

.p-single__content h3 {
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-single__content h3 {
    font-size: 20px;
  }
}

.p-single__content h4 {
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-single__content h4 {
    font-size: 18px;
  }
}

.p-single__content p {
  line-height: 1.7777777778;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-single__content p {
    font-size: 16px;
  }
}

.p-single__content a {
  color: #1da1e6;
  text-decoration: underline;
  font-weight: 500;
}

.p-single__content a:hover {
  opacity: 0.5;
}

.p-single__content figure {
  margin-top: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-single__content figure {
    margin-bottom: 30px;
  }
}

.p-single__content figure img {
  border-radius: 10px;
}

.p-single__content p,
.p-single__content ul,
.p-single__content ol {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {

  .p-single__content p,
  .p-single__content ul,
  .p-single__content ol {
    margin-top: 20px;
  }
}

.p-single__content ul li {
  padding-left: 12px;
}

.p-single__content ol {
  list-style-type: decimal !important;
}

.p-single__content ol li {
  padding-left: 22px;
  position: relative;
  counter-increment: number;
}

.p-single__content ol li::before {
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-single__content ol li::before {
    top: -3px;
  }
}

.p-single__content li {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}

.p-single__content li+li {
  margin-top: 4px;
}

.p-single__content ul li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 4px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #113e71;
}

.p-single__content h2:first-child,
.p-single__content p:first-child,
.p-single__content figure:first-child {
  margin-top: 0;
}

.p-single__more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 40px;
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .p-single__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-single__more a {
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-single__more a {
    font-size: 17px;
  }
}

.p-single__prev {
  grid-area: 1/1/2/2;
}

@media screen and (max-width: 767px) {
  .p-single__prev {
    margin-right: 50px;
  }
}

.p-single__prev a {
  padding-left: 50px;
  position: relative;
}

.p-single__prev a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 36px;
  height: auto;
  aspect-ratio: 37/36;
  background: url(../img/arrow-single-prev.png) no-repeat center center/cover;
}

.p-single__home {
  grid-area: 1/2/2/3;
  text-align: center;
}

.p-single__next {
  grid-area: 1/3/2/4;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-single__next {
    margin-left: 54px;
  }
}

.p-single__next a {
  padding-right: 50px;
  position: relative;
}

.p-single__next a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 36px;
  height: auto;
  aspect-ratio: 37/36;
  background: url(../img/arrow-single-next.png) no-repeat center center/cover;
}

.p-single__aside {
  width: 330px;
}

@media screen and (max-width: 767px) {
  .p-single__aside {
    width: 100%;
  }
}

.p-single__asideHead {
  font-size: 20px;
  font-weight: 700;
}

.p-single__year {
  margin-top: 20px;
}

.p-single__year li a {
  display: block;
  background: #f4f7fb;
  border-radius: 15px;
  padding: 20px 20px 20px 60px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}

.p-single__year li a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 27px;
  width: 13px;
  height: auto;
  aspect-ratio: 1.0833333333;
  background: url(../img/arrow-year.png) no-repeat center center/cover;
}

.p-404 p {
  line-height: 1.7777777778;
}

.p-404__btn {
  margin-top: 50px;
}

@media screen and (max-width: 519px) {
  .u-hidden--sp {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .u-hidden--pc {
    display: none;
  }
}

.test {
  color: #295282;
  font-size: 5rem;
  position: relative;
  padding: 100px 200px;
  font-weight: 700;
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

::-ms-input-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

.image {
  background-image: url(image@1x.png);
}

.p-recruit-stop__row dt {
  font-size: 18px;
  line-height: 1.7777777778;
}

@media screen and (max-width: 767px) {
  .p-recruit-stop__row dt {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-menu__wrappaer .c-btn {
    width: 100%;
  }

  .p-top-lead .c-lead br {
    display: none;
  }
}