@charset "UTF-8";
/* =======================================================================
CSSの名前：style.css
--------------------------------------------------------------------------
0.設定
1.base
2.layout
3.module
4.ヘッダー
======================================================================= */
/* =================================================================
0.設定
=================================================================*/
/*  変数
-------------------------------------------------------------*/
/*  ブレイクポイント
-------------------------------------------------------------*/
/*  webフォント
-------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* =================================================================
1.base
=================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #FCF9E1;
  padding: 32px 47px;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  overscroll-behavior: none;
}
@media screen and (max-width: 767px) {
  body {
    padding: 30px;
  }
}

ul {
  list-style-type: none;
}

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

a {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

/* =================================================================
2.layout
=================================================================*/
.container {
  background: #F6F7F9;
  border-radius: 15px;
  height: calc(100vh - 64px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 27px 30px 20px;
    position: relative;
    height: calc(100vh - 60px);
    overflow: auto;
  }
}

.container_inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .container_inner {
    display: block;
  }
}

.main {
  width: 70%;
  height: calc(100vh - 64px);
  margin: 0 auto;
  padding: 126px 30px 22px;
  border-left: 0.5px solid #FCF9E1;
  overflow-y: auto;
}
@media screen and (max-width: 1919px) {
  .main {
    width: 75%;
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .main {
    max-width: 100%;
    width: 500px;
    height: auto;
    margin-top: 150px;
    padding: 0;
    border-left: none;
    overflow-y: visible;
  }
}

.main-inner {
  height: 100vh;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-inner {
    height: auto;
  }
}

/* =================================================================
3.module
=================================================================*/
.section-title {
  width: 346px;
  max-width: 100%;
  font-family: "Verdana", sans-serif;
  font-size: 31px;
  font-weight: bold;
  color: #85B4E5;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 1024px) {
  .section-title {
    width: 100%;
  }
}
.section-title span {
  margin-top: 10px;
  font-size: 12px;
  color: #252525;
  line-height: 1.4;
}

.section-body {
  width: 62%;
}
@media screen and (max-width: 1024px) {
  .section-body {
    width: 100%;
  }
}

.button-wrap {
  margin-top: 140px;
  text-align: center;
}
@media screen and (max-width: 1919px) {
  .button-wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .button-wrap {
    margin-top: 60px;
  }
}

.button {
  display: inline-block;
  background-color: #5BA0D7;
  width: 630px;
  max-width: 100%;
  padding: 32px 0;
  border-radius: 15px;
  font-family: "kinto-sans", sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1919px) {
  .button {
    transform: scale(0.7);
    transform-origin: center top;
  }
}
@media screen and (max-width: 1024px) {
  .button {
    width: 400px;
    font-size: 18px;
    padding: 20px 0;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .button {
    transform: scale(1);
  }
}

.copyright {
  margin-top: 60px;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .copyright {
    text-align: center;
  }
}

/* =================================================================
4.サイドバー
=================================================================*/
.sidebar {
  width: 30%;
  height: calc(100vh - 64px);
}
@media screen and (max-width: 1919px) {
  .sidebar {
    width: 25%;
    height: calc((100vh - 64px) * 0.7);
  }
}
@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%;
    height: auto;
  }
}

