@charset "UTF-8";
/* 
Theme Name: General Office
Description: General Office Original Theme
Version: 1.0
Author: General Office
 */
* {
  font-family: "Noto Sans JP", sans-serif;
}

p,
a,
li {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1em;
}

a {
  color: #0071e0;
}
a:hover {
  color: #0052a4;
}

br.sp {
  display: none;
}
@media screen and (max-width: 575px) {
  br.sp {
    display: inline-block;
  }
}

br.tb-pc {
  display: inline-block;
}
@media screen and (max-width: 575px) {
  br.tb-pc {
    display: none;
  }
}

span.nowrap {
  white-space: nowrap;
}

/*
============================================
Snow Monkey Forms
============================================
*/
.smf-progress-tracker__item__number {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.form-box {
  background: #fff;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
  border: 1px solid #0071e0;
  border-radius: 1rem;
}
@media screen and (min-width: 992px) {
  .form-box {
    padding: var(--spacing-l);
  }
}
@media screen and (max-width: 991px) {
  .form-box {
    padding: var(--spacing-s);
  }
}
.form-box .snow-monkey-form {
  margin-top: var(--spacing-m);
}
.form-box .smf-form {
  max-width: 760px;
  margin-top: var(--spacing-m);
  margin-left: auto;
  margin-right: auto;
}
.form-box .smf-item {
  margin-bottom: var(--spacing-xs);
}
.form-box .smf-item__description {
  font-size: 12px;
}
.form-box .mandatory .smf-item__description {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.6em;
  background: #0071e0;
  color: #fff;
  border-radius: 5px;
}
.form-box .smf-text-control__control,
.form-box .smf-textarea-control__control {
  border: 1px solid #0071e0;
  border-radius: 5px;
  background-color: #fff;
}
.form-box .smf-button-control__control {
  border-radius: 5px;
}

/*
============================================
for GSAP
============================================
*/
.js-fade-in {
  opacity: 0;
}

:root {
  --spacing-xxs: 5px;
  --spacing-xs: 15px;
  --spacing-s: 30px;
  --spacing-m: 60px;
  --spacing-l: 90px;
  --spacing-xl: 120px;
}

@media screen and (min-width: 992px) {
  :root {
    --spacing-xs: 20px;
    --spacing-s: 40px;
    --spacing-m: 80px;
    --spacing-l: 120px;
    --spacing-xl: 160px;
  }
}
/*
============================================
Button Designs
============================================
*/
.c-button--type-a {
  display: flex;
  align-items: center;
  gap: 1em;
}
.c-button--type-a .text {
  color: #0071e0;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button--type-a .icon {
  position: relative;
  border: 1px solid #0071e0;
  border-radius: 100%;
  color: #0071e0;
  width: 2.5em;
  height: 2.5em;
}
.c-button--type-a .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2em;
  height: 1.2em;
}

.c-button--type-b {
  background: #2491ff;
  background: linear-gradient(135deg, rgb(36, 145, 255) 0%, rgb(2, 125, 247) 60%, rgb(0, 113, 224) 100%);
  padding: var(--spacing-xs) var(--spacing-s);
  border: 1px solid #0071e0;
  border-radius: 1000px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1em;
}
.c-button--type-b .text {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button--type-b .icon {
  position: relative;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 100%;
  width: 2.5em;
  height: 2.5em;
}
.c-button--type-b .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2em;
  height: 1.2em;
}

.c-button--type-b:hover {
  background: #fff;
  color: #0071e0;
  transition: all 0.3s ease;
}
.c-button--type-b:hover .text {
  position: relative;
  color: #0071e0;
  transition: all 0.3s ease;
}
.c-button--type-b:hover .text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: solid 1px #0071e0;
  animation: border_animation 0.2s linear forwards;
}
@keyframes border_animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.c-button--type-b:hover .icon {
  transition: all 0.3s ease;
  background-color: #0071e0;
  color: #fff;
}

