@charset "utf-8";

/* breakpoints var */
/* * {
    --bp-sp: '(max-width: 768px)';
    --bp-md: '(min-width: 769px)';
    --bp-lg: '(min-width: 980px)';
    --bp-xl: '(min-width: 1200px)';
} */

.c-hdg h2 {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  font-family: "Lato", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
  margin: auto;
}

.c-hdg h2::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/icon_circle.svg") no-repeat;
}

.c-hdg p {
  padding-left: 40px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.025em;
  margin-top: 5px;
}

.br-pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-hdg h2 {
    font-size: 24px;
    letter-spacing: 0.01em;
    gap: 8px;
  }

  .c-hdg h2::before {
    width: 20px;
    height: 20px;
    background-size: contain;
  }

  .c-hdg p {
    font-size: 12px;
    line-height: 1;
    margin-top: 3px;
    padding-left: 28px;
  }

  .br-sp {
    display: none;
  }

  .br-pc {
    display: block;
  }
}

.c-btn--gradation {
  display: inline-block;
}

.c-btn--gradation a {
  position: relative;
  color: #fff;
  text-align: left;
  border-radius: 32px;
  background: linear-gradient(to right, #fb0475 0%, #0be0e8 100%);
  font-size: 16px;
  display: inline-block;
  width: 192px;
  padding: 24px 24px;
  margin-left: 8.5px;
}

.c-btn--gradation a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../img/icon_arrow.svg) no-repeat center center;
  background-size: 32px 32px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-btn--gradation a {
    font-size: 14px;
    font-weight: bold;
    width: 184px;
    padding: 20px 12px 20px 14px;
    box-sizing: border-box;
    margin-left: 0;
  }

  .c-btn--gradation a::after {
    right: 12px;
  }
}

/* header */
.l-header {
  font-family: "oswald", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 20px;
  list-style: 1.25;
  color: #fff;
}

.p-header__ttl {
  position: fixed;
  top: 30px;
  left: 64px;
  z-index: 999;
}

.p-header__contact {
  position: fixed;
  top: 40px;
  right: 64px;
  z-index: 999;
}

.p-header__contact a {
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(to right, #fb0475 0%, #0be0e8 100%);
  min-width: 170px;
  box-sizing: border-box;
  padding: 15.5px 44px;
}

/* nav */
.l-nav {
  position: fixed;
  top: 40px;
  right: 253px;
  z-index: 999;
  height: 56px;
  mix-blend-mode: difference;
}

.p-nav__list {
  height: 100%;
}

.p-nav__item {
  display: inline-block;
}

.p-nav__item a {
  display: inline-block;
  width: auto;
  height: 100%;
  padding: 15.5px calc(17px / 2);
}

@media screen and (min-width: 980px) {
  .p-header__btn {
    display: none;
  }

  .p-header__ttl img {
    filter: none;
  }

  .p-header__sns {
    display: none;
  }

  .p-header__sns .p-sns {
    /* flex: 1 0 117.5px; */
  }

  .p-header__sns .p-sns__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 979px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #2f2a2a;
    width: 100%;
    height: 100vh;
    padding: 104.5px 6.666%;
    box-sizing: border-box;
    transform: translateX(100vw);
    transition: all 0.3s ease;
  }

  .is-open.l-header {
    transform: translateX(0);
  }

  .p-header__ttl {
    position: fixed;
    top: 32px;
    left: 6.666vw;
    z-index: 1000;
    width: 46.07px;
    height: 45.19px;
  }

  .p-header__btn {
    position: fixed;
    top: 45px;
    right: 6.666%;
    z-index: 1000;
    display: block;
    width: 42px;
    height: 25px;
  }

  .p-header__btn a {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
  }

  .p-header__btn span,
  .p-header__btn::before,
  .p-header__btn::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
    background: black;
    transition: all 0.3s ease;
  }

  .is-open.p-header__btn span,
  .is-open.p-header__btn::before,
  .is-open.p-header__btn::after {
    background: #fff;
    transition: all 0.3s ease;
  }

  .p-header__btn span {
    opacity: 1;
  }

  .p-header__btn::before,
  .p-header__btn::after {
    content: "";
    width: 30px;
    margin: 0 auto 0 0;
  }

  .p-header__btn::before {
    transform: translateY(-13px);
  }

  .p-header__btn::after {
    transform: translateY(9.5px);
  }

  .is-open.p-header__btn span {
    opacity: 0;
  }

  .is-open.p-header__btn::before {
    transform: rotate(45deg);
  }

  .is-open.p-header__btn::after {
    transform: rotate(-45deg);
  }

  .p-header__btn span {
  }

  .p-header__btn::before,
  .p-header__btn::after {
    content: "";
    width: 30px;
    margin: 0 auto 0 0;
  }

  .p-header__btn::before {
    transform: translateY(-13px);
  }

  .p-header__btn::after {
    transform: translateY(9.5px);
  }

  .p-header__contact.p-nav__item {
    display: none;
  }

  .l-nav {
    position: static;
    height: auto;
    padding-top: 22.8px;
  }

  .p-nav__item {
    display: block;
  }

  .p-nav__item a {
    width: 100%;
    padding-left: 0;
  }

  .p-nav__item::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #fb0475 0%, #0be0e8 100%);
    transform: translateY(2px);
  }

  .p-header__sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 33.8px;
    margin-top: 27px;
  }

  .p-header__sns .p-sns {
    flex: 1 1 117.5px;
    max-width: 117.5px;
  }

  .p-header__sns .p-sns__item {
    margin-left: 0;
    margin-right: 0;
  }

  .p-header__sns .p-sns__item img {
    width: 27.15px;
  }
}

