@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.u-md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-show {
    display: block;
  }
}

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

.inner {
  width: 100%;
  max-width: 1320px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .inner {
    max-width: 964px;
  }
}

.heading {
  display: inline-block;
  position: absolute;
  font-size: 60px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  color: #FF9100;
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 42px;
  }
}

.text {
  font-size: 14px;
  font-weight: 200;
  color: #242424;
  line-height: 2.1428;
}

.text.text--large {
  font-size: 24px;
  font-weight: 500;
  color: #242424;
  line-height: 1.666;
}

.box {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.box:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  background-color: #242424;
  transition: 0.5s cubic-bezier(0.22, 0.65, 0.85, 0.95);
}

.box-orange:before {
  background: #FF9100;
}

.isPlay:before {
  transform: translate3d(100%, 0, 0);
}

.button {
  position: relative;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  color: #FF9100;
}

.button::before, .button::after {
  position: absolute;
  content: "";
  height: 0.5px;
  background-color: #FF9100;
}

.button::before {
  width: 10px;
  transform: rotate(35deg);
  bottom: 60%;
  right: -11%;
}

.button::after {
  width: 40px;
  top: 50%;
  right: -9.5%;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time--first {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time--second {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-time--third {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-time--fourth {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/*===============================
TOPページ
================================*/
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  transition: 0.5s;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header.hide {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: inherit;
  padding: 0 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 15px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: "Dosis", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
  color: #242424;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    position: fixed;
    font-size: 26px;
    line-height: 1.269;
  }
}

.header__logo-link {
  color: #242424;
}
.header__logo-link:hover {
  opacity: 1;
}

.hamburger {
  position: fixed;
  width: 50px;
  top: 27px;
  right: 60px;
  height: 26px;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 25px;
    top: 22.2px;
    right: 15px;
  }
}

.hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #242424;
  transition: 0.3s all;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 13px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    top: 7px;
  }
}

.hamburger span:nth-child(3) {
  top: 26px;
  width: 64%;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    top: 14px;
    width: 67%;
  }
}

.hamburger span.is-active:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.hamburger span.is-active:nth-child(2) {
  opacity: 0;
}

.hamburger span.is-active:nth-child(3) {
  top: 10px;
  width: 100%;
  transform: rotate(45deg);
  background-color: #fff;
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 36.1%;
  height: 100vh;
  background-color: #000;
  z-index: 5000;
  opacity: 0.8;
  transition: 0.6s all;
}
@media screen and (max-width: 768px) {
  .drawer-menu {
    width: 100%;
    background-color: #27272A;
    opacity: 1;
  }
}

.drawer-menu.panelactive {
  right: 0;
}

.drawer__logo-link {
  color: #fff;
}
.drawer__logo-link:hover {
  opacity: 0.6;
}

.drawer-menu__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 121px;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 22px;
}

.drawer-menu__link {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  line-height: 1.2;
}

.drawer {
  color: #fff;
  display: flex;
  text-align: center;
  padding: 0 15px;
  height: 60px;
  font-size: 26px;
  font-family: "Dosis", sans-serif;
  font-weight: 300;
  align-items: center;
  line-height: 1.269;
}

.sns__icon-box {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .sns__icon-box {
    margin-bottom: 182px;
  }
}

.sns__link {
  width: 28px;
}

.sns__link:nth-child(1) {
  margin-right: 30px;
}

.mv {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-image: url(../images/mv-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mv {
    background-position: center;
    height: calc(100vh - 170px);
  }
}

.mv__inner {
  width: 100%;
  height: inherit;
  position: relative;
  padding-right: 50px;
  padding-left: 120px;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding-right: 25px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 374px) {
  .mv__inner {
    padding-right: 15px;
    padding-left: 25px;
  }
}

.mv__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: inherit;
  margin-top: 21px;
  padding-top: 80px;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .mv__content {
    padding-top: 85px;
  }
}

.mv__title-wrap {
  width: 830px;
}
@media screen and (max-width: 1024px) {
  .mv__title-wrap {
    width: 620px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title-wrap {
    width: 290px;
  }
}
@media screen and (max-width: 374px) {
  .mv__title-wrap {
    width: 260px;
  }
}

.mv__title {
  font-size: 80px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  color: #242424;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .mv__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 56px;
    line-height: 1.357;
    margin: 12px 0;
  }
}
@media screen and (max-width: 374px) {
  .mv__title {
    font-size: 50px;
  }
}

.mv__title-orange {
  color: #FF9100;
}

.mv__wrap {
  width: 347px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .mv__wrap {
    width: 215px;
    margin-top: 0;
  }
}
@media screen and (max-width: 374px) {
  .mv__wrap {
    width: 205px;
  }
}

.mv__text {
  position: relative;
  padding-left: 55px;
  font-weight: 300;
  line-height: 1.5;
  color: #FF9100;
}
@media screen and (max-width: 1024px) {
  .mv__text {
    top: 10%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv__text {
    top: -6%;
    left: -5%;
    padding: 12px 10px;
    line-height: 1.875;
  }
}
@media screen and (max-width: 374px) {
  .mv__text {
    left: 4%;
  }
}

.mv__text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #FF9100;
}
@media screen and (max-width: 768px) {
  .mv__text::after {
    display: none;
  }
}

