@charset "UTF-8";
/* 色などの変数定義 */
:root {
  --text-color: #555;
}

/* 全要素リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-weight: 400;
}

/* ルートフォントサイズ調整（1rem = 10px） */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

/* 基本フォント設定（body & フォーム要素） */
body,
button,
input,
textarea,
select {
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-color);
  -webkit-text-size-adjust: 100%;
  /* iOS文字拡大防止 */
  -webkit-font-smoothing: antialiased;
}

/* リンク初期化 & ホバー効果 */
a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* リスト系リセット */
ul,
ol {
  list-style: none;
}

/* フォームの余計な装飾をリセット */
button,
input,
textarea,
select {
  background: none;
  border: none;
  padding: 0;
}

/* ボタン強化 */
button,
input[type=submit] {
  cursor: pointer;
}

button {
  appearance: none;
  -webkit-appearance: none;
}

/* レスポンシブ対策 */
/* 画像・メディアのレスポンシブ対応 */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* テキストはみ出し対策 */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
}

/* 横スクロール防止 */
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

@keyframes flow-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes flow-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flow-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flow-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #fff;
}

.flow-txt {
  color: #fff;
  display: block;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.move.flow-bar:before {
  -webkit-animation: flow-bar 1s ease 0s 1 normal forwards;
  animation: flow-bar 1s ease 0s 1 normal forwards;
}

.move .flow-txt {
  -webkit-animation: flow-txt 0s ease 0.5s 1 normal forwards;
  animation: flow-txt 0s ease 0.5s 1 normal forwards;
}

/* move時のアニメーション設定：それぞれ遅延を変える */
.bar1.move:before {
  animation: flow-bar 1s ease 0s 1 normal forwards;
}

.bar1.move .flow-txt {
  animation: flow-txt 0s ease 0.5s 1 normal forwards;
}

.bar2.move:before {
  animation: flow-bar 1s ease 0.2s 1 normal forwards;
}

.bar2.move .flow-txt {
  animation: flow-txt 0s ease 0.7s 1 normal forwards;
}

.bar3.move:before {
  animation: flow-bar 1s ease 0.3s 1 normal forwards;
}

.bar3.move .flow-txt {
  animation: flow-txt 0s ease 0.8s 1 normal forwards;
}

.bar4.move:before {
  animation: flow-bar 1s ease 0.4s 1 normal forwards;
}

.bar4.move .flow-txt {
  animation: flow-txt 0s ease 0.9s 1 normal forwards;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

#page {
  padding: 0 0 0 20px;
  position: relative;
  /*border-left: 20px solid #aac7ba;*/
}
#page::before {
  background-color: #aac7ba;
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 111;
}

.site-inner {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  /*overflow: hidden;*/
}

.site-content {
  flex: 1 0 auto;
}

.home .bg-dots {
  display: none;
}

.site-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 147px;
  background: transparent linear-gradient(180deg, #555555cc 0%, #00000000 80%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
}

.otherpage .bg-dots {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
}
.otherpage .bg-dots > div {
  position: absolute;
  width: 100%;
  overflow: hidden;
}
.otherpage .bg-dots > div img {
  position: relative;
  width: 60vw;
  height: auto;
  max-width: 634px;
}
.otherpage #masthead {
  /*
  background: transparent url(../images/page_bg.jpg) no-repeat scroll
      center center / cover;
  z-index: 1;
  */
  transition: all 0.3s ease;
  height: 190px;
  /*&::before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      mix-blend-mode: multiply;
      width: 100%;
      height: 100%;
      background: #0b4b0b;
  }
  &::after {
      background: transparent url(../images/video_mask.png) repeat scroll
          left top / 8px 8px;
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
  }*/
}
.otherpage #masthead.scrolled {
  height: 140px;
}
.otherpage #masthead.scrolled::before {
  clip-path: polygon(100% 0, 100% 100%, 75% 100%, 0 100%, 0 0);
}
.otherpage #masthead::before {
  background: transparent url(../images/page_bg.jpg) no-repeat scroll center center/cover;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(100% 0, 100% 100%, 73% 120px, 0 100%, 0 0);
  transition: all 0.3s ease;
}
.otherpage #masthead::after {
  content: "";
  display: block;
  background: transparent linear-gradient(180deg, #555555cc 0%, #00000000 80%) 0% 0% no-repeat padding-box;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
}
.otherpage #masthead .site-header-main {
  z-index: 1;
}
.otherpage .site-content {
  margin: 260px 0 0 0;
  position: relative;
  z-index: 1;
}
.otherpage .site-content > #primary {
  position: relative;
  z-index: 1;
  margin: -60px 0 0 0px;
  padding: 0 50px;
}
.otherpage .site-content > #primary::before {
  content: "";
  /*clip-path: polygon(80% 0, 100% 60%, 100% 100%, 0 100%, 0 60%);*/
  clip-path: polygon(80% 0, 100% calc(tan(10deg) * 22cqw), 100% 100%, 0 100%, 0 calc(tan(10deg) * 22cqw));
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.otherpage .site-content > #primary > #main {
  position: relative;
  z-index: 1;
}
.otherpage #colophon {
  margin: 225px 0 0 0;
}

.pagetop {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 40px;
  height: 40px;
  z-index: 5;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
  background: transparent url(../images/gotop.svg) no-repeat scroll right bottom/40px 40px;
}

.bread {
  padding: 0 31px;
}
.bread > div {
  display: flex;
}
.bread > div a,
.bread > div span,
.bread > div p {
  color: #fff;
  font-size: 1.6rem;
}

.s,
.s body {
  overflow: hidden;
}

#masthead {
  position: fixed;
  width: calc(100% - 20px);
  z-index: 20;
  padding: 20px 19px 60px;
}
#masthead .site-header-main {
  position: relative;
  top: -130px;
  transition: all 0.3s ease;
}
#masthead .site-header-main .site-branding {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#masthead .site-header-main .site-branding .site-title a {
  display: block;
}
#masthead .site-header-main .site-branding .site-title a:hover {
  opacity: 0.8;
}
#masthead .site-header-main .site-branding > div {
  display: flex;
  align-items: center;
  gap: 28px;
}
#masthead .site-header-main .site-branding > div > a {
  border: 1px solid #fff;
  border-radius: 5px;
  display: block;
  padding: 10px 25px;
  color: #fff;
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 3rem;
}
#masthead .site-header-main .site-branding > div > a:hover {
  text-decoration: none;
}
#masthead .site-header-main .site-branding > div > a span {
  font-size: 1.6rem;
  margin: 0 0 0 10px;
}
#masthead .site-header-main .site-branding > div > .menu-btn {
  background: transparent url(../images/menu.png) no-repeat scroll left top/74px 65px;
  width: 74px;
  height: 65px;
  cursor: pointer;
}