.c-button--type-c .icon {
  margin: auto;
  display: block;
  position: relative;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 100%;
  width: 2.5em;
  height: 2.5em;
}
.c-button--type-c .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2em;
  height: 1.2em;
}

.c-contact {
  background-color: #0052a4;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
  text-align: center;
  padding: var(--spacing-m) var(--spacing-s);
  border: 1px solid #0052a4;
  border-radius: 1rem;
}
.c-contact:hover {
  background-color: #fff;
  color: #0052a4;
  transition: all 0.3s ease;
}
.c-contact:hover .icon {
  background-color: #0052a4;
  color: #fff;
  transition: all 0.3s ease;
}
.c-contact:hover .c-contact__ttl,
.c-contact:hover .c-contact__text {
  color: #0052a4;
  transition: all 0.3s ease;
}
.c-contact__ttl {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 42px;
  margin-bottom: var(--spacing-s);
  color: #fff;
}
@media screen and (min-width: 992px) {
  .c-contact__ttl {
    font-size: 36px;
  }
}
.c-contact__text {
  color: #fff;
  margin-bottom: var(--spacing-s);
}

.c-button--justify-right {
  justify-content: flex-end;
}

/*
============================================
Header Designs
============================================
*/
.c-page-header {
  position: relative;
  height: 33.33vw;
  background: #d9eaff;
  background: linear-gradient(90deg, rgb(217, 234, 255) 0%, rgb(186, 221, 255) 40%, rgb(153, 204, 255) 100%);
  color: #0071e0;
  z-index: 0;
}

.c-page-header__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  position: relative;
  height: 100%;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .c-page-header__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .c-page-header__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-page-header__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 42px;
  padding-right: min(5vw, 28.75px);
  padding-left: min(5vw, 28.75px);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .c-page-header__title {
    font-size: 36px;
  }
}
.c-page-header__title h1 {
  position: relative;
  padding-left: 0.85em;
}
.c-page-header__title h1::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(50%, -50%);
  height: 0.35em;
  width: 0.35em;
  border-radius: 100%;
  background-color: #0071e0;
}

.l-header {
  opacity: 0;
  position: fixed;
  top: min(2.5vw, 30px);
  left: 0;
  width: 100%;
  z-index: 1000;
}
.l-header a {
  font-size: 15px;
}

.l-header .l-site-logo img {
  height: 30px;
  width: auto;
}
@media screen and (min-width: 992px) {
  .l-header .l-site-logo img {
    height: 39px;
  }
}