/* main */
.l-main {
}

/* head-bg */
.p-head__bg {
  background: linear-gradient(to right bottom, rgb(226, 253, 254) 0%, rgb(254, 226, 239) 100%);
}

.p-company,
.p-contact,
.p-blog {
  padding: 14.286%;
}

@media screen and (max-width: 1199px) {
  .p-company,
  .p-contact,
  .p-blog {
    padding: 6.666%;
  }
}

.p-company {
  padding-top: 94px;
}

.p-contact {
  font-weight: 600;
  padding-top: 67px;
  padding-bottom: 94px;
}

/* kv */
/* -------------------------------------- */
.p-kv {
  height: 100vh;
  overflow: hidden;
}

.p-kv__inner {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.p-kv__hdg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .p-kv__hdg {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 80%;
  }
}

/* 2024/04/17 追加 */
.p-kv__copy {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  font-family: "Lato";
  font-weight: bold;
  font-size: 160px;
  letter-spacing: -0.02em;
  color: transparent;
  background: linear-gradient(to bottom right, #e2fdfe 0%, #fee2ef 100%);
  background-clip: text;
  -webkit-background-clip: text;
  width: max-content;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .p-kv__copy {
    font-size: 80px;
  }
}

.p-kv__mask {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  /* background: linear-gradient(
        to bottom right,
        #E2FDFE 0%,
        #FEE2EF 100%
    ); */
  clip-path: url(#subhdg_copy);
  -webkit-clip-path: url(#subhdg_copy);
  opacity: 0;
}

.p-kv__mask svg {
  width: 100%;
}

.p-kv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .p-kv__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 36%;
  }
}

/* philosophy */
/* -------------------------------------- */
.p-philosophy {
  text-align: center;
  /* background: linear-gradient(
    to bottom right,
    #E2FDFE 0%,
    #FEE2EF 100%
    ); */
  padding: 126px 0 245px;
}

.p-philosophy__inner {
  max-width: 800px;
  margin: 0 auto;
}

.p-philosophy__hdg h2 {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  font-family: "Lato", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 6px;
  margin: auto;
}

.p-philosophy__hdg h2::before,
.p-philosophy__hdg h2::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/icon_circle.svg") no-repeat;
}

.p-philosophy__hdg p {
  font-size: 16px;
  letter-spacing: 0.025em;
  font-weight: bold;
  margin-top: 5px;
}