.site-inner > div.site-menu {
  background-color: rgba(0, 0, 0, 0.85);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 111;
  padding: 26px 39px;
  height: 100vh;
  display: none;
  grid-template-rows: 65px 1fr;
  position: fixed;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
}
.site-inner > div.site-menu div.header {
  display: flex;
  justify-content: space-between;
}
.site-inner > div.site-menu div.header > img {
  width: 74px;
}
.site-inner > div.site-menu div.content {
  margin: 0 auto;
  max-width: 1016px;
  width: 100% 1555px;
  align-self: center;
  width: 100%;
}
.site-inner > div.site-menu div.content > a {
  background-color: #ffffff;
  border-radius: 5px;
  color: #000;
  font-size: 2rem;
  padding: 5px 23px 5px 38px;
  margin: 0 0 60px;
  display: block;
  width: max-content;
  position: relative;
}
.site-inner > div.site-menu div.content > a::before {
  background-color: #000;
  content: "";
  display: block;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: 11px;
  height: 13px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.site-inner > div.site-menu div.content > ul.nav {
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
}
.site-inner > div.site-menu div.content > ul.nav li {
  border-left: 1px solid #fff;
}
.site-inner > div.site-menu div.content > ul.nav li a {
  padding: 8px 37px;
  display: flex;
  flex-direction: column;
  grid-area: 8px;
  text-decoration: none;
}
.site-inner > div.site-menu div.content > ul.nav li a:hover span,
.site-inner > div.site-menu div.content > ul.nav li a:hover p {
  color: #3cc786;
}
.site-inner > div.site-menu div.content > ul.nav li a span {
  color: #ffffff;
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 2rem;
}
.site-inner > div.site-menu div.content > ul.nav li a p {
  color: #ffffff;
  font-size: clamp(1.6rem, 2vw, 2.5rem);
}
.site-inner > div.site-menu div.content > ul.bn {
  margin: 0 auto;
  max-width: 1016px;
  display: flex;
  justify-content: space-between;
}
.site-inner > div.site-menu div.content > ul.bn li {
  width: 47.8346456693%;
}
.site-inner > div.site-menu div.content > ul.bn li:last-of-type > a {
  background: transparent linear-gradient(148deg, #0089c6 0%, #36d1de 100%) 0% 0% no-repeat padding-box;
}
.site-inner > div.site-menu div.content > ul.bn li:last-of-type > a:hover {
  opacity: 0.8;
}
.site-inner > div.site-menu div.content > ul.bn li:last-of-type > a::after {
  background: transparent url(../images/new_tab.png) no-repeat scroll left top/23px 18px;
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 18px;
  right: 7px;
  bottom: 8px;
}
.site-inner > div.site-menu div.content > ul.bn li:last-of-type > a p {
  color: #fff;
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
  font-size: 2rem;
}
.site-inner > div.site-menu div.content > ul.bn li:last-of-type > a > div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.site-inner > div.site-menu div.content > ul.bn li:last-of-type > a > div img {
  height: 17px;
  width: 16px;
}
.site-inner > div.site-menu div.content > ul.bn li:last-of-type > a > div span {
  color: #fff;
  font-size: 2.5rem;
}
.site-inner > div.site-menu div.content > ul.bn li a {
  background-color: #fff;
  padding: 22px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  gap: 5px;
}
.site-inner > div.site-menu div.content > ul.bn li a span {
  color: #000000;
  font-size: 2rem;
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
  text-align: center;
  line-height: 1;
}
.site-inner > div.site-menu div.content > ul.bn li a p {
  font-size: 2.5rem;
  line-height: 1;
}

.front-page_content > section {
  position: relative;
}
.front-page_content section.movie {
  position: fixed;
  height: 100vh;
  width: 100%;
}
.front-page_content section.movie::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  z-index: 10;
}
.front-page_content section.movie.none {
  display: none;
}
.front-page_content section.movie video {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: auto;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.front-page_content section.catch {
  padding: 100vh 0 0 0;
}
.front-page_content section.catch > div.h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: max-content;
  display: flex;
  flex-direction: column;
}
.front-page_content section.catch > div.h1 h1 {
  font-size: clamp(5.6rem, 6vw + 7vh, 15.6rem);
  font-weight: 200;
}
.front-page_content section.catch div.imp-news {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
}
.front-page_content section.catch div.imp-news > div {
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
}
.front-page_content section.catch div.imp-news > div > h2 {
  background-color: #d63333;
  color: #fff;
  font-size: 1.6rem;
  padding: 7px 14px;
  width: 140px;
  display: flex;
  align-items: center;
}
.front-page_content section.catch div.imp-news > div ul {
  padding: 7px 15px;
  position: relative;
  overflow: hidden;
  width: 100%;
  flex: 1;
}
.front-page_content section.catch div.imp-news > div ul li {
  padding: 0 0 0 13px;
}
.front-page_content section.catch div.imp-news > div ul li a {
  color: #fff;
  font-size: 1.6rem;
}
.front-page_content section.intro > div {
  /*background: transparent url(../images/drone_img.jpg) no-repeat
      scroll center center/cover;*/
  position: relative;
}
.front-page_content section.intro > div::after {
  background-color: #0b4b0b;
  mix-blend-mode: multiply;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0);
}
.front-page_content section.intro > div > div.content {
  padding: 162px 21px 0;
}
.front-page_content section.intro > div > div.content > div {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.front-page_content section.intro > div > div.content > div > div.h2 {
  margin: 0 0 52px;
}
.front-page_content section.intro > div > div.content > div > div.h2.smt {
  display: none;
}
.front-page_content section.intro > div > div.content > div > div.h2 > div {
  width: max-content;
}
.front-page_content section.intro > div > div.content > div > div.h2 > div h2 {
  color: #fff;
  font-size: 4rem;
  width: max-content;
}
.front-page_content section.intro > div > div.content > div > p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 3.3888888889;
}
.front-page_content section.achievements > div.wrap {
  position: relative;
  padding: 134px 0 134px 81px;
}
.front-page_content section.achievements > div.wrap::after {
  background-color: #0b4b0b;
  mix-blend-mode: multiply;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0);
}
.front-page_content section.achievements > div.wrap > div {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}
.front-page_content section.achievements > div.wrap > div > div.headline {
  position: relative;
  z-index: 1;
}
.front-page_content section.achievements > div.wrap > div > div.headline h2 {
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  color: #fff;
  font-size: 4.5rem;
}
.front-page_content section.achievements > div.wrap > div > div.headline p {
  color: #fff;
  font-size: 1.6rem;
}
.front-page_content section.achievements > div.wrap > div > div.right {
  width: 100%;
}
.front-page_content section.achievements > div.wrap > div > div.right > div.slider {
  position: relative;
  z-index: 1;
  margin: 0 0 38px;
}
.front-page_content section.achievements > div.wrap > div > div.right > div.slider .box {
  margin: 0 72px 0 0;
  width: 400px;
}
.front-page_content section.achievements > div.wrap > div > div.right > div {
  position: relative;
  z-index: 1;
}
.front-page_content section.achievements > div.wrap > div > div.right > div > a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
  margin: 0;
}
.front-page_content section.achievements > div.wrap > div > div.right > div > a:hover {
  opacity: 0.8;
}
.front-page_content section.business {
  background-color: #fff;
  position: relative;
}
.front-page_content section.business::before {
  content: "";
  /*clip-path: polygon(80% 0, 100% 60%, 100% 100%, 0 100%, 0 60%);*/
  clip-path: polygon(80% 0, 100% calc(tan(10deg) * 22cqw), 100% 100%, 0 100%, 0 calc(tan(10deg) * 22cqw));
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -4vw;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.front-page_content section.business > div {
  position: relative;
  background-color: #fff;
  padding: 45px 81px 134px 81px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}
.front-page_content section.business > div > div.headline {
  width: 22%;
  max-width: 275px;
}
.front-page_content section.business > div > div.headline h2 {
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  color: #0b4b0b;
  font-size: clamp(3.5rem, 4vw, 4.5rem);
}
.front-page_content section.business > div > div.headline p {
  font-size: 1.6rem;
  margin: 0 0 15px;
}
.front-page_content section.business > div > div.headline > a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
  margin: 0;
  text-align: center;
  width: 90%;
  padding: 20px 13px;
}
.front-page_content section.business > div > div.headline > a:hover {
  opacity: 0.8;
}
.front-page_content section.business > div > div.content {
  flex: 1;
}
.front-page_content section.business > div > div.content > div.top {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}
.front-page_content section.business > div > div.content > div.top > div {
  border-left: 1px solid #0b4b0b;
  width: 48%;
  padding: 0 0 0 45px;
}
.front-page_content section.business > div > div.content > div.top > div:first-of-type > div img {
  width: 79px;
}
.front-page_content section.business > div > div.content > div.top > div:last-of-type > div img {
  width: 68px;
}
.front-page_content section.business > div > div.content > div.top > div > div {
  display: flex;
  gap: 44px;
  margin: 0 0 25px;
  align-items: flex-end;
}
.front-page_content section.business > div > div.content > div.top > div > div > div p {
  color: #0b4b0b;
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 2.5rem;
}
.front-page_content section.business > div > div.content > div.top > div > div > div h3 {
  font-size: clamp(3rem, 3vw, 4rem);
}
.front-page_content section.business > div > div.content > div.top > div > div > img {
  height: 100%;
  position: relative;
  bottom: 10px;
}
.front-page_content section.business > div > div.content > div.top > div > p {
  font-size: 1.6rem;
}
.front-page_content section.company > div.para {
  background: transparent url(../images/drone_img.jpg) no-repeat scroll center center/cover;
  width: 100%;
  height: 190vh;
  background-attachment: fixed;
}
.front-page_content section.company > div.content {
  overflow: hidden;
  padding: 20px 21px 120px;
  margin: 0vh 0 0 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.front-page_content section.company > div.content::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(80% 0, 100% calc(tan(10deg) * 22cqw), 100% 100%, 0 100%, 0 calc(tan(10deg) * 22cqw));
  background-color: #0b4b0b;
  mix-blend-mode: multiply;
}
.front-page_content section.company > div.content > * {
  position: relative;
  z-index: 1;
}
.front-page_content section.company > div.content > h2 {
  color: #ffffff;
  font-size: 8rem;
  text-align: center;
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
  font-weight: 100;
}
.front-page_content section.company > div.content > span {
  color: #ffffff;
  display: block;
  font-size: 1.6rem;
  margin: 0 0 50px;
  text-align: center;
}
.front-page_content section.company > div.content > div {
  max-width: 960px;
  margin: 0 auto;
}
.front-page_content section.company > div.content > div > div.h2 {
  display: flex;
  flex-direction: column;
  margin: 0 0 14px;
}
.front-page_content section.company > div.content > div > div.h2 > div {
  width: fit-content;
}
.front-page_content section.company > div.content > div > div.h2 > div h2 {
  color: #fff;
  font-size: clamp(3.4rem, 4.2vw, 6rem);
}
.front-page_content section.company > div.content > div > p {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 0 84px;
  line-height: 1.9444444444;
}
.front-page_content section.company > div.content > div > a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
}
.front-page_content section.company > div.content > div > a:hover {
  opacity: 0.8;
}
.front-page_content section.partner {
  display: flex;
  justify-content: space-between;
  padding: 140px 21px;
  background-color: #fff;
  max-width: 1600px;
  margin: 0 auto;
}
.front-page_content section.partner > div.headline {
  max-width: 365px;
  width: 26%;
}
.front-page_content section.partner > div.headline h2 {
  font-size: clamp(3.7rem, 3.3vw, 5rem);
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
  text-align: center;
  color: #0b4b0b;
}
.front-page_content section.partner > div.headline p {
  font-size: clamp(2rem, 2vw, 2.5rem);
  text-align: center;
  margin: 0 0 40px;
}
.front-page_content section.partner > div.headline img {
  max-width: 175px;
  margin: 0 auto;
  width: 75%;
}
.front-page_content section.partner > div.content {
  width: 70%;
}
.front-page_content section.partner > div.content > p {
  color: #0b4b0b;
  font-size: 1.8rem;
  margin: 0 0 24px;
}
.front-page_content section.partner > div.content ul {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.front-page_content section.partner > div.content ul li a {
  display: flex;
  justify-content: space-between;
  border: 1px solid #0b4b0b;
  padding: 29px 41px;
  align-items: center;
  text-decoration: none;
}
.front-page_content section.partner > div.content ul li a:hover {
  background-color: #3cc786;
}
.front-page_content section.partner > div.content ul li a > div:first-of-type {
  display: flex;
  gap: 31px;
  align-items: center;
}
.front-page_content section.partner > div.content ul li a > div:first-of-type img {
  width: 45px;
}
.front-page_content section.partner > div.content ul li a > div:first-of-type p {
  font-size: 2rem;
}
.front-page_content section.partner > div.content ul li a > div:last-of-type {
  display: flex;
  gap: 16px;
  align-items: center;
}
.front-page_content section.partner > div.content ul li a > div:last-of-type p {
  color: #0b4b0b;
  font-size: 1.5rem;
}
.front-page_content section.partner > div.content ul li a > div:last-of-type img {
  width: 18px;
  height: 8px;
}
.front-page_content section.news {
  background-color: #fff;
  padding: 0 0 175px;
}
.front-page_content section.news > h2 {
  font-size: 5rem;
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
  text-align: center;
  color: #0b4b0b;
}
.front-page_content section.news > p {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 82px;
}
.front-page_content section.news > div {
  margin: 0 0 61px;
}
.front-page_content section.news > div ul {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #c7d5c7;
}
.front-page_content section.news > div ul li > a {
  border-bottom: 1px solid #c7d5c7;
  padding: 17px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 23px;
}
.front-page_content section.news > div ul li > a > div {
  display: flex;
  gap: 15px;
  width: 195px;
}
.front-page_content section.news > div ul li > a > div p {
  color: #0b4b0b;
  font-size: 1.6rem;
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
}
.front-page_content section.news > div ul li > a > div span {
  background-color: #eb4e4d;
  font-size: 1.4rem;
  padding: 2px 9px;
  display: block;
}
.front-page_content section.news > div ul li > a > div span.news {
  background-color: #69d9d5;
}
.front-page_content section.news > div ul li > a > div span.jisseki {
  background-color: #ffc15d;
}
.front-page_content section.news > div ul li > a > h2 {
  font-size: 1.6rem;
}
.front-page_content section.news > a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
}
.front-page_content section.news > a:hover {
  opacity: 0.8;
}
.front-page_content section.recruit {
  background: transparent linear-gradient(148deg, #0089c6 0%, #36d1de 100%) 0% 0% no-repeat padding-box;
  padding: 57px 80px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 154px;
}
.front-page_content section.recruit::before {
  content: "";
  /*clip-path: polygon(80% 0, 100% 60%, 100% 100%, 0 100%, 0 60%);*/
  clip-path: polygon(80% 0, 100% calc(tan(10deg) * 22cqw), 100% 100%, 0 100%, 0 calc(tan(10deg) * 22cqw));
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -4vw;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent linear-gradient(148deg, #0089c6 0%, #36d1de 100%) 0% 0% no-repeat padding-box;
}
.front-page_content section.recruit > div {
  position: relative;
  width: 49%;
  z-index: 1;
}
.front-page_content section.recruit > div:first-of-type h2 {
  color: transparent;
  font-size: clamp(8.8rem, 16.5vw, 15.8rem);
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.front-page_content section.recruit > div:first-of-type span {
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0 0 76px;
  display: block;
}
.front-page_content section.recruit > div:first-of-type h3 {
  color: #fff;
  font-size: 4rem;
  margin: 0 0 22px;
}
.front-page_content section.recruit > div:first-of-type .smt {
  display: none;
}
.front-page_content section.recruit > div:first-of-type p {
  color: #fff;
  font-size: 1.6rem;
  margin: 0 0 32px;
  line-height: 1.875;
}
.front-page_content section.recruit > div:first-of-type a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
  background-color: #fff;
  color: #00b0ff;
  font-size: 1.5rem;
  padding: 20px 54px;
  margin: 0;
}
.front-page_content section.recruit > div:first-of-type a:hover {
  opacity: 0.8;
}
.front-page_content section.recruit > div:last-of-type {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 64px 88px;
  top: 100px;
  z-index: 1;
}
.front-page_content section.recruit > div:last-of-type img:nth-of-type(1) {
  max-width: 193px;
}
.front-page_content section.recruit > div:last-of-type img:nth-of-type(2) {
  max-width: 300px;
}
.front-page_content section.recruit > div:last-of-type img:nth-of-type(3) {
  max-width: 349px;
}
.front-page_content section.map iframe {
  min-height: 550px;
  width: 100%;
}

#colophon {
  background: #0b4b0b url(../images/drone_img.jpg) no-repeat scroll center center/cover;
  position: relative;
  padding: 41px 80px;
}
#colophon::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  background: #0b4b0b;
}
#colophon .site-info {
  display: flex;
  gap: 53px;
  position: relative;
  align-items: flex-start;
  margin: 0 auto 89px;
  width: fit-content;
}
#colophon .site-info > div:nth-of-type(1) {
  width: 280px;
}
#colophon .site-info > div:nth-of-type(1) h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 21px;
}
#colophon .site-info > div:nth-of-type(1) > p {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0 0 24px;
  position: relative;
}
#colophon .site-info > div:nth-of-type(1) > p > span.menu-btn {
  background: transparent url(../images/menu.png) no-repeat scroll left top/51px 45px;
  width: 51px;
  height: 45px;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
