@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

/*------------------------------
common
------------------------------*/
body {
  color: #2E3B4F;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif, "Noto Sans JP", sans-serif;
  line-height: normal;
  background: #E8EAED;
  border-right: min(90px, 5.9445178336vw) solid #E8EAED;
  border-left: min(90px, 5.9445178336vw) solid #E8EAED;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  body {
    border: none;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 832px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 min(26.5px, 7%);
  }
}

.u-with-1336 {
  width: 1366px;
}

/* タイトル
------------------------------*/
.c-primary-title {
  font-size: min(2.4rem, 2.6041666667vw);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #3B5998;
}
@media (max-width: 767px) {
  .c-primary-title {
    font-size: 1.2rem;
  }
}

.c-primary-title__en {
  display: block;
  font-size: min(6.4rem, 6.5104166667vw);
  font-weight: 700;
  font-family: "Helvetica", "Arial", sans-serif;
  color: #2E3B4F;
  margin-bottom: 0.1em;
}
@media (max-width: 767px) {
  .c-primary-title__en {
    font-size: 3.2rem;
    margin-bottom: 0.2em;
  }
}

.c-title-underline {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(4rem, 3.90625vw);
  font-weight: 800;
  line-height: 1.5;
  color: #3B5998;
  border-bottom: 0.2em solid #3B5998;
}
@media (max-width: 767px) {
  .c-title-underline {
    font-size: 2rem;
    border-bottom: 4px solid #3B5998;
  }
}

/* 見出し
------------------------------*/
.c-heading {
  font-size: min(4.8rem, 3.5982008996vw);
  font-weight: 700;
  line-height: 1.4;
  color: #3B5998;
  text-align: center;
}
@media (max-width: 767px) {
  .c-heading {
    font-size: min(2.4rem, 6.4vw);
  }
}

/* ボタン
------------------------------*/
.c-button {
  display: inline-block;
  width: 490px;
  max-width: 100%;
  font-size: min(2.1rem, 2.34375vw);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: #3B5998;
  border-radius: 72px;
  padding: 1.2em 1.7em;
  box-shadow: 0 6px 6px rgba(46, 59, 79, 0.25);
  text-align: left;
  position: relative;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  transform: translateY(-50%);
  background: url(../images/icon_button-aroow.png) no-repeat center center/contain;
  width: 8px;
  aspect-ratio: 18/31;
}
@media (max-width: 767px) {
  .c-button {
    width: 327px;
    font-size: min(1.4rem, 3.7333333333vw);
  }
  .c-button::after {
    width: 0.5em;
    right: 1.2em;
  }
}

.c-button-square {
  display: inline-block;
  width: 320px;
  max-width: 100%;
  border-radius: 16px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: #3B5998;
  padding: 0.5em 0.75em;
  box-shadow: 0 6px 6px rgba(46, 59, 79, 0.25);
  position: relative;
}
.c-button-square::after {
  content: "";
  position: absolute;
  top: 73%;
  right: 0.4em;
  transform: translateY(-50%);
  background: url(../images/icon_button-aroow.png) no-repeat center center/contain;
  width: 12px;
  aspect-ratio: 18/31;
}
.c-button-square small {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
}
.button-divider {
  width: 80%; /* 横幅をボタンいっぱいに設定 */
  border: 0;
  border-top: 2px solid #fff; /* 白い線の太さと色を設定 */
  margin: 6px 0; /* 上下に余白を設定 */
}
.button-image {
  width: 80%; /* 画像をボタンの幅に合わせる */
  height: auto; /* アスペクト比を維持 */
  margin-top: 3px; /* テキストとの間に少し余白を設定 */
}
.button-image-three {
  width: 50%; 
  height: auto; /* アスペクト比を維持 */
  margin-top: 10px; /* テキストとの間に少し余白を設定 */    
}
@media (max-width: 767px) {
  .c-button-square {
    width: 160px;
    font-size: min(1.6rem, 4.2666666667vw);
    border-radius: 5px;
  }
  .c-button-square::after {
    width: 0.4em;
  }
  .c-button-square small {
    font-size: min(1.2rem, 3.2vw);
  }
}

.c-button--arrow-down::after {
  transform: translateY(-50%) rotate(90deg);
}

/* サービスコンテンツ共通
------------------------------*/
.c-service-list li{
  background: rgba(168, 218, 220, 0.2); /* 背景色を設定 */
  padding: 16px 16px 5% 16px; /* 背景色の淵から文字までの余白 */
  list-style: none; /* リストのデフォルトのマーカーを非表示 */
}

.c-service-list li:nth-child(n+2) {
  margin-top: 4%;
}
.c-service-list li p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 1%;
}
.c-service__image {
  display: block;
  width: 50%; /* 幅を50%に指定することで、2倍のサイズの画像を半分の大きさで表示 */
  height: auto; /* 比率を保つ */
  margin: 6px auto 20px auto;
}
.c-service__line {
  height: 1px; /* 線の高さを指定 */
  background-color: #000; /* 線の色 */
  margin: 16px 0;
  width: calc(100% - 32px); /* 左右の余白を引いた長さ */
  margin-left: 16px;
}
@media (max-width: 767px) {
  .c-service-list li:nth-child(n+2) {
    margin-top: 3%;
  }
  .c-service-list li p {
    font-size: min(1.4rem, 3.7333333333vw);
  }
}