.p-philosophy__copy {
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 0.091em;
  padding-left: 34px;
  margin-top: 51px;
}

.p-philosophy__copy span {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.091em;
}

.p-philosophy__txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 3.375;
  letter-spacing: 0.025em;
  margin-top: 73px;
}

@media screen and (max-width: 768px) {
  .p-philosophy {
    padding: 64px 0 calc(174px - -32px);
  }

  .p-philosophy__hdg h2 {
    font-size: clamp(24px, 5.2vw, 40px);
    /* 24px ~ 40px */
    letter-spacing: 0.01em;
    width: min-content;
  }

  .p-philosophy__hdg h2::before,
  .p-philosophy__hdg h2::after {
    width: 43px;
  }

  .p-philosophy__hdg p {
    font-size: clamp(12px, 3.2vw, 16px);
    margin-top: 3px;
  }

  .p-philosophy__copy {
    font-size: clamp(24px, 6.4vw, 56px);
    /* 24px ~ 40px */
    margin-top: 49px;
  }

  .p-philosophy__copy span {
    font-size: clamp(20px, 5.333vw, 48px);
    /* 24px ~ 40px */
  }

  .p-philosophy__txt {
    font-size: clamp(14px, 3.733vw, 16px);
    /* 24px ~ 40px */
    line-height: 2.285;
    margin-top: calc(45px - 10.5px);
  }
}

/* service */
/* -------------------------------------- */
.p-service {
  background: #fff;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  margin-top: -120px;
}

.p-service__inner {
  padding: 96px 0 124px 14.286%;
}

.p-service__contents {
  display: flex;
  justify-content: space-between;
  margin-top: 67px;
}

.p-service__unit01 {
  flex: 1 1 540px;
}

.p-service__unit02 {
  flex: 1 1 601px;
  margin-left: 59px;
}

.p-service__thumb {
  border-radius: 450px 450px 0 450px;
}

/* service */
.c-service__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  padding-bottom: 46px;
  border-bottom: 1px solid #dee0e0;
}

.c-service__sec:not(:first-child) {
  padding-top: 32px;
}

.c-service__num {
  font-size: clamp(33px, 2.85vw, 40px);
  font-family: "Lato", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #ff77b5;
  width: 47px;
  margin-right: clamp(20px, 1.71vw, 24px);
}

.is-open .c-service__num {
  color: #fb0575;
}

.c-service__hdg,
.c-service__txt {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo",
    sans-serif;
}

.c-service__hdg {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  word-break: keep-all;
  overflow-wrap: break-word;
  flex: 1 1 370px;
}

.c-service__hdg h3 {
  font-weight: bold;
  font-size: clamp(26px, 2.214vw, 31px);
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #9ea5a5;
}

.is-open .c-service__hdg h3 {
  color: black;
}

.c-service__subhdg--en {
  font-family: "Lato", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.32em;
  line-height: 1.45;
  margin-top: 9px;
  color: #dee0e0;
}

.is-open .c-service__subhdg--en {
  color: #9ea5a5;
}

.c-service__btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: transparent;
  background: transparent;
}

@media screen and (min-width: 769px) {
  .is-open .c-service__btn {
    opacity: 0;
  }

  .c-service__btn a:hover {
    background: #fff;
    opacity: 0.5;
  }
}

.c-service__btn a {
  display: block;
  width: 100%;
  height: 100%;
}

.c-service__txt {
  display: none;
  text-align: justify;
}

.is-open .c-service__txt {
  display: block;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.016em;
  line-height: 2;
  color: #041c1c;
  padding-left: 71px;
  margin-top: 20px;

  /* transition: 0.5s ease-out; */
  /* opacity: 1; */
}

.c-service__img {
  display: none;
  transition: 0.5s ease-out;
}

.p-service__btn02 {
  margin-top: 64px;
  /* display: none; */
}

.p-service__btn02 a {
  margin-left: 26.78%;
}