#colophon .site-info > div:nth-of-type(1) > p a {
  text-decoration: underline;
}
#colophon .site-info > div:nth-of-type(1) > p a:hover {
  text-decoration: none;
}
#colophon .site-info > div:nth-of-type(1) > a.contact {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
  width: 280px;
  text-align: center;
  margin: 0 auto 13px;
}
#colophon .site-info > div:nth-of-type(1) > a.contact:hover {
  opacity: 0.8;
}
#colophon .site-info > div:nth-of-type(1) > a.recruit {
  background: transparent linear-gradient(148deg, #0089c6 0%, #36d1de 100%) 0% 0% no-repeat padding-box;
  width: 280px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-decoration: none;
}
#colophon .site-info > div:nth-of-type(1) > a.recruit:hover {
  opacity: 0.8;
}
#colophon .site-info > div:nth-of-type(1) > a.recruit::after {
  background: transparent url(../images/new_tab.png) no-repeat scroll left top/23px 18px;
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 18px;
  right: 7px;
  bottom: 8px;
}
#colophon .site-info > div:nth-of-type(1) > a.recruit > p {
  color: #fff;
  font-size: 2rem;
  font-style: italic;
  font-family: "adobe-aldine", sans-serif;
  line-height: 1;
}
#colophon .site-info > div:nth-of-type(1) > a.recruit > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#colophon .site-info > div:nth-of-type(1) > a.recruit > div p {
  color: #fff;
  font-size: 2rem;
}
#colophon .site-info > div:nth-of-type(1) > a.recruit > div img {
  width: 16px;
  height: 17px;
}
#colophon .site-info > div:nth-of-type(2) {
  flex: 1;
}
#colophon .site-info > div:nth-of-type(2) > div.menu > ul {
  display: flex;
  gap: 45px;
}
#colophon .site-info > div:nth-of-type(2) > div.menu > ul > li {
  padding: 20px 0 0 0;
  position: relative;
  min-width: 121px;
}
#colophon .site-info > div:nth-of-type(2) > div.menu > ul > li::before {
  content: "";
  display: block;
  height: 1px;
  width: 121px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
