@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@900&display=swap");
/*================================================================
# mixin
================================================================ */
/*================================================================
# function
================================================================ */
/*================================================================
# color
================================================================ */
/*================================================================
# font
================================================================ */
/*================================================================
# common
================================================================ */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  line-height: 1.5;
  color: #000;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #F8F8F8;
  margin: 0;
}
body.is-fixed {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 90px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

a {
  text-decoration: none;
  color: #000;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 1500px) {
  a {
    font-size: 1.25rem;
  }
}
a:hover {
  opacity: 0.7;
}

html {
  margin: 0px !important;
}

p {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}
@media screen and (min-width: 1500px) {
  p {
    font-size: 1.25rem;
  }
}

/*================================================================
# main
================================================================ */
/*================================================================
# common
================================================================ */
.section {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section {
    margin-top: 80px;
  }
}

/* util
------------------------------------------------------------------- */
.util__title {
  font-size: clamp(1.5625rem, -1.5409482759rem + 6.4655172414vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  padding-top: 70px;
}
@media screen and (min-width: 1500px) {
  .util__title {
    font-size: 3.125rem;
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .util__title {
    padding-top: 30px;
  }
}

.util__subtitle {
  font-weight: 300;
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .util__subtitle {
    font-size: 0.8125rem;
    margin: 4px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .util__subtitle {
    font-size: 0.8125rem;
    margin: 10px 0 30px;
  }
}

.util__btn {
  background-color: transparent;
  background-image: linear-gradient(150deg, #94cfff 0%, #4F7CFF 50%, #94cfff 100%);
  background-size: 200% auto;
  border-radius: 70px;
  color: #fff;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.util__btn:hover {
  opacity: 0.8;
  background-position: 100% 0;
}

/*================================================================
# header
================================================================ */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 0.5em;
  margin-top: 2.604157vw;
}
@media screen and (max-width: 767px) {
  .header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
  }
}

.header__logo {
  margin-left: 3.125vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__logo img {
  width: 10.75vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 180px;
  }
}

.header__nav {
  margin-left: auto;
  margin-right: 3.125vw;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(0.625rem, -5.5818965517rem + 12.9310344828vw, 2.5rem);
     -moz-column-gap: clamp(0.625rem, -5.5818965517rem + 12.9310344828vw, 2.5rem);
          column-gap: clamp(0.625rem, -5.5818965517rem + 12.9310344828vw, 2.5rem);
}
.header__items a {
  color: #fff;
}
.header__items .header__item:last-child a {
  padding: 1.25rem 3.125rem;
  color: #fff !important;
  border-radius: 40px;
}

#fixed-header {
  position: fixed;
  top: -150px;
  width: 100%;
  height: auto;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  #fixed-header {
    padding: 15px;
  }
}
#fixed-header a {
  color: #000;
}

#fixed-header.is-show {
  top: 0;
}

.header2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .header2 {
    padding: 15px;
  }
}
.header2 a {
  color: #000;
}

/* drawer
------------------------------------------------------------------- */
.drawer-icon {
  position: relative;
  top: 4px;
  right: 15px;
  z-index: 301;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 25px;
  height: 2px;
  background: #4F7CFF;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  background: #fff;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-content .drawer-logo {
  padding: 0.5rem;
}
.drawer-content .drawer-logo img {
  width: 180px;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.drawer-content__items .header__item {
  margin: 30px auto;
}
.drawer-content__items .util__btn {
  padding: 20px 40px;
  color: #fff !important;
}

.drawer-content__item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(../img/arrow-b.png) no-repeat center center/contain;
}

/*================================================================
# top
================================================================ */
.top {
  background: url(../img/main-visual.jpg) center center/cover;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top {
    height: 66vw;
  }
}
@media screen and (max-width: 767px) {
  .top {
    height: 77vh;
  }
}