@media screen and (max-width: 1199px) {
  .p-service__inner {
    padding-left: 6.666%;
  }
}

@media screen and (max-width: 979px) {
  .c-service__num {
    width: 100%;
    margin-right: 0;
  }

  .c-service__txt,
  .is-open .c-service__txt {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-service {
    margin-top: -48px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .p-service__inner {
    padding: 48px 0 64px;
    /*中 6.666%*/
  }

  .p-service__hdg {
    padding-left: 6.666%;
    /*中 6.666%*/
  }

  .p-service__contents {
    margin-top: 42px;
  }

  .p-service__unit01 {
    flex: 1 0 100%;
  }

  .c-service__sec {
    border-bottom: 1px solid #dee0e0;
    padding-top: 20px;
    padding-left: 6.666%;
  }

  .c-service__sec:first-child {
    border-top: 1px solid #dee0e0;
  }

  .c-service__box {
    padding-bottom: 20px;
    border: none;
  }

  .c-service__num,
  .is-open .c-service__num {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.01em;
    width: auto;
    padding-top: 2px;
    margin-right: 9px;
  }

  .c-service__hdg,
  .is-open .c-service__hdg {
    max-width: none;
    flex: 1 1 auto;
  }

  .c-service__hdg h3,
  .is-open .c-service__hdg h3 {
    font-size: 18px;
    line-height: 1;
    color: black;
  }

  .c-service__hdg p,
  .is-open .c-service__hdg p {
    font-size: 10px;
    line-height: 1;
    margin-top: 5px;
    padding-left: 1px;
    color: #9ea5a5;
  }

  .c-service__btn {
    position: absolute;
    top: 12px;
    left: auto;
    right: 24px;
    z-index: 100;
    width: 20px;
    height: 2px;
    background: transparent;
    height: 100%;
  }

  .c-service__btn a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .c-service__btn a:hover {
    background: transparent;
    height: 100%;
    opacity: 1;
  }

  .c-service__btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to bottom right, #fb0475 0%, #0be0e8 100%);
  }

  .c-service__btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to bottom right, #fb0475 0%, #0be0e8 100%);
    transform: translateY(2px) rotate(90deg);
    transition: all 0.3s ease;
  }

  .is-open .c-service__btn::before {
    background: linear-gradient(to bottom right, #0be0e8 0%, #fb0475 100%);
    transform: translateY(2px) rotate(180deg);
    transition: all 0.3s ease;
  }

  .c-service__img img,
  .is-open .c-service__img img {
    border-radius: 63.46vw 63.46vw 0 63.46vw;
  }

  .c-service__img {
    transition: all 0.6s ease;
    /* display: block; */
    opacity: 0;
    margin-top: 23px;
    padding-left: 29px;
  }

  .is-open .c-service__img {
    display: block;
    transition: all 0.6s ease;
    opacity: 1;
    margin-top: 23px;
    padding-left: 29px;
  }

  .is-open .c-service__txt {
    transition: all 0.6s ease;
    opacity: 1;
    padding-left: 0;
    padding-right: 6.666%;
    margin-top: 20px;
  }

  .c-service__txt {
    display: none;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.01em;
    opacity: 0;
    transition: all 0.6s ease;
    padding-left: 0;
    padding-right: 6.666%;
    margin-top: 20px;
  }

  .p-service__unit02 {
    display: none;
  }

  .p-service__btn02 {
    width: 100%;
    margin-top: 40px;
  }

  .p-service__btn02 a {
    margin-left: 6.666%;
  }
}

/* result */
/* ----------------------- */
.p-result {
  background: #f9f9f9;
  padding: 54px 0 64px;
  overflow: hidden;
}

.p-result__hdg {
  /* padding-left: 200px; */
  padding-left: 14.286%;
}

.p-result__list {
  margin-top: 67px;
}

.p-result__row {
  /* height: 170px; */
}

.p-result__row:not(:first-child) {
  margin-top: 21px;
}

@keyframes companyLogoAnimToLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(var(--transform_x));
  }
}