#colophon .site-info > div:nth-of-type(2) > div.menu > ul > li > a {
  color: #ffffff;
  font-size: 1.8rem;
  margin: 0 0 17px;
  display: block;
}
#colophon .site-info > div:nth-of-type(2) > div.menu > ul > li > ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
#colophon .site-info > div:nth-of-type(2) > div.menu > ul > li > ul li a {
  color: #ffffff;
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 13px;
}
#colophon .site-info > div:nth-of-type(2) > div.menu > ul > li > ul li a::before {
  content: "";
  height: 1px;
  width: 6px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#colophon .copy {
  display: flex;
  position: relative;
}
#colophon .copy a {
  color: #fff;
}
#colophon .copy small {
  color: #fff;
  font-size: 1.6rem;
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* 真ん中に配置 */
}

.page_content > h1,
.page_content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 4px;
  text-align: center;
}
.page_content > p {
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin: 0 0 155px;
}

.cat-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0 0 70px;
}
.cat-list li.current a {
  background-color: #3cc786;
  color: #000000;
}
.cat-list li.current.red a {
  background-color: #eb4e4d;
}
.cat-list li.current.blue a {
  background-color: #69d9d5;
}
.cat-list li.current.yellow a {
  background-color: #ffc15d;
}
.cat-list li.all a:hover {
  background-color: #3cc786;
}
.cat-list li.red a:hover {
  background-color: #eb4e4d;
}
.cat-list li.blue a:hover {
  background-color: #69d9d5;
}
.cat-list li.yellow a:hover {
  background-color: #ffc15d;
}
.cat-list li a {
  background-color: #dbdbdb;
  color: #8e8e8e;
  font-size: 1.6rem;
  display: block;
  padding: 5px 18px;
  text-decoration: none;
  text-align: center;
}
.cat-list li a:hover {
  color: #000000;
}

.news-content .post {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 100px;
  max-width: 1600px;
}
.news-content .post article a {
  background-color: #f8f8f8;
  padding: 11px 25px;
  display: flex;
  text-decoration: none;
}
.news-content .post article a:hover {
  opacity: 0.8;
}
.news-content .post article a > p {
  font-size: 1.6rem;
  align-self: center;
  width: max-content;
  padding: 0 21px 0 0;
}
.news-content .post article a > div {
  border-left: 1px solid #414141;
  flex: 1;
  width: 100%;
  padding: 0 0 0 14px;
}
.news-content .post article a > div p {
  background-color: #eb4e4d;
  font-size: 1.4rem;
  width: max-content;
  padding: 0 5px;
  color: #000000;
}
.news-content .post article a > div p.red {
  background-color: #eb4e4d;
}
.news-content .post article a > div p.blue {
  background-color: #69d9d5;
}
.news-content .post article a > div p.yellow {
  background-color: #ffc15d;
}
.news-content .post article a > div h2 {
  color: #414141;
  font-size: 1.6rem;
  text-align: left;
}

.pagination {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.pagination > span,
.pagination > a {
  color: #8e8e8e;
  font-size: 2rem;
  background-color: #dbdbdb;
  border-radius: 30px;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 5rem;
  text-align: center;
}
.pagination > span.current,
.pagination > a.current {
  background-color: #3cc786;
  color: #000000;
}
.pagination > a {
  text-decoration: none;
}
.pagination > a:hover {
  background-color: #3cc786;
  color: #000000;
}
.pagination .current {
  font-weight: 700;
}
.pagination .current::after {
  width: 100%;
}

.news_single_content > div {
  padding: 0 13px;
}
.news_single_content > div article {
  background-color: #f8f8f8;
  padding: 76px 141px;
  position: relative;
  margin: 0 0 80px;
}
.news_single_content > div article::before {
  content: "";
  display: block;
  width: 1px;
  height: 170px;
  background-color: #414141;
  position: absolute;
  left: 100px;
  top: 0;
}
.news_single_content > div article > p.date {
  margin: 0 0 11px;
}
.news_single_content > div article > p.cat {
  background-color: #eb4e4d;
  font-size: 1.4rem;
  width: max-content;
  padding: 0 5px;
  color: #000000;
  margin: 0 0 10px;
}
.news_single_content > div article > p.cat.red {
  background-color: #eb4e4d;
}
.news_single_content > div article > p.cat.blue {
  background-color: #69d9d5;
}
.news_single_content > div article > p.cat.yellow {
  background-color: #ffc15d;
}
.news_single_content > div article > h1 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 40px;
}
.news_single_content > div article > div.content p {
  margin: 0 0 40px;
  line-height: 3.125;
}
.news_single_content > div div.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.news_single_content > div div.nav div.prev a,
.news_single_content > div div.nav div.next a {
  color: #8e8e8e;
  font-size: 2rem;
  background-color: #dbdbdb;
  border-radius: 30px;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 5rem;
  text-align: center;
  text-decoration: none;
}
.news_single_content > div div.nav div.prev a:hover,
.news_single_content > div div.nav div.next a:hover {
  background-color: #3cc786;
  color: #000000;
}
.news_single_content > div div.nav > a {
  color: #8e8e8e;
  background-color: #dbdbdb;
  border-radius: 30px;
  display: block;
  text-decoration: none;
  width: 259px;
  padding: 13px;
  text-align: center;
  transition: all 0.3s ease;
}
.news_single_content > div div.nav > a:hover {
  background-color: #3cc786;
  color: #000000;
}

.achievements-content > div.post {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 85px;
  gap: 60px 0;
}
.achievements-content > div.post::after {
  content: "";
  display: block;
  width: 30%;
}
.achievements-content > div.post article {
  position: relative;
  width: 30%;
}
.achievements-content > div.post article > div.cat {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
}
.achievements-content > div.post article > div.cat p.area {
  background-color: #414141;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 4px 12px;
}
.achievements-content > div.post article > div.cat p.taxonomy {
  color: #000000;
  font-size: 1.5rem;
  padding: 4px 12px;
}
.achievements-content > div.post article > div.cat p.taxonomy.red {
  background-color: #eb4e4d;
}
.achievements-content > div.post article > div.cat p.taxonomy.blue {
  background-color: #69d9d5;
}
.achievements-content > div.post article > img {
  margin: 0 0 10px;
}
.achievements-content > div.post article > h2 {
  color: #666666;
  font-size: 1.6rem;
}

.page-business .site-inner {
  overflow: hidden;
}