.vision {
  width: 100%;
  padding: 142px 0 120px 120px;
  background-color: #F8F9F9;
}
@media screen and (max-width: 1024px) {
  .vision {
    padding: 120px 0 100px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .vision {
    padding: 126px 0 87px 15px;
  }
}

.vision__inner {
  max-width: none;
  background-color: #fff;
  padding-left: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .vision__inner {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .vision__inner {
    padding-left: 15px;
    padding-right: 30px;
  }
}

.vision__heading {
  right: 120px;
  top: -50px;
}
@media screen and (max-width: 768px) {
  .vision__heading {
    top: -30px;
    left: 0;
  }
}

.vision__container {
  display: flex;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .vision__container {
    flex-direction: column-reverse;
    padding: 56px 0 30px;
  }
}

.vision__cards {
  display: flex;
  width: 59%;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .vision__cards {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .vision__card:nth-child(1) {
    margin-top: 25px;
  }
}

.vision__card:nth-child(2) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .vision__card:nth-child(2) {
    margin-top: 55px;
  }
}

.vision__card:nth-child(3) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .vision__card:nth-child(3) {
    margin-top: 84px;
  }
}

.vision__content {
  width: 70%;
  padding-right: 170px;
}
@media screen and (max-width: 1024px) {
  .vision__content {
    width: 50%;
    padding-right: 100px;
  }
}
@media screen and (max-width: 768px) {
  .vision__content {
    width: 100%;
    padding: 0;
  }
}

.vision__text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .vision__text {
    margin-top: 17px;
  }
}

.vision__button-box {
  position: relative;
  text-decoration: none;
  width: 150px;
  border-bottom: 1px solid #E4E4E4;
  margin-left: auto;
}

.vision__button-box::after {
  position: absolute;
  bottom: -1px;
  left: 0%;
  content: "";
  width: 150px;
  height: 2px;
  background: #242424;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.vision__button-box:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.vision__button {
  display: flex;
  justify-content: flex-end;
  right: 16%;
  margin-top: 35px;
  padding-right: 56px;
  padding-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .vision__button {
    bottom: 54%;
    right: 14%;
    margin-top: 18px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 374px) {
  .vision__button {
    bottom: 30%;
    right: 12%;
    margin-top: 20px;
    padding-right: 65px;
  }
}

.service {
  width: 100%;
  background-color: #F8F9F9;
  padding: 0 120px 120px 0;
}
@media screen and (max-width: 1024px) {
  .service {
    padding: 0 30px 120px 0;
  }
}
@media screen and (max-width: 768px) {
  .service {
    padding: 0 15px 40px 0;
  }
}

.service__inner {
  max-width: none;
  background-color: #fff;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .service__inner {
    padding-right: 35px;
  }
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 0 15px 0 15px;
  }
}

.service__heading {
  top: -50px;
  left: 120px;
}
@media screen and (max-width: 768px) {
  .service__heading {
    top: -30px;
    left: 15px;
  }
}