.l-branding-container {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .l-branding-container {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .l-branding-container {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-branding {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.5em;
}
@media screen and (max-width: 575px) {
  .l-branding {
    padding: 0.75em 1.5em;
  }
}

/* ハンバーガーメニューのスタイル */
@media screen and (max-width: 991px) {
  /* チェックボックスを非表示にする */
  .l-drawer_hidden {
    display: none;
  }
  /* ハンバーガーアイコンの設置スペース */
  .l-drawer_open {
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100; /* 重なり順を一番上にする */
    cursor: pointer;
  }
  /* ハンバーガーメニューのアイコン */
  .l-drawer_open span,
  .l-drawer_open span:before,
  .l-drawer_open span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  /* 三本線の一番上の棒の位置調整 */
  .l-drawer_open span:before {
    bottom: 8px;
  }
  /* 三本線の一番下の棒の位置調整 */
  .l-drawer_open span:after {
    top: 8px;
  }
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #l-drawer_input:checked ~ .l-drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #l-drawer_input:checked ~ .l-drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #l-drawer_input:checked ~ .l-drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /* メニューのデザイン*/
  .l-main-navigation ul {
    visibility: hidden;
    width: calc(100% - min(10vw, 50px));
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-s);
    position: fixed;
    bottom: 100%;
    left: min(25px, 5vw);
    z-index: 99;
    background: rgb(255, 255, 255);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  /* アイコンがクリックされたらメニューを表示 */
  #l-drawer_input:checked ~ .l-main-navigation ul {
    visibility: visible;
    top: 0%;
  }
}
@media screen and (min-width: 992px) {
  .l-navigation-container {
    display: flex;
  }
  .l-drawer_open span {
    display: none; /* デスクトップではチェックボックスを非表示 */
  }
  /* Flex Layout for navigations on PC */
  .l-branding .l-main-navigation ul {
    display: flex;
    list-style: none;
  }
  .l-branding .l-main-navigation ul li {
    margin: 0 15px;
  }
  .l-branding .l-main-navigation ul li a {
    padding: 0.2em 0;
    font-weight: 500;
  }
  .l-branding .l-main-navigation ul li a:hover {
    position: relative;
  }
  .l-branding .l-main-navigation ul li a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: solid 1px #0052a4;
    animation: border_animation 0.2s linear forwards;
  }
  @keyframes border_animation {
    0% {
      width: 0%;
    }
    100% {
      width: 100%;
    }
  }
  /* Sub Menu Design */
  .l-main-navigation li {
    position: relative;
  }
  .l-main-navigation .sub-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 30px;
    left: 0;
    padding: 5px;
    overflow: hidden;
    height: 0;
    transition: 0.8s;
    opacity: 0;
    background-color: rgba(224, 240, 255, 0.9);
    border-radius: 2px;
  }
  .l-main-navigation li:hover .sub-menu {
    height: auto;
    transform: translateY(0);
    opacity: 1;
  }
  .l-main-navigation .sub-menu li {
    display: block;
    width: 10em;
    margin-left: 0;
    padding: 1px 5px;
    border-bottom: 1px solid #0052a4;
  }
  .l-main-navigation .menu-item-has-children:nth-last-child(1) .sub-menu,
  .l-main-navigation .menu-item-has-children:nth-last-child(2) .sub-menu {
    right: 0;
    left: auto;
  }
}
.l-footer__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  padding-top: var(--spacing-m);
  padding-bottom: var(--spacing-m);
  border-top: 1px solid #0071E0;
  text-align: center;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .l-footer__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .l-footer__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-footer__logo img {
  width: 220px;
  height: auto;
  margin-top: var(--spacing-s);
  margin-bottom: var(--spacing-s);
}

.l-footer__copyright {
  text-align: center;
  background-color: #0052A4;
  padding-top: var(--spacing-xxs);
  padding-bottom: var(--spacing-xxs);
}
.l-footer__copyright p {
  margin-bottom: 0;
  color: #fff;
}