@keyframes companyLogoAnimToRight {
  0% {
    transform: translateX(var(--transform_x));
  }

  100% {
    transform: translateX(0);
  }
}

.p-result__box {
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  /* width: 1740px; */
  width: max-content;
}

#slide01 .p-result__box,
#slide03 .p-result__box {
  --transform_x: -50%;
  animation: companyLogoAnimToLeft 40s linear infinite;
}

#slide02 .p-result__box {
  --transform_x: -50%;
  animation: companyLogoAnimToRight 40s linear infinite;
  /* flex-direction: row-reverse; */
}

.p-result__item {
  padding-left: 2.285vw;
  flex: 0 0 20vw;
  aspect-ratio: 1.85 / 1;
}

.p-result__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.p-result__item img {
  max-width: 100%;
  max-height: 100%;
  /* width: auto;
    height: auto; */
  object-fit: contain;
}

.p-result__link {
  display: block;
}

@media screen and (max-width: 1199px) {
  .p-result__hdg {
    padding-left: 6.666%;
  }

  .p-result__row:not(:first-child) {
    margin-top: 16px;
  }

  .p-result__box {
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    width: max-content;
  }

  #slide01 .p-result__box,
  #slide03 .p-result__box {
    --transform_x: -50%;
    animation: companyLogoAnimToLeft 60s linear infinite;
  }

  #slide02 .p-result__box {
    --transform_x: -50%;
    animation: companyLogoAnimToRight 60s linear infinite;
  }

  .p-result__item {
    padding-left: 4.2666vw;
    flex: 0 0 45.6vw;
  }
}

/* company */
/* -------------------------------------- */
.p-company {
  padding-top: 94px;
  padding-bottom: 96px;
}

.p-company__definition {
  display: flex;
  flex-wrap: wrap;
  gap: 0 64px;
  font-size: 16px;
  margin-top: 81px;
}

.p-company__definition div {
  flex: 1 1 calc(50% - 32px);
  margin-top: 29px;
  max-width: calc(50% - 32px);
}

.p-company__definition dt {
  font-weight: normal;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fb0575;
}

.p-company__definition dd {
  font-weight: bold;
  letter-spacing: 0.016em;
  line-height: 1.5;
  padding-bottom: 26px;
  border-bottom: 1px solid #dee0e0;
  margin-top: 9px;
}

@media screen and (max-width: 768px) {
  .p-company {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .p-company__definition {
    gap: 0 0;
    font-size: 14px;
    margin-top: 25px;
  }

  .p-company__definition div {
    flex: 1 1 100%;
    max-width: 100%;
    /* margin-top: 29px; */
    /* max-width: calc(50% - 32px); */
  }

  .p-company__definition dd {
    margin-top: 8px;
  }
}

/* copy */
/* -------------------------------------- */
@keyframes copy {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(var(--transform_x));
  }
}

.p-copy {
  background: #fff;
  padding-bottom: 96px;
  overflow: hidden;
}

.p-copy__mask {
  width: calc(156.125vw * 2);
}

.p-copy__mask img {
  width: 156.125vw;
  --transform_x: calc(-100vw - 56.125vw);
  animation: copy 10s infinite linear;
}

@media screen and (max-width: 768px) {
  .p-copy {
    padding-bottom: 64px;
  }

  .p-copy__mask {
    width: calc(281vw * 2);
  }

  .p-copy__mask img {
    width: 281vw;
    --transform_x: calc(-100vw - 181vw);
    animation: copy 10s infinite linear;
  }
}

/* contact */
/* -------------------------------------- */
.p-contact {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to bottom right, #e2fdfe 0%, #fee2ef 100%);
  border-radius: 64px;
  padding-top: 94px;
  padding-bottom: 124px;
}

.p-contact__disc {
  margin-top: 78px;
}

.p-contact__disc h3 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.091em;
  line-height: 1;
}

.p-contact__disc p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 2.5625;
  margin-top: 39px;
}

