@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

@font-face {
  font-family: "SourceHanSansJP";
  src: url("../fonts/SourceHanSansJP-Regular.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("../fonts/SourceHanSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("../fonts/SourceHanSansJP-Bold.otf") format("opentype");
  font-weight: 700;
}
html {
  font-size: 16px;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* swiper button消失対策 */
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  text-rendering: auto;
}

.js-fadeRight {
  opacity: 0;
  -webkit-transform: translateX(5rem);
          transform: translateX(5rem);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.js-fadeLeft {
  opacity: 0;
  -webkit-transform: translateX(-5rem);
          transform: translateX(-5rem);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.js-fadeLeft.is-active,
.js-fadeRight.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.js-fadeUp.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-variable1 {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateX(-5rem);
          transform: translateX(-5rem);
}
@media screen and (max-width: 767px) {
  .js-variable1 {
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
  }
}

.js-variable1.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-variable2 {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
@media screen and (max-width: 767px) {
  .js-variable2 {
    -webkit-transform: translateX(-5rem);
            transform: translateX(-5rem);
  }
}

.js-variable2.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .js-variable2.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.js-variable3 {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateX(5rem);
          transform: translateX(5rem);
}
@media screen and (max-width: 767px) {
  .js-variable3 {
    -webkit-transform: translateX(-5rem);
            transform: translateX(-5rem);
  }
}

.js-variable3.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-variable4 {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
@media screen and (max-width: 767px) {
  .js-variable4 {
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
  }
}

.js-variable4.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .js-variable4.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.js-variable5 {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
@media screen and (max-width: 767px) {
  .js-variable5 {
    -webkit-transform: translateX(-5rem);
            transform: translateX(-5rem);
  }
}

.js-variable5.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .js-variable5.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.woocommerce div.product .product_title {
  color: red;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  width: auto;
  width: initial;
}

.wp-pagenavi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
  max-width: 17.5rem;
}
@media (max-width: 374px) {
  .wp-pagenavi {
    max-width: none;
    max-width: initial;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 500;
  color: #060606;
  text-decoration: none;
  display: block;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: absolute;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  display: block;
  width: 35px;
  width: 2.1875rem;
  height: 22px;
  height: 1.375rem;
  background: url(../images/common/arrow.png) no-repeat center/contain;
}

.wp-pagenavi .previouspostslink {
  left: 0;
}

.wp-pagenavi .nextpostslink {
  right: 0;
}

.wp-pagenavi .nextpostslink::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.wp-pagenavi span.current {
  background-color: #f0efeb;
  border-radius: 50%;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.wp-pagenavi .page,
.wp-pagenavi span.current {
  padding: 6px 14px;
  padding: 0.375rem 0.875rem;
  margin: 0 2px;
  margin: 0 0.125rem;
}
@media (max-width: 374px) {
  .wp-pagenavi .page,
  .wp-pagenavi span.current {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.c-address-text {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: #0a439a;
}
@media screen and (max-width: 767px) {
  .c-address-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-address-text {
    line-height: 1.375;
  }
}

.c-btn1 {
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border: 3px solid #333;
  border: 0.1875rem solid #333;
  text-align: center;
}

.c-btn1__title {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.12;
  font-weight: 500;
  color: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-btn1__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn1__title {
    line-height: 1.2;
  }
}

.c-btn2 {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border: 3px solid #a7bbdb;
  border: 0.1875rem solid #a7bbdb;
  text-align: center;
}

.c-btn2::after {
  content: "";
  display: inline-block;
  background-color: #043d97;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  width: 15px;
  width: 0.9375rem;
  height: 19px;
  height: 1.1875rem;
  margin-left: 30px;
  margin-left: 1.875rem;
  margin-bottom: -2px;
  margin-bottom: -0.125rem;
}

.c-btn2__title {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.0952380952;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #0a439a;
  text-transform: capitalize;
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-btn2__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn2__title {
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .c-btn2__title {
    letter-spacing: 0.025em;
  }
}

.c-category {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  color: #060606;
  display: inline-block;
  border: 1px solid #6f6f6f;
  border: 0.0625rem solid #6f6f6f;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.c-contact-text {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.8181818182;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-contact-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-text {
    line-height: 1.375;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-text {
    letter-spacing: 0.03125em;
  }
}

.c-copy-right {
  background-color: #043d97;
}

.c-copy-right__small {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.1666666667em;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  display: block;
  text-align: center;
  padding-top: 21px;
  padding-top: 1.3125rem;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .c-copy-right__small {
    padding: 0.875rem 0;
  }
}

.c-date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.0714285714em;
  font-weight: 400;
  color: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-drawer-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.c-drawer-bg.is-open {
  opacity: 0.3;
  visibility: visible;
}

.c-hamburger {
  z-index: 9999;
  padding: 0;
  margin-left: auto;
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 24px;
  width: 1.5rem;
  background: #fff;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 5px 0;
  margin: 0.3125rem 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.c-hamburger.is-open span:nth-child(1) {
  top: 7px;
  top: 0.4375rem;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.c-hamburger.is-open span:nth-child(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  top: -7px;
  top: -0.4375rem;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}

.c-hamburger.c-hamburger--post span {
  background: #111;
}

@media screen and (max-width: 767px) {
  .c-hedding-lv2__title {
    display: inline-block;
    width: 16.375rem;
  }
}

.c-hedding__title {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #0a439a;
}
@media screen and (max-width: 767px) {
  .c-hedding__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-hedding__title {
    line-height: 1.1428571429;
  }
}
@media screen and (max-width: 767px) {
  .c-hedding__title {
    letter-spacing: 0.0178571429em;
  }
}

.c-hedding__title span {
  display: inline-block;
}

.c-hedding.c-hedding--small .c-hedding__title {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-hedding.c-hedding--small .c-hedding__title {
    font-size: 1.625rem;
  }
}

.c-hexagon__box-wrapper-lv2 {
  width: 6.640625vw;
  height: 11.640625vw;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  position: relative;
}

.c-hexagon__box-wrapper-lv2::before,
.c-hexagon__box-wrapper-lv2::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0;
  left: 0;
}

.c-hexagon__box-wrapper-lv2::before {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.c-hexagon__box-wrapper-lv2::after {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.c-hexagon__box-wrapper-lv1 {
  width: 5.46875vw;
  height: 9.53125vw;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-hexagon__box-wrapper-lv1::before,
.c-hexagon__box-wrapper-lv1::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0;
  left: 0;
}

.c-hexagon__box-wrapper-lv1::before {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.c-hexagon__box-wrapper-lv1::after {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.c-hexagon__box {
  width: 3.90625vw;
  height: 6.796875vw;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-hexagon__box::before,
.c-hexagon__box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0;
  left: 0;
}

.c-hexagon__box::before {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.c-hexagon__box::after {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.c-hexagon__box-wrapper-lv2,
.c-hexagon__box-wrapper-lv1 {
  opacity: 0;
}

.c-insta-natsu {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-insta-natsu__items {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .c-insta-natsu__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-insta-natsu__item {
  position: relative;
}

.c-insta-natsu__item a {
  display: block;
}

.c-insta-natsu__item a img {
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-insta-natsu__follow-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: min(2.78184vw, 38px);
  margin-top: min(2.78184vw, 2.375rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-insta-natsu__follow-btn {
    margin-top: 1.25rem;
  }
}

.c-insta-natsu__follow-btn .c-btn2 {
  max-width: 320px;
  max-width: 20rem;
  padding: 14px 0;
  padding: 0.875rem 0;
  border: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .c-insta-natsu__follow-btn .c-btn2 {
    max-width: 17.5rem;
  }
}

.c-insta-natsu__follow-btn .c-btn2__title {
  color: #fff;
}

.c-insta-natsu__follow-btn .c-btn2::after {
  background-color: #fff;
}

.c-link-btn {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0.125em;
  font-weight: 400;
  color: #003288;
  text-transform: uppercase;
}

.c-pagetop {
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0% 25%);
          clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0% 25%);
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 40px;
  bottom: 2.5rem;
  padding: 26px 23px;
  padding: 1.625rem 1.4375rem;
  background-color: #cddaeb;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    right: 1.5625rem;
    bottom: 3.25rem;
  }
}

.c-pagetop::before {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 13px;
  left: 0.8125rem;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-top: 2px solid #0a439a;
  border-top: 0.125rem solid #0a439a;
  border-right: 2px solid #0a439a;
  border-right: 0.125rem solid #0a439a;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (any-hover: hover) {
  .c-pagetop:hover {
    background-color: #cddaeb;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .c-pagetop:hover::before {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
.c-pagetop.is-fadein {
  visibility: visible;
  opacity: 1;
}

.c-site-title {
  max-width: 358px;
  max-width: 22.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-site-title {
    max-width: 15.375rem;
  }
}

.c-text1 {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-text1 {
    letter-spacing: 0.005em;
  }
}

.c-text1.c-text1--small {
  font-size: 15px;
  font-size: 0.9375rem;
}

.c-text2 {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #003288;
}
@media screen and (max-width: 767px) {
  .c-text2 {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text2 {
    letter-spacing: 0.005em;
  }
}

.c-text3 {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-text3 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text3 {
    line-height: 1.375;
  }
}

.c-text3.c-text3--sizeUp1 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-text3.c-text3--sizeUp1 {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text3.c-text3--sizeUp1 {
    line-height: 1.5714285714;
  }
}
@media screen and (max-width: 767px) {
  .c-text3.c-text3--sizeUp1 {
    letter-spacing: 0.0357142857em;
  }
}

.c-text3.c-text3--sizeUp2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-text3.c-text3--sizeUp2 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text3.c-text3--sizeUp2 {
    line-height: 1.375;
  }
}
@media screen and (max-width: 767px) {
  .c-text3.c-text3--sizeUp2 {
    letter-spacing: 0.03125em;
  }
}

.c-title1 {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-title1 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title1 {
    line-height: 1.3333333333;
  }
}

.c-title2 {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.2727272727;
  letter-spacing: -0.07em;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-title2 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title2 {
    line-height: 1.375;
  }
}
@media screen and (max-width: 767px) {
  .c-title2 {
    letter-spacing: 0.03125em;
  }
}

.p-about__header {
  width: clamp(263px, 36.17188vw, 463px);
  width: clamp(16.4375rem, 36.17188vw, 28.9375rem);
  position: absolute;
  top: 0;
  left: 0;
}

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

.p-about__feature-media {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__feature-media {
    margin-bottom: 3.9375rem;
  }
}

.p-about__skill-media {
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__skill-media {
    margin-top: 3.9375rem;
  }
}

.p-about__skillnest-media {
  max-width: 905px;
  max-width: 56.5625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-access-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-access-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-access-media__googlemap {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-access-media__googlemap {
    width: 100%;
  }
}

.p-access-media__googlemap::before {
  display: block;
  content: "";
  padding-top: 77.6363636364%;
}

.p-access-media__googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access-media__body {
  width: 38.5454545455%;
}
@media screen and (max-width: 767px) {
  .p-access-media__body {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

.p-access-media__body-textwrapper {
  margin-top: 45px;
  margin-top: 2.8125rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-access-media__body-textwrapper {
    margin-top: 1.875rem;
  }
}

.p-access-media__body-textwrapper > * + * {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-access-media__body-textwrapper > * + * {
    margin-top: 0.1875rem;
  }
}

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

.p-access-media__btn .c-btn2 {
  max-width: 424px;
  max-width: 26.5rem;
  padding: 14px 0;
  padding: 0.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-access-media__btn .c-btn2 {
    max-width: none;
    max-width: initial;
  }
}

.p-access::before,
.p-access::after {
  content: "";
  display: block;
  width: 96%;
  height: 4.5px;
  height: 0.28125rem;
  margin: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#2a65b2), color-stop(1.375rem, #2a65b2), color-stop(0.25rem, transparent), color-stop(0.5rem, transparent));
  background-image: linear-gradient(to right, #2a65b2, #2a65b2 1.375rem, transparent 0.25rem, transparent 0.5rem); /* 幅2の線を作る */
  background-size: 1.875rem 0.75rem; /* グラデーションの幅・高さを指定 */
  background-position: left bottom; /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
}

.p-access .l-inner {
  position: relative;
}

.p-access__header {
  width: clamp(333px, 49.14063vw, 629px);
  width: clamp(20.8125rem, 49.14063vw, 39.3125rem);
  position: absolute;
  top: clamp(-78px, -6.09375vw, -46px);
  top: clamp(-4.875rem, -6.09375vw, -2.875rem);
  left: min(1.95313vw, 25px);
  left: min(1.95313vw, 1.5625rem);
}

.p-access__access-media {
  padding: 123px 0 109px;
  padding: 7.6875rem 0 6.8125rem;
}
@media screen and (max-width: 767px) {
  .p-access__access-media {
    padding: 3.4375rem 0 2.8125rem;
    max-width: 32.5rem;
  }
}

.p-access__icon {
  max-width: 134px;
  max-width: 8.375rem;
  width: clamp(110px, 10.46875vw, 134px);
  width: clamp(6.875rem, 10.46875vw, 8.375rem);
  height: 99px;
  height: 6.1875rem;
  background: url(../images/common/p-access__icon.webp) no-repeat center/contain;
  position: absolute;
  left: clamp(105px, 17.10938vw, 219px);
  left: clamp(6.5625rem, 17.10938vw, 13.6875rem);
  bottom: clamp(-48px, -3.75vw, -48px);
  bottom: clamp(-3rem, -3.75vw, -3rem);
  z-index: 1;
}

.p-aside__section + .p-aside__section {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-aside__section-titlewrapper {
  text-align: center;
  background-color: #003288;
  padding: 21px 0;
  padding: 1.3125rem 0;
}

.p-aside__section-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-aside__section-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-aside__section-title {
    line-height: 1.3333333333;
  }
}

.p-aside__items,
.p-aside__categories {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-aside__item + .p-aside__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-aside__categories li + li {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

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

.p-aside__categories li a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
  color: #0a0e11;
}
@media screen and (max-width: 767px) {
  .p-aside__categories li a {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-aside__categories li a {
    line-height: 1.2;
  }
}

.p-blog-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
}

.p-blog-card__pic {
  position: relative;
  padding-top: 65.0943396226%;
}

.p-blog-card__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-blog-card__body {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
}

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

.p-blog-card__category {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  color: #060606;
  display: inline-block;
  border: 1px solid #6f6f6f;
  border: 0.0625rem solid #6f6f6f;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.p-blog-card__body-titlewrapper-top {
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
}

.p-blog-card__body-titlewrapper {
  padding-top: 9px;
  padding-top: 0.5625rem;
  padding-bottom: 43px;
  padding-bottom: 2.6875rem;
}

.p-blog-card__body-title {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #0a0e11;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-blog-card__info2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  padding-top: 9px;
  padding-top: 0.5625rem;
  border-top: 1px solid #e1e1e6;
  border-top: 0.0625rem solid #e1e1e6;
}

.p-blog-card__info2 > * + * {
  margin-left: 21px;
  margin-left: 1.3125rem;
}

.p-blog-card__date {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.1666666667;
  letter-spacing: 0.0833333333em;
  font-weight: 400;
  color: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

.p-blog-card__authorwrapper > * + * {
  margin-left: 7px;
  margin-left: 0.4375rem;
}

.p-blog-card__author {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.1666666667;
  letter-spacing: 0.0833333333em;
  font-weight: 400;
  color: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-blog-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-blog-cards__item {
  width: 100%;
  max-width: calc(33.33333% - 0.83333rem);
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-blog-cards__item {
    max-width: 100%;
  }
}

.p-blog-cards__item + .p-blog-cards__item {
  margin-left: 19.9px;
  margin-left: 1.24375rem;
}

.p-blog-cards__item:nth-of-type(3n + 1) {
  margin-left: 0;
}

.p-blog-cards__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-blog-cards__item + .p-blog-cards__item {
    margin-left: 0.93125rem;
  }
  .p-blog-cards__item:nth-child(1n+1) {
    margin-left: 0;
  }
  .p-blog-cards__item:nth-child(n+3) {
    margin-top: 0;
  }
  .p-blog-cards__item:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}
.p-blog-cards__item-topwrapper {
  max-width: calc(50% - 1.375rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-blog-cards__item-topwrapper {
    max-width: none;
    max-width: initial;
  }
}

.p-blog-cards__item-top {
  width: 100%;
}

.p-blog-cards__item-topwrapper + .p-blog-cards__item-topwrapper {
  margin-left: 43px;
  margin-left: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-blog-cards__item-topwrapper + .p-blog-cards__item-topwrapper {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.p-blog-sub__hedding {
  text-align: center;
  padding-top: 79px;
  padding-top: 4.9375rem;
  padding-bottom: 62px;
  padding-bottom: 3.875rem;
}

.p-blog__header {
  width: clamp(333px, 46.48438vw, 595px);
  width: clamp(20.8125rem, 46.48438vw, 37.1875rem);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-blog__header {
    margin-right: auto;
  }
}

.p-blog__blog-cards {
  max-width: 980px;
  max-width: 61.25rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-blog__blog-cards {
    max-width: 37.5rem;
    margin-top: 0;
  }
}

.p-blog__btn {
  position: relative;
  text-align: center;
}

.p-blog__btn .c-btn1 {
  max-width: 260px;
  max-width: 16.25rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  border-radius: 3.125rem;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-blog__btn .c-btn1 {
    padding: 0.625rem 0;
    margin-top: 2.1875rem;
  }
}

.p-breadcrumb {
  z-index: 999;
  background-color: #f0efeb;
}

.p-breadcrumb__inner {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.0357142857em;
  font-weight: 500;
  color: #aaa;
  max-width: 1150px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 19px;
  padding-top: 1.1875rem;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-breadcrumb__inner span {
  color: #060606;
}

.p-breadcrumb__inner span:not(:first-of-type) {
  margin-left: 1.6px;
  margin-left: 0.1rem;
}

.p-breadcrumb__inner span:not(:last-of-type) {
  margin-right: 1.6px;
  margin-right: 0.1rem;
}

.p-breadcrumb__inner span:not(:last-of-type) a {
  text-decoration: underline;
}

.p-contact-box {
  position: relative;
  border: 3px solid #527eba;
  border: 0.1875rem solid #527eba;
  background-color: #e2ebf0;
}

.p-contact-box__contents {
  max-width: 864px;
  max-width: 54rem;
  width: 100%;
  margin: 0 auto 96px;
  margin: 0 auto 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transform: translateX(-1.25rem);
          transform: translateX(-1.25rem);
}
@media screen and (max-width: 767px) {
  .p-contact-box__contents {
    max-width: 25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.9375rem;
    margin-bottom: 1.25rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

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

.p-contact-box__content:nth-child(n+3) {
  margin-top: 75px;
  margin-top: 4.6875rem;
  -webkit-transform: translateX(6.25rem);
          transform: translateX(6.25rem);
}
@media screen and (max-width: 767px) {
  .p-contact-box__content:nth-child(n+3) {
    margin-top: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .p-contact-box__content + .p-contact-box__content {
    margin-top: 1.5625rem;
  }
}

.p-contact-box__title {
  width: clamp(180px, 22.26563vw, 285px);
  width: clamp(11.25rem, 22.26563vw, 17.8125rem);
}

.p-contact-box__textwrapper {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-contact-box__text {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #2966b2;
}
@media screen and (max-width: 767px) {
  .p-contact-box__text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-box__text {
    line-height: 1.7142857143;
  }
}

.p-contact-box__text span {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact-box__text span {
    font-size: 1.5rem;
  }
}

.p-contact-box__contact-text {
  color: #2966b2;
}

.p-contact-box__cta {
  text-align: center;
}

.p-contact-box__cta img {
  display: inline-block;
  width: min(53.51563vw, 685px);
  width: min(53.51563vw, 42.8125rem);
}
@media screen and (max-width: 767px) {
  .p-contact-box__cta img {
    max-width: 25rem;
    width: 100%;
    padding: 0 0.9375rem;
  }
}

.p-contact {
  position: relative;
  background: -webkit-gradient(linear, left top, right bottom, from(#cddaeb), to(rgba(109, 185, 221, .937254902)));
  background: linear-gradient(to bottom right, #cddaeb, rgba(109, 185, 221, .937254902));
  padding-top: 154px;
  padding-top: 9.625rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 4.0625rem 0 3.4375rem;
  }
}

.p-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.3125rem, transparent), color-stop(1.375rem, #d9e5f3)), -webkit-gradient(linear, left top, left bottom, color-stop(1.0625rem, transparent), color-stop(1.125rem, #d9e5f3));
  background: linear-gradient(to right, transparent 1.3125rem, #d9e5f3 1.375rem), linear-gradient(to bottom, transparent 1.0625rem, #d9e5f3 1.125rem);
  background-size: 1.375rem 1.125rem;
}

.p-contact__header {
  width: clamp(325px, 60.07813vw, 769px);
  width: clamp(20.3125rem, 60.07813vw, 48.0625rem);
  position: absolute;
  top: clamp(-86px, -6.71875vw, -36px);
  top: clamp(-5.375rem, -6.71875vw, -2.25rem);
  right: min(1.5625vw, 20px);
  right: min(1.5625vw, 1.25rem);
}

.p-contact__contact-box {
  max-width: 1020px;
  max-width: 63.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 131px;
  padding-top: 8.1875rem;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__contact-box {
    max-width: 33.375rem;
    padding-top: 3.375rem;
    padding-bottom: 6.375rem;
  }
}

.p-contact__icon1,
.p-contact__icon2 {
  position: absolute;
}

.p-contact__icon1 {
  width: clamp(135px, 18.59375vw, 238px);
  width: clamp(8.4375rem, 18.59375vw, 14.875rem);
  left: min(7.1875vw, 92px);
  left: min(7.1875vw, 5.75rem);
  bottom: 0;
}

.p-contact__icon2 {
  width: clamp(120px, 17.42188vw, 223px);
  width: clamp(7.5rem, 17.42188vw, 13.9375rem);
  right: min(4.45313vw, 57px);
  right: min(4.45313vw, 3.5625rem);
  bottom: -3px;
  bottom: -0.1875rem;
}

.p-content-box {
  position: relative;
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 94px;
  padding-bottom: 5.875rem;
  background-color: #eaf0fb;
  height: 610px;
  height: 38.125rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .p-content-box {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
    height: auto;
  }
}

.p-content-box__body {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-content-box__body-textwrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-content-box__body-textwrapper > * + * {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-content-box__body-textwrapper-lv2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-content-box__body-textwrapper-lv2 > * + * {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.p-content-box__body-text {
  color: #333;
}

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

.p-content-boxes__item {
  max-width: calc(50% - 3.375rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-content-boxes__item {
    max-width: 18.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-content-boxes__item + .p-content-boxes__item {
    margin-top: 2.5rem;
  }
}

.p-contents-area {
  padding-top: 144px;
  padding-top: 9rem;
  padding-bottom: 144px;
  padding-bottom: 9rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: url(../images/common/p-contentarea.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-contents-area {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-contents-area__content-boxes {
  max-width: 1010px;
  max-width: 63.125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-dayflow {
  background: url(../images/common/p-flow.webp) no-repeat center/cover;
}

.p-dayflow__text {
  color: #fff;
  position: relative;
  max-width: 558px;
  max-width: 34.875rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 95px;
  padding-left: 5.9375rem;
  text-indent: -95px;
  text-indent: -5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-dayflow__text {
    text-indent: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-feature-media__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1122px;
  max-width: 70.125rem;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-feature-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-feature-media__pic {
  position: relative;
  max-width: 457px;
  max-width: 28.5625rem;
  width: 41.5454545455%;
  height: 285px;
  height: 17.8125rem;
  margin-top: 274px;
  margin-top: 17.125rem;
  margin-right: 93px;
  margin-right: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-feature-media__pic {
    max-width: 37.5rem;
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-feature-media__pic::before {
  display: block;
  content: "";
  padding-top: 62.363238512%;
}

.p-feature-media__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-feature-media__body {
  max-width: 550px;
  max-width: 34.375rem;
  width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-feature-media__body {
    max-width: 37.5rem;
    width: 100%;
    margin-right: auto;
  }
}

.p-feature-media__hedding {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature-media__hedding {
    margin-top: 1.875rem;
  }
}

.p-feature-media__body-textwrapper {
  margin-top: 37px;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-feature-media__body-textwrapper {
    margin-top: 1.25rem;
  }
}

.p-feature-media__body-textwrapper > * + * {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-feature-media__body-text {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #003288;
}
@media screen and (max-width: 767px) {
  .p-feature-media__body-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature-media__body-text {
    line-height: 1.5625;
  }
}

.p-footer {
  position: relative;
  padding-top: 82px;
  padding-top: 5.125rem;
  padding-bottom: 82px;
  padding-bottom: 5.125rem;
  background: url(../images/common/p-footer.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
  }
}

.p-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.65;
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 2.8125rem;
    padding-left: 2rem;
    padding-right: 0;
    margin-bottom: 3.75rem;
  }
}

.p-footer__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__text-wrapper {
    margin-top: 1.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-footer__contact-text {
  color: #0a439a;
}

.p-gallery-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-gallery-boxes {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-gallery-boxes__item {
  position: relative;
  max-width: calc(25% - 1.26563rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-gallery-boxes__item {
    max-width: calc(50% - 0.625rem);
  }
}

.p-gallery-boxes__item + .p-gallery-boxes__item {
  margin-left: 27px;
  margin-left: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-gallery-boxes__item + .p-gallery-boxes__item {
    margin-left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-gallery-boxes__item:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-gallery-boxes__item:nth-child(n+3) {
    margin-top: 1.25rem;
  }
}

.p-gallery-boxes__pic {
  position: relative;
  padding-top: 75.8865248227%;
}

.p-gallery-boxes__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gallery {
  padding-top: 124px;
  padding-top: 7.75rem;
  padding-bottom: 89px;
  padding-bottom: 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    padding-top: 4.6875rem;
    padding-bottom: 4.0625rem;
  }
}

.p-gallery::before,
.p-gallery::after {
  content: "";
  display: block;
  width: 96%;
  height: 4.5px;
  height: 0.28125rem;
  margin: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#2a65b2), color-stop(1.375rem, #2a65b2), color-stop(0.25rem, transparent), color-stop(0.5rem, transparent));
  background-image: linear-gradient(to right, #2a65b2, #2a65b2 1.375rem, transparent 0.25rem, transparent 0.5rem); /* 幅2の線を作る */
  background-size: 1.875rem 0.75rem; /* グラデーションの幅・高さを指定 */
  background-position: left bottom; /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
}

.p-gallery__inner {
  position: relative;
  max-width: 1260px;
  width: 100%;
  padding-top: 124px;
  padding-top: 7.75rem;
  padding-bottom: 124px;
  padding-bottom: 7.75rem;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-gallery__inner {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 3.4375rem;
    padding-bottom: 2.8125rem;
  }
}

.p-gallery__header {
  width: clamp(320px, 50.78125vw, 650px);
  width: clamp(20rem, 50.78125vw, 40.625rem);
  position: absolute;
  top: max(-6.48438vw, -83px);
  top: max(-6.48438vw, -5.1875rem);
  left: min(4.29688vw, 55px);
  left: min(4.29688vw, 3.4375rem);
}
@media screen and (max-width: 767px) {
  .p-gallery__header {
    top: -2.5rem;
  }
}

.p-header {
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-header__inner {
  width: 100%;
  padding-left: 90px;
  padding-left: 5.625rem;
  padding-right: 90px;
  padding-right: 5.625rem;
  margin-left: auto;
  margin-right: auto;
  height: 50px;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.p-header--post {
  background-color: #fff;
}

.p-header__logo {
  height: inherit;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__logo img {
  width: 60px;
  width: 3.75rem;
}

.p-header__logo p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #003288;
  margin-left: 8px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo p {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 300;
    margin-left: 0.1875rem;
  }
}

.p-header__logo.is-fadeIn {
  opacity: 1;
  visibility: visible;
}

.p-header__sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 142px;
  width: 8.875rem;
  height: 100vh;
  margin-left: auto;
  z-index: 999;
  background-color: #0082c1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-header__sp-nav .p-sp-nav__items {
  height: 100%;
  padding-top: 100px;
  padding-top: 6.25rem;
  overflow: scroll;
}

.p-header__pc-nav {
  height: inherit;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .is-bgChange {
    background-color: rgba(17, 17, 17, .4);
  }
}

.p-instagram {
  background: -webkit-gradient(linear, right top, left bottom, from(#cddaeb), to(rgba(109, 185, 221, .937254902)));
  background: linear-gradient(to bottom left, #cddaeb, rgba(109, 185, 221, .937254902));
}

.p-instagram__header {
  width: clamp(252px, 37.03125vw, 474px);
  width: clamp(15.75rem, 37.03125vw, 29.625rem);
  margin-left: auto;
  margin-right: auto;
}

.p-instagram__inner {
  max-width: 1280px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.p-instagram__feed {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-instagram__feed {
    margin-top: 1.6875rem;
  }
}

.p-mv {
  position: relative;
  background: url(../images/common/p-mv.webp) no-repeat top/cover;
  padding-top: 8.75vw;
  padding-left: 6.25vw;
  height: 50vw;
}
@media screen and (max-width: 767px) {
  .p-mv {
    background: url(../images/common/p-mv-sp.webp) no-repeat top/cover;
    padding-top: 27.2vw;
    padding-left: 5.8666666667vw;
    height: 165.3333333333vw;
  }
}

.p-mv__title {
  width: 53.125vw;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    width: 70.6666666667vw;
  }
}

.p-mv__image {
  width: 37.8125vw;
  position: absolute;
  right: 60px;
  right: 3.75rem;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__image {
    width: 63.4666666667vw;
    right: 5.3333333333vw;
    bottom: 6.6666666667vw;
  }
}

.p-page-header {
  position: relative;
  width: 100%;
  margin: auto;
}

.p-page-header::before {
  content: "";
  background-color: #555;
  opacity: 0.65;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.p-page-header__pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-header__title {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.0833333333;
  font-weight: 700;
  color: #fff;
  position: relative;
  text-align: center;
  height: 100%;
  padding-top: 239px;
  padding-top: 14.9375rem;
  padding-bottom: 215px;
  padding-bottom: 13.4375rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-header__title {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-header__title {
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-page-header__title {
    letter-spacing: 0.0571428571em;
  }
}
@media screen and (max-width: 767px) {
  .p-page-header__title {
    padding-top: 10.3125rem;
    padding-bottom: 10.625rem;
  }
}

.p-pc-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-pc-nav__item {
  height: inherit;
}

.p-pc-nav__item a {
  position: relative;
  display: grid;
  place-items: center;
  height: inherit;
  padding: 0 20px;
  padding: 0 1.25rem;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-pop__pic {
  text-align: center;
  margin: 65px 0;
  margin: 4.0625rem 0;
}
@media screen and (max-width: 767px) {
  .p-pop__pic {
    margin: 1.5625rem 0;
  }
}

.p-pop__pic img {
  display: inline-block;
  max-width: 900px;
  max-width: 56.25rem;
}
@media screen and (max-width: 767px) {
  .p-pop__pic img {
    max-width: 37.5rem;
  }
}

.p-pop__textwrapper {
  max-width: 728px;
  max-width: 45.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-pop__textwrapper {
    max-width: 37.5rem;
  }
}

.p-pop__text {
  color: #003288;
}

.p-pop__text span {
  display: inline-block;
}

.p-pop__text + .p-pop__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-post-navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
  max-width: 17.5rem;
  width: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-top: 104px;
  margin-top: 6.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-post-navigation {
    margin-top: 4.6875rem;
    margin-bottom: 3.4375rem;
  }
}

.p-post-navigation > * {
  width: 100%;
}

.p-post-navigation__prev,
.p-post-navigation__next {
  position: absolute;
  max-width: 35px;
  max-width: 2.1875rem;
}

.p-post-navigation__prev {
  left: 0;
}

.p-post-navigation__next {
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-post-navigation a {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  font-weight: 500;
  color: #060606;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  text-decoration: none;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.p-single__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-single__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

.p-single__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-single__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.p-single__authorwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 21px;
  margin-left: 1.3125rem;
}

.p-single__titlewrapper {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

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

.p-skill-media__pic {
  position: relative;
  max-width: 643px;
  max-width: 40.1875rem;
  width: 58.4545454545%;
}
@media screen and (max-width: 767px) {
  .p-skill-media__pic {
    max-width: 37.5rem;
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.p-skill-media__pic::before {
  display: block;
  content: "";
  padding-top: 70.1176470588%;
}

.p-skill-media__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-skill-media__body {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 381px;
  max-width: 23.8125rem;
  width: 34.6363636364%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-skill-media__body {
    max-width: 37.5rem;
    width: 100%;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-skill-media__hedding-lv2 {
    margin-top: 0.625rem;
    text-align: center;
  }
}

.p-skill-media__body-textwrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-skill-media__body-text {
  color: #003288;
}

.p-skill-media--reverse .p-skill-media__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-skill-media--reverse .p-skill-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-skill-media--reverse .p-skill-media__body {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-skill-media--reverse .p-skill-media__body {
    margin-left: auto;
  }
}

.p-skillnest-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-skillnest-card__pic {
  position: relative;
  padding-top: 65.914221219%;
}

.p-skillnest-card__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-skillnest-card__pic-contain {
  height: 293px;
  height: 18.3125rem;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-skillnest-card__pic-contain {
    height: min(43.2vw, 18.125rem);
  }
}

.p-skillnest-card__body-title {
  color: #003288;
  text-align: center;
  margin: 0;
}

.p-skillnest-card__body-textwrapper {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-skillnest-card__body-text {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-skillnest-media-lv2 {
    width: 48%;
  }
}

.p-skillnest-media-lv2__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 450px;
  max-width: 28.125rem;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-skillnest-media-lv2__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-skillnest-media-lv2__pic {
  position: relative;
  max-width: 227px;
  max-width: 14.1875rem;
  width: 53.0373831776%;
  height: 133px;
  height: 8.3125rem;
}
@media screen and (max-width: 767px) {
  .p-skillnest-media-lv2__pic {
    max-width: none;
    max-width: initial;
    width: 100%;
    height: 100%;
  }
}

.p-skillnest-media-lv2__pic::before {
  display: block;
  content: "";
  padding-top: 58.59030837%;
}

.p-skillnest-media-lv2__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-skillnest-media-lv2__pic-contain {
  max-width: 227px;
  max-width: 14.1875rem;
  width: 53.0373831776%;
  height: 133px;
  height: 8.3125rem;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-skillnest-media-lv2__pic-contain {
    max-width: none;
    max-width: initial;
    width: 100%;
    height: min(25.06667vw, 10.5rem);
  }
}

.p-skillnest-media-lv2__body {
  max-width: 187px;
  max-width: 11.6875rem;
  width: 43.691588785%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: auto;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .p-skillnest-media-lv2__body {
    margin-left: 0;
    max-width: none;
    max-width: initial;
    width: auto;
    text-align: center;
  }
}

.p-skillnest-media-lv2__body-title {
  margin: 0;
  color: #003288;
}
.p-skillnest-media-lv2__body-textwrapper {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-skillnest-media-lv2__body-text span {
  display: inline-block;
}

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

.p-skillnest-media__left {
  max-width: 443px;
  max-width: 27.6875rem;
  width: 49.2222222222%;
}
@media screen and (max-width: 767px) {
  .p-skillnest-media__left {
    max-width: 37.5rem;
    width: 100%;
  }
}

.p-skillnest-media__right {
  max-width: 436px;
  max-width: 27.25rem;
  width: 48.4444444444%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-skillnest-media__right {
    max-width: 37.5rem;
    width: 100%;
    margin-left: 0;
    margin-top: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-skillnest-media__right > * + * {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-skillnest-media__right > * + * {
    margin-top: 0;
  }
}

.p-sp-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-sp-nav__item a {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  display: block;
  text-align: right;
  text-transform: uppercase;
  width: 100%;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-sp-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.is-fixed {
  overflow: hidden;
}

.p-support {
  background: -webkit-gradient(linear, left top, left bottom, from(#2f6bb3), to(#e1ebef));
  background: linear-gradient(to bottom, #2f6bb3, #e1ebef);
}

.p-support__inner {
  position: relative;
  max-width: 1280px;
  max-width: 80rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(220px, 33.4375vw, 428px);
  padding-top: clamp(13.75rem, 33.4375vw, 26.75rem);
}

.p-support__header {
  width: clamp(350px, 46.01563vw, 589px);
  width: clamp(21.875rem, 46.01563vw, 36.8125rem);
  position: absolute;
  top: 80px;
  top: 5rem;
  left: 45px;
  left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-support__header {
    top: 1.875rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}

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

.p-support__target-boxes {
  max-width: 860px;
  max-width: 53.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-support__target-boxes {
    margin-top: 4.6875rem;
  }
}

.p-support__useflow-boxes {
  margin-top: 129px;
  margin-top: 8.0625rem;
}
@media screen and (max-width: 767px) {
  .p-support__useflow-boxes {
    margin-top: 4.6875rem;
  }
}

.p-target-box {
  position: relative;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
}

.p-target-box__pic {
  width: 64px;
  width: 4rem;
  position: absolute;
  top: -37px;
  top: -2.3125rem;
  left: 0;
  right: 0;
  margin: auto;
}

.p-target-box__body {
  height: 185px;
  height: 11.5625rem;
  padding: 38px 20px 0;
  padding: 2.375rem 1.25rem 0;
  background-color: #eaf0fb;
}

.p-target-box__body-text {
  color: #333;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.p-target-boxes__item {
  max-width: calc(33.33333% - 1.66667rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-target-boxes__item {
    max-width: 18.75rem;
  }
}

.p-target-boxes__item + .p-target-boxes__item {
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-target-boxes__item + .p-target-boxes__item {
    margin-left: 0;
    margin-top: 3.125rem;
  }
}

.p-useflow-box {
  position: relative;
  background-color: #eaf0fb;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .p-useflow-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.9375rem 0 1.125rem;
  }
}

.p-useflow-box__pic {
  width: 64px;
  width: 4rem;
  position: absolute;
  top: -37px;
  top: -2.3125rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-useflow-box__pic {
    position: static;
    max-width: 4rem;
    width: 19.1044776119%;
  }
}

.p-useflow-box__body {
  height: 305px;
  height: 19.0625rem;
  padding: 40px 15px 0;
  padding: 2.5rem 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .p-useflow-box__body {
    width: 71.6417910448%;
    height: auto;
    padding-top: 0;
    padding-left: 0;
  }
}

.p-useflow-box__body-label {
  font-family: "SourceHanSansJP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 500;
  text-transform: uppercase;
  color: #fe7d02;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-useflow-box__body-label {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-useflow-box__body-label {
    line-height: 1.375;
  }
}
@media screen and (max-width: 767px) {
  .p-useflow-box__body-label {
    text-align: left;
  }
}

.p-useflow-box__body-titlewrapper {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-useflow-box__body-title {
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-useflow-box__body-title {
    text-align: left;
  }
}

.p-useflow-box__body-textwrapper {
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-useflow-box__body-textwrapper {
    width: auto;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-useflow-box__body-text br {
    display: none;
  }
}

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

.p-useflow-boxes__item {
  max-width: calc(20% - 1.25rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-useflow-boxes__item {
    max-width: 30.5rem;
  }
}

.p-useflow-boxes__item + .p-useflow-boxes__item {
  margin-left: 25px;
  margin-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-useflow-boxes__item + .p-useflow-boxes__item {
    margin-left: 0;
    margin-top: 1.5625rem;
  }
}

.l-about {
  position: relative;
  max-width: 1280px;
  max-width: 80rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 175px;
  padding-top: 10.9375rem;
  padding-bottom: 178px;
  padding-bottom: 11.125rem;
}
@media screen and (max-width: 767px) {
  .l-about {
    padding-top: 14.5625rem;
    padding-bottom: 5.125rem;
  }
}

.l-access {
  position: relative;
  padding-top: 124px;
  padding-top: 7.75rem;
  padding-bottom: 89px;
  padding-bottom: 5.5625rem;
}
@media screen and (max-width: 767px) {
  .l-access {
    padding-top: 4.6875rem;
    padding-bottom: 4.0625rem;
  }
}

.l-blog {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 85px;
  padding-bottom: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .l-blog {
    padding-bottom: 3.4375rem;
  }
}

.l-breadcrumb {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.l-contents-area {
  margin-top: 152px;
  margin-top: 9.5rem;
  margin-bottom: 152px;
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  .l-contents-area {
    margin-top: 5.75rem;
    margin-bottom: 3.875rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.l-dayflow {
  position: relative;
  padding: 51px 0;
  padding: 3.1875rem 0;
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .l-dayflow {
    padding-left: 15px;
    margin-top: 2.5rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.l-dayflow::before {
  content: "";
  background-color: #555;
  opacity: 0.65;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.l-inner {
  max-width: 1150px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-instagram {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 83px;
  padding-bottom: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .l-instagram {
    padding-top: 2.25rem;
    padding-bottom: 3.125rem;
  }
}

.l-post-inner {
  max-width: 942px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-post-inner {
    max-width: 600px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-single {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
}
@media screen and (max-width: 767px) {
  .l-single {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }
}

.l-support {
  position: relative;
  padding-bottom: 185px;
  padding-bottom: 11.5625rem;
}
@media screen and (max-width: 767px) {
  .l-support {
    padding-bottom: 6.25rem;
  }
}

.l-wp-pagenavi {
  text-align: center;
  padding-top: 104px;
  padding-top: 6.5rem;
  padding-bottom: 83px;
  padding-bottom: 5.1875rem;
}

.u-mt {
  margin-top: 155px;
  margin-top: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .u-mt {
    margin-top: 4.0625rem;
  }
}

.u-none {
  display: none;
}