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

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F8F9F9;
}

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;
}

/*-------------------------------------------
  共通パーツ
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1250px;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

.title-orange {
  color: #FF9100;
}

header.header {
  background-color: #F8F9F9;
}

.home .header {
  background-color: #FFFFFF;
}

.heading {
  font-size: 60px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  color: #FF9100;
  line-height: 0.666;
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 42px;
    line-height: 0.952;
  }
}

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

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

.button-more {
  display: inline-block;
  padding-left: 10px;
  transition: 0.3s transform;
}
.button-more:hover {
  transform: scale(1.07);
}

.button-more::after {
  content: "";
  width: 35px;
  height: 5px;
  margin-left: -50px;
  margin-top: 6px;
  border-bottom: 0.5px solid #FF9100;
  border-right: 0.5px solid #FF9100;
  transform: skew(50deg);
}

.link-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #E4E4E4;
  width: 150px;
  padding-bottom: 6px;
  padding-left: 10px;
  color: #FF9100;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.333;
  transition: 0.3s transform;
}
.link-more:hover {
  transform: scale(1.07);
  border-bottom: 1px solid transparent;
}

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

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

.link-button {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #242424;
  border: 1px solid #FF9100;
  background-color: #FFFFFF;
  font-weight: 400;
  width: 94px;
  text-align: center;
  padding: 14px 17px;
  transition: 0.3s transform;
}
.link-button:hover {
  transform: scale(1.07);
}
@media screen and (max-width: 768px) {
  .link-button {
    font-size: 12px;
    line-height: 12px;
    padding: 8px 13px;
  }
}
@media screen and (max-width: 374px) {
  .link-button {
    padding: 8px 6px;
  }
}

.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;
  }
}

.box {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
  overflow: hidden;
  z-index: 1;
}

.box-img {
  padding: 0;
}

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

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

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

.info__img-wrap.box.box-img.isPlay {
  margin: 0;
}

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

.box-info {
  position: relative;
  width: 80%;
  height: auto;
}

.info__wrap {
  position: absolute;
  height: 200px;
}

.info__title-en {
  margin-top: 25px;
}

.info__content {
  margin-left: 30px;
}

.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);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time-first {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

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

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

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

/*-------------------------------------------
  ヘッダー
-------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: #F8F9F9;
  z-index: 1000;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header.bg-white {
  background-color: #FFFFFF;
}

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

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding: 0 5%;
  max-width: 1470px;
}
@media screen and (max-width: 1440px) {
  .header__inner {
    padding: 0 60px;
  }
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 15px;
  }
}

.logo {
  font-size: 40px;
  font-weight: 400;
  font-family: "Dosis", sans-serif;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .logo {
    font-size: 26px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  color: #242424;
  height: inherit;
}

.header__logo-link {
  color: #242424;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    margin-top: 14px;
  }
}

.hamburger {
  position: fixed;
  top: 27px;
  right: 5%;
  width: 50px;
  height: 26px;
  z-index: 9999;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .hamburger {
    right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 100%;
    top: 23px;
    right: 16px;
    width: 25px;
    height: 14px;
  }
}

.hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242424;
  transition: 0.4s all;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    width: 25px;
  }
}

.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;
  }
}

.hamburger span.is-active:nth-child(1) {
  top: 14px;
  transform: rotate(-45deg);
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .hamburger span.is-active:nth-child(1) {
    top: 7px;
    width: 100%;
  }
}

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

.hamburger span.is-active:nth-child(3) {
  top: 14px;
  width: 100%;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .hamburger span.is-active:nth-child(3) {
    top: 7px;
  }
}

.drawer-menu {
  display: none;
  position: absolute;
  content: "";
  top: 0;
  right: -120%;
  width: 36%;
  height: 100vh;
  background-color: #27272A;
  z-index: 5000;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .drawer-menu {
    width: 100%;
    background-color: #27272A;
  }
}

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

.drawer-menu.js-drawer.panelactive {
  position: fixed;
}

.drawer-menu__logo-link {
  color: #FFFFFF;
}

.drawer-menu__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .drawer-menu__inner {
    padding-bottom: 260px;
  }
}

.drawer-menu__logo.u-md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer-menu__logo.u-md-show {
    display: block;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    height: 60px;
    font-size: 26px;
    font-family: "Chakra Petch", sans-serif;
    font-weight: 400;
    line-height: 1.19;
    letter-spacing: -0.025em;
    z-index: 9999;
    padding-left: 15px;
  }
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 17%;
}
@media screen and (max-width: 768px) {
  .drawer-menu__items {
    width: 24%;
  }
}

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

.drawer-menu__item:last-child {
  margin-top: 50px;
}

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

.drawer-menu__item:nth-child(7) {
  display: flex;
  justify-content: space-between;
}

.drawer-menu__sns-link {
  width: 28px;
}

.header.fixed {
  transform: none;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

/*-------------------------------------------
  Topページ
-------------------------------------------*/
.mv {
  width: 100%;
  height: 100vh;
  background-image: url(../images/top-fv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 0;
    height: 88vh;
  }
}

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