.l-content-body {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  padding-top: var(--spacing-l);
  padding-bottom: var(--spacing-l);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .l-content-body {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .l-content-body {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-home-hero {
  position: relative;
}
@media screen and (max-width: 575px) {
  .p-home-hero {
    height: 100vw;
    min-height: 377px;
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-hero {
    height: 100vw;
    min-height: 374px;
  }
}
@media screen and (min-width: 992px) {
  .p-home-hero {
    min-height: 504px;
    height: 100vh;
  }
}

.p-home-hero__circles {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 991px) {
  .p-home-hero__circles {
    overflow: hidden;
  }
  .p-home-hero__circles svg {
    width: 120%;
    transform: translateX(-10%);
  }
}

.p-home-hero__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-hero__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-home-hero__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-home-hero__inner {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.p-home-hero__content {
  padding-right: min(5vw, 28.75px);
  padding-left: min(5vw, 28.75px);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

ul.p-home-hero__list {
  display: flex;
  flex-direction: row;
}
ul.p-home-hero__list li {
  position: relative;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  padding-left: 0.85em;
  padding-right: 0.5em;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  ul.p-home-hero__list li {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  ul.p-home-hero__list li {
    font-size: 30px;
  }
}
ul.p-home-hero__list li::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background-color: #0071e0;
  border-radius: 100%;
  z-index: 1;
}

.p-home-hero__text {
  margin: 8px 0;
}
.p-home-hero__text-item {
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 575px) {
  .p-home-hero__text-item {
    font-size: 32px;
    margin-bottom: 0;
    line-height: 42px;
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-hero__text-item {
    font-size: 42px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-home-hero__text-item {
    font-size: 60px;
    margin-bottom: 0;
  }
}
.p-home-hero__text-item--emphasis {
  color: #0071e0;
}

.p-home-hero__text-item span {
  /* transformプロパティを有効にするため */
  display: inline-block;
}

/*
============================================
About Section
============================================
*/
.p-home-about {
  position: relative;
  background-color: rgba(224, 240, 255, 0.9);
}

.p-home-about__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-about__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-home-about__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .p-home-about__inner {
    padding-top: max(17vw, var(--spacing-xl));
    padding-bottom: max(55vw, var(--spacing-xl));
  }
}
@media screen and (min-width: 992px) {
  .p-home-about__inner {
    padding-top: max(17vw, var(--spacing-xl));
    padding-bottom: max(22vw, var(--spacing-xl));
  }
}

.p-home-about__sub-ttl {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 28px;
}
@media screen and (min-width: 992px) {
  .p-home-about__sub-ttl {
    font-size: 22.5px;
  }
}
@media screen and (max-width: 575px) {
  .p-home-about__sub-ttl {
    font-size: 18px;
    line-height: 28.8px;
  }
}

.p-home-about__ttl {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 42px;
}
@media screen and (min-width: 992px) {
  .p-home-about__ttl {
    font-size: 36px;
  }
}
.p-home-about__ttl span.emphasis {
  color: #0071e0;
}

.p-home-about__body {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "lead" "text-area" "image";
  align-content: start;
}
@media screen and (min-width: 992px) {
  .p-home-about__body {
    grid-template-columns: 45% auto;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "lead image" "text-area image";
    -moz-column-gap: min(5vw, 72px);
         column-gap: min(5vw, 72px);
    row-gap: var(--spacing-s);
  }
}
.p-home-about__body .p-home-about__lead {
  grid-area: lead;
  align-self: end;
}
.p-home-about__body .p-home-about__image {
  width: 55%;
  position: absolute;
  bottom: 0;
  right: 0;
  grid-area: image;
  text-align: center;
}
.p-home-about__body .p-home-about__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: circle(74% at 76% 74%);
}
.p-home-about__body .p-home-about__text-area {
  grid-area: text-area;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}
/*
============================================
What We Do Section
============================================
*/
.p-home-what-we-do__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-what-we-do__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-home-what-we-do__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-home-what-we-do__ttl {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 42px;
  margin-bottom: var(--spacing-s);
  color: #0071e0;
}
@media screen and (min-width: 992px) {
  .p-home-what-we-do__ttl {
    font-size: 36px;
  }
}

.p-home-what-we-do__text {
  font-size: 18px;
}

.p-home-what-we-do__figure {
  margin-top: var(--spacing-m);
  text-align: center;
}
.p-home-what-we-do__figure img {
  max-width: 100%;
}

.p-home-what-we-do .dots {
  margin-top: var(--spacing-m);
  margin-bottom: var(--spacing-m);
}
.p-home-what-we-do .dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #79beff;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
}

.p-home-what-we-do__solution-text {
  text-align: center;
}
.p-home-what-we-do__solution-text .heading {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
  line-height: 36px;
}
@media screen and (min-width: 992px) {
  .p-home-what-we-do__solution-text .heading {
    font-size: 29.25px;
  }
}
.p-home-what-we-do__solution-text .emphasis {
  background: #3aa7ff;
  background: linear-gradient(135deg, rgb(58, 167, 255) 0%, rgb(16, 118, 208) 33%, rgb(0, 82, 163) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*
============================================
Service Section
============================================
*/
.p-home-service {
  background: #e6f2ff;
}

.p-home-service__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-service__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-home-service__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-home-service__ttl {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 42px;
  margin-bottom: var(--spacing-s);
  color: #0071e0;
}
@media screen and (min-width: 992px) {
  .p-home-service__ttl {
    font-size: 36px;
  }
}

.p-home-service__lead {
  text-align: center;
  margin-bottom: var(--spacing-m);
}

.p-home-service__text {
  font-size: 18px;
}
.p-home-service__text .emphasis {
  color: #0071e0;
}

.p-home-service__boxes {
  display: flex;
  gap: var(--spacing-xs);
}
@media screen and (min-width: 992px) {
  .p-home-service__boxes {
    flex-direction: row;
    align-items: stretch;
  }
}
@media screen and (max-width: 991px) {
  .p-home-service__boxes {
    flex-direction: column;
  }
}
.p-home-service__boxes > * {
  flex: 1;
  background-color: #fff;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
  border-radius: 1rem;
  padding: var(--spacing-m) var(--spacing-s);
}
.p-home-service__boxes > *:hover {
  background-color: #f8f8f8;
  transition-duration: 0.3s;
}

.p-home-service__box:hover .c-button .text {
  position: relative;
}
.p-home-service__box:hover .c-button .text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: solid 1px #0071e0;
  animation: border_animation 0.2s linear forwards;
}
@keyframes border_animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.p-home-service__box:hover .c-button .icon {
  background-color: #0071e0;
  color: #fff;
  transition: all 0.3s ease;
}
.p-home-service__box .p-home-service__box-ttl {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
  line-height: 36px;
  color: #333333;
  margin-bottom: var(--spacing-xs);
}
@media screen and (min-width: 992px) {
  .p-home-service__box .p-home-service__box-ttl {
    font-size: 29.25px;
  }
}
.p-home-service__box .p-home-service__box-text {
  line-height: 1.4em;
  margin-bottom: var(--spacing-xs);
}
.p-home-service__box .illust {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: var(--spacing-xs);
}

/*
============================================
Page Links Section
============================================
*/
.p-home-page-links__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-m);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-page-links__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-home-page-links__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-home-page-links__boxes {
  display: grid;
  gap: var(--spacing-xs);
}
@media screen and (min-width: 992px) {
  .p-home-page-links__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-home-page-links__box {
  background: #b5daff;
  background: linear-gradient(90deg, rgb(181, 218, 255) 0%, rgb(153, 204, 255) 100%);
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
  width: 100%;
  border-radius: 1rem;
  padding: var(--spacing-m) var(--spacing-s);
}
.p-home-page-links__box:hover {
  transition-duration: 0.3s;
}
.p-home-page-links__box:hover .c-button .text {
  position: relative;
}
.p-home-page-links__box:hover .c-button .text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: solid 1px #0071e0;
  animation: border_animation 0.2s linear forwards;
}
@keyframes border_animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.p-home-page-links__box:hover .c-button .icon {
  background-color: #0071e0;
  color: #fff;
  transition: all 0.3s ease;
}

.p-home-page-links__ttl {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 42px;
  color: #0071e0;
}
@media screen and (min-width: 992px) {
  .p-home-page-links__ttl {
    font-size: 36px;
  }
}

.p-home-page-links__sub-ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 13px;
}

.p-home-page-links__text {
  margin-bottom: 13px;
}

/*
============================================
Conatact Section
============================================
*/
.p-home-page-contact__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  padding-top: var(--spacing-m);
  padding-bottom: var(--spacing-m);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-home-page-contact__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-home-page-contact__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
============================================
for GSAP
============================================
*/
.js-home-hero__circles g {
  opacity: 0;
}

.js-home-hero__list,
.js-home-hero__text-item,
.js-home-hero__text-item span,
.js-header,
.js-dot {
  opacity: 0;
}

.p-service h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
  line-height: 36px;
  margin-bottom: var(--spacing-s);
}
@media screen and (min-width: 992px) {
  .p-service h2 {
    font-size: 29.25px;
  }
}
.p-service h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 28px;
}
@media screen and (min-width: 992px) {
  .p-service h3 {
    font-size: 22.5px;
  }
}
.p-service h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 9px;
  line-height: 26px;
}
@media screen and (min-width: 992px) {
  .p-service h4 {
    font-size: 20.25px;
  }
}

.p-service-contents__inner,
.p-service-features__inner,
.p-service-pricing {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-service-contents__inner,
  .p-service-features__inner,
  .p-service-pricing {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-service-contents__inner,
  .p-service-features__inner,
  .p-service-pricing {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-service-contents {
  margin-bottom: var(--spacing-l);
}
.p-service-contents h3 {
  margin-bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: #2491ff;
  background: linear-gradient(135deg, rgb(36, 145, 255) 0%, rgb(2, 125, 247) 60%, rgb(0, 113, 224) 100%);
  padding: 0.6em 1em;
  border-radius: 1rem 1rem 0 0;
}
.p-service-contents__lead {
  padding: var(--spacing-m) 0;
}
.p-service-contents__description span.emphasis {
  font-weight: 600;
  color: #0071e0;
}
@media screen and (min-width: 992px) {
  .p-service-contents__lead {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-s);
    align-items: center;
  }
  .p-service-contents__title {
    flex: 1;
  }
  .p-service-contents__description {
    flex: 2;
  }
}
.p-service-contents__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  padding: var(--spacing-m) var(--spacing-s);
  margin-bottom: var(--spacing-m);
  background: #fff;
  border: 1px solid #0071e0;
  border-radius: 0 1rem 1rem 1rem;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
}
.p-service-contents h4 {
  color: #0071e0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #707070;
}
.p-service-contents ul.items {
  display: grid;
  gap: var(--spacing-s);
  padding-top: var(--spacing-xs);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-service-contents ul.items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .p-service-contents ul.items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-service-contents ul.items li.list-item {
  position: relative;
  color: #333333;
  padding-left: 1em;
}
.p-service-contents ul.items li.list-item::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background: #333333;
  border-radius: 100%;
}
.p-service-contents li.list-subitem {
  font-size: 14px;
  color: #707070;
}

.p-service-features {
  padding: var(--spacing-l);
  margin-bottom: var(--spacing-l);
  background-color: #f0f7ff;
}
@media screen and (max-width: 575px) {
  .p-service-features {
    padding: var(--spacing-l) 0;
  }
}

@media screen and (min-width: 992px) {
  .p-service-features__inner {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-m);
    align-items: center;
    justify-content: center;
  }
  .p-service-features__title {
    width: 18%;
    text-align: center;
  }
  .p-service-features__body {
    width: 82%;
  }
}
.p-service-features__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}
@media screen and (max-width: 991px) {
  .p-service-features__body {
    padding-top: var(--spacing-s);
    gap: var(--spacing-m);
  }
}

