@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Ysabeau+SC:wght@1..1000&display=swap");
/*
Theme Name: Corporate NCE
Theme URI: https://www.nce.co.jp/
Description: 株式会社NCEコーポレートサイト
Version: 1.0
Author: NCE
Author URI: https://www.nce.co.jp/
*/
:root {
  --color-basegreen:#009F48;
  --color-baselightgreen:#33cc33;
  --color-baseyellow:#fcee21;
  --color-baseblack:#2d324e;
  --base-font-size:62.5%;
  --base-text-size: 1.6rem;
  --pc-maxwidth:1360px;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  background: transparent;
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  object-fit: cover;
}

table {
  text-align: left;
  max-width: 1200px;
  border-collapse: collapse;
}

th {
  font-weight: normal;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  color: var(--color-baseblack);
  font-size: var(--base-text-size);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  margin: 0 auto;
}

.contentcontainer {
  position: relative;
}

.section, .container {
  margin: 5rem auto;
  padding: 3vw;
  position: relative;
}

.content_column {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .content_column {
    flex-direction: column;
    gap: 0;
  }
}

.section_container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
  position: relative;
}

.content_item, .content_text, .content_item_text {
  margin: 5rem auto;
  position: relative;
}

h1 {
  font-size: clamp(4.8rem, 1.5vw + 4.24rem, 6.4rem);
  font-weight: bold;
}

h2 {
  font-size: clamp(2.4rem, 1.1vw + 1.98rem, 3.6rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5rem;
}
h2 span {
  font-size: 1.6rem;
  color: var(--color-basegreen);
  display: block;
}

h3 {
  font-size: clamp(2rem, 0.7vw + 1.65rem, 2.4rem);
  font-weight: 500;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}

h5, h6 {
  font-weight: 500;
}

.home h2 {
  font-size: clamp(5.6rem, 3.8vw + 4.19rem, 9.6rem);
  font-family: "inter", sans-serif;
  font-weight: 800;
}
.home section h2 {
  opacity: 0;
  letter-spacing: 1vw;
}

.news.single-news h1 {
  font-size: clamp(2.2rem, 1.8vw + 1.32rem, 3.2rem);
  margin: 0;
  padding: 2rem;
}

a, p, dt, dd, li, table {
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--color-baseblack);
  cursor: pointer;
  word-break: break-all;
  transition: all 0.2s;
}
a:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-basegreen);
  text-underline-offset: 0.4em;
  text-decoration-thickness: 2px;
  cursor: pointer;
}
a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(assets/img/icons/icon-blank.svg) right center/0.8em auto no-repeat;
}
a[target=_blank]:has(img)::after {
  content: none;
}
a[download]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(assets/img/icons/icon-download.svg) right bottom/0.9em auto no-repeat;
}

.content {
  opacity: 0;
  pointer-events: none;
}

body.appear .content {
  animation-name: PageAnime-content;
  animation-duration: 0.55s;
  animation-delay: 0.55s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}

.animation .content {
  opacity: 1;
  pointer-events: auto;
}

@keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.move .animation-bg {
  background: linear-gradient(45deg, var(--color-baseyellow), #a4ff00);
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.ltr .animation-bg {
  animation-name: PageAnime-bottom-ltr;
  animation-duration: 1.5s;
}

@keyframes PageAnime-bottom-ltr {
  0% {
    transform-origin: center left;
    transform: scale(2, 2) translateX(-300%) skewX(45deg);
  }
  50% {
    transform-origin: center left;
    transform: scale(2, 2) translateX(-17%) skewX(45deg);
  }
  50.001% {
    transform-origin: center left;
    transform: scale(2, 2) translateX(-17%) skewX(45deg);
  }
  100% {
    transform-origin: center left;
    transform: scale(2, 2) translateX(500%) skewX(45deg);
  }
}
.fadein, .slidein-left, .slidein-right, .slideup, .stagger-item {
  opacity: 0;
}

.bg {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: -1;
}
.bg .line {
  width: auto;
  max-width: clamp(8rem, 4.364rem + 15.52vw, 16rem);
}
.bg .circle {
  width: auto;
  max-width: clamp(8rem, 6.636rem + 5.82vw, 11rem);
}
.bg .box {
  position: absolute;
}
.bg .box img {
  width: clamp(80px, 12.3vw + 33.8px, 160px);
  max-width: 20rem;
}
.bg .bg_L .box01 {
  top: -30px;
  left: -7vw;
}
.bg .bg_L .box02 {
  top: 10%;
  left: 1vw;
}
.bg .bg_L .box03 {
  bottom: 8%;
  left: 0;
}
.bg .bg_L .box04 {
  top: 30%;
  left: 3vw;
}
.bg .bg_L .box05 {
  bottom: 13vw;
  left: -3vw;
}
.bg .bg_R .box01 {
  top: 10%;
  right: -3vw;
}
.bg .bg_R .box02 {
  top: 5%;
  right: 1vw;
}
.bg .bg_R .box03 {
  top: 35%;
  right: 6vw;
}
.bg .bg_R .box04 {
  top: 50%;
  right: -1vw;
}
.bg .bg_R .box05 {
  bottom: 10vw;
  right: -2vw;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: -1;
}

.subpage h1 {
  font-size: clamp(3.2rem, 5.9vw + 0.38rem, 6.4rem);
  margin: 7rem 0 7vw;
}
.subpage h1::first-letter {
  color: var(--color-basegreen);
}
.subpage h1 span {
  display: block;
  font-size: 30%;
  color: var(--color-basegreen);
}
.subpage h3 .content_img {
  margin-right: 2vw;
}
.subpage .sub_text {
  color: var(--color-basegreen);
  font-size: 0.6em;
  line-height: 1.5;
}
.subpage p {
  margin-bottom: 1.5rem;
  text-align: justify;
  overflow-wrap: break-word;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(1.2rem, 0.6vw + 0.97rem, 1.6rem);
}
.breadcrumb p {
  color: #aaa;
  margin-bottom: 2px;
}
.breadcrumb p::before {
  position: relative;
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  vertical-align: middle;
  margin: 0 5px;
  top: -2px;
  background-image: url(assets/img/icons/icon-right-arrow.svg);
  background-repeat: no-repeat;
}
.breadcrumb p:first-child::before {
  content: none;
}

.dl-list dl {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #e6e6e6;
  margin-top: 4rem;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .dl-list dl {
    flex-direction: column;
  }
}
.dl-list dl dt {
  min-width: 30%;
  font-weight: bold;
  position: relative;
  padding-left: 2rem;
}
.dl-list dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 77.75%;
  background-color: var(--color-basegreen);
}
@media screen and (max-width: 768px) {
  .dl-list dl dt {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.dl-list dl dd {
  flex: 1;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .dl-list dl dd {
    width: 100%;
  }
}

.moviewrap {
  width: 100%;
  max-width: 640px;
  margin: auto;
}
.moviewrap video {
  width: 100%;
}

.maplilnk {
  color: var(--color-basegreen);
}
.maplilnk a {
  color: var(--color-basegreen);
}
.maplilnk a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(assets/img/icons/icon-map.svg);
  background-repeat: no-repeat;
  margin-left: 5px;
}

.button, .greenbtn {
  color: #fff;
  font-weight: 400;
  border: 2px solid var(--color-basegreen);
  border-radius: 100px;
  background-color: var(--color-basegreen);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 350px;
  height: auto;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.button::before, .greenbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100vh;
  transform: translateX(-100%) scale(50%);
  transition: all 0.3s;
  z-index: -1;
}
.button:hover, .greenbtn:hover {
  color: var(--color-basegreen);
  text-decoration: none;
}
.button:hover::before, .greenbtn:hover::before {
  transform: translateX(0) scale(180%);
}
.button .button_after, .greenbtn .button_after {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
}
.button .button_after::after, .greenbtn .button_after::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fff;
  border-radius: 100vh;
  transform: translateY(-50%);
}
.button:hover .button_after::after, .greenbtn:hover .button_after::after {
  right: -2.5rem;
  background-color: var(--color-basegreen);
}

.button_wh, .whitebtn {
  color: var(--color-basegreen);
  font-weight: 400;
  border: 2px solid var(--color-basegreen);
  border-radius: 100px;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 350px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.button_wh::before, .whitebtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-basegreen);
  border-radius: 100vh;
  transform: translateX(-100%) scale(50%);
  transition: all 0.3s;
  z-index: -1;
}
.button_wh:hover, .whitebtn:hover {
  color: #fff;
  text-decoration: none;
  border-color: #fff;
}
.button_wh:hover::before, .whitebtn:hover::before {
  transform: translateX(0) scale(180%);
}
.button_wh .button_after, .whitebtn .button_after {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
}
.button_wh .button_after::after, .whitebtn .button_after::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fff;
  border-radius: 100vh;
  transform: translateY(-50%);
}
.button_wh:hover .button_after::after, .whitebtn:hover .button_after::after {
  right: -2.5rem;
  background-color: var(--color-basegreen);
}

*:has(> .link_arrow) {
  position: relative;
}

.link_arrow::before {
  content: "";
  width: 16px;
  height: 24px;
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  left: auto;
  transform: translateY(-50%);
  background-image: url(assets/img/icons/icon-right-arrow.svg);
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}

*:has(> .link_arrow):hover .link_arrow::before {
  right: 0;
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
}
.category_list li {
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--color-basegreen);
  border-radius: 999px;
  padding: 0;
}
.category_list li a {
  display: block;
  padding: 1rem;
}
.category_list li a:hover {
  color: #fff;
  border-radius: 999px;
  background: var(--color-basegreen);
  text-decoration: none;
}
.category_list li.current {
  background-color: var(--color-basegreen);
}
.category_list li.current a {
  color: #fff;
}