.sidebar__inner {
  width: 100%;
  height: calc(100vh - 64px);
  max-width: 30%;
  padding-top: 80px;
  padding-left: 129px;
  position: fixed;
  overflow: auto;
}
@media screen and (max-width: 1919px) {
  .sidebar__inner {
    height: calc((100vh - 64px) * 1.4);
    padding-left: 80px;
    transform: scale(0.7);
    transform-origin: center top;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar__inner {
    max-width: 29%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sidebar__inner {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: static;
    transform: scale(1);
  }
}

.sidebar__logo {
  width: 177px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .sidebar__logo {
    margin: 85px auto 0;
  }
}

.sidebar__description {
  margin-top: 45px;
  font-family: "kinto-sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .sidebar__description {
    margin-top: 40px;
    text-align: center;
  }
}

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

.gnav {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .gnav {
    margin-top: 120px;
  }
}

.gnav__item:not(:first-child) {
  margin-top: 37px;
}

.gnav__head {
  font-family: "Verdana", sans-serif;
  font-size: 21px;
  font-weight: bold;
  color: #85B4E5;
  line-height: 1.2;
  letter-spacing: 0.09em;
}

.gnav__body {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.09em;
}

.athernav {
  margin-top: 59px;
}

.athernav__itme {
  margin-top: 30px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
}

.fa-twitter:before {
  font-size: 20px;
  margin-right: 10px;
  vertical-align: sub;
}

.fa-blog:before {
  font-size: 20px;
  margin-right: 10px;
  vertical-align: sub;
}

/* ===============================================
# News
=============================================== */
.news {
  display: flex;
  justify-content: center;
  margin: 0 auto 300px;
  max-width: 970px;
}
@media screen and (max-width: 1919px) {
  .news {
    margin-bottom: 200px;
    transform: scale(0.8);
    transform-origin: center top;
  }
}
@media screen and (max-width: 1024px) {
  .news {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .news {
    margin-bottom: 230px;
    transform: scale(1);
  }
}

.news__list {
  width: 100%;
  max-width: 495px;
}
@media screen and (max-width: 1024px) {
  .news__list {
    margin-top: 50px;
  }
}

.news__item {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .news__item {
    display: block;
  }
}
.news__item:not(:first-child) {
  padding-top: 13px;
}

.news__date {
  font-size: 15px;
  font-weight: 500;
}

.news__text {
  font-size: 14px;
  font-weight: 500;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .news__text {
    margin-top: 15px;
    margin-left: 0;
  }
}

/* ===============================================
# Work
=============================================== */
.work {
  display: flex;
  justify-content: center;
  margin: 0 auto 300px;
  max-width: 970px;
}
@media screen and (max-width: 1919px) {
  .work {
    margin-bottom: 200px;
    transform: scale(0.8);
    transform-origin: center top;
  }
}
@media screen and (max-width: 1024px) {
  .work {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .work {
    margin-bottom: 230px;
    transform: scale(1);
  }
}

@media screen and (max-width: 1024px) {
  .work__list {
    margin-top: 50px;
  }
}

.work__item {
  font-weight: bold;
  line-height: 1.8;
  margin-top: 16px;
}

/* ===============================================
# Company
=============================================== */
.company {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 970px;
}
@media screen and (max-width: 1919px) {
  .company {
    transform: scale(0.8);
    transform-origin: center top;
  }
}
@media screen and (max-width: 1024px) {
  .company {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .company {
    transform: scale(1);
  }
}

@media screen and (max-width: 1024px) {
  .company__list {
    margin-top: 50px;
  }
}

.company__item {
  display: flex;
  padding-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .company__item {
    display: block;
    padding-bottom: 20px;
  }
}
.company__item:not(:first-child) {
  padding-top: 25px;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}
@media screen and (max-width: 1024px) {
  .company__item:not(:first-child) {
    padding-top: 20px;
  }
}
.company__item dt {
  width: 176px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .company__item dt {
    font-size: 13px;
    color: #707070;
  }
}
.company__item dd {
  width: calc(100% - 176px);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .company__item dd {
    width: 100%;
    margin-top: 4px;
    line-height: 1.8;
  }
}
.company__item dd span {
  display: inline-block;
  width: 88px;
}

/* ===============================================
# Recruit
=============================================== */
@media screen and (max-width: 1919px) {
  .recruit {
    transform: scale(0.8);
    transform-origin: center top;
  }
}
@media screen and (max-width: 767px) {
  .recruit {
    transform: scale(1);
  }
}

.recruit__lead {
  margin-top: 50px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}

.recruit__title {
  margin-top: 60px;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 24px;
  }
}

.recruit__position {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #85B4E5;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .recruit__position {
    font-size: 18px;
  }
}

.recruit__list {
  margin-top: 30px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1919px) {
  .recruit__list {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit__list {
    margin-bottom: 100px;
  }
}

.recruit__item {
  display: flex;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
@media screen and (max-width: 767px) {
  .recruit__item {
    display: block;
    padding-bottom: 20px;
  }
}
.recruit__item:not(:first-child) {
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .recruit__item:not(:first-child) {
    padding-top: 20px;
  }
}
.recruit__item dt {
  width: 200px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .recruit__item dt {
    width: 100%;
    font-size: 13px;
    color: #707070;
  }
}
.recruit__item dd {
  width: calc(100% - 200px);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .recruit__item dd {
    margin-top: 4px;
    width: 100%;
  }
}

/* ===============================================
# ドロワーメニュー
=============================================== */
.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  padding-left: 100px;
  padding-bottom: 60px;
  z-index: 100;
  overflow-y: scroll;
}

@media screen and (max-width: 767px) {
  .menu {
    height: 18px;
    position: absolute;
    right: 60px;
    top: 57px;
    width: 27px;
    z-index: 101;
  }
  .menu.active {
    position: fixed;
  }
  .menu__line {
    background: #85B4E5;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform 0.3s;
    width: 100%;
  }
  .menu__line--center {
    top: 8px;
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 8px;
    transform: rotate(45deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 8px;
    transform: rotate(135deg);
  }
}
/* ===============================================
# 下層ページ
=============================================== */
@media screen and (max-width: 1919px) {
  .lower-section {
    width: 100%;
    transform-origin: center top;
    transform: scale(0.8);
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .lower-section {
    transform: scale(1);
  }
}

.lower-section__head {
  margin-top: 80px;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .lower-section__head {
    font-size: 24px;
  }
}

.lower-section__title {
  margin-top: 50px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .lower-section__title {
    font-size: 18px;
  }
}

.lower-section__text {
  margin-top: 25px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}

.lower-section__list {
  margin-top: 25px;
  padding-left: 1em;
  list-style-type: disc;
}

.lower-section__item {
  font-weight: bold;
  line-height: 1.6;
  margin-top: 16px;
}