@charset "UTF-8";
@font-face {
  font-family: "ariel"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("../src/font/ARIAL.woff") format("woff");
}
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  max-width: 1440px;
  margin-inline: auto;
  overflow-x: hidden;
  color: #141C38;
}

* {
  line-height: 180%;
  letter-spacing: 0.1rem;
}

section {
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  section {
    margin-bottom: 40px;
  }
}

.u-container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: content-box;
}

.u-heading {
  font-size: 28px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 32px;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .u-heading {
    font-size: 42px;
    padding-left: 30px;
  }
}
.u-heading::before {
  content: "";
  position: absolute;
  background: url("../img/deco_circle.png") no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  left: 0;
  z-index: -1;
  top: 0;
}
@media screen and (min-width: 600px) {
  .u-heading::before {
    top: -10px;
    width: 100px;
    height: 100px;
  }
}
.u-heading span {
  display: inline-block;
}

.u-pagetitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 46px;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .u-pagetitle {
    font-size: 26px;
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.u-underline {
  display: block;
  position: relative;
  z-index: 1;
}
.u-underline::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 100%;
  background: #D7ECFF;
  left: 0%;
  bottom: 3px;
  z-index: -1;
}

.u-btn {
  width: 500px;
  height: 90px;
  border-radius: 40px;
  background: #19478C;
  transition: 0.4s;
}
@media screen and (max-width: 599px) {
  .u-btn {
    width: 335px;
    height: 60px;
  }
}
.u-btn:hover {
  background: #5A99D3;
}
.u-btn a {
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .u-btn a {
    font-size: 20px;
  }
}

.u-arrow {
  font-size: 15px;
  font-weight: bold;
}
.u-arrow a {
  display: flex;
  align-items: center;
}
.u-arrow__btn {
  background: #19478C;
  display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin-right: 10px;
  transition: 0.2s;
}
.u-arrow__btn:hover {
  opacity: 0.6;
}
.u-arrow a:hover .u-arrow__btn {
  background: #5A99D3;
}
.u-arrow a:hover span:nth-of-type(2) {
  opacity: 0.6;
}

.u-sp__none {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-sp__none {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .u-pc__none {
    display: none;
  }
}

footer {
  background: #19478C;
  position: relative;
}

.l-footer__container {
  padding-top: 40px;
  padding-bottom: 66px;
}
@media screen and (max-width: 599px) {
  .l-footer__container {
    padding-bottom: 16px;
  }
}

.p-footer__content {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 0px 40px;
}
@media screen and (max-width: 599px) {
  .p-footer__content {
    flex-direction: column;
    padding-top: 40px;
    margin-bottom: 60px;
  }
}
.p-footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .p-footer__menu ul {
    margin-bottom: 60px;
  }
}
.p-footer__link a {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  transition: 0.4s;
}
.p-footer__link a:hover {
  opacity: 0.6;
}
.p-footer__logo {
  max-width: 350px;
}