.p-service-features__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-s);
}
@media screen and (max-width: 991px) {
  .p-service-features__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-service-features__item .item-label {
  position: relative;
  display: flex;
  width: 5.5rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  background: #2491ff;
  background: linear-gradient(135deg, rgb(36, 145, 255) 0%, rgb(2, 125, 247) 60%, rgb(0, 113, 224) 100%);
  border-radius: 100%;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
}
@media screen and (min-width: 992px) {
  .p-service-features__item .item-label {
    flex: 1;
  }
}
@media screen and (min-width: 992px) {
  .p-service-features__item .item-body {
    flex: 6;
  }
}
.p-service-features__item .item-body h3 {
  background: #3aa7ff;
  background: linear-gradient(135deg, rgb(58, 167, 255) 0%, rgb(16, 118, 208) 33%, rgb(0, 82, 163) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #008cff;
}
.p-service-features__item .item-body p {
  margin: 0;
}

.p-service-pricing {
  margin-bottom: var(--spacing-m);
}

.p-service-pricing__items-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--spacing-s);
  margin-top: var(--spacing-s);
}
@media screen and (min-width: 992px) {
  .p-service-pricing__items-box {
    flex-direction: row;
  }
}
@media screen and (max-width: 991px) {
  .p-service-pricing__items-box {
    flex-direction: column;
  }
}