.page-business_content .content .nav {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 164px;
  max-width: 870px;
}
.page-business_content .content .nav > div {
  width: 48%;
}
.page-business_content .content .nav > div > div {
  border-left: 1px solid #0b4b0b;
  padding: 0 0 0 45px;
  margin: 0 0 40px;
}
.page-business_content .content .nav > div > div:first-of-type > div img {
  width: 79px;
}
.page-business_content .content .nav > div > div:last-of-type > div img {
  width: 68px;
}
.page-business_content .content .nav > div > div > div {
  display: flex;
  gap: 44px;
  margin: 0 0 25px;
  align-items: flex-end;
}
.page-business_content .content .nav > div > div > div > div p {
  color: #0b4b0b;
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 2.5rem;
}
.page-business_content .content .nav > div > div > div > div h3 {
  font-size: 4rem;
}
.page-business_content .content .nav > div > div > div > img {
  height: 100%;
  position: relative;
  bottom: 10px;
}
.page-business_content .content .nav > div > div > p {
  font-size: 1.6rem;
}
.page-business_content .content .nav > div > a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
  margin: 0;
}
.page-business_content .content .nav > div > a:hover {
  opacity: 0.8;
}
.page-business_content .content > .nav-slider {
  display: none;
  margin: 0 0 79px;
}
.page-business_content .content > .nav-slider .slick-list {
  overflow: visible;
}
.page-business_content .content > .nav-slider div.box {
  background-color: #fff;
  padding: 23px 20px;
  border-radius: 20px;
  position: relative;
  margin: 0 40px 0 0;
  min-height: 411px;
  display: grid;
  grid-template-rows: 1fr auto 60px;
  width: 75vw;
}
.page-business_content .content > .nav-slider div.box::after {
  box-shadow: 0px 3px 6px #00000029;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  position: absolute;
  border-radius: 20px;
}
.page-business_content .content > .nav-slider div.box > div {
  margin: 0 0 13px;
  border-left: 1px solid #0b4b0b;
  padding: 0 0 20px 20px;
}
.page-business_content .content > .nav-slider div.box > div > p {
  color: #0b4b0b;
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 2.5rem;
}
.page-business_content .content > .nav-slider div.box > div > h3 {
  font-size: 3.5rem;
  margin: 0 0 11px;
}
.page-business_content .content > .nav-slider div.box > div img.img1 {
  width: 79px;
}
.page-business_content .content > .nav-slider div.box > div img.img2 {
  width: 68px;
}
.page-business_content .content > .nav-slider div.box > p {
  margin: 0 0 15px;
}
.page-business_content .content > .nav-slider div.box > a {
  color: #0b4b0b;
  background-color: #fff;
  border: 1px solid #0b4b0b;
  display: block;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: opacity 1s, transform 1s, background-color 0.3s, color 0.3s;
}
.page-business_content .content > .nav-slider div.box > a:hover {
  color: #fff;
  background-color: #0b4b0b;
}
.page-business_content .content > section.business#business1 {
  margin: 0 0 200px;
}
.page-business_content .content > section.business > img {
  margin: 0 auto 31px;
}
.page-business_content .content > section.business > div {
  max-width: 1000px;
  margin: 0 auto;
}
.page-business_content .content > section.business > div > h3 {
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  margin: 0 0 10px;
  text-align: center;
}
.page-business_content .content > section.business > div > h2 {
  font-size: 3rem;
  margin: 0 0 41px;
  text-align: center;
}
.page-business_content .content > section.business > div > p {
  margin: 0 0 41px;
  line-height: 1.875;
}
.page-business_content .content > section.business > div > div.box {
  background-color: #fff;
  border: 1px solid #0b4b0b;
  padding: 45px 8%;
  margin: 0 0 50px;
  border-radius: 5px;
}
.page-business_content .content > section.business > div > div.box > h3 {
  font-size: 2rem;
  margin: 0 0 34px;
  text-align: center;
}
.page-business_content .content > section.business > div > div.box > div {
  display: flex;
  justify-content: space-between;
  gap: 21px 0;
  flex-wrap: wrap;
}
.page-business_content .content > section.business > div > div.box > div > div {
  background-color: #dce6e2;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  padding: 15px;
  width: 47.619047619%;
}
.page-business_content .content > section.business > div > div.box > div > div > img {
  position: relative;
  top: 3px;
  height: 20px;
  width: 20px;
}
.page-business_content .content > section.business > div > div.box > div > div > p {
  flex: 1;
}
.page-business_content .content > section.business > div > a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
}
.page-business_content .content > section.business > div > a:hover {
  opacity: 0.8;
}

.page-company .site-content > #primary {
  padding: 0;
}

.page-company #colophon {
  margin: 0px 0 0 0;
}