.p-footer__logo p {
     margin-top : 12px ;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .p-footer__logo {
    margin-inline: auto;
  }
}
.p-footer__cr {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .p-footer__cr {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-footer__cr-designer {
  transition: 0.4s;
}
.p-footer__cr-designer:hover {
  opacity: 0.6;
}

header {
  max-width: 1440px;
  margin-inline: auto;
  height: 81px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.p-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__logo {
  max-width: 180px;
  margin-left: 40px;
  position: relative;
  z-index: 100;
  transition: 0.4s;
}
@media screen and (max-width: 599px) {
  .p-header__logo {
    max-width: 120px;
    margin-left: 10px;
  }
}
.p-header__logo:hover {
  opacity: 0.6;
}
.p-header__bars {
  width: 71px;
  height: 100%;
  cursor: pointer;
  position: relative;
  z-index: 100;
  display: inline-block;
  width: 71px;
  height: 71px;
  border-radius: 0 0 0 100%;
  background: #19478C;
  transition: 0.4s;
}
@media screen and (max-width: 599px) {
  .p-header__bars {
    max-width: 60px;
  }
}
@media screen and (min-width: 600px) {
  .p-header__bars:hover {
    background: #5A99D3;
  }
}
.p-header__bars span {
  background: #fff;
  display: block;
  width: 24px;
  height: 3px;
  margin-inline: auto;
  position: absolute;
  left: 43%;
  transition: 0.4s;
}
@media screen and (max-width: 599px) {
  .p-header__bars span {
    width: 20px;
    height: 2px;
    left: 50%;
    transition: 0.1s;
  }
}
.p-header__bars span.m-top {
  top: 28%;
}
.p-header__bars span.m-middle {
  top: 38%;
}
.p-header__bars span.m-bottom {
  top: 48%;
}
.p-header__menu.active span.m-top {
  top: 35%;
  transform: rotate(-45deg);
}
.p-header__menu.active span.m-middle {
  opacity: 0;
}
.p-header__menu.active span.m-bottom {
  top: 35%;
  transform: rotate(45deg);
}
.p-header__gnav {
  height: 100vh;
  max-width: 504px;
  width: 100%;
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.9);
  width: 0;
}
.p-header__gnav.active {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-header__gnav.active {
    width: 504px;
  }
}
.p-header__gnav ul {
  flex-direction: column;
  gap: 40px;
  padding-top: 100px;
  padding-left: 40px;
  display: flex;
  opacity: 0;
}
.p-header__gnav.active ul {
  opacity: 1;
}

.l-contact__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 1184px;
  box-sizing: content-box;
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  .l-contact__container {
    flex-direction: row;
    padding-right: 20px;
    gap: 20px;
  }
}

.p-contact__img {
  width: 90%;
}
@media screen and (min-width: 1025px) {
  .p-contact__img {
    max-width: 588px;
    width: 50%;
  }
}
.p-contact__right {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-contact__right {
    margin-inline: initial;
  }
}
.p-contact__right-heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .p-contact__right-heading {
    margin-bottom: 36px;
  }
}

.l-top {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: 160px;
}
@media screen and (max-width: 599px) {
  .l-top {
    margin-top: 100px;
  }
}

.p-top__heading span {
  display: inline-block;
}
.p-top__desc {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  .p-top__desc {
    font-size: 16px;
  }
}

.l-work__container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: content-box;
}

.p-work__items {
  display: flex;
  justify-content: space-between;
  gap: 30px 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .p-work__items {
    flex-direction: column;
  }
}
.p-work__item {
  max-width: 510px;
  width: 49%;
}
@media screen and (max-width: 599px) {
  .p-work__item {
    max-width: initial;
    width: 65%;
    min-width: 335px;
    margin-inline: auto;
  }
}
.p-work__item-img {
  margin-bottom: 20px;
}
.p-work__item-title {
  font-size: 28px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .p-work__item-title {
    font-size: 26px;
  }
}
.p-work__item-title span {
  display: inline-block;
}
.p-work__item-desc {
  font-size: 15px;
  font-weight: bold;
}

.l-scheme__container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: content-box;
  overflow: hidden;
  padding-bottom: 22px;
}