.c-service__title {
  width: 100%;
  margin: 0 auto;
  font-size: min(3rem, 2.9985007496vw);
  font-weight: 700;
  color: #3B5998;
  padding-left: 1.6em;
  position: relative;
}
.c-service__title::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon_store.png) no-repeat center center/contain;
  width: 1.2em;
  aspect-ratio: 96/96;
}
@media (max-width: 767px) {
  .c-service__title {
    width: 100%;
    font-size: min(2rem, 4.3333333333vw);
  }
}

.c-service__button {
  margin-top: 6%;
  text-align: center;
}

/* 採用情報共通
------------------------------*/
.c-recruit-info {
  display: flex;
}
@media (max-width: 767px) {
  .c-recruit-info {
    display: block;
  }
}

.c-recruit-info__content {
  margin: 10% auto 0;
  width: 730px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .c-recruit-info__content {
    width: 325px;
    margin: 32px auto 0;
  }
}

.c-recruit-info__block {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 50%;
}
.c-recruit-info__block dt, .c-recruit-info__block dd {
  font-size: min(2rem, 2.0833333333vw);
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-recruit-info__block dt:nth-of-type(n + 2), .c-recruit-info__block dd:nth-of-type(n + 2) {
  margin-top: 1.2em;
}
.c-recruit-info__block dt {
  font-weight: 700;
  width: 104px;
  text-align: right;
  padding-right: 1.2em;
}
.c-recruit-info__block dd {
  width: calc(100% - 104px);
}
@media (min-width: 768px) {
  .c-recruit-info__block:nth-child(2) {
    padding-left: 16%;
  }
}
@media (max-width: 767px) {
  .c-recruit-info__block {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 3%;
  }
  .c-recruit-info__block:nth-child(2) {
    margin-top: 1.2em;
    font-size: 1.4rem;
  }
  .c-recruit-info__block dt, .c-recruit-info__block dd {
    font-size: 1.4rem;
  }
  .c-recruit-info__block dt small, .c-recruit-info__block dd small {
    font-size: 1.2rem;
  }
}

/*------------------------------
header
------------------------------*/
header {
  position: relative;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  padding: min(48px, 3.1746031746vw) 0 min(34px, 2.2486772487vw);
  background: #fff;
  z-index: 10;
}
@media (max-width: 767px) {
  header {
    padding: 0;
  }
}

.header__inner {
  width: 1286px;
}
@media screen and (max-width: 999px) {
  .header__inner {
    padding: 0 2%;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: min(380px, 26.0416666667vw);
}
@media (max-width: 767px) {
  .header__logo {
    width: 190px;
    margin-left: 20px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
}
.header__menu li:nth-child(n+2) {
  margin-left: min(45px, 3.5828025478vw);
}
.header__menu li a {
  display: inline-block;
  font-size: min(2.4rem, 1.9108280255vw);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__contact {
  margin-left: min(40px, 3.1847133758vw);
}
.header__contact a {
  display: inline-block;
  font-size: min(2.4rem, 1.9108280255vw);
  font-weight: 800;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  background: #3B5998;
  border-radius: 180px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 72px;
    aspect-ratio: 72/72;
    background: #3B5998;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: 32px;
  height: 28px;
  display: block;
  position: relative;
  z-index: 400;
}

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

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 12px;
}

.drawer-icon__bar3 {
  top: 24px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: 100px 20px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}
.drawer-content .header__contact {
  display: block;
  margin: 30px auto;
}
.drawer-content .header__contact a {
  width: 100%;
  font-size: 1.6rem;
}

.drawer-menu li:nth-child(n+2) {
  margin-top: 25px;
}
.drawer-menu li a {
  color: inherit;
  display: block;
  font-size: 1.8rem;
  text-decoration: none;
  text-align: center;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #3B5998;
  padding: 48px 0 32px;
}
@media (max-width: 767px) {
  footer {
    padding: 24px 0;
  }
}

.footer__menu {
  display: flex;
  justify-content: center;
}
.footer__menu li:nth-child(n+2) {
  margin-left: 4%;
}
.footer__menu li a {
  display: inline-block;
  font-size: min(2rem, 2.34375vw);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__menu {
    display: block;
  }
  .footer__menu li {
    width: 100%;
    text-align: center;
  }
  .footer__menu li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 16px;
  }
  .footer__menu li a {
    font-size: 1.4rem;
  }
}

.footer__copyright {
  margin-top: 3%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 24px;
    font-size: 1.2rem;
  }
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}

/*------------------------------
work
------------------------------*/
.work {
  background: #fff;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .work {
    margin-top: 70px;
  }
}

.works__container {
  margin-top: 8%;
}

.message__heading {
  position: relative;
  padding-bottom: 0.67em;
}
.message__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.3em;
  height: 4px;
  background: #3B5998;
}
@media (max-width: 767px) {
  .message__heading {
    padding-bottom: 1.27em;
  }
  .message__heading::after {
    height: 2px;
  }
}

.work__content {
  margin-top: 6%;
}
@media (max-width: 767px) {
  .work__content {
    margin-top: 9%;
  }
}
/*# sourceMappingURL=common.css.map */