.dli-external-link {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.9em;
  height: 0.9em;
  border: 0.1em solid currentColor;
  border-radius: 0.1em;
  background: var(--color-basegreen);
  box-sizing: content-box;
  position: relative;
}
.dli-external-link > span {
  position: absolute;
  top: -0.2em;
  right: -0.2em;
  width: 45%;
  height: 45%;
  border: 0.1em solid currentColor;
  border-bottom: 0;
  border-left: 0;
  background: var(--color-basegreen);
  box-shadow: -0.1em 0.1em 0 0.1em var(--color-basegreen);
  box-sizing: border-box;
}
.dli-external-link > span::before {
  content: "";
  position: absolute;
  top: -0.05em;
  right: -0.1em;
  width: 0.1em;
  height: 0.9em;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: top center;
}

.greendisclist {
  margin: 2rem 0;
}
.greendisclist li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 0.6em;
}
.greendisclist li::before {
  content: url(assets/img/icons/icon-greendisc-arrow.svg);
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0em;
  top: 0.2em;
}

.flex {
  display: flex;
}

.flex_column {
  display: flex;
  flex-direction: column;
}

.flex_wrap-wrap {
  flex-wrap: wrap;
}

.flex_space-between {
  justify-content: space-between;
}

.flex_justify-content-center {
  justify-content: center;
}

.flex1 {
  flex: 1;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

.gap3 {
  gap: 3rem;
}

.gap4 {
  gap: 4rem;
}

.gap5 {
  gap: 5rem;
}

.img_center {
  text-align: center;
}

.txt_nowrap {
  white-space: nowrap;
}

.w10 {
  width: 10%;
}
.w20 {
  width: 20%;
}
.w30 {
  width: 30%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.w80 {
  width: 80%;
}
.w90 {
  width: 90%;
}
.w100 {
  width: 100%;
}

.bold {
  font-weight: bold;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.align-items-center {
  align-items: center;
}

.green {
  color: var(--color-basegreen);
}

.bg-green {
  background-color: var(--color-basegreen);
}

.bg-translucent {
  background-color: rgba(255, 255, 255, 0.7);
}

.margin_btm30 {
  margin-bottom: 30px;
}

.padding_all10 {
  padding: 10px;
}
.padding_all20 {
  padding: 20px;
}
.padding_all30 {
  padding: 30px;
}
.padding_all40 {
  padding: 40px;
}

.note {
  font-size: 0.8em;
  font-weight: 400;
}

.hr-line-white {
  border-bottom: 1px solid #fff;
  margin: 2rem 0;
}

.disp-tablet {
  display: none;
}
@media screen and (max-width: 768px) {
  .disp-tablet {
    display: block;
  }
}

.disp-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .disp-sp {
    display: block;
  }
}

.bp960 {
  display: none;
}

@media screen and (max-width: 960px) {
  .bp960 {
    display: block;
  }
}
.hidden-tablet {
  display: block;
}
@media screen and (max-width: 768px) {
  .hidden-tablet {
    display: none;
  }
}

.hidden-sp {
  display: block;
}
@media screen and (max-width: 480px) {
  .hidden-sp {
    display: none;
  }
}

.annotation {
  font-size: 0.8em;
  color: #888;
  padding-left: 1em;
  text-indent: -1em;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
}
.header .main_menu {
  width: 100%;
  height: 60px;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}
.header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header ul#menu-gnav {
  display: flex;
}
.header ul#menu-gnav > li > a {
  font-weight: 500;
  display: block;
  padding: 2rem;
  position: relative;
  transition: all 0.2s ease-in;
  overflow: hidden;
}
.header ul#menu-gnav > li > a:hover {
  text-decoration: none;
}
.header ul#menu-gnav > li > a::before {
  content: "";
  border-bottom: 5px solid var(--color-basegreen);
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  transform: translateX(-100%);
  bottom: 0;
  transition: all 0.3s;
}
.header ul#menu-gnav > li:hover .sub-menu {
  max-height: 9999px;
  opacity: 1;
  flex-wrap: wrap;
  box-shadow: 0px 12px 8px 6px rgba(0, 0, 0, 0.05);
  background-color: #f7f8f9;
  padding: 4rem;
}
.header ul#menu-gnav > li:hover > a {
  color: var(--color-basegreen);
}
.header ul#menu-gnav > li:hover > a::before {
  transform: translateX(0);
}
.header ul#menu-gnav .sub-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  left: 0;
  text-align: center;
  position: absolute;
  background-color: #F2F4F8;
}
.header ul#menu-gnav .sub-menu li {
  margin: 1rem 3rem;
  width: 50%;
  max-width: 33.3333333333%;
  text-align: left;
}
.header ul#menu-gnav .sub-menu a::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 2rem;
  margin-right: 0.5rem;
  transform: translateY(0.25rem);
  background-image: url(assets/img/icons/icon-right-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.header ul#menu-gnav .sub-menu a:hover {
  text-decoration: underline;
}

ul.pcnav li {
  margin-left: 2rem;
}

.sub_header {
  margin-top: 70px;
}

.header-menu > li {
  position: relative;
}

.header-menu > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 600px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.header-menu > li:hover > ul {
  display: grid;
}

.head_sub_nav--wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  left: 0;
  position: absolute;
  background-color: #F2F4F8;
}

.header ul#menu-gnav > li:hover .head_sub_nav--wrap {
  display: flex;
  gap: 8rem;
  max-height: 9999px;
  opacity: 1;
  flex-wrap: wrap;
  box-shadow: 0px 12px 8px 6px rgba(0, 0, 0, 0.05);
  background-color: #f7f8f9;
  padding: 4rem;
  justify-content: center;
  transition: all 0.3s 0.2s ease;
}

.header ul.sub_nav_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-img {
  width: 25rem;
}

.head_sub_nav--wrap::before {
  content: "";
  border-left: 1px solid #ccc;
  align-self: stretch;
}

.header ul#menu-gnav .head_sub_nav--ttl {
  order: -1;
}
.header ul#menu-gnav .head_sub_nav--ttl h3 {
  font-size: 3rem;
  border: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: center;
  line-height: 1;
  background: none;
}
.header ul#menu-gnav .head_sub_nav--ttl h3::before {
  content: none;
}
.header ul#menu-gnav .head_sub_nav--ttl h3::after {
  content: none;
}

.header-menu > li > ul::before {
  content: attr(data-title);
  font-weight: bold;
}

.sub_nav_list li a {
  font-size: 90%;
  line-height: 2;
}
.sub_nav_list li a::before {
  content: "-";
  display: inline-block;
  margin-right: 1rem;
  color: var(--color-basegreen);
  font-weight: bold;
}
.sub_nav_list .top-item a {
  color: var(--color-basegreen);
  font-weight: 500;
}
.sub_nav_list .top-item a::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 2rem;
  transform: translateY(0.25rem);
  background-image: url(assets/img/icons/icon-right-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.sub_nav_list .grandchild-item {
  margin-left: 2em;
  line-height: 1;
}

.btn-trigger {
  position: relative;
  width: 50px;
  height: 44px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
}

.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 20px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn05.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}

#btn05.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 0.8s forwards;
  animation: active-btn05-bar02 0.8s forwards;
}

@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
#btn05.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

.hbg-nav {
  display: none;
}

.side_nav {
  max-width: 320px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .side_nav {
    display: none;
  }
}
.side_nav .side_nav_outer {
  position: relative;
}
.side_nav .side_nav_header {
  color: #fff;
  font-size: 1.7rem;
  background: linear-gradient(30deg, var(--color-basegreen) 50%, #7e7 100%);
  padding: 3.5rem 4rem;
}
.side_nav .side_nav_cattitle {
  color: var(--color-basegreen);
  font-weight: bold;
  padding-top: 1.5rem;
}
.side_nav .side_nav_inner::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.side_nav .side_nav_inner::-webkit-scrollbar-thumb {
  background: var(--color-basegreen);
}
.side_nav .side_nav_inner::-webkit-scrollbar-track {
  background: #f7f8f9;
}
.side_nav .side_nav_inner .category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-around;
}
.side_nav .side_nav_inner .category_list li {
  background-color: #fff;
  background-image: none;
  width: calc(50% - 20px);
  border: 1px solid #3c3;
  border-radius: 999px;
}
.side_nav .side_nav_inner .side_nav_inner_content {
  background-color: #f7f8f9;
  padding: 0 2rem 2rem;
}
.side_nav .side_nav_inner li {
  background-image: linear-gradient(to right, var(--color-basegreen) 5px, transparent 5px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.side_nav .side_nav_inner li a {
  display: block;
  padding: 1.3rem 3rem 1.3rem 0;
  line-height: 1em;
  transition: ease-in-out 0.3s;
}
.side_nav .side_nav_inner li a:hover {
  text-decoration: none;
  color: var(--color-basegreen);
}
.side_nav .link_arrow::before {
  width: 12px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.maxwidth {
  max-width: 1120px;
  padding: 0 10px;
  margin: 0 auto;
}

button.page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 80px;
  right: -80px;
  bottom: 80px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: var(--color-basegreen);
  transition: 0.2s;
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
}
button.page-top img {
  position: absolute;
  width: 30px;
  top: 15px;
  transition: 0.2s;
}
button.page-top p {
  margin: 0;
  font-size: 15px;
  bottom: 13px;
  position: absolute;
}
button.page-top:hover img {
  top: 10px;
}

button.page-top.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
  right: -2px;
  bottom: 80px;
}

footer {
  background-color: #fff;
}
footer .finfo {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .finfo {
    flex-direction: column;
  }
}
footer .finfo .ftitle {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5rem;
}
footer .finfo .ftitle span {
  font-size: 1.6rem;
  display: block;
}
footer .finfo .finfo_outer {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex: 1;
  border: 1rem solid;
  background-color: #fff;
}
footer .finfo .frecruit, footer .finfo .fcontact {
  text-align: center;
  display: block;
  width: 100%;
  padding: 3rem 0;
}
footer .finfo .finfo_recruit {
  border-color: var(--color-basegreen);
  color: var(--color-basegreen);
}
footer .finfo .finfo_recruit a:hover {
  background-color: var(--color-basegreen);
  color: #fff;
  text-decoration: none;
}
footer .finfo .finfo_fcontact {
  border-color: var(--color-baseblack);
  color: var(--color-baseblack);
}
footer .finfo .finfo_fcontact a:hover {
  background-color: var(--color-baseblack);
  color: #fff;
  text-decoration: none;
}
footer .finfo .finfo_outer p {
  margin-top: 2rem;
  height: 2em;
}

.footer {
  font-size: 1.5rem;
}
.footer .fnav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-bottom: 5rem;
}
.footer .fnav .fnav-content-item {
  border-left: 1px solid #ccc;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .footer .fnav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .footer .fnav {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .fnav .fnav-content-item {
    border-left: none;
    border-top: 1px solid #ccc;
    padding-left: 0;
    padding-top: 1rem;
  }
}
.footer .fnav li {
  padding-top: 1rem;
}
.footer .fnav li::before {
  content: "-";
  margin-right: 0.5rem;
  color: var(--color-basegreen);
  font-weight: bold;
}
.footer .fnav .fnav-subitem {
  padding: 0;
  margin-left: 1em;
}

