/*color*/
/*font-family*/
/*text-shadow*/
/*media query break point*/
/*font-size*/
/*wrapper inner width*/
/*flex settings*/
/*grid settings*/
/*add :after*/
/* media query */
.p-header-wrap {
  position: relative;
  opacity: 0;
  transition: 0.5s;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .p-header-wrap {
    opacity: 1;
  }
}
.p-header-wrap.is-show {
  opacity: 1;
}

.p-mv {
  position: relative;
  margin-bottom: -5rem;
}
@media only screen and (max-width: 768px) {
  .p-mv {
    height: 55vh;
  }
}
.p-mv__slider {
  height: 100%;
}
.p-mv__slider img {
  width: 100%;
  position: relative;
  opacity: 0;
  transition: 1.5s cubic-bezier(0.57, 0.19, 0.22, 0.99);
}
.p-mv__slider img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.p-mv__slider img.show {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .p-mv__slider img {
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-mv__slider img:nth-child(1) {
    -o-object-position: 45% center;
       object-position: 45% center;
  }
  .p-mv__slider img:nth-child(2) {
    -o-object-position: 60% center;
       object-position: 60% center;
  }
  .p-mv__slider img:nth-child(3) {
    -o-object-position: 70% center;
       object-position: 70% center;
  }
  .p-mv__slider img:nth-child(4) {
    -o-object-position: 85% center;
       object-position: 85% center;
  }
}
.p-mv__logo {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 10%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-mv__logo {
    left: 5%;
  }
}
.p-mv__logo__img {
  max-width: 15vw;
}
@media only screen and (max-width: 768px) {
  .p-mv__logo__img {
    width: 40vw;
    max-width: 100%;
  }
}
.p-mv__logo__lead {
  margin-top: 3rem;
  font-size: min(1.3vw, 3rem);
}
@media only screen and (max-width: 768px) {
  .p-mv__logo__lead {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
.p-mv__odakyu {
  position: absolute;
  top: 2rem;
  right: 4rem;
  width: 15rem;
}
@media only screen and (max-width: 768px) {
  .p-mv__odakyu {
    top: 1rem;
    right: 2rem;
    width: 12rem;
  }
}

.p-info {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background-color: #93929e;
  padding: 3rem 5rem;
  border-radius: 10px;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-info {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 3rem;
  }
}
.p-info__ttl {
  width: 20%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .p-info__ttl {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .p-info__ttl {
    font-size: 1.2rem;
  }
}
.p-info__ttl em {
  font-size: 1.2em;
}
@media only screen and (max-width: 768px) {
  .p-info__ttl {
    width: 100%;
    text-align: center;
  }
}
.p-info__list {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .p-info__list {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .p-info__list {
    font-size: 1.2rem;
  }
}
.p-info__list__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-info__list__item {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 0.5rem;
  }
}
.p-info__list__catg {
  width: 10rem;
  color: #93929e;
  text-align: center;
}
.p-info__list__catg--news {
  background-color: #ffef00;
}
.p-info__list__catg--event {
  color: #ffffff;
  background-color: #73b6e9;
}
.p-info__list__txt {
  color: #ffffff;
  -ms-flex-positive: 1;
      flex-grow: 1;
  width: calc(80% - 2rem);
}
.p-info__list__txt.nolink {
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-info__list__txt {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-info__list__txt:hover:hover {
    text-decoration: underline;
    color: #ffffff;
  }
}
.p-info__btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .p-info__btn {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.p-info__more {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .p-info__more {
    font-size: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .p-info__more {
    font-size: 1rem;
  }
}
.p-info__more__tab {
  margin-left: 0.5rem;
  width: 1em;
  height: 0.8em;
  background-image: url(../../images/common/icon_tab.svg);
  background-size: cover;
}

.p-service {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-service__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .p-service__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
}
.p-service__list__illust {
  position: absolute;
}
.p-service__list__illust--soudan {
  top: 60%;
  right: 5%;
  width: 10vw;
  max-width: 14rem;
}
@media only screen and (max-width: 768px) {
  .p-service__list__illust--soudan {
    top: 65%;
    width: 25vw;
  }
}
.p-service__list__illust--calc {
  top: 10%;
  right: 10%;
  width: 3vw;
  max-width: 4.5rem;
  max-width: 5rem;
}
@media only screen and (max-width: 768px) {
  .p-service__list__illust--calc {
    top: 5%;
    width: 7vw;
  }
}
.p-service__list__illust--hand {
  top: 15%;
  right: 5%;
  width: 7vw;
  max-width: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-service__list__illust--hand {
    width: 21vw;
    top: 10%;
  }
}
.p-service__list__item {
  position: relative;
  border-top: 4px solid #005394;
  background-color: #efedf1;
  padding: 5rem;
}
@media only screen and (max-width: 768px) {
  .p-service__list__item {
    padding: 3rem 2rem;
    grid-column: unset !important;
    grid-row: unset !important;
  }
}
.p-service__list__item:nth-child(1) {
  grid-row: 1/4;
  grid-column: 1/2;
}
.p-service__list__item:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2/3;
}
.p-service__list__item:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}
.p-service__list__item:nth-child(4) {
  grid-row: 3/4;
  grid-column: 2/3;
}
.p-service__detail__ttl {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #005394;
}
@media only screen and (max-width: 768px) {
  .p-service__detail__ttl {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .p-service__detail__ttl {
    font-size: 2.2rem;
  }
}
.p-service__detail__ttl span {
  font-size: 0.6em;
}
.p-service__detail__lead {
  width: 80%;
  margin: 3rem auto 0;
  text-align: center;
}
@media only screen and (max-width: 1330px) {
  .p-service__detail__lead {
    width: 100%;
  }
}
.p-service__detail__note {
  background-color: #ffffff;
  padding: 3rem 5rem;
  border-radius: 5px;
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-service__detail__note {
    padding: 2rem;
  }
}
.p-service__detail__note p {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-service__detail__note p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .p-service__detail__note p {
    font-size: 1.6rem;
  }
}
.p-service__detail__note small {
  margin-top: 1rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-service__detail__note small {
    font-size: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .p-service__detail__note small {
    font-size: 1rem;
  }
}
.p-service__detail__sm-txt {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-service__detail__sm-txt {
    font-size: 11px;
  }
}
@media only screen and (max-width: 768px) {
  .p-service__detail__sm-txt {
    font-size: 1.1rem;
  }
}
.p-service__detail__btn {
  display: block;
  width: 80%;
  margin: 3rem auto 0;
}
.p-service__catg {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .p-service__catg {
    grid-template-columns: 1fr 1.5fr;
  }
}
.p-service__catg__txt {
  position: relative;
  padding: 3rem;
  line-height: 1.4;
  text-align: center;
  background-color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.p-service__catg__txt span {
  font-size: 0.6em;
}
@media only screen and (max-width: 768px) {
  .p-service__catg__txt {
    padding: 1.5rem;
  }
}
.p-service__catg__txt .circle {
  position: absolute;
  bottom: 0;
  right: 1rem;
  height: 2em;
  width: 2em;
  background-color: #3b3736;
  border-radius: 1em;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.p-service__catg__txt .circle:after {
  content: "";
  display: inline-block;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 48%);
          clip-path: polygon(0 0, 0% 100%, 100% 48%);
  width: 0.5em;
  height: 0.8em;
  background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .p-service__catg__txt .circle {
    top: 50%;
    bottom: unset;
    right: 5px;
  }
}
.p-service__catg__img {
  overflow: hidden;
}
.p-service__catg__img img {
  transition: 0.5s;
}
.p-service__catg:hover .p-service__catg__img img {
  -ms-transform: scale(110%);
      transform: scale(110%);
}

.p-app__ttl {
  text-align: center;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-app__ttl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .p-app__ttl {
    font-size: 2rem;
  }
}
.p-app__banner {
  margin-top: 3rem;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #bababb;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  -ms-flex-align: center;
      align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-app__banner {
    grid-template-columns: 1fr;
  }
}
.p-app__banner__img {
  margin-top: -2.5rem;
}
@media only screen and (max-width: 768px) {
  .p-app__banner__img {
    display: none;
  }
}
.p-app__banner__txtarea {
  padding: 3rem;
  text-align: center;
}
.p-app__banner__ttl {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .p-app__banner__ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .p-app__banner__ttl {
    font-size: 1.8rem;
  }
}
.p-app__banner__logo {
  display: block;
  height: 5em;
  margin: 1.5rem auto;
}
@media only screen and (max-width: 768px) {
  .p-app__banner__logo {
    width: 100%;
    height: auto;
  }
}
.p-app__banner__btn {
  display: block;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-app__banner__btn {
    width: 100%;
  }
}

.p-voice {
  background-color: #efedf1;
  padding: 3rem 0;
}
.p-voice__ttl {
  text-align: center;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-voice__ttl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .p-voice__ttl {
    font-size: 2rem;
  }
}
.p-voice__ttl span {
  font-size: 0.7em;
}
.p-voice__inner {
  width: 90%;
  max-width: 1000px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  -ms-flex-align: center;
      align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 768px) {
  .p-voice__inner {
    grid-template-columns: 1fr;
  }
}
.p-voice__catch {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-voice__catch {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .p-voice__catch {
    font-size: 2rem;
  }
}
.p-voice__lead {
  margin-top: 2rem;
}
.p-voice__comme {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-voice__comme {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .p-voice__comme {
    font-size: 1.8rem;
  }
}
.p-voice__btn {
  display: block;
  width: 80%;
  max-width: 400px;
  margin: 2rem auto 0;
}

.p-top-foot {
  width: 90%;
  max-width: 250px;
  margin: 10rem auto 0;
  text-align: center;
}

.p-notfound {
  margin: 25rem 0 15rem;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-notfound__btn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 5rem auto;
}
/*# sourceMappingURL=../../map/top/top.css.map */