.page-company_content .content > section h2 {
  width: 25px;
  position: sticky;
  top: 160px;
}
.page-company_content .content > section h2 p:first-of-type {
  font-size: 2.5rem;
  position: relative;
  margin: 0 0 41px;
}
.page-company_content .content > section h2 p:first-of-type::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0b4b0b;
  bottom: -20px;
  position: absolute;
  left: 0;
}
.page-company_content .content > section h2 p:last-of-type {
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 2rem;
  writing-mode: vertical-lr;
  justify-self: self-end;
}
.page-company_content .content > section h2 p {
  color: #0b4b0b;
}
.page-company_content .content section.motto {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto 220px;
  padding: 0 27px;
  align-items: flex-start;
}
.page-company_content .content section.motto > div {
  flex: 1;
}
.page-company_content .content section.motto > div img {
  margin: 0 auto;
}
.page-company_content .content section.motto > div h3 {
  color: #0b4b0b;
  font-size: 2rem;
  font-family: Heisei Mincho Std;
  margin: 0 0 40px;
  text-align: center;
}
.page-company_content .content section.motto > div p {
  color: #0b4b0b;
  font-family: Heisei Mincho Std;
  text-align: center;
  line-height: 2.5;
}
.page-company_content .content section.message {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto 220px;
  padding: 0 27px;
  align-items: flex-start;
}
.page-company_content .content section.message > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  max-width: 1060px;
  margin: 0 auto;
}
.page-company_content .content section.message > div > img {
  width: 33.0188679245%;
}
.page-company_content .content section.message > div > div {
  width: 50%;
}
.page-company_content .content section.message > div > div p {
  margin: 0 0 55px;
  line-height: 2.5;
}
.page-company_content .content section.message > div > div h4 {
  color: #0b4b0b;
  font-size: 1.8rem;
  text-align: right;
}
.page-company_content .content section.message > div > div h3 {
  color: #0b4b0b;
  font-size: 2.5rem;
  text-align: right;
}
.page-company_content .content section.overview {
  position: relative;
  padding: 150px 27px 70px;
}
.page-company_content .content section.overview::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(80% 0, 100% calc(tan(10deg) * 22cqw), 100% 100%, 0 100%, 0 calc(tan(10deg) * 22cqw));
  background-color: #dadedc;
}
.page-company_content .content section.overview > div {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  align-items: flex-start;
}
.page-company_content .content section.overview > div table {
  max-width: 1000px;
  margin: 0 auto;
}
.page-company_content .content section.overview > div table th,
.page-company_content .content section.overview > div table td {
  line-height: 1.875;
}
.page-company_content .content section.overview > div table th {
  font-weight: bold;
  width: 125px;
  text-align: left;
}
.page-company_content .content section.overview > div table td {
  padding: 0 0 0 30px;
}
.page-company_content .content section.overview > div table td a {
  text-decoration: underline;
}
.page-company_content .content section.overview > div table td a:hover {
  text-decoration: none;
}
.page-company_content .content section.history {
  background-color: #f5f8f7;
}
.page-company_content .content section.history > div {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  padding: 144px 27px 188px;
  gap: 27px;
  align-items: flex-start;
}
.page-company_content .content section.history > div > div.right {
  background-color: #fff;
  padding: 50px 7.5%;
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.page-company_content .content section.history > div > div.right > div {
  height: 300px;
}
.page-company_content .content section.history > div > div.right > div .simplebar-content > div {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1000px;
}
.page-company_content .content section.history > div > div.right > div .simplebar-content > div p {
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 3.5rem;
  color: #0b4b0b;
}
.page-company_content .content section.history > div > div.right > div .simplebar-content > div h4 {
  background-color: #000000;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 0 2px;
  width: 62px;
}
.page-company_content .content section.history > div > div.right > div .simplebar-content > div h3 {
  flex: 1;
}
.page-company_content .content section.history > div > div.right > div .simplebar-track.simplebar-vertical {
  width: 30px;
}
.page-company_content .content section.history > div > div.right > div .simplebar-track.simplebar-vertical:after {
  background: #0b4b0b;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 14px;
  top: 0;
}
.page-company_content .content section.history > div > div.right > div .simplebar-content-wrapper {
  padding: 0 30px 0 0;
}
.page-company_content .content section.history > div > div.right > div .simplebar-scrollbar:before {
  background: #0b4b0b;
  border-radius: 15px;
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-efforts .site-content > #primary {
  padding: 0;
}

.page-efforts_content .content > p {
  color: #0b4b0b;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 197px;
  padding: 0 27px;
}
.page-efforts_content .content > section h2 {
  width: 25px;
}
.page-efforts_content .content > section h2 p:first-of-type {
  font-size: 2.5rem;
  position: relative;
  margin: 0 0 41px;
}
.page-efforts_content .content > section h2 p:first-of-type::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0b4b0b;
  bottom: -20px;
  position: absolute;
  left: 0;
}
.page-efforts_content .content > section h2 p:last-of-type {
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 2rem;
  writing-mode: vertical-lr;
  justify-self: self-end;
}
.page-efforts_content .content > section h2 p {
  color: #0b4b0b;
}
.page-efforts_content .content > section > div > div > h3 {
  color: #0b4b0b;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 20px;
}
.page-efforts_content .content > section > div > div > p {
  margin: 0 0 100px;
  line-height: 2.5;
}
.page-efforts_content .content > section > div > div > div.img {
  max-width: 500px;
  margin: 0 auto 100px;
}
.page-efforts_content .content > section > div > div > div.img img {
  margin: 0 0 10px;
}
.page-efforts_content .content > section > div > div > div.img p {
  font-size: 1.4rem;
}
.page-efforts_content .content > section.csr > div {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 27px;
  align-items: flex-start;
}
.page-efforts_content .content > section.csr > div > h2 {
  position: sticky;
  top: 160px;
}
.page-efforts_content .content > section.csr > div > div {
  max-width: 800px;
  margin: 0 auto;
}
.page-efforts_content .content > section.safety {
  position: relative;
  padding: 150px 27px 0;
}
.page-efforts_content .content > section.safety::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(80% 0, 100% calc(tan(10deg) * 22cqw), 100% 100%, 0 100%, 0 calc(tan(10deg) * 22cqw));
  background-color: #dadedc;
}
.page-efforts_content .content > section.safety > div {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  align-items: flex-start;
}
.page-efforts_content .content > section.safety > div > h2 {
  position: sticky;
  top: 160px;
  padding: 0 0 20px;
}
.page-efforts_content .content > section.safety > div > div {
  max-width: 800px;
  margin: 0 auto;
}
.page-efforts_content .content > section.disaster {
  padding: 100px 0 0 0;
}
.page-efforts_content .content > section.disaster > div {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 27px;
  align-items: flex-start;
}
.page-efforts_content .content > section.disaster > div > h2 {
  position: sticky;
  top: 160px;
  padding: 0 0 20px;
}
.page-efforts_content .content > section.disaster > div > div {
  max-width: 800px;
  margin: 0 auto;
}
.page-efforts_content .content > section.communication {
  position: relative;
  padding: 150px 27px 0;
}
.page-efforts_content .content > section.communication::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(80% 0, 100% calc(tan(10deg) * 22cqw), 100% 100%, 0 100%, 0 calc(tan(10deg) * 22cqw));
  background-color: #dadedc;
}
.page-efforts_content .content > section.communication > div {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  align-items: flex-start;
}
.page-efforts_content .content > section.communication > div > h2 {
  position: sticky;
  top: 160px;
  padding: 0 0 20px;
}
.page-efforts_content .content > section.communication > div > div {
  max-width: 800px;
  margin: 0 auto;
}
.page-efforts_content .content > section.award {
  padding: 136px 0 0 0;
}
.page-efforts_content .content > section.award > div {
  display: flex;
  gap: 27px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 27px;
  align-items: flex-start;
}
.page-efforts_content .content > section.award > div > h2 {
  position: sticky;
  top: 160px;
  padding: 0 0 20px;
}
.page-efforts_content .content > section.award > div > div.award-block {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 0;
  margin: 0;
  position: relative;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list::after {
  content: "";
  display: block;
  width: 30%;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list.is-end::before {
  opacity: 0;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 35%, white 100%);
  content: "";
  display: block;
  width: 100%;
  height: 330px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list > div.award-item {
  width: 30%;
  display: none;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list > div.award-item.is-show {
  display: block;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list > div.award-item::after {
  content: "";
  display: block;
  width: 30%;
}
.page-efforts_content .content > section.award > div > div.award-block > div.award-list > div.award-item img {
  margin: 0 0 10px;
}
.page-efforts_content .content > section.award > div > div.award-block > a {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
}
.page-efforts_content .content > section.award > div > div.award-block > a:hover {
  opacity: 0.8;
}

.page-contact_content .content {
  max-width: 800px;
  margin: 0 auto;
}
.page-contact_content .content > p {
  color: #0b4b0b;
  margin: 0 0 25px;
  text-align: center;
}
.page-contact_content .content div.box {
  background-color: #dce6e2;
  padding: 22px 31px;
  margin: 0 0 65px;
}
.page-contact_content .content div.box > p {
  margin: 0 0 5px;
}
.page-contact_content .content div.box > div {
  display: flex;
  gap: 5px;
  align-items: baseline;
}
.page-contact_content .content div.box > div a {
  color: #0b4b0b;
  font-family: "adobe-aldine", sans-serif;
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-contact_content .content div.box > div a img {
  position: relative;
  top: 3px;
}
.page-contact_content .content div.form > div {
  margin: 0 0 40px;
}
.page-contact_content .content div.form > div:first-of-type {
  display: flex;
  justify-content: space-between;
}
.page-contact_content .content div.form > div:first-of-type > div {
  width: 48%;
}
.page-contact_content .content div.form > div.submit input {
  color: #0b4b0b;
  font-size: 1.5rem;
  background-color: #3cc786;
  padding: 20px 57px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: max-content;
  border: none;
}
.page-contact_content .content div.form > div.submit input:hover {
  opacity: 0.8;
}
.page-contact_content .content div.form > div.check .wpcf7-form-control-wrap {
  display: block;
  justify-self: center;
}
.page-contact_content .content div.form > div.check .wpcf7-form-control-wrap a {
  text-decoration: underline;
}
.page-contact_content .content div.form > div.check .wpcf7-form-control-wrap a:hover {
  text-decoration: none;
}
.page-contact_content .content div.form > div.check input {
  width: auto;
}
.page-contact_content .content div.form > div h3 {
  margin: 0 0 25px;
}
.page-contact_content .content div.form > div p input::placeholder,
.page-contact_content .content div.form > div p textarea::placeholder {
  color: #d8d8d8;
}
.page-contact_content .content div.form > div input,
.page-contact_content .content div.form > div textarea {
  border-bottom: 1px solid #414141;
  padding: 0 0 5px;
  width: 100%;
}

.page-privacy_content .content {
  max-width: 800px;
  margin: 0 auto;
}
.page-privacy_content .content > p {
  color: #0b4b0b;
  margin: 0 0 104px;
  line-height: 1.875;
}
.page-privacy_content .content > div h3 {
  color: #0b4b0b;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 0 10px;
}
.page-privacy_content .content > div p {
  margin: 0 0 20px;
  line-height: 1.875;
}
.page-privacy_content .content > div p a {
  color: #0b4b0b;
  text-decoration: underline;
}
.page-privacy_content .content > div p a:hover {
  text-decoration: none;
}

.page-thanks .site-inner {
  overflow: hidden;
}

.page-thanks_content .content {
  max-width: 800px;
  margin: 0 auto;
}
.page-thanks_content .content > p {
  margin: 0 0 60px;
  line-height: 2.5;
  text-align: center;
}
.page-thanks_content .content > a {
  background-color: #3CC786;
  border-radius: 5px;
  font-size: 2rem;
  padding: 26px 6.8%;
  display: block;
  margin: 0 auto;
  text-decoration: none;
  width: fit-content;
}
.page-thanks_content .content > a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1400px) {
  #colophon .site-info {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 21px 38px;
  }

  #colophon .site-info > div:nth-of-type(2) {
    grid-row: span 2;
  }

  #colophon .site-info > div:nth-of-type(2) > div.menu > ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1000px) {
  .front-page_content section.business > div {
    flex-direction: column;
    gap: 0px;
  }

  .front-page_content section.business > div > div.headline {
    display: contents;
  }

  .front-page_content section.business > div > div.headline h2 {
    text-align: center;
  }

  .front-page_content section.business > div > div.headline p {
    text-align: center;
    margin: 0 0 21px;
  }

  .front-page_content section.business > div > div.headline > a {
    order: 4;
    width: max-content;
    margin: 0 auto;
    padding: 20px 57px;
  }
}
@media screen and (max-width: 800px) {
  #page {
    padding: 0 0 0 10px;
  }

  #page::before {
    width: 10px;
  }

  #masthead .site-header-main .site-branding .site-title {
    width: 226px;
  }

  #masthead .site-header-main .site-branding > div > a {
    display: none;
  }

  #masthead .site-header-main .site-branding > div > .menu-btn {
    background: transparent url(../images/menu.png) no-repeat scroll left top/51px 45px;
    width: 51px;
    height: 45px;
  }

  .site-inner > div.site-menu div.header > img {
    width: 51px;
    height: 45px;
  }

  .site-inner > div.site-menu div.header .site-title {
    width: 226px;
  }

  .site-inner > div.site-menu div.content {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }

  .site-inner > div.site-menu div.content > a {
    order: 4;
    margin: 0 auto;
  }

  .site-inner > div.site-menu div.content > ul.nav {
    order: 2;
    flex-direction: column;
    width: 100%;
    margin: 20px 0;
    border-top: 1px solid #fff;
  }

  .site-inner > div.site-menu div.content > ul.nav li {
    border-left: none;
    border-bottom: 1px solid #fff;
  }

  .site-inner > div.site-menu div.content > ul.nav li a {
    padding: 10px 0;
  }

  .site-inner > div.site-menu div.content > ul.bn {
    display: contents;
  }

  .site-inner > div.site-menu div.content > ul.bn li {
    width: 100%;
  }

  .site-inner > div.site-menu div.content > ul.bn li a p {
    font-size: 2rem;
  }

  .site-inner > div.site-menu div.content > ul.bn li:first-of-type {
    order: 3;
    margin: 0 0 60px;
  }

  .site-inner > div.site-menu div.content > ul.bn li:last-of-type {
    order: 1;
  }

  .site-inner > div.site-menu div.content > ul.bn li:last-of-type > a > div span {
    color: #fff;
    font-size: 2rem;
  }

  .front-page_content section.intro > div > div.content {
    padding: 26px 30px 0;
  }

  .front-page_content section.intro > div > div.content > div > div.h2 {
    display: none;
  }

  .front-page_content section.intro > div > div.content > div > div.h2.smt {
    display: flex;
    flex-direction: column;
    margin: 0 0 29px;
  }

  .front-page_content section.intro > div > div.content > div > div.h2 > div h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }

  .front-page_content section.intro > div > div.content > div > p {
    font-size: 1.6rem;
    line-height: 3.125;
  }

  .front-page_content section.achievements > div.wrap {
    padding: 86px 0 86px 30px;
  }

  .front-page_content section.achievements > div.wrap > div {
    gap: 21px;
    flex-direction: column;
  }

  .front-page_content section.achievements > div.wrap > div > div.right > div.slider {
    margin: 0 0 30px;
  }

  .front-page_content section.achievements > div.wrap > div > div.right > div.slider .box {
    margin: 0 30px 0 0;
    max-width: 280px;
  }

  .front-page_content section.business::before {
    clip-path: polygon(80% 0%, 100% calc(tan(18deg) * 23cqw), 100% 100%, 0 100%, 0 calc(tan(18deg) * 23cqw));
    display: block;
    top: -8vw;
  }

  .front-page_content section.business > div {
    padding: 30px 30px 60px 30px;
    flex-direction: column;
  }

  .front-page_content section.business > div > div.headline {
    width: 100%;
    margin: 0 0 21px;
  }

  .front-page_content section.business > div > div.headline h2 {
    text-align: left;
  }

  .front-page_content section.business > div > div.headline p {
    text-align: left;
  }

  .front-page_content section.business > div > div.content > div.top {
    margin: 0 auto 30px;
    flex-direction: column;
    gap: 60px;
    width: 100%;
  }

  .front-page_content section.business > div > div.content > div.top > div {
    width: 100%;
    padding: 0 0 0 30px;
  }

  .front-page_content section.business > div > div.content > div.top > div > div {
    gap: 30px;
    margin: 0 0 25px;
  }

  .front-page_content section.business > div > div.content > div.top > div > div > div p {
    line-height: 1;
  }

  .front-page_content section.business > div > div.content > a {
    margin: 0;
  }

  .front-page_content section.company > div.content {
    padding: 45px 30px 71px;
  }

  .front-page_content section.company > div.content::before {
    clip-path: polygon(80% 0, 100% calc(tan(18deg) * 23cqw), 100% 100%, 0 100%, 0 calc(tan(18deg) * 23cqw));
  }

  .front-page_content section.company > div.content > h2 {
    font-size: 4.5rem;
  }

  .front-page_content section.company > div.content > div > div.h2 {
    margin: 0 0 30px;
  }

  .front-page_content section.company > div.content > div > p {
    margin: 0 0 50px;
  }

  .front-page_content section.partner {
    padding: 65px 20px;
    gap: 64px;
    flex-direction: column;
    align-items: center;
  }

  .front-page_content section.partner > div.headline {
    width: 100%;
  }

  .front-page_content section.partner > div.headline h2 {
    font-size: 3.7rem;
  }

  .front-page_content section.partner > div.headline p {
    font-size: 1.8rem;
    margin: 0 0 31px;
  }

  .front-page_content section.partner > div.content {
    width: 100%;
  }

  .front-page_content section.partner > div.content > p {
    margin: 0 0 30px;
    text-align: center;
  }

  .front-page_content section.partner > div.content ul {
    gap: 10px;
  }

  .front-page_content section.partner > div.content ul li a {
    padding: 20px;
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 10px 22px;
    position: relative;
  }

  .front-page_content section.partner > div.content ul li a::after {
    background: transparent url(../images/yajirushi_down.png) no-repeat scroll left top/18px 8px;
    content: "";
    display: block;
    width: 18px;
    height: 8px;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
  }

  .front-page_content section.partner > div.content ul li a > div:first-of-type {
    display: contents;
  }

  .front-page_content section.partner > div.content ul li a > div:first-of-type img {
    width: 45px;
    grid-row: span 2;
  }

  .front-page_content section.partner > div.content ul li a > div:first-of-type p {
    grid-column: 2;
  }

  .front-page_content section.partner > div.content ul li a > div:last-of-type {
    grid-column: 2;
    grid-row: 2;
  }

  .front-page_content section.partner > div.content ul li a > div:last-of-type img {
    display: none;
  }

  .front-page_content section.company > div.para {
    height: 150vh;
  }

  .front-page_content section.news > h2 {
    font-size: 4.5rem;
  }

  .front-page_content section.news > p {
    margin: 0 0 30px;
  }

  .front-page_content section.news > div {
    padding: 0 20px;
  }

  .front-page_content section.news > div ul li > a {
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .front-page_content section.recruit {
    flex-direction: column;
    padding: 57px 20px;
    margin: 0 0 106px;
  }

  .front-page_content section.recruit > div {
    width: 100%;
  }

  .front-page_content section.recruit > div:first-of-type span {
    font-size: 1.6rem;
    margin: 0 0 30px;
  }

  .front-page_content section.recruit > div:first-of-type .pc {
    display: none;
  }

  .front-page_content section.recruit > div:first-of-type .smt {
    display: flex;
    flex-direction: column;
    margin: 0 0 30px;
    gap: 13px;
  }

  .front-page_content section.recruit > div:first-of-type .smt > div {
    width: 100%;
  }

  .front-page_content section.recruit > div:first-of-type .smt h3 {
    margin: 0;
  }

  .front-page_content section.recruit > div:first-of-type p {
    margin: 0 0 30px;
  }

  .front-page_content section.recruit > div:last-of-type {
    gap: 51px 25px;
    top: 100px;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .front-page_content section.recruit > div:last-of-type img:nth-of-type(1) {
    margin: auto auto 0;
    width: 64%;
  }

  .front-page_content section.recruit > div:last-of-type img:nth-of-type(2) {
    max-width: 100%;
    width: 100%;
  }

  .front-page_content section.recruit > div:last-of-type img:nth-of-type(3) {
    max-width: 100%;
    grid-column: span 2;
    width: 60.0600600601%;
    margin: 0 auto;
  }

  #colophon {
    padding: 30px 20px 20px;
  }

  #colophon .site-info {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 0;
    width: 100%;
  }

  #colophon .site-info > div:nth-of-type(1) {
    display: contents;
  }

  #colophon .site-info > div:nth-of-type(1) h2 {
    order: 3;
    margin: 0 0 15px;
  }

  #colophon .site-info > div:nth-of-type(1) > p {
    order: 4;
    width: 100%;
    margin: 0 0 40px;
  }

  #colophon .site-info > div:nth-of-type(1) a {
    order: 2;
    width: 100%;
    margin: 0 auto 60px;
    max-width: 293px;
  }

  #colophon .site-info > div:nth-of-type(2) {
    display: none;
  }

  #colophon .site-info > a {
    order: 1;
    width: 100%;
    margin: 0 auto 23px;
    max-width: 293px;
  }

  #colophon .site-info > div:nth-of-type(1) p > span.menu-btn {
    display: block;
  }

  #colophon .copy {
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  #colophon .copy small {
    position: static;
    transform: translateX(0);
  }

  .bread {
    padding: 0 31px;
    margin: -10px 0 0 0;
  }

  .otherpage .site-content {
    margin: 210px 0 0 0;
  }

  .otherpage #masthead::before {
    clip-path: polygon(100% 0, 100% 100%, 73% 69%, 0 100%, 0 0);
  }

  .otherpage #masthead::after {
    height: 90%;
  }

  .otherpage #masthead.scrolled {
    height: 110px;
  }

  .otherpage .site-content > #primary {
    padding: 0 20px 0 10px;
  }

  .page_content > p {
    margin: 0 0 60px;
  }

  .cat-list {
    flex-wrap: wrap;
    gap: 15px 0;
    margin: 0 0 29px;
    justify-content: space-between;
    padding: 0 10px;
  }

  .cat-list li {
    width: 47%;
  }

  .news-content .post {
    margin: 0 0 41px;
  }

  .news-content .post article a {
    padding: 16px 15px;
    display: grid;
    gap: 10px 41px;
    grid-template-columns: 81px 1fr;
  }

  .news-content .post article a > div {
    display: contents;
  }

  .news-content .post article a > p {
    border-right: 1px solid #414141;
    padding: 0 20px 0 0;
  }

  .news-content .post article a > div h2 {
    grid-column: span 2;
  }

  .pagination {
    gap: 14px;
  }

  .pagination > span,
