@charset "UTF-8";
body{
  -webkit-text-size-adjust: 100%;
}
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}
.d-flex{
  display: block;
}
.m-top40{
  margin-top: 40px;
}
.m-bottom20{
  margin-bottom: 20px;
}
.p-right40,.p-action__item{
  padding-right: 0px;
  font-size: 15px;
  line-height: 1.8666666667;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .d-flex{
    display: flex;
  }
  .p-right40{
    padding-right: 40px;
  }
}
/*
@include perfect_vw(1200, 320, 60, 14, font-size);
*/
/*
  @include lineHeightCrop(1.75);
*/
[data-fade] {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.5s ease, opacity 0.25s ease;
}
[data-fade].is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

[data-ballon] {
  opacity: 0;
  transform: scale(-100%);
  transition: transform 0.5s ease, opacity 0.25s ease;
}
[data-ballon].is-show {
  animation-name: ballonAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ballonAnime {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  25% {
    opacity: 1;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

html.is-fixed {
  overflow: hidden;
}

body {
  background-color: #FFF;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: 100vw;
  position: relative;
  overflow-x: hidden;
}

img {
  border-style: none;
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}
img [data-objectfit=cover] {
  -o-object-fit: cover;
     object-fit: cover;
}

a,
button {
  text-decoration: none;
  transition: all 0.25s ease;
}
a:hover, a:active,
button:hover,
button:active {
  outline-width: 0;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
  }
}
.l-article {
  width: 100%;
}

.l-main {
  padding-top: 64px;
}
@media screen and (min-width: 1024px) {
  .l-main {
    padding-top: 72px;
  }
}

.l-container {
  width: 100%;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-container {
    max-width: 79.0629575403vw;
  }
}
@media screen and (min-width: 1366px) {
  .l-container {
    max-width: 1080px;
  }
}
@media screen and (min-width: 1024px) {
  .l-container.-md {
    max-width: 720px;
  }
}
@media screen and (min-width: 1024px) {
  .l-container.-lg {
    max-width: 840px;
  }
}
@media screen and (min-width: 1024px) {
  .l-container.-left {
    margin: 0;
    margin-right: auto;
  }
}

.l-section__title {
  background: #333;
  padding: 105px 0 50px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .l-section__title {
    padding: 165px 0 100px;
    font-size: 40px;
  }
}
.l-section__title.-md {
  font-size: 28px;
  line-height: 1.3571428571;
  padding: 88px 0 32px;
}
@media screen and (min-width: 1024px) {
  .l-section__title.-md {
    font-size: 32px;
    line-height: 1.35;
    padding: 148px 0 56px;
  }
}
.l-section__heading {
  padding: 96px 0 32px;
}
@media screen and (min-width: 1024px) {
  .l-section__heading {
    padding: 165px 0 100px;
  }
}
.l-sectionHeading__title {
  margin: 0 auto 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5454545455;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__title {
    font-size: 32px;
    line-height: 1.4375;
  }
}
.l-sectionHeading__text {
  margin: 0 auto 32px;
  font-size: 16px;
}
.l-sectionHeading__tag {
  margin: 12px auto 32px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__tag {
    margin-top: 16px;
  }
}
.l-sectionHeading__tag span {
  border: 1px solid;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 7px 10px;
  min-width: 27px;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__tag span {
    padding: 3px 14px 6px 14px;
    min-width: 56px;
  }
}
.l-sectionHeading__tag.-sm {
  font-size: 11px;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__tag.-sm {
    font-size: 13px;
  }
}
.l-sectionHeading__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.l-sectionHeading__info .l-sectionHeading__tag {
  margin: 0;
}
.l-sectionHeading__date {
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__date {
    font-size: 14px;
  }
}
.l-sectionHeading__share {
  margin-top: 24px;
  margin-bottom: 43px;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__share {
    margin-top: 24px;
    margin-bottom: 51px;
  }
}
.l-sectionHeading__shareList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
}
.l-sectionHeading__shareItem {
  width: 100%;
  max-width: calc((100% - 39px) / 4);
  font-size: 9px;
  color: #FFF;
  border-radius: 4px;
  height: 52px;
  text-align: center;
  padding-top: auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__shareItem {
    max-width: calc((100% - 36px) / 4);
    gap: 12px;
    height: 44px;
  }
}
.l-sectionHeading__shareItem a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__shareItem a {
    flex-direction: row;
    padding-top: 0;
    justify-content: center;
  }
}
.l-sectionHeading__shareItem .button-caption {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__shareItem .button-caption {
    font-size: 14px;
    margin-top: 0;
  }
}
.l-sectionHeading__shareItem .social-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__shareItem .social-icon {
    margin-right: 2px;
  }
}
.l-sectionHeading__shareItem .social-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.l-sectionHeading__shareItem .social-icon.-x::before {
  background: url(../img/common/icon_x.svg) no-repeat center/contain;
}
.l-sectionHeading__shareItem .social-icon.-facebook::before {
  background: url(../img/common/icon_facebook.svg) no-repeat center/contain;
}
.l-sectionHeading__shareItem .social-icon.-hatena::before {
  background: url(../img/common/icon_hatena.svg) no-repeat center/contain;
}
.l-sectionHeading__shareItem .social-icon.-line::before {
  background: url(../img/common/icon_line.svg) no-repeat center/contain;
}
@media screen and (min-width: 1024px) {
  .l-sectionHeading__shareItem .social-icon.-line {
    margin-right: 6px;
  }
}
.l-sectionHeading__shareItem.-x {
  background: #393939;
}
.l-sectionHeading__shareItem.-x::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  background: #000000;
  z-index: -1;
}
.l-sectionHeading__shareItem.-facebook {
  background: #0866FF;
}
.l-sectionHeading__shareItem.-facebook::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  background: #0050D3;
  z-index: -1;
}
.l-sectionHeading__shareItem.-hatena {
  background: #22A4DE;
}
.l-sectionHeading__shareItem.-hatena::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  background: #1C8DBE;
  z-index: -1;
}
.l-sectionHeading__shareItem.-line {
  background: #37C354;
}
.l-sectionHeading__shareItem.-line::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  background: #2EA747;
  z-index: -1;
}
.l-sectionContent__mainImg {
  margin: 0 auto 32px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-sectionContent__mainImg {
    max-width: 840px;
    margin-bottom: 40px;
  }
}
.l-sectionContent__movie {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .l-sectionContent__movie {
    margin-bottom: 48px;
  }
}