.p-scheme__heading {
  margin-bottom: 40px;
}
.p-scheme__items {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
  flex-direction: column;
  width: 60%;
  min-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-scheme__items {
    flex-direction: row;
    width: initial;
  }
}
.p-scheme__items::before {
  content: "";
  position: absolute;
  background: url("../img/deco_scheme01.svg") no-repeat center;
  background-size: contain;
  width: 192px;
  height: 100px;
  bottom: -30px;
}
@media screen and (max-width: 599px) {
  .p-scheme__items::before {
    bottom: -45px;
    left: -30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-scheme__items::before {
    bottom: -10px;
  }
}
.p-scheme__items:after {
  content: "";
  position: absolute;
  background: url("../img/deco_scheme02.svg") no-repeat center;
  background-size: cover;
  width: 245px;
  height: 100px;
  right: -90px;
  top: -67px;
}
@media screen and (min-width: 1025px) {
  .p-scheme__items:after {
    background-size: contain;
    top: -10px;
    right: -30px;
    width: 305px;
    height: 170px;
  }
}
.p-scheme__item {
  position: relative;
  z-index: 1;
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .p-scheme__item {
    min-width: 335px;
  }
}
@media screen and (min-width: 1025px) {
  .p-scheme__item {
    max-width: 300px;
    width: 33%;
  }
}
@media screen and (min-width: 1025px) {
  .p-scheme__item:nth-of-type(2) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .p-scheme__item:nth-of-type(3) {
    margin-top: 80px;
  }
}

.l-model__container {
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: content-box;
  padding-inline: 20px;
}

.p-model__desc {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .p-model__desc {
    font-size: 16px;
  }
}
.p-model__contents {
  display: flex;
  flex-direction: column;
  width: 65%;
  min-width: 335px;
  margin-inline: auto;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .p-model__contents {
    flex-direction: row;
    width: initial;
    gap: 0;
  }
}
.p-model__content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 6px;
}
@media screen and (min-width: 1025px) {
  .p-model__content {
    display: block;
  }
}
.p-model__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .p-model__items {
    flex-direction: row;
    gap: 0;
  }
}
.p-model__item {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .p-model__item {
    aspect-ratio: 292/394;
  }
}
@media screen and (min-width: 1025px) {
  .p-model__item {
    flex-direction: column;
    margin-bottom: 10px;
    min-width: 264px;
  }
}
.p-model__items .p-model__item {
  width: 100%;
}
.p-model__item-inner {
  min-width: 236px;
}
@media screen and (min-width: 1025px) {
  .p-model__item-inner {
    width: initial;
  }
}
.p-model__item-img {
  margin-bottom: 10px;
  max-width: 500px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .p-model__item-img {
    margin-bottom: 20px;
    max-width: 256px;
    min-width: initial;
  }
}
.p-model__item-title {
  font-size: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.p-model__item-desc {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 20px;
}
.p-model__item-num {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding-top: 10px;
  letter-spacing: 0.8em;
  flex: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  background-size: cover;
  position: relative;
  background: #19478C;
  margin-bottom: 70px;
  max-width: 28px;
}
@media screen and (max-width: 599px) {
  .p-model__item-num {
    margin-bottom: 34px;
  }
}
@media screen and (min-width: 1025px) {
  .p-model__item-num {
    background: url("../img/deco_arrow.svg") no-repeat center;
    justify-content: center;
    writing-mode: initial;
    text-orientation: initial;
    line-height: 35px;
    background-size: contain;
    padding-top: 0;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    background-size: 99%;
    max-width: initial;
  }
}
.p-model__item-num::after {
  position: absolute;
  content: "";
  bottom: -70px;
  border-top: 35px solid #19478C;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-bottom: 35px solid transparent;
}
@media screen and (min-width: 1025px) {
  .p-model__item-num::after {
    display: none;
  }
}
.p-model__under {
  width: 36px;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .p-model__under {
    width: initial;
  }
}
.p-model__under div {
  background: #D7ECFF;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.8em;
  display: flex;
  align-items: center;
  padding-top: 10px;
  min-width: 36px;
  width: 70%;
  flex: 1;
}
@media screen and (max-width: 599px) {
  .p-model__under div {
    width: 36px;
  }
}
@media screen and (min-width: 1025px) {
  .p-model__under div {
    letter-spacing: 0.2em;
    height: 50px;
    writing-mode: initial;
    text-orientation: initial;
    justify-content: center;
    padding-top: 0;
    width: 99%;
  }
}

.l-list__container {
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: content-box;
  padding-left: 20px;
}
@media screen and (min-width: 1025px) {
  .l-list__container {
    padding-inline: 20px;
  }
}

.p-list__items {
  font-weight: bold;
  padding-bottom: 30px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-list__items::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}
.p-list__items table {
  width: 100%;
  font-size: 16px;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-list__items table::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 599px) {
  .p-list__items table {
    font-size: 15px;
  }
}
.p-list__items th, .p-list__items td {
  vertical-align: middle;
  padding: 16px 10px;
  border: 1px solid #fff;
  text-align: center;
  white-space: nowrap;
}
.p-list__item-title {
  background: #19478C;
  color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  border-top: none;
  border-bottom: none;
}
.p-list__item-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: #19478C;
  z-index: -1;
}
.p-list__item-none::before {
  background: #fff;
}
.p-list__items tr:nth-child(2n) {
  background: #F3F8FC;
}
.p-list__items tr:nth-child(2n+1) {
  background: #D7ECFF;
}
.p-list__items tr > th:nth-of-type(1) {
  width: 236px;
}
@media screen and (max-width: 599px) {
  .p-list__items tr > th:nth-of-type(1) {
    width: 106px;
  }
}
.p-list__items tr > th:nth-of-type(2) {
  width: 148px;
}
.p-list__items tr > th:nth-of-type(3) {
  width: 152px;
}
.p-list__items tr > th:nth-of-type(4), .p-list__items tr > th:nth-of-type(5) {
  width: 258px;
}
@media screen and (max-width: 599px) {
  .p-list__items tr > th:nth-of-type(4), .p-list__items tr > th:nth-of-type(5) {
    width: 200px;
  }
}
.p-list__items tr p {
  text-align: initial;
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .p-list__items tr p {
    width: 95%;
  }
}