.pagination > a {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    line-height: 3.5rem;
  }

  .otherpage #colophon {
    margin: 90px 0 0 0;
  }

  .news_single_content > div {
    padding: 0;
  }

  .news_single_content > div article {
    padding: 34px 6%;
    margin: 0 0 80px;
  }

  .news_single_content > div article::before {
    height: 135px;
    left: 15px;
  }

  .achievements-content > div.post {
    margin: 0 auto 41px;
    gap: 30px 0;
  }

  .achievements-content > div.post article {
    width: 48%;
  }

  .page-business_content .content > .nav {
    display: none;
  }

  .page-business_content .content > .nav-slider {
    display: block;
  }

  .page-business_content .content > section.business > div > div.box {
    padding: 36px 15px;
  }

  .page-business_content .content > section.business#business1 {
    margin: 0 0 100px;
  }

  .page-business_content .content > section.business > img {
    margin: 0 auto 35px;
  }

  .page-business_content .content > section.business > div > h2 {
    margin: 0 0 26px;
  }

  .page-business_content .content > section.business > div > p {
    margin: 0 0 30px;
  }

  .page-business_content .content > section.business > div > div.box > h3 {
    font-size: 1.8rem;
    margin: 0 0 30px;
  }

  .page-business_content .content > section.business > div > a {
    font-size: 1.6rem;
    padding: 33px 57px;
  }

  .page-company .site-content > #primary {
    padding: 0 !important;
  }

  .page-company_content .content > section h2 p:first-of-type {
    font-size: 1.6rem;
    margin: 0 0 31px;
  }

  .page-company_content .content > section h2 p:first-of-type::after {
    bottom: -15px;
  }

  .page-company_content .content > section h2 p:last-of-type {
    font-size: 1.6rem;
  }

  .page-company_content .content section.motto {
    margin: 0 auto 126px;
    padding: 0 15px 0 7px;
  }

  .page-company_content .content section.motto > div img {
    margin: 0 auto 53px;
  }

  .page-company_content .content section.message {
    margin: 0 auto 100px;
    padding: 0 15px 0 7px;
  }

  .page-company_content .content section.message > div {
    flex-direction: column;
    gap: 40px;
  }

  .page-company_content .content section.message > div > img {
    width: calc(100% - 95px);
  }

  .page-company_content .content section.message > div > div {
    width: 100%;
  }

  .page-company_content .content section.overview::before {
    clip-path: polygon(80% 0, 100% calc(tan(18deg) * 23cqw), 100% 100%, 0 100%, 0 calc(tan(18deg) * 23cqw));
  }

  .page-company_content .content section.overview {
    position: relative;
    padding: 120px 15px 50px 7px;
  }

  .page-company_content .content section.overview > div {
    gap: 44px;
  }

  .page-company_content .content section.overview > div table th,