.footer_container2 {
  padding-top: 8rem;
}

.fotter_authentication ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

.footer_container3 {
  background-color: #333;
  color: #fff;
  padding-top: 8rem;
}
.footer_container3 a {
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-around;
  margin: auto;
}

.footer-company {
  display: flex;
  gap: 2.4rem;
}

.footer-link {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}

.copyright {
  color: #fff;
  background: #333333;
  padding: 30px;
  text-align: center;
}

.home .mv {
  position: relative;
  background-image: url(assets/img/bg/mv_bg.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -10;
}

.mv_container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
}

.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(assets/img/mv_video_overlay.svg);
  background-repeat: repeat;
  background-size: 40px;
}

.mv .mv_copy-outer {
  display: flex;
  justify-content: center;
}
.mv .mv_copy {
  font-weight: bold;
  line-height: 1.2em;
}
.mv h2 div {
  letter-spacing: 0rem;
  margin-bottom: 8px;
}
.mv h2 .green-outer {
  border: 4px solid var(--color-basegreen);
  background: #fff;
}
.mv h2 .green {
  font-size: clamp(6.25rem, 2.184rem + 8.46vw, 9.375rem);
  color: var(--color-basegreen);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  margin: -0.85rem 0 0 -4px;
}
@media screen and (max-width: 480px) {
  .mv h2 {
    writing-mode: vertical-rl;
  }
}
.mv .mv_copy div {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.mv_copy div {
  --animation-delay:var(--delay, 0);
  --animation-duration:var(--duration, 800ms);
  --animation-iterations:var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default;
}
.mv_copy div::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-basegreen);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.scrolldown {
  height: 300px;
  position: absolute;
  left: 10vw;
  bottom: 0;
  z-index: 1;
}

.scrolldown-text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #fff;
  font-family: "Afacad", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
}

.scrolldown-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}
.scrolldown-circle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
}
.scrolldown-circle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-basegreen);
  animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
  z-index: 1;
}

@keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.font_inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.font_en {
  font-family: "Afacad", sans-serif;
}

.font_num {
  font-family: "Afacad", sans-serif;
}

.loop_wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.home .loop_wrap {
  position: absolute;
  bottom: 0;
}

.loop_wrap-inner {
  display: flex;
  padding: 0;
}

.loop_item-img {
  width: 75vw;
}
.loop_item-img > img {
  width: 100%;
}

.loop_item-text {
  width: 100%;
  font-size: 20rem;
  color: rgba(189, 204, 212, 0.5);
  white-space: nowrap;
  letter-spacing: 0.4rem;
  margin-right: 1em;
}

.loop_scroll-left {
  animation: loop-scroll-left 80s infinite linear 0.5s both;
}

@keyframes loop-scroll-left {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.loop_scroll-right {
  animation: loop-scroll-right 80s infinite linear 0.5s both;
}

@keyframes loop-scroll-right {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.home section {
  display: block;
  width: 100%;
  padding: 10rem 0;
}
.home section p {
  margin-bottom: 2em;
  font-size: clamp(1.6rem, 1.4vw + 5.3px, 2.2rem);
  font-weight: 500;
  line-height: 2;
}
.home .homegreenbtn {
  display: flex;
}
.home .homegreenbtn .greenbtn {
  width: 100%;
  max-width: 400px;
}

.home .about {
  position: relative;
  background-image: url(assets/img/bg/about_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.home .about .section_container {
  padding: 2rem;
}
.home .about .content_item {
  padding: 2rem 1rem;
  margin: 2rem auto;
}
.home .about .content_text {
  margin-top: 0;
}
.home .about h2 {
  color: #fff;
}
.home .about h2 div {
  display: flex;
}
.home .about h2 div::first-letter {
  color: var(--color-basegreen);
}
.home .about h2 div span {
  font-size: 1em;
  width: 7rem;
  display: flex;
  justify-content: center;
}
.home .about h3 {
  font-size: clamp(3.6rem, 1.3vw + 3.11rem, 5rem);
  margin-bottom: 4rem;
}
.home .about .flex {
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
}

.home .service {
  background-image: url(assets/img/bg/about_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 961px) {
  .home .service .section_container > div {
    width: 50%;
  }
}
.home .service h2 {
  text-align: center;
}
.home .service h3 {
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.home .service h3 span {
  display: block;
  font-size: 2.6rem;
  color: var(--color-basegreen);
}
.home .service h4 {
  line-height: 1.5;
  width: 90%;
}
.home .service .content_item_text a:hover {
  text-decoration: none;
}
.home .service h4 .sub_text {
  display: block;
  font-size: 1.6rem;
  color: var(--color-basegreen);
}
.home .service .triangle-wrap-fluid .vertex {
  max-width: clamp(260px, 29.2vw - 20px, 330px);
  position: absolute;
  mix-blend-mode: lighten;
  z-index: -1;
}
.home .service #v-top {
  top: 0;
  right: 0;
}
.home .service #v-left {
  bottom: 50%;
  transform: translatey(50%);
  left: 0;
}
.home .service #v-right {
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 961px) {
  .home .service h2 {
    text-align: left;
  }
  .home .service .triangle-wrap-fluid {
    width: 100%;
    max-width: 720px;
    height: auto;
    max-height: 720px;
  }
  .home .service .service-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    z-index: 1;
  }
  .home .service .triangle-wrap-fluid .vertex {
    position: absolute;
    width: clamp(260px, 29.2vw - 20px, 330px);
    height: auto;
  }
  .home .service #v-top {
    left: 50%;
    top: 0%;
    transform: translate(-50%);
  }
  .home .service #v-left {
    left: 0;
    bottom: 0;
    transform: none;
  }
  .home .service #v-right {
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .home .service .content_item {
    margin-top: 0;
  }
  .home .service .triangle-wrap-fluid {
    display: none;
  }
  .home .service .service_content_img.disp-tablet {
    margin-top: 2rem;
  }
}

.home .homeproduct {
  width: 100%;
  background-image: url(assets/img/bg/product_bg.svg);
  background-repeat: repeat;
  background-size: 100%;
  background-color: rgba(0, 0, 0, 0.04);
  background-attachment: fixed;
}
.home .homeproduct .btn-outer {
  display: flex;
  justify-content: center;
}
.home .homeproduct .content_item li {
  min-width: 360px;
  width: 100%;
  margin: 2rem;
  background-color: #fff;
  flex: 1;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.15);
}
.home .homeproduct .content_item li:hover {
  outline: 3px solid var(--color-basegreen);
}
.home .homeproduct .content_item li a {
  display: block;
  padding: 2rem;
}
.home .homeproduct .content_item li a:hover {
  text-decoration: none;
}
.home .homeproduct dt.content_item_img {
  height: 200px;
  margin-bottom: 2rem;
}
.home .homeproduct dt.content_item_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home .homeproduct dd.content_item_text {
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding-top: 2rem;
  border-top: 2px solid var(--color-basegreen);
}

.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
  background-color: var(--color-basegreen);
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 10px;
  padding: 30px;
  top: 40%;
}

.home .top-news {
  display: flex;
  justify-content: flex-end;
  padding-left: clamp(0.5rem, 13.6vw - 4.61rem, 15rem);
  overflow: hidden;
}
.home .top-news .section_container {
  border: 4px solid var(--color-baseblack);
  border-radius: 2rem 0 0 2rem;
  border-right: none;
  padding: clamp(0.5rem, 8.9vw - 2.85rem, 10rem);
  background-color: #f7f8f9;
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 961px) {
  .home .top-news .section_container {
    display: flex;
    gap: 4rem;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .home .top-news .section_container {
    display: block;
  }
}
.home .top-news .top-news-ttl {
  margin-bottom: 5rem;
}
.home .top-news h2 {
  font-size: clamp(7.25rem, 1.184rem + 7.46vw, 8.375rem);
}

.list_item {
  width: 100%;
}
.list_item li {
  position: relative;
  border-bottom: 1px solid #dfe1e9;
  margin-bottom: 2rem;
}
.list_item a:hover {
  text-decoration: none;
}
.list_item li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-basegreen);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease-in-out;
}
.list_item li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.list_item a {
  display: block;
}
.list_item a dl {
  padding: 0 20px;
}
.list_item a dt {
  margin-bottom: 0.5em;
  line-height: 2em;
  font-size: 1.5rem;
}
.list_item a dd {
  transition: all 0.1s ease-in-out;
}
.list_item a:hover dd {
  color: var(--color-basegreen);
}
.list_item .category {
  display: inline-block;
  text-align: center;
  line-height: 1;
  margin: 0.8rem 1.6rem;
  padding: 5px 0.5em;
  border: 1px solid var(--color-basegreen);
  border-radius: 100vh;
  background-color: #fff;
}