.p-contact__btn {
  width: 100%;
  text-align: right;
  font-weight: 600;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .p-contact {
    padding-top: 60px;
    padding-bottom: 64px;
    border-radius: 24px;
  }

  .p-contact__disc {
    margin-top: 49px;
  }

  .p-contact__disc h3 {
    font-size: 24px;
    letter-spacing: 0.0064em;
    font-weight: 600;
  }

  .p-contact__disc p {
    font-size: 14px;
    letter-spacing: 0.0025em;
    line-height: 2.285;
    margin-top: 28px;
    font-weight: 600;
  }

  .p-contact__btn {
    width: 100%;
    text-align: left;
    margin-top: 40px;
    font-weight: 600;
  }
}

/* footer */
/* -------------------------------------- */
.l-footer {
  font-weight: bold;
  color: #fff;
  background: #2f2a2a;
  margin-top: -70px;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1400px;
  padding: 175px 100px 58px;
  margin: 0 auto;
  box-sizing: border-box;
}

.p-footer__unit {
  width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 16.5px;
}

.p-footer__copyright {
  font-size: 12px;
  letter-spacing: 0.016em;
  font-weight: 300;
  flex: 1 1 100%;
  margin-top: 70px;
}

.p-footer__company {
  margin-top: 17.8px;
}

.p-footer__company p {
  margin-top: 29px;
}

.p-footer__nav {
  flex: 1 1 100%;
}

.p-footer__logo img {
  width: auto;
}

.p-footer__company {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.714;
  letter-spacing: 0.016em;
}

.p-footer__links {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 29px;
}

.p-footer__company h3 {
  font-weight: 300;
}

.p-footer__list {
  display: inline-block;
  margin-top: 10px;
}

.p-footer__item {
  display: inline-block;
}

.p-footer__item a {
  font-family: "oswald", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-right: 40px;
}

.p-footer__item:last-child a {
  margin-right: 0;
}

.p-footer__item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #fb0475 0%, #0be0e8 100%);
  border-radius: 2px;
  margin-top: calc(8px + 3px);
}

.p-sns {
  font-family: "oswald", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-block;
}

.p-sns__hdg {
  display: inline-block;
  margin-right: 14px;
}

.p-sns__list {
  display: inline-block;
  height: 35.32px;
}

.p-sns__item {
  display: inline-block;
  margin-right: 20px;
  height: 35.32px;
  height: 100%;
}

.p-sns__item:last-child {
  margin-right: 0;
}

.p-sns__item img {
  height: 100%;
}

.p-footer__contact {
  display: inline-block;
}

.p-legal__pages {
  width: 600px;
  margin-top: 38px;
  font-size: 14px;
  color: #707070;
}

@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: -24px;
  }

  .l-footer__inner {
    padding: calc(54px + 24px) 5.333% 20px;
  }

  .p-footer__info {
    order: 3;
  }

  .p-footer__unit {
    order: 1;
  }

  .p-footer__links {
    order: 2;
  }

  .p-footer__copyright {
    order: 4;
  }

  .p-footer__item a::after {
    height: 2px;
    margin-top: 16px;
  }

  .p-footer__list {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 0.9;
  }

  .p-footer__item {
    display: block;
  }

  .p-footer__item a {
    display: block;
    width: 100%;
    padding-top: 16px;
    margin-right: 0;
  }

  .p-footer__item:first-child a {
    /* display: block; */
    /* width: 100%; */
    padding-top: 0;
    /* margin-right: 0; */
  }

  .p-footer__links {
    flex-wrap: nowrap;
    gap: 0 33.8px;
    margin-top: 40px;
  }

  .p-footer__info {
    margin-top: 32px;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: stretch;
    gap: 0 24.6px;
  }

  .p-footer__unit {
    width: 100%;
  }

  .p-footer__company {
    margin-top: 0;
  }

  .p-footer__logo {
    width: 75.38px;
    height: 73.95px;
  }

  .p-footer__logo img {
    width: 100%;
    height: auto;
  }

  .p-footer__company h3 {
    font-size: 16px;
    letter-spacing: 0.016em;
    line-height: 1.5;
    font-weight: 500;
  }

  .p-footer__company p {
    font-size: 12px;
    letter-spacing: 0.016em;
    line-height: 1.583;
    margin-top: 16px;
  }

  .p-footer__copyright {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.016em;
    line-height: 2.4;
    border-top: 1px solid #707070;
    padding-top: 16.5px;
    margin-top: 64.5px;
  }

  .p-sns {
    flex: 0 1 124.15px;
  }

  .p-sns__hdg {
    display: none;
  }

  .p-sns__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 16.5px;
    /* height: 27.48px; */
  }

  .p-sns__item {
    height: auto;
    margin-left: -5.333%;
    margin-right: -5.333%;
  }

  .p-legal__pages {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    color: #707070;
  }
}