.l-pagination {
  margin: 64px auto;
}
@media screen and (min-width: 1024px) {
  .l-pagination {
    margin: 80px auto;
  }
}
.l-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.l-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 38px;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.l-pagination__link.is-current {
  border: 1px solid #333;
  border-radius: 4px;
}
.l-pagination__link.is-prev:hover, .l-pagination__link.is-next:hover {
  opacity: 0.8;
}
.l-pagination__link.is-prev {
  background: #0b4f8d;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.l-pagination__link.is-prev:before {
  background: transparent url(../img/common/icon_triangle.svg) no-repeat center;
  background-size: contain;
  content: "";
  width: 10px;
  height: 9px;
  transform: rotate(-180deg);
}
.l-pagination__link.is-next {
  background: #0b4f8d;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}
.l-pagination__link.is-next:before {
  background: transparent url(../img/common/icon_triangle.svg) no-repeat center;
  background-size: contain;
  content: "";
  width: 10px;
  height: 9px;
}

.l-content__heading {
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .l-content__heading {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 28px;
    line-height: 1.3571428571;
  }
}
.l-content__heading:before {
  background: #2FAECB;
  border-radius: 4px;
  content: "";
  width: 6px;
  height: 20px;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .l-content__heading:before {
    width: 8px;
    height: 31px;
    top: 5px;
    left: 0;
  }
}
.l-content__heading.-noDecoration {
  padding-left: 0;
}
.l-content__heading.-noDecoration:before {
  display: none;
}
.l-content__heading.-en {
  font-family: "Hanken Grotesk", sans-serif;
}

.l-header {
  height: 65px;
  background-color: #FFF;
  position: fixed;
  width: 100%;
  z-index: 10000;
  top: 0;
  left: 0;
}
.l-header.-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header.-pc {
    display: block;
    height: 72px;
    background-color: #FFF;
    position: fixed;
    z-index: 100;
    width: 100%;
  }
}
.l-header.-sp {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 20;
}
@media screen and (min-width: 1024px) {
  .l-header.-sp {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }
  .l-header__inner:has(.l-navigation__item.-open:hover) .l-header__bg {
    transform: scaleY(1);
    opacity: 1;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__bg {
    background: rgba(0, 0, 0, 0.16);
    content: "";
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    z-index: 3;
    transform-origin: center;
    transition: all 0.2s ease;
    pointer-events: none;
    opacity: 0;
  }
}
.l-header__container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  padding: 17px 16px;
}
@media screen and (min-width: 1024px) {
  .l-header__container {
    max-width: 980px;
    padding: 0;
  }
}
@media screen and (min-width: 1366px) {
  .l-header__container {
    max-width: 1120px;
  }
}
.l-header__logo {
  position: absolute;
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    position: static;
    padding: 18px 32px 20px;
  }
}
.l-header__logo img {
  display: block;
  height: 28px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo img {
    height: 34px;
  }
}
.l-header__link {
  font-weight: 400;
  font-size: 18px;
  background: #333;
  color: #FFF;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 88px;
  text-align: center;
  z-index: 99;
}
.l-header__link a {
  padding: 28px 16px 34px;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-header__link a {
    padding: 24px 39px 27px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__link {
    position: static;
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
    height: auto;
    width: auto;
    transition: all 0.25s ease;
  }
  .l-header__link:hover {
    opacity: 0.8;
  }
}

/* ハンバーガーメニュー　🍔
-------------------------------------*/
.l-header__hamburger {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 6px;
  right: 5px;
}
@media screen and (min-width: 1024px) {
  .l-header__hamburger {
    position: relative;
    top: auto;
    left: auto;
  }
}

.l-header__hamburgerLine {
  position: absolute;
  top: 20px;
  transition: all 0.15s ease;
  background-color: #333;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.l-header__hamburgerLine:nth-of-type(2) {
  top: 28px;
}

.l-header__hamburger.-show .l-header__hamburgerLine:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 26px;
}
@media screen and (min-width: 1024px) {
  .l-header__hamburger.-show .l-header__hamburgerLine:nth-of-type(1) {
    top: 22px;
  }
}
.l-header__hamburger.-show .l-header__hamburgerLine:nth-of-type(2) {
  transform: translateX(-50%) rotate(-45deg);
  top: 26px;
}
@media screen and (min-width: 1024px) {
  .l-header__hamburger.-show .l-header__hamburgerLine:nth-of-type(2) {
    top: 22px;
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header .l-navigation {
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #CCC;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation {
    border-top: none;
    opacity: 1;
    visibility: visible;
    display: inline-block;
    padding-top: 0;
    display: flex;
    margin-top: -1px;
  }
}
.l-header .l-navigation.-show {
  width: 100%;
  height: 100vh;
  opacity: 1;
  visibility: visible;
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  top: 65px;
  left: 0;
  width: 100%;
  background: #FFF;
}
.l-header .l-navigation.-show:has(.l-navigation__list.active) {
  height: 100vh;
}
.l-header .l-navigation.-show::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: -1;
}
.l-header .l-navigation__title {
  font-size: 12px;
  font-weight: 300;
  padding-left: 65px;
  margin-bottom: 37px;
}
.l-header .l-navigation__list {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0;
  left: 0;
  width: 200vw;
  transition: transform 0.3s;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__list {
    flex-direction: row;
    height: auto;
    padding-left: 0;
    gap: 32px;
    margin-top: 24px;
    margin-right: 40px;
    width: auto;
  }
}
.l-header .l-navigation__list.active {
  transform: translateX(-100vw);
}
.l-header .l-navigation__item {
  font-weight: 700;
  font-size: 15px;
  width: 100vw;
  position: relative;
}
.l-header .l-navigation__item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2FAECB;
  bottom: 0px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__item:hover::after {
    transform: scale(1, 1);
  }
}
.l-header .l-navigation__item:last-child {
  margin-bottom: 250px;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__item {
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    border-bottom: none;
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__item.-open {
    position: relative;
  }
  .l-header .l-navigation__item.-open::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 4px;
    background: #2FAECB;
    bottom: 0px;
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: center top;
  }
  .l-header .l-navigation__item.-open:hover::after {
    transform: scale(1, 1);
  }
  .l-header .l-navigation__item.-open:hover .l-navigation__child {
    transform: scaleY(1);
    opacity: 1;
    background: #FFF;
  }
}
.l-header .l-navigation__link {
  padding: 19px 32px;
  display: block;
  position: relative;
  border-bottom: 1px solid #CCC;
}
.l-header .l-navigation__link::before {
  display: block;
  content: "";
  background: url(../img/common/icon_newtab.svg) no-repeat center/cover;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__link {
    padding: 0;
    display: inline-block;
    border-bottom: none;
  }
  .l-header .l-navigation__link::before {
    content: none;
  }
  .l-header .l-navigation__link:hover {
    cursor: pointer;
  }
}
.l-header .l-navigation__link.-arrow::before {
  display: block;
  content: "";
  background: url(../img/common/icon_arrow_black.svg) no-repeat center/cover;
  width: 6px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
.l-header .l-navigation__link.-mega {
  padding: 0;
}
.l-header .l-navigation__link.-mega::before {
  content: none;
}
.l-header .l-navigation__link.-accordion::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 33px;
  width: 10px;
  height: 2px;
  background-color: #333;
  transform: rotate(90deg);
  transition: transform 0.2s;
  border-radius: 1px;
}
.l-header .l-navigation__link.-accordion::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 33px;
  width: 10px;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
}
.l-header .l-navigation__link.-open::before {
  transform: rotate(0deg);
}
.l-header .l-navigation__link.-sm {
  padding: 19px 16px;
}
.l-header .l-navigation__inner {
  background: #FFF;
  padding: 24px 26px 100px;
  min-height: 100vh;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__inner {
    display: flex;
    min-height: auto;
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 0 66px;
  }
}
@media screen and (min-width: 1366px) {
  .l-header .l-navigation__inner {
    max-width: 1120px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__child {
    z-index: 100;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    border-top: 1px solid #CCC;
    box-shadow: 12px 12px 16px rgba(179, 185, 190, 0.16);
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top;
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__childWrap {
    max-width: 1080px;
    margin: 64px auto 106px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__childList {
    display: flex;
    gap: 0 30px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
}
.l-header .l-navigation__childItem {
  background: #F2F2F2;
  border-bottom: 1px solid #CCC;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__childItem {
    position: relative;
    background: #FFF;
    width: calc((100% - 60px) / 3);
    font-size: 16px;
    font-weight: 700;
    padding: 17px 34px 21px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    margin-top: -1px;
  }
  .l-header .l-navigation__childItem::before {
    right: 24px;
  }
  .l-header .l-navigation__childItem:hover {
    color: #0B768D;
  }
}
.l-header .l-navigation__childLink {
  padding: 18px 48px 19px;
  position: relative;
  display: block;
  transition: all 0.25s ease;
}
.l-header .l-navigation__childLink::before {
  display: block;
  content: "";
  background: url(../img/common/icon_arrow_black.svg) no-repeat center/cover;
  width: 7px;
  height: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  transition: all 0.25s ease;
}
.l-header .l-navigation__childLink:hover::before {
  background: url(../img/common/icon_arrow_blue_right.svg) no-repeat center/cover;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__childLink {
    position: static;
    padding: 0;
  }
}
.l-header .l-navigation__childLink .-sm {
  padding: 19px 16px;
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__childLink .-sm {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__childTop {
    position: relative;
  }
  .l-header .l-navigation__childTop .c-link__icon.-arrow {
    right: -42px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-navigation__childTitle {
    font-size: 20px;
    font-weight: 700;
  }
}
.l-header .l-navigationMega__child {
  display: block;
  position: absolute;
  left: 0;
  top: -126px;
  transform: translateX(100vw);
  visibility: hidden;
  width: 100%;
}
.l-header .l-navigationMega__child.active {
  visibility: visible;
  height: auto;
  overflow-y: scroll;
}
.l-header .l-navigationMega__childItem {
  background: #0B768D;
  color: #FFF;
  padding: 12px 30px 15px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
.l-header .l-navigationMega__childItem::before {
  content: "";
  background: url(../img/common/icon_arrow_white_bottom.svg) no-repeat center/contain;
  width: 10px;
  height: 6px;
  position: absolute;
  top: 49%;
  left: 15px;
  transform: translateY(-50%) rotate(90deg);
}

.l-footer {
  border-top: 1px solid #CCC;
  position: relative;
}
.l-footer__container {
  padding: 54px 28px 24px;
}
@media screen and (min-width: 1024px) {
  .l-footer__container {
    padding: 80px 0 16px;
    max-width: 1024px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1366px) {
  .l-footer__container {
    max-width: 1209px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__wrap {
    display: flex;
    gap: 120px;
  }
}
@media screen and (min-width: 1366px) {
  .l-footer__wrap {
    gap: 125px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__nav {
    display: flex;
    gap: 56px;
    order: 2;
  }
}
.l-footerNav__item {
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .l-footerNav__item {
    margin-bottom: 24px;
  }
}
.l-footerNav__itemLink {
  font-size: 18px;
  font-weight: 700;
}
.l-footerNav__itemLink:hover {
  color: #0B768D;
  text-decoration: underline;
}
.l-footerNav__itemLink.-thin {
  font-size: 14px;
  font-weight: 400;
}
.l-footerNav__item.-md {
  margin-bottom: 8px;
}
.l-footerNav__innerItem {
  margin-top: 6px;
}
@media screen and (min-width: 1024px) {
  .l-footerNav__innerItem {
    margin-top: 8px;
  }
}
.l-footerNav__innerItemLink {
  font-size: 14px;
  font-weight: 400;
}
.l-footerNav__innerItemLink:hover {
  color: #0B768D;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .l-footerNav__list {
    width: 200px;
  }
}
.l-footerNav__list.-md {
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .l-footerNav__list.-md {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-footerNav__contentBlock {
    width: 200px;
  }
}
.l-footer__sns {
  margin-top: 80px;
}
.l-footer__snsList {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
}
@media screen and (min-width: 1024px) {
  .l-footer__snsList {
    gap: 24px;
  }
}
.l-footer__snsItem {
  font-size: 15px;
  font-weight: 400;
  position: relative;
  width: calc((100% - 30px) / 2);
}
@media screen and (min-width: 1024px) {
  .l-footer__snsItem {
    width: 100%;
  }
}
.l-footer__snsLink {
  padding-left: 38px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .l-footer__snsLink {
    width: 100%;
  }
}
.l-footer__snsLink::before {
  display: block;
  content: "";
  width: 29px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-footer__snsLink.-x::before {
  background: url(../img/common/icon_x.svg) no-repeat center/cover;
}
.l-footer__snsLink.-facebook::before {
  background: url(../img/common/icon_facebook.svg) no-repeat center/cover;
}
.l-footer__snsLink.-insta::before {
  background: url(../img/common/icon_instagram.svg) no-repeat center/cover;
}
.l-footer__snsLink.-youtube::before {
  background: url(../img/common/icon_youtube.svg) no-repeat center/cover;
}
.l-footer__company {
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .l-footer__company {
    margin-top: 0;
    order: 1;
    width: 300px;
  }
}
.l-footerLogo__title img {
  width: 252px;
}
.l-footer__informationList dl {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .l-footer__informationList dl {
    margin-top: 40px;
  }
}
.l-footer__informationList dt {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .l-footer__informationList dt {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
.l-footer__informationList dd {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6363636364;
}
@media screen and (min-width: 1024px) {
  .l-footer__informationList dd {
    font-size: 13px;
    line-height: 1.6923076923;
  }
}
.l-footer__mark {
  display: flex;
  gap: 33px;
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .l-footer__mark {
    gap: 24px;
    margin-top: 40px;
  }
}
.l-footer__mark img {
  height: 64px;
}
.l-footerBottom__box {
  margin-top: 46px;
}
@media screen and (min-width: 1024px) {
  .l-footerBottom__box {
    margin-top: 104px;
  }
}
.l-footerBottom__copyRight {
  font-size: 11px;
  font-weight: 400;
  color: #808080;
}
.l-footer__goTop {
  background: #0B4F8D;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  top: 44px;
  right: 28px;
}
.l-footer__goTop::before {
  display: block;
  content: "";
  background: url(../img/common/icon_arrow_white.svg) no-repeat center/cover;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (min-width: 1024px) {
  .l-footer__goTop {
    top: 75px;
    right: 40px;
  }
}

.l-page__heading {
  position: relative;
  margin-top: -97px;
}
@media screen and (min-width: 1024px) {
  .l-page__heading {
    margin-top: -114px;
    padding-left: 32px;
  }
}
@media screen and (min-width: 1366px) {
  .l-page__heading {
    padding-left: 0;
  }
}
.l-page__heading::before {
  content: "";
  background: url(../img/common/bg_heading_lower_sp.png) no-repeat center/cover;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .l-page__heading::before {
    height: 648px;
    background: url(../img/common/bg_heading_lower_pc.png) no-repeat center/cover;
  }
}
.l-page__headingWrapper {
  padding: 131px 0 96px 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.l-page__headingWrapper .c-heading__title.-en {
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .l-page__headingWrapper {
    padding: 176px 0 80px;
  }
}
.l-page__heading.-second::before {
  content: "";
  background: url(../img/common/bg_heading_lower_second_sp.png) no-repeat center/cover;
  height: 230px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .l-page__heading.-second::before {
    height: 648px;
    background: url(../img/common/bg_heading_lower_second_pc.png) no-repeat center/cover;
  }
}
.l-page__title {
  padding: 121px 0 96px 16px;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-page__title {
    padding: 176px 0 80px;
  }
}
.l-page__title.-sm {
  padding: 121px 0 40px 16px;
}
@media screen and (min-width: 1024px) {
  .l-page__title.-sm {
    padding: 176px 0 80px;
  }
}
.l-page__content {
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .l-page__content {
    margin-bottom: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .l-page__contentWrapper {
    padding-left: 32px;
  }
}
@media screen and (min-width: 1366px) {
  .l-page__contentWrapper {
    padding-left: 0;
  }
}
.l-page__lead {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .l-page__lead {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 24px;
  }
}

.l-modal {
  width: 100%;
  height: 100%;
  z-index: 10001;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.l-modal.is-show {
  visibility: visible;
  opacity: 1;
  animation: fadeInVisible 0.25s forwards;
  pointer-events: auto;
}
.l-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 22px;
  background-color: rgba(0, 0, 0, 0.16);
}
.l-modal__content {
  overflow: auto;
  width: calc(100% - 32px);
  max-width: 920px;
  max-height: calc(100vh - 140px);
  height: auto;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF;
  border-radius: 16px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .l-modal__content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.l-modal__inner {
  padding: 48px 24px;
}
@media screen and (min-width: 1024px) {
  .l-modal__inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 48px;
  }
}
.l-modal__close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 16px;
  width: 66px;
  height: 21px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .l-modal__close {
    top: 16px;
    right: 20px;
    font-size: 16px;
  }
}
.l-modal__close::after {
  content: "";
  width: 11px;
  height: 11px;
  background: url(../img/common/icon_close.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .l-modal__close::after {
    width: 13px;
    height: 13px;
  }
}
.l-modal__img {
  border-radius: 16px;
  overflow: hidden;
  max-width: 200px;
  width: 68%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-modal__img {
    max-width: 352px;
    width: 43%;
  }
}
.l-modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .l-modal__detail {
    max-width: 424px;
    width: 52%;
  }
}
.l-modalDetail__heading {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.l-modalDetail__position {
  font-size: 15px;
  line-height: 1.4666666667;
  order: 1;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-modalDetail__position {
    font-size: 16px;
    line-height: 1.375;
    order: 0;
    margin-top: 8px;
    text-align: left;
  }
}
.l-modalDetail__name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-modalDetail__name {
    font-size: 24px;
    line-height: 1.1666666667;
    text-align: left;
  }
}
.l-modalDetail__text {
  font-size: 15px;
  line-height: 1.8666666667;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .l-modalDetail__text {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 20px;
  }
}

.l-wellBeing {
  background: #F5F9FA;
  padding: 46px 0 64px;
}
.l-wellBeing__wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .l-wellBeing__wrapper {
    padding: 0;
  }
}
.l-wellBeing__title {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .l-wellBeing__title {
    font-size: 28px;
  }
}
.l-wellBeing__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .l-wellBeing__list {
    flex-direction: row;
    margin-top: 46px;
    gap: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .l-wellBeing__link:hover .l-wellBeing__itemTitle {
    color: #0B768D;
  }
}
.l-wellBeing__item {
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .l-wellBeing__item {
    width: calc((100% - 120px) / 3);
  }
}
.l-wellBeing__item img {
  width: 100%;
}
.l-wellBeing__itemTitle {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.l-slick__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.l-slickControls__arrow {
  cursor: pointer;
  position: relative;
}
.l-slickControls__arrow.is-prev {
  background: #0b4f8d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
}
.l-slickControls__arrow.is-prev:before {
  background: transparent url(../img/common/icon_arrow_white.svg) no-repeat center;
  background-size: contain;
  content: "";
  width: 10px;
  height: 9px;
  transform: rotate(-180deg);
  margin-right: 2px;
}
.l-slickControls__arrow.is-next {
  background: #0b4f8d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
  order: 999;
}
.l-slickControls__arrow.is-next:before {
  background: transparent url(../img/common/icon_arrow_white.svg) no-repeat center;
  background-size: contain;
  content: "";
  width: 10px;
  height: 9px;
  margin-left: 2px;
}
.l-slickControls__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 8px;
}
@media screen and (min-width: 1024px) {
  .l-slickControls__dots {
    gap: 16px;
  }
}
.l-slickControls__dots li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-slickControls__dots .slick-active button {
  background: #0B4F8D;
}
.l-slickControls__dots button {
  background: #CED0D2;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  text-indent: -9999px;
}

@media screen and (min-width: 1024px) {
  .c-br.-sp {
    display: none;
  }
}
.c-br.-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-br.-pc {
    display: inline-block;
  }
}

.c-hidden.-sp {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-hidden.-sp {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .c-hidden.-pc {
    display: none;
  }
}

.c-btn__round {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  height: 48px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .c-btn__round {
    height: 60px;
    transition: all 0.25s ease;
  }
}
.c-btn__round .btnText {
  font-size: 15px;
  font-weight: 500;
  line-height: 14px;
}
@media screen and (min-width: 1024px) {
  .c-btn__round .btnText {
    font-size: 16px;
    margin-top: -5px;
    margin-left: 10px;
  }
}
.c-btn__round.-type_primary {
  padding-left: 12px;
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-type_primary {
    padding-left: 0;
  }
}
.c-btn__round.-type_primary.-color_primary {
  background-color: #0B768D;
  color: #FFF;
  margin:8px auto;
}
.c-btn__round.-type_primary.-color_primary:hover {
  background: #FFF;
  color: #0B768D;
  border: 2px solid #0B768D;
  transition: unset;
  opacity: 1;
}
.c-btn__round.-type_secondary.-color_primary {
  background-color: #FFF;
  border: 2px solid #0B768D;
  color: #0B768D;
}
.c-btn__round.-type_secondary.-color_primary:hover {
  background: #0B768D;
  color: #FFF;
  transition: unset;
  opacity: 1;
}
.c-btn__round.-md {
  width: 184px;
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-md {
    width: 216px;
  }
}
.c-btn__round.-lg {
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-lg {
    width: 216px;
  }
}
.c-btn__round.-icon_right {
  position: relative;
  padding-right: 0.8rem;
}
.c-btn__round.-icon_right.-arrow::before {
  content: "";
  background: url(../img/common/icon_arrow_white.svg) no-repeat center/contain;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 51%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-icon_right.-arrow::before {
    right: 20px;
  }
}
.c-btn__round.-icon_right.-arrow:hover::before {
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
  right: 18px;
}
.c-btn__round.-icon_right.-arrow_blue::before {
  content: "";
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 51%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-icon_right.-arrow_blue::before {
    right: 20px;
  }
}
.c-btn__round.-icon_right.-arrow_blue:hover::before {
  background: url(../img/common/icon_arrow_white.svg) no-repeat center/contain;
  right: 20px;
}
.c-btn__round.-icon_right.-arrow_anchor::before {
  content: "";
  background: url(../img/common/icon_arrow_white_bottom.svg) no-repeat center/contain;
  width: 7px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-icon_right.-arrow_anchor::before {
    width: 10px;
    height: 12px;
    right: 22px;
  }
}
.c-btn__round.-icon_right.-arrow_anchor:hover::before {
  background: url(../img/common/icon_arrow_blue_bottom.svg) no-repeat center/contain;
  right: 13px;
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-icon_right.-arrow_anchor:hover::before {
    right: 20px;
  }
}
.c-btn__round.-icon_right.-download::before {
  content: "";
  background: url(../img/common/icon_download_white.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-icon_right.-download::before {
    width: 15px;
    height: 15px;
    top: 49%;
    right: 22px;
  }
}
.c-btn__round.-icon_right.-download:hover::before {
  background: url(../img/common/icon_download_blue.svg) no-repeat center/contain;
  right: 20px;
}
.c-btn__round.-icon_right.-external_white::before {
  content: "";
  background: url(../img/common/icon_external_white.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-icon_right.-external_white::before {
    width: 15px;
    height: 15px;
    top: 49%;
    right: 22px;
  }
}
.c-btn__round.-icon_right.-external_white:hover::before {
  background: url(../img/common/icon_external_blue.svg) no-repeat center/contain;
}
.c-btn__round.-icon_right.-external_blue::before {
  content: "";
  background: url(../img/common/icon_external_blue.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-btn__round.-icon_right.-external_blue::before {
    width: 15px;
    height: 15px;
    top: 49%;
    right: 22px;
  }
}
.c-btn__round.-icon_right.-external_blue:hover::before {
  background: url(../img/common/icon_external_white.svg) no-repeat center/contain;
}
.c-btn__round.-center {
  margin: 0 auto;
}
.c-btn__link {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 2.375em;
  display: block;
}
.c-btn__link .btnText {
  font-size: 15px;
  font-weight: 700;
  color: #0B768D;
}
@media screen and (min-width: 1024px) {
  .c-btn__link .btnText {
    font-size: 16px;
  }
}
.c-btn__link:hover {
  transition: all 0.5s;
  text-decoration: underline;
  text-decoration-color: #0B768D;
}

.c-heading {
  width: -moz-fit-content;
  width: fit-content;
}
.c-heading.-en {
  font-size: 56px;
  font-weight: 600;
  font-family: "Hanken Grotesk", sans-serif;
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-heading.-en {
    font-size: 88px;
  }
}
.c-heading.-ja {
  font-size: 11px;
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-heading.-ja {
    font-size: 13px;
    margin-top: -5px;
  }
}
.c-heading.-sm .c-heading.-en {
  font-size: 40px;
}
@media screen and (min-width: 1024px) {
  .c-heading.-sm .c-heading.-en {
    font-size: 56px;
  }
}
.c-heading.-sm .c-heading.-ja {
  margin-top: 2px;
}
@media screen and (min-width: 1024px) {
  .c-heading.-sm .c-heading.-ja {
    margin-top: 5px;
  }
}
.c-heading__title.-en {
  font-size: 12px;
  font-family: "Hanken Grotesk", sans-serif;
  padding: 0 12px;
  position: relative;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .c-heading__title.-en {
    font-size: 16px;
    padding: 0 16px;
  }
}
.c-heading__title.-en::after, .c-heading__title.-en::before {
  position: absolute;
  content: "";
  font-size: 12px;
  font-weight: 700;
  font-family: "Hanken Grotesk", sans-serif;
  top: 45%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-heading__title.-en::after, .c-heading__title.-en::before {
    font-size: 16px;
    top: 39%;
  }
}
.c-heading__title.-en::after {
  content: "]";
  right: 0;
}
.c-heading__title.-en::before {
  content: "[";
  left: 0;
}
.c-heading__title.-page {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5357142857;
}
@media screen and (min-width: 1024px) {
  .c-heading__title.-page {
    font-size: 40px;
    line-height: 1.6;
  }
}
.c-heading__title.-page .-sp_small {
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .c-heading__title.-page .-sp_small {
    font-size: 40px;
  }
}
.c-heading__title.-md {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4166666667;
}
@media screen and (min-width: 1024px) {
  .c-heading__title.-md {
    font-size: 28px;
    line-height: 1.5714285714;
  }
}

.c-link {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 30px;
  color: #0B768D;
  font-size: 14px;
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
}
@media screen and (min-width: 1024px) {
  .c-link span:not(.c-link__icon):after {
    content: "\a";
    white-space: pre;
  }
}
.c-link:hover {
  opacity: 1;
  color: #0B768D;
}
.c-link:hover .c-link__icon {
  width: 21px;
  height: 21px;
}
.c-link:hover .c-link__icon:before {
  opacity: 0;
  visibility: none;
}
.c-link__icon {
  display: inline-block;
}
.c-link__icon.-arrow {
  width: 30px;
  height: 30px;
  background: #0B768D;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-link__icon.-arrow::before {
  display: block;
  content: "";
  background: url(../img/common/icon_arrow_white.svg) no-repeat center/cover;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  transform: translate(-50%, -50%);
}

.c-anchor__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 1024px) {
  .c-anchor__nav {
    gap: 40px;
    padding: 0;
  }
}
.c-anchorNav__btn {
  max-width: 108px;
  width: 32%;
}
@media screen and (min-width: 1024px) {
  .c-anchorNav__btn {
    max-width: 240px;
    width: 32%;
  }
}
.c-anchorNav__btn .c-btn__round {
  width: 100%;
  height: 42px;
}
@media screen and (min-width: 1024px) {
  .c-anchorNav__btn .c-btn__round {
    height: 60px;
  }
}
.c-anchorNav__btn .c-btn__round .btnText {
  font-size: 11px;
}
@media screen and (min-width: 1024px) {
  .c-anchorNav__btn .c-btn__round .btnText {
    font-size: 16px;
  }
}
.c-anchorNav__btn.-md {
  max-width: 167px;
  width: 49%;
}
@media screen and (min-width: 1024px) {
  .c-anchorNav__btn.-md {
    max-width: 256px;
    width: 32%;
  }
}
.c-anchorNav__btn.-md .c-btn__round {
  width: 100%;
  height: 56px;
}
@media screen and (min-width: 1024px) {
  .c-anchorNav__btn.-md .c-btn__round {
    height: 60px;
  }
}
.c-anchorNav__btn.-md .c-btn__round .btnText {
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .c-anchorNav__btn.-md .c-btn__round .btnText {
    font-size: 16px;
  }
}
.c-anchorNav__btn.-md .c-btn__round.-spCenter {
  padding-right: 0;
}
@media screen and (min-width: 1024px) {
  .c-anchorNav__btn.-md .c-btn__round.-spCenter {
    padding-right: 0.8em;
  }
}
.c-anchorNav__btn.-md .c-btn__round.-spCenter .btnText {
  text-align: center;
}

.c-paragraph {
  font-size: 15px;
  line-height: 1.7333333333;
}
@media screen and (min-width: 1024px) {
  .c-paragraph {
    font-size: 16px;
    line-height: 1.625;
  }
}
.c-paragraph.-second {
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .c-paragraph.-second {
    line-height: 2;
  }
}

.c-breadcrumb {
  padding: 8px 24px 10px 16px;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb {
    padding: 12px 32px 14px;
  }
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  gap: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__list {
    overflow-x: auto;
    gap: 32px;
  }
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.c-breadcrumb__item:not(:last-of-type) {
  position: relative;
}
.c-breadcrumb__item:not(:last-of-type)::after {
  content: "";
  background: url(../img/common/icon_arrow_black.svg) no-repeat center/contain;
  width: 4px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__item:not(:last-of-type)::after {
    width: 4px;
    height: 7px;
    right: -16px;
  }
}
.c-breadcrumb__item:first-of-type .c-breadcrumb__link {
  background: url(../img/common/icon_home.svg) no-repeat center/contain;
  width: 11px;
  height: 12px;
}
.c-breadcrumb__link {
  font-size: 10px;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__link {
    font-size: 12px;
  }
}
.c-breadcrumb__link.is-current {
  color: #B3B3B3;
}
.c-breadcrumb__link.-ellipsis span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 67px;
}
@media screen and (min-width: 560px) {
  .c-breadcrumb__link.-ellipsis span {
    text-overflow: initial;
    max-width: none;
  }
}

.p-home {
  overflow-x: hidden;
}
.p-home .l-main {
  overflow-x: hidden;
}

/* kv
-------------------------------------*/
.p-home__kv {
  position: relative;
}

.p-homeKv__wrapper {
  padding: 138px 28px 0;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__wrapper {
    max-width: 1080px;
    padding: 138px 0 0;
    margin: 0 auto;
  }
}
.p-homeKv__title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2727272727;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__title {
    font-size: 64px;
    line-height: 1.2777777778;
  }
}
.p-homeKv__subTitle {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.016em;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__subTitle {
    margin-top: 32px;
    font-size: 28px;
  }
}
.p-homeKv__scroll {
  position: relative;
  height: 140px;
  margin-top: 72px;
  margin-bottom: 94px;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__scroll {
    margin-top: 3px;
    margin-left: auto;
    width: 14px;
    margin-bottom: 50px;
  }
}
.p-homeKv__scrollText {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 9px;
  writing-mode: vertical-rl;
}
.p-homeKv__scroll::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 1px;
  height: 77px;
  background: #333;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
.p-homeKv__deco {
  position: absolute;
  z-index: -1;
}
.p-homeKv__deco--1 {
  top: -65px;
  left: -36px;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__deco--1 {
    top: -36px;
    left: auto;
    right: -67px;
  }
}
.p-homeKv__deco--1 img {
  width: 100%;
  min-width: 793px;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__deco--1 img {
    max-width: 911px;
  }
}
.p-homeKv__deco--2 {
  top: 209px;
  left: -302px;
  transform: rotate(3deg);
}
@media screen and (min-width: 1024px) {
  .p-homeKv__deco--2 {
    transform: rotate(0);
    left: -700px;
    top: 216px;
  }
}
.p-homeKv__deco--2 img {
  width: 100%;
  max-width: 550px;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__deco--2 img {
    max-width: 1135px;
    width: 1135px;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 75px;
    opacity: 0;
  }
  30% {
    height: 45px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 130px;
    opacity: 0;
  }
}
/* about us
-------------------------------------*/
.p-home__aboutus {
  padding-top: 48px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-home__aboutus {
    padding-top: 285px;
  }
}

@media screen and (min-width: 1366px) {
  .p-homeAboutus__wrapper {
    max-width: 1366px;
    margin: 0 auto;
  }
}
.p-homeAboutus__deco {
  position: absolute;
  z-index: -1;
  top: -144px;
  left: -256px;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__deco {
    top: -110px;
    left: -336px;
  }
}
.p-homeAboutus__deco img {
  width: 100%;
  min-width: 934px;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__deco img {
    min-width: 2079px;
  }
}
.p-homeAboutus__title {
  font-size: 28px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__title {
    margin-top: 30px;
    margin-bottom: 45px;
    font-size: 48px;
    line-height: 1.875;
  }
}
.p-homeAboutus__title::first-line {
  font-size: 18px;
  line-height: 25px;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__title::first-line {
    font-size: 48px;
    line-height: normal;
  }
}
.p-homeAboutus__textArea {
  padding: 0 28px;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__textArea {
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-homeAboutus__paragraph {
  font-size: 15px;
  line-height: 2.2666666667;
  font-weight: 400;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__paragraph {
    font-size: 18px;
    line-height: 3.1111111111;
    letter-spacing: 0.02em;
    margin-bottom: 65px;
  }
}
.p-homeAboutus__paragraph strong {
  font-weight: 700;
}
.p-homeAboutus__img {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__img {
    max-width: 600px;
    margin-top: -154px;
    margin-left: auto;
  }
}
.p-homeAboutus__img img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-homeAboutus__img img {
    max-width: 600px;
  }
}

/* service
-------------------------------------*/
.p-home__service {
  padding-top: 80px;
  position: relative;
}
.p-home__service::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 0;
  width: 100%;
  height: 140%;
  background: linear-gradient(rgba(245, 249, 250, 0) 0%, rgba(245, 249, 250, 0.62) 10%, rgba(245, 249, 250, 0.82) 74%, rgb(255, 255, 255));
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .p-home__service::before {
    content: "";
    position: absolute;
    top: -42%;
    left: 0;
    width: 100%;
    height: 190%;
    background: linear-gradient(rgba(245, 249, 250, 0) 0%, rgba(245, 249, 250, 0.62) 10%, rgba(245, 249, 250, 0.82) 74%, rgb(255, 255, 255));
    z-index: -2;
  }
}
@media screen and (min-width: 1024px) {
  .p-home__service {
    padding-top: 118px;
  }
}
@media screen and (min-width: 1024px) {
  .p-home__service .c-heading {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
}

.p-homeService__deco {
  position: absolute;
  min-width: 984px;
  z-index: -1;
  top: -24px;
  left: -276px;
}
@media screen and (min-width: 1024px) {
  .p-homeService__deco {
    min-width: 2048px;
    top: 32px;
    left: -319px;
  }
}
.p-homeService__deco img {
  width: 100%;
}
.p-homeService__wrapper {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeService__wrapper {
    padding: 0;
  }
}
@media screen and (min-width: 1366px) {
  .p-homeService__wrapper {
    max-width: 1366px;
    margin: 0 auto;
  }
}
.p-homeService__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-homeService__list {
    margin-top: 40px;
    gap: 160px;
  }
}
.p-homeService__cont .c-btn__link {
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .p-homeService__cont {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeService__cont img {
    width: 48.0234260615%;
    max-width: 656px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeService__cont:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeService__contText {
    width: 35.6515373353%;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeService__contText img {
    width: 412px;
    margin-bottom: 56px;
  }
}
.p-homeService__contTitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4166666667;
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeService__contTitle {
    font-size: 28px;
    line-height: 1.5714285714;
    text-align: left;
    margin-top: 0;
  }
}
.p-homeService__contParagraph {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7333333333;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeService__contParagraph {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 24px;
    margin-bottom: 40px;
  }
}

/* company
-------------------------------------*/
.p-home__company {
  padding-top: 124px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-home__company {
    padding-top: 426px;
  }
}

.p-homeCompany__deco {
  position: absolute;
  min-width: 904px;
  z-index: -1;
  top: 13px;
  left: -295px;
}
@media screen and (min-width: 1024px) {
  .p-homeCompany__deco {
    min-width: 2185px;
    top: -204px;
    left: -426px;
  }
}
.p-homeCompany__deco img {
  width: 100%;
}
.p-homeCompany__heading {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeCompany__heading {
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-homeCompany__img {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 32px;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .p-homeCompany__img {
    position: relative;
    height: 480px;
    overflow: hidden;
  }
  .p-homeCompany__img::before {
    content: "";
    background: url(../img/home/img_company_pc.png) no-repeat center/cover;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    transition: all 0.3s;
  }
  .p-homeCompany__img:hover::before {
    transform: scale(1.1);
  }
  .p-homeCompany__img:hover .c-btn__round {
    visibility: visible;
    display: block;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    background: #FFF;
    color: #0B768D;
    border: 2px solid #0B768D;
    transition: unset;
    opacity: 1;
  }
  .p-homeCompany__img:hover .c-btn__round::before {
    background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
    right: 18px;
  }
  .p-homeCompany__img:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 70, 80, 0.6);
    transition: all 0.3s;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeCompany__img .c-btn__round {
    visibility: hidden;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s;
  }
}
.p-homeCompany__img img {
  transition: all 0.3s;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-homeCompany__img {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

/* news
-------------------------------------*/
.p-home__news {
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .p-home__news {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 78px;
  }
}

.p-homeNews__wrapper {
  padding: 0 28px;
}
@media screen and (min-width: 1024px) {
  .p-homeNews__wrapper {
    padding: 0;
  }
}
.p-homeNews__wrapper .c-btn__link {
  margin-top: 24px;
  margin-left: auto;
  margin-right: -12px;
}
@media screen and (min-width: 1024px) {
  .p-homeNews__wrapper .c-btn__link {
    margin-top: 32px;
    margin-right: 0;
  }
}
.p-homeNews__list {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-homeNews__list {
    margin-top: 40px;
  }
}
.p-homeNews__item {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  margin-top: -1px;
  position: relative;
}
.p-homeNews__itemTitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-homeNews__itemTitle {
    font-size: 18px;
    width: 28.7%;
  }
}
.p-homeNews__itemText {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6363636364;
}
@media screen and (min-width: 1024px) {
  .p-homeNews__itemText {
    font-size: 13px;
    line-height: 1.6923076923;
    width: 71%;
  }
}
.p-homeNews__itemLink {
  padding: 16px 39px 20px 16px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-homeNews__itemLink {
    padding: 33px 101px 38px 24px;
    display: flex;
  }
  .p-homeNews__itemLink:hover {
    opacity: 0.6;
  }
}
.p-homeNews__itemLink::after {
  display: block;
  content: "";
  background: url(../img/common/icon_arrow_black.svg) no-repeat center/cover;
  width: 6px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-homeNews__itemLink::after {
    right: 24px;
  }
}

/* recruit
-------------------------------------*/
.p-home__recruit {
  padding-top: 76px;
  position: relative;
}
.p-home__recruit .c-btn__round {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-home__recruit .c-btn__round {
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-home__recruit {
    padding-top: 185px;
  }
}

.p-homeRecruit__deco {
  position: absolute;
  min-width: 845px;
  z-index: -1;
  top: 24px;
  left: -236px;
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__deco {
    min-width: 2175px;
    top: -442px;
    left: -320px;
  }
}
.p-homeRecruit__deco img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__wrapper {
    display: flex;
    align-items: stretch;
    gap: 128px;
  }
}
.p-homeRecruit__heading {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__heading {
    padding: 0;
  }
}
.p-homeRecruit__img {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__img {
    display: none;
  }
}
.p-homeRecruit__img img {
  width: 100%;
}
.p-homeRecruit__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4166666667;
  padding: 0 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__title {
    font-size: 28px;
    margin-bottom: 24px;
    margin-top: 56px;
    padding: 0;
  }
}
.p-homeRecruit__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
  padding: 0 16px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__text {
    font-size: 16px;
    line-height: 1.875;
    padding: 0;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__imgArea {
    margin-top: 95px;
    width: 42.4597364568%;
    max-width: 520px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeRecruit__imgArea img {
    width: 100%;
  }
}

/* others
-------------------------------------*/
.p-home__others {
  padding-top: 72px;
  margin-bottom: 96px;
}
@media screen and (min-width: 1024px) {
  .p-home__others {
    max-width: 1080px;
    margin: 0 auto 143px;
    padding-top: 160px;
  }
}

.p-homeOthers__wrapper {
  padding: 0 28px;
}
@media screen and (min-width: 1024px) {
  .p-homeOthers__wrapper {
    padding: 0;
  }
}
.p-homeOthers__list {
  margin-top: 40px;
  display: flex;
  gap: 52px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-homeOthers__list {
    flex-direction: row;
    gap: 60px;
    margin-top: 47px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeOthers__item {
    width: calc((100% - 120px) / 3);
    transition: all 0.25s ease;
  }
  .p-homeOthers__item:hover {
    opacity: 0.7;
  }
  .p-homeOthers__item:hover .c-btn__link {
    text-decoration: underline;
    text-decoration-color: #0B768D;
  }
}
.p-homeOthers__item img {
  width: 100%;
}
.p-homeOthers__itemTitle {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-homeOthers__itemTitle {
    margin-bottom: 12px;
  }
}
.p-homeOthers__itemText {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7333333333;
  padding-bottom: 18px;
  border-bottom: 1px solid #333;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeOthers__itemText {
    min-height: 105px;
    padding-bottom: 0;
  }
}
.p-homeOthers__item .c-btn__link {
  margin-left: auto;
}

.p-history__anchorNav {
  max-width: 800px;
  position: sticky;
  top: 65px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .p-history__anchorNav {
    top: 72px;
    left: 0;
  }
}
.p-history__anchorNav.is-sticky {
  background-color: #fff;
}
.p-history__listWrapper {
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-history__listWrapper {
    margin-top: 40px;
  }
}
.p-history__list {
  padding-top: 40px;
}
.p-history__list:nth-of-type(n+2) {
  border-top: 1px solid #B3B3B3;
  margin-top: 48px;
}
.p-history__year {
  font-size: 28px;
  line-height: 1.1428571429;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-history__year {
    font-size: 40px;
    line-height: 1.5;
  }
}
.p-history__detail {
  margin-top: 32px;
}
.p-historyDetail__month {
  font-size: 17px;
  line-height: 1.5294117647;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-historyDetail__month {
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-historyDetail__paragraph {
  margin-top: 8px;
}

.p-partner__anchorNav {
  max-width: 848px;
}
.p-partner__anchorNav.-technology {
  margin-top: 32px;
  gap: 9px;
  padding: 0;
  justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .p-partner__anchorNav.-technology {
    margin-top: 56px;
    max-width: 792px;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-partner__anchorNav.-technology .c-anchorNav__btn.-md {
    max-width: 248px;
    width: 32%;
  }
}
.p-partner__anchorNav.-technology .c-anchorNav__btn.-md .c-btn__round {
  height: auto;
  min-height: 52px;
}
.p-partner__anchorNav.-technology .c-anchorNav__btn.-md .c-btn__round .btnText {
  line-height: 1.3;
  padding-right: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-partner__anchorNav.-technology .c-anchorNav__btn.-md .c-btn__round .btnText {
    font-size: 14px;
    padding-right: 0;
    margin-top: -2px;
  }
}
.p-partner__listWrapper {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .p-partner__listWrapper {
    margin-top: 64px;
  }
}
.p-partner__listWrapper:nth-of-type(n+2) {
  margin-top: 88px;
}
@media screen and (min-width: 1024px) {
  .p-partner__listWrapper:nth-of-type(n+2) {
    margin-top: 120px;
  }
}
.p-partner__listSection {
  margin-top: 64px;
}
.p-partner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 0;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-partner__list {
    flex-direction: row;
    gap: 56px 60px;
  }
}
.p-partner__item {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-partner__item {
    display: flex;
    max-width: calc((100% - 120px) / 3);
  }
}
.p-partnerItem__link {
  border: 1px solid #18768D;
  border-radius: 16px;
  padding: 24px;
  display: block;
  background-color: #FFF;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .p-partnerItem__link {
    padding: 29px 29px 23px;
  }
}
.p-partnerItem__link:hover {
  background-color: #EEF5F6;
}
.p-partnerItem__img {
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  width: 100%;
  height: auto;
  background-color: #FFF;
  overflow: hidden;
  box-sizing: content-box;
}
.p-partnerItem__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-partnerItem__name {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 600;
}
.p-partnerItem__tagArea {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.p-partnerItem__tag {
  border-radius: 6px;
  background-color: #D0F3FB;
  padding: 4px 10px 6px;
  font-size: 13px;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .p-partnerItem__tag {
    padding: 4px 10px 8px;
    font-size: 15px;
  }
}
.p-partnerItem__case {
  margin-top: 24px;
  padding-left: 1em;
}
.p-partnerItem__caseText {
  position: relative;
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-partnerItem__caseText {
    font-size: 14px;
    line-height: 1.5714285714;
  }
}
.p-partnerItem__caseText::before {
  content: "・";
  position: absolute;
  left: -1em;
}
.p-partner__contact {
  background-color: #2FAECB;
  padding: 48px 16px 56px;
}
@media screen and (min-width: 1024px) {
  .p-partner__contact {
    padding: 64px 16px 72px;
  }
}
.p-partnerContact__title {
  text-align: center;
  color: #FFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-partnerContact__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.5714285714;
  }
}
.p-partnerContact__btn {
  margin: 24px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .p-partnerContact__btn {
    margin: 32px auto 0;
  }
}

.p-member__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 16px;
}
@media screen and (min-width: 1024px) {
  .p-member__list {
    flex-direction: row;
    gap: 56px 60px;
  }
}
.p-member__item {
  max-width: calc((100% - 16px) / 2);
}
@media screen and (min-width: 1024px) {
  .p-member__item {
    max-width: calc((100% - 120px) / 3);
  }
}
.p-memberItem__link {
  border: 1px solid #18768D;
  background-color: #FFF;
  border-radius: 16px;
  padding: 11px 11px 15px;
  display: block;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .p-memberItem__link {
    padding: 29px 29px 23px;
  }
}
.p-memberItem__link:hover {
  background-color: #EEF5F6;
}
.p-memberItem__img {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .p-memberItem__img {
    border-radius: 16px;
  }
}
.p-memberItem__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 140px;
  max-width: 140px;
}
@media screen and (min-width: 1024px) {
  .p-memberItem__img img {
    height: 260px;
    max-width: 260px;
  }
}
.p-memberItem__name {
  text-align: center;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-memberItem__name {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.2727272727;
  }
}
.p-memberItem__position {
  text-align: center;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4545454545;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .p-memberItem__position {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.625;
  }
}

.p-about .l-page__content {
  margin-top: -31px;
}
@media screen and (min-width: 1024px) {
  .p-about .l-page__content {
    margin-top: -6px;
  }
}
.p-about__head {
  padding: 0 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .p-about__head {
    max-width: 1080px;
    margin: 0 auto 32px;
    padding: 0;
  }
}
.p-about__head-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-about__head-en {
    font-size: 48px;
  }
}
.p-about__head-ja {
  font-size: 11px;
  font-weight: 400;
  margin-left: 12px;
}
@media screen and (min-width: 1024px) {
  .p-about__head-ja {
    font-size: 13px;
  }
}
.p-about__text {
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-about__text {
    line-height: 2.25;
  }
}

.p-about__message {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-about__message {
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
  }
}
.p-about__message .c-heading__title {
  margin-bottom: 14px;
}
@media screen and (min-width: 1024px) {
  .p-about__message .c-heading__title {
    margin-bottom: 12px;
  }
}
.p-about__messageName {
  margin-top: 9px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-about__messageName {
    margin-top: 10px;
    line-height: 1.8947368421;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__messageTextArea {
    width: 570px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__messageImage {
    width: 430px;
    margin-top: 68px;
  }
  .p-about__messageImage img {
    width: 100%;
  }
}

.p-about__movie {
  max-width: 1080px;
  margin: 44px auto 80px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-about__movie {
    margin: 80px auto 104px;
    padding: 0;
  }
}
.p-about__movieWrap {
  padding: 0 16px;
  margin-top: 26px;
}
@media screen and (min-width: 1024px) {
  .p-about__movieWrap {
    padding: 0;
    max-width: 720px;
    margin: 26px auto 104px;
  }
}
.p-about__movie .l-content__heading.-en {
  font-size: 28px;
}
@media screen and (min-width: 1024px) {
  .p-about__movie .l-content__heading.-en {
    font-size: 42px;
  }
}
.p-about__movie .l-content__heading.-en::before {
  top: 11px;
}
@media screen and (min-width: 1024px) {
  .p-about__movie .l-content__heading.-en::before {
    top: 11px;
  }
}

.p-about__ship {
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .p-about__ship {
    margin-top: 104px;
  }
}
.p-about__shipMv img {
  width: 100%;
}
.p-about__shipInner {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-about__shipInner {
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-about__shipTitle {
  font-size: 34px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-about__shipTitle {
    font-size: 48px;
    margin-top: 80px;
  }
}
.p-about__shipCont {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-about__shipCont {
    margin-top: 78px;
  }
}
.p-about__shipItem {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-about__shipItem {
    gap: 40px;
    margin-bottom: 48px;
  }
}
.p-about__shipItem:nth-child(3) .p-about__shipSquare::after {
  bottom: -48px;
}
@media screen and (min-width: 1024px) {
  .p-about__shipItem:nth-child(3) .p-about__shipSquare::after {
    bottom: -32px;
  }
}
.p-about__shipItem:last-child {
  margin-bottom: 0;
}
.p-about__shipItem:last-child .p-about__shipSquare::after {
  content: none;
}
.p-about__shipSquare {
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #2FAECB;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border: 2px solid #2FAECB;
  border-radius: 16px;
  max-width: 118px;
  width: 100%;
  height: 132px;
  line-height: 132px;
  display: block;
  position: relative;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .p-about__shipSquare {
    max-width: 300px;
    height: 90px;
    line-height: 89px;
    font-size: 18px;
    border-radius: 15px;
  }
}
.p-about__shipSquare::after {
  position: absolute;
  content: "";
  background: url(../img/about/icon_arrow_blue.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 15px;
}
@media screen and (min-width: 1024px) {
  .p-about__shipSquare::after {
    bottom: -32px;
    background-size: cover;
  }
}
.p-about__shipRight {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-about__shipRight {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    width: 100%;
    align-items: center;
  }
}
.p-about__shipRightTitle {
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-align: center;
  color: #FFF;
  background: #2FAECB;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 8px 0 9px;
  min-height: 38px;
  line-height: 1.3333333333;
}
@media screen and (min-width: 1024px) {
  .p-about__shipRightTitle {
    max-width: 300px;
    width: 100%;
    height: 90px;
    padding: 0;
    border-radius: 15px;
    line-height: 90px;
    font-size: 18px;
    place-items: center;
    margin-bottom: 0;
  }
}
.p-about__shipRightText {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .p-about__shipRightText {
    margin-top: -7px;
    font-size: 18px;
    width: 100%;
    line-height: 1.6666666667;
    letter-spacing: 0.02em;
  }
}

.p-access__section:nth-of-type(n+2) {
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .p-access__section:nth-of-type(n+2) {
    margin-top: 96px;
  }
}
.p-accessSection__textRow {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-accessSection__textRow {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
  }
}
.p-accessSection__textRow:nth-of-type(n+2) {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-accessSection__textRow:nth-of-type(n+2) {
    margin-top: 12px;
  }
}
.p-accessSection__term {
  width: 75px;
  font-size: 15px;
  line-height: 1.7333333333;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-accessSection__term {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-accessSection__detail {
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-accessSection__detail {
    margin-top: 0;
  }
}
.p-accessSection__map {
  max-width: 880px;
  width: 100%;
  height: 260px;
  position: relative;
  margin: 32px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-accessSection__map {
    width: 82%;
    height: 660px;
  }
}
.p-accessSection__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-accessSection__btn {
  max-width: 208px;
  height: 48px;
  margin: 32px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-accessSection__btn {
    max-width: 248px;
    height: 60px;
  }
}
.p-accessSection__btn .c-btn__round {
  width: 100%;
}
.p-accessSection__btn .c-btn__round .btnText {
  margin-left: -10px;
}
@media screen and (min-width: 1024px) {
  .p-accessSection__btn .c-btn__round .btnText {
    margin-left: 0;
  }
}

.p-company .l-page__headingWrapper {
  padding: 118px 0 96px 16px;
}
@media screen and (min-width: 1024px) {
  .p-company .l-page__headingWrapper {
    padding: 136px 0 80px;
  }
}
.p-company__listWrapper {
  margin-top: -59px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-company__listWrapper {
    padding: 0;
    max-width: 1080px;
    margin: -31px auto 0;
  }
}
.p-company__list {
  display: flex;
  flex-wrap: wrap;
  gap: 23px 15px;
}
@media screen and (min-width: 1024px) {
  .p-company__list {
    gap: 38px 60px;
  }
}
.p-company__item {
  width: calc((100% - 15px) / 2);
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  transition: all 0.25s ease;
}
@media screen and (min-width: 1024px) {
  .p-company__item {
    border-radius: 16px;
    width: calc((100% - 120px) / 3);
  }
  .p-company__item:hover {
    border: 1px solid #2FAECB;
    background: #EEF5F6 0 0 no-repeat padding-box;
  }
}
.p-companyItem__img img {
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 1024px) {
  .p-companyItem__img img {
    border-radius: 16px 16px 0 0;
  }
}
.p-companyItem__name {
  font-size: 15px;
  font-weight: 600;
  padding: 6px 12px 10px;
}
@media screen and (min-width: 1024px) {
  .p-companyItem__name {
    font-size: 18px;
    padding: 10px 20px 14px;
  }
}

.p-profile__wrapper {
  margin-top: -3px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-profile__wrapper {
    padding: 0;
    max-width: 720px;
    margin: 9px auto 0;
  }
}
.p-profile tr {
  padding: 32px 0 30px;
  display: block;
  border-bottom: 1px solid #B3B3B3;
}
@media screen and (min-width: 1024px) {
  .p-profile tr {
    padding: 36px 0;
  }
}
.p-profile tr:last-child {
  border-bottom: none;
  padding: 32px 0 0;
}
@media screen and (min-width: 1024px) {
  .p-profile tr:last-child {
    padding: 40px 0 0;
  }
}
.p-profile tr:first-child {
  padding: 0 0 28px;
}
@media screen and (min-width: 1024px) {
  .p-profile tr:first-child {
    padding: 0 0 39px;
  }
}
.p-profile th {
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 23px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-profile th {
    width: 23%;
    max-width: 157px;
    display: inline-block;
    margin-bottom: 0;
  }
}
.p-profile td {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-profile td {
    line-height: 1.79;
    display: inline-block;
    width: 77%;
    vertical-align: text-top;
  }
}
.p-profile__boxItem {
  margin-bottom: 17px;
}
@media screen and (min-width: 1024px) {
  .p-profile__boxItem {
    margin-bottom: 10px;
  }
}
.p-profile__boxItem:last-child {
  margin-bottom: 0;
}
.p-profile__boxItem span {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-profile__boxItem span {
    font-size: 16px;
  }
}
.p-profile__notice {
  font-size: 13px;
  line-height: 1.6923076923;
  margin-top: -8px;
}
@media screen and (min-width: 1024px) {
  .p-profile__notice {
    margin-top: 0;
  }
}

.p-policy__wrapper {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-policy__wrapper {
    padding: 0;
    max-width: 1080px;
    margin: -14px auto 0;
  }
}
.p-policy__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (min-width: 1024px) {
  .p-policy__list {
    gap: 102px;
  }
}
@media screen and (min-width: 1024px) {
  .p-policy__item {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
  }
  .p-policy__item:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
.p-policyItem__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4166666667;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-policyItem__title {
    font-size: 28px;
    margin-top: 0;
    line-height: 1.5714285714;
  }
}
.p-policyItem__text {
  margin-top: 12px;
  margin-bottom: 27px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-policyItem__text {
    margin-top: 26px;
    margin-bottom: 36px;
    line-height: 2;
  }
}
@media screen and (min-width: 1024px) {
  .p-policyItem__img {
    max-width: 480px;
  }
}
@media screen and (min-width: 1024px) {
  .p-policyItem__textArea {
    width: 520px;
  }
}
@media screen and (min-width: 1024px) {
  .p-policy .c-btn__round {
    margin-left: 0;
  }
}

.p-wellBeing {
  /* declaration
  -------------------------------------*/
  /* promotion
  -------------------------------------*/
  /* chart
  -------------------------------------*/
  /* health
  -------------------------------------*/
}
.p-wellBeing .l-page__title {
  padding: 108px 0 66px 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing .l-page__title {
    padding: 166px 0 92px;
  }
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__wrapper {
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__head {
    max-width: 100%;
  }
}
.p-wellBeing__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-left: 4px;
  margin-bottom: 21px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__title {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.5714285714;
    margin-left: 0;
  }
}
.p-wellBeing__title span {
  display: block;
  font-size: 18px;
  margin-left: 12px;
  margin-bottom: 3px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__title span {
    font-size: 28px;
    margin: 0;
  }
}
.p-wellBeing__paragraph {
  font-size: 15px;
  line-height: 1.8666666667;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__paragraph {
    font-size: 16px;
    line-height: 2.5;
    padding: 0;
  }
}
.p-wellBeing__declaration {
  margin-top: 67px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__declaration {
    margin-top: 113px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__declaration .l-content__heading {
    margin-bottom: 29px;
  }
}
.p-wellBeing__declarationImg {
  margin-top: 13px;
  margin-bottom: 13px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__declarationImg {
    width: 480px;
    float: right;
    margin-top: 0;
    margin-bottom: 48px;
    margin-left: 48px;
  }
}
.p-wellBeing__declarationText {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__declarationText {
    font-size: 16px;
    line-height: 2;
  }
}
.p-wellBeing__declarationName {
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__declarationName {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.625;
  }
}
.p-wellBeing__promotion {
  margin-top: 59px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__promotion {
    padding: 0;
    margin-top: 120px;
  }
}
.p-wellBeing__promotionImg {
  width: 200px;
  margin: 14px auto 12px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__promotionImg {
    width: 280px;
    margin: 0;
  }
}
.p-wellBeing__promotionText {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__promotionText {
    font-size: 16px;
    line-height: 1.875;
    width: 752px;
  }
}
.p-wellBeing__promotionText .-bold {
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__promotionText .-indent {
    text-indent: -1rem;
    padding-left: 1rem;
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__promotionFlex {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 48px;
    margin-top: 30px;
  }
}
.p-wellBeing__promotionTable {
  margin-top: 28px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__promotionTable {
    margin-top: 62px;
  }
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__table {
    max-width: 100%;
  }
}
.p-wellBeing__table table {
  width: 100%;
  border-collapse: collapse;
}
.p-wellBeing__table th {
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid #B3B3B3;
  background: #EAEEF2;
  margin-top: -1px;
  padding: 8px 0 10px;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__table th {
    width: 18%;
    max-width: 153px;
    display: table-cell;
    padding: 10px 0 9px 32px;
    vertical-align: middle;
    font-size: 16px;
    text-align: left;
  }
}
.p-wellBeing__table td {
  width: 100%;
  display: block;
  border: 1px solid #B3B3B3;
  margin-top: -1px;
  padding: 15px 12px 17px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__table td {
    width: 81%;
    display: table-cell;
    padding: 10px 24px 9px;
    font-size: 16px;
  }
}
.p-wellBeing__table td a {
  color: #2FAECB;
  text-decoration: underline;
}
.p-wellBeing__chart {
  margin-top: 64px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__chart {
    margin-top: 124px;
    padding: 0;
  }
}
.p-wellBeing__chartImg {
  width: 100%;
  margin: 13px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__chartImg {
    width: auto;
    margin: 0;
    margin-top: 40px;
  }
}
.p-wellBeing__health {
  margin-top: 63px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__health {
    margin-top: 122px;
    padding: 0;
  }
}
.p-wellBeing__healthImg {
  width: 245px;
  margin: 13px auto 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthImg {
    width: 400px;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthFlex {
    display: flex;
    flex-direction: row-reverse;
    gap: 48px;
    margin-top: 32px;
  }
}
.p-wellBeing__healthTitle {
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthTitle {
    font-size: 16px;
  }
}
.p-wellBeing__healthName {
  font-size: 20px;
  margin-top: 4px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthName {
    font-size: 22px;
  }
}
.p-wellBeing__healthName span {
  font-size: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthName span {
    font-size: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthTextArea {
    width: 632px;
  }
}
.p-wellBeing__healthBelongin {
  font-size: 15px;
  margin-top: 21px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthBelongin {
    font-size: 16px;
    margin-top: 39px;
    line-height: 1.875;
  }
}
.p-wellBeing__healthCareer {
  font-size: 15px;
  margin-top: 19px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthCareer {
    font-size: 16px;
    margin-top: 33px;
    line-height: 1.875;
  }
}
.p-wellBeing__healthQualification {
  font-size: 15px;
  margin-top: 19px;
  line-height: 1.8666666667;
  padding-left: 56px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthQualification {
    font-size: 16px;
    margin-top: 37px;
    padding-left: 66px;
    line-height: 1.875;
  }
}
.p-wellBeing__healthQualification::before {
  content: "資格";
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  position: absolute;
  width: 48px;
  height: 28px;
  border-radius: 4px;
  background: #0B768D;
  top: 2px;
  left: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthQualification::before {
    font-size: 16px;
    width: 50px;
    height: 31px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-wellBeing__healthSub {
  margin-top: 61px;
  padding: 0 15px 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthSub {
    margin-top: 122px;
    padding: 0;
  }
}
.p-wellBeing__healthText {
  margin-top: 11px;
  line-height: 1.8666666667;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__healthText {
    font-size: 16px;
    margin-top: 31px;
    line-height: 1.875;
    width: 100%;
  }
}
.p-wellBeing__award {
  padding: 0 16px;
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__award {
    margin-top: 88px;
    padding: 0;
  }
}
.p-wellBeing__awardTable {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__awardTable {
    margin-top: 40px;
  }
}
.p-wellBeing__map {
  margin-top: 64px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__map {
    margin-top: 124px;
    padding: 0;
  }
}
.p-wellBeing__map .l-content__heading {
  padding-right: 0;
}
.p-wellBeing__mapImg {
  width: 100%;
  margin: 13px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__mapImg {
    width: auto;
    margin: 0;
    margin-top: 41px;
  }
}
.p-wellBeing__overall {
  margin-top: 64px;
  padding-left: 16px;
  margin-bottom: -16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__overall {
    margin-top: 120px;
    padding: 0;
    margin-bottom: -20px;
  }
}
.p-wellBeing__overallTable {
  overflow: auto;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-top: 13px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__overallTable {
    margin-top: 41px;
  }
}
.p-wellBeing__overallTable table {
  border-collapse: collapse;
}
.p-wellBeing__overallTable tbody {
  display: block;
  margin-right: 16px;
}
@media screen and (min-width: 1024px) {
  .p-wellBeing__overallTable tbody {
    margin-right: 0;
  }
}
.p-wellBeing__overallTable tr:nth-child(odd) {
  background: #EEF5F6;
}
.p-wellBeing__overallTable tr:first-child {
  background: #0B768D;
}
.p-wellBeing__overallTable tr:first-child th {
  min-width: 58px;
  height: 46px;
  vertical-align: middle;
  padding: 0;
  text-align: center;
}
.p-wellBeing__overallTable tr:first-child th:first-child {
  padding: 0 27px;
  text-align: left;
}
.p-wellBeing__overallTable th {
  display: table-cell;
  border: 1px solid #E0E0E0;
  padding: 0 24px;
  height: 48px;
  vertical-align: middle;
}
.p-wellBeing__overallTable td {
  color: #0B768D;
  display: table-cell;
  border: 1px solid #E0E0E0;
  font-size: 27px;
  text-align: center;
  vertical-align: middle;
}
.p-wellBeing__overallTableHead {
  color: #FFF;
}
.p-wellBeing__overallArrowWrapper {
  position: relative;
}
.p-wellBeing__overallArrow {
  position: absolute;
  right: 16px;
  top: 0px;
  width: 1168%;
  height: 5px;
  background: #0B768D;
}
.p-wellBeing__overallArrow::before {
  display: inline-block;
  top: -9px;
  left: -6px;
  content: "";
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/cover;
  width: 18px;
  height: 22px;
  position: absolute;
  transform: rotate(180deg);
}
.p-wellBeing__overallArrow::after {
  display: inline-block;
  content: "";
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/cover;
  width: 18px;
  height: 22px;
  position: absolute;
  top: -9px;
  right: -8px;
}

.p-humanCapital .c-heading__title.-page {
  padding: 121px 0 93px 16px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital .c-heading__title.-page {
    padding: 176px 0 90px;
  }
}
.p-humanCapital .l-content__heading {
  padding-right: 0;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wrapper {
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-humanCapital__disclosure {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__disclosure {
    padding: 0;
  }
}
.p-humanCapital__disclosureCont {
  margin-top: 28px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__disclosureCont {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 80px;
    margin-top: 64px;
  }
}
.p-humanCapital__disclosureCont:first-of-type {
  margin-top: 14px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__disclosureCont:first-of-type {
    flex-direction: row-reverse;
    margin-top: 54px;
    gap: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__disclosureCont:first-of-type .p-humanCapital__disclosureText {
    width: 552px;
  }
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__disclosureImg {
    width: 480px;
  }
}
.p-humanCapital__disclosureText {
  margin-top: 13px;
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__disclosureText {
    width: 520px;
    font-size: 16px;
    line-height: 2;
    margin-top: 0;
  }
}
.p-humanCapital__wcs {
  margin-top: 59px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcs {
    margin-top: 123px;
  }
}
.p-humanCapital__wcsHead {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsHead {
    padding: 0;
  }
}
.p-humanCapital__wcsParagraph {
  margin-top: 11px;
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsParagraph {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-humanCapital__wcsTable {
  margin-top: 35px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 25px 16px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsTable {
    border-radius: 16px;
    padding: 48px 70px 40px;
    margin: 35px auto 0;
    max-width: 840px;
  }
}
.p-humanCapital__wcsTitle {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsTitle {
    font-size: 24px;
  }
}
.p-humanCapital__wcsText {
  font-size: 15px;
  line-height: 1.7333333333;
  margin-top: 5px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsText {
    text-align: center;
    font-size: 16px;
    margin-top: 3px;
  }
}
.p-humanCapital__wcsText.-bold {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsText.-bold {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsList {
    margin-top: 49px;
  }
}
.p-humanCapital__wcsItem {
  position: relative;
  margin-top: 35px;
  border-radius: 16px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsItem {
    margin-top: 40px;
  }
}
.p-humanCapital__wcsItem dt {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  height: 34px;
  min-width: 254px;
  line-height: 34px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsItem dt {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    width: 284px;
  }
}
.p-humanCapital__wcsItem dd {
  padding: 26px 30px 22px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsItem dd {
    padding: 43px 0 32px;
  }
}
.p-humanCapital__wcsItem.-yellow {
  background: #FFF8E5;
}
.p-humanCapital__wcsItem.-yellow dt {
  background: #FFE5A3;
}
.p-humanCapital__wcsItem.-red {
  background: #FFEDEB;
}
.p-humanCapital__wcsItem.-red dt {
  background: #FFC6C2;
}
.p-humanCapital__wcsItem.-blue {
  background: #EBFAFC;
}
.p-humanCapital__wcsItem.-blue dt {
  background: #D0F3FB;
}
.p-humanCapital__wcsIdea {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsIdea {
    margin-top: 30px;
  }
}
.p-humanCapital__wcsIdeaCont {
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsIdeaCont {
    margin-top: 12px;
  }
}
.p-humanCapital__wcsIdeaText {
  font-size: 15px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsIdeaText {
    font-size: 16px;
  }
}
.p-humanCapital__wcsIdeaList {
  margin-top: 16px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsIdeaList {
    margin-top: 14px;
    margin-bottom: 16px;
    gap: 14px 13px;
    justify-content: center;
  }
}
.p-humanCapital__wcsIdeaItem {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: #F5F9FA;
  border-radius: 8px;
  width: calc((100% - 9px) / 2);
  height: 54px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsIdeaItem {
    width: 225px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsIdeaItem:first-child {
    margin-left: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsIdeaItem:nth-child(3) {
    margin-right: 5px;
  }
}
.p-humanCapital__wcsLight {
  width: 50px;
  height: 60px;
  margin: 0 auto;
}
.p-humanCapital__wcsReuslit {
  position: relative;
  padding: 78px 16px 0;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsReuslit {
    padding: 120px 0 0;
    max-width: 720px;
    margin: 0 auto;
  }
}
.p-humanCapital__wcsReuslit::before {
  position: absolute;
  content: "";
  background: url(../img/humancapital/icon_arrow_blue.png) no-repeat center/cover;
  width: 43px;
  height: 38px;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsReuslit::before {
    width: 72px;
    height: 64px;
    top: 32px;
  }
}
.p-humanCapital__wcsReuslitText {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsReuslitText {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.p-humanCapital__wcsReuslitNote {
  margin-top: 21px;
  text-indent: -1rem;
  padding-left: 1rem;
  font-size: 15px;
  line-height: 1.7333333333;
}
@media screen and (min-width: 1024px) {
  .p-humanCapital__wcsReuslitNote {
    margin-top: 32px;
    font-size: 16px;
  }
}

.p-data tbody {
  margin-right: 16px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-data tbody {
    margin-right: 0;
  }
}
.p-data .l-page__title {
  padding: 116px 0 88px 16px;
}
@media screen and (min-width: 1024px) {
  .p-data .l-page__title {
    padding: 141px 0 78px;
  }
}
.p-data .l-page__content {
  margin-top: -54px;
  margin-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .p-data .l-page__content {
    margin-top: -8px;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .p-data__wrapper {
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-data__changeHead {
  padding-left: 16px;
  margin-bottom: 21px;
}
@media screen and (min-width: 1024px) {
  .p-data__changeHead {
    padding: 0;
    margin-bottom: 40px;
  }
}
.p-data__changeTitle {
  font-size: 20px;
  font-weight: 600;
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .p-data__changeTitle {
    padding: 0;
    font-size: 24px;
  }
}
.p-data__changeTable {
  margin-top: 16px;
  padding-left: 16px;
  width: 100%;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-data__changeTable {
    padding: 0;
    margin-top: 24px;
  }
}
.p-data__changeTable tbody {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-right: 16px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-data__changeTable tbody {
    margin-right: 0;
  }
}
.p-data__changeTable tr:nth-child(odd) {
  background: #F5F9FA;
}
.p-data__changeTable tr:nth-child(odd) .difference {
  background: #E4F2FF;
}
.p-data__changeTable tr:nth-child(even) .difference {
  background: #F4FAFF;
}
.p-data__changeTable tr:first-child {
  background: #FFF;
}
.p-data__changeTable tr:first-child th:last-child {
  background: #E4F2FF;
}
.p-data__changeTable tr th:first-child {
  min-width: 160px;
}
.p-data__changeTable th {
  border: 1px solid #E0E0E0;
  height: 64px;
  vertical-align: middle;
  text-align: center;
}
.p-data__changeTable td {
  border: 1px solid #E0E0E0;
  vertical-align: middle;
  text-align: center;
}
.p-data__changeTable td.age span {
  font-size: 28px;
}
.p-data__changeTable td.difference {
  font-size: 28px;
}
.p-data__changeTableHead th {
  min-width: 240px;
  height: 46px;
  vertical-align: middle;
  text-align: center;
}
.p-data__quantitative {
  margin-top: 55px;
}
@media screen and (min-width: 1024px) {
  .p-data__quantitative {
    padding: 0;
    margin-top: 80px;
  }
}
.p-data__quantitativeHead {
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .p-data__quantitativeHead {
    padding-left: 0;
  }
}
.p-data__quantitativeTable {
  margin-top: 20px;
  padding-left: 16px;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-data__quantitativeTable {
    margin-top: 32px;
    padding: 0;
    overflow: initial;
  }
}
.p-data__quantitativeTable tbody {
  display: block;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .p-data__quantitativeTable tbody {
    margin-right: 0;
  }
}
.p-data__quantitativeTable th {
  border: 1px solid #E0E0E0;
  height: 46px;
  vertical-align: middle;
  padding-left: 24px;
  min-width: 400px;
}
.p-data__quantitativeTable td {
  border: 1px solid #E0E0E0;
  vertical-align: middle;
  text-align: center;
}
.p-data__quantitativeTableHead th {
  min-width: 136px;
  height: 47px;
  vertical-align: middle;
  text-align: center;
  background: #EAEEF2;
  font-weight: 700;
  padding-left: 0;
}
.p-data__quantitativeNote {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7692307692;
  text-indent: -2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-data__quantitativeNote {
    margin-top: 22px;
  }
}
.p-data__literacy {
  margin-top: 54px;
}
@media screen and (min-width: 1024px) {
  .p-data__literacy {
    margin-top: 80px;
    padding: 0;
  }
}
.p-data__literacyHead {
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .p-data__literacyHead {
    padding-left: 0;
  }
}
.p-data__literacyTable {
  margin-top: 20px;
  padding-left: 16px;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-data__literacyTable {
    margin-top: 32px;
    padding: 0;
  }
}
.p-data__literacyTable tbody {
  display: block;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .p-data__literacyTable tbody {
    margin-right: 0;
  }
}
.p-data__literacyTable th {
  border: 1px solid #E0E0E0;
  height: 46px;
  vertical-align: middle;
  padding-left: 24px;
  min-width: 400px;
}
.p-data__literacyTable td {
  border: 1px solid #E0E0E0;
  vertical-align: middle;
  text-align: center;
}
.p-data__literacyTableHead th {
  min-width: 136px;
  height: 47px;
  vertical-align: middle;
  text-align: center;
  background: #EAEEF2;
  font-weight: 700;
  padding-left: 0;
}
.p-data__outgoing {
  margin-top: 56px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-data__outgoing {
    margin-top: 90px;
    padding: 0;
  }
}
.p-data__outgoingList {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .p-data__outgoingList {
    margin-top: 27px;
    gap: 60px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .p-data__outgoingItem {
    width: calc((100% - 60px) / 2);
  }
}
.p-data__outgoingLink {
  border: 1px solid #18768D;
  border-radius: 8px;
  display: block;
  padding: 24px 10px 29px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-data__outgoingLink {
    padding: 32px 10px 31px;
  }
}
.p-data__outgoingLink:hover {
  background-color: #EEF5F6;
}
.p-data__outgoingLink:hover .c-btn__round {
  background: #FFF;
  color: #0B768D;
  border: 2px solid #0B768D;
  transition: unset;
  opacity: 1;
}
.p-data__outgoingLink:hover .c-btn__round::before {
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
  right: 18px;
}
.p-data__outgoingText {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6470588235;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-data__outgoingText {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .p-action .l-page__content {
    margin-bottom: 104px;
  }
}
.p-action .l-page__title {
  padding: 115px 0 35px 16px;
}
@media screen and (min-width: 1024px) {
  .p-action .l-page__title {
    padding: 143px 0 68px;
  }
}
.p-action .l-content__heading {
  margin-left: 16px;
}
@media screen and (min-width: 1024px) {
  .p-action .l-content__heading {
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-action__wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
  }
}
.p-action__title {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  background: #0B768D;
  border-radius: 6px;
  padding: 8px 20px 9px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-action__title {
    font-size: 28px;
    font-weight: 600;
    padding: 6px 30px 9px;
  }
}
.p-action__paragraph {
  font-size: 15px;
  line-height: 1.8666666667;
  margin-top: 13px;
}
@media screen and (min-width: 1024px) {
  .p-action__paragraph {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 22px;
  }
}
.p-action__paragraph.-padding {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__paragraph.-padding {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-action__paragraph.-small {
    margin-top: 2px;
  }
}
.p-action__paragraph .-strong {
  font-weight: 600;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-action__paragraph .-strong {
    font-weight: 700;
  }
}
.p-action__btnWrapper {
  margin-top: 18px;
}
@media screen and (min-width: 1024px) {
  .p-action__btnWrapper {
    margin-top: 36px;
  }
}
.p-action__preventionSec01 {
  margin-top: 44px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSec01 {
    margin-top: 62px;
  }
}
.p-action__preventionSec02 {
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSec02 {
    margin-top: 93px;
  }
}
.p-action__preventionSec03 {
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSec03 {
    margin-top: 96px;
  }
}
.p-action__preventionSec03 .p-action__preventionSecItem {
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSec03 .p-action__preventionSecItem {
    margin-top: 60px;
  }
}
.p-action__preventionSec03 .p-action__list.-indent {
  margin-top: 10px;
}
.p-action__preventionSec04 {
  margin-top: 74px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSec04 {
    margin-top: 93px;
    padding: 0;
  }
}
.p-action__preventionSec04 .l-content__heading {
  margin-left: 0;
}
.p-action__preventionSec05 {
  margin-top: 80px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSec05 {
    margin-top: 96px;
    padding: 0;
  }
}
.p-action__preventionSec05 .l-content__heading {
  margin-left: 0;
}
.p-action__btnLink {
  border: 1px solid #18768D;
  border-radius: 8px;
  display: block;
  padding: 24px 10px 26px;
  max-width: 510px;
}
@media screen and (min-width: 1024px) {
  .p-action__btnLink {
    padding: 32px 10px;
  }
}
.p-action__btnLinkText {
  font-size: 17px;
  line-height: 1.6470588235;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-action__btnLinkText {
    font-size: 18px;
    line-height: 1.5555555556;
  }
}
.p-action__btnLink:hover {
  background-color: #EEF5F6;
}
.p-action__btnLink:hover .c-btn__round {
  background: #FFF;
  color: #0B768D;
  border: 2px solid #0B768D;
  transition: unset;
  opacity: 1;
}
.p-action__btnLink:hover .c-btn__round::before {
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
  right: 18px;
}
.p-action__preventionHead {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionHead {
    padding: 0;
  }
}
.p-action__preventionSecItem {
  margin-top: 29px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSecItem {
    margin-top: 46px;
    padding: 0;
  }
}
.p-action__preventionSecItem.-table {
  padding: 0;
}
.p-action__preventionSecItem.-middle {
  margin-top: 52px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSecItem.-middle {
    margin-top: 62px;
  }
}
.p-action__preventionSecItemText {
  font-size: 15px;
  line-height: 1.8666666667;
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .p-action__preventionSecItemText {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 3px;
  }
}
.p-action__subTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-action__subTitle {
    font-size: 24px;
    line-height: 1.5833333333;
  }
}
.p-action__list.-paws {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 56px;
}
@media screen and (min-width: 1024px) {
  .p-action__list.-paws {
    margin-top: 20px;
    max-width: 940px;
    gap: 14px 13px;
    margin-bottom: 64px;
  }
}
.p-action__list.-workshop {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .p-action__list.-workshop {
    margin-top: 29px;
    flex-direction: row;
    gap: 40px 60px;
    flex-wrap: wrap;
  }
}
.p-action__list.-attempt {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 43px;
}
@media screen and (min-width: 1024px) {
  .p-action__list.-attempt {
    margin-top: 89px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 56px 60px;
  }
}
.p-action__list.-indent {
  text-indent: -1rem;
  padding-left: 1rem;
  font-size: 15px;
  line-height: 1.8666666667;
  margin-top: 13px;
  margin-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .p-action__list.-indent {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .p-action__list.-indent.-small {
    margin-top: 3px;
  }
}
.p-action__list.-indent.-diversity {
  margin-top: 0;
  margin-bottom: 0;
}
.p-action__list.-volunteer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .p-action__list.-volunteer {
    gap: 56px;
    flex-direction: row;
  }
}
.p-action__item.-paws {
  width: calc((100% - 15px) / 2);
  background: #F5F9FA;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  height: 54px;
  text-align: center;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1024px) {
  .p-action__item.-paws {
    font-size: 14px;
    width: 225px;
  }
}
@media screen and (min-width: 1024px) {
  .p-action__item.-workshop {
    width: calc((100% - 280px) / 3);
  }
}
.p-action__item.-workshop img {
  width: 100%;
}
.p-action__item.-attempt h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5555555556;
  padding-bottom: 6px;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 1024px) {
  .p-action__item.-attempt h5 {
    padding-bottom: 14px;
    margin-bottom: 13px;
  }
}
.p-action__item.-attempt:first-child .p-action__itemImg.-attempt {
  max-width: 120px;
}
@media screen and (min-width: 1024px) {
  .p-action__item.-attempt:first-child .p-action__itemImg.-attempt {
    max-width: 174px;
  }
}
@media screen and (min-width: 1024px) {
  .p-action__item.-attempt {
    width: calc((100% - 60px) / 2);
  }
}
.p-action__item.-volunteer:first-child img {
  width: 128px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-action__item.-volunteer:first-child img {
    width: 214px;
    margin: 0;
  }
}
.p-action__item.-volunteer:nth-child(2) img {
  width: 192px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-action__item.-volunteer:nth-child(2) img {
    width: 320px;
    margin: 0;
  }
}
.p-action__itemTitle.-workshop {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-action__itemTitle.-workshop {
    margin-top: 8px;
  }
}
.p-action__itemImg.-attempt {
  max-width: 200px;
  margin: 16px auto 14px;
}
@media screen and (min-width: 1024px) {
  .p-action__itemImg.-attempt {
    max-width: 174px;
    margin: 0;
  }
}
.p-action__itemImg.-attempt.-link:hover img {
  opacity: 0.7;
}
.p-action__itemImg.-attempt.-link:hover .c-btn__round.-type_primary.-color_primary {
  background: #FFF;
  color: #0B768D;
  border: 2px solid #0B768D;
  transition: unset;
  opacity: 1;
}
.p-action__itemImg.-attempt.-link:hover .c-btn__round.-type_primary.-color_primary::before {
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
  right: 18px;
}
@media screen and (min-width: 1024px) {
  .p-action__itemFlex.-attempt {
    display: flex;
    flex-direction: row-reverse;
    gap: 32px;
  }
}
.p-action__itemText.-workshop {
  font-size: 13px;
  line-height: 1.6923076923;
}
@media screen and (min-width: 1024px) {
  .p-action__itemText.-workshop {
    font-size: 14px;
    line-height: 1.5714285714;
  }
}
.p-action__itemText.-attempt {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-action__itemText.-attempt {
    font-size: 16px;
    line-height: 1.875;
    max-width: 304px;
  }
}
.p-action__itemTitle.-volunteer {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-action__itemTitle.-volunteer {
    font-size: 16px;
    text-align: left;
  }
}
.p-action__itemTitle.-blue {
  color: #0B768D;
  text-decoration: underline;
}
.p-action__itemBtn {
  margin: 20px auto;
}
@media screen and (min-width: 1024px) {
  .p-action__itemBtn {
    width: 174px !important;
    height: 40px;
    font-size: 15px;
    margin: 20px auto 0;
  }
  .p-action__itemBtn::before {
    top: 50%;
  }
}
.p-action__table {
  margin-top: 14px;
  overflow: auto;
  white-space: nowrap;
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__table {
    margin-top: 21px;
    padding: 0;
    overflow: inherit;
  }
}
.p-action__tableTitle {
  font-size: 17px;
  font-weight: 700;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__tableTitle {
    font-size: 18px;
    padding: 0;
  }
}
.p-action__table tbody {
  display: block;
  margin-right: 16px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .p-action__table tbody {
    margin-right: 0;
  }
}



.p-action__table th {
  border: 1px solid #B3B3B3;
  text-align: center;
  min-width: 200px;
  vertical-align: middle;
}
.p-action__table td {
  border: 1px solid #B3B3B3;
  padding: 9px 24px 8px;
  min-width: 440px;
}
.p-action__tableHead {
  background: #EAEEF2;
  font-weight: 700;
  height: 46px;
}
.p-action__office {
  margin-top: 74px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__office {
    margin-top: 101px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-action__office .p-action__btnWrapper {
    margin-top: 17px;
  }
}
.p-action__officeList {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media screen and (min-width: 1024px) {
  .p-action__officeList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 45px 27px;
    margin-top: 48px;
  }
}
.p-action__officeItem img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-action__officeItem {
    width: calc((100% - 81px) / 4);
  }
}
.p-action__officeItemTitle {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-action__officeItemTitle {
    font-size: 16px;
  }
}
.p-action__officeItemText {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-action__officeItemText {
    font-size: 14px;
    line-height: 1.5714285714;
  }
}
.p-action__communication {
  margin-top: 77px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__communication {
    margin-top: 104px;
    padding: 0;
  }
}
.p-action__communicationList {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 43px;
}
@media screen and (min-width: 1024px) {
  .p-action__communicationList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px 60px;
    margin-top: 20px;
  }
}
.p-action__communicationItem img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-action__communicationItem {
    width: calc((100% - 120px) / 3);
  }
}
.p-action__communicationItemTitle {
  margin-top: 16px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}
.kk_layout{
  gap: 0;
}
.kk_item img{
max-width: 100%;
}
.kk_list{
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-action__communicationItemTitle {
    font-size: 16px;
  }
  .kk_layout{
    gap: 80px;
  }
  .kk_list{
    width: 1200px;
  }
  .kk_item img{
    max-width: 100%;
    }
}
.p-action__communicationItemText {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-action__communicationItemText {
    font-size: 14px;
    line-height: 1.5714285714;
    text-align: center;
  }
}
.p-action__communication .c-btn__round {
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-action__communication .c-btn__round {
    height: 40px;
    margin-top: 10px;
  }
}
.p-action__meeting {
  margin-top: 77px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-action__meeting {
    margin-top: 104px;
    padding: 0;
  }
}
.p-action__meeting .c-btn__round {
  margin: 27px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-action__meeting .c-btn__round {
    margin: 0;
    margin-top: 40px;
  }
}
.p-action__books {
  background: #DBEEF2;
}
.p-action__booksWrapper {
  padding: 56px 16px 64px;
}
@media screen and (min-width: 1024px) {
  .p-action__booksWrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px 0 72px;
  }
}
.p-action__booksTitle {
  font-size: 18px;
  line-height: 1.5555555556;
  font-weight: 600;
  padding-bottom: 23px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-action__booksTitle {
    font-size: 24px;
    line-height: 1.5833333333;
  }
}
.p-action__booksTitle::before {
  content: "";
  background: #2FAECB;
  width: 28px;
  height: 7px;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-action__booksList {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media screen and (min-width: 1024px) {
  .p-action__booksList {
    margin-top: 48px;
    gap: 43px;
  }
}
@media screen and (min-width: 1024px) {
  .p-action__booksItem {
    display: flex;
    gap: 64px;
  }
}
.p-action__booksItem:first-child .p-action__booksItemImg {
  max-width: 160px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-action__booksItem:first-child .p-action__booksItemImg {
    margin: 0;
    max-width: 210px;
  }
}
.p-action__booksItem:nth-child(2) .p-action__booksItemImg {
  max-width: 152px;
  margin: 0 auto 26px;
}
@media screen and (min-width: 1024px) {
  .p-action__booksItem:nth-child(2) .p-action__booksItemImg {
    margin: 0;
    max-width: 196px;
    margin-left: 14px;
  }
}
.p-action__booksItemTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 14px;
}
@media screen and (min-width: 1024px) {
  .p-action__booksItemTitle {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.p-action__booksItemText {
  font-size: 15px;
  line-height: 1.8666666667;
  margin-bottom: 29px;
}
@media screen and (min-width: 1024px) {
  .p-action__booksItemText {
    font-size: 16px;
    line-height: 2;
    width: 776px;
  }
}
.p-action__booksItem .c-btn__round {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-action__booksItem .c-btn__round {
    margin: 0;
  }
}

.p-book {
  /* common
  -------------------------------------*/
  /* kv
  -------------------------------------*/
  /* Movie
  -------------------------------------*/
  /* Contents
  -------------------------------------*/
  /* Recommend
  -------------------------------------*/
  /* Introduction
  -------------------------------------*/
  /* Endorsement
  -------------------------------------*/
  /* Author
  -------------------------------------*/
  /* Wellbeing
  -------------------------------------*/
  /* cv
  -------------------------------------*/
}
.p-book .l-page__content {
  margin-bottom: 45px;
}
@media screen and (min-width: 1024px) {
  .p-book .l-page__content {
    margin-bottom: 50px;
  }
}
.p-book__title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-book__title {
    font-size: 48px;
  }
}
.p-book__title span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  margin-left: 12px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .p-book__title span {
    font-size: 13px;
    margin-left: 16px;
  }
}
.p-book__kv {
  background: url(../img/book/img_kv_bg_sp.png) no-repeat center/cover;
  height: 500px;
}
@media screen and (min-width: 1024px) {
  .p-book__kv {
    background: url(../img/book/img_kv_bg_pc.png) no-repeat center/cover;
    height: 560px;
  }
}
.p-bookKv__inner {
  position: relative;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-bookKv__inner {
    max-width: 397px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-bookKv__inner {
    padding: 0;
    max-width: 840px;
    margin: 0 auto;
  }
}
.p-bookKv__img {
  position: absolute;
  top: 69px;
  right: 22px;
}
@media screen and (min-width: 1024px) {
  .p-bookKv__img {
    top: 60px;
    right: 80px;
  }
}
.p-bookKv__img img {
  width: 158px;
}
@media screen and (min-width: 1024px) {
  .p-bookKv__img img {
    width: 310px;
  }
}
.p-bookKv__titleArea {
  padding-top: 92px;
}
@media screen and (min-width: 1024px) {
  .p-bookKv__titleArea {
    padding-top: 60px;
  }
}
.p-bookKv__titleArea h1 {
  margin-bottom: 63px;
  margin-left: 26px;
}
@media screen and (min-width: 1024px) {
  .p-bookKv__titleArea h1 {
    margin-bottom: 37px;
    margin-left: 0;
  }
}
.p-bookKv__titleArea h1 img {
  width: 110px;
}
@media screen and (min-width: 1024px) {
  .p-bookKv__titleArea h1 img {
    width: 185px;
    margin-left: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .p-bookKv__textArea {
    width: 309px;
    margin-left: 80px;
  }
}
.p-bookKv__text {
  font-size: 15px;
  line-height: 1.8666666667;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-bookKv__text {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-bookKv__text.-mincho {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Times New Roman", "ＭＳ Ｐ明朝", "MS PMincho", serif !important;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-bookKv__text.-mincho {
    margin-bottom: 8px;
  }
}
.p-book__movie {
  margin-top: 65px;
}
@media screen and (min-width: 1024px) {
  .p-book__movie {
    max-width: 840px;
    margin: 72px auto 0;
  }
}
.p-bookMovie__inner {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-bookMovie__inner {
    padding: 0;
  }
}
.p-bookMovie__cont {
  margin-top: 24px;
  position: relative;
}
.p-book__contents {
  margin-top: 52px;
  background: #F5F9FA;
}
@media screen and (min-width: 1024px) {
  .p-book__contents {
    margin-top: 74px;
  }
}
.p-bookContents__inner {
  padding: 48px 16px 56px;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__inner {
    padding: 56px 0 72px;
    max-width: 840px;
    margin: 0 auto;
  }
}
.p-bookContents__tocList {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__tocList {
    margin-top: 40px;
    height: 272px;
    gap: 22px 63px;
    flex-wrap: wrap;
  }
}
.p-bookContents__tocItem {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__tocItem {
    font-size: 18px;
  }
}
.p-bookContents__tocItem .-yellow {
  background: linear-gradient(transparent 60%, #FFFF00 0%);
}
.p-bookContents__block {
  margin-top: 40px;
  background: #FFF;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 30px 31px;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__block {
    margin-top: 48px;
    display: flex;
    gap: 32px;
    padding: 40px 46px;
  }
}
.p-bookContents__img {
  width: 136px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__img {
    margin: 0;
  }
}
.p-bookContents__textArea {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__textArea {
    margin-top: 0;
  }
}
.p-bookContents__textArea p {
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__textArea p {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.p-bookContents__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6470588235;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-bookContents__title {
    font-size: 18px;
  }
}
.p-book__recommend {
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .p-book__recommend {
    margin-top: 80px;
  }
}
.p-bookRecommend__inner {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-bookRecommend__inner {
    padding: 0;
    max-width: 840px;
    margin: 0 auto;
  }
}
.p-bookRecommend__list {
  counter-reset: num;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 12px;
}
@media screen and (min-width: 1024px) {
  .p-bookRecommend__list {
    margin-top: 56px;
    gap: 60px;
    padding: 0;
  }
}
.p-bookRecommend__item {
  background: #EEF9FB;
  counter-increment: num;
  border-radius: 16px;
  position: relative;
  padding: 24px 10px 28px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-bookRecommend__item {
    max-width: calc((100% - 60px) / 2);
    padding: 24px 10px 40px;
  }
}
.p-bookRecommend__item::before {
  position: absolute;
  top: -19px;
  left: 16px;
  content: "0" counter(num);
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  color: #FFF;
  background: #2FAECB;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 47px;
  font-family: urw-din, sans-serif;
}
@media screen and (min-width: 1024px) {
  .p-bookRecommend__item::before {
    left: 17px;
  }
}
.p-bookRecommend__item img {
  width: 223px;
  margin: 0 auto 24px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-bookRecommend__item img {
    margin-bottom: 23px;
    width: 294px;
  }
}
.p-bookRecommend__item p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7333333333;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-bookRecommend__item p {
    text-align: center;
    font-size: 16px;
  }
}
.p-book__introduction {
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .p-book__introduction {
    margin-top: 136px;
  }
}
.p-bookIntroduction__inner {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__inner {
    padding: 0;
    padding-left: 58px;
    max-width: 1196px;
    margin: 0 auto;
  }
}
.p-bookIntroduction__cont {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__cont {
    margin-top: 47px;
    display: flex;
    gap: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__cont img {
    width: 510px;
  }
}
.p-bookIntroduction__textArea {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__textArea {
    margin-top: 42px;
  }
}
.p-bookIntroduction__textArea .c-btn__round {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__textArea .c-btn__round {
    margin: 0;
  }
}
.p-bookIntroduction__textArea .btnText {
  margin-left: -20px;
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__textArea .btnText {
    margin-left: -10px;
  }
}
.p-bookIntroduction__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4166666667;
  margin-bottom: 21px;
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__title {
    font-size: 28px;
    margin-bottom: 19px;
  }
}
.p-bookIntroduction__text {
  font-size: 15px;
  line-height: 1.8666666667;
  margin-bottom: 26px;
}
@media screen and (min-width: 1024px) {
  .p-bookIntroduction__text {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 37px;
  }
}
.p-book__endorsement {
  margin-top: 56px;
  background: #EEF9FB;
}
@media screen and (min-width: 1024px) {
  .p-book__endorsement {
    margin-top: 160px;
  }
}
.p-bookEndorsement__inner {
  padding: 48px 16px 56px;
}
@media screen and (min-width: 1024px) {
  .p-bookEndorsement__inner {
    padding: 64px 0 80px;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-bookEndorsement__cont {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .p-bookEndorsement__cont {
    flex-direction: row;
    gap: 66px;
    margin-top: 40px;
  }
}
.p-bookEndorsement__box {
  display: flex;
  gap: 17px;
}
@media screen and (min-width: 1024px) {
  .p-bookEndorsement__box {
    gap: 32px;
    align-items: center;
  }
}
.p-bookEndorsement__img {
  max-width: 120px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-bookEndorsement__img {
    max-width: 208px;
  }
}
.p-bookEndorsement__textArea h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4666666667;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .p-bookEndorsement__textArea h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.6363636364;
  }
}
.p-bookEndorsement__name {
  font-size: 11px;
  line-height: 1.4545454545;
}
@media screen and (min-width: 1024px) {
  .p-bookEndorsement__name {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}
.p-book__author {
  margin-top: 61px;
}
@media screen and (min-width: 1024px) {
  .p-book__author {
    margin-top: 104px;
  }
}
.p-bookAuthor__inner {
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .p-bookAuthor__inner {
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-bookAuthor__list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 15px;
}
@media screen and (min-width: 1024px) {
  .p-bookAuthor__list {
    margin-top: 38px;
    gap: 48px 40px;
  }
}
.p-bookAuthor__item {
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 1024px) {
  .p-bookAuthor__item {
    width: calc((100% - 120px) / 4);
  }
}
.p-bookAuthor__itemName {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.4545454545;
}
@media screen and (min-width: 1024px) {
  .p-bookAuthor__itemName {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.5714285714;
  }
}
.p-bookAuthor__itemName span {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .p-bookAuthor__itemName span {
    font-size: 18px;
  }
}
.p-book__wellBeing {
  margin-top: 48px;
  background: #EEF9FB;
}
@media screen and (min-width: 1024px) {
  .p-book__wellBeing {
    margin-top: 140px;
  }
}
.p-bookWellBeing__inner {
  padding: 46px 16px 56px;
}
@media screen and (min-width: 1024px) {
  .p-bookWellBeing__inner {
    padding: 43px 0 56px;
    max-width: 840px;
    margin: 0 auto;
  }
}
.p-bookWellBeing__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-bookWellBeing__title {
    font-size: 28px;
    margin-bottom: 18px;
  }
}
.p-bookWellBeing__text {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-bookWellBeing__text {
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
  }
}
.p-bookWellBeing__list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (min-width: 1024px) {
  .p-bookWellBeing__list {
    flex-direction: row;
    gap: 60px;
    margin-top: 38px;
  }
}
.p-bookWellBeing__list img {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-bookWellBeing__item {
    width: calc((100% - 60px) / 2);
  }
}
.p-book__cv {
  background: #2FAECB;
}
.p-book__cv .c-btn__round .btnText {
  margin-left: -6px;
}
.p-bookCv__inner {
  padding: 48px 16px 56px;
}
@media screen and (min-width: 1024px) {
  .p-bookCv__inner {
    padding: 64px 0 72px;
  }
}
.p-bookCv__text {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-bookCv__text {
    margin-bottom: 32px;
    font-size: 28px;
  }
}

.p-contact__item:nth-of-type(n+2) {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-contact__item:nth-of-type(n+2) {
    margin-top: 32px;
  }
}
.p-contactItem__link {
  border: 1px solid #18768D;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 32px;
}
@media screen and (min-width: 1024px) {
  .p-contactItem__link {
    padding: 32px 32px 40px;
  }
}
.p-contactItem__link:hover {
  background-color: #EEF5F6;
}
.p-contactItem__title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-contactItem__title {
    font-size: 22px;
    line-height: 1.4545454545;
  }
}
.p-contactItem__btn {
  pointer-events: none;
}

.p-presskit__section:nth-of-type(n+2) {
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .p-presskit__section:nth-of-type(n+2) {
    margin-top: 80px;
  }
}
.p-presskit__list {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-presskit__list {
    display: flex;
    gap: 60px;
    margin-top: 32px;
  }
}
.p-presskit__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin:0 auto;
}
.p-presskit__item:nth-of-type(n+2) {
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .p-presskit__item:nth-of-type(n+2) {
    margin-top: 0;
  }
}
.p-presskitItem__img {
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
}
.p-presskitItem__img img {
  width: 100%;
}
.p-presskitItem__title {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 16px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-presskitItem__title {
    font-size: 18px;
    line-height: 1.5555555556;
    margin-top: 12px;
  }
}
.p-presskitItem__text {
  font-size: 15px;
  line-height: 2;
  margin-top: 4px;
}
@media screen and (min-width: 1024px) {
  .p-presskitItem__text {
    font-size: 14px;
    line-height: 2.1428571429;
  }
}
.p-presskitItem__btn {
  margin-top: 24px;
}

.p-camp__kv {
  position: relative;
  height: 560px;
}
@media screen and (min-width: 1024px) {
  .p-camp__kv {
    height: 380px;
  }
}
.p-campKv__title {
  width: 84%;
  height: 64px;
  position: absolute;
  top: 56px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 24px 14px 16px;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-campKv__title {
    max-width: 572px;
    height: 88px;
    top: 100px;
    padding: 13px 40px 17px;
  }
}
@media screen and (min-width: 1366px) {
  .p-campKv__title {
    width: 42%;
  }
}
.p-campKv__title span {
  display: flex;
  justify-content: flex-end;
}
.p-campKv__list .slick-slide {
  width: 100%;
  height: 560px;
}
@media screen and (min-width: 1024px) {
  .p-campKv__list .slick-slide {
    height: 450px;
  }
}
.p-campKv__item {
  width: 100%;
  height: 560px;
}
@media screen and (min-width: 1024px) {
  .p-campKv__item {
    height: 540px;
  }
}
.p-campKv__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .p-campKv__item img {
    height: 80%;
  }
}
.p-camp__info {
  margin-top: 118px;
}
@media screen and (min-width: 1024px) {
  .p-camp__info {
    margin-top: 174px;
  }
}
.p-campInfo__lead {
  font-size: 20px;
  line-height: 1.9;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-campInfo__lead {
    font-size: 24px;
    line-height: 1.8333333333;
    text-align: center;
  }
}
.p-campInfo__movie {
  position: relative;
  margin: 32px auto 64px;
}
@media screen and (min-width: 1024px) {
  .p-campInfo__movie {
    padding: 0;
    max-width: 840px;
    margin: 40px auto 80px;
  }
}
.p-campInfo__nav {
  margin-top: 64px;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .p-campInfo__nav {
    margin-top: 80px;
    gap: 60px;
  }
}
.p-campInfoNav__btn {
  display: block;
  width: calc((100% - 20px) / 3);
  background-color: #0B768D;
  border-radius: 8px;
  position: relative;
  padding: 0 10px 40px;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__btn {
    width: calc((100% - 120px) / 3);
    padding: 0 17px 54px;
    border-radius: 16px;
  }
}
.p-campInfoNav__btn::after {
  content: "";
  background: url(../img/office/camp/icon_arrow_bottom_white.svg) no-repeat center/contain;
  width: 10px;
  height: 6px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s ease;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__btn::after {
    width: 15px;
    height: 9px;
    bottom: 25px;
  }
}
.p-campInfoNav__btn:hover::after {
  bottom: 19px;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__btn:hover::after {
    bottom: 19px;
  }
}
.p-campInfoNav__icon {
  display: block;
  margin: 0 auto;
  min-height: 61px;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__icon {
    min-height: 75px;
  }
}
.p-campInfoNav__icon.-space {
  width: 42px;
  height: 41px;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__icon.-space {
    padding-top: 31px;
  }
}
.p-campInfoNav__icon.-tools {
  width: 35px;
  height: 46px;
  padding-top: 15px;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__icon.-tools {
    padding-top: 29px;
  }
}
.p-campInfoNav__icon.-culture {
  width: 58px;
  height: 42px;
  padding-top: 17px;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__icon.-culture {
    padding-top: 31px;
  }
}
.p-campInfoNav__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Hanken Grotesk", sans-serif;
  color: #FFF;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__title {
    font-size: 32px;
    line-height: 1.5;
    margin-top: 20px;
  }
}
.p-campInfoNav__text {
  font-size: 11px;
  line-height: 1.3636363636;
  font-weight: 400;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-campInfoNav__text {
    font-size: 15px;
    margin-top: 4px;
  }
}
.p-campInfo__floormap {
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .p-campInfo__floormap {
    margin-top: 120px;
  }
}
.p-campInfo__floormapImg {
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}
@media screen and (min-width: 1024px) {
  .p-campInfo__floormapImg {
    height: 300px;
  }
}
.p-campInfo__floormapImg:nth-of-type(n+2) {
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-campInfo__floormapImg:nth-of-type(n+2) {
    margin-top: 32px;
  }
}
.p-campInfo__floormapImg img {
  width: 100%;
}
.p-campSection__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1024px) {
  .p-campSection__title {
    gap: 20px;
  }
}
.p-campSection__title .en {
  position: relative;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-campSection__title .en {
    font-size: 40px;
    line-height: 1.2;
  }
}
.p-campSection__title .en.-space {
  padding-left: 40px;
}
@media screen and (min-width: 1024px) {
  .p-campSection__title .en.-space {
    padding-left: 64px;
  }
}
.p-campSection__title .en.-space::before {
  content: "";
  background: url(../img/office/camp/icon_space_blue.svg) no-repeat center/contain;
  width: 31px;
  height: 31px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-campSection__title .en.-space::before {
    width: 42px;
    height: 41px;
  }
}
.p-campSection__title .en.-tools {
  padding-left: 40px;
}
@media screen and (min-width: 1024px) {
  .p-campSection__title .en.-tools {
    padding-left: 61px;
  }
}
.p-campSection__title .en.-tools::before {
  content: "";
  background: url(../img/office/camp/icon_tools_blue.svg) no-repeat center/contain;
  width: 26px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-campSection__title .en.-tools::before {
    width: 35px;
    height: 46px;
  }
}
.p-campSection__title .en.-culture {
  padding-left: 47px;
}
@media screen and (min-width: 1024px) {
  .p-campSection__title .en.-culture {
    padding-left: 74px;
  }
}
.p-campSection__title .en.-culture::before {
  content: "";
  background: url(../img/office/camp/icon_culture_blue.svg) no-repeat center/contain;
  width: 43px;
  height: 31px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-campSection__title .en.-culture::before {
    width: 58px;
    height: 42px;
  }
}
.p-campSection__list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 60px;
}
@media screen and (min-width: 1024px) {
  .p-campSection__list {
    margin-top: 48px;
  }
}
.p-campSection__list.-space {
  margin-top: 48px;
}
.p-campSection__list.-tools {
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-campSection__list.-tools {
    gap: 48px 60px;
    margin-top: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .p-campSection__item {
    width: calc((100% - 120px) / 3);
  }
}
.p-campSectionItem__img {
  border-radius: 8px;
  overflow: hidden;
}
.p-campSectionItem__title {
  font-size: 18px;
  line-height: 1.5555555556;
  font-weight: 600;
  margin-top: 16px;
}
.p-campSectionItem__text {
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-campSectionItem__text {
    margin-top: 4px;
  }
}
.p-camp__space {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .p-camp__space {
    padding-top: 56px;
    padding-bottom: 96px;
  }
}
.p-campSpace__top {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-campSpace__top {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-campSpaceTop__img {
    max-width: 480px;
    width: 45%;
  }
}
.p-campSpaceTop__textArea {
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-campSpaceTop__textArea {
    max-width: 520px;
    width: 48%;
    margin-top: 0;
  }
}
.p-campSpaceTop__title {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-campSpaceTop__title {
    font-size: 24px;
    line-height: 1.5833333333;
  }
}
.p-campSpaceTop__text {
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-campSpaceTop__text {
    margin-top: 0;
  }
}
.p-campSpaceTop__btn {
  max-width: 208px;
  height: 48px;
  margin: 32px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-campSpaceTop__btn {
    max-width: 248px;
    height: 60px;
    margin: 40px 0 0;
  }
}
.p-campSpaceTop__btn .c-btn__round {
  width: 100%;
}
.p-campSpaceTop__btn .c-btn__round .btnText {
  margin-left: -10px;
}
@media screen and (min-width: 1024px) {
  .p-campSpaceTop__btn .c-btn__round .btnText {
    margin-left: 0;
  }
}
.p-camp__tools {
  padding-top: 64px;
  padding-bottom: 72px;
  background-color: #F5F9FA;
}
@media screen and (min-width: 1024px) {
  .p-camp__tools {
    padding-top: 102px;
    padding-bottom: 120px;
  }
}
.p-campTools__wrapper {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-campTools__wrapper {
    margin-top: 64px;
  }
}
.p-campTools__linkWrap {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .p-campTools__linkWrap {
    margin-top: 40px;
    flex-wrap: nowrap;
    gap: 60px;
  }
}
.p-campTools__link {
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  background-color: #FFF;
  display: block;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-campTools__link {
    width: 48%;
    max-width: 510px;
  }
}
.p-campTools__link:hover {
  border: 1px solid #2FAECB;
  background-color: #EEF5F6;
}
.p-campToolsLink__visualArea {
  padding: 30px 16px 0;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__visualArea {
    min-height: 339px;
    padding: 40px 16px 0;
  }
}
.p-campToolsLink__img {
  margin: 0 auto;
}
.p-campToolsLink__img.-people {
  max-width: 234px;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__img.-people {
    max-width: 358px;
  }
}
.p-campToolsLink__img.-place {
  max-width: 224px;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__img.-place {
    max-width: 358px;
  }
}
.p-campToolsLink__title {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__title {
    margin-top: 22px;
  }
}
.p-campToolsLink__title.-people {
  max-width: 250px;
  margin: 10px auto;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__title.-people {
    max-width: 295px;
    margin: 22px auto 27px;
  }
}
.p-campToolsLink__title.-place {
  max-width: 211px;
  margin: 16px auto 26px;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__title.-place {
    max-width: 264px;
    margin-top: 32px auto 37px;
  }
}
.p-campToolsLink__textArea {
  border-top: 1px solid #E8E8E8;
}
.p-campToolsLink__textArea.-people {
  padding: 16px 28px 53px;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__textArea.-people {
    padding: 18px 16px 61px;
  }
}
.p-campToolsLink__textArea.-place {
  padding: 16px 28px 53px;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__textArea.-place {
    padding: 33px 16px 61px;
  }
}
.p-campToolsLink__lead {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__lead {
    font-size: 22px;
    line-height: 1.3636363636;
    font-weight: 600;
  }
}
.p-campToolsLink__text {
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__text {
    margin-top: 12px;
    text-align: center;
  }
}
.p-campToolsLink__moreText {
  font-size: 15px;
  font-weight: 700;
  color: #0B768D;
  padding-right: 17px;
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.p-campToolsLink__moreText::before {
  content: "";
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
  width: 12px;
  height: 11px;
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-campToolsLink__moreText {
    margin-top: 24px;
  }
}
.p-campTools__list {
  display: flex;
  gap: 60px;
}
.p-campTools__item {
  width: calc((100% - 120px) / 3);
}
.p-campToolsItem__title {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5555555556;
  font-weight: 600;
}
.p-campToolsItem__text {
  margin-top: 8px;
}
.p-camp__culture {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .p-camp__culture {
    padding-top: 78px;
    padding-bottom: 80px;
  }
}
.p-campCulture__wrapper {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-campCulture__wrapper {
    margin-top: 64px;
  }
}
.p-camp__officetour {
  background-color: #2FAECB;
  padding: 48px 16px 56px;
}
@media screen and (min-width: 1024px) {
  .p-camp__officetour {
    padding: 64px 16px 72px;
  }
}
.p-campOfficetour__title {
  text-align: center;
  color: #FFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-campOfficetour__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.5714285714;
  }
}
.p-campOfficetour__btn {
  margin: 24px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .p-campOfficetour__btn {
    margin: 32px auto 0;
  }
}
.p-camp__hagiBtn {
  margin: 56px auto 0;
  width: 208px;
}
@media screen and (min-width: 1024px) {
  .p-camp__hagiBtn {
    margin: 80px auto 0;
    width: 248px;
  }
}
.p-camp__hagiBtn .c-btn__round .btnText {
  margin-left: -10px;
}
@media screen and (min-width: 1024px) {
  .p-camp__hagiBtn .c-btn__round .btnText {
    margin-left: 0;
  }
}

.p-hagiKv__textArea {
  position: absolute;
  bottom: 41px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 23px 24px 32px 16px;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .p-hagiKv__textArea {
    bottom: 8px;
    padding: 40px 73px 57px 80px;
  }
}
.p-hagiKv__subTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 13px;
  margin-bottom: 7px;
}
@media screen and (min-width: 1024px) {
  .p-hagiKv__subTitle {
    font-size: 32px;
    line-height: 1.5;
    margin-top: 21px;
    margin-bottom: 16px;
  }
}
.p-hagiKv__text {
  font-size: 15px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-hagiKv__text {
    font-size: 18px;
  }
}

.p-hagi__info {
  margin-top: 112px;
}
@media screen and (min-width: 1024px) {
  .p-hagi__info {
    margin-top: 169px;
  }
}

.p-hagiInfo__title {
  font-size: 25px;
  line-height: 1.72;
  font-weight: 600;
  padding-left: 46px;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-hagiInfo__title {
    padding-left: 80px;
    font-size: 40px;
  }
}
.p-hagiInfo__title::before {
  content: "";
  background: url(../img/office/hagi/icon_hagi_blue.svg) no-repeat center/contain;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-hagiInfo__title::before {
    width: 56px;
    height: 56px;
  }
}
.p-hagiInfo__list {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  gap: 51px;
}
@media screen and (min-width: 1024px) {
  .p-hagiInfo__list {
    margin-top: 49px;
    gap: 101px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiInfo__item {
    display: flex;
    gap: 80px;
  }
  .p-hagiInfo__item:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiInfo__itemImg {
    width: 480px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiInfo__itemTextArea {
    width: 520px;
  }
}
.p-hagiInfo__itemTitle {
  font-size: 24px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 15px;
  line-height: 1.4166666667;
}
@media screen and (min-width: 1024px) {
  .p-hagiInfo__itemTitle {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 28px;
  }
}

.p-campSection__list.-hagi {
  margin-top: 37px;
  gap: 44px 60px;
}
@media screen and (min-width: 1024px) {
  .p-campSection__list.-hagi {
    margin-top: 46px;
    gap: 40px 60px;
  }
}
.p-campSection__list.-hagi .p-campSectionItem__text {
  margin-top: 3px;
}

.p-hagi__app {
  background: #F5F9FA;
  padding: 48px 0 60px;
  margin-top: 58px;
}
@media screen and (min-width: 1024px) {
  .p-hagi__app {
    padding: 88px 0 116px;
    margin-top: 101px;
  }
}

.p-hagiApp__title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  text-align: center;
  padding-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__title {
    font-size: 32px;
    padding-bottom: 23px;
  }
}
.p-hagiApp__title::before {
  content: "";
  background: #2FAECB;
  width: 28px;
  height: 7px;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-hagiApp__cont {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__cont {
    margin-top: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__item01 {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__item01Img {
    width: 616px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__item01TextArea {
    width: 400px;
  }
}
.p-hagiApp__item01Title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 13px;
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__item01Title {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 28px;
  }
}
.p-hagiApp__item02 {
  margin-top: 51px;
  display: flex;
  flex-direction: column;
  gap: 51px;
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__item02 {
    margin-top: 64px;
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__item02Cont {
    width: calc((100% - 60px) / 2);
  }
}
.p-hagiApp__item02Text {
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.8666666667;
}
@media screen and (min-width: 1024px) {
  .p-hagiApp__item02Text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.875;
  }
}

.p-hagi__space {
  padding-bottom: 62px;
}
@media screen and (min-width: 1024px) {
  .p-hagi__space {
    padding-bottom: 52px;
    padding-top: 57px;
  }
}

.p-hagi__floormap {
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .p-hagi__floormap {
    margin-top: 104px;
  }
}
.p-hagi__floormapImg {
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
}

.p-hagiDetail__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .p-hagiDetail__wrapper {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hagiDetail__item {
    width: calc((100% - 60px) / 2);
  }
}
.p-hagiDetail__itemLink {
  border-radius: 8px;
  border: 1px solid #18768D;
  text-align: center;
  padding: 21px 10px 32px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-hagiDetail__itemLink {
    padding: 32px 10px 40px;
  }
  .p-hagiDetail__itemLink:hover {
    background: #EEF5F6;
  }
  .p-hagiDetail__itemLink:hover .c-btn__round {
    background: #FFF;
    color: #0B768D;
    border: 2px solid #0B768D;
    transition: unset;
    opacity: 1;
  }
  .p-hagiDetail__itemLink:hover .c-btn__round::before {
    background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
    right: 18px;
  }
}
.p-hagiDetail__itemTitle {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-hagiDetail__itemTitle {
    font-size: 22px;
  }
}
.p-hagiDetail__itemText {
  margin-top: 4px;
  margin-bottom: 18px;
}

.purpose-bg {
  padding: 100px 0;
}

.purpose-bg-white {
  background-color: #ffffff;
  padding: 20px 0;
}

.purpose-bg-blue {
  background-color: #2FAECB;
  padding: 20px 0;
  color: #FFF;
}

.purpose-bg-inner {
  width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.purpose-title {
  font-size: 35px;
  font-weight: bold;
  padding-top: 100px;
}

.purpose-title-en {
  font-size: 20px;
  padding-top: 10px;
}

.purpose-maintext-en {
  font-size: 38px;
  font-weight: bold;
  padding-top: 30px;
  padding-bottom: 50px;
  line-height: 1.6;
}

.purpose-maintext {
  font-size: 22px;
  padding-bottom: 90px;
  line-height: 1.7;
}

@media only screen and (max-width: 425px) {
  .purpose-bg {
    padding: 80px 0;
  }
  .purpose-bg-white {
    background-color: #ffffff;
    padding: 10px 0;
  }
  .purpose-bg-blue {
    background-color: #2FAECB;
    padding: 10px 0;
    color: #FFF;
  }
  .purpose-bg-inner {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .purpose-title {
    font-size: 25px;
    padding-top: 40px;
  }
  .purpose-title-en {
    font-size: 18px;
    padding-top: 10px;
  }
  .purpose-maintext-en {
    font-size: 23px;
    padding-top: 30px;
    padding-bottom: 25px;
    line-height: 1.6;
  }
  .purpose-maintext {
    font-size: 15px;
    padding-bottom: 40px;
    line-height: 1.7;
  }
}
.company_profile {
  padding-top: 15px;
  padding-bottom: 45px;
}

/* well-being */
.txt_right {
  text-align: right;
}

.health_messagelink_txt {
  margin-top: 20px;
}

.health_messagelink_txt a {
  color: #0B768D;
  border-bottom: #0B768D 1px solid;
  text-decoration: none;
}

.health_messagelink_txt a:hover {
  color: #0B768D;
  border-bottom: none;
  text-decoration: none;
} /* end */
.fa-file-pdf:before {
  content: "\f1c1";
}

.p-homeOthers__bner_item {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 540px;
}

.p-homeOthers__bner_item img,
.p-homeOthers__bner_item img {
  border-radius: 10px;
}
.icon-square{
width: fit-content;
    padding-left: 4px;
    padding-bottom: 4px;
}
.p-action__table tbody{
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .align_center{
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .p-action__table tbody{
    font-size: 12px;
  }

}

.p-presskitItem__img img {
    max-width: 328px!important;
}

.p-humanCapital__wrapper a:link{
  text-decoration:underline;
  color:#0B768D;
}

.p-humanCapital__wrapper a:hover{
    text-decoration:none;
    color:#333333;
}

.wistia_responsive_padding {
    box-shadow: 0 5px 15px #333333;
}