.p-service-pricing__item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
  border-radius: 1rem;
  padding: var(--spacing-s);
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
}
.p-service-pricing__item .price p {
  font-size: 14px;
  letter-spacing: 2.4px;
}
.p-service-pricing__item .price .emphasis {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: normal;
  padding-right: 2.4px;
}

.p-service-pricing__item:first-of-type {
  background-color: #dcedff;
}

.p-service-pricing__item:nth-of-type(2) {
  background-color: #e7e3fe;
}

.p-service-pricing__item:nth-of-type(3) {
  background-color: #d1f5e6;
}

.p-service-pricing .lead {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  background: #2491ff;
  background: linear-gradient(135deg, rgb(36, 145, 255) 0%, rgb(2, 125, 247) 60%, rgb(0, 113, 224) 100%);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  padding: 0.5em 1em;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}

.p-about-us h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
  line-height: 36px;
  margin-bottom: var(--spacing-s);
}
@media screen and (min-width: 992px) {
  .p-about-us h2 {
    font-size: 29.25px;
  }
}
.p-about-us h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 28px;
}
@media screen and (min-width: 992px) {
  .p-about-us h3 {
    font-size: 22.5px;
  }
}
.p-about-us h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 9px;
  line-height: 26px;
}
@media screen and (min-width: 992px) {
  .p-about-us h4 {
    font-size: 20.25px;
  }
}