/* utility */

.mt32 {
  margin-top: 32px;
}

.mt16 {
  margin-top: 16px;
}

.mt8 {
  margin-top: 8px;
}

@media screen and (min-width: 769px) {
  .u-only--pc {
    display: block;
  }

  .u-only--sp {
    display: none;
  }
}

@media screen and (max-width: 979px) {
  .u-only--pc {
    display: none;
  }

  .u-only--md {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-only--pc {
    display: none;
  }

  .u-only--sp {
    display: block;
  }
}

.p-blog {
  background-color: #fffcfe;
}

.l-blog__wrap {
  margin: 50px 0;
}

.l-blog__wrap > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .l-blog__wrap ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.l-blog__wrap img {
  width: 100%;
  height: auto;
  border-radius: 45px;
}

.l-blog__list-text h3 {
  line-height: 1.6;
  padding: 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-blog__list-text p {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-blog__list-tags {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.p-header__ttl h1 {
  display: none;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  font-family: "Lato", "Hiragino Kaku Gothic ProN", "ヒラギノ角コゴ ProN W3", "Meiryo", sans-serif;
  font-weight: bold;
}

.c-pagination > .page-numbers:not(.prev):not(.next):not(.dots) {
  font-size: 24px;
  position: relative;
  display: inline-block;
  padding: 0 10px 10px 10px;
}

.c-pagination > .page-numbers:not(.prev):not(.next):not(.dots):not(.current)::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #dee0e0;
  border-radius: 2px;
  left: 0;
  bottom: 0;
  margin-top: calc(8px + 3px);
}

.c-pagination .current::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #fb0475 0%, #0be0e8 100%);
  border-radius: 2px;
  left: 0;
  bottom: 0;
  margin-top: calc(8px + 3px);
}

.privacy-page-content p {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.016em;
  line-height: 2;
  color: #041c1c;
}

.privacy-page-content a {
  display: inline;
}

.privacy-page-content h3 {
  font-size: 18px;
  line-height: 1.77em;
  margin-top: 32px;
  margin-bottom: 16px;
}

.privacy-page-content h3:first-child {
  margin-top: 0px;
}

.l-page-banner {
  justify-content: space-between;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px 0%;
}

.l-page-banner > a {
  width: 49%;
}

.l-page-banner > a > img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-page-banner > a {
    width: 100%;
  }
}

/*404 pages*/

.l-page-404 {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom right, #e2fdfe 0%, #fee2ef 100%);
}

.l-page-404-wrap {
  padding: 240px 14.3% 114px;
  margin: 0 auto;
  justify-content: center;
}

.page-404-h1 {
  font-family: "Lato";
  font-size: 7rem;
  font-weight: 900;
  text-align: center;
}

.page-404-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 32px;
  line-height: 1.8;
}

.page-404-text-small {
  font-size: 16px;
  text-align: center;
  margin-top: 32px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .l-page-404-wrap {
    padding: 230px 3.3% 220px;
    justify-content: center;
  }

  .page-404-h1 {
    font-family: "Lato";
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
  }

  .page-404-text {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 32px;
    line-height: 1.8;
  }

  .page-404-text-small {
    font-size: 14px;
    text-align: center;
    margin-top: 32px;
    line-height: 2;
  }
}