.top__filter {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.top__text--wrapper {
  position: absolute;
  left: 0;
  bottom: 20vh;
  color: #fff;
  height: auto;
  margin-left: 6.7708vw;
}

.top__title {
  font-size: clamp(2.875rem, -5.1939655172rem + 16.8103448276vw, 5.3125rem);
  line-height: 1.1;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 1500px) {
  .top__title {
    font-size: clamp(6.875rem, 4.6428571429rem + 2.380952381vw, 7.5rem);
    line-height: 0.925;
  }
}

.top__subtitle {
  margin: 20px 0 0 6.04166vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__subtitle {
    margin-top: 0;
    margin-left: max(6.04166vw, 60px);
  }
}
.top__subtitle::after {
  position: absolute;
  content: "";
  width: max(5.2083vw, 50px);
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: min(-5.2083vw, -50px);
}

.top__news {
  position: absolute;
  right: 0;
  bottom: 10vh;
  background-color: #fff;
  width: 37.8125vw;
  height: max(10.6771vw, 90px);
  border-radius: 40px;
  margin-right: 5.9896vw;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 3.125vw;
  row-gap: 10px;
}
@media screen and (min-width: 1500px) {
  .top__news {
    min-width: 500px;
    row-gap: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__news {
    bottom: 2vh;
    row-gap: 5px;
    min-width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .top__news {
    border-radius: 20px;
    row-gap: 10px;
    width: max(89.744vw, 350px);
    bottom: 3vh;
    right: -50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.top__news--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top__news--title {
  font-size: 1.5625rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top__news--title {
    font-size: 1.125rem;
  }
}

.top__news--subtitle {
  font-weight: 300;
}

.top__news--article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
}
@media screen and (max-width: 767px) {
  .top__news--article .top__news--day {
    font-size: 0.625rem;
  }
}

.p-singleWork {
  height: 100vh;
  margin-top: 100px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-singleWork {
    margin-top: 72.57px;
    padding-top: 40px;
  }
}

/*================================================================
# service
================================================================ */
@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.service {
  position: relative;
  overflow: hidden;
}
.service::after, .service::before, .service .service__circle {
  position: absolute;
  content: "";
  top: -10vw;
  right: -20vw;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(120deg, #c4dbff 0%, #94cfff 30%, #4F7CFF 60%);
}
.service::after {
  width: max(41vw, 400px);
  height: max(41vw, 400px);
}
@media screen and (max-width: 767px) {
  .service::after {
    width: max(41vw, 258px);
    height: max(41vw, 258px);
  }
}
.service::before, .service .service__circle {
  width: max(27.8vw, 300px);
  height: max(27.8vw, 300px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -7.2vw;
}
@media screen and (max-width: 767px) {
  .service::before, .service .service__circle {
    width: max(27.8vw, 278px);
    height: max(27.8vw, 278px);
    top: 35%;
    left: -20vw;
  }
}
.service .service__circle {
  background: linear-gradient(-120deg, #c4dbff 0%, #94cfff 30%, #4F7CFF 60%);
  top: 87%;
  left: auto;
  right: -10vw;
}
@media screen and (max-width: 767px) {
  .service .service__circle {
    top: 100%;
    right: -35vw;
  }
}

.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 80px;
  margin-top: 40px;
  margin-bottom: 160px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__items {
    row-gap: 40px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1500px) {
  .service__items {
    margin-top: 60px;
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .service__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    row-gap: 30px;
    margin-bottom: 60px;
  }
}

.service__item {
  width: 47.142857%;
  padding: 60px;
  background-color: #fff;
  border-radius: 43px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1500px) {
  .service__item {
    padding: 70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__item {
    padding: max(4.557292vw, 35px);
  }
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
    padding: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.service__item img {
  border-radius: 10px;
}
.service__item h3 {
  font-size: 1.5625rem;
  font-weight: bold;
  text-align: center;
  color: #4F7CFF;
  margin-top: 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1500px) {
  .service__item h3 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .service__item h3 {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .service__item p {
    line-height: 2.3076923077;
  }
}

/*================================================================
# cta
================================================================ */
.cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 21.875vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cta__inner {
    height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .cta__inner {
    height: auto;
  }
}
.cta__inner .cta__inner--img {
  width: 48vw;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__inner .cta__inner--img {
    display: none;
  }
}
.cta__inner .cta__inner--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 130%;
     object-position: 100% 130%;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.cta__inner .cta__inner--img::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#EBF6FF));
  background: linear-gradient(to right, transparent, #EBF6FF);
}
.cta__inner .cta__right {
  width: calc(100% - 48vw);
  background: #EBF6FF 0% 0% no-repeat padding-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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 (min-width: 768px) and (max-width: 1199px) {
  .cta__inner .cta__right {
    row-gap: max(1.30208vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .cta__inner .cta__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    row-gap: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cta__inner .cta__right .cta__text {
  text-align: center;
}

.cta__btn {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  padding: 25px 50px;
}
@media screen and (min-width: 1500px) {
  .cta__btn {
    padding: 45px 110px;
    font-size: 1.5625rem;
  }
}

/*================================================================
# about
================================================================ */
.about__contents {
  margin-top: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  -webkit-column-gap: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
     -moz-column-gap: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
          column-gap: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__contents {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about__contents {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about__contents > img {
  width: 42.7142%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .about__contents > img {
    width: 55.5224%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.about__contents::after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 80px;
  right: 20px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  width: 31.145833vw;
  height: 20vw;
  background-image: linear-gradient(120deg, #c4dbff 0%, #94cfff 30%, #4F7CFF 60%);
  border-radius: 30% 66% 40% 56%/64% 53% 41% 30%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__contents::after {
    bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about__contents::after {
    top: 7vh;
    bottom: 0;
    right: 70px;
    width: 55vw;
    height: 33vw;
  }
}

.about__left {
  width: 42.57%;
}
@media screen and (max-width: 767px) {
  .about__left {
    width: 100%;
  }
}

.about__title {
  font-weight: bold;
  color: #4F7CFF;
  font-size: clamp(1.125rem, -2.3922413793rem + 7.3275862069vw, 2.1875rem);
}
@media screen and (min-width: 1500px) {
  .about__title {
    font-size: clamp(2.8125rem, 1.6964285714rem + 1.1904761905vw, 3.125rem);
  }
}
@media screen and (max-width: 767px) {
  .about__title {
    text-align: center;
  }
}
.about__title span {
  font-size: clamp(1.125rem, -2.3922413793rem + 7.3275862069vw, 2.1875rem);
  font-weight: bold;
  color: #000;
}
@media screen and (min-width: 1500px) {
  .about__title span {
    font-size: 2.8125rem;
  }
}

.about__left--subtitle {
  font-size: clamp(0.8125rem, -0.4288793103rem + 2.5862068966vw, 1.1875rem);
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__left--subtitle {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about__left--subtitle {
    margin-top: 8px;
    text-align: center;
  }
}

.about__left--text {
  margin-top: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__left--text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about__left--text {
    margin-top: 30px;
    text-align: center;
  }
}

.about__left--img {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 16.2751%;
     -moz-column-gap: 16.2751%;
          column-gap: 16.2751%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__left--img {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about__left--img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}
.about__left--img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 22.9865%;
}
.about__left--img img:last-child {
  width: 39.5973%;
}

/* merit
------------------------------------------------------------------- */
.about__merit--title {
  margin-top: 110px;
  margin-bottom: 100px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__merit--title {
    margin-top: 50px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .about__merit--title {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

.about__merit {
  overflow: hidden;
  height: 750px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__merit {
    height: clamp(27.5rem, 4.7413793103rem + 47.4137931034vw, 34.375rem);
  }
}
@media screen and (min-width: 1500px) {
  .about__merit {
    height: 800px;
  }
}
@media screen and (max-width: 767px) {
  .about__merit {
    height: 450px;
    height: clamp(28.125rem, 20.256294964rem + 35.9712230216vw, 37.5rem);
  }
}

.about__items {
  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) {
  .about__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.about__item {
  margin: 0 auto;
  width: 33.33333%;
  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;
}
@media screen and (max-width: 767px) {
  .about__item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .about__item:first-child {
    width: 51%;
  }
}

.about__item--circle {
  background-color: #fff;
  width: 17.03125vw;
  height: 17.03125vw;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  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;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about__item--circle {
    margin-top: 0;
    width: 25.641vw;
    height: 25.641vw;
  }
}
.about__item--circle img {
  width: 61.162%;
  -o-object-fit: contain;
     object-fit: contain;
}

.middle-circle {
  margin-top: 0;
}

.about__merit--background {
  margin-top: -330px;
  background: #4F7CFF;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 800px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__merit--background {
    margin-top: -240px;
  }
}
@media screen and (max-width: 767px) {
  .about__merit--background {
    height: clamp(17.5rem, 13.8279376499rem + 16.7865707434vw, 21.875rem);
    margin-top: -230px;
  }
}

.about__item--text {
  color: #fff;
  text-align: center;
  font-weight: 300;
  margin-top: 20px;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}
@media screen and (min-width: 1500px) {
  .about__item--text {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .about__item--text {
    margin-top: 15px;
    font-size: 0.625rem;
  }
}

/* table
------------------------------------------------------------------- */
.compare {
  background: #4F7CFF;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .compare {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .compare {
    padding-bottom: 30px;
  }
}

.compare__title {
  color: #fff;
  font-size: clamp(1.5625rem, -1.5409482759rem + 6.4655172414vw, 2.5rem);
  font-weight: bold;
  text-align: center;
}

.compare__contents {
  margin-top: 60px;
  background-color: #fff;
  padding: 170px 100px 94px;
  border-radius: 60px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .compare__contents {
    padding: 70px;
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .compare__contents {
    padding: 110px 25px 60px;
    overflow: scroll;
    margin-top: 30px;
  }
}

.compare__table {
  text-align: center;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}
@media screen and (min-width: 1500px) {
  .compare__table {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .compare__table {
    width: 840px;
  }
}
.compare__table thead td {
  background-color: rgba(79, 124, 255, 0.5019607843);
}
.compare__table th {
  font-weight: bold;
  width: 12.75%;
  padding: 30px 0;
  border: 1px solid #707070;
  vertical-align: middle;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}
@media screen and (min-width: 1500px) {
  .compare__table th {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .compare__table th {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 13.095238%;
  }
}
.compare__table thead tr th {
  border: none;
}
.compare__table td {
  font-weight: bold;
  padding: 30px 0;
  width: 29.0833333333%;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .compare__table td {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 25px 0;
  }
}
.compare__table .compare__gangurru {
  color: #4F7CFF;
  border-left: 6px solid #4F7CFF;
  border-right: 6px solid #4F7CFF;
}
.compare__table .compare__gangurru--top {
  color: #fff;
  background-color: #4F7CFF;
  padding: 0 0 30px 0;
  font-size: clamp(1.5rem, -0.775862069rem + 4.7413793103vw, 2.1875rem);
  position: relative;
}
.compare__table .compare__gangurru--top::after {
  position: absolute;
  content: "";
  top: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 12px);
  height: 34px;
  background-color: #4F7CFF;
  border-radius: 30px 30px 0 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .compare__table .compare__gangurru--top::after {
    top: -15px;
    height: 16px;
  }
}
.compare__table .compare__gangurru--top .compare__contents--text {
  color: #4F7CFF;
  font-size: clamp(0.9375rem, -1.1314655172rem + 4.3103448276vw, 1.5625rem);
  font-weight: bold;
  position: absolute;
  width: 100%;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .compare__table .compare__gangurru--top .compare__contents--text {
    top: -50px;
    width: 120%;
  }
}
.compare__table .compare__gangurru--bottom {
  border-bottom: 6px solid #4F7CFF;
}
.compare__table .compare__site {
  margin: 0 auto;
  text-align: left;
  vertical-align: middle;
  padding-left: 6%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .compare__table .compare__site {
    padding-left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .compare__table .compare__site {
    padding-left: 8%;
  }
}
.compare__table .compare__site .compare__dot {
  position: relative;
}
.compare__table .compare__site .compare__dot::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .compare__table .compare__site .compare__dot::after {
    width: 8px;
    height: 8px;
    left: -10px;
  }
}
.compare__table .compare__site--second {
  padding-left: 4%;
}
.compare__table .compare__gangurru .compare__dot::after {
  background-color: #4F7CFF;
}
.compare__table .compare__gangurru .compare__large {
  font-size: 2.1875rem;
  line-height: 0.5714285714;
  font-weight: bold;
}

/*================================================================
# work voice
================================================================ */
/*================================================================
# blog
================================================================ */
/*================================================================
# contact
================================================================ */
.contact {
  background-color: #fff;
  width: 100%;
  height: auto;
  padding-bottom: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 100px;
  }
}

.contact__title, .contact__subtitle {
  -moz-text-align-last: left;
       text-align-last: left;
}

.contact__required {
  color: #FF0000;
}

.contact__middle--title {
  background-image: linear-gradient(150deg, #4F7CFF 0%, #94cfff 33%, #4F7CFF 66%, #94cfff 100%);
  color: #fff;
  font-weight: 500;
  padding: 20px 30px;
  margin-top: 40px;
  margin-bottom: 50px;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__middle--title {
    margin-top: 25px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1500px) {
  .contact__middle--title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__middle--title {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 20px 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__contents {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact__contents {
    margin-left: 0;
  }
}
.contact__contents .contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
  margin-top: 80px;
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__contents .contact__items {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact__contents .contact__items {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
.contact__contents .contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  width: 48.48484%;
}
.contact__contents .contact__item:first-child {
  position: relative;
}
.contact__contents .contact__item:first-child::after {
  position: absolute;
  content: "";
  top: 45%;
  right: 5%;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .contact__contents .contact__item:first-child::after {
    top: 65%;
    right: 6%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__contents .contact__item {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact__contents .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact__contents .contact__item > p {
  width: calc(100% - 20px - clamp(7.1875rem, -0.0538793103rem + 15.0862068966vw, 9.375rem));
  display: block;
}
@media screen and (min-width: 1500px) {
  .contact__contents .contact__item > p {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 767px) {
  .contact__contents .contact__item > p {
    width: 100%;
  }
}
.contact__contents .contact__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.contact__contents .contact__check p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact__contents .contact__check .wpcf7-list-item {
  margin-right: 20px;
}
.contact__contents .contact__check a {
  text-decoration: underline;
  opacity: 0.8;
}
.contact__contents .contact__check a:hover {
  opacity: 0.6;
}
.contact__contents .contact__send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
  margin-bottom: 70px;
}
.contact__contents .contact__send .wpcf7-submit {
  width: 200px;
  border-radius: 50px;
  background-image: linear-gradient(150deg, #94cfff 0%, #4F7CFF 50%, #94cfff 100%);
  background-size: 200% auto;
  color: #fff;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__contents .contact__send .wpcf7-submit {
    width: 175px;
  }
}
.contact__contents .contact__send .wpcf7-submit:hover {
  opacity: 0.8;
  background-position: 100% 0;
}
.contact__contents .contact__send .wpcf7-submit:disabled {
  background-image: linear-gradient(150deg, #999 0%, #999 100%);
  color: #000;
  cursor: not-allowed;
}
.contact__contents .contact__send .wpcf7-spinner {
  display: none;
}
.contact__contents .contact__text p {
  width: clamp(7.1875rem, -0.0538793103rem + 15.0862068966vw, 9.375rem);
}
@media screen and (min-width: 1500px) {
  .contact__contents .contact__text p {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .contact__contents .contact__text p {
    margin-bottom: 8px;
  }
}
.contact__contents select, .contact__contents input {
  width: 100%;
  background-color: #F8F8F8;
  border-radius: 20px;
  padding: 30px 40px;
  border: none;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}
@media screen and (min-width: 1500px) {
  .contact__contents select, .contact__contents input {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__contents select, .contact__contents input {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 767px) {
  .contact__contents select, .contact__contents input {
    padding: 20px 30px;
  }
}
.contact__contents select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.contact__contents select::-ms-expand {
  display: none;
}
.contact__contents .contact__item--textarea {
  width: 100%;
}
.contact__contents textarea {
  padding: 30px 40px;
  width: 100%;
  border-radius: 20px;
  border: none;
  background-color: #F8F8F8;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}
@media screen and (min-width: 1500px) {
  .contact__contents textarea {
    font-size: 1.25rem;
  }
}

/* line
------------------------------------------------------------------- */
.contact__line--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .contact__line--items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    margin-top: 35px;
  }
}

.contact__line--item {
  background-color: #F8F8F8;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  padding: 60px 85px;
  width: 40.7142%;
  height: 500px;
  border-radius: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__line--item {
    padding: 40px 15px;
    height: clamp(21.875rem, -9.1594827586rem + 64.6551724138vw, 31.25rem);
  }
}
@media screen and (max-width: 767px) {
  .contact__line--item {
    width: 100%;
    padding: 42px 25px;
    height: auto;
  }
}
.contact__line--item .contact__line--img {
  width: 80%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__line--item .contact__line--img {
    width: 80%;
  }
}

.contact__line--title {
  background-color: #07B700;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
  border-radius: 40px;
  position: relative;
}
.contact__line--title:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: 15px solid #07B700;
  width: 0;
  height: 0;
}

.contact__line--from {
  background-color: #fff;
  border: 2px solid #07B700;
  border-radius: 50px;
  padding: 25px 35px;
  margin-top: 65px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (min-width: 1500px) {
  .contact__line--from {
    width: 120%;
    margin-left: -10%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__line--from {
    margin-top: clamp(2.1875rem, -5.0538793103rem + 15.0862068966vw, 4.375rem);
    margin-bottom: clamp(1.25rem, -2.8879310345rem + 8.6206896552vw, 2.5rem);
    padding: 15px 25px;
  }
}
@media screen and (max-width: 767px) {
  .contact__line--from {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 15px 25px;
  }
}
.contact__line--from .fa-magnifying-glass {
  font-size: 2.1875rem;
  font-weight: 900;
}

.contact__line--text {
  text-align: center;
}

.p-contactForm {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .p-contactForm {
    margin-top: 0;
  }
}

.p-contactForm__group {
  padding: 15px 0;
}
@media screen and (min-width: 1200px) {
  .p-contactForm__group {
    padding: 30px 0;
  }
}

.p-contactForm__ttl {
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .p-contactForm__ttl {
    font-size: 16px;
  }
}
.p-contactForm__ttl::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-contactForm__text {
  margin-top: 10px;
}

.u-required__contact {
  color: red;
  margin-left: 5px;
  font-size: 16px;
}

/*================================================================
# footer
================================================================ */
.footer {
  background: #4469D5;
  padding-top: 70px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer {
    padding-top: 35px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 30px;
  }
}
.footer > p {
  margin-top: 70px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer > p {
    margin-top: 50px;
  }
}

.footer-inner {
  max-width: 1260px;
  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) {
  .footer-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;
  }
}

.footer__left {
  width: 33.33333%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__left {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 70%;
  }
}

.footer__items {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 30px;
}
.footer__items a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__items {
    display: none;
  }
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  width: 33.3333%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__right {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    row-gap: 20px;
  }
}
.footer__right > p {
  color: #fff;
  position: relative;
}
.footer__right > p::after, .footer__right > p::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 2px;
  height: 20px;
  background-color: #fff;
}
.footer__right > p::after {
  left: -20px;
}
.footer__right > p::before {
  right: -15px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.footer__right .footer__right--link, .footer__right .footer__right--mail {
  background-color: #fff;
  padding: 35px;
  width: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__right .footer__right--link, .footer__right .footer__right--mail {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__right .footer__right--link, .footer__right .footer__right--mail {
    padding: 20px;
  }
}
.footer__right .fa-line, .footer__right .fa-envelope {
  font-size: 2.5rem;
  color: #07B700;
  line-height: 0.5;
}
.footer__right .fa-envelope {
  color: #000;
}

.footer__logo {
  width: 250px;
}

.p-work__contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-top: 100px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-work__contents {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 72.57px;
    padding-top: 40px;
  }
}

.p-work__item {
  position: relative;
  display: grid;
  grid-row: span 2;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}
.p-work__item img {
  aspect-ratio: 350/233;
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-work__item img {
    aspect-ratio: 390/390;
  }
}

.p-work__itemTtl {
  font-size: 13px;
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .p-work__itemTtl {
    margin-top: 16px;
  }
}

.p-work__itemDate {
  font-size: 11px;
}
@media screen and (min-width: 1200px) {
  .p-work__itemDate {
    font-size: 13px;
  }
}