.home .recruit {
  margin-bottom: 10rem;
}
.home .recruit .section_container {
  display: flex;
  justify-content: space-between;
}
.home .recruit h2 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home .recruit h2 {
    text-align: center;
  }
}
.home .recruit .content_item-1 {
  width: 100%;
  position: relative;
  z-index: 1;
}
.home .recruit .content_item-1 .content_img {
  width: 100%;
  max-width: 65rem;
  margin-bottom: 5rem;
}
.home .recruit .content_item-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.home .recruit .content_item-2 .content_img {
  position: relative;
  background-color: #333333;
}
.home .recruit .content_item-2 .content_img > div {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
}
.home .recruit .content_item-2 .content_img .content_img-1 {
  top: 0;
  right: 2vw;
  width: clamp(110px, 40.1vw - 40.2px, 370px);
}
@media screen and (max-width: 768px) {
  .home .recruit .content_item-2 .content_img .content_img-1 {
    top: -200px;
    right: auto;
    left: 0;
  }
}
.home .recruit .content_item-2 .content_img .content_img-2 {
  top: 300px;
  right: 24vw;
  width: clamp(90px, 27.7vw - 14px, 270px);
}
@media screen and (max-width: 768px) {
  .home .recruit .content_item-2 .content_img .content_img-2 {
    top: 0;
    right: 0;
  }
}
.home .recruit .content_item-2 .content_img .content_img-3 {
  top: 550px;
  right: 0;
  width: clamp(140px, 24.7vw + 47.6px, 300px);
}
@media screen and (max-width: 768px) {
  .home .recruit .content_item-2 .content_img .content_img-3 {
    top: 30px;
    right: auto;
    left: 2vw;
  }
}

.char {
  transform: translateY(-100vh);
  transition: transfrom 0.5s;
}

.error404 .content_item {
  margin-bottom: 5rem;
}

.company .main_content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.company .content_item-text {
  padding: 2rem;
}
.company .cardlist .cardmain {
  min-height: 10rem;
  text-align: center;
  background-color: #f7f8f9;
  border-radius: 999px;
  padding: 1rem;
}
.company .cardlist .cardmain img {
  max-height: 10rem;
  height: 6rem;
  width: auto;
}
.company .cardlist .cardsub {
  font-size: 1.8rem;
  font-weight: 500;
}
.company .cardlist .flex_column {
  gap: 2rem;
}
@media screen and (max-width: 480px) {
  .company .cardlist .cardmain {
    width: 100%;
    max-width: 100px;
  }
  .company .cardlist .cardmain img {
    height: 6rem;
  }
  .company .cardlist .cardsub {
    text-align: left;
  }
  .company .cardlist .flex_column {
    flex-direction: row;
    align-items: center;
  }
}
.company h2 {
  position: relative;
  text-align: center;
  margin-bottom: 3em;
}
.company h2::before, .company h2::after {
  content: "";
  display: block;
  width: 5rem;
  height: 3px;
  position: absolute;
  bottom: -1em;
}
.company h2::before {
  background: var(--color-basegreen);
  left: calc(50% - 5rem);
}
.company h2::after {
  background: #e6e6e6;
  right: calc(50% - 5rem);
}

.company_nav {
  margin-right: 5vh;
}
@media screen and (max-width: 768px) {
  .company_nav {
    margin-right: 0;
  }
}

.company_nav-outer {
  display: flex;
  justify-content: flex-end;
  padding: 2rem;
}

.company_nav-inner {
  width: 700px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  background-color: #bdccd4;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .company_nav-inner {
    width: 100%;
  }
}
.company_nav-inner li {
  width: 100%;
  max-width: calc(33.3333333333% - 1rem);
}
@media screen and (max-width: 768px) {
  .company_nav-inner li {
    max-width: calc(50% - 1rem);
    font-size: 0.8em;
  }
}

.aboutus section {
  margin-bottom: 10rem;
}
.aboutus .mission {
  position: relative;
  background-image: url(assets/img/bg/about_bg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 2em 0;
}
.aboutus .mission .mission_text {
  font-size: clamp(1.8rem, 0.6vw + 1.57rem, 2.2rem);
  font-weight: 500;
  line-height: 2em;
  text-align: center;
}
.aboutus .Guideline dt {
  color: var(--color-basegreen);
  font-size: clamp(1.8rem, 0.6vw + 1.57rem, 2.2rem);
  font-weight: 500;
}
.aboutus .Guideline dd {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 3rem;
}

.message .content_item_img {
  min-width: 50%;
  margin-bottom: 5rem;
}
.message .content_item_img img {
  width: 100%;
  max-height: 100vh;
}
@media screen and (max-width: 768px) {
  .message .content_item_img img {
    max-height: 300px;
    object-fit: cover;
    object-position: 50% 40%;
  }
}
.message h3 {
  margin-bottom: 5rem;
}
.message p {
  margin-bottom: 1em;
  line-height: 2em;
}
.message .message-name {
  display: flex;
  justify-content: flex-end;
}
.message .message-name-inner {
  width: 100%;
  max-width: 24rem;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}
.message .message-name-inner > div {
  margin: 0.5rem auto;
}

.overview .executive-name li {
  display: flex;
}
.overview .executive-name li span:first-child {
  width: 6em;
}

.history .history_list .history_list-item {
  display: flex;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .history .history_list .history_list-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.history .history_list dt {
  border-bottom: 3px solid var(--color-basegreen);
  min-width: 240px;
  padding: 2rem;
  position: relative;
}
.history .history_list dt::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--color-basegreen);
  border-radius: 999px;
  position: absolute;
  right: 0;
  top: 36px;
}
@media screen and (max-width: 768px) {
  .history .history_list dt {
    border: none;
  }
}
.history .history_list dd {
  border-bottom: 3px solid #e6e6e6;
  flex: 1;
  padding: 2.8rem 2rem 2rem;
}
@media screen and (max-width: 768px) {
  .history .history_list dd {
    min-width: 100%;
  }
}
.history .history_list .history_list-date {
  display: flex;
}
@media screen and (max-width: 768px) {
  .history .history_list .history_list-date {
    justify-content: flex-start;
  }
}
.history .history_list-year,
.history .history_list-month {
  font-size: 2.4rem;
  font-family: "inter";
  font-weight: 900;
  text-align: right;
}
.history .history_list-year span,
.history .history_list-month span {
  font-size: 1.7rem;
}
.history .history_list-month {
  width: 2.5em;
}

.view_web a, .download_web a {
  display: block;
  font-size: clamp(1.4rem, 1vw, 1.7rem);
  text-align: center;
  padding: 1rem;
  margin: 0.5rem;
  border-radius: 999px;
  transition: all 0.3s;
}
.view_web a:hover, .download_web a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.view_web a {
  color: var(--color-baseblack) !important;
  background-color: var(--color-baseyellow);
}

.download_web a {
  color: #fff !important;
  background-color: var(--color-baseblack);
}

.works .cardlist > li a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 40px solid transparent;
  border-bottom: 40px solid #159f4c;
  border-left: 40px solid transparent;
  border-right: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.cardlist > li, .cardlist .cardlist-item {
  background-color: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-rows: subgrid;
  border-radius: 0.5rem;
}
.cardlist > li .card_inner, .cardlist .cardlist-item .card_inner {
  padding: 1rem;
}
.cardlist > li a, .cardlist .cardlist-item a {
  display: inline-block;
  grid-template-rows: inherit;
  grid-row: inherit;
  transition: all 0.2s;
  position: relative;
}
.cardlist > li > a:hover, .cardlist .cardlist-item > a:hover {
  text-decoration: none;
  outline: 2px solid var(--color-basegreen);
  outline-offset: 3px;
  transition: all 0.1s;
  border-radius: 0.5rem;
}
.cardlist > li > a:hover::after, .cardlist .cardlist-item > a:hover::after {
  border-bottom-color: var(--color-baselightgreen);
  transition: all 0.2s;
}
.cardlist > li > a:hover .works_thumb img, .cardlist .cardlist-item > a:hover .works_thumb img {
  transform: scale(1.1);
  transition: all 0.2s;
  opacity: 0.6;
}
.cardlist .cardmain {
  font-weight: 500;
  min-height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cardlist .cardsub {
  font-weight: 500;
  text-align: center;
  padding: 0.5rem;
  color: var(--color-basegreen);
}
.cardlist .cardlist_img {
  width: 100%;
  max-width: 65px;
  min-width: 60px;
  height: 100%;
  max-height: 100px;
  margin-right: 2vw;
  align-items: center;
}
.cardlist-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.4rem;
}
.cardlist-M, .cardlist-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.4rem;
}
.cardlist-L, .cardlist-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.4rem;
}
.cardlist-L .flex, .cardlist-2col .flex {
  align-items: center;
}
.cardlist-LL, .cardlist-1col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 5rem;
}
.cardlist-LL .cardmain, .cardlist-1col .cardmain {
  max-width: 450px;
  margin: auto;
}
.cardlist-LL .cardlist_img, .cardlist-1col .cardlist_img {
  max-width: 65px;
  min-width: 60px;
  height: 100%;
  max-height: 100px;
  margin-right: 2vw;
  align-items: center;
}
.cardlist-LL .cardlist_text, .cardlist-1col .cardlist_text {
  flex: 1;
}
.cardlist .no-link {
  background-color: #f7f8f9;
}

@media screen and (max-width: 768px) {
  .cardlist-4col,
  .cardlist-M,
  .cardlist-3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .cardlist-L,
  .cardlist-2col {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .cardlist-4col,
  .cardlist-M,
  .cardlist-3col {
    grid-template-columns: repeat(auto-fill, 100%);
  }
}
.subpage.company .content_item-origin dl {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-basegreen);
  position: relative;
  margin-bottom: 5rem;
}
.subpage.company .content_item-origin dl:after {
  position: absolute;
  content: " ";
  display: block;
  width: 50%;
  border-bottom: 2px solid var(--color-baseyellow);
  bottom: -2px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .subpage.company .content_item-origin dl {
    flex-direction: column;
  }
}
.subpage.company .content_item-origin dt, .subpage.company .content_item-origin dd {
  width: 50%;
  padding: 0 3rem;
}
@media screen and (max-width: 768px) {
  .subpage.company .content_item-origin dt, .subpage.company .content_item-origin dd {
    width: 100%;
    padding: 0;
  }
}
.subpage.company .content_item-origin dt {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
}
.subpage.company .content_item-origin dt::first-letter {
  color: var(--color-basegreen);
}
.subpage.company.location .content_item-text, .subpage.company.location .content_item-slide {
  width: 100%;
}
.subpage.company.location .content_item-text li, .subpage.company.location .content_item-slide li {
  position: relative;
  aspect-ratio: 1/1;
}
.subpage.company.location .content_item-text .content_item_img img, .subpage.company.location .content_item-slide .content_item_img img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.subpage.company.location .swiper-container .swiper-button-next, .subpage.company.location .swiper-container .swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
.subpage.company.location .swiper-button-prev:after, .subpage.company.location .swiper-button-next:after {
  font-size: 2rem;
}