.page-company_content .content section.overview > div table td {
    display: block;
  }

  .page-company_content .content section.overview > div table td {
    padding: 0;
  }

  .page-company_content .content section.history > div {
    padding: 72px 15px 104px 7px;
    gap: 44px;
  }

  .page-company_content .content section.history > div > div.right > div .simplebar-content > div {
    display: grid;
    gap: 0px 12px;
    grid-template-columns: 62px 1fr;
    margin: 0 0 13px;
  }

  .page-company_content .content section.history > div > div.right > div .simplebar-content > div h3 {
    grid-column: span 2;
  }

  .page-company_content .content section.history > div > div.right > div .simplebar-scrollbar {
    height: 15px !important;
  }

  .page-company_content .content section.history > div > div.right > div .simplebar-scrollbar:before {
    left: 7px;
    width: 15px;
    height: 15px;
  }

  .page-efforts .site-content > #primary {
    padding: 0 !important;
  }

  .page-efforts_content > p {
    margin: 0 0 71px;
  }

  .page-efforts_content .content > p {
    font-size: 1.6rem;
    margin: 0 0 100px;
    line-height: 2.5;
  }

  .page-efforts_content .content > section h2 {
    width: 1.6rem;
  }

  .page-efforts_content .content > section h2 p:first-of-type {
    font-size: 1.6rem;
    margin: 0 0 31px;
  }

  .page-efforts_content .content > section h2 p:first-of-type::after {
    bottom: -15px;
  }

  .page-efforts_content .content > section h2 p:last-of-type {
    font-size: 1.6rem;
    line-height: 1;
  }

  .page-efforts_content .content > section.csr > div {
    gap: 44px;
    padding: 0 15px 0 7px;
  }

  .page-efforts_content .content > section > div > div > p {
    margin: 0 0 70px;
  }

  .page-efforts_content .content > section.safety::before {
    clip-path: polygon(80% 0, 100% calc(tan(18deg) * 23cqw), 100% 100%, 0 100%, 0 calc(tan(18deg) * 23cqw));
    background-color: #dadedc;
  }

  .page-efforts_content .content > section.safety {
    padding: 100px 15px 0 7px;
  }

  .page-efforts_content .content > section.safety > div {
    gap: 44px;
  }

  .page-efforts_content .content > section.disaster > div {
    gap: 44px;
    padding: 0 15px 0 7px;
  }

  .page-efforts_content .content > section.communication {
    padding: 100px 15px 0 7px;
  }

  .page-efforts_content .content > section.communication::before {
    clip-path: polygon(80% 0, 100% calc(tan(18deg) * 23cqw), 100% 100%, 0 100%, 0 calc(tan(18deg) * 23cqw));
    background-color: #dadedc;
  }

  .page-efforts_content .content > section.communication > div {
    gap: 44px;
  }

  .page-efforts_content .content > section.award {
    padding: 100px 0 0 0;
  }

  .page-efforts_content .content > section.award > div {
    gap: 44px;
    padding: 0 15px 0 7px;
  }

  .page-efforts_content .content > section.award > div > div.award-block > div.award-list {
    gap: 30px 0;
  }

  .page-efforts_content .content > section.award > div > div.award-block > div.award-list > div.award-item {
    width: 48%;
  }

  .page-efforts_content .content > section.award > div > div.award-block > div.award-list > div.award-item img {
    margin: 0 0 8px;
  }

  .page-efforts_content .content > section.award > div > div.award-block > div.award-list > div.award-item p {
    font-size: 1.4rem;
  }

  .page-contact_content .content div.box > div {
    flex-direction: column;
  }

  .otherpage #masthead {
    width: 100%;
    height: 130px;
  }

  .page-efforts_content .content > section.award > div > div.award-block > div.award-list::before {
    height: 220px;
  }

  .front-page_content section.company > div.para {
    background-attachment: scroll;
  }

  .front-page_content section.catch > div.h1 h1 {
    font-size: clamp(5rem, 4vw + 7vh, 15.6rem);
  }
}
@media screen and (max-width: 650px) {
  .page-business_content .content > section.business > div > div.box > div {
    gap: 15px;
    flex-direction: column;
  }

  .page-business_content .content > section.business > div > div.box > div > div {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .front-page_content section.achievements > div.wrap > div > div.right > div.slider .box {
    max-width: 220px;
  }

  .front-page_content section.business > div > div.content > div.top > div > div > div h3 {
    font-size: clamp(2.7rem, 3vw, 4rem);
  }

  .cat-list {
    flex-direction: column;
  }

  .cat-list li {
    width: 100%;
  }

  .achievements-content > div.post {
    flex-direction: column;
  }

  .achievements-content > div.post article {
    width: 100%;
  }

  .page-company_content .content section.history > div {
    gap: 44px 10px;
  }
}
@media screen and (max-width: 360px) {
  .front-page_content section.recruit > div:first-of-type h3 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 320px) {
  .front-page_content section.company > div.para {
    height: 240vh;
  }

  .front-page_content section.partner > div.content ul li a {
    grid-template-columns: 30px 1fr;
    gap: 10px 15px;
  }
}