.service__container {
  display: flex;
  padding: 80px 0 66px;
}
@media screen and (max-width: 1024px) {
  .service__container {
    padding: 65px 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .service__container {
    padding: 56px 0 30px 15px;
  }
}

.service__content {
  width: 100%;
  padding-left: 170px;
  padding-right: 152px;
}
@media screen and (max-width: 1250px) {
  .service__content {
    padding-left: 140px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .service__content {
    padding: 0;
  }
}

.service__title {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .service__title {
    margin-top: 0;
  }
}

.service__text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .service__text {
    margin-top: 16px;
  }
}

.service__button-box {
  position: relative;
  text-decoration: none;
  width: 150px;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 3px;
  margin-top: 30px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .service__button-box {
    margin-top: 13px;
  }
}

.service__button-box::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 150px;
  height: 2px;
  background: #242424;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.service__button-box:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.service__button {
  left: 6%;
  bottom: -5%;
}
@media screen and (max-width: 1250px) {
  .service__button {
    padding-right: 25px;
    left: 5%;
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .service__button {
    padding-right: 20px;
    left: 6%;
  }
}
@media screen and (max-width: 768px) {
  .service__button {
    left: 8%;
  }
}

.service__button.button::before {
  width: 10px;
  transform: rotate(35deg);
  bottom: 53%;
  right: -122%;
}
@media screen and (max-width: 1250px) {
  .service__button.button::before {
    right: -62%;
  }
}

.service__button.button::after {
  width: 35px;
  top: 60%;
  right: -120%;
}
@media screen and (max-width: 1250px) {
  .service__button.button::after {
    right: -60%;
  }
}

.service__cards {
  display: flex;
  flex-wrap: wrap;
  width: 62%;
}
@media screen and (max-width: 1250px) {
  .service__cards {
    width: 94%;
  }
}
@media screen and (max-width: 1024px) {
  .service__cards {
    width: 70%;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .service__cards {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 50%;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 374px) {
  .service__cards {
    width: 55%;
  }
}

.service__card {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service__card {
    width: 100%;
  }
}

.service__card:nth-child(-n+2) {
  border-bottom: 1px solid lightgray;
}
@media screen and (max-width: 768px) {
  .service__card:nth-child(-n+2) {
    border: none;
  }
}

.service__card:nth-child(odd) {
  border-right: 1px solid lightgray;
}
@media screen and (max-width: 768px) {
  .service__card:nth-child(odd) {
    border: none;
  }
}

.service__wrap {
  width: 150px;
  margin-bottom: 39px;
}

.wrap-left {
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .wrap-left {
    margin: 0 auto;
  }
}

.wrap-right {
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .wrap-right {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .wrap-right {
    margin-top: 37px;
  }
}

.service__label {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 20px;
}

.service__label:first-of-type {
  width: 204px;
  margin-left: -20px;
}
@media screen and (max-width: 768px) {
  .service__label:first-of-type {
    margin-left: -27px;
    margin-top: 3px;
  }
}

.news {
  width: 100%;
  background-color: #fff;
  padding: 0 100px;
}
@media screen and (max-width: 1024px) {
  .news {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .news {
    padding: 0 15px;
  }
}

.news__inner {
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .news__inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .news__inner {
    padding: 0 15px 0 0;
  }
}

.news__heading {
  top: 72px;
  right: 62px;
}
@media screen and (max-width: 768px) {
  .news__heading {
    top: 60px;
    left: 0;
  }
}
@media screen and (max-width: 374px) {
  .news__heading {
    top: 45px;
  }
}

.news__container {
  padding: 88px 0 81px;
}
@media screen and (max-width: 768px) {
  .news__container {
    padding: 55px 0 50px;
  }
}
@media screen and (max-width: 374px) {
  .news__container {
    padding: 50px 0 40px;
  }
}

.news__categorys {
  display: flex;
  padding: 34px 0 20px;
}
@media screen and (max-width: 768px) {
  .news__categorys {
    padding: 110px 0 30px;
  }
}
@media screen and (max-width: 374px) {
  .news__categorys {
    padding: 80px 0 20px;
  }
}

.news__category {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .news__category {
    font-size: 12px;
  }
}

.news__category:not(:last-child) {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .news__category:not(:last-child) {
    margin-right: 10px;
  }
}

.news__label.is-orange {
  display: inline-block;
  background-color: #FF9100;
  color: #fff;
  padding: 12px 34px;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .news__label.is-orange {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 488px) {
  .news__label.is-orange {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 374px) {
  .news__label.is-orange {
    padding: 6px 10px;
  }
}

.news__label {
  display: inline-block;
  background-color: #fff;
  color: #242424;
  border: 1px solid #FF9100;
  padding: 11px 17px;
}
@media screen and (max-width: 768px) {
  .news__label {
    padding: 10px 14px;
  }
}
@media screen and (max-width: 488px) {
  .news__label {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 374px) {
  .news__label {
    padding: 6px 6px;
  }
}

.news__list {
  padding-left: 15px;
}

.news__item:first-of-type {
  border-top: 1px solid #E4E4E4;
}

.news__item {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    line-height: 2.1428;
    padding: 20px 0;
  }
}

.news__box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .news__box {
    margin-bottom: 10px;
  }
}

.news__lead {
  width: 80px;
  height: 24px;
  color: #626262;
  background-color: #F3F3F3;
  padding: 4px 18px;
  margin-right: 12px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news__lead {
    padding: 0 10px;
  }
}
@media screen and (max-width: 584px) {
  .news__lead {
    padding: 0 18px;
  }
}

.news__datetime {
  color: #A9A9A9;
  margin-top: 4px;
  margin-right: 30px;
  font-size: 11px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .news__datetime {
    margin-top: 0;
  }
}
@media screen and (max-width: 584px) {
  .news__datetime {
    margin-right: 0;
  }
}

@media screen and (max-width: 584px) {
  .news__info.info-first {
    margin-top: 10px;
  }
}

@media screen and (max-width: 584px) {
  .news__info {
    margin-top: 10px;
  }
}

.news__label-link {
  color: #242424;
  font-size: 14px;
  font-weight: 300;
}

.news__button-box {
  position: relative;
  text-decoration: none;
  width: 150px;
  border-bottom: 1px solid #E4E4E4;
  margin-left: auto;
}

.news__button-box::after {
  position: absolute;
  bottom: -1px;
  left: 0%;
  content: "";
  width: 150px;
  height: 2px;
  background: #242424;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.news__button-box:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.news__button {
  display: flex;
  justify-content: flex-end;
  right: 13%;
  margin-top: 37px;
  padding-right: 60px;
  padding-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .news__button {
    bottom: 54%;
    right: 10%;
    margin-top: 22px;
    padding-right: 65px;
  }
}
@media screen and (max-width: 374px) {
  .news__button {
    bottom: 30%;
    right: 12%;
    margin-top: 20px;
  }
}

.about {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F8F9F9 0%, #F8F9F9 67%, #E9EEEF 67%, #E9EEEF 100%);
  padding: 90px 0 170px 170px;
}
@media screen and (max-width: 1250px) {
  .about {
    background: linear-gradient(180deg, #F8F9F9 0%, #F8F9F9 65%, #E9EEEF 65%, #E9EEEF 100%);
    padding: 70px 0 210px 70px;
  }
}
@media screen and (max-width: 1024px) {
  .about {
    background: linear-gradient(180deg, #F8F9F9 0%, #F8F9F9 58%, #E9EEEF 58%, #E9EEEF 100%);
    padding: 60px 0 210px 50px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    background-image: none;
    background-color: #F8F9F9;
    padding: 25px 0 50px 0;
  }
}

.about__inner-gradient {
  width: 100%;
  margin-left: auto;
  padding: 66px 0 40px 0;
}
@media screen and (max-width: 1024px) {
  .about__inner-gradient {
    padding: 46px 0 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .about__inner-gradient {
    padding: 25px 15px 0 15px;
  }
}

.about__container {
  display: flex;
}
@media screen and (max-width: 768px) {
  .about__container {
    flex-direction: column;
  }
}

.about__body {
  position: relative;
}

.about__content {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__content {
    margin-bottom: 150px;
  }
}

.about__wrapper {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__wrapper {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 488px) {
  .about__wrapper {
    margin-bottom: 180px;
  }
}

.about__item {
  position: absolute;
  bottom: -130px;
  background-color: #fff;
  width: 465px;
  height: 200px;
  padding: 0 30px 30px 30px;
}
@media screen and (max-width: 1250px) {
  .about__item {
    width: 435px;
  }
}
@media screen and (max-width: 1024px) {
  .about__item {
    width: 400px;
    height: 185px;
  }
}
@media screen and (max-width: 895px) {
  .about__item {
    width: 340px;
  }
}
@media screen and (max-width: 768px) {
  .about__item {
    width: 96%;
    bottom: 9%;
    padding-right: 22px;
  }
}
@media screen and (max-width: 374px) {
  .about__item {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .item-secondary {
    bottom: 9%;
  }
}

.about__entry-en {
  font-size: 12px;
  font-weight: 500;
  line-height: 2.5;
  margin-top: 20px;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .about__entry-en {
    margin-bottom: 4px;
  }
}

.about__title.text {
  margin-bottom: 20px;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .about__title.text {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 374px) {
  .about__title.text {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 374px) {
  .about__text {
    font-size: 12px;
  }
}

.company__button-box {
  position: relative;
  text-decoration: none;
  width: 150px;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 3px;
  margin-top: 8px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .company__button-box {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .company__button-box {
    margin-top: 10px;
  }
}
@media screen and (max-width: 374px) {
  .company__button-box {
    margin-top: 0;
  }
}

.company__button-box::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 150px;
  height: 2px;
  background: #242424;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.company__button-box:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.company__button {
  left: 8%;
}
@media screen and (max-width: 768px) {
  .company__button {
    line-height: 1;
  }
}
@media screen and (max-width: 374px) {
  .company__button {
    left: 10%;
  }
}

.company__button::before {
  right: -118%;
  top: 46%;
}
@media screen and (max-width: 1250px) {
  .company__button::before {
    right: -100%;
  }
}
@media screen and (max-width: 768px) {
  .company__button::before {
    top: 40%;
    right: -112%;
  }
}
@media screen and (max-width: 374px) {
  .company__button::before {
    right: -120%;
  }
}

.company__button::after {
  right: -118%;
  top: 70%;
}
@media screen and (max-width: 1250px) {
  .company__button::after {
    right: -99%;
  }
}
@media screen and (max-width: 768px) {
  .company__button::after {
    top: 60%;
    right: -110%;
  }
}
@media screen and (max-width: 374px) {
  .company__button::after {
    right: -120%;
  }
}

.works__button-box {
  position: relative;
  text-decoration: none;
  width: 150px;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 3px;
  margin-top: 8px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .works__button-box {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .works__button-box {
    margin-top: 10px;
  }
}
@media screen and (max-width: 374px) {
  .works__button-box {
    margin-top: 25px;
  }
}

.works__button-box::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 150px;
  height: 2px;
  background: #242424;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.works__button-box:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.works__button {
  left: 8%;
}
@media screen and (max-width: 768px) {
  .works__button {
    line-height: 1;
  }
}
@media screen and (max-width: 374px) {
  .works__button {
    left: 10%;
  }
}

.works__button::before {
  right: -118%;
  top: 46%;
}
@media screen and (max-width: 1250px) {
  .works__button::before {
    right: -100%;
  }
}
@media screen and (max-width: 768px) {
  .works__button::before {
    top: 40%;
    right: -112%;
  }
}
@media screen and (max-width: 374px) {
  .works__button::before {
    right: -120%;
  }
}

.works__button::after {
  right: -118%;
  top: 70%;
}
@media screen and (max-width: 1250px) {
  .works__button::after {
    right: -99%;
  }
}
@media screen and (max-width: 768px) {
  .works__button::after {
    top: 60%;
    right: -110%;
  }
}
@media screen and (max-width: 374px) {
  .works__button::after {
    right: -120%;
  }
}

.contact {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact {
    height: auto;
  }
}

.contact__container {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact__container {
    flex-direction: column;
  }
}

.contact__content {
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 78px 25px 76px;
  border-right: 1px solid #ECECEC;
}
@media screen and (max-width: 768px) {
  .contact__content {
    padding: 70px 25px 87px 25px;
    border-right: none;
    border-bottom: 1px solid #ECECEC;
  }
}
@media screen and (max-width: 374px) {
  .contact__content {
    padding: 70px 15px 80px;
  }
}

.contact__content:nth-of-type(2) {
  border: none;
}

/*== ボタン共通設定 */
.bgcenterx {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

/*== 背景が流れる（中央から横全体） */
.bgcenterx:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #FF9100;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}

/*hoverした際の形状*/
.bgcenterx:hover:before {
  transform: scale(1, 1);
}

.contact__body {
  position: relative;
  z-index: 999;
}

.contact__title {
  margin-bottom: 11px;
}

.contact__text {
  margin-bottom: 16px;
}
@media screen and (max-width: 374px) {
  .contact__text {
    font-size: 12px;
  }
}

.contact__link {
  display: inline-block;
  width: 190px;
  text-align: center;
  padding: 14px 0;
  border: 1px solid #FF9100;
  background-color: #fff;
  line-height: 1.875;
  font-weight: 500;
  color: #FF9100;
}

.footer {
  width: 100%;
  height: 280px;
  background-color: #27272A;
}

.footer__inner {
  width: 100%;
  max-width: 1187px;
  height: inherit;
  padding-left: 42px;
  padding-right: 126px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 15px;
  }
}

.footer__container {
  display: flex;
  justify-content: space-between;
}

.footer__content {
  padding-top: 62px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    padding-top: 69px;
  }
}

.footer__logo {
  font-family: "Dosis", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
  color: #fff;
  width: 260px;
  padding-bottom: 10px;
  border-bottom: 1px solid #404040;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    font-size: 26px;
    line-height: 1.269;
    width: 139px;
    padding-bottom: 13px;
  }
}

.footer__logo-link {
  color: #fff;
}
.footer__logo-link:hover {
  opacity: 1;
}

.footer__sns-box {
  border-bottom: 1px solid #404040;
}

.footer__sns-link {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  line-height: 1.1666;
  color: #fff;
  padding: 5px 0;
  border-bottom: 1px solid #404040;
}

.footer__facebook-icon {
  width: 28px;
  padding: 10px 0;
  margin-right: 10px;
}

.footer__twitter-icon {
  width: 28px;
  padding: 10px 0;
  margin-right: 10px;
}

.footer__menu-items {
  padding-top: 39px;
}

.footer__menu-item {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  line-height: 1.1875;
  margin-bottom: 18px;
}

.footer__menu-link {
  color: #fff;
}

.footer__area {
  width: 100%;
  height: 80px;
  padding: 24px 0 18px;
  text-align: center;
  background-color: #000;
}

.footer__copyright {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 2.1428;
}

/*================================
下層ページ共通１
================================*/
.header-common {
  background-color: #F8F9F9;
}

.main {
  background-color: #F8F9F9;
}

.vision-top {
  padding: 80px 0 45px;
}
@media screen and (max-width: 768px) {
  .vision-top {
    padding: 60px 0 30px;
  }
}

.service-top, .company-top {
  padding: 80px 0 50px;
}
@media screen and (max-width: 768px) {
  .service-top, .company-top {
    padding: 60px 0 30px;
  }
}

.vision-top__inner, .service-top__inner, .company-top__inner {
  margin-left: auto;
  margin-right: auto;
}

.vision-top__content, .service-top__content, .company-top__content {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 25px 120px 0 120px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .vision-top__content, .service-top__content, .company-top__content {
    padding-right: 25px;
  }
}
@media screen and (max-width: 1250px) {
  .vision-top__content, .service-top__content, .company-top__content {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .vision-top__content, .service-top__content, .company-top__content {
    padding: 20px 15px;
  }
}

.vision-top__heading, .service-top__heading {
  font-size: 75px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  color: #242424;
  line-height: 1.293;
  margin-top: 70px;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .vision-top__heading, .service-top__heading {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 35px;
  }
}

.vision-top__title-orange, .service-top__title-orange, .company-top__title-orange {
  color: #FF9100;
}

@media screen and (max-width: 768px) {
  .breadcrumb__items {
    margin-bottom: 26px;
  }
}

.breadcrumb__item {
  position: relative;
  display: inline-block;
  margin-right: 40px;
}

.breadcrumb__item:first-child::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 0.5px;
  top: 14px;
  left: 38px;
  background-color: #A9A9A9;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:first-child::after {
    top: 15px;
    left: 30px;
  }
}

.breadcrumb__item:last-child {
  margin-right: 0;
}

.breadcrumb__link, .breadcrumb__current {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  color: #242424;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .breadcrumb__link, .breadcrumb__current {
    font-size: 10px;
    line-height: 1.1;
  }
}

.breadcrumb__link:hover {
  -webkit-text-decoration: underline solid #242424;
          text-decoration: underline solid #242424;
}

.vision-top__box, .service-top__box {
  margin-left: auto;
  width: 29.2%;
}
@media screen and (max-width: 768px) {
  .vision-top__box, .service-top__box {
    width: 48.8%;
  }
}

.vision-top__image, .service-top__image {
  height: inherit;
  aspect-ratio: 350/367;
}
@media screen and (max-width: 768px) {
  .vision-top__image, .service-top__image {
    aspect-ratio: 168/177;
  }
}

.vision__mv, .service__mv, .company__mv {
  width: 100%;
}

.vision__mv-inner, .service__mv-inner, .company__mv-inner {
  padding: 65px 120px 0 0;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .vision__mv-inner, .service__mv-inner, .company__mv-inner {
    padding-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .vision__mv-inner, .service__mv-inner, .company__mv-inner {
    padding-top: 0;
    padding-right: 15px;
  }
}

/*================================
Visionページ
================================*/
.vision__concept {
  padding: 45px 0 50px;
}
@media screen and (max-width: 768px) {
  .vision__concept {
    padding: 25px 0 50px;
  }
}
@media screen and (max-width: 488px) {
  .vision__concept {
    padding: 25px 0 0 0;
  }
}

.vision__concept-inner {
  padding: 25px 110px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .vision__concept-inner {
    padding: 0 30px;
  }
}

.vision__concept-container {
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .vision__concept-container {
    padding: 0 25px;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .vision__concept-container {
    padding: 0;
    margin-bottom: 50px;
  }
}

.vision__concept-title.text.text--large {
  width: 36%;
  margin-right: 60px;
}
@media screen and (max-width: 1024px) {
  .vision__concept-title.text.text--large {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .vision__concept-title.text.text--large {
    width: 100%;
    font-size: 24px;
    margin-right: 0;
  }
}

.vision__concept-text {
  margin-top: 0;
}

.vision__concept-cards {
  display: flex;
  max-width: 1320px;
  width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .vision__concept-cards {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .vision__concept-cards {
    padding: 0;
  }
}

/*===================================
スライダーのためのcss
===================================*/
@media screen and (max-width: 768px) {
  .slider {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
}

@media screen and (max-width: 768px) {
  .slick-dots button {
    color: transparent;
    outline: none;
    display: block;
    border-radius: 50%;
    background: #E9EEEF;
  }
}

.vision__concept-cards .slick-dots li.slick-active button:before {
  color: #FF9100;
}

.vision__concept-cards .slick-dots li button {
  width: 0;
  height: 0;
}

.vision__concept-card {
  aspect-ratio: 240/180;
}
@media screen and (max-width: 768px) {
  .vision__concept-card {
    aspect-ratio: 125/93.75;
  }
}

.greetings {
  padding: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  .greetings {
    padding: 11px 0 60px;
  }
}

.greetings__inner {
  max-width: 1270px;
  padding: 0 60px 0 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .greetings__inner {
    max-width: 914px;
    padding: 0 40px;
    margin-left: auto;
    margin-right: 70px;
  }
}
@media screen and (max-width: 768px) {
  .greetings__inner {
    padding: 0 15px;
    margin-left: 0;
    margin-right: 15px;
  }
}

.greetings__heading {
  position: static;
  color: #242424;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .greetings__heading {
    font-size: 36px;
  }
}

.greetings__summary-orange {
  line-height: 1.5;
  color: #FF9100;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .greetings__summary-orange {
    font-size: 12px;
    margin-bottom: 30px;
  }
}

.greetings__container {
  display: flex;
}
@media screen and (max-width: 768px) {
  .greetings__container {
    flex-direction: column-reverse;
    margin-left: 15px;
  }
}

.greetings__wrap {
  width: 23.1%;
  margin-left: 50px;
}
@media screen and (max-width: 1250px) {
  .greetings__wrap {
    width: 29%;
  }
}
@media screen and (max-width: 1024px) {
  .greetings__wrap {
    width: 36%;
  }
}
@media screen and (max-width: 895px) {
  .greetings__wrap {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .greetings__wrap {
    width: 60.6%;
    margin: 0 auto;
  }
}

.greetings__img {
  height: inherit;
  aspect-ratio: 240/288;
}
@media screen and (max-width: 768px) {
  .greetings__img {
    aspect-ratio: 200/240;
  }
}

.greetings__content {
  width: 77%;
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .greetings__content {
    width: 96%;
    margin-left: 0;
  }
}

.greetings__text {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .greetings__text {
    margin-bottom: 20px;
  }
}

.greetings__lead {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .greetings__lead {
    justify-content: start;
    margin-bottom: 40px;
  }
}

.greetings__name {
  font-size: 14px;
  font-weight: 200;
  color: #242424;
  line-height: 1.4285;
}

.greetings__wrap.box.isPlay {
  height: 50%;
}

/*================================
Serviceページ
================================*/
.service__concept {
  padding: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  .service__concept {
    padding: 30px 15px 60px;
  }
}

.service__concept-inner {
  width: 100%;
  max-width: 1220px;
  padding: 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .service__concept-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .service__concept-inner {
    padding: 0 15px;
  }
}

.service__concept-block {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .service__concept-block {
    padding-bottom: 60px;
  }
}

.service__concept-title {
  color: #242424;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service__concept-title {
    line-height: 2.5;
  }
}

.service__concept-container {
  display: flex;
  position: relative;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .service__concept-container {
    display: block;
    padding-bottom: 60px;
  }
}

.service__concept-container--reverse {
  display: flex;
  position: relative;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .service__concept-container--reverse {
    flex-direction: column-reverse;
    padding-bottom: 60px;
  }
}

.service__concept-container--reverse:last-child {
  padding-bottom: 0;
}

.service__concept-content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service__concept-content {
    width: 100%;
  }
}

.service__concept-content--right {
  width: 50%;
  max-width: 550px;
  transform: translateX(100%);
  z-index: 2000;
}
@media screen and (max-width: 1024px) {
  .service__concept-content--right {
    margin-top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .service__concept-content--right {
    width: 100%;
    max-width: 700px;
    position: relative;
    right: 100%;
    margin-top: 0;
  }
}

.service__concept-label {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.222;
}

.service__concept-label::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 4px;
  bottom: 0;
  left: 0%;
  background-color: #FF9100;
}

.service__concept-text {
  position: relative;
  width: 100%;
  z-index: 9999;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .service__concept-text {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 488px) {
  .service__concept-text {
    padding-bottom: 30px;
  }
}

.service__concept-area--right {
  width: 58%;
  height: 200px;
  max-width: 630px;
  aspect-ratio: 630/200;
  position: absolute;
  left: 43%;
  background-color: #E9EEEF;
}
@media screen and (max-width: 1024px) {
  .service__concept-area--right {
    height: 180px;
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .service__concept-area--right {
    position: static;
    max-width: 738px;
    width: calc(100% + 30px);
    height: 170px;
  }
}
@media screen and (max-width: 374px) {
  .service__concept-area--right {
    height: 160px;
  }
}

.service__concept-area--left {
  width: 58%;
  height: 200px;
  max-width: 630px;
  aspect-ratio: 630/200;
  position: absolute;
  background-color: #E9EEEF;
}
@media screen and (max-width: 1024px) {
  .service__concept-area--left {
    height: 180px;
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .service__concept-area--left {
    position: static;
    max-width: 738px;
    width: calc(100% + 30px);
    height: 170px;
    margin: 0 0 0 -30px;
  }
}
@media screen and (max-width: 374px) {
  .service__concept-area--left {
    height: 160px;
  }
}

.service__concept-wrap--right {
  width: 41%;
  position: absolute;
  bottom: 0%;
  left: 35%;
}
@media screen and (max-width: 768px) {
  .service__concept-wrap--right {
    width: 30%;
    bottom: 12%;
  }
}
@media screen and (max-width: 635px) {
  .service__concept-wrap--right {
    width: 40%;
    bottom: 11%;
  }
}
@media screen and (max-width: 584px) {
  .service__concept-wrap--right {
    position: relative;
    width: 37%;
  }
}
@media screen and (max-width: 488px) {
  .service__concept-wrap--right {
    width: 56.3%;
    bottom: 6%;
    left: 19%;
  }
}
@media screen and (max-width: 374px) {
  .service__concept-wrap--right {
    width: 63%;
  }
}

.service__concept-wrap--left {
  width: 41%;
  position: absolute;
  bottom: 0;
  left: 24%;
}
@media screen and (max-width: 768px) {
  .service__concept-wrap--left {
    width: 30%;
    position: relative;
    bottom: 21%;
    left: 36%;
  }
}
@media screen and (max-width: 635px) {
  .service__concept-wrap--left {
    width: 40%;
    bottom: 32%;
  }
}
@media screen and (max-width: 584px) {
  .service__concept-wrap--left {
    width: 37%;
    bottom: 12%;
  }
}
@media screen and (max-width: 488px) {
  .service__concept-wrap--left {
    width: 56.3%;
    bottom: 6%;
    left: 28%;
  }
}
@media screen and (max-width: 374px) {
  .service__concept-wrap--left {
    width: 63%;
    left: 22%;
  }
}

.service__concept-image {
  width: 100%;
}

/*================================
Companyページ
================================*/
.company-top__content {
  width: 100%;
  height: 440px;
  position: relative;
  background-image: url(../images/lower_layer_page-image.png);
  background-size: 350px 367px;
  background-repeat: no-repeat;
  background-position: right 6% bottom 66%;
}
@media screen and (max-width: 1024px) {
  .company-top__content {
    background-position: right 9% bottom 66%;
  }
}
@media screen and (max-width: 895px) {
  .company-top__content {
    background-position: right 11% bottom 66%;
  }
}
@media screen and (max-width: 768px) {
  .company-top__content {
    height: 221px;
    position: relative;
    background-size: 168px 190px;
    background-position: right 10% bottom 66%;
  }
}

.company-top__heading {
  font-size: 75px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  color: #242424;
  line-height: 1.293;
  margin-top: 70px;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .company-top__heading {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 35px;
  }
}

.members {
  padding: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .members {
    padding: 30px 0;
  }
}

.members__inner {
  max-width: 1290px;
  height: inherit;
  padding: 0 95px 0 45px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .members__inner {
    padding: 0 65px 0 45px;
  }
}
@media screen and (max-width: 895px) {
  .members__inner {
    padding: 0 45px 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .members__inner {
    padding: 0 30px 0 15px;
  }
}

.members__heading {
  position: static;
  color: #242424;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .members__heading {
    font-size: 36px;
  }
}

.members__summary-orange {
  color: #FF9100;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .members__summary-orange {
    font-size: 12px;
    line-height: 1.416;
    padding-bottom: 30px;
  }
}

.members__container {
  max-width: 1150px;
  width: 100%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .members__container {
    padding: 0 0 0 15px;
  }
}

.members__area {
  display: flex;
}

.members__wrap {
  width: 26.8%;
  aspect-ratio: 300/360;
  margin: 0 35px 60px;
}
@media screen and (max-width: 1024px) {
  .members__wrap {
    width: 28.1%;
    margin: 0 30px 40px;
  }
}
@media screen and (max-width: 768px) {
  .members__wrap {
    width: 44.5%;
    margin: 0 40px 40px;
  }
}
@media screen and (max-width: 488px) {
  .members__wrap {
    aspect-ratio: 140/168;
    margin: 0 20px 0 0;
  }
}

.members__image {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .members__profile {
    margin: auto 0;
  }
}

.members__job-title {
  font-size: 14px;
  color: #242424;
  font-weight: 500;
  line-height: 1.4285;
  margin-bottom: 10px;
}
@media screen and (max-width: 488px) {
  .members__job-title {
    font-size: 12px;
    line-height: 1.416;
    margin-bottom: 6px;
  }
}

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

.members__ja {
  font-size: 24px;
  font-weight: 200;
  color: #242424;
  line-height: 1.458;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .members__ja {
    margin-right: 0;
  }
}
@media screen and (max-width: 488px) {
  .members__ja {
    font-size: 20px;
    line-height: 1.45;
  }
}

.members__en {
  font-size: 24px;
  color: #242424;
  font-weight: 200;
  line-height: 1.458;
}
@media screen and (max-width: 488px) {
  .members__en {
    font-size: 20px;
    line-height: 1.45;
  }
}

.members__about {
  width: 67%;
  margin-left: 33.1%;
  margin-top: -30.8%;
  margin-bottom: 177px;
  border-top: 1px solid #E4E4E4;
  padding-top: 17px;
}
@media screen and (max-width: 1024px) {
  .members__about {
    margin-left: 35%;
    margin-top: -29.8%;
  }
}
@media screen and (max-width: 895px) {
  .members__about {
    margin-left: 36%;
    margin-top: -28.8%;
  }
}
@media screen and (max-width: 768px) {
  .members__about {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    border-top: none;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 488px) {
  .members__about.part {
    margin-bottom: 51px;
  }
}

.profile {
  padding: 30px 100px 100px 70px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding: 10px 0 60px;
  }
}

.profile__inner {
  max-width: 1290px;
  height: inherit;
  padding: 0 70px 0 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .profile__inner {
    padding: 0 60px 0 30px;
  }
}
@media screen and (max-width: 488px) {
  .profile__inner {
    padding: 0 30px 0 15px;
  }
}

.profile__heading {
  position: static;
  color: #242424;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 488px) {
  .profile__heading {
    font-size: 36px;
  }
}

.profile__summary-orange {
  color: #FF9100;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 488px) {
  .profile__summary-orange {
    font-size: 12px;
    line-height: 1.416;
    margin-bottom: 5px;
  }
}

.profile__container {
  max-width: 1150px;
  width: 100%;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .profile__container {
    padding-left: 30px;
  }
}
@media screen and (max-width: 488px) {
  .profile__container {
    padding-left: 15px;
  }
}

.profile__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
  color: #242424;
  line-height: 1.4285;
}
@media screen and (max-width: 374px) {
  .profile__list {
    font-size: 12px;
  }
}

.profile__entry {
  width: 13.5%;
  font-weight: 500;
  padding-top: 25px;
  padding-bottom: 26px;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 1024px) {
  .profile__entry {
    width: 22.5%;
  }
}
@media screen and (max-width: 768px) {
  .profile__entry {
    width: 32%;
  }
}
@media screen and (max-width: 488px) {
  .profile__entry {
    width: 38%;
  }
}
@media screen and (max-width: 374px) {
  .profile__entry {
    width: 39%;
  }
}

.profile__lead {
  width: 86.5%;
  font-weight: 200;
  padding-top: 25px;
  padding-bottom: 26px;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 1024px) {
  .profile__lead {
    width: 76.5%;
  }
}
@media screen and (max-width: 768px) {
  .profile__lead {
    width: 68%;
  }
}
@media screen and (max-width: 488px) {
  .profile__lead {
    width: 62%;
  }
}
@media screen and (max-width: 374px) {
  .profile__lead {
    width: 61%;
  }
}

.profile__address {
  display: inline-block;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .profile__address {
    margin-top: 16px;
  }
}

.profile__link {
  color: #242424;
}

.profile__link:hover {
  opacity: 0.7;
  -webkit-text-decoration: underline solid #242424;
          text-decoration: underline solid #242424;
}

.fa-solid.fa-location-dot {
  margin-left: 8px;
}

.profile__local {
  display: inline-block;
  margin-bottom: 16px;
}