.mv__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: inherit;
  padding-left: 15%;
  padding-top: 40px;
  margin-top: -34px;
}
@media screen and (max-width: 1440px) {
  .mv__content {
    padding-left: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .mv__content {
    padding-left: 30px;
    padding-top: 46px;
  }
}
@media screen and (max-width: 768px) {
  .mv__content {
    padding-left: 30px;
    padding-top: 46px;
    margin-top: -80px;
  }
}

.mv__title {
  color: #FFFFFF;
  font-size: 80px;
  font-weight: 500;
  font-family: "Chakra Petch", sans-serif;
}
@media screen and (max-width: 1024px) {
  .mv__title {
    font-size: 66px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 56px;
    line-height: 1.357;
    padding-right: 15px;
    padding-top: 5px;
  }
}
@media screen and (max-width: 374px) {
  .mv__title {
    font-size: 50px;
  }
}

.mv__title.box {
  width: 830px;
}
@media screen and (max-width: 1024px) {
  .mv__title.box {
    width: 830px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title.box {
    width: 610px;
  }
}
@media screen and (max-width: 480px) {
  .mv__title.box {
    width: 320px;
  }
}
@media screen and (max-width: 374px) {
  .mv__title.box {
    width: 260px;
  }
}

.box.box-orange {
  width: 400px;
}
@media screen and (max-width: 1024px) {
  .box.box-orange {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .box.box-orange {
    width: 250px;
  }
}

.mv__lead {
  color: #FF9100;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  position: relative;
  display: inline-block;
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  .mv__lead {
    padding-left: 0;
    padding-top: 18px;
  }
}

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

.vision {
  background-color: #F8F9F9;
  padding-top: 120px;
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .vision {
    padding-top: 90px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .vision {
    padding-top: 67px;
    padding-left: 15px;
  }
}

.vision__inner {
  max-width: 85%;
  width: 100%;
  margin: 0 0 0 auto;
  background-color: #FFFFFF;
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .vision__inner {
    max-width: 1320px;
  }
}
@media screen and (max-width: 768px) {
  .vision__inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.vision__heading {
  position: absolute;
  top: 0;
  right: 11%;
  transform: translate(-70%, -50%);
}
@media screen and (max-width: 1440px) {
  .vision__heading {
    top: 0;
    right: 0;
    transform: translate(-70%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .vision__heading {
    top: 0;
    left: 0;
    transform: translate(0, -50%);
  }
}

.vision__container {
  display: flex;
  padding: 80px 80px 80px 55px;
  max-width: 85%;
}
@media screen and (max-width: 1440px) {
  .vision__container {
    max-width: 100%;
    padding: 80px 120px 80px 25px;
  }
}
@media screen and (max-width: 1024px) {
  .vision__container {
    display: flex;
    flex-direction: column-reverse;
    padding: 58px 25px 58px 0;
  }
}
@media screen and (max-width: 768px) {
  .vision__container {
    padding: 58px 15px 30px 0;
  }
}

.vision__cards {
  width: 46.95%;
  display: flex;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .vision__cards {
    width: 100%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .vision__cards {
    width: 100%;
    margin-top: 24px;
  }
}

.vision__card {
  width: 33.333%;
}

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

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

.vision__img {
  aspect-ratio: 180/280;
}
@media screen and (max-width: 768px) {
  .vision__img {
    width: 100%;
    padding: 0;
  }
}

.vision__content {
  width: 53.05%;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .vision__content {
    width: 48.5%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .vision__content {
    width: 100%;
    padding: 0;
  }
}

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

.vision__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .vision__button {
    margin-top: 20px;
  }
}

.vision__link {
  padding-bottom: 6px;
  padding-left: 12px;
}

.service {
  background-color: #F8F9F9;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: 25px;
}
@media screen and (max-width: 1024px) {
  .service {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .service {
    padding-top: 87px;
    padding-right: 15px;
    padding-bottom: 44px;
  }
}

.service__inner {
  max-width: 85%;
  width: 100%;
  margin: 0 auto 0 0;
  background-color: #FFFFFF;
  padding-right: 25px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .service__inner {
    max-width: 1320px;
  }
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.service__heading {
  position: absolute;
  top: 0;
  left: 19%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1440px) {
  .service__heading {
    left: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .service__heading {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .service__heading {
    left: 15px;
  }
}

.service__container {
  display: flex;
  padding: 80px 25px 80px 170px;
  max-width: 85%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1440px) {
  .service__container {
    padding: 80px 25px 80px 170px;
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .service__container {
    flex-direction: column;
    padding: 58px 0 58px 25px;
  }
}
@media screen and (max-width: 768px) {
  .service__container {
    padding: 58px 0 3px 15px;
  }
}

.service__content {
  width: 50%;
  padding-top: 64px;
  margin-right: 70px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .service__content {
    width: 47.27%;
    padding-top: 64px;
    margin-right: 149px;
  }
}
@media screen and (max-width: 1250px) {
  .service__content {
    margin-right: 70px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .service__content {
    width: 100%;
    margin-right: 70px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .service__content {
    margin: 0;
    padding-top: 0;
    padding-left: 0;
  }
}

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

.service__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 35px;
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  .service__button {
    margin-right: 30px;
  }
}
@media screen and (max-width: 480px) {
  .service__button {
    margin-top: 19px;
    margin-right: 15px;
  }
}

.service__link {
  padding-left: 8px;
  padding-bottom: 5px;
}

.service__cards {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .service__cards {
    width: 39.18%;
    margin-bottom: -25px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 1250px) {
  .service__cards {
    margin: 40px auto 0;
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .service__cards {
    margin: 90px auto 0;
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .service__cards {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .service__cards {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.service__card {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .service__card {
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .service__card {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .service__card {
    width: 100%;
    aspect-ratio: 315/193.5;
    margin: 0 auto;
    display: block;
  }
}

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

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

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

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

.service__card:nth-child(n+3) {
  border-top: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .service__card:nth-child(n+3) {
    border: none;
  }
}

.service__img-wrap {
  aspect-ratio: 150/150;
  width: 150px;
}

.wrap-left {
  margin-left: 17px;
}
@media screen and (max-width: 1024px) {
  .wrap-left {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .wrap-left {
    margin: 0 auto;
  }
}

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

.service__img {
  width: 100%;
  display: block;
}

.service__img-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #242424;
  text-align: center;
  letter-spacing: 0;
}

.service__img-title:first-of-type {
  width: 200px;
  margin-left: -25px;
}
@media screen and (max-width: 768px) {
  .service__img-title:first-of-type {
    margin-top: 0;
  }
}

.news {
  background-color: #FFFFFF;
  padding: 110px 0 80px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 163px 0 50px;
  }
}

.news__inner {
  position: relative;
}

.news__heading {
  position: absolute;
  right: 75px;
  top: -13px;
}
@media screen and (max-width: 768px) {
  .news__heading {
    top: -88px;
    left: 15px;
  }
}

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

.news__categories {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news__categories {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 374px) {
  .news__categories {
    flex-wrap: wrap;
  }
}

.news__category a {
  color: #242424;
}

.cat-item:not(:first-child) {
  margin-left: 13px;
}
@media screen and (max-width: 768px) {
  .cat-item:not(:first-child) {
    margin-left: 10px;
  }
}

@media screen and (max-width: 374px) {
  .cat-item:nth-child(4n) {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .news__category-link {
    padding: 11px 13px;
    font-size: 12px;
    width: 78px;
  }
}

.news__category-link.is-orange {
  background-color: #FF9100;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .news__category-link.is-orange {
    width: 50px;
  }
}

.news__items {
  width: 100%;
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  .news__items {
    margin-top: 30px;
  }
}

.news__item {
  display: flex;
  padding: 22.5px 0;
  border-top: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    padding: 16px 0 16px;
  }
}

.news__item:last-child {
  border-bottom: 1px solid #E4E4E4;
}

.news__meta {
  display: flex;
}

.news__label {
  color: #626262;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  width: 80px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-color: #F3F3F3;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}

.news__label-link {
  color: #626262;
}

.news__date {
  font-size: 11px;
  font-weight: 700;
  color: #A9A9A9;
  text-align: center;
  padding-top: 4px;
  padding-left: 12px;
  width: 72px;
}
@media screen and (max-width: 768px) {
  .news__date {
    padding-top: 7px;
  }
}

.news__title {
  padding-left: 30px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .news__title {
    padding-left: 0;
    margin-top: 14px;
  }
}

.news__title-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 2.142;
  color: #242424;
  transition: all 0.3s ease 0s;
}

.news__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 33px;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .news__button {
    margin-top: 18px;
    margin-right: 14px;
  }
}

@media screen and (max-width: 768px) {
  .news__link {
    padding-bottom: 5px;
    padding-left: 10px;
    margin-top: 3px;
  }
}

.info {
  background: linear-gradient(180deg, #F8F9F9 0%, #F8F9F9 71.8%, #E9EEEF 50%, #E9EEEF 100%);
  width: 100%;
  height: 100%;
  padding: 156px 0 196px;
}
@media screen and (max-width: 1440px) {
  .info {
    max-height: 760px;
  }
}
@media screen and (max-width: 768px) {
  .info {
    width: 100%;
    height: 100%;
    padding: 50px 0 4px;
    max-height: 1300px;
    background-image: none;
    background-color: #F8F9F9;
  }
}

.info__inner {
  max-width: 85%;
  width: 100%;
  margin: 0 0 0 auto;
  padding-left: 25px;
}
@media screen and (max-width: 1440px) {
  .info__inner {
    max-width: 1320px;
  }
}
@media screen and (max-width: 768px) {
  .info__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.info__container {
  display: flex;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .info__container {
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .info__container {
    padding-left: 0;
    padding-right: 0;
  }
}

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

@media screen and (max-width: 768px) {
  .info__item:not(:first-child) {
    margin-top: 190px;
  }
}

@media screen and (max-width: 768px) {
  .info__item:last-child {
    margin-bottom: 190px;
  }
}

.info__img-wrap {
  position: relative;
}

.info__body {
  background-color: #FFFFFF;
  padding: 0px 15px 25px 10px;
  width: 100%;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  margin-top: 25px;
}

.info__title-en {
  font-size: 12px;
  font-weight: 500;
  color: #242424;
}

.info__title {
  line-height: 1.25;
}

.info__title.text.text--large {
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .info__title.text.text--large {
    font-size: 20px;
    margin-top: 0;
  }
}

.info__text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 300;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .info__text {
    margin-top: 10px;
  }
}

.info__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .info__button {
    margin-top: 20px;
    margin-left: 70px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .info__link {
    padding-left: 10px;
    padding-bottom: 6px;
  }
}

.contact {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

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

.contact__content {
  width: 50%;
  text-align: center;
  margin: auto;
  padding: 78px 25px 76px;
}
@media screen and (max-width: 768px) {
  .contact__content {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 68px 15px 69px;
  }
}

.contact__content:not(:last-child) {
  border-right: 1px solid #ECECEC;
}
@media screen and (max-width: 768px) {
  .contact__content:not(:last-child) {
    border-bottom: 1px solid #ECECEC;
  }
}

.bgcenterx {
  position: relative;
  overflow: hidden;
  transition: ease 0.2s;
  z-index: 2;
}
.bgcenterx:hover {
  cursor: pointer;
  z-index: 2;
}

.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;
}

.bgcenterx:hover:before {
  transform: scale(1, 1);
  z-index: 2;
}

.contact .contact-body {
  display: inline;
  position: relative;
  z-index: 999;
  transform: translateZ(1px);
}

@media screen and (max-width: 768px) {
  .contact__title.text.text--large {
    font-size: 20px;
  }
}

.contact__text {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin-top: 24px;
  }
}

.contact__button {
  display: inline-block;
  width: 190px;
  text-align: center;
  padding: 20px 0;
  transition: 0.3s transform;
  font-size: 16px;
  line-height: 16px;
  border: 1px solid #FF9100;
  background-color: #FFFFFF;
  font-weight: 500;
  margin-top: 16px;
}
.contact__button:hover {
  transform: scale(1.07);
}
@media screen and (max-width: 768px) {
  .contact__button {
    margin-top: 15px;
  }
}

.contact__link {
  color: #FF9100;
}

.footer {
  background-color: #27272A;
  padding-top: 37px;
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 35px;
  }
}

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

.footer__top {
  display: flex;
  justify-content: space-between;
  padding-right: 82px;
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .footer__top {
    padding-right: 0;
  }
}

.footer__left {
  width: 25.5%;
}
@media screen and (max-width: 1024px) {
  .footer__left {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .footer__left {
    width: 25.5%;
  }
}
@media screen and (max-width: 480px) {
  .footer__left {
    width: 140px;
  }
}

.footer__logo {
  margin-top: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #404040;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin-top: 34px;
  }
}

.footer__logo-link {
  color: #FFFFFF;
}

.footer__sns {
  margin-top: 9px;
}

.footer__sns-item {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #404040;
}

.footer__sns-item:not(:first-child) {
  margin-top: 12px;
}

.footer__sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.sns__img {
  display: inline-block;
  width: 28px;
  margin-right: 10px;
}

.footer__item:not(:first-child) {
  margin-top: 13px;
}

.footer__link {
  display: inline-block;
  color: #FFFFFF;
  line-height: 1.1875;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.footer__bottom {
  background-color: #000000;
  padding: 24px 0 26px;
  text-align: center;
}

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

/*-------------------------------------------
  common 共通クラス
-------------------------------------------*/
.common-mv {
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .common-mv {
    padding-top: 14px;
  }
}

.common-mv__inner {
  justify-content: space-between;
  align-items: center;
}

.common-mv__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .common-mv__container {
    padding-bottom: 40px;
    padding-top: 50px;
  }
}

.common-mv__content {
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .common-mv__content {
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .common-mv__content {
    width: 48.8%;
  }
}

.common-mv__title.title.box {
  width: 300px;
}

.common-mv__items {
  display: flex;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .common-mv__items {
    margin-top: 20px;
  }
}

.post.post-page.current-item, .post-root.post.post-post.current-item, .post-root.post.post-post {
  margin-left: 40px;
}

a.home, .post-root.post.post-post {
  display: inline;
  color: #242424;
  border-bottom: 1px solid #242424;
}

.post-root.post.post-post.current-item {
  border-bottom: none;
}

a.taxonomy.category {
  display: none;
}

.post-root.post.post-post {
  margin-right: 40px;
  position: relative;
}

.news-article__item .post-root.post.post-post::after, .news-page__item .post-root.post.post-post::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background-color: #A9A9A9;
  left: 130%;
}

.news__item .post-root.post.post-post::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background-color: #A9A9A9;
  left: 130%;
}

.common-mv__item {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #242424;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .common-mv__item {
    font-size: 10px;
    line-height: 2;
  }
}

.link-border {
  display: inline;
  border-bottom: 1px solid #242424;
}

.archive.post-works-archive.current-item {
  padding-left: 40px;
}

.common-mv__item:first-child {
  position: relative;
  display: inline-block;
}

.common-mv__item:first-child:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background-color: #A9A9A9;
  left: 35px;
}
@media screen and (max-width: 768px) {
  .common-mv__item:first-child:after {
    left: 27px;
  }
}

.common-mv__link {
  color: #242424;
}

.common-mv__img-wrap {
  width: 30.6%;
  aspect-ratio: 367/350;
  background: url(../images/cmn-mv.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .common-mv__img-wrap {
    aspect-ratio: 177/168;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .common-mv__img-wrap {
    aspect-ratio: 177/168;
    margin-top: 20px;
    width: 52%;
  }
}

.common-mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.common-mv__picture {
  padding-right: 10%;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .common-mv__picture {
    max-width: 1345px;
    width: 100%;
    padding-right: 25px;
    margin-right: auto;
    margin-top: 3px;
  }
}
@media screen and (max-width: 768px) {
  .common-mv__picture {
    padding-left: 0;
    padding-right: 15px;
  }
}

/*-------------------------------------------
  Vision
-------------------------------------------*/
main {
  background-color: #F8F9F9;
}

.vision-mv__picture-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.vision__picture {
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .vision__picture {
    height: auto;
    aspect-ratio: 1320/460;
  }
}

.vision-mv__title.common-mv__title.title.box.isPlay {
  width: 210px;
}
@media screen and (max-width: 768px) {
  .vision-mv__title.common-mv__title.title.box.isPlay {
    width: 170px;
  }
}

.vision-concept {
  padding: 86px 0 0;
}
@media screen and (max-width: 768px) {
  .vision-concept {
    padding: 60px 0 0;
  }
}

.vision-concept__inner {
  max-width: 1150px;
  width: 100%;
}

.vision-concept__content {
  display: flex;
  padding-bottom: 94px;
}
@media screen and (max-width: 768px) {
  .vision-concept__content {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }
}

.vision-concept__title {
  width: 240px;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .vision-concept__title {
    width: 100%;
  }
}

.vision-concept__text {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .vision-concept__text {
    width: 100%;
    margin-top: 16px;
  }
}

.vision-concept__cards {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .vision-concept__cards {
    padding: 0;
  }
}

.vision-concept__card {
  width: 20%;
}
.vision-concept__img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .vision-concept__img {
    width: 100%;
    padding: 0;
  }
}

.slider {
  width: 100%;
  display: block;
}

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

.slider .slick-slide {
  margin: 0;
}

element.style button {
  display: none;
}

.slider button.slick-prev.slick-arrow,
.slider button.slick-next.slick-arrow {
  opacity: 0;
}

/*ドットナビゲーションの設定*/
@media screen and (max-width: 768px) {
  .slick-dots {
    text-align: center;
    margin: -14px 0 0 0;
  }
}

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

.slick-dots button {
  color: transparent;
  outline: none;
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #E9EEEF;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #FF9100;
}

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

.greetings__inner {
  width: 100%;
}

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

.greetings__lead {
  color: #FF9100;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .greetings__lead {
    font-size: 12px;
  }
}

.greetings__container {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1150px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .greetings__container {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 25px;
  }
}

@media screen and (max-width: 768px) {
  .greetings__img-wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
  }
}

.greetings__box.box {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.greetings__img {
  width: 100%;
  aspect-ratio: 240/288;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 4px;
}

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

.greetings__text:nth-child(2) {
  margin-top: 32px;
}

.greetings__text:last-child {
  margin-top: 24px;
  text-align: right;
  line-height: 1.428;
}
@media screen and (max-width: 768px) {
  .greetings__text:last-child {
    margin-top: 12px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

/*-------------------------------------------
  Serviceページ
-------------------------------------------*/
.service-mv__picture-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.service__picture {
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .service__picture {
    height: auto;
    aspect-ratio: 1320/460;
  }
}

.our-services {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .our-services {
    padding: 55px 15px 0 15px;
  }
}

.our-services__inner {
  max-width: 1150px;
  width: 100%;
}

.our-services__intro {
  font-weight: 500;
  color: #242424;
  line-height: 1.5;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .our-services__intro {
    line-height: 2.5;
    padding-bottom: 43px;
  }
}

.our-services__container {
  display: flex;
  position: relative;
  padding-bottom: 134px;
}
@media screen and (max-width: 768px) {
  .our-services__container {
    padding-bottom: 56px;
    display: block;
  }
}

.our-services__container-reverse {
  display: flex;
  position: relative;
  padding-bottom: 157px;
}
@media screen and (max-width: 768px) {
  .our-services__container-reverse {
    flex-direction: column-reverse;
    padding-bottom: 54px;
  }
}

.our-services__container-reverse:last-child {
  padding-bottom: 113px;
}
@media screen and (max-width: 768px) {
  .our-services__container-reverse:last-child {
    padding-bottom: 60px;
  }
}

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

.our-services__content-right {
  position: absolute;
  width: 50%;
  max-width: 550px;
  content: "";
  left: 75%;
  transform: translateX(-50%);
  z-index: 2000;
}
@media screen and (max-width: 1250px) {
  .our-services__content-right {
    margin-top: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .our-services__content-right {
    margin-top: -50px;
  }
}
@media screen and (max-width: 768px) {
  .our-services__content-right {
    position: relative;
    max-width: 700px;
    width: 100%;
    left: 47%;
    margin-left: 15px;
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .our-services__content-right {
    left: 45.6%;
  }
}

.our-services__title {
  font-size: 18px;
  font-weight: 500;
  color: #242424;
  line-height: 2.222;
  padding-bottom: 4px;
  position: relative;
}

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

.our-services__text {
  position: relative;
  z-index: 4999;
  margin-top: 28px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .our-services__text {
    margin-top: 26px;
    padding-bottom: 31px;
  }
}

.our-services__box-right {
  width: 57%;
  max-width: 630px;
  aspect-ratio: 630/200;
  background: #E9EEEF;
  position: absolute;
  content: "";
  left: 43%;
  z-index: 2000;
}
@media screen and (max-width: 1024px) {
  .our-services__box-right {
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .our-services__box-right {
    position: static;
    max-width: 738px;
    width: calc(100% + 30px);
    height: 170px;
    aspect-ratio: 345/170;
  }
}
@media screen and (max-width: 480px) {
  .our-services__box-right {
    margin: 0 -50px 0 0;
  }
}

.our-services__box-left {
  width: 57%;
  max-width: 630px;
  aspect-ratio: 630/200;
  height: 200px;
  background: #E9EEEF;
  position: relative;
  right: 0;
  z-index: 2000;
}
@media screen and (max-width: 1250px) {
  .our-services__box-left {
    height: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .our-services__box-left {
    height: 170px;
  }
}
@media screen and (max-width: 768px) {
  .our-services__box-left {
    position: static;
    max-width: 738px;
    width: calc(100% + 30px);
    margin: 0 0 0 -30px;
    aspect-ratio: 345/170;
  }
}

.our-services__img-wrap-right {
  width: 41%;
  position: absolute;
  content: "";
  top: 40%;
  left: 55.5%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .our-services__img-wrap-right {
    width: 30%;
    position: relative;
    top: 50%;
    left: 46%;
  }
}
@media screen and (max-width: 480px) {
  .our-services__img-wrap-right {
    width: 57%;
  }
}

.our-services__img-wrap-left {
  width: 41%;
  position: relative;
  top: 40%;
  left: 44.5%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .our-services__img-wrap-left {
    width: 30%;
    top: 50%;
    left: 56%;
  }
}
@media screen and (max-width: 480px) {
  .our-services__img-wrap-left {
    width: 57%;
    left: 54.5%;
  }
}

.our-services__img {
  width: 100%;
}

/*-------------------------------------------
  Companyページ
-------------------------------------------*/
.company-mv__picture-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.company__picture {
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .company__picture {
    height: auto;
    aspect-ratio: 1320/460;
  }
}

.company-mv__title.title.box {
  width: 330px;
}
@media screen and (max-width: 768px) {
  .company-mv__title.title.box {
    width: 290px;
  }
}

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

.members__inner {
  width: 100%;
}

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

.members__lead {
  color: #FF9100;
  line-height: 1.5;
  margin-top: -3px;
}
@media screen and (max-width: 768px) {
  .members__lead {
    font-size: 12px;
    margin-top: 0;
  }
}

.members__container {
  max-width: 1150px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .members__container {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 28px;
  }
}

@media screen and (max-width: 768px) {
  .members__container:nth-of-type(2) {
    margin-top: 34px;
  }
}

@media screen and (max-width: 768px) {
  .members__container:nth-of-type(3) {
    margin-top: 34px;
  }
}

.members__container:nth-of-type(4) {
  margin-top: 63px;
}

.members__container:nth-of-type(5) {
  margin-top: 60px;
}

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

.members__img-wrap {
  width: 27.27%;
  aspect-ratio: 300/360;
}
@media screen and (max-width: 768px) {
  .members__img-wrap {
    aspect-ratio: 140/168;
    width: 44.44%;
  }
}

.members__body {
  margin-left: 50px;
  width: 68.18%;
}
@media screen and (max-width: 768px) {
  .members__body {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .members__box {
    width: 49.2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 14px;
    margin-left: 6%;
  }
}

.members__position {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.428;
  color: #242424;
}
@media screen and (max-width: 480px) {
  .members__position {
    font-size: 12px;
    line-height: 1.416;
  }
}

.members__name {
  display: flex;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.458;
  color: #242424;
  margin-top: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .members__name {
    flex-direction: column;
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  .members__name {
    font-size: 20px;
    line-height: 1.45;
    margin-top: 5px;
  }
}

.members__en {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .members__en {
    margin-left: 0;
  }
}

.members__wrap {
  margin-top: 16px;
}
.profile {
  padding: 100px 0 96px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding: 56px 0 58px;
  }
}

.profile__inner {
  width: 100%;
}

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

.profile__lead {
  color: #FF9100;
  line-height: 1.5;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .profile__lead {
    font-size: 12px;
  }
}

.profile__container {
  max-width: 1150px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .profile__container {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 4px;
  }
}

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

.profile__term {
  width: 13.5%;
  font-weight: 500;
  padding-bottom: 26px;
  padding-top: 25px;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 1024px) {
  .profile__term {
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  .profile__term {
    width: 31%;
  }
}
@media screen and (max-width: 480px) {
  .profile__term {
    width: 41%;
  }
}
@media screen and (max-width: 374px) {
  .profile__term {
    width: 39%;
  }
}

.profile__desc {
  width: 86.5%;
  font-weight: 300;
  padding-bottom: 26px;
  padding-top: 25px;
  border-bottom: 1px solid #E4E4E4;
  line-height: 2.142;
}
@media screen and (max-width: 1024px) {
  .profile__desc {
    width: 78%;
  }
}
@media screen and (max-width: 768px) {
  .profile__desc {
    width: 69%;
  }
}
@media screen and (max-width: 480px) {
  .profile__desc {
    width: 59%;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 374px) {
  .profile__desc {
    width: 61%;
  }
}
.profile__desc br {
  display: none;
}
@media screen and (max-width: 768px) {
  .profile__desc br {
    display: block;
  }
}

.profile__desc:nth-child(16) {
  line-height: 2.7;
  margin-top: -10px;
}

.profile__link-wrap {
  display: flex;
}

.profile__link {
  color: #242424;
  transition: 0.3s transform;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .profile__link {
    margin-top: -20px;
  }
}

.profile__link:hover {
  text-decoration: underline;
  transform: scale(1.07);
}

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

.address {
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .address {
    margin: 13px 0;
  }
}

.fa-map-marker-alt:before {
  margin-left: 10px;
}

.fas {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .fas {
    margin-top: -12px;
  }
}

/*-------------------------------------------
  News
-------------------------------------------*/
.news-mv__picture-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.news__picture {
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .news__picture {
    height: auto;
    aspect-ratio: 1320/460;
  }
}

.news.news-page {
  background-color: #F8F9F9;
  padding: 100px 0 98px;
}
@media screen and (max-width: 768px) {
  .news.news-page {
    padding: 67px 0 58px;
  }
}

@media screen and (max-width: 768px) {
  .news__container.news-page__container {
    padding-left: 0;
    padding-right: 0;
  }
}

li.news__tab {
  display: none;
}

@media screen and (max-width: 768px) {
  .news__items.news-page__items {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .news__item.news-page__item {
    padding: 13px 0 13px;
  }
}

@media screen and (max-width: 768px) {
  .news__title.news-page__title {
    margin-top: 13px;
  }
}

/* pagination */
.pagination {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 45px;
}

.pagination .nav-links {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #242424;
  border: 2px solid #E9EEEF;
  background-color: #E9EEEF;
  font-size: 14px;
  margin-left: 14px;
}

a.next.page-numbers {
  border: none;
  background-color: transparent;
}

a.prev.page-numbers {
  border: none;
  background-color: transparent;
}

.pagination .page-numbers:hover {
  border-color: #E9EEEF;
}

.pagination .page-numbers.current {
  color: #FFFFFF;
  border-color: #FF9100;
  background-color: #FF9100;
}

.pagination .page-numbers.dots {
  padding: 0 0.5em;
  border: none;
  background-color: transparent;
}

/*-------------------------------------------
  Works
-------------------------------------------*/
.works-mv__picture-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.works__picture {
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .works__picture {
    height: auto;
    aspect-ratio: 1320/460;
  }
}

.works-mv__title.title.box {
  width: 220px;
}

.works {
  background-color: #F8F9F9;
  padding: 100px 0 98px;
}
@media screen and (max-width: 768px) {
  .works {
    padding: 60px 0 58px;
  }
}

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

.works__categories {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .works__categories {
    margin-bottom: 0;
    margin-left: -15px;
  }
}

@media screen and (max-width: 768px) {
  .works__categories.table-scroll {
    overflow: auto;
    white-space: nowrap;
  }
}

.table-scroll::-webkit-scrollbar {
  height: 5px;
}

.table-scroll::-webkit-scrollbar-track {
  background: #FFFFFF;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: #E9EEEF;
}

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

.works__category:not(:first-child) {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .works__category:not(:first-child) {
    margin-left: 10px;
  }
}

@media screen and (max-width: 374px) {
  .works__category:nth-child(4n) {
    margin-left: 0;
    margin-top: 10px;
  }
}

.works__category-link {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .works__category-link {
    padding: 11px 13px;
    font-size: 12px;
  }
}

.works__category-link.is-orange {
  background-color: #FF9100;
  color: #FFFFFF;
  width: 92px;
}
@media screen and (max-width: 768px) {
  .works__category-link.is-orange {
    width: 50px;
  }
}

.works__cards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.works__card {
  width: calc(33.3% - 26.6666666667px);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .works__card {
    width: calc(50% - 20px);
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .works__card {
    width: 100%;
  }
}

.works__card:not(:nth-child(3n+1)) {
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .works__card:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .works__card:not(:nth-child(2n+1)) {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .works__card:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .works__card:nth-child(n+3) {
    margin-top: 60px;
  }
}

.works__card:nth-child(n+4) {
  margin-top: 60px;
}

.works__card:nth-child(n+7) {
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .works__card:nth-child(n+7) {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .works__card:nth-child(n+2) {
    margin-top: 34px;
  }
}

.works__img-wrap {
  aspect-ratio: 340/200;
  position: relative;
}

.attachment-medium.size-medium.wp-post-image {
  aspect-ratio: 340/200;
  width: 100%;
  height: 100%;
}

.works__img-category {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FF9100;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 16px;
}

.works__body {
  padding: 8px 12px 10px;
}

.works__time {
  color: #A9A9A9;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.works__company {
  color: #242424;
  font-weight: 400;
  margin-top: 10px;
}

/*-------------------------------------------
  Contact
-------------------------------------------*/
.contact-mv__picture-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.contact__picture {
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .contact__picture {
    height: auto;
    aspect-ratio: 1320/460;
  }
}

.contact-mv__title.title.box {
  width: 300px;
}

#contact-page {
  background-color: #F8F9F9;
  padding: 100px 0 93px;
}
@media screen and (max-width: 768px) {
  #contact-page {
    padding: 58px 0 56px;
  }
}

.contact-page__inner {
  max-width: 1010px;
}

.contact-page__inner.inner {
  padding-left: 30px;
  padding-right: 30px;
}
.contact-page__contents {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact-page__contents {
    width: 100%;
  }
}

.contact-page__head {
  color: #A9A9A9;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-page__head {
    font-size: 16px;
    text-align: center;
  }
}

.contact-page__head.color-black {
  color: #242424;
}

.contact-page__head:not(:last-child) {
  padding-right: 160px;
}
@media screen and (max-width: 768px) {
  .contact-page__head:not(:last-child) {
    padding-right: 61px;
  }
}
@media screen and (max-width: 374px) {
  .contact-page__head:not(:last-child) {
    padding-right: 49px;
  }
}

.contact-page__head:not(:last-child):after {
  content: "";
  position: absolute;
  background: #A9A9A9;
  width: 100px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact-page__head:not(:last-child):after {
    top: 29%;
    width: 71px;
  }
}

.contact-page__item {
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .contact-page__item {
    font-size: 18px;
    margin-left: 10px;
  }
}

.contact__form {
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 88px;
  font-size: 16px;
  color: #242424;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__form {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 40px;
    font-size: 14px;
  }
}

.contact__form-text {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .contact__form-text {
    margin-top: 35px;
    margin-bottom: 11px;
    line-height: 1.8;
  }
}

.is-required {
  color: #E90000;
}

.contact__form-box {
  display: flex;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact__form-box {
    flex-direction: column;
  }
}

.contact__input-field {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .contact__input-field {
    width: 100%;
  }
}

.contact__input-field:nth-child(2n+1) {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .contact__label-wrap {
    margin-top: 24px;
  }
}

.contact__label {
  font-size: 14px;
  line-height: 1.428;
}

.contact__input-wrap {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__input-wrap {
    font-size: 14px;
  }
}

input::-moz-placeholder {
  color: #A9A9A9;
}

input::placeholder {
  color: #A9A9A9;
}

.contact__input {
  width: 100%;
  font-size: 14px;
  line-height: 1.428;
  padding: 15px 20px;
  background-color: #FFFFFF;
}

.contact__form-checkbox {
  font-size: 14px;
  line-height: 2.8;
}

.contact__text-checkbox {
  margin-top: 30px;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .contact__text-checkbox {
    margin-top: 23px;
    line-height: 2;
  }
}

.checkbox {
  display: inline-block;
  position: relative;
  margin-right: 80px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .checkbox {
    margin-top: 26px;
  }
}
@media screen and (max-width: 374px) {
  .checkbox {
    margin-right: 55px;
  }
}

.checkbox.checkbox-last {
  margin-left: 97px;
}
@media screen and (max-width: 768px) {
  .checkbox.checkbox-last {
    margin-left: 0;
  }
}

[type=checkbox]:checked + span::after {
  display: block;
}

.checkbox.checkbox-privacy {
  display: flex;
  margin-left: 28px;
}
@media screen and (max-width: 768px) {
  .checkbox.checkbox-privacy {
    margin-right: 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .checkbox.checkbox-privacy {
    font-size: 12px;
  }
}

.contact__input-field-textarea {
  text-align: left;
}

.contact__textarea-wrap {
  width: 100%;
  font-size: 14px;
}

.contact__textarea {
  width: 100%;
  height: 120px;
  font-size: 14px;
  padding: 9.5px 10px;
  background-color: #FFFFFF;
  resize: none;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .contact__textarea {
    height: 260px;
    margin-bottom: -10px;
  }
}

.contact__form-privacy {
  margin-top: -45px;
  margin-left: 24px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .contact__form-privacy {
    margin-top: -90px;
    margin-left: -223px;
    margin-bottom: 20px;
  }
}

.contact-privacy__link {
  color: #242424;
  border-bottom: 1px solid #242424;
}

.contact-page__button {
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-page__link {
  display: inline-block;
  margin-top: 70px;
  width: 392px;
  height: 58px;
  position: relative;
  transition: 0.3s transform;
  color: #FF9100;
  background-color: #FFFFFF;
  border: 1px solid #FF9100;
}
.contact-page__link a {
  display: block;
}
@media screen and (max-width: 768px) {
  .contact-page__link {
    width: 315px;
    margin-top: 42px;
  }
}
@media screen and (max-width: 374px) {
  .contact-page__link {
    width: 260px;
  }
}

.contact-page__link.btn.bgleft {
  padding-left: 0;
}

.contact-page__link::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 5px;
  top: 25px;
  right: 30px;
  border-bottom: 0.5px solid #FF9100;
  border-right: 0.5px solid #FF9100;
  transform: skew(50deg);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .contact-page__link::after {
    right: 20px;
  }
}
@media screen and (max-width: 374px) {
  .contact-page__link::after {
    right: 15px;
  }
}

.contact-page__link:hover::after {
  border-bottom: 0.5px solid #FFFFFF;
  border-right: 0.5px solid #FFFFFF;
  z-index: 3;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid #FF9100;
  padding: 0;
  text-align: center;
  outline: none;
  transition: ease 0.2s;
}
@media screen and (max-width: 374px) {
  .btn {
    text-align: left;
  }
}

.bgleft:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FF9100;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.contact-page__button :hover {
  color: white;
  background-color: #FF9100;
}

input[type=submit] {
  color: #FF9100;
  width: 392px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  input[type=submit] {
    width: 300px;
  }
}
@media screen and (max-width: 374px) {
  input[type=submit] {
    width: 229px;
  }
}

.submit {
  display: inline;
}

.btn .submit {
  position: relative;
  z-index: 3;
}

.btn:hover .submit {
  color: #FFFFFF;
}

.contact__input-wrap:nth-child(1) {
  height: 50px;
}

.contact__input-wrap br {
  display: none;
}

input[type=text i]:nth-child(2) {
  margin-top: 100px;
}

.contact__label-wrap {
  margin-top: 30px;
  margin-bottom: 8px;
}

/*-------------------------------------------
  404-page
-------------------------------------------*/
.page404 {
  padding-top: 250px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page404 {
    padding-top: 177px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 60px;
  }
}

.page404__inner {
  max-width: 706px;
  text-align: center;
}

.page404__container {
  display: flex;
  height: 211px;
}
@media screen and (max-width: 768px) {
  .page404__container {
    height: 190px;
  }
}

.page404__img-wrap {
  background-image: url(../images/404img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 171px;
  margin-left: 140px;
  margin-right: 40px;
  aspect-ratio: 171/211;
}
@media screen and (max-width: 768px) {
  .page404__img-wrap {
    width: 152px;
    margin-left: auto;
    margin-right: 10px;
    aspect-ratio: 152/187;
  }
}
@media screen and (max-width: 374px) {
  .page404__img-wrap {
    width: 132px;
    margin-left: 0;
  }
}

.page404__contents {
  width: 342px;
  text-align: left;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .page404__contents {
    margin-top: 18px;
  }
}

.page404__title {
  font-size: 83px;
  font-weight: 700;
  color: #FF9100;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page404__title {
    font-size: 73px;
  }
}

.page404__lead {
  font-size: 22px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #FF9100;
}
@media screen and (max-width: 768px) {
  .page404__lead {
    font-size: 18px;
  }
}

.page404__text {
  color: #242424;
  font-weight: 400;
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .page404__text {
    font-size: 14px;
    line-height: 2.142;
    margin-top: 16px;
  }
}

.page404__button {
  display: inline-block;
  width: 190px;
  text-align: center;
  padding: 18px 10px;
  transition: 0.3s transform;
  font-size: 16px;
  line-height: 16px;
  border: 1px solid #FF9100;
  background-color: #FFFFFF;
  font-weight: 500;
  margin-top: 83px;
  margin-left: auto;
  margin-right: auto;
}
.page404__button:hover {
  transform: scale(1.07);
}
@media screen and (max-width: 768px) {
  .page404__button {
    margin-top: 42px;
  }
}
@media screen and (max-width: 374px) {
  .page404__button {
    margin-top: 62px;
  }
}

.page404__link {
  color: #FF9100;
}

/*-------------------------------------------
  news-article
-------------------------------------------*/
.news-article-mv {
  padding: 73px 90px 42px 89px;
  border-bottom: 0.5px solid #A9A9A9;
}
@media screen and (max-width: 768px) {
  .news-article-mv {
    padding: 38px 15px 21px 15px;
  }
}

.news-article-mv__inner {
  width: 100%;
  max-width: 1250px;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .news-article-mv__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.news-article-mv__items {
  margin-top: 50px;
}

.common-mv__item.item-under {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .common-mv__item.item-under {
    margin-left: 4px;
  }
}

.common-mv__item.item-under::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background-color: #A9A9A9;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .common-mv__item.item-under::before {
    left: 15px;
  }
}

.news-article {
  background-color: #F8F9F9;
  padding-top: 39px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .news-article {
    padding-top: 20px;
    padding-bottom: 16px;
  }
}

.news-article__inner {
  width: 100%;
  max-width: 1150px;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .news-article__inner {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.news-article__container {
  width: 69.1%;
  padding: 37px 40px 40px 40px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .news-article__container {
    width: 100%;
    padding: 20px 15px 53px 15px;
  }
}

.news-article__category {
  width: 80px;
}

.category__link {
  display: inline-block;
  font-size: 11px;
  line-height: 11px;
  font-weight: 500;
  width: 80px;
  color: #FFFFFF;
  padding: 7px 7px;
  background-color: #FF9100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .category__link {
    width: 77px;
    padding: 6px;
  }
}

.news-article__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.666;
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .news-article__title {
    font-size: 18px;
    margin-top: 9px;
  }
}

.news-article__img.wp-post-image {
  aspect-ratio: 690/380;
  height: auto;
}
@media screen and (max-width: 768px) {
  .news-article__img.wp-post-image {
    aspect-ratio: 315/176;
    height: auto;
  }
}

.news-article__img-wrap {
  margin-top: 44px;
}

.news-article__date {
  font-size: 11px;
  font-weight: 700;
  color: #A9A9A9;
  margin-top: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news-article__date {
    margin-top: 6px;
  }
}

.news-article__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #242424;
  background: #F8F9F9;
  line-height: 2;
  margin-top: 43px;
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-article__subtitle {
    font-size: 16px;
    line-height: 2.5;
    margin-top: 40px;
  }
}

.news-article__subtitle::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 45px;
  background: #FF9100;
}
@media screen and (max-width: 768px) {
  .news-article__subtitle::before {
    height: 39px;
  }
}

.news-article__text {
  font-size: 14px;
  font-weight: 300;
  color: #242424;
  line-height: 2.142;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .news-article__text {
    margin-top: 33px;
  }
}

.news-article__text.text-small {
  margin-top: 30px;
}

.news-article__subtitle-third {
  margin-top: 60px;
  font-size: 18px;
  font-weight: 400;
  color: #242424;
  line-height: 2.222;
  padding-bottom: 3px;
  padding-left: 12px;
  position: relative;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .news-article__subtitle-third {
    font-size: 18px;
    line-height: 2.222;
    margin-top: 30px;
  }
}

.news-article__subtitle-third::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: #FF9100;
  width: 270px;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .news-article__subtitle-third::before {
    width: 125px;
  }
}

.tags {
  margin-top: 43px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .tags {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.tag {
  position: relative;
  padding-left: 16px;
  line-height: 1.3;
}

.tag:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 36%;
  left: 3px;
  display: inline-block;
  background: #FF9100;
  border-radius: 50%;
}

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

.news-article__button {
  margin-top: 40px;
}
.news-article__button a {
  color: #242424;
}

.news-article__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  width: 282px;
  height: 52px;
  transition: border 0.3s;
  color: #242424;
  position: relative;
  overflow: hidden;
  border: 1px solid #E4E4E4;
  padding: 16px 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-article__link {
    width: 43.17%;
    padding: 12px 5px 16px 32px;
  }
}

.news-article__link a {
  display: block;
}

.news-article__link.link-next {
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .news-article__link.link-next {
    margin-left: 0;
  }
}

.news-article__link.link-next::before {
  left: 240px;
  border-right: 0.5px solid #FF9100;
  border-left: none;
  transform: skew(50deg);
}

.news-article__link:hover {
  border: 1px solid #FF9100;
}

.news-article__link::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 5px;
  top: 22px;
  left: 18px;
  border-bottom: 0.5px solid #FF9100;
  border-left: 0.5px solid #FF9100;
  transform: skew(-50deg);
}
@media screen and (max-width: 480px) {
  .news-article__link::before {
    left: 14px;
    top: 19px;
  }
}
@media screen and (max-width: 374px) {
  .news-article__link::before {
    left: 8px;
  }
}

.side {
  width: 27.2%;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .side {
    width: 100%;
    margin-top: 44px;
    margin-left: 0;
  }
}

.side__container {
  background-color: #FFFFFF;
  width: 100%;
  padding: 18px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 39px;
  padding-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .side__container {
    padding-top: 15px;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
}

.side__container:last-child {
  margin-bottom: 0;
}

.side__title {
  background-color: #27272A;
  color: #FFFFFF;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2.142;
}
@media screen and (max-width: 768px) {
  .side__title {
    padding: 10px 18px;
  }
}

.side__contents {
  display: flex;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .side__contents {
    padding-bottom: 17px;
  }
}

.side__contents:not(:first-child) {
  padding-top: 18px;
  border-top: 1px solid #E4E4E4;
}

.side__contents:last-child {
  padding-bottom: 0;
}

.side__img-wrap {
  width: 100px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  .side__img-wrap {
    width: 32.4%;
  }
}

.side__img {
  width: 100%;
}

.attachment-100x100.size-100x100.wp-post-image {
  aspect-ratio: 100/100;
  height: auto;
  width: 100px;
}

.side__body {
  width: 56%;
}
@media screen and (max-width: 768px) {
  .side__body {
    width: 60%;
  }
}

.side__link {
  display: block;
}

.side__body-title {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #242424;
  line-height: 1.85;
  letter-spacing: 0.02em;
  height: 84px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .side__body-title {
    margin-top: -4px;
    line-height: 2;
    letter-spacing: normal;
  }
}

.side__body-date {
  font-size: 11px;
  font-weight: 700;
  color: #A9A9A9;
}
@media screen and (max-width: 768px) {
  .side__body-date {
    margin-top: 4px;
  }
}

.side__item {
  padding-bottom: 9px;
}
.side__item a {
  color: #242424;
  font-size: 14px;
  font-weight: 300;
  line-height: 2.142;
}
@media screen and (max-width: 768px) {
  .side__item {
    padding-bottom: 14px;
  }
}

.side__item:last-child {
  padding-bottom: 0;
}

.side__item:not(:first-child) {
  padding-top: 14px;
  border-top: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .side__item:not(:first-child) {
    padding-top: 10px;
  }
}

.side__item.item-all:first-child {
  display: none;
}

/*-------------------------------------------
  works-article
-------------------------------------------*/
.works-article-mv {
  padding: 123px 90px 42px 89px;
  border-bottom: 0.5px solid #A9A9A9;
}
@media screen and (max-width: 768px) {
  .works-article-mv {
    padding: 81px 15px 21px 15px;
  }
}

.works-article-mv__items {
  margin-top: 0;
}

.works-article-mv__inner {
  width: 100%;
  max-width: 1250px;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works-article-mv__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.works-article {
  background-color: #F8F9F9;
  padding-top: 38px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .works-article {
    padding-bottom: 55px;
  }
}

.works-article__item.common-mv__item.item-under:before {
  left: 11px;
}

.works-article__item.common-mv__item.item-under {
  margin-left: 0;
}

.works-article__inner {
  width: 100%;
  max-width: 850px;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works-article__inner {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.category__link.link-wide {
  width: 150px;
  padding-top: 6px;
}

.works-article__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.666;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .works-article__title {
    font-size: 18px;
    margin-top: 9px;
  }
}

.works-article__date {
  font-size: 11px;
  font-weight: 700;
  color: #A9A9A9;
  margin-top: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .works-article__date {
    margin-top: 6px;
  }
}

.works-article__contents {
  padding-top: 37px;
  padding-bottom: 67px;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .works-article__contents {
    padding-top: 36px;
    padding-bottom: 37px;
    padding-left: 5px;
    padding-right: 0;
  }
}

.works-article__text {
  font-size: 14px;
  font-weight: 300;
  color: #242424;
  line-height: 2.142;
}
.works-article__text:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .works-article__text:not(:first-child) {
    margin-top: 30px;
  }
}

.works-article__button {
  text-align: center;
}
.works-article__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  width: 282px;
  height: 52px;
  transition: border 0.3s;
  color: #242424;
  position: relative;
  overflow: hidden;
  border: 1px solid #E4E4E4;
  padding: 16px 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works-article__link {
    width: 90%;
    padding: 15px 5px 16px 6px;
  }
}

.works-article__link:hover {
  border: 1px solid #FF9100;
}

.works-article__link::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 5px;
  top: 22px;
  left: 18px;
  border-bottom: 0.5px solid #FF9100;
  border-left: 0.5px solid #FF9100;
  transform: skew(-50deg);
}
@media screen and (max-width: 480px) {
  .works-article__link::before {
    left: 18px;
    top: 20px;
  }
}
@media screen and (max-width: 374px) {
  .works-article__link::before {
    left: 8px;
  }
}

/*-------------------------------------------
  confirm
-------------------------------------------*/
.confirm {
  text-align: center;
}

.fix__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 240px;
}
@media screen and (max-width: 768px) {
  .fix__button {
    margin-right: 142px;
  }
}

.confirm__link.link-more {
  width: 165px;
  color: #242424;
  font-weight: 400;
  padding-left: 83px;
}
@media screen and (max-width: 374px) {
  .confirm__link.link-more {
    padding-left: 71px;
  }
}

.confirm__link.link-more::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 5px;
  top: 5px;
  left: 18px;
  border-bottom: 0.5px solid #FF9100;
  border-left: 0.5px solid #FF9100;
  transform: skew(-50deg);
}
@media screen and (max-width: 480px) {
  .confirm__link.link-more::before {
    left: 18px;
  }
}
@media screen and (max-width: 374px) {
  .confirm__link.link-more::before {
    left: 8px;
  }
}

.contact__form-box.block {
  display: block;
}

.flex {
  display: flex;
}

.contact__input-field.flex {
  width: 100%;
}

.contact__input-field.flex .contact__label-wrap {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .contact__input-field.flex .contact__label-wrap {
    width: 40%;
  }
}
@media screen and (max-width: 374px) {
  .contact__input-field.flex .contact__label-wrap {
    width: 45%;
  }
}

.contact__input-field.flex .contact__input-wrap {
  width: 80%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .contact__input-field.flex .contact__input-wrap {
    width: 60%;
  }
}
@media screen and (max-width: 374px) {
  .contact__input-field.flex .contact__input-wrap {
    width: 55%;
  }
}

.contact__form-checkbox.flex .contact__text-checkbox {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .contact__form-checkbox.flex .contact__text-checkbox {
    width: 40%;
  }
}
@media screen and (max-width: 374px) {
  .contact__form-checkbox.flex .contact__text-checkbox {
    font-size: 12px;
  }
}

.contact__form-checkbox.flex .contact__label-checkbox {
  width: 82%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .contact__form-checkbox.flex .contact__label-checkbox {
    margin-top: 18px;
    width: 60%;
    margin-left: 0;
  }
}
@media screen and (max-width: 374px) {
  .contact__form-checkbox.flex .contact__label-checkbox {
    margin-top: 14px;
    margin-left: 20px;
  }
}

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

.contact__input-field-textarea.flex .contact__label-wrap {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .contact__input-field-textarea.flex .contact__label-wrap {
    width: 100%;
  }
}

.contact__input-field-textarea.flex .contact__textarea-wrap {
  width: 75%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .contact__input-field-textarea.flex .contact__textarea-wrap {
    width: 100%;
    margin-top: 18px;
  }
}

.complete__link.link-more.confirm-more {
  position: relative;
  margin-right: 280px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .complete__link.link-more.confirm-more {
    margin-right: 211px;
  }
}
@media screen and (max-width: 374px) {
  .complete__link.link-more.confirm-more {
    margin-right: 155px;
  }
}

.complete__button.button-more.confirm::after {
  display: none;
}

.complete__link.link-more.confirm-more::before {
  content: "";
  width: 35px;
  height: 5px;
  margin-left: 20px;
  margin-top: 2px;
  border-bottom: 0.5px solid #FF9100;
  border-left: 0.5px solid #FF9100;
  transform: skew(-50deg);
}

.complete__button.button-more.confirm {
  width: 100px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}

/*-------------------------------------------
  complete
-------------------------------------------*/
.complete__inner {
  padding: 60px 0;
}

@media screen and (max-width: 480px) {
  .complete__inner.contact-page__inner.inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.complete {
  margin-top: 100px;
  left: 18px;
}
@media screen and (max-width: 768px) {
  .complete {
    margin-top: 65px;
  }
}

.complete-title {
  text-align: center;
}

.complete-text {
  display: flex;
  justify-content: center;
  font-size: 14px;
  margin-top: 50px;
  line-height: 2;
  padding: 10px;
}

.complete__button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .complete__button {
    margin-top: 47px;
  }
}

.complete__link.link-more {
  width: 165px;
  color: #242424;
  font-weight: 400;
}

/*-------------------------------------------
  date.php
-------------------------------------------*/
.archive.date-year span {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #242424;
  line-height: 1;
}
.archive.date-year span::before {
  border-left: 0.5px solid #A9A9A9;
}

.link-border {
  display: inline;
  border-bottom: 1px solid #242424;
}

.common-mv__title.title.date-title.box {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .archive.date-year span {
    font-size: 10px;
  }
}

/*-------------------------------------------
  category.php
-------------------------------------------*/
a.home {
  display: inline;
  color: #242424;
  border-bottom: 1px solid #242424;
}

.common-mv__content .news-category-mv__title.common-mv__title.title {
  width: 350px;
  color: #242424;
  font-size: 75px;
  font-weight: 500;
  font-family: "Chakra Petch", sans-serif;
}
@media screen and (max-width: 1024px) {
  .common-mv__content .news-category-mv__title.common-mv__title.title {
    font-size: 66px;
  }
}
@media screen and (max-width: 768px) {
  .common-mv__content .news-category-mv__title.common-mv__title.title {
    font-size: 50px;
    line-height: 1.357;
    padding-right: 15px;
    padding-top: 5px;
    width: 330px;
  }
}
@media screen and (max-width: 374px) {
  .common-mv__content .news-category-mv__title.common-mv__title.title {
    font-size: 50px;
    width: 290px;
  }
}

.news__categories .cat-item a, .news__categories .cat-item-all a {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #242424;
  border: 1px solid #FF9100;
  background-color: #FFFFFF;
  font-weight: 400;
  width: 92px;
  text-align: center;
  padding: 14px 17px;
  transition: 0.3s transform;
}
.news__categories .cat-item a:hover, .news__categories .cat-item-all a:hover {
  transform: scale(1.07);
}
@media screen and (max-width: 768px) {
  .news__categories .cat-item a, .news__categories .cat-item-all a {
    font-size: 12px;
    line-height: 12px;
    padding: 8px 13px;
    width: 78px;
  }
}

@media screen and (max-width: 768px) {
  .news__categories .cat-item-all a {
    width: 50px;
  }
}

.news__categories .cat-item.current-cat a {
  background-color: #FF9100;
  color: #FFFFFF;
}

/*-------------------------------------------
  single.php
-------------------------------------------*/
.news-content p {
  font-size: 14px;
  font-weight: 300;
  color: #242424;
  line-height: 2.142;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .news-content p {
    margin-top: 33px;
  }
}

.news-content ul {
  margin-top: 51px;
}

.news-content li {
  position: relative;
  padding-left: 16px;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 300;
  color: #242424;
}

.news-content li:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 36%;
  left: 3px;
  translate: -50%;
  display: inline-block;
  background: #FF9100;
  border-radius: 50%;
}

.news-content li a {
  font-size: 14px;
  font-weight: 300;
  color: #242424;
}

/*-------------------------------------------
  taxonomy-works_type-ターム名.php
-------------------------------------------*/
.works-mv__title.common-mv__title.title.box.taxonomy__title {
  width: 70%;
  font-size: 50px;
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .works-mv__title.common-mv__title.title.box.taxonomy__title {
    width: 492px;
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .works-mv__title.common-mv__title.title.box.taxonomy__title {
    width: 403px;
    font-size: 33px;
  }
}
@media screen and (max-width: 768px) {
  .works-mv__title.common-mv__title.title.box.taxonomy__title {
    width: 300px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .works-mv__title.common-mv__title.title.box.taxonomy__title {
    width: 210px;
    font-size: 25px;
  }
}
@media screen and (max-width: 374px) {
  .works-mv__title.common-mv__title.title.box.taxonomy__title {
    font-size: 23px;
  }
}

.works__categories .works__category.is-active a {
  background-color: #FF9100;
  color: #FFFFFF;
}

.works__category-link.link-button.category-all {
  width: 92px;
}

.works-mv__title.common-mv__title.title.support {
  width: 610px;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .works-mv__title.common-mv__title.title.support {
    width: 410px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .works-mv__title.common-mv__title.title.support {
    width: 310px;
    font-size: 24px;
  }
}

.works-mv__title.common-mv__title.title.design {
  width: 450px;
}
@media screen and (max-width: 768px) {
  .works-mv__title.common-mv__title.title.design {
    width: 410px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .works-mv__title.common-mv__title.title.design {
    width: 310px;
    font-size: 24px;
  }
}

.works-mv__title.common-mv__title.title.evolution {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .works-mv__title.common-mv__title.title.evolution {
    width: 410px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .works-mv__title.common-mv__title.title.evolution {
    width: 310px;
    font-size: 24px;
  }
}

.works-mv__title.common-mv__title.title.education {
  width: 620px;
}
@media screen and (max-width: 768px) {
  .works-mv__title.common-mv__title.title.education {
    width: 410px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .works-mv__title.common-mv__title.title.education {
    width: 310px;
    font-size: 24px;
  }
}

.archive.post-works-archive {
  padding-left: 40px;
  padding-right: 40px;
}
.archive.post-works-archive span {
  color: #242424;
  border-bottom: 1px solid #242424;
  position: relative;
}

.archive.post-works-archive span::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background-color: #A9A9A9;
  left: 130%;
}

/*-------------------------------------------
  タイトルの一部文字色を変える
-------------------------------------------*/
.DECOtxt1 {
  color: #FF9100;
}

.mv__title .DECOtxt1 {
  color: #FF9100;
}

.DECOtxt14 {
  color: #FF9100;
}

/*-------------------------------------------
  contact-page チェックボックス
-------------------------------------------*/
span.wpcf7-list-item {
  margin: 0 80px 0 0;
  position: relative;
}
@media screen and (max-width: 374px) {
  span.wpcf7-list-item {
    margin-right: 60px;
  }
}

.contact__label-privacy span.wpcf7-list-item {
  margin: 0 2px 0 0px;
}

@media screen and (max-width: 480px) {
  span.wpcf7-list-item:nth-child(5) {
    margin-right: 140px;
  }
}

span.wpcf7-list-item:nth-child(6) {
  margin-left: 98px;
}
@media screen and (max-width: 768px) {
  span.wpcf7-list-item:nth-child(6) {
    margin-left: 0;
  }
}

.wpcf7-list-item-label {
  cursor: pointer;
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.wpcf7-list-item-label::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 1px solid #A9A9A9;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  background: #FF9100;
  border-radius: 50%;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  content: "";
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 1px solid #A9A9A9;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.contact__label-checkbox {
  margin-left: 21px;
}

/*-------------------------------------------
  archive-works.php
-------------------------------------------*/
@media screen and (max-width: 374px) {
  .works__category:nth-child(1) a, .works__category:nth-child(2) a, .works__category:nth-child(3) a, .works__category:nth-child(5) a {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 374px) {
  .works__category:nth-child(3) {
    margin-right: 10px;
  }
}