/*スクロールバー全体の高さ*/
.p-list__items::-webkit-scrollbar {
  height: 16px;
}

/*スクロールバー全体の背景*/
.p-list__items::-webkit-scrollbar-track {
  background: #F3F8FC;
  border-radius: 20px;
  border: 2px solid #D7ECFF;
  position: relative;
}

/*スクロールバーの動く部分*/
.p-list__items::-webkit-scrollbar-thumb {
  background: #19478C;
  border: 2px solid #D7ECFF;
  border-radius: 20px;
}

.simplebar-track {
  bottom: -10px;
}

.simplebar-track.simplebar-horizontal {
  height: 16px !important;
  background: #F3F8FC;
  border: 2px solid #D7ECFF;
  border-radius: 20px;
  max-width: 372px;
  margin: 10px 5px 10px;
  max-width: initial !important;
  width: 95%;
}

.simplebar-content-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-scrollbar {
  height: 10px;
  background: #19478C;
  border-radius: 5px;
  top: 0;
  left: 2px !important;
}

.simplebar-scrollbar:before {
  background: #19478C !important;
}

.simplebar-track simplebar-vertical {
  display: none;
}

.l-manage__container {
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: content-box;
  padding-inline: 20px;
}

.p-manage__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .p-manage__inner {
    display: initial;
  }
}
.p-manage__desc {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
  order: 2;
}
@media screen and (max-width: 599px) {
  .p-manage__desc {
    font-size: 16px;
  }
}
.p-manage__img01 {
  display: inline-block;
  margin-bottom: 30px;
  order: 1;
  min-width: 335px;
  margin-inline: auto;
  width: 60%;
}
@media screen and (min-width: 1025px) {
  .p-manage__img01 {
    max-width: 530px;
    width: 45%;
    margin-bottom: initial;
  }
}
.p-manage__img02 {
  display: inline-block;
  order: 3;
  min-width: 335px;
  margin-inline: auto;
  width: 60%;
}
@media screen and (min-width: 1025px) {
  .p-manage__img02 {
    max-width: 423px;
    margin-left: 58px;
    width: 43%;
  }
}