.service .point {
  background-color: #f7f8f9;
  background-image: url(assets/img/bg/service_development_point_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 5rem 2rem;
}
.service .point h2 {
  margin: 0;
}
.service .point h4 {
  font-size: 1.9rem;
  font-weight: bold;
  padding-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service .point h4 {
    text-align: left;
  }
}
.service .point .content {
  max-width: 1300px;
  margin: auto;
  margin-top: 3vw;
}
.service .point .contents_list {
  display: flex;
  justify-content: space-between;
  gap: 3vw;
}
@media screen and (max-width: 768px) {
  .service .point .contents_list {
    flex-direction: column;
  }
}
.service .point .contents_list .contents_list-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 2px 2px 10px rgba(211, 211, 211, 0.3);
}
@media screen and (max-width: 768px) {
  .service .point .contents_list .contents_list-item {
    flex-direction: row;
  }
}
@media screen and (max-width: 480px) {
  .service .point .contents_list .contents_list-item {
    flex-direction: column;
  }
}
.service .point .contents_list .contents_list-item .content_text {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service .point .contents_list .contents_list-item .content_text {
    flex: 1;
  }
}
.service .point .contents_list .content_img {
  width: 100%;
  max-width: 200px;
  margin: 4rem auto;
}
@media screen and (max-width: 768px) {
  .service .point .contents_list .content_img {
    max-width: 150px;
    padding: 1rem;
    margin: auto;
  }
}