.p-about-us-content {
  padding-top: var(--spacing-l);
}

.p-about-us-message__inner,
.p-about-us-company-info__inner {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-about-us-message__inner,
  .p-about-us-company-info__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-about-us-message__inner,
  .p-about-us-company-info__inner {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-about-us-message__body,
.p-about-us-company-info__body {
  margin-bottom: var(--spacing-m);
  background: #fff;
  border: 1px solid #0071e0;
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
}
@media screen and (max-width: 575px) {
  .p-about-us-message__body,
  .p-about-us-company-info__body {
    padding: var(--spacing-m) var(--spacing-s);
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-about-us-message__body,
  .p-about-us-company-info__body {
    padding: var(--spacing-m) var(--spacing-m);
  }
}
@media screen and (min-width: 992px) {
  .p-about-us-message__body,
  .p-about-us-company-info__body {
    padding: var(--spacing-l) var(--spacing-l);
  }
}
.p-about-us-message__body p,
.p-about-us-company-info__body p {
  line-height: 2em;
  margin-bottom: 1.5em;
}
.p-about-us-message__body p span,
.p-about-us-company-info__body p span {
  font-weight: bold;
  color: #0071e0;
}

.p-about-us-company-info__body table {
  width: 100%;
}
.p-about-us-company-info__body td {
  padding: var(--spacing-s) var(--spacing-xxs);
}
.p-about-us-company-info__body td:first-of-type {
  width: 30%;
}
.p-about-us-company-info__body tr {
  border-bottom: 1px solid #707070;
}

.p-page mark.has-inline-color {
  padding: 0.5em 1em;
  border-radius: 999px;
}
.p-page h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
  line-height: 36px;
  margin-top: var(--spacing-s);
  color: #0071e0;
}
@media screen and (min-width: 992px) {
  .p-page h2 {
    font-size: 29.25px;
  }
}
.p-page ul li {
  list-style: disc;
  list-style-position: inside;
}
.p-page .is-layout-flex {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid #b4d6ff;
}
.p-page .is-layout-flex:last-of-type {
  border-bottom: none;
}
.p-page .is-layout-flex p:first-of-type {
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  .p-page .is-layout-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-page .job-position-panel {
  background: #fff;
  box-shadow: 0 8px 40px rgba(19, 29, 48, 0.15);
  border: 1px solid #0071e0;
  border-radius: 1rem;
}
@media screen and (min-width: 992px) {
  .p-page .job-position-panel {
    padding: var(--spacing-m) var(--spacing-l);
  }
}
@media screen and (max-width: 991px) {
  .p-page .job-position-panel {
    padding: var(--spacing-m) var(--spacing-s);
  }
}

.p-404-content {
  padding-right: min(5vw, 25px);
  padding-left: min(5vw, 25px);
  padding-bottom: var(--spacing-m);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .p-404-content {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-404-content {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-404-text {
  padding: var(--spacing-m) 0;
}/*# sourceMappingURL=style.css.map */