.catch {
  max-width: 1200px;
  margin: 0 auto 15rem;
}
.catch.flex {
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .catch.flex {
    flex-direction: column;
  }
}
.catch .catch_header {
  font-size: clamp(42px, 2.7vw + 32px, 64px);
  font-weight: 300;
  background: linear-gradient(90deg, #33cc33 0%, #333 100%);
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.catch .catch_inner {
  max-width: 700px;
}

.service .item1 {
  background-image: url(assets/img/bg/service_bg01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 480px) {
  .service .item1 {
    position: relative;
    background-image: none;
    background-attachment: scroll;
  }
  .service .item1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/img/bg/service_bg01.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.service .item2 {
  background-image: url(assets/img/bg/service_bg02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 480px) {
  .service .item2 {
    position: relative;
    background-image: none;
    background-attachment: scroll;
  }
  .service .item2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/img/bg/service_bg02.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.service .item3 {
  background-image: url(assets/img/bg/service_bg03.png);
  background-repeat: repeat;
  background-attachment: fixed;
}
.service .content_item_text a h4 {
  transition: all 0.2s ease;
}
.service .content_item_text a:hover h4 {
  color: var(--color-basegreen);
}
.service .link_arrow::before {
  top: 1rem;
  bottom: auto;
}

.service_main section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  margin: 0;
  padding: 15rem 0 20rem;
  background-color: #fff;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.service_main section .content_item_img {
  background-size: 200% 200%;
  animation: Grad 5s ease infinite;
}
@keyframes Grad {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
.service_main h3 {
  font-size: clamp(2rem, 2rem + 2.5vw, 4rem);
  margin-bottom: 5rem;
}
.service_main h4 {
  font-size: clamp(1.6rem, 1.6rem + 2.5vw, 2.4rem);
  margin-bottom: 2rem;
}
.service_main .content_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .service_main .content_item {
    flex-direction: column;
  }
  .service_main .content_item .card_inner {
    flex-direction: column;
  }
  .service_main .content_item .card_inner h4 {
    text-align: center;
  }
}
.service_main section:nth-child(odd) .content_item {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .service_main section:nth-child(odd) .content_item {
    flex-direction: row;
  }
}
.service_main .content_item_img {
  width: clamp(280px, 30.1vw + 171.6px, 480px);
  height: auto;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .service_main .content_item_img {
    position: absolute;
    right: -90px;
    top: -160px;
  }
}
.service_main .content_item_img::before, .service_main .content_item_img::after {
  content: "";
  display: block;
  background-image: url(assets/img/service_bgitem.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
.service_main .content_item_img::before {
  animation: 10s linear infinite rotation1;
}
.service_main .content_item_img::after {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  animation: 7s linear infinite rotation2;
}
.service_main .content_item_text {
  flex: 1;
}
.service_main .maintext {
  margin-bottom: 5rem;
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.catch-left.flex {
  justify-content: end;
  margin-bottom: 10vw;
}

.develop .cardlist > li {
  display: initial;
}
.develop .workslist {
  background-color: #fff;
  margin-top: 1em;
  padding: 3rem;
}
.develop .workslist h5 {
  border-left: 8px solid #3c3;
  padding-left: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5em;
}
.develop .workslist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}
.develop .workslist ul li a {
  color: #3c3;
}

.canvas-wrap-outer {
  position: relative;
  top: -80px;
}

.canvas-wrap {
  background-image: url(assets/img/bg/bg_common.svg);
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1;
  top: 0;
  background-repeat: no-repeat;
  background-position: center -20vh;
  opacity: 0.5;
  background-size: cover;
}

.works h2, .single-product h2, .news h2, .contactmenu h2 {
  font-size: clamp(1.8rem, 0.9vw + 1.45rem, 2.4rem);
  font-weight: 400;
  background-color: #d9ede4;
  padding: 0.75em 0.5em;
  margin-bottom: 1rem;
  position: relative;
}
.works h2::before, .single-product h2::before, .news h2::before, .contactmenu h2::before {
  content: "";
  display: block;
  width: 1rem;
  height: 2.5rem;
  background: var(--color-basegreen);
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.works h3, .single-product h3, .news h3, .contactmenu h3 {
  font-size: clamp(1.8rem, 0.6vw + 1.57rem, 2.2rem);
  color: var(--color-basegreen);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding: 0.5em;
  border-bottom: 4px dotted var(--color-basegreen);
  line-height: 1.3em;
}
.works h4, .single-product h4, .news h4, .contactmenu h4 {
  font-size: 1.8rem;
  color: var(--color-basegreen);
  padding: 2rem 0;
  margin: 3rem 0 2rem;
  position: relative;
}
.works h4::before, .works h4::after, .single-product h4::before, .single-product h4::after, .news h4::before, .news h4::after, .contactmenu h4::before, .contactmenu h4::after {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 0.3rem;
  bottom: 0;
  left: 0;
  background: var(--color-basegreen);
}
.works h4::after, .single-product h4::after, .news h4::after, .contactmenu h4::after {
  left: 3rem;
  background: var(--color-baseblack);
}
.works h5, .single-product h5, .news h5, .contactmenu h5 {
  color: var(--color-basegreen);
  border-bottom: 1px dashed var(--color-basegreen);
  padding-bottom: 0.5rem;
  margin: 3rem 0 1rem;
}
.works h6, .single-product h6, .news h6, .contactmenu h6 {
  margin: 3rem 0 1rem;
}
.works .writearea a, .single-product .writearea a, .news .writearea a, .contactmenu .writearea a {
  color: var(--color-basegreen);
}
.works .content_img, .single-product .content_img, .news .content_img, .contactmenu .content_img {
  text-align: center;
}

.works .cardlist .cardmain {
  font-size: 2rem;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.3em;
  background: none;
}
.works .cardlist_text::before {
  content: "";
  display: block;
  width: 5rem;
  height: 3px;
  margin: 10px auto 20px;
  background: var(--color-basegreen);
}
.works .category_list {
  justify-content: center;
  gap: 1vw;
}
.works .category_list li {
  padding: 0;
}
.works .category_list li a {
  display: block;
  padding: 1rem;
}
.works .category_list li a:hover {
  color: #fff;
  border-radius: 999px;
  background: var(--color-basegreen);
  text-decoration: none;
}
.works .works_thumb {
  height: 200px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.works .works_thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.works .works_cat {
  margin-top: auto;
}
.works .works_cat > div {
  font-size: 1.5rem;
  color: var(--color-basegreen);
  padding: 5px 20px;
  margin: 0 5px;
  border: 1px solid var(--color-basegreen);
  border-radius: 999px;
  line-height: 1em;
}
.works .other-works li {
  border: none;
  background-color: #f7f8f9;
  font-size: 0.9em;
  padding: 1rem;
}
.works .other-works .list_item-title {
  margin-top: 0;
}
.works .other-works .list_item-meta-item {
  display: flex;
}
@media screen and (max-width: 320px) {
  .works .other-works .list_item-meta-item {
    flex-direction: column;
  }
}
.works .other-works .list_item-meta-item dt {
  width: 6em;
  min-width: 6em;
  font-weight: bold;
  color: #006699;
  position: relative;
}
.works .other-works .list_item-meta-item dt::after {
  content: "－";
  font-weight: 900;
  position: absolute;
  right: 0.5em;
}
.works .other-works .list_item-meta-item dd {
  flex: 1;
}

.term-ctrl-sys .other-biz, .term-ctrl-sys .other-web {
  display: none;
}

.term-biz-sys .other-ctrl, .term-biz-sys .other-web {
  display: none;
}

.term-web-sys .other-works, .term-web-sys .other-ctrl, .term-web-sys .other-biz {
  display: none;
}

.product .cardlist > li a dl {
  padding: 2rem;
}

.news .section {
  display: flex;
  justify-content: center;
  gap: 5rem;
  background: rgba(255, 255, 255, 0.75);
}
.news .mainarea {
  width: 100%;
  max-width: 800px;
}
.news .mainarea .writearea {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid #ccc;
}
.news .mainarea .date {
  white-space: nowrap;
}
.news .sidemenu {
  display: block;
}
@media screen and (max-width: 768px) {
  .news .sidemenu {
    width: 100%;
    max-width: initial;
  }
}

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

.newsli dt {
  display: flex;
  align-items: center;
}
.newsli dd {
  display: block;
}
.newsli a[target=_blank] dd::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(assets/img/icons/icon-blank.svg) right center/0.8em auto no-repeat;
}

.pagenate-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 2rem;
  gap: 1rem;
}
.pagenate-link .page-numbers {
  border: 2px solid var(--color-baseblack);
  border-radius: 999px;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenate-link .page-numbers:hover {
  border-color: var(--color-basegreen);
  text-decoration: none;
}
.pagenate-link .page-numbers.current {
  background: #dfe1e9;
  color: #8a93a0;
  border-color: #dfe1e9;
}
.pagenate-link .page_arrow {
  content: "";
  width: 12px;
  height: 20px;
  background-image: url(assets/img/icons/icon-right-arrow.svg);
  background-repeat: no-repeat;
}
.pagenate-link .prev .page_arrow {
  transform: rotate(180deg);
}

.single-news .news_cat_heading {
  padding: 0 2rem;
}

.pagenav {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.pagenav > div {
  flex: 1;
  width: 33.3333333333%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 11em;
}
.pagenav .back a {
  color: var(--color-basegreen);
}

.bcqa-controls {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 3rem;
}
.bcqa-controls button {
  font-size: 1.6rem;
  color: #fff;
  background: var(--color-basegreen);
  padding: 1rem;
  border: 2px solid var(--color-basegreen);
  border-radius: 0.5rem;
}
.bcqa-controls button:hover {
  cursor: pointer;
  color: var(--color-basegreen);
  background: #fff;
}

.bc-accordion_inner {
  display: none;
}

.bcqa .bcqalist {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.bcqa .bcqalist li {
  border: 1px solid var(--color-basegreen);
  border-radius: 999px;
  background-color: #fff;
}
.bcqa .bcqalist a {
  display: block;
  border-radius: 999px;
  padding: 1rem;
}
.bcqa .bcqalist a:hover {
  text-decoration: none;
}
.bcqa dl {
  padding: 1rem;
  margin-bottom: 3rem;
  background-color: #dae4e9;
  border-radius: 1rem;
}

.bcqa-q {
  font-weight: bold;
  cursor: pointer;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bcqa-q .bcqa-q-inner {
  display: flex;
  align-items: center;
  flex: 1;
}
.bcqa-q-icon {
  font-family: "Inter", sans-serif;
  font-size: 2em;
  font-weight: bold;
  color: var(--color-basegreen);
  margin-right: 0.5rem;
  transition: 0.3s all;
}
.bcqa-q::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 2rem;
  margin-right: 0.5rem;
  transform: translateY(0.25rem);
  background-image: url(assets/img/icons/icon-right-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s all;
}
.bcqa-q.open::after {
  transform: rotate(90deg);
}

.bcqa-a {
  background-color: #f7f8f9;
  padding: 1rem;
  border-radius: 0.5rem;
}
.bcqa-a-icon {
  font-family: "Inter", sans-serif;
  font-size: 2em;
  font-weight: bold;
  color: #0071bc;
  margin-right: 0.5rem;
  transition: 0.3s all;
}
.bcqa-a-title {
  color: #0071bc;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.bcqa-a-detail {
  padding-left: calc(2em + 0.5rem);
}
.bcqa-a ol li {
  text-indent: -1em;
  padding-left: 1em;
  padding-bottom: 1rem;
}

.tbl-bcqa-outer {
  margin-bottom: 2rem;
  min-width: auto;
  overflow: auto;
}

.tbl-bcqa {
  background-color: #fff;
  width: 100%;
  min-width: 700px;
  overflow: auto;
}
.tbl-bcqa tr:nth-of-type(odd) {
  background-color: #eee;
}
.tbl-bcqa th {
  background-color: #0071bc;
  color: #fff;
  text-align: center;
  padding: 0.8rem;
}
.tbl-bcqa th:first-child {
  background-color: #555;
}
.tbl-bcqa td {
  vertical-align: baseline;
  padding: 0.8rem;
}
.tbl-bcqa td:first-child {
  text-align: left;
}

.recruit {
  color: #2d324e;
}
.recruit .footer {
  margin-top: 0;
}
.recruit .container {
  color: #2d324e;
  margin: 10vh auto 0;
  padding: 8vh 0;
}
.recruit.recruit-top h3 {
  text-align: center;
  margin: 5vw auto;
}
.recruit .bg-green h3, .recruit .bg-green .sub_text {
  color: #fff;
}
.recruit h2 {
  text-align: center;
}
.recruit h2#Newgraduate, .recruit h2#Career {
  padding-top: 20rem;
  margin-top: -20rem;
}
.recruit .r-mv-bg > div img {
  border-radius: 20px;
  box-shadow: 4px 4px 7px 0px rgba(0, 0, 0, 0.15);
}
.recruit .r-mv-bg .content_img-1 {
  position: absolute;
  top: 12rem;
  right: 0;
}
.recruit .r-mv-bg .content_img-2 {
  position: absolute;
  left: 15%;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
}
.recruit .r-mv-bg .content_img-3 {
  position: absolute;
  right: 10%;
  bottom: 0;
}
.recruit .r-mv {
  position: relative;
}
.recruit .r-mv .r-mv-item h1 {
  text-align: center;
}
.recruit .r-mv .r-mv-item h1 img {
  max-height: 80vh;
}
.recruit .r-catch {
  color: #fff !important;
  opacity: 0;
  background-color: var(--color-baseblack);
  background-image: url(assets/img/recruit/r-catch-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10vh 0 !important;
}
.recruit .r-catch h2 {
  line-height: 1.5;
}
.recruit .r-catch .r-catch_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruit .r-catch .r-catch_box .r-catch-item {
  padding: 2rem;
}
.recruit .r-catch .r-catch_box .r-catch-item p {
  font-size: clamp(1.5rem, 1.3vw + 1.02rem, 2rem);
  margin-bottom: 6vh;
}
.recruit .r-style .r-style-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}
@media screen and (max-width: 768px) {
  .recruit .r-style .r-style-box {
    flex-direction: column;
  }
}
.recruit .r-style .r-style-item01 {
  min-width: 180px;
  max-width: 700px;
}
.recruit .r-style .r-style-item02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .recruit .r-style .r-style-item02 {
    max-width: fit-content;
    flex-direction: row;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }
}
.recruit .r-voice {
  border-radius: 8rem 8rem 0 0;
  color: #fff;
}
.recruit .r-voice p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.recruit .r-voice .r-voicebtn {
  margin: 5rem auto;
  width: 100%;
  max-width: 240px;
}
.recruit .r-voice .button_wh {
  width: 100%;
}
.recruit .r-voice .loop_item-img {
  width: 100%;
  min-width: 900px;
}
.recruit .container.r-requirements {
  margin-top: 0;
  padding-bottom: 0;
}
.recruit .r-requirements .bg-gradient {
  background: linear-gradient(45deg, var(--color-baseyellow), #a4ff00);
  border-radius: 8rem 8rem 0 0;
  padding: 5vw 0 10vw;
}
.recruit .r-requirements .r-requirements-box {
  display: flex;
  justify-content: center;
  gap: 5vw;
}
.recruit .r-requirements .r-requirements-box .r-requirements-item {
  max-width: 320px;
}
.recruit .r-requirements .r-requirements-box .r-requirements-item_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 5px solid #2d324e;
  background-color: #fff;
  padding: 3rem 0;
}
.recruit .r-requirements .r-requirements-box .r-requirements-item_inner h4 {
  margin-bottom: 3rem;
}
.recruit .r-requirements .r-requirements-box .r-requirements-item_inner .button {
  width: fit-content;
  padding: 0 4vw;
  width: auto;
}

.recruit.voice .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10vh 0;
}
.recruit.voice h2 {
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 5rem;
}
.recruit.voice h3 {
  margin-bottom: 0;
  letter-spacing: 0;
}
.recruit.voice h4 {
  color: #2d324e;
  border-bottom: 1px solid var(--color-basegreen);
  margin-bottom: 2rem;
}
.recruit.voice h5 {
  color: #2d324e;
  margin-bottom: 2rem;
}
.recruit.voice .case-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem 1rem;
}
@media screen and (max-width: 480px) {
  .recruit.voice .case-list {
    flex-wrap: wrap;
  }
}
.recruit.voice .case-list .case-list-item {
  max-width: 120px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .recruit.voice .case-list .case-list-item {
    width: calc(33.3333333333% - 1rem);
  }
}
.recruit.voice .case-list .case-list-item a {
  display: block;
  border-radius: 999px;
}
.recruit.voice .case-list .case-list-item a:hover {
  outline: 2px solid var(--color-basegreen);
}
.recruit.voice .case-list .case-list-item .casename {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background-color: var(--color-basegreen);
  width: 100%;
  border-radius: 100vh;
  line-height: 1.3;
  position: absolute;
  bottom: -1.6rem;
}
.recruit.voice .case-list .case-list-item .casename.font_inter {
  font-weight: 500;
}

.caseitem {
  padding: 10vh 0;
}

.caseflex {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  grid-gap: 0 5vw;
  background-color: var(--color-basegreen);
  border-radius: 999px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0.5rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .caseflex {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 1rem;
    border-radius: 3rem 3rem 0 0;
  }
}
.caseflex > div {
  display: inline;
}
.caseflex .caseflex-item01 {
  order: 2;
}
@media screen and (max-width: 480px) {
  .caseflex .caseflex-item01 {
    order: 1;
  }
}
.caseflex .caseflex-item02 {
  display: flex;
  align-items: center;
  order: 1;
  height: 100%;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media screen and (max-width: 480px) {
  .caseflex .caseflex-item02 {
    order: 2;
    grid-row-start: 2;
    grid-row-end: 2;
    max-width: 200px;
  }
}
.caseflex .caseflex-item03 {
  order: 3;
}

.r-qa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 5rem 0 20rem;
  overflow: hidden;
}
.r-qa .r-qa-box {
  display: flex;
  justify-content: center;
  max-width: 80vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .r-qa .r-qa-box {
    max-width: 100%;
  }
}
.r-qa .r-qa-box:nth-child(odd) {
  align-self: flex-start;
  background: linear-gradient(45deg, var(--color-baseyellow), #caffee);
  border-radius: 0 100vh 100vh 0;
}
.r-qa .r-qa-box:nth-child(even) {
  align-self: flex-end;
  background: linear-gradient(45deg, #ffdcf6, var(--color-baseyellow));
  border-radius: 100vh 0 0 100vh;
}
.r-qa .r-qa-box .r-qa-box_inner {
  max-width: 800px;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .r-qa .r-qa-box .r-qa-box_inner {
    width: 100%;
  }
}

.privacy .privacy_container {
  width: 100%;
  padding: 1.5em 1em;
  background-color: rgba(255, 255, 255, 0.75);
}
.privacy .privacy_nav-outer {
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.privacy .privacy_nav {
  display: flex;
}
.privacy .privacy_nav li {
  flex: 1 1;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  background-color: #e9f0f6;
  color: #535353;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
}
.privacy .privacy_nav li a {
  display: inline-block;
  width: 100%;
  padding: 0.7em 1em 0.5em;
  text-decoration: none;
}
.privacy .privacy_nav li a:hover {
  opacity: 0.8;
}
.privacy .privacy_nav li.current_tab {
  background-color: #fff;
  border-color: var(--color-basegreen) #f0f0f0 #fff;
  border-style: solid;
  border-width: 4px 1px 1px;
  border-radius: 5px;
  color: #333333;
}
.privacy h3 {
  margin-top: 8rem;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  border-top: none;
  border-left: 6px solid var(--color-basegreen);
  background-color: initial;
  line-height: 1em;
}
.privacy h3 + div {
  margin: 0 2rem;
}
.privacy h4 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  padding: 0;
  border: none;
}
.privacy .contentcontainer {
  font-size: 1.5rem;
  line-height: 1.7;
}
.privacy .contentcontainer p {
  font-size: 1.5rem;
  line-height: 1.714;
  margin-bottom: 2rem;
}
.privacy .contentcontainer a {
  text-decoration: underline;
  text-decoration-color: var(--color-basegreen);
  color: var(--color-basegreen);
}
.privacy .contentcontainer a:hover {
  text-decoration: none;
}
.privacy .contentcontainer .section_container {
  max-width: 900px;
  margin-bottom: 10rem;
}
.privacy .indent_list > li {
  display: flex;
  margin-bottom: 3rem;
}
.privacy .blackdisclist {
  margin-left: 1em;
}
.privacy .en_oder_list {
  margin-left: 1em;
}
.privacy .en_oder_list li {
  margin-bottom: 0;
  display: list-item;
}
.privacy .text_right {
  display: flex;
  justify-content: flex-end;
}

.blackdisclist li {
  position: relative;
  margin-bottom: 0.3em;
  display: list-item;
  list-style: none;
  padding-left: 0.8em;
  margin-bottom: 0.3em;
  line-height: 1.3em;
}
.blackdisclist li::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  left: 0em;
  top: 0.5em;
  background-color: var(--color-baseblack);
  border-radius: 999px;
}

.no_point_list li {
  margin-bottom: 1rem;
  padding-left: 1em;
  display: list-item;
}

.achieve .contentcontainer {
  display: flex;
}

.achieve .contentcontainer .section_container {
  margin-bottom: 10rem;
}

.dev_content-table, .tbl_develop {
  overflow-x: auto;
  width: 100%;
}
.dev_content-table table, .tbl_develop table {
  font-size: 1.6rem;
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background-color: #fff;
  letter-spacing: 0.1rem;
}
.dev_content-table tr:nth-child(odd), .tbl_develop tr:nth-child(odd) {
  background-color: #f7fcfe;
}
.dev_content-table th, .dev_content-table td, .tbl_develop th, .tbl_develop td {
  min-height: 2em;
  padding: 0.8rem;
  border-bottom: 1px solid #ddd;
}
.dev_content-table th, .tbl_develop th {
  background-color: #555;
  color: #fff;
  white-space: nowrap;
}
.dev_content-table th:last-child, .tbl_develop th:last-child {
  min-width: 10em;
}
.dev_content-table .dev_content-title, .tbl_develop .dev_content-title {
  min-width: 400px;
}

.tbl_license th,
.tbl_license td {
  border-left: 1px solid #ddd;
  text-align: center;
  line-height: 1em;
  padding: 0.5rem;
  font-size: 1.5rem;
}

.tbl_license td:first-child {
  text-align: left;
}

.tbl_license th:first-child,
.tbl_license td:first-child {
  border-left: none;
  left: 0;
  background-color: #555;
  color: #fff;
  white-space: nowrap;
  text-align: left;
}

.license table tr.t-heder th {
  width: 25%;
}

.license table tr.t-heder .plan {
  font-size: 15px;
  font-weight: bold;
  padding: 20px 0;
}

.license table tr.t-heder .plan-free {
  background-color: #1eb31e;
  color: #fff;
}

.license table tr.t-heder .plan-professional {
  background-color: #236cc9;
  color: #fff;
}

.license table tr.t-heder .plan-enterprise {
  background-color: #f58c3e;
  color: #fff;
}

.license table th.unten {
  padding-left: 0;
  background-color: #d5efff;
  color: var(--color-baseblack);
}

.license table th.maina {
  background-color: #f5ddff;
  color: var(--color-baseblack);
}

.tenkokanri dl {
  display: flex;
  background-image: linear-gradient(to right, #003466 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}

.tenkokanri dt {
  display: flex;
  background-color: #93d6cc;
  position: relative;
  width: 30%;
  max-width: 10em;
  min-width: 5em;
}

.tenkokanri dt span {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 2em;
  height: 2em;
  width: 100%;
  padding: 0.25em 0;
  background-color: #003466;
}

.tenkokanri dt span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top: 15px solid #003466;
  margin-left: -15px;
}

.tenkokanri dl:last-child dt span::after {
  content: none;
}

.tenkokanri dd {
  padding: 1em 0 1em 1em;
  margin: 0;
  flex: 1;
}

.it-call-nintei .flex {
  gap: 2rem;
}
@media screen and (max-width: 480px) {
  .it-call-nintei .flex {
    flex-direction: column;
    gap: 1rem;
  }
}

.enkakutenko .tenko_dl dd {
  margin-left: 1em;
  margin-bottom: 1em;
}
.enkakutenko .tenkokinou_list .tenkokinou_list-item {
  padding-left: 1rem;
  width: 100%;
}
.enkakutenko .tenkokinou_list h3 {
  border: none;
  border-bottom: 2px solid var(--color-basegreen);
  padding: 1rem 0;
  margin: 0;
  background: none;
}

.enkakutenko ul > li,
.gyoumugotenko ul > li {
  display: flex;
  margin: 1em 0px 0 0;
  align-items: center;
}

.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
}

.tab_item {
  box-sizing: border-box;
  width: 33.3333333333%;
  height: 50px;
  border-bottom: 3px solid #006699;
  background-color: #d9d9d9;
  font-size: clamp(12px, 0.7vw + 8.5px, 16px);
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  padding: 1rem 0;
  transition: all 0.2s ease;
}

.tab_item:hover {
  opacity: 0.75;
}

.enkakutenko_tab {
  cursor: pointer;
}

.gyoumugotenko_tab {
  cursor: pointer;
}

.gyoumumaetenko_tab {
  cursor: pointer;
}

input[name=tab_item] {
  display: none;
}

.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}

#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#gyomumae:checked ~ #gyomumae_content,
#design:checked ~ #design_content {
  display: block;
}

.tabs input:checked + .enkakutenko_tab {
  background-color: #003399;
  color: #fff;
  border-bottom: 3px solid #003399;
}

.tabs input:checked + .gyoumugotenko_tab {
  background-color: #33CCCC;
  color: #fff;
  border-bottom: 3px solid #33CCCC;
}

.tabs input:checked + .gyoumumaetenko_tab {
  background-color: #ff9a05;
  color: #fff;
  border-bottom: 3px solid #ff9a05;
}

.tenko1_detail .accordion_one {
  max-width: 1024px;
  margin: 0 auto;
}

.tenko1_detail .accordion_one .accordion_header,
.tenko1_detail .accordion_one .accordion_footer {
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: 9px 11%;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.enkakutenko .tenko1_detail .accordion_one .accordion_header,
.enkakutenko .tenko1_detail .accordion_one .accordion_footer {
  background-color: #003399;
}

.gyoumugotenko .tenko1_detail .accordion_one .accordion_header,
.gyoumugotenko .tenko1_detail .accordion_one .accordion_footer {
  background-color: #33CCCC;
}

.gyoumumaetenko .tenko1_detail .accordion_one .accordion_header,
.gyoumumaetenko .tenko1_detail .accordion_one .accordion_footer {
  background-color: #ff9a05;
}

.tenko1_detail .accordion_one:nth-of-type(2) .accordion_header {
  background-color: #ff9a05;
}

.tenko1_detail .accordion_one:nth-of-type(3) .accordion_header {
  background-color: #1c85d8;
}

.tenko1_detail .accordion_one .accordion_header:hover {
  opacity: 0.8;
}

.tenko1_detail .accordion_one .accordion_inner {
  display: none;
  padding: 30px 30px;
  border-left: 2px solid #006699;
  border-right: 2px solid #006699;
  border-bottom: 2px solid #006699;
  box-sizing: border-box;
  background-color: #F8F8FC;
}

.tenko1_detail .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .tenko1_detail .accordion_one .accordion_header {
    font-size: 18px;
  }
  .tenko1_detail .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .tenko1_detail .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}
.close_box a.close_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #006699;
  padding: 10px;
  text-decoration: none;
  line-height: 1.3;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition-duration: 0.2s;
}

.accordion_one h4 {
  font-size: 1em;
}

.accordion_inner ul {
  margin-left: 30px;
}

.accordion_inner ul li {
  list-style: inside;
}

.accordion_inner img {
  width: 100%;
  margin-bottom: 8px;
}

.contact-sub {
  background-color: #f7f8f9;
}
.contact-sub .sub_header {
  background-color: #f7f8f9;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.15);
}
.contact-sub h1 {
  font-size: clamp(3.2rem, 0.8vw + 2.92rem, 4rem);
  margin-top: 4rem;
}
.contact-sub h2 {
  font-size: clamp(2.4rem, 5.6vw + 0px, 3.2rem);
}
.contact-sub .privacy h3 {
  margin-top: clamp(2rem, 3.7vw + 0.24rem, 4rem);
}
.contact-sub .content_column .content_item {
  width: 100%;
}
.contact-sub .content_column .content_item.content_item1 {
  max-width: 40%;
  flex: 1;
}
.contact-sub .content_column .content_item.content_item2 {
  max-width: 60%;
}
@media screen and (max-width: 768px) {
  .contact-sub .content_column .content_item.content_item1 {
    max-width: 100%;
  }
  .contact-sub .content_column .content_item.content_item2 {
    max-width: 100%;
  }
}
.contact-sub .greenbtn {
  cursor: pointer;
  color: #fff;
}
.contact-sub .greenbtn:hover {
  color: var(--color-basegreen);
}
.contact-sub .greenbtn:disabled {
  cursor: no-drop;
  background-color: #DDD;
  color: #ccc;
  border-color: #DDD;
}
.contact-sub .kojin-doui-box {
  max-width: 800px;
  background: #fff;
  margin: auto;
  padding: 6rem;
  box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.15);
}
.contact-sub .kojin-doui-box .flex_column {
  align-items: center;
}
.contact-sub .content_item1 {
  font-size: 0.9em;
  margin-bottom: 1em;
}

.contactform {
  background: #fff;
  padding: 2rem;
}
.contactform .c-formItem {
  padding: 1rem 0;
}
.contactform .c-form-head {
  font-weight: bold;
}
.contactform .c-form-head p {
  display: flex;
  align-items: center;
}
.contactform .reqired {
  font-size: 1.2rem;
  color: #fff;
  background-color: #cc0000;
  margin-left: 1em;
  padding: 1px 8px;
  border-radius: 4px;
}
.contactform input[type=submit] {
  color: #fff;
  font-weight: bold;
  border: 2px solid var(--color-basegreen);
  border-radius: 100px;
  background-color: var(--color-basegreen);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.contactform input[type=submit]:hover {
  color: var(--color-basegreen);
  background: #fff;
}
.contactform input[type=text],
.contactform input[type=email],
.contactform input[type=tel],
.contactform textarea,
.contactform select {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f0f0f0;
  padding: 1.4rem;
  border-radius: 5px;
  color: #333;
  width: 100%;
}
.contactform input[type=text]:focus, .contactform input[type=text]:active,
.contactform input[type=email]:focus,
.contactform input[type=email]:active,
.contactform input[type=tel]:focus,
.contactform input[type=tel]:active,
.contactform textarea:focus,
.contactform textarea:active,
.contactform select:focus,
.contactform select:active {
  outline: none;
  border: none;
  box-shadow: inset 1px 1px 0 0 rgba(0, 157, 245, 0.6), inset -1px -1px 0 0 rgba(0, 157, 245, 0.6), inset 1px 1px 0 0 rgba(0, 157, 245, 0.6), inset -1px -1px 0 0 rgba(0, 157, 245, 0.6), 0 0 0.125rem rgba(82, 168, 236, 0.6);
}
.contactform input[type=text].wpcf7-not-valid,
.contactform input[type=email].wpcf7-not-valid,
.contactform input[type=tel].wpcf7-not-valid,
.contactform textarea.wpcf7-not-valid,
.contactform select.wpcf7-not-valid {
  box-shadow: inset 1px 1px 0 0 #dc3232, inset -1px -1px 0 0 #dc3232;
}
.contactform .checkbox-motive {
  border: none;
}
.contactform .checkbox-motive label {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  position: relative;
  margin-bottom: 1em;
  cursor: pointer;
  line-height: 1em;
}
.contactform .checkbox-motive label::before {
  width: 1.2em;
  height: 1.2em;
  border-radius: 3px;
  border: 2px solid #ccc;
  content: "";
}
.contactform .checkbox-motive label:has(:checked)::after {
  position: absolute;
  top: 0.4rem;
  left: 0.7rem;
  transform: rotate(45deg);
  width: 0.8rem;
  height: 1.2rem;
  border: solid var(--color-basegreen);
  border-width: 0 3px 3px 0;
  content: "";
}
.contactform .checkbox-motive span.wpcf7-list-item-label {
  flex: 1;
}
.contactform .checkbox-motive .c-form-input {
  padding: 1em 0;
}
.contactform .checkbox-motive input {
  display: none;
}
.contactform .radio-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 2em;
  border: none;
}
.contactform .radio-1 label {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  cursor: pointer;
}
.contactform .radio-1 label::before,
.contactform .radio-1 label:has(:checked)::after {
  border-radius: 50%;
  content: "";
}
.contactform .radio-1 label::before {
  width: 1.2em;
  height: 1.2em;
  background-color: #fff;
  border: 2px solid #ccc;
}
.contactform .radio-1 label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: 0.6em;
  transform: translate(-50%, -50%);
  width: 0.6em;
  height: 0.6em;
  background-color: var(--color-basegreen);
}
.contactform .radio-1 input {
  display: none;
}
.contactform .wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-bottom: 1em;
}
.contactform .wpcf7-not-valid-tip {
  font-size: 0.8em;
  position: relative;
  padding-left: 2.4rem;
  margin-top: 0.2rem;
}
.contactform .wpcf7-not-valid-tip::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(assets/img/icons/icon-caution.svg);
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
}

.wpcf7 form .contactform .wpcf7-response-output {
  margin: 0;
  font-size: 80%;
}

.bc-order-price {
  color: var(--color-basegreen);
  font-weight: bold;
}

.img_sbc_box {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.img_sbc_box .img_sbc {
  position: relative;
  margin: 4px;
  padding: 20px;
  border: 1px solid #27D9CA;
  border-radius: 100vh;
  background-color: #fff;
}
.img_sbc_box .img_sbc img {
  border-radius: 100vh;
  box-sizing: border-box;
}
.img_sbc_box .img_sbc span {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 1.4rem;
  color: #27D9CA;
  line-height: 1em;
  text-align: center;
}

.bcqa-free dl {
  padding: 1rem;
  margin-bottom: 3rem;
  background-color: #fff;
  border: 3px solid var(--color-basegreen);
  border-radius: 1rem;
}

.header {
  height: 60px;
}
.header p {
  margin: 0;
}

.header a.button {
  height: 50px;
}
@media screen and (max-width: 480px) {
  .header a.button {
    display: none;
  }
}

.openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #2f9734;
  width: 55%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.sp-nav {
  opacity: 0;
  visibility: hidden;
  background-color: #f7f8f9;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 1rem 7vw;
  transition: all ease 0.3s;
}

.sp-nav.active {
  opacity: 1;
  visibility: visible;
}

.sp-nav .sub-menu {
  display: none;
  padding-left: 1em;
}

.sp-nav .menu-item-has-children.open > .sub-menu {
  display: block;
}

#sp-conf {
  display: none;
}

.sp-nav .sp-navinfo {
  display: block;
  color: #fff;
  margin-bottom: 8rem;
}
.sp-nav a.gnav--link {
  display: block;
  font-weight: 500;
  padding: 1.5rem 2rem 1.5rem 6rem;
  position: relative;
  border-bottom: 1px solid #aaa;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center left;
}
.sp-nav .navservice a.gnav--link {
  background-image: url(assets/img/headermenu/company_icon08.svg);
}
.sp-nav .navdevelop a.gnav--link {
  background-image: url(assets/img/headermenu/company_icon09.svg);
}
.sp-nav .navproduct a.gnav--link {
  background-image: url(assets/img/headermenu/company_icon10.svg);
}
.sp-nav .navcompany a.gnav--link {
  background-image: url(assets/img/headermenu/company_icon02.svg);
}
.sp-nav .navrecruit a.gnav--link {
  background-image: url(assets/img/headermenu/company_icon11.svg);
}
.sp-nav .menu-item-has-children a.gnav--link::before, .sp-nav .menu-item-has-children a.gnav--link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #aaa;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 1s;
}
.sp-nav .menu-item-has-children a.gnav--link::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
.sp-nav .menu-item-has-children.open a.gnav--link::before {
  opacity: 0;
}
.sp-nav .menu-item-has-children.open a.gnav--link::after {
  transform: translateY(-50%) rotate(180deg);
}
.sp-nav .menu-item-has-children .head_sub_nav--wrap {
  display: none;
  max-height: max-content;
  opacity: 0;
  position: relative;
  padding: 1rem 2rem;
}
.sp-nav .menu-item-has-children.open .head_sub_nav--wrap {
  opacity: 1;
}
.sp-nav .nav-img {
  display: none;
}
.sp-nav .head_sub_nav--wrap::before {
  display: none;
}
.sp-nav #menu-gnav-1 h3 {
  display: none;
}
.sp-nav ul#menu-gnav-1 > li {
  position: relative;
}
.sp-nav .sp-navinfo-area {
  margin: 2rem auto;
}
.sp-nav .sp-navinfo-area > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
}
.sp-nav .sp-navinfo-area > div a {
  width: 100%;
  height: 100px;
  max-height: 10rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
}
.sp-nav .sp-navinfo-area .sp-navinfo-area-rec a {
  background-image: linear-gradient(45deg, #3c3, var(--color-basegreen));
}
.sp-nav .sp-navinfo-area .sp-navinfo-area-conf a {
  background-image: linear-gradient(45deg, #333, var(--color-baseblack));
}

.pc-nav {
  display: none;
}

.openbtn {
  display: block;
}

@media screen and (min-width: 961px) {
  .pc-nav {
    display: block;
  }
  .openbtn, .sp-nav, .sp-nav.active {
    display: none;
  }
}