@charset "UTF-8";

/***  base ***/
:root {
  --font: "Noto Sans JP", sans-serif;
  --oswald: "Oswald", sans-serif;

  --content: 1080px;

  --text: #333;
  --red: rgb(165, 0, 0);
  --orange: rgb(209, 84, 0);
  --muted: #666;
  --lightgray: #f7f7f7;
  --line: #eaeaea;
  --blue: #006cb4;
  --middleblue: #31598E;
  --bg: #fff;
}

/***  color ***/
/*** font ***/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/*------------------------------------------------------------------------------
		CSS reset
------------------------------------------------------------------------------*/
html {
  font-family: var(--font);
  font-size: 62.5%;
  color: #333333;
  /* 10px */
}

body {
  margin: 0;
  color: #333333;
  font-size: 1.6rem;
}

* {
  box-sizing: border-box;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0 0 1em;
  padding: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #333333;
  text-decoration: none;
}

a:link,
a:visited {
  color: #333333;
  text-decoration: none;
}

input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.outerBlock {
  overflow: hidden;
}

.innerBlock {
  margin: 0 auto;
  position: relative;
}

#wrapper {
  position: relative;
  padding: 0;
}

.pc {
  display: block !important;
}

.pcIb {
  display: inline-block !important;
}

.sp {
  display: none !important;
}

.spIb {
  display: none !important;
}

@media screen and (max-width: 768px) {
  body {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-size: 1.3rem;
  }

  .outerBlock {
    min-width: 375px;
  }

  .innerBlock {
    width: auto;
  }

  #wrapper {
    min-width: 375px;
    position: relative;
    overflow: hidden;
  }

  img {
    width: 100%;
  }

  input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }

  input,
  select,
  textarea {
    font-size: 1.6rem;
  }

  .pc {
    display: none !important;
  }

  .pcIb {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .spIb {
    display: inline-block !important;
  }
}

/*------------------------------------------------------------------------------
    reset
------------------------------------------------------------------------------*/
p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}

a {
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--blue);
}

.innerBlock {
  padding: 0 100px;
}

@media screen and (max-width: 768px) {
  .innerBlock {
    padding: 0 15px;
  }
}

button {
  outline: none;
}


/*------------------------------------------------------------------------------
	common
------------------------------------------------------------------------------*/
h1,
h2 {
  line-height: 1;
}

h2 {
  font-size: 4rem;
  letter-spacing: 0.05em;
  margin: 0 auto 1em;
}

h2 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 1.6rem;
  color: var(--blue);
  letter-spacing: normal;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
    text-align: center;
  }
}

h3,
h4 {
  font-weight: bold;
  line-height: 1.5;
}

h3 {
  font-size: 1.8rem;
  color: var(--blue);
  margin: 60px auto 40px;
  padding: 15px 0 0;
  border-top: solid 1px var(--blue);
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.6rem;
    margin: 40px auto 30px;
  }
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5%;
  }
}

a.moreBtn .arrowBtn {
  margin-left: 1em;
}

.arrowBtn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 80px;
  height: 80px;
  border: solid 1px var(--bg);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.arrowBtn::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--bg);
  position: absolute;
  left: 36%;
  top: 49%;
}

.arrowBtn::after {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 1px var(--bg);
  border-right: solid 1px var(--bg);
  position: absolute;
  top: 40%;
  left: 40%;
  transform: rotate(45deg);
}

.arrowBtn.blue {
  border: solid 1px var(--blue);
}

.arrowBtn.blue::before {
  background: var(--blue);
}

.arrowBtn.blue::after {
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

.moreBtnMove {
  margin: 1em;
  padding: 1em 4em;
  font-size: 1.2rem;
  line-height: 1;
  color: #333333;
  border: solid 1px var(--bg);
  border-radius: 40px;
  position: relative;
}

.moreBtnMove::before {
  content: '';
  width: 35px;
  height: 1px;
  background: var(--bg);
  position: absolute;
  right: -10%;
  top: 50%;
  transition: all 0.3s;
}

.moreBtnMove::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px var(--bg);
  border-right: solid 1px var(--bg);
  position: absolute;
  top: 38%;
  right: -10%;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.moreBtnMove.blue {
  border: solid 1px var(--blue);
}

.moreBtnMove.blue::before {
  background: var(--blue);
}

.moreBtnMove.blue::after {
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

.moreBtnMove:hover::before,
.moreBtnMove:hover::after {
  right: -22%;
}

.center {
  text-align: center;
}

/*object-fit*/
.ofimg {
  object-fit: cover;
  object-position: center;
}

/* フェードイン */
.fadein {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.2s;
  -ms-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-name: fadeinAnime;
  -ms-animation-name: fadeinAnime;
  animation-name: fadeinAnime;
  visibility: visible !important;
}

@-webkit-keyframes fadeinAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeinAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeup {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  -ms-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fuwatAnime;
  -ms-animation-name: fuwatAnime;
  animation-name: fuwatAnime;
  visibility: visible !important;
}

@-webkit-keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/*------------------------------------------------------------------------------
		header
------------------------------------------------------------------------------*/
header {
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

header h1,
header .h1 {
  width: 137px;
  min-height: 0%;
}

header h1 a:hover img,
header .h1 a:hover img {
  opacity: 0.7;
}

header nav {
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 0%;
}

header nav ul {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul br.pc {
  display: none !important;
}

header nav>ul>li {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  list-style: none;
  letter-spacing: 0;
  padding: 20px;
  text-align: left;
}

@media screen and (max-width: 1149px) {
  header nav>ul>li {
    font-size: 1.2rem;
    padding: 0 10px;
  }

  header nav>ul>li:last-child {
    padding-right: 20px;
  }
}

header nav>ul>li>a {
  display: block;
  text-decoration: none;
  position: relative;
}

header nav>ul>li>a br {
  display: none;
}

@media screen and (max-width: 1149px) {
  header nav>ul>li>a {
    line-height: 1.5em;
  }

  header nav>ul>li>a br {
    display: block;
  }
}

@media screen and (max-width: 899px) {
  header nav>ul>li>a br {
    display: none;
  }
}

header nav>ul>li>a:hover:before {
  display: inline-block;
  position: absolute;
  content: '';
  bottom: -5px;
  left: 50%;
  width: 30px;
  height: 2px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: var(--blue);
}

header nav>ul>li.sub>ul {
  display: none;
  width: 230px;
  position: absolute;
  top: 80px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

header nav>ul>li.sub>ul li:last-child {
  border-bottom: none;
}

header nav>ul>li.sub>ul:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 15%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
}

header nav>ul>li.sub li>a {
  padding: 16px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}

header .contact {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

header .contact a {
  width: 130px;
  background: #4c98ca;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 100px;
  text-align: center;
}

header .contact a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1149px) {
  header .contact a {
    width: 110px;
    font-size: 1.2rem;
  }
}

header .estimate {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

header .estimate a {
  width: 130px;
  background: var(--blue);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 100px;
  text-align: center;
}

header .estimate a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1149px) {
  header .estimate a {
    width: 110px;
    font-size: 1.2rem;
  }
}

header .lang {
  margin-left: 34px;
  white-space: nowrap;
}

header .lang img {
  width: 30px;
  height: auto;
  margin-right: 1em;
  vertical-align: middle;
}

@media screen and (max-width: 1149px) {
  header .lang {
    font-size: 1.4rem;
    margin-left: 15px;
  }

  header .lang img {
    width: 20px;
  }
}

header .hamburger {
  display: none;
}

header .nav_btn,
header .nav_bg {
  display: none;
}

@media screen and (max-width: 899px) {
  header {
    padding: 0 5%;
    height: 60px;
    /* bager menu */
  }

  header h1,
  header .h1 {
    width: 100px;
  }

  header nav ul#navi {
    transition: all 0.6s;
    overflow-y: auto;
    padding: 60px 4% 0;
    width: 100%;
    height: 100vh;
    z-index: 200;
    top: 0;
    margin-left: -2%;
    right: -100%;
    background-color: #ffffff;
    position: fixed;
    display: block;
  }

  header nav ul#navi li {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: inherit;
    margin: 0 auto 0.5em;
    padding: 0.5em;
    text-align: left;
  }

  header nav ul#navi li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  header nav ul#navi li.sp {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  header nav ul#navi li.sp .contact,
  header nav ul#navi li.sp .estimate {
    width: 50%;
  }

  header nav ul#navi li.sp .contact a,
  header nav ul#navi li.sp .estimate a {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1;
    padding: 2em 0;
  }

  header nav ul#navi:before {
    content: "";
    position: inherit;
    top: auto;
    left: auto;
    margin-left: 0;
    border: none;
    border-bottom: none;
  }

  header nav .contact.pc,
  header nav .estimate.pc,
  header nav .lang.pc {
    display: none !important;
  }

  header nav>ul>li.sub>ul {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
    top: auto;
    box-shadow: none;
  }

  header nav>ul>li.sub>ul li {
    margin: 0 auto !important;
    padding: 0 !important;
  }

  header nav>ul>li.sub>ul li:first-child {
    margin-top: 0.5em !important;
  }

  header nav>ul>li.sub>ul li a {
    width: 100%;
    padding: 0.5em 0 !important;
    line-height: 1.5;
    color: #888;
  }

  header nav>ul>li.sub>ul li a::before {
    content: '- ';
    left: 50px;
  }

  header nav>ul>li.sub>ul li:last-child a {
    padding-bottom: 0 !important;
  }

  header .nav_btn,
  header .nav_bg {
    display: block;
  }

  header .nav_btn {
    width: 50px;
    height: 50px;
    z-index: 300;
    position: absolute;
    right: 20px;
    background: var(--blue);
    margin-left: 10px;
    padding: 10px;
    border-radius: 50%;
  }

  header .nav_btn .hamburger_line {
    transition: all 0.6s;
    width: 26px;
    height: 2px;
    left: 11px;
    background-color: #ffffff;
    position: absolute;
  }

  header .nav_btn .hamburger_line.hamburger_line1 {
    top: 14px;
  }

  header .nav_btn .hamburger_line.hamburger_line2 {
    top: 24px;
  }

  header .nav_btn .hamburger_line.hamburger_line3 {
    top: 34px;
  }

  header .nav_bg {
    opacity: 0;
    transition: all 0.6s;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: #000000;
    cursor: pointer;
    position: fixed;
  }

  /* 表示された時用のCSS */
  .nav_open nav {
    position: absolute;
  }

  .nav_open nav ul#navi {
    right: 0;
  }

  .nav_open .nav_bg {
    opacity: 0.8;
    visibility: visible;
  }

  .nav_open .nav_btn .hamburger_line.hamburger_line1 {
    transform: rotate(45deg);
    top: 24px;
  }

  .nav_open .nav_btn .hamburger_line.hamburger_line2 {
    width: 0;
    left: 50%;
  }

  .nav_open .nav_btn .hamburger_line.hamburger_line3 {
    transform: rotate(-45deg);
    top: 24px;
  }
}

/*------------------------------------------------------------------------------
	footer
------------------------------------------------------------------------------*/
footer {
  margin: 100px auto 0;
}

footer .contactBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .contactBox a {
  width: 50%;
}

footer .contactBox a .contactLink,
footer .contactBox a .estimateLink {
  width: 100%;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

footer .contactBox a .contactLink .ttl,
footer .contactBox a .estimateLink .ttl {
  font-size: 4rem;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
}

footer .contactBox a .contactLink {
  background: #4c98ca;
}

footer .contactBox a .contactLink p {
  margin: 0 1em 0 0;
  display: inline-block;
  vertical-align: middle;
}

footer .contactBox a .estimateLink {
  background: var(--blue);
}

footer .contactBox a .estimateLink p {
  margin: 0 1em 0 0;
  display: inline-block;
  vertical-align: middle;
}

footer .contactBox a:hover .contactLink .arrowBtn,
footer .contactBox a:hover .estimateLink .arrowBtn {
  background: #fff;
}

footer .contactBox a:hover .contactLink .arrowBtn::before,
footer .contactBox a:hover .estimateLink .arrowBtn::before {
  background: var(--blue);
}

footer .contactBox a:hover .contactLink .arrowBtn::after,
footer .contactBox a:hover .estimateLink .arrowBtn::after {
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

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

  footer .contactBox a {
    width: 100%;
  }

  footer .contactBox a .contactLink,
  footer .contactBox a .estimateLink {
    padding: 30px 0;
  }

  footer .contactBox a .ttl {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 15px;
  }
}

footer .footerInfoBox .inner.info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 96px 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

footer .footerInfoBox .inner.info .companyInfo {
  width: 45%;
}

footer .footerInfoBox .inner.info .companyInfo .logo {
  width: 160px;
  height: auto;
}

footer .footerInfoBox .inner.info .companyInfo .companyName {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 1em auto;
}

footer .footerInfoBox .inner.info .companyInfo .companyName .name {
  margin: 0 3em 0 0;
}

footer .footerInfoBox .inner.info .companyInfo .companyName .sns img {
  width: auto;
  height: 30.5px;
}

footer .footerInfoBox .inner.info .companyInfo .companyName .sns img:first-child {
  margin-right: 1em;
}

footer .footerInfoBox .inner.info .companyInfo .address {
  margin-bottom: 1em;
}

footer .footerInfoBox .inner.info .companyInfo .address a {
  color: var(--blue);
  text-decoration: underline;
  background: url("../images/common/icon_map.png") no-repeat center left;
  background-size: 13px;
  padding-left: 1.5em;
}

footer .footerInfoBox .inner.info .companyInfo .address a:hover {
  color: #b2d3e8;
  text-decoration: none;
}

footer .footerInfoBox .inner.info .footerLink {
  width: 45%;
}

footer .footerInfoBox .inner.info .footerLink a:hover {
  color: #999;
}

footer .footerInfoBox .inner.info .footerLink ul {
  display: inline-block;
  vertical-align: top;
  margin-left: 2em;
}

footer .footerInfoBox .inner.info .footerLink ul li {
  margin-bottom: 1em;
}

footer .footerInfoBox .inner.info .footerLink ul li ul {
  display: block;
  margin: 1em 0 0 0;
}

footer .footerInfoBox .inner.info .footerLink ul li ul li {
  padding: 0 0 0 1em;
}

footer .footerInfoBox .inner.info .footerLink ul li ul li::before {
  content: '-';
}

footer .footerInfoBox .inner.info .footerLink ul li .lang img {
  width: 30px;
  height: auto;
  margin-right: 1em;
  display: inline-block;
  vertical-align: middle;
}

footer .footerInfoBox .groupLink {
  background: var(--lightgray);
  padding: 50px 0;
}

footer .footerInfoBox .groupLink .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .footerInfoBox .groupLink .inner .link {
  width: calc(96%/6);
}

footer .footerInfoBox .groupLink .inner .link h4 {
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: solid 1px var(--blue);
  margin: 0 auto 23px;
  padding: 0 0 0.5em;
}

footer .footerInfoBox .groupLink .inner .link p {
  margin-top: 1em;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}

footer .footerInfoBox .groupLink .inner .link:nth-child(3) {
  width: calc(32%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

footer .footerInfoBox .groupLink .inner .link:nth-child(3) h4 {
  width: 100%;
}

footer .footerInfoBox .groupLink .inner .link:nth-child(3) div {
  width: calc(48%);
}

footer .footerInfoBox .groupLink .inner .link:last-child {
  width: calc(32%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer .footerInfoBox .groupLink .inner .link:last-child div {
  padding: 53px 0 0;
}

footer .footerInfoBox .groupLink .inner .link:last-child div:first-child {
  width: 76%;
}

footer .footerInfoBox .groupLink .inner .link:last-child div:last-child {
  width: 22%;
}

footer .footerInfoBox .groupLink .inner .link a:hover {
  opacity: 0.7;
  color: #999;
}

@media screen and (max-width: 768px) {
  footer .footerInfoBox .inner.info {
    display: block;
    padding: 40px 5%;
    text-align: center;
  }

  footer .footerInfoBox .inner.info .companyInfo {
    width: 100%;
  }

  footer .footerInfoBox .inner.info .companyInfo .companyName {
    display: block;
  }

  footer .footerInfoBox .inner.info .companyInfo .companyName .name {
    margin: 0 auto;
  }

  footer .footerInfoBox .inner.info .companyInfo .companyName .sns {
    margin: 20px auto;
  }

  footer .footerInfoBox .inner.info .address {
    text-align: left;
    padding: 0 15%;
  }

  footer .footerInfoBox .inner.info .footerLink {
    display: none;
  }

  footer .footerInfoBox .groupLink .inner {
    flex-wrap: wrap;
  }

  footer .footerInfoBox .groupLink .inner .link {
    width: calc(48%);
  }

  footer .footerInfoBox .groupLink .inner .link h4 {
    margin: 0 auto 15px;
  }

  footer .footerInfoBox .groupLink .inner .link p {
    font-size: 1rem;
  }

  footer .footerInfoBox .groupLink .inner .link:nth-child(3) {
    width: 100%;
    margin-top: 20px;
  }

  footer .footerInfoBox .groupLink .inner .link:nth-child(3) div {
    width: calc(48%);
  }

  footer .footerInfoBox .groupLink .inner .link:last-child {
    width: 100%;
    margin-top: 20px;
  }

  footer .footerInfoBox .groupLink .inner .link:last-child div {
    padding: 0;
  }
}

footer .copy {
  background: var(--blue);
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 1.2rem;
  padding: 50px 0;
}

footer .copy p {
  margin: 0 auto;
  padding: 1em;
  text-align: center;
}

footer .copy .topBtn {
  position: absolute;
  bottom: 10%;
  right: 30px;
}

footer .copy .topBtn a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

footer .copy .topBtn a .arrow {
  position: relative;
  width: 80px;
  height: 80px;
  border: solid 1px #fff;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

footer .copy .topBtn a .arrow::before {
  content: '';
  width: 1px;
  height: 20px;
  background: #fff;
  position: absolute;
  margin-top: -8px;
  left: 49%;
  top: 49%;
}

footer .copy .topBtn a .arrow::after {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 40%;
  left: 40%;
  transform: rotate(-45deg);
}

footer .copy .topBtn a p {
  position: relative;
  padding: 0;
}

footer .copy .topBtn a:hover .arrow {
  background: #fff;
}

footer .copy .topBtn a:hover .arrow::before {
  background: var(--blue);
}

footer .copy .topBtn a:hover .arrow::after {
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

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

  footer .copy p {
    margin: 0 auto 0 0;
    width: 70%;
    text-align: left;
  }

  footer .copy .topBtn {
    bottom: 20%;
  }

  footer .copy .topBtn a .arrow {
    width: 60px;
    height: 60px;
  }

  footer .copy .topBtn a .arrow::after {
    left: 37%;
  }

  footer .copy .topBtn a p {
    text-align: center;
    font-size: 1rem;
    width: 100%;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------------------
  top
------------------------------------------------------------------------------*/
#mv {
  background: url("../images/top/mv_bg.jpg") no-repeat left top;
  height: 85vh;
  margin: 100px auto 0;
  padding: 0 0 0 34px;
  position: relative;
  box-sizing: border-box;
  /* progress bar */
}

#mv .mvTxt {
  margin: 150px 0 0;
  position: absolute;
  z-index: 10;
  color: #fff;
  font-size: 6rem;
  line-height: 1.5;
}

#mv .mvTxt span {
  display: block;
  font-size: 2rem;
}

#mv .mvTxt::after {
  content: url("../images/top/mv_obj.png");
  position: absolute;
  top: 60%;
}

@media screen and (min-width: 769px) {
  #mv .mvTxt .slide-in {
    overflow: hidden;
  }

  #mv .mvTxt .slide-in_inner {
    display: block;
  }

  #mv .mvTxt .rightAnime {
    opacity: 0;
  }

  #mv .mvTxt .slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  #mv .mvTxt .slideAnimeLeftRightLate {
    animation-name: slideTextX100;
    animation-duration: 1.3s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  #mv .mvTxt .slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  #mv .mvTxt .slideAnimeRightLeftLate {
    animation-name: slideTextX-100;
    animation-duration: 1.3s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  #mv .mvTxt .slide-in {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: spTtl;
    -ms-animation-name: spTtl;
    animation-name: spTtl;
    visibility: visible !important;
  }

  #mv .mvTxt .slide-in:last-child {
    animation-delay: 0.3s;
  }

  @-webkit-keyframes spTtl {
    0% {
      opacity: 0;
      -webkit-transform: translateY(60px);
      -ms-transform: translateY(60px);
      transform: translateY(60px);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @keyframes spTtl {
    0% {
      opacity: 0;
      -webkit-transform: translateY(60px);
      -ms-transform: translateY(60px);
      transform: translateY(60px);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }
}

#mv .sliderBox {
  width: 90%;
  margin: 0 0 0 auto;
}

#mv .slide-arrow {
  position: absolute;
  bottom: 16px;
  z-index: 6;
  cursor: pointer;
}

#mv .slide-arrow.prev-arrow {
  right: 195px;
}

#mv .slide-arrow.next-arrow {
  right: 15px;
}

#mv .progressBarBox {
  width: 250px;
  position: absolute;
  bottom: 5vh;
  right: 0;
  background: var(--blue);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

#mv .progressBarBox .nowcnt,
#mv .progressBarBox .allcnt {
  width: 20%;
  text-align: center;
  color: #fff;
}

#mv .progressBarBox .sliderProgress {
  width: 50%;
  height: 1px;
  background: var(--blue);
  margin: 0 auto;
}

#mv .progressBarBox .sliderProgress .progress {
  width: 0%;
  height: 1px;
  background: #fff;
}

@media screen and (max-width: 1149px) {
  #mv {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 768px) {
  #mv {
    width: 100%;
    padding: 0 0 0 10%;
    height: 80vh;
  }

  #mv .mvTxt {
    margin: 30px 0 0;
    font-size: 3.2rem;
    line-height: 1.3;
  }

  #mv .mvTxt span {
    margin-top: 20px;
    font-size: 1.8rem;
  }

  #mv .mvTxt::after {
    content: '';
    background: url("../images/top/mv_obj.png") no-repeat center / cover;
    width: 200px;
    height: 200px;
    top: 60%;
    left: -50px;
  }

  #mv .slide-arrow {
    width: auto;
  }

  #mv .progressBarBox {
    bottom: 10vh;
  }
}

.slick-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .slick-slide img {
    height: 70vh;
  }
}

#top-about {
  background: url("../images/top/about_bg.jpg") no-repeat center / cover;
  margin: 100px auto 300px;
  padding: 115px 0 200px;
  position: relative;
}

#top-about::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#top-about .inner.aboutWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

#top-about .inner.aboutWrap .txt {
  color: #fff;
}

#top-about .inner.aboutWrap .txt h2 {
  color: #fff;
}

#top-about .inner.aboutWrap .txt h2 span {
  color: #fff;
}

#top-about .inner.aboutWrap .txt p {
  font-size: 1.4rem;
}

#top-about .inner.aboutWrap a.moreBtn {
  color: #fff;
}

#top-about .inner.aboutWrap a.moreBtn:hover .arrowBtn {
  background: #fff;
}

#top-about .inner.aboutWrap a.moreBtn:hover .arrowBtn::before {
  background: var(--blue);
}

#top-about .inner.aboutWrap a.moreBtn:hover .arrowBtn::after {
  border-top: solid 2px var(--blue);
  border-right: solid 2px var(--blue);
}

#top-about .contentsBox {
  width: 1080px;
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translate(-50%) !important;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}

#top-about .contentsBox .contents {
  width: calc(100%/3);
  height: 272px;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: solid 1px #b2d3e8;
  position: relative;
}

#top-about .contentsBox .contents:first-child,
#top-about .contentsBox .contents:nth-child(2) {
  border-right: none;
}

#top-about .contentsBox .contents .nameEn {
  font-size: 1.4rem;
  line-height: 1;
  position: absolute;
  left: 20px;
}

#top-about .contentsBox .contents img {
  width: auto;
  height: 60px;
  margin: 3rem auto 0;
}

#top-about .contentsBox .contents h3 {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 3rem auto;
  padding: 0;
  border-top: none;
}

#top-about .contentsBox .contents.activities.eng .moreBtnMove {
  margin-top: -6px;
}

@media screen and (max-width: 768px) {
  #top-about {
    margin: 50px auto 870px;
    padding: 60px 0 100px;
  }

  #top-about .inner.aboutWrap {
    display: block;
    text-align: center;
  }

  #top-about .inner.aboutWrap .txt p {
    text-align: left;
  }

  #top-about .inner.aboutWrap a.moreBtn {
    margin: 0 auto;
  }

  #top-about .contentsBox {
    width: 100%;
    height: auto;
    margin: 50px auto 0;
    display: block;
  }

  #top-about .contentsBox .contents {
    width: 90%;
    margin: 0 auto;
  }

  #top-about .contentsBox .contents:first-child,
  #top-about .contentsBox .contents:nth-child(2) {
    border-right: solid 1px #b2d3e8;
    border-bottom: none;
  }

  #top-about .contentsBox .contents.activities.eng .moreBtnMove {
    margin-top: 0;
  }
}

#top-service {
  background: url("../images/top/service_bg.jpg") no-repeat top right / contain;
}

#top-service .inner {
  padding: 130px 0;
}

#top-service .inner .contents {
  width: 720px;
  margin: 0 auto 0 0;
  background: #fff;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
}

#top-service .inner .contents a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top-service .inner .contents a .txt {
  width: 90%;
  padding: 80px 95px;
  border-right: solid 1px #eaeaea;
}

#top-service .inner .contents a .arrowWrap {
  padding: 25px;
}

#top-service .inner .contents a .arrowWrap .arrowBtn {
  width: 40px;
  height: 40px;
}

#top-service .inner .contents a .arrowWrap .arrowBtn::before {
  width: 15px;
  height: 1px;
  left: 30%;
  top: 50%;
}

#top-service .inner .contents a .arrowWrap .arrowBtn::after {
  width: 10px;
  height: 10px;
  top: 38%;
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

#top-service .inner .contents a:hover {
  background: var(--blue);
}

#top-service .inner .contents a:hover h2 {
  color: #fff;
}

#top-service .inner .contents a:hover h2 span {
  color: #fff;
}

#top-service .inner .contents a:hover .txt {
  color: #fff;
}

#top-service .inner .contents a:hover .arrowWrap .arrowBtn {
  border: solid 1px #fff;
}

#top-service .inner .contents a:hover .arrowWrap .arrowBtn::before {
  background: #fff;
}

#top-service .inner .contents a:hover .arrowWrap .arrowBtn::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

@media screen and (max-width: 768px) {
  #top-service .inner {
    padding: 200px 0 70px;
  }

  #top-service .inner .contents {
    width: 90%;
    margin: 0 auto;
  }

  #top-service .inner .contents a {
    display: block;
  }

  #top-service .inner .contents a .txt {
    width: 100%;
    padding: 30px 30px 0;
    border-right: none;
  }

  #top-service .inner .contents a .txt h2 {
    margin-bottom: 30px;
  }

  #top-service .inner .contents a .arrowWrap {
    padding: 10px;
    text-align: right;
  }
}

#top-news {
  background: url("../images/top/news_bg.jpg") no-repeat center center / cover;
  margin: 100px auto 560px;
  padding: 100px 0;
  position: relative;
}

#top-news::after {
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#top-news .inner {
  position: relative;
  z-index: 1;
}

#top-news .inner h2 {
  text-align: center;
  position: absolute;
  z-index: 2;
  top: -20px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}

#top-news .inner .contents {
  width: 1080px;
  padding: 120px 50px 50px;
  background: var(--lightgray);
  text-align: center;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}

#top-news .inner .contents .newsLink a {
  display: flex;
  align-items: center;
  padding: 30px;
  border-bottom: solid 1px var(--line);
  line-height: 1;
  position: relative;
}

#top-news .inner .contents .newsLink a .date {
  font-size: 1.2rem;
}

#top-news .inner .contents .newsLink a .category {
  width: 120px;
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin: 0 20px;
  padding: 0.5em 1em;
  border-radius: 30px;
}

#top-news .inner .contents .newsLink a .ttl {
  width: 635px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
}

#top-news .inner .contents .newsLink a .arrowBtn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 30px;
  transition: all 0.3s;
}

#top-news .inner .contents .newsLink a .arrowBtn::before {
  width: 15px;
  height: 1px;
  left: 30%;
  top: 50%;
}

#top-news .inner .contents .newsLink a .arrowBtn::after {
  width: 10px;
  height: 10px;
  top: 38%;
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

#top-news .inner .contents .newsLink a:hover .arrowBtn {
  right: 10px;
}

#top-news .inner .contents a.moreBtn {
  display: block;
  margin-top: 50px;
}

#top-news .inner .contents a.moreBtn:hover .arrowBtn {
  background: var(--blue);
}

#top-news .inner .contents a.moreBtn:hover .arrowBtn::before {
  background: #fff;
}

#top-news .inner .contents a.moreBtn:hover .arrowBtn::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

@media screen and (max-width: 768px) {
  #top-news {
    margin: 0 auto 440px;
  }

  #top-news .inner {
    padding: 0;
  }

  #top-news .inner .contents {
    width: 90%;
    margin: 0 auto;
    padding: 60px 20px 20px;
  }

  #top-news .inner .contents .newsLink a {
    flex-wrap: wrap;
    padding: 20px;
  }

  #top-news .inner .contents .newsLink a .date {
    font-size: 1.2rem;
  }

  #top-news .inner .contents .newsLink a .category {
    width: 100px;
    font-size: 1.2rem;
  }

  #top-news .inner .contents .newsLink a .ttl {
    width: 100%;
    line-height: 1.5;
    padding: 10px 0 0;
    font-weight: 1.6rem;
  }

  #top-news .inner .contents .newsLink a .arrowBtn {
    display: none;
  }

  #top-news .inner .contents a.moreBtn {
    margin-top: 20px;
  }
}

#top-recruit {
  background: url("../images/top/recruit_bg.jpg") no-repeat top left / contain;
}

#top-recruit .inner {
  padding: 130px 0;
}

#top-recruit .inner .contents {
  width: 720px;
  margin: 0 0 0 auto;
  background: #fff;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
}

#top-recruit .inner .contents a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top-recruit .inner .contents a .txt {
  width: 90%;
  padding: 80px 95px;
  border-right: solid 1px #eaeaea;
}

#top-recruit .inner .contents a .arrowWrap {
  padding: 25px;
}

#top-recruit .inner .contents a .arrowWrap .arrowBtn {
  width: 40px;
  height: 40px;
}

#top-recruit .inner .contents a .arrowWrap .arrowBtn::before {
  width: 15px;
  height: 1px;
  left: 30%;
  top: 50%;
}

#top-recruit .inner .contents a .arrowWrap .arrowBtn::after {
  width: 10px;
  height: 10px;
  top: 38%;
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

#top-recruit .inner .contents a:hover {
  background: var(--blue);
}

#top-recruit .inner .contents a:hover h2 {
  color: #fff;
}

#top-recruit .inner .contents a:hover h2 span {
  color: #fff;
}

#top-recruit .inner .contents a:hover .txt {
  color: #fff;
}

#top-recruit .inner .contents a:hover .arrowWrap .arrowBtn {
  border: solid 1px #fff;
}

#top-recruit .inner .contents a:hover .arrowWrap .arrowBtn::before {
  background: #fff;
}

#top-recruit .inner .contents a:hover .arrowWrap .arrowBtn::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

@media screen and (max-width: 768px) {
  #top-recruit .inner {
    padding: 200px 0 0;
  }

  #top-recruit .inner .contents {
    width: 90%;
    margin: 0 auto;
  }

  #top-recruit .inner .contents a {
    display: block;
  }

  #top-recruit .inner .contents a .txt {
    width: 100%;
    padding: 30px 30px 0;
    border-right: none;
  }

  #top-recruit .inner .contents a .txt h2 {
    margin-bottom: 30px;
  }

  #top-recruit .inner .contents a .arrowWrap {
    padding: 10px;
    text-align: right;
  }
}

/*------------------------------------------------------------------------------
		parts
------------------------------------------------------------------------------*/
.headTtl {
  height: 300px;
  margin: 100px auto 60px;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.headTtl::after {
  content: '';
  background-color: rgba(0, 108, 180, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.headTtl h1 {
  color: #fff;
  font-size: 5rem;
  position: relative;
  letter-spacing: 0.1em;
  z-index: 5;
}

.headTtl h1 span {
  display: block;
  margin-top: 30px;
  font-size: 2rem;
}

@media screen and (max-width: 1149px) {
  .headTtl {
    margin: 60px auto;
  }
}

@media screen and (max-width: 768px) {
  .headTtl {
    height: auto;
    margin: 60px auto 40px;
    padding: 50px 0;
  }

  .headTtl h1 {
    font-size: 4rem;
  }

  .headTtl h1 span {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

.headTtl--about {
  background: url("../images/about/header.jpg") no-repeat center / cover;
}

@media screen and (max-width: 768px) {
  .headTtl--about {
    margin-bottom: 10px;
  }
}

.headTtl--company {
  background: url("../images/company/header.jpg") no-repeat center / cover;
}

.headTtl--active {
  background: url("../images/active/header.jpg") no-repeat center 30% / cover;
}

@media screen and (max-width: 768px) {
  .headTtl--active {
    background-size: 140%;
  }
}

.headTtl--contact {
  background: url("../images/contact/header.jpg") no-repeat center / cover;
}

.headTtl--corrective {
  background: url("../images/corrective/header.jpg") no-repeat center / cover;
}

.headTtl--estimate {
  background: url("../images/estimate/header.jpg") no-repeat center / cover;
}

.headTtl--jet {
  background: url("../images/jet/header.jpg") no-repeat center top / cover;
}

@media screen and (max-width: 768px) {
  .headTtl--jet {
    background-size: 150%;
  }
}

.headTtl--tdd {
  background: url("../images/tdd/header.jpg") no-repeat center / cover;
}

.headTtl--service {
  background: url("../images/service/header.jpg") no-repeat center / cover;
}

.headTtl--om {
  background: url("../images/om/header.jpg") no-repeat center / cover;
}

.headTtl--test {
  background: url("../images/test/header.jpg") no-repeat center / cover;
}

.headTtl--news {
  background: url("../images/news/header.jpg") no-repeat center / cover;
}

.headTtl--privacy {
  background: url("../images/privacy/header.jpg") no-repeat center / cover;
}

.headTtl--recruit {
  background: url("../images/recruit/header.jpg") no-repeat center / cover;
}

.headTtl--repowering {
  background: url("../images/rr/header.jpg") no-repeat center / cover;
}

@media screen and (max-width: 768px) {
  .headTtl--repowering {
    background: url("../images/rr/header_sp.jpg") no-repeat center top / cover;
  }
}

/*------------------------------------------------------------------------------
	common
------------------------------------------------------------------------------*/
.main-content {
  max-width: 1080px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .main-content {
    max-width: 100%;
    margin: 0 1em;
  }
}

/*------------------------------------------------------------------------------
  about
------------------------------------------------------------------------------*/
#aboutTxt {
  background: url("../images/about/ttl_bg.png") no-repeat 16% top;
  padding: 50px 0 0;
}

#aboutTxt .inner h2 {
  line-height: 1.5;
}

#aboutTxt .aboutImg {
  display: block;
  margin: 100px 0 100px auto;
}

@media screen and (max-width: 768px) {
  #aboutTxt {
    background: url("../images/about/ttl_bg.png") no-repeat 10% 10% / 35%;
    padding: 30px 0 0;
  }

  #aboutTxt .aboutImg {
    margin: 50px 0 50px auto;
  }
}

#achievement {
  background: var(--lightgray);
  padding: 100px 0;
}

#achievement .inner .imgBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto;
}

#achievement .inner .imgBox img:first-child {
  margin-right: 45px;
}

#achievement .inner h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
  padding: 0;
  color: #333333;
  border-top: none;
}

#achievement .inner .center .data {
  text-align: right;
}

@media screen and (max-width: 768px) {
  #achievement {
    padding: 50px 0;
  }

  #achievement .inner .imgBox {
    margin: 30px auto;
    justify-content: space-between;
  }

  #achievement .inner .imgBox img {
    width: 48%;
  }

  #achievement .inner .imgBox img:first-child {
    margin-right: auto;
  }

  #achievement .inner h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

#about-link {
  width: 1080px;
  margin: 100px auto;
  padding: 40px;
  color: #fff;
  background: url("../images/about/activities_bg.jpg") no-repeat center 70% / cover;
  position: relative;
}

#about-link::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#about-link .contents {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

#about-link .contents h3 {
  font-size: 2.4rem;
  margin: 15px auto;
  color: #fff;
  padding: 0;
  border-top: none;
}

#about-link .contents .nameEn {
  line-height: 1;
}

#about-link .contents a {
  color: #fff;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  #about-link {
    width: 90%;
    margin: 50px auto;
    padding: 30px 0;
  }

  #about-link .contents img {
    width: auto;
  }

  #about-link .contents a {
    margin-top: 15px;
  }
}

#merumaga {
  background: url("../images/about/marumaga_bg.jpg") no-repeat center 70% / cover;
  color: #fff;
  width: 1080px;
  height: 310px;
  margin: 100px auto;
  padding: 40px;
  position: relative;
}

#merumaga::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#merumaga .contents {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

#merumaga .contents h3 {
  font-size: 2.4rem;
  margin: 15px auto;
  color: #fff;
  padding: 0;
  border-top: none;
}

#merumaga .contents .nameEn {
  line-height: 1;
}

#merumaga .contents a {
  color: #fff;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  #merumaga {
    width: 90%;
    margin: 50px auto;
    padding: 30px 0;
  }

  #merumaga .contents img {
    width: auto;
  }

  #merumaga .contents a {
    margin-top: 15px;
  }
}

/*------------------------------------------------------------------------------
  active
------------------------------------------------------------------------------*/
.headTtl--active {
  margin: 100px auto 120px;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.headTtl--active::after {
  content: '';
  background-color: rgba(0, 108, 180, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.headTtl--active h1 {
  color: #fff;
  font-size: 5rem;
  position: relative;
  letter-spacing: 0.1em;
  z-index: 5;
}

.headTtl--active h1 span {
  display: block;
  margin-top: 30px;
  font-size: 2rem;
}

@media screen and (max-width: 1149px) {
  .headTtl--active {
    margin: 60px auto 100px;
  }
}

@media screen and (max-width: 768px) {
  .headTtl--active {
    margin: 60px auto 50px;
    padding: 50px 0;
  }

  .headTtl--active h1 {
    font-size: 4rem;
  }

  .headTtl--active h1 span {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

#support {
  padding: 0 0 100px;
}

#support .inner .imgBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto 0;
}

#support .inner .imgBox img {
  width: 48%;
}

@media screen and (max-width: 768px) {
  #support {
    padding: 0 0 50px;
  }

  #support .inner .imgBox {
    display: block;
    margin: 20px auto 0;
  }

  #support .inner .imgBox img {
    width: 100%;
  }

  #support .inner .imgBox img:first-child {
    margin-bottom: 10px;
  }
}

#sdgs {
  background: var(--lightgray);
  padding: 100px 0;
}

#sdgs .inner .img01 {
  margin-top: 40px;
}

#sdgs .inner .imgBox {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto;
}

#sdgs .inner .imgBox div {
  width: calc(75%/3);
}

#sdgs .inner .imgBox div p {
  margin: 15px auto 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--blue);
}

@media screen and (max-width: 768px) {
  #sdgs {
    padding: 50px 0;
  }

  #sdgs .inner .img01 {
    margin-top: 20px;
  }

  #sdgs .inner p {
    text-align: left;
  }

  #sdgs .inner .imgBox {
    width: 100%;
    display: block;
    margin: 20px auto;
  }

  #sdgs .inner .imgBox div {
    width: 60%;
    margin: 0 auto 20px;
  }
}

.page-id-2272 footer,
.page-id-11 footer {
  margin-top: 0;
}

/*------------------------------------------------------------------------------
  company
------------------------------------------------------------------------------*/
#company-message {
  padding: 0 0 100px;
}

@media screen and (max-width: 768px) {
  #company-message {
    padding: 0 0 80px;
  }
}

.company-message__content {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.company-message__photo {
  max-width: 180px;
}

.company-message__photo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.company-message__text {
  width: calc(100% - 220px);
}

.company-message__text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.company-message__text p:last-child {
  margin-bottom: 0;
}

.company-message__name {
  margin-top: 20px;
}

.company-message__name p {
  text-align: right;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .company-message__content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .company-message__photo {
    margin: auto;
  }

  .company-message__text {
    width: auto;
  }

  .company-message__text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .company-message__name {
    margin-top: 15px;
  }

  .company-message__name p {
    line-height: 1.4;
  }
}

.company-profile table {
  max-width: 100%;
}

.company-profile table tr {
  border-bottom: 2px solid var(--blue);
}

.company-profile table tr th {
  color: var(--blue);
  text-align: left;
  vertical-align: middle;
  width: 20%;
  padding: 20px 0;
}

.company-profile table tr td {
  text-align: left;
  line-height: 1.8;
  vertical-align: middle;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .company-profile table tr {
    display: block;
  }

  .company-profile table tr th {
    display: block;
    width: 100%;
    padding: 15px 0 0;
  }

  .company-profile table tr td {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
}

.company-base {
  max-width: 100%;
  margin: 100px auto 0;
}

.company-base dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.company-base dl dt {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
  width: 220px;
}

.company-base dl dd {
  font-size: 16px;
  line-height: 1.6;
  width: calc(100% - 240px);
}

.company-base dl dd iframe {
  display: block;
  width: 100%;
  height: 360px;
  margin-top: 20px;
}

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

  .company-base dl {
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 40px;
  }

  .company-base dl dt {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--blue);
    width: auto;
  }

  .company-base dl dd {
    font-size: 14px;
    width: auto;
    margin: 0;
  }

  .company-base dl dd iframe {
    height: 260px;
    margin-top: 10px;
  }
}

/*------------------------------------------------------------------------------
	mpsr
------------------------------------------------------------------------------*/
.headTtl--mpsr {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 300px;
  margin: 100px auto 120px;
  /*  padding: 100px 0;*/
  position: relative;
}

.headTtl--mpsr::after {
  content: '';
  /*  background-color: rgba(0, 108, 180, 0.2);*/
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.headTtl--mpsr h1 {
  background: url("../images/mpsr/mpsr_title.png") no-repeat center / 100%;
  text-indent: 100%;
  width: 270px;
  height: 90px;
  white-space: nowrap;
  overflow: hidden;
}

.headTtl--mpsr h1 span {
  display: block;
  margin-top: 30px;
  font-size: 2rem;
}

@media screen and (max-width: 1149px) {
  .headTtl--mpsr {
    height: 180px;
    margin: 60px auto 100px;
  }

  .headTtl--mpsr h1 {
    width: 200px;
    height: 67px;
  }
}

@media screen and (max-width: 768px) {
  .headTtl--mpsr {
    margin: 60px auto 50px;
    padding: 50px 0;
  }

  .headTtl--mpsr h1 {
    font-size: 4rem;
  }

  .headTtl--mpsr h1 span {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

.headTtl--mpsr {
  background: url("../images/mpsr/header.jpg") no-repeat center top / cover;
}

@media screen and (max-width: 768px) {
  .headTtl--mpsr {
    background: url("../images/mpsr/header_sp.jpg") no-repeat center top / cover;
  }
}

.mpsr-content {
  max-width: 100%;
  margin: auto;
}

.mpsr-content__block {
  max-width: 1080px;
  margin: 0 auto 60px;
}

.repowering-content__block--last {
  margin-top: 80px;
}

.mpsr-content__heading {
  background: url("../images/mpsr/mpsr_heading.svg") no-repeat center / 100%;
  text-indent: 100%;
  width: 1080px;
  height: 127px;
  margin: 0 0 30px;
  white-space: nowrap;
  overflow: hidden;
}

.mpsr-content__title {
  font-size: 2.2rem;
  font-weight: bold;
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  line-height: 1;
  margin: 0 auto;
  padding: 15px;
  border: none;
}

.mpsr-content__recovery {
  font-size: 3.6rem !important;
  font-weight: bold;
  color: var(--blue);
  text-align: center;
  line-height: 1;
  margin-top: 20px;
}

.mpsr-content__inner {
  padding: 30px;
}

.mpsr-content__inner p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.mpsr-content__pc {
  display: block;
}

.mpsr-content__sp {
  display: none;
}

.mpsr-content__inner picture img {
  display: block;
  margin: auto;
}

.mpsr-content__inner figure {
  margin: 40px auto 0;
}

.mpsr-content__inner figure+figure {
  margin-top: 60px;
}

.mpsr-content__inner figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .mpsr-content__block {
    max-width: 100%;
    margin: 0 1em 40px;
  }

  .mpsr-content__block--last {
    margin-top: 60px;
  }

  .mpsr-content__heading {
    background: url("../images/mpsr/mpsr_heading_sp.svg") no-repeat center / 100%;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
  }

  .mpsr-content__title {
    font-size: 1.8rem;
    margin: 0 auto;
  }

  .mpsr-content__recovery {
    font-size: 3.0rem !important;
    margin-top: 15px;
  }

  .mpsr-content__inner {
    padding: 15px;
  }

  .mpsr-content__inner p {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .mpsr-content__pc {
    display: none;
  }

  .mpsr-content__sp {
    display: block;
  }

  .mpsr-content__step {
    max-width: 70%;
    margin: auto;
  }

  .mpsr-content__inner figure {
    margin: 30px auto 0;
  }

  .mpsr-content__inner figure+figure {
    margin-top: 40px;
  }
}

#businessJet {
  margin-bottom: 100px;
}

#businessJet .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#businessJet .inner .txt {
  width: 65%;
}

#businessJet .inner .txt h3 {
  margin: 0 auto 30px;
}

#businessJet .inner .txt a {
  display: table;
  margin: 0 0 0 auto;
  color: var(--blue);
  text-decoration: underline;
}

#businessJet .inner .txt a::after {
  content: '';
  background: url("../images/company/icon_link.png") no-repeat center / cover;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

#businessJet .inner .txt a:hover {
  text-decoration: none;
}

#businessJet .inner img {
  width: 30%;
}

@media screen and (max-width: 768px) {
  #businessJet {
    margin-bottom: 50px;
  }

  #businessJet .inner {
    display: block;
  }

  #businessJet .inner .txt {
    width: 100%;
    margin-bottom: 20px;
  }

  #businessJet .inner img {
    width: 100%;
  }
}

#businessElectric {
  background: var(--lightgray);
  padding: 100px 0;
}

#businessElectric .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#businessElectric .inner .imgBox {
  width: 40%;
}

#businessElectric .inner .imgBox img {
  display: inline-block;
  vertical-align: top;
}

#businessElectric .inner .imgBox img:first-child {
  margin-right: 10px;
}

#businessElectric .inner .imgBox p {
  width: 100%;
  margin: 10px auto 0;
}

#businessElectric .inner .txt {
  width: 57%;
}

#businessElectric .inner .txt h3 {
  margin: 0 auto 30px;
}

#businessElectric .inner .txt a {
  display: table;
  margin: 0 0 0 auto;
  color: var(--blue);
  text-decoration: underline;
}

#businessElectric .inner .txt a::after {
  content: '';
  background: url("../images/company/icon_link.png") no-repeat center / cover;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

#businessElectric .inner .txt a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #businessElectric {
    padding: 50px 0;
  }

  #businessElectric .inner {
    display: block;
  }

  #businessElectric .inner .imgBox {
    width: 100%;
    margin-bottom: 20px;
  }

  #businessElectric .inner .imgBox img {
    width: 48%;
  }

  #businessElectric .inner .txt {
    width: 100%;
  }
}

.page-id-4149 footer {
  margin-top: 0;
}

/*------------------------------------------------------------------------------
  jet
------------------------------------------------------------------------------*/
#jet-message .imgBox {
  position: relative;
  margin: 100px 0 100px auto;
  width: 80%;
}

#jet-message .imgBox img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

#jet-message .imgBox::after {
  content: '';
  background-color: rgba(0, 108, 180, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  #jet-message .imgBox {
    margin: 50px 0 50px auto;
    width: 95%;
  }

  #jet-message .imgBox img {
    height: 180px;
  }
}

.page-id-21 footer {
  margin-top: 0;
}

/*------------------------------------------------------------------------------
  tdd
------------------------------------------------------------------------------*/
#tdd-menu .inner h3 {
  margin: 0 auto 30px;
}

#tdd-menu .inner .menuBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 50px;
}

#tdd-menu .inner .menuBox img {
  width: 30%;
  height: auto;
}

#tdd-menu .inner .menuBox .txt {
  width: 65%;
  margin: 0 auto;
  padding: 0;
}

#tdd-menu .inner .menuBox:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #tdd-menu .inner h3 {
    margin: 0 auto 0.8em;
  }

  #tdd-menu .inner .menuBox {
    display: block;
    margin: 0 auto 20px;
  }

  #tdd-menu .inner .menuBox img {
    width: 100%;
    margin-bottom: 20px;
  }

  #tdd-menu .inner .menuBox .txt {
    width: 100%;
  }
}

/*------------------------------------------------------------------------------
  corrective
------------------------------------------------------------------------------*/
#corrective-menu .inner h3 {
  margin: 0 auto 30px;
}

#corrective-menu .inner .menuBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 50px;
}

#corrective-menu .inner .menuBox img {
  width: 30%;
  height: auto;
}

#corrective-menu .inner .menuBox .txt {
  width: 65%;
  margin: 0 auto;
  padding: 0;
}

#corrective-menu .inner .menuBox:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #corrective-menu .inner h3 {
    margin: 0 auto .8em;
  }

  #corrective-menu .inner .menuBox {
    display: block;
    margin: 0 auto 20px;
  }

  #corrective-menu .inner .menuBox img {
    width: 100%;
    margin-bottom: 20px;
  }

  #corrective-menu .inner .menuBox .txt {
    width: 100%;
  }
}

/*------------------------------------------------------------------------------
  test
------------------------------------------------------------------------------*/
.page-id-19 footer {
  margin-top: 0;
}

#pvtest {
  margin-bottom: 100px;
}

#pvtest .inner h3 {
  margin: 0 auto 30px;
}

#pvtest .inner .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 60px auto 80px;
}

#pvtest .inner .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#pvtest .inner .menuBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}

#pvtest .inner .menuBox img {
  width: 30%;
  height: auto;
}

#pvtest .inner .menuBox .txt {
  width: 65%;
  margin: 0 auto 0 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #pvtest {
    margin-bottom: 50px;
  }

  #pvtest .inner h3 {
    margin: 0 auto 20px;
  }

  #pvtest .inner .movie {
    margin: 20px auto;
  }

  #pvtest .inner .menuBox {
    display: block;
    margin: 50px auto 0;
  }

  #pvtest .inner .menuBox img {
    width: 100%;
    margin-top: 20px;
  }

  #pvtest .inner .menuBox .txt {
    width: 100%;
    margin: 0 auto;
  }
}

#point {
  background: var(--lightgray);
  padding: 100px 0;
}

#point h3 {
  margin: 0 auto 50px;
}

#point .imgBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}

#point .imgBox div {
  width: calc(83%/3);
}

#point .imgBox div h4 {
  margin: 25px auto 15px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--blue);
}

#point .imgBox div p {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #point {
    padding: 50px 0;
  }

  #point h3 {
    margin: 0 auto 20px;
  }

  #point .imgBox {
    display: block;
    margin: 0 auto 30px;
  }

  #point .imgBox div {
    width: 100%;
    margin: 0 auto 30px;
  }

  #point .imgBox div h4 {
    margin: 20px auto 15px;
  }

  #point .imgBox div img {
    display: block;
    width: 60%;
    margin: 0 auto;
  }

  #point .imgBox div p {
    text-align: center;
  }
}

/*------------------------------------------------------------------------------
  estimate
------------------------------------------------------------------------------*/
#estimate h4 {
  text-align: center;
  font-size: 1.8rem;
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  #estimate h4 {
    margin: 30px auto;
  }
}

#estimate-step {
  margin: 0 auto 70px;
}

#estimate-step .inner {
  width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#estimate-step .inner .step {
  width: 100px;
  height: 100px;
  background: #fff;
  border: solid 1px var(--blue);
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--blue);
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

#estimate-step .inner .step span {
  display: block;
  margin-bottom: 10px;
}

#estimate-step .inner .step.current {
  background: var(--blue);
  color: #fff;
}

#estimate-step .inner .step:first-child::before,
#estimate-step .inner .step:nth-child(2)::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue);
  position: absolute;
  top: 50%;
  right: -60px;
}

#estimate-step .inner .step:first-child::after,
#estimate-step .inner .step:nth-child(2)::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
  position: absolute;
  top: 46%;
  right: -60px;
  transform: rotate(45deg);
}

#estimate-step p {
  text-align: center;
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  #estimate-step {
    margin: 0 auto 40px;
  }

  #estimate-step .inner {
    width: 350px;
  }

  #estimate-step .inner .step {
    width: 80px;
    height: 80px;
    font-size: 1.4rem;
  }

  #estimate-step .inner .step:first-child::before,
  #estimate-step .inner .step:nth-child(2)::before {
    right: -30px;
  }

  #estimate-step .inner .step:first-child::after,
  #estimate-step .inner .step:nth-child(2)::after {
    top: 45%;
    right: -30px;
  }

  #estimate-step p {
    margin: 30px 5% 0;
    text-align: left;
  }
}

#form table {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}

#form table tr {
  border-bottom: solid 2px var(--blue);
}

#form table th {
  box-sizing: border-box;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#form table th .item {
  width: 70%;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.5;
}

#form table th .item span {
  display: block;
  font-size: 1.2rem;
}

#form table th .required {
  padding: 0.5em 1em;
  margin: 0 auto 0 0.8em;
  background: var(--blue);
  color: #fff;
  line-height: 1;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 30px;
}

#form table td {
  width: 70%;
  text-align: left;
  padding: 20px 0 20px 20px;
  box-sizing: border-box;
  /*check*/
}

#form table td textarea,
#form table td input[type=text],
#form table td input[type=email] {
  background-color: var(--lightgray);
  width: 80%;
  padding: 10px;
  border: 1px solid var(--line);
}

#form table td input[type=text].postal-number {
  background-color: var(--lightgray);
  width: 30%;
  padding: 10px;
  border: 1px solid var(--line);
}

#form table td .mwform-tel-field input[type=text] {
  width: 20%;
}

#form table td .file {
  display: flex;
  align-items: center;
  margin: 0 auto 10px;
}

#form table td .file input[type="file"] {
  display: none !important;
}

#form table td .file label {
  margin-right: 10px;
  padding: 6px 20px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

#form table td .file label:hover {
  opacity: 0.7;
}

#form table td .file .upload {
  margin: 0;
}

#form table td .file .fileClear {
  display: none;
  margin: 0 0 0 8px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--blue);
  border: 1px solid var(--blue);
}

#form table td .file .mwform-file-delete {
  display: none;
}

#form table td .checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}

#form table td .checkbox input[type=checkbox].checkbox__item {
  display: none;
}

#form table td .checkbox .checkbox__item+span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

#form table td .checkbox .checkbox__item+span::after,
#form table td .checkbox .checkbox__item+span::before {
  content: '';
  display: block;
  position: absolute;
  background: #f0f0f0;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
}

#form table td .checkbox .checkbox__item+span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  transform: rotate(45deg);
  left: 5px;
  border: none;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

#form table td .checkbox .checkbox__item:checked+span {
  color: var(--blue);
}

#form table td .checkbox .checkbox__item:checked+span::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {

  #form table th,
  #form table td {
    text-align: left;
    display: block;
    width: 100%;
  }

  #form table th {
    padding: 20px 0;
  }

  #form table th .item {
    display: inline-block;
    vertical-align: middle;
    width: auto;
  }

  #form table th .item span {
    display: inline-block;
  }

  #form table th .required {
    display: inline-block;
    padding: 0.5em 1em;
  }

  #form table td {
    width: 100%;
    padding: 0 0 20px;
  }

  #form table td textarea,
  #form table td input[type=text],
  #form table td input[type=email] {
    width: 100%;
  }

  #form table td textarea .checkbox,
  #form table td input[type=text] .checkbox,
  #form table td input[type=email] .checkbox {
    width: 100%;
  }

  #form table td .file {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #form table td .file label {
    display: block;
    width: 100%;
    margin: 0 0 8px 0;
    padding: 10px 20px;
  }

  #form table td .file .upload {
    flex: 1;
    margin: 0 15px 0 0;
  }

  #form table td .file .fileClear {
    display: none;
    max-width: 40%;
    margin: 0;
    text-align: center;
  }

  #form table td .file .mwform-file-delete {
    display: none;
  }
}

#form .mw_wp_form_confirm table td .file label {
  display: flex;
  margin: 0;
  padding: 0;
  color: #999;
  cursor: auto;
  background-color: transparent;
  border: none;
}

#form .mw_wp_form_confirm table td .file .upload {
  display: none;
}

.submitBox {
  margin: 60px auto 0;
}

.submitBox p {
  text-align: center;
  /*check*/
}

.submitBox p.checkbox input[type=checkbox].checkbox__item {
  display: none;
}

.submitBox p.checkbox label {
  display: inline-block;
}

.submitBox p.checkbox .checkbox__item+span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

.submitBox p.checkbox .checkbox__item+span::after,
.submitBox p.checkbox .checkbox__item+span::before {
  content: '';
  display: block;
  position: absolute;
  background: #f0f0f0;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
}

.submitBox p.checkbox .checkbox__item+span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  transform: rotate(45deg);
  left: 5px;
  border: none;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.submitBox p.checkbox .checkbox__item:checked+span {
  color: var(--blue);
}

.submitBox p.checkbox .checkbox__item:checked+span::after {
  opacity: 1;
}

.submitBox .submitBtn {
  font-size: 1.6rem !important;
  width: 360px;
  display: table;
  margin: 40px auto 0;
  padding: 1.5em;
  line-height: 1;
  text-align: center;
  position: relative;
  color: #fff;
  background: var(--blue);
  border: solid 1px var(--blue);
  border-radius: 40px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.submitBox .submitReturn {
  font-size: 1.6rem !important;
  width: 360px;
  display: table;
  margin: 20px auto 0;
  padding: 1.5em;
  line-height: 1;
  text-align: center;
  position: relative;
  color: var(--blue);
  background: #fff;
  border: solid 1px var(--blue);
  border-radius: 40px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.submitBox .submitBtn::before {
  content: '';
  width: 15px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: all 0.3s;
}

.submitBox .submitBtn::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 40%;
  right: 20px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.submitBox .submitBtn:hover {
  color: var(--blue);
  background: #fff;
}

.submitBox .submitReturn:hover {
  color: #fff;
  background: var(--blue);
}

.submitBox .submitBtn:hover::before {
  background: var(--blue);
}

.submitBox .submitBtn:hover::after {
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

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

  .submitBox .submitBtn {
    font-size: 1.4rem !important;
    width: 80%;
    margin: 40px auto 0;
    padding: 1.25em;
  }

  .submitBox .submitReturn {
    font-size: 1.4rem !important;
    width: 80%;
    margin: 20px auto 0;
    padding: 1.25em;
  }
}

.mw_wp_form_input .confirmTxt {
  display: none;
}

.mw_wp_form_confirm .confirmTxt {
  display: block;
  margin: 20px auto;
}

/*------------------------------------------------------------------------------
  service
------------------------------------------------------------------------------*/
#challenge .inner h2 {
  color: var(--blue);
}

#challenge .inner p {
  margin-bottom: 0;
}

#challenge .inner .img01 {
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  #challenge .inner .img01 {
    margin: 40px auto;
  }
}

#feature {
  background: var(--lightgray);
  padding: 170px 0 100px;
}

#feature .inner .featureBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 60px;
}

#feature .inner .featureBox img {
  width: 48%;
  height: auto;
}

#feature .inner .featureBox .txt {
  width: 48%;
}

#feature .inner .featureBox .txt h3 {
  font-size: 2.4rem;
  color: var(--blue);
  margin: 0 auto 40px;
  padding: 15px 0 0;
  border-top: solid 1px var(--blue);
}

#feature .inner .featureBox .txt h3 span {
  font-weight: normal;
  display: block;
  color: #c0bebe;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 15px;
}

#feature .inner .featureBox:nth-child(2) {
  flex-flow: row-reverse;
}

#feature .inner .featureBox:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #feature {
    padding: 170px 0 50px;
    margin-top: -130px;
  }

  #feature .inner .featureBox {
    display: block;
    margin: 0 auto 50px;
  }

  #feature .inner .featureBox img {
    width: 100%;
    margin-bottom: 20px;
  }

  #feature .inner .featureBox .txt {
    width: 100%;
  }

  #feature .inner .featureBox .txt h3 {
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }

  #feature .inner .featureBox:nth-child(2) {
    flex-flow: row;
  }
}

#business {
  width: 1080px;
  margin: 100px auto;
}

#business h2 {
  text-align: center;
}

#business .linkBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#business .linkBox .contents {
  margin: 0 auto 40px;
  padding: 30px;
  width: 48%;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

#business .linkBox .contents h3 {
  font-weight: normal;
  font-size: 2.4rem;
  color: #ffffff;
  margin: 0 auto;
  padding: 0;
  border-top: none;
  position: relative;
  z-index: 1;
}

#business .linkBox .contents a {
  color: #ffffff;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

#business .linkBox .contents::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#business .linkBox .contents:first-child {
  background: url("../images/service/link_bg01.jpg") no-repeat center 60% / cover;
}

#business .linkBox .contents:nth-child(2) {
  background: url("../images/service/link_bg02.jpg") no-repeat center 70% / cover;
}

#business .linkBox .contents:nth-child(3) {
  background: url("../images/service/link_bg03.jpg") no-repeat center / cover;
}

#business .linkBox .contents:nth-child(4) {
  background: url("../images/service/link_bg04.jpg") no-repeat center 25% / cover;
}

#business .linkBox .contents:nth-child(5) {
  background: url("../images/service/link_bg05.jpg") no-repeat center 25% / cover;
}

#business .linkBox .contents:nth-child(6) {
  background: url("../images/service/link_bg_mpsr.jpg") no-repeat center bottom / cover;
}

#business .linkBox .contents:last-child {
  margin-bottom: 0;
  background: url("../images/service/link_bg_repowering.jpg") no-repeat center bottom / cover;
}

@media screen and (max-width: 768px) {
  #business {
    width: 100%;
    margin: 50px auto;
  }

  #business .linkBox .contents {
    margin: 0 5% 30px;
    padding: 20px;
    width: 100%;
  }

  #business .linkBox .contents h3 {
    font-size: 2rem;
  }

  #business .linkBox .contents:nth-child(3) {
    margin-bottom: 30px;
  }
}

/*------------------------------------------------------------------------------
  om
------------------------------------------------------------------------------*/
#omTxt {
  background: url("../images/om/img01.jpg") no-repeat right bottom;
  margin: 0 auto 100px;
  padding: 40px 0 260px;
  position: relative;
}

#omTxt .inner p {
  max-width: 800px;
}

#omTxt .inner p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #omTxt {
    margin: 0 auto 50px;
    padding: 0 0 40vh;
  }
}

#om-menu {
  background: var(--lightgray);
  padding: 170px 0 100px;
  margin-top: -200px;
}

#om-menu .inner h3 {
  margin-top: 0;
}

#om-menu .inner .menuBox {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 40px;
  position: relative;
}

#om-menu .inner .menuBox .imageBox {
  width: 35%;
  min-height: 250px;
  background-position: center center;
  background-size: cover;
}

#om-menu .inner .menuBox .txt {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 65%;
  margin: 0 auto;
  padding: 35px;
  background: #fff;
}

#om-menu .inner .menuBox .txt h4,
#om-menu .inner .menuBox .txt p {
  width: 100%;
}

#om-menu .inner .menuBox .txt h4 {
  margin-bottom: 1em;
}

#om-menu .inner .menuBox::after {
  content: '';
  position: absolute;
  background: #b2d3e8;
  width: 6px;
  height: 40px;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}

#om-menu .inner .menuBox:last-child {
  margin-bottom: 0;
}

#om-menu .inner .menuBox:last-child::after {
  background: none;
  width: 0;
  height: 0;
}

@media screen and (max-width: 768px) {
  #om-menu {
    padding: 50px 0;
    margin-top: 50px;
  }

  #om-menu .inner h3:first-child {
    margin-top: 0;
  }

  #om-menu .inner .menuBox {
    display: block;
  }

  #om-menu .inner .menuBox img {
    width: 100%;
  }

  #om-menu .inner .menuBox .imageBox {
    width: 100%;
    min-height: auto;
    padding-top: 62.5%;
  }

  #om-menu .inner .menuBox .txt {
    width: 100%;
    padding: 5%;
    background: #fff;
  }

  #om-menu .inner .menuBox .txt h4 {
    margin-bottom: 0.5em;
  }
}

#pm {
  padding: 100px 0 0;
}

#pm .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#pm .inner .txt {
  width: 60%;
}

#pm .inner .txt h3 {
  margin-top: 0;
}

#pm .inner img {
  width: 37%;
}

@media screen and (max-width: 768px) {
  #pm {
    padding: 50px 0 0;
  }

  #pm .inner {
    display: block;
  }

  #pm .inner .txt {
    width: 100%;
    margin-bottom: 20px;
  }

  #pm .inner img {
    width: 100%;
  }
}

#om-service {
  margin: 100px auto;
}

#om-service .inner #tab-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#om-service .inner #tab-area label {
  width: 19%;
  text-align: center;
  background: #eaeaea;
  margin: 0 0 10px;
  padding: 0.8em 1em;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

#om-service .inner #tab-area label:hover {
  opacity: .7;
}

#om-service .inner #tab-area input[type="radio"] {
  display: none;
}

#om-service .inner #tab-area input:checked+label {
  background: var(--blue);
  color: #fff;
}

#om-service .inner #tab-area .tab-box {
  width: 100%;
  margin: 0 auto;
}

#om-service .inner #tab-area .tab-box div {
  height: 0;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  text-align: justify;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#om-service .inner #tab-area .tab-box div h4 {
  font-size: 3rem;
  width: 100%;
  text-align: center;
  margin: 40px auto;
}

#om-service .inner #tab-area .tab-box div img {
  width: 45%;
}

#om-service .inner #tab-area .tab-box div p {
  width: 52%;
  margin-bottom: 0;
}

#om-service .inner #tab-area #tab1:checked~.tab-box #tab-content1,
#om-service .inner #tab-area #tab2:checked~.tab-box #tab-content2,
#om-service .inner #tab-area #tab3:checked~.tab-box #tab-content3,
#om-service .inner #tab-area #tab4:checked~.tab-box #tab-content4,
#om-service .inner #tab-area #tab5:checked~.tab-box #tab-content5 {
  height: auto;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #om-service {
    width: 100%;
    margin: 50px auto 0;
  }

  #om-service .inner #tab-area {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  #om-service .inner #tab-area label {
    width: 49%;
  }

  #om-service .inner #tab-area .tab-box div h4 {
    font-size: 2rem;
    margin: 20px auto;
  }

  #om-service .inner #tab-area .tab-box div img {
    width: 100%;
    margin-bottom: 20px;
  }

  #om-service .inner #tab-area .tab-box div p {
    width: 100%;
  }
}

/*------------------------------------------------------------------------------
  news
------------------------------------------------------------------------------*/
#select .inner {
  text-align: right;
}

#select .inner .categoryBox,
#select .inner .monthBox {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  width: 20%;
  margin: 2em auto;
  text-align: center;
  position: relative;
  background: transparent;
  border: 1px solid var(--blue);
}

#select .inner .categoryBox::before,
#select .inner .monthBox::before {
  position: absolute;
  top: 1.3em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--blue);
  pointer-events: none;
}

#select .inner .categoryBox select,
#select .inner .monthBox select {
  width: 100%;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 1em;
  color: var(--blue);
}

#select .inner .categoryBox select::-ms-expand,
#select .inner .monthBox select::-ms-expand {
  display: none;
}

@media screen and (max-width: 768px) {

  #select .inner .categoryBox,
  #select .inner .monthBox {
    width: 46%;
  }
}

#select .inner .categoryBox {
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  #select .inner .categoryBox {
    margin-right: 4%;
  }
}

#list .inner a {
  display: flex;
  align-items: center;
  padding: 30px;
  border-bottom: solid 1px #eaeaea;
  line-height: 1;
  position: relative;
}

#list .inner a .date {
  font-size: 1.2rem;
}

#list .inner a .category {
  width: 120px;
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  margin: 0 20px;
  padding: 0.5em 1em;
  border-radius: 30px;
}

#list .inner a .ttl {
  width: 635px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: left;
}

#list .inner a .arrowBtn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 30px;
  transition: all 0.3s;
}

#list .inner a .arrowBtn::before {
  width: 15px;
  height: 1px;
  left: 30%;
  top: 50%;
}

#list .inner a .arrowBtn::after {
  width: 10px;
  height: 10px;
  top: 38%;
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}

#list .inner a:hover .arrowBtn {
  right: 10px;
}

#list .inner nav.navigation .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

#list .inner nav.navigation .nav-links {
  margin: 60px auto;
  text-align: center;
}

#list .inner nav.navigation .nav-links .page-numbers {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  margin: 0 3px;
  padding: 0;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: var(--blue);
  border: solid 1px var(--blue);
  background: #fff;
}

#list .inner nav.navigation .nav-links .page-numbers.prev,
#list .inner nav.navigation .nav-links .page-numbers.next {
  border: none;
}

#list .inner nav.navigation .nav-links .page-numbers.current {
  background: var(--blue);
  color: #fff;
}

#list .inner nav.navigation .nav-links a.page-numbers:hover {
  background: var(--blue);
  color: #fff;
}

@media screen and (max-width: 768px) {
  #list .inner a {
    padding: 30px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #list .inner a .category {
    margin: 0 auto 0 20px;
  }

  #list .inner a .ttl {
    width: 100%;
    padding: 20px 0 0;
  }

  #list .inner a .arrowBtn {
    display: none;
  }
}

/*記事詳細*/
#newsArticle .headTtl {
  margin-bottom: 0;
}

#newsArticle .breadcrumb {
  background: var(--lightgray);
  padding: 1em 0;
  font-size: 1.2rem;
}

#newsArticle #article {
  margin: 100px auto 0;
}

#newsArticle #article h2 {
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.5;
}

#newsArticle #article .contents {
  margin: 0 auto 100px;
}

#newsArticle #article .contents img {
  display: block;
  width: auto;
  max-width: 800px;
  margin: 40px auto;
}

#newsArticle #article .contents a {
  text-decoration: underline;
}

#newsArticle #article .contents a:hover {
  text-decoration: none;
}

#newsArticle #article .articleLink {
  margin: 0 auto 80px;
  padding: 50px;
  border: solid 1px var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#newsArticle #article .articleLink::before {
  content: '';
  position: absolute;
  background: var(--blue);
  width: 1px;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#newsArticle #article .articleLink p {
  width: 40%;
}

#newsArticle #article .articleLink p:first-child {
  margin: 0 auto 0 0;
}

#newsArticle #article .articleLink p:first-child a {
  position: relative;
}

#newsArticle #article .articleLink p:first-child a::before {
  content: '';
  width: 35px;
  height: 1px;
  background: var(--blue);
  position: absolute;
  top: 50%;
  left: -70px;
  transition: all 0.3s;
}

#newsArticle #article .articleLink p:first-child a::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px var(--blue);
  border-left: solid 1px var(--blue);
  position: absolute;
  top: 18%;
  left: -70px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

#newsArticle #article .articleLink p:first-child a:hover::before,
#newsArticle #article .articleLink p:first-child a:hover::after {
  left: -85px;
}

#newsArticle #article .articleLink p:last-child {
  margin: 0 0 0 auto;
  text-align: right;
}

#newsArticle #article .articleLink p:last-child a {
  position: relative;
}

#newsArticle #article .articleLink p:last-child a::before {
  content: '';
  width: 35px;
  height: 1px;
  background: var(--blue);
  position: absolute;
  top: 50%;
  right: -70px;
  transition: all 0.3s;
}

#newsArticle #article .articleLink p:last-child a::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
  position: absolute;
  top: 18%;
  right: -70px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

#newsArticle #article .articleLink p:last-child a:hover::before,
#newsArticle #article .articleLink p:last-child a:hover::after {
  right: -85px;
}

#newsArticle #article .listpageLink {
  display: block;
  width: 210px;
  margin: 0 auto;
  padding: 0.7em;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  border: solid 1px var(--blue);
  text-align: center;
}

#newsArticle #article .listpageLink:hover {
  color: var(--blue);
  background: #fff;
}

@media screen and (max-width: 768px) {
  #newsArticle #article {
    margin: 50px auto 0;
  }

  #newsArticle #article h2 {
    margin: 0 auto 40px;
  }

  #newsArticle #article .contents {
    margin: 0 auto 50px;
  }

  #newsArticle #article .contents img {
    margin: 20px auto;
    width: 100%;
    height: auto;
  }

  #newsArticle #article .articleLink {
    margin: 0 auto 50px;
    padding: 0;
    border-left: none;
    border-right: none;
    display: block;
  }

  #newsArticle #article .articleLink::before {
    display: none;
  }

  #newsArticle #article .articleLink p {
    width: 100%;
    padding: 5% 0;
  }

  #newsArticle #article .articleLink p:first-child {
    margin: 0 auto;
    border-bottom: solid 1px var(--blue);
  }

  #newsArticle #article .articleLink p:first-child a {
    width: 100%;
    padding: 0 10%;
    display: block;
  }

  #newsArticle #article .articleLink p:first-child a::before {
    width: 20px;
    top: 50%;
    left: 0;
  }

  #newsArticle #article .articleLink p:first-child a::after {
    top: 42%;
    left: 0;
  }

  #newsArticle #article .articleLink p:first-child a:hover::before,
  #newsArticle #article .articleLink p:first-child a:hover::after {
    left: -5px;
  }

  #newsArticle #article .articleLink p:last-child {
    margin: 0 auto;
    text-align: left;
  }

  #newsArticle #article .articleLink p:last-child a {
    width: 100%;
    padding: 0 10%;
    display: block;
  }

  #newsArticle #article .articleLink p:last-child a::before {
    width: 20px;
    top: 50%;
    right: 0;
  }

  #newsArticle #article .articleLink p:last-child a::after {
    top: 42%;
    right: 0;
  }

  #newsArticle #article .articleLink p:last-child a:hover::before,
  #newsArticle #article .articleLink p:last-child a:hover::after {
    right: -5px;
  }
}

/*------------------------------------------------------------------------------
  column
------------------------------------------------------------------------------*/
.column-list {
  max-width: 100%;
  padding: 0 1em;
}

.column-list__inner {
  max-width: 1080px;
  margin: auto;
}

.column-list__container {
  display: flex;
  column-gap: 2%;
  row-gap: 32px;
}

.column-list__block {
  background-color: var(--lightgray);
  width: 32%;
}

.column-list__block a {
  height: 100%;
  display: block;
  transition: all .3s ease-in-out;
}

.column-list__photo {
  max-height: 200px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.column-list__photo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.column-list__box {
  padding: 15px 10px;
}

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

/*.column-list__category {
  border: 1px solid var(--text);
}*/

.column-list__date {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1;
}

.column-list__title {
  font-size: 1.6rem;
  color: var(--text);
  margin: 10px auto 0;
  padding: 0;
  border: 0;
}

@media (max-width:768px) {
  .column-list__inner {
    max-width: 100%;
  }

  .column-list__container {
    flex-direction: column;
    row-gap: 40px;
  }

  .column-list__block {
    width: auto;
  }

  .column-list__date {
    font-size: 1.2rem;
  }

  .column-list__title {
    font-size: 1.5rem;
    margin: 5px auto 0;
  }
}

.column-single {
  max-width: 100%;
  padding: 0 1em;
}

.column-single__header {
  max-width: 1080px;
  margin: auto;
  padding: 24px 16px;
  border-top: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
}

.column-single__title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.column-single__date {
  font-size: 1.4rem;
  color: var(--muted);
  text-align: right;
}

.column-single__content {
  max-width: 960px;
  margin: 48px auto 0;
}

.column-single__content .entry-content {}

.column-single__content .entry-content h2 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 24px;
}

.column-single__content .entry-content h2::before {
  background-color: var(--text);
  width: 140px;
  height: 3px;
  display: block;
  content: "";
  margin-bottom: 40px;
}

.column-single__content .entry-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--middleblue);
  margin-top: 32px;
  margin-bottom: 24px;
}

.column-single__content .entry-content p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 0;
}

.column-single__content .entry-content p:first-child {
  margin-top: 0;
}

.column-single__content .entry-content ul {}

.column-single__content .entry-content ul li {}

.column-single__content .entry-content .wp-block-image {
  margin-top: 48px;
  margin-bottom: 24px;
}

.column-single__content .entry-content .wp-block-image figure figcaption {
  font-size: 1.4rem;
  text-align: center;
}

.column-single__nav {
  margin: 80px auto 0;
}

.column-single__links {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
}

.column-single__links a {
  display: block;
  padding: 16px 0;
}

.column-single__prev {
  text-align: left;
  display: flex;
  align-items: center;
  width: 33.333%;
}

.column-single__prev a::before {
  background: url("../images/column/post_prev.svg") no-repeat left top / 100%;
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 32px;
}

.column-single__next {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 33.333%;
}

.column-single__next a::after {
  background: url("../images/column/post_next.svg") no-repeat left top / 100%;
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-left: 32px;
}

.column-single__prev a:hover,
.column-single__back a:hover,
.column-single__next a:hover {
  color: var(--text);
}

.column-single__back {
  text-align: center;
  width: 33.333%;
  border-right: 1px solid var(--muted);
  border-left: 1px solid var(--muted);
}

@media screen and (max-width: 768px) {
  .column-single__header {
    max-width: 100%;
    padding: 16px 8px;
  }

  .column-single__title {
    font-size: 2.0rem;
    line-height: 1.4;
  }

  .column-single__date {
    font-size: 1.2rem;
  }

  .column-single__content {
    max-width: 100%;
    margin: 32px auto 0;
  }

  .column-single__content .entry-content h2 {
    font-size: 2.2rem;
    text-align: left;
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .column-single__content .entry-content h2::before {
    width: 80px;
    height: 3px;
    margin-bottom: 24px;
  }

  .column-single__content .entry-content h3 {
    font-size: 1.8rem;
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .column-single__content .entry-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 16px;
  }

  .column-single__content .entry-content p:first-child {
    margin-top: 0;
  }

  .column-single__content .entry-content ul {}

  .column-single__content .entry-content ul li {}

  .column-single__content .entry-content .wp-block-image {
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .column-single__content .entry-content .wp-block-image figure figcaption {
    font-size: 1.3rem;
    text-align: left;
  }
}

/*------------------------------------------------------------------------------
  privacy
------------------------------------------------------------------------------*/
#privacy .inner ol {
  padding-inline-start: 0;
}

#privacy .inner ol li {
  list-style-type: none;
  counter-increment: cnt;
}

#privacy .inner ol li::before {
  content: "(" counter(cnt) ")";
}

/*------------------------------------------------------------------------------
  recruit
------------------------------------------------------------------------------*/
.type-recruit .headTtl .inner {
  text-align: left;
  color: #fff;
  position: relative;
  z-index: 1;
}

.type-recruit .headTtl .inner .jobName {
  font-size: 3rem;
  margin: 20px auto 0;
}

.type-recruit .headTtl .inner .office {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .type-recruit .headTtl .inner .jobName {
    font-size: 2.4rem;
    line-height: 1.6;
    margin: 10px auto 0;
  }

  .type-recruit .headTtl .inner .office {
    font-size: 1.6rem;
  }
}

.recruit-message {
  max-width: 100%;
  margin: auto;
}

.recruit-message h2 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0;
}

.recruit-message p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .recruit-message h2 {
    font-size: 2.4rem;
    text-align: center;
  }

  .recruit-message p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.recruit-post {
  max-width: 100%;
  margin: 80px auto 0;
}

.recruit-post__header {
  padding: 15px;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}

.recruit-post__header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.recruit-post__list {
  display: flex;
  justify-content: flex-start;
  column-gap: 2%;
  margin: 40px auto 0;
}

.recruit-post__article {
  background-color: var(--lightgray);
  width: 32%;
  border: 1px solid var(--line);
}

.recruit-post__article a {
  display: block;
  transition: all .3s ease-in-out;
}

.recruit-post__article a:hover h3 {
  color: var(--blue);
}

.recruit-post__article a:hover .recruit-post__more {
  background-color: var(--blue);
  color: var(--bg);
}

.recruit-post__img img {
  display: block;
  max-width: 100%;
  height: auto;
}

.recruit-post__meta {
  padding: 20px;
}

.recruit-post__meta h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin: 10px auto 0;
  padding: 0;
  border-top: 0;
}

.recruit-post__meta p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}

.recruit-post__more {
  font-size: 1.4rem;
  color: var(--blue);
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid var(--blue);
  border-radius: 50px;
  transition: all .3s ease-in-out;
}

.recruit-post__more a:hover {
  background-color: var(--blue);
  color: var(--bg);
}

.recruit-post__entry {
  max-width: 300px;
  margin: 60px auto 0;
}

.recruit-post__entry a {
  background-color: var(--blue);
  color: var(--bg);
  text-align: center;
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--blue);
  border-radius: 50px;
  transition: all .3s ease-in-out;
}

.recruit-post__entry a:hover {
  background-color: var(--bg);
  color: var(--blue);
}

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

  .recruit-post__header {
    padding: 10px;
  }

  .recruit-post__header h2 {
    font-size: 2.2rem;
  }

  .recruit-post__list {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin: 20px auto 0;
  }

  .recruit-post__article {
    width: 100%;
  }

  .recruit-post__meta {
    padding: 10px;
  }

  .recruit-post__meta h3 {
    font-size: 1.4rem;
  }

  .recruit-post__meta p {
    font-size: 1.3rem;
  }

  .recruit-post__more {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  .recruit-post__entry {
    max-width: 100%;
    margin: 60px auto 0;
  }

  .recruit-post__entry a {
    padding: 10px;
  }
}

.recruit-content__single {
  padding: 0 0 100px;
}

.recruit-content__single h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}

.recruit-content__single table {
  max-width: 100%;
  margin: 40px auto 0;
}

.recruit-content__single table tr {
  border-bottom: 2px solid var(--blue);
}

.recruit-content__single table tr th {
  color: var(--blue);
  text-align: left;
  vertical-align: middle;
  width: 20%;
  padding: 20px 0;
}

.recruit-content__single table tr td {
  text-align: left;
  line-height: 1.8;
  vertical-align: middle;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .recruit-content__single table tr {
    display: block;
  }

  .recruit-content__single table tr th {
    display: block;
    width: 100%;
    padding: 15px 0 0;
  }

  .recruit-content__single table tr td {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
}


@media screen and (max-width: 768px) {}

.recruit-content__single .entryBtn {
  margin: 60px auto 0;
}

.recruit-content__single .entryBtn .entry {
  font-size: 1.6rem;
  background: var(--blue);
  color: #fff;
  text-align: center;
  line-height: 1;
  display: block;
  /*  width: 100%;*/
  width: 300px;
  margin: 15px auto 0;
  padding: 1em;
  border-radius: 50px;
  border: solid 1px var(--blue);
  transition: all .3s ease-in-out;
}

.recruit-content__single .entryBtn .entry:hover {
  opacity: .7;
}

.recruit-content__single .entryBtn .back {
  display: table;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
  color: var(--blue);
}

.recruit-content__single .entryBtn .back::before {
  content: '';
  width: 15px;
  height: 1px;
  background: var(--blue);
  position: absolute;
  top: 13px;
  left: -20px;
  transition: all 0.3s;
}

.recruit-content__single .entryBtn .back::after {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-bottom: solid 1px var(--blue);
  border-left: solid 1px var(--blue);
  position: absolute;
  top: 10px;
  left: -20px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.recruit-content__single .entryBtn .back:hover {
  color: #b2d3e8;
}

.recruit-content__single .entryBtn .back:hover::before,
.recruit-content__single .entryBtn .back:hover::after {
  left: -30px;
}

/*------------------------------------------------------------------------------
  contact
------------------------------------------------------------------------------*/
#contact h4 {
  text-align: center;
  font-size: 1.8rem;
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  #contact h4 {
    margin: 30px auto;
  }
}

#contact-step {
  margin: 0 auto 70px;
}

#contact-step .inner {
  width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#contact-step .inner .step {
  width: 100px;
  height: 100px;
  background: #fff;
  border: solid 1px var(--blue);
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--blue);
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

#contact-step .inner .step span {
  display: block;
  margin-bottom: 10px;
}

#contact-step .inner .step.current {
  background: var(--blue);
  color: #fff;
}

#contact-step .inner .step:first-child::before,
#contact-step .inner .step:nth-child(2)::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue);
  position: absolute;
  top: 50%;
  right: -60px;
}

#contact-step .inner .step:first-child::after,
#contact-step .inner .step:nth-child(2)::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
  position: absolute;
  top: 46%;
  right: -60px;
  transform: rotate(45deg);
}

#contact-step p {
  text-align: center;
  margin: 40px auto 0;
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}

@media screen and (max-width: 768px) {
  #contact-step {
    margin: 0 auto 40px;
  }

  #contact-step .inner {
    width: 350px;
  }

  #contact-step .inner .step {
    width: 80px;
    height: 80px;
    font-size: 1.4rem;
  }

  #contact-step .inner .step:first-child::before,
  #contact-step .inner .step:nth-child(2)::before {
    right: -30px;
  }

  #contact-step .inner .step:first-child::after,
  #contact-step .inner .step:nth-child(2)::after {
    top: 45%;
    right: -30px;
  }

  #contact-step p {
    margin: 30px 5% 0;
    text-align: left;
  }
}

/*------------------------------------------------------------------------------
	repowering
------------------------------------------------------------------------------*/
.headTtl--repowering {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.headTtl--repowering::after {
  content: '';
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.headTtl--repowering h1 {
  color: #fff;
  font-size: 5rem;
  position: relative;
  letter-spacing: 0.1em;
  z-index: 5;
}

.headTtl--repowering h1 span {
  display: block;
  margin-top: 30px;
  font-size: 2rem;
}

@media screen and (max-width: 1149px) {
  .headTtl--repowering {
    margin: 60px auto 100px;
  }
}

@media screen and (max-width: 768px) {
  .headTtl--repowering {
    margin: 60px auto 50px;
    padding: 50px 0;
  }

  .headTtl--repowering h1 {
    font-size: 3.2rem;
  }

  .headTtl--repowering h1 span {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}

.rr-content {
  max-width: 100%;
  margin: auto;
}

.rr-content__inner {
  max-width: 1080px;
  margin: auto;
}

.rr-content__top {
  background-color: #EFF9FF;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border: 2px dotted var(--blue);
  border-radius: 10px;
}

.rr-content__header {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: calc(100% - 750px);
}

.rr-content__title {
  font-size: 4.8rem;
  font-weight: 700;
  margin: 0;
}

.rr-content__title span {
  font-size: 3.2rem;
  color: #000;
  display: inline;
}

.rr-content__subtitle {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.2;
  margin: 20px 0 0;
  padding: 0;
  border: none;
}

.rr-content__lead {
  width: 730px
}

.rr-content__lead p {
  font-weight: 500;
  line-height: 1.6;
}

.rr-content__status {
  margin: 100px auto 0;
}

.rr-content__common {
  position: relative;
}

.rr-content__common h2 {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

.rr-content__common h2::after {
  background-color: var(--blue);
  display: block;
  content: "";
  width: 50px;
  height: 5px;
  margin: 20px auto 0;
}

.rr-content__flow {
  margin: 100px auto 0;
}

@media (max-width: 768px) {
  .rr-content__inner {
    max-width: 100%;
    margin: 0 1em;
  }

  .rr-content__top {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }

  .rr-content__header {
    width: auto;
  }

  .rr-content__title {
    font-size: 3.0rem;
    text-align: left;
  }

  .rr-content__title span {
    font-size: 2.4rem;
  }

  .rr-content__subtitle {
    font-size: 1.6rem;
    margin: 10px 0 0;
  }

  .rr-content__lead {
    width: auto;
    margin-top: 20px;
  }

  .rr-content__lead p {
    line-height: 1.5;
  }

  .rr-content__status {
    margin: 60px auto 0;
  }

  .rr-content__common h2 {
    font-size: 2.0rem;
  }

  .rr-content__common h2::after {
    width: 40px;
    margin: 15px auto 0;
  }

  .rr-content__flow {
    margin: 60px auto 0;
  }
}

.status-content {
  position: relative;
}

.status-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 20px;
  column-gap: 20px;
  justify-items: center;
  max-width: 1020px;
  margin: auto;
}

.status-content__inner::after {
  background: url("../images/rr/arrow_down.svg") no-repeat center / 100%;
  display: block;
  grid-column: 1 / 3;
  grid-row: 2;
  justify-self: center;
  content: "";
  width: 90px;
  height: 72px;
  margin: 0 auto;
}

.status-content__box {
  width: 500px;
  padding: 20px;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
}

.status-content__box h3 {
  font-size: 1.6rem;
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  line-height: 1;
  margin: 0;
  padding: 10px 0;
  border: none;
  border-radius: 50px;
}

.status-content__box h3 span {
  font-size: 1.4rem;
}

.status-content__box ul {
  margin-top: 20px;
}

.status-content__box ul li {
  line-height: 1.8;
}

.status-content__theme {
  margin: 40px auto 0;
}

.status-content__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

.status-content__title span {
  font-size: 2.4rem;
  background: linear-gradient(transparent 50%, #ffff00 50%);
  color: #333333;
  display: inline;
  letter-spacing: 0.05em;
  margin-top: 0;
}

.status-content__outline {
  margin: 100px auto 0;
  position: relative;
}

.status-content__outline::after {
  font-family: "Oswald", sans-serif;
  font-size: 16rem;
  font-weight: 900;
  color: rgba(140, 140, 140, 0.1);
  content: "SERVICE";
  display: block;
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -60px;
}

.status-content__text {
  max-width: 740px;
}

.status-content__text p {
  font-size: 1.6rem;
  font-weight: 600;
}

.status-content__img {
  max-width: 860px;
  margin-top: -80px;
  margin-left: auto;
}

.status-content__img img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1040px) {
  .status-content__outline {
    margin: 100px 1em 0;
  }

  .status-content__img {
    max-width: 800px;
    margin-top: -20px;
  }

  .status-content__text p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .status-content__inner {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-width: 100%;
  }

  .status-content__inner::after {
    width: 90px;
    height: 72px;
  }

  .status-content__box {
    width: auto;
    padding: 15px;
  }

  .status-content__box h3 {
    font-size: 1.4rem;
    padding: 10px 0;
  }

  .status-content__box h3 span {
    font-size: 1.3rem;
  }

  .status-content__box ul {
    margin-top: 15px;
  }

  .status-content__box ul li {
    line-height: 1.6;
    text-indent: -1em;
    padding-left: 1em;
  }

  .status-content__theme {
    margin: 30px auto 0;
  }

  .status-content__title {
    font-size: 2.0rem;
    line-height: 1.6;
  }

  .status-content__title span {
    font-size: 1.8rem;
  }

  .status-content__outline {
    margin: 30px auto 0;
  }

  .status-content__outline::after {
    content: none;
    font-size: 10rem;
    top: -20px;
  }

  .status-content__text {
    max-width: 100%;
  }

  .status-content__text p {
    font-size: 1.3rem;
  }

  .status-content__img {
    max-width: 80%;
    margin: 40px auto 0;
  }
}

.status-content__data {
  margin: 60px auto 0;
}

.status-content__data h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 20px;
}

.status-content__table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.status-content__table table tr th {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  padding: 15px;
  border: 1px solid #ddd;
}

.status-content__table table tr th.thead {
  background-color: #EFF9FF;
}

.status-content__table table tr th.number {
  width: 5%;
}

.status-content__table table tr th.type {
  width: 15%;
}

.status-content__table table tr th span {
  font-size: 1.2rem;
  display: block;
}

.status-content__table table tr td {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  padding: 15px;
  border: 1px solid #ddd;
}

.status-content__table table tr td.thead {
  background-color: #EFF9FF;
}

.status-content__table table tr td.center {
  text-align: center;
}

.status-content__table table tr td.green {
  background-color: #d9f2d0;
}

.status-content__table table tr td span {
  font-size: 1.2rem;
  display: block;
}

.status-content__table table tr td .red {
  color: #fe3204;
}

.status-content__table table tr td .blue {
  color: var(--blue);
}

.status-content__data p {
  font-size: 1.6rem;
  font-weight: 600;
}

@media (width < 767px) {
  .status-content__data h2 {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 15px;
  }

  .status-content__table {
    overflow-x: scroll;
  }

  .status-content__table table tr th {
    font-size: 1.4rem;
    padding: 10px 5px;
  }

  .status-content__table table tr th:first-child {
    width: 40px;
  }

  .status-content__table table tr th:nth-child(2) {
    width: 140px;
  }

  .status-content__table table tr th:nth-child(3) {
    width: 300px;
  }

  .status-content__table table tr th:nth-child(4) {
    width: 260px;
  }

  .status-content__table table tr td {
    font-size: 1.4rem;
    padding: 10px 5px;
  }

  .status-content__data p {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-top: 10px;
  }
}

.flow-content__solution {
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 100%;
  margin: 100px auto 0;
}

@media (width < 767px) {
  .flow-content__solution {
    margin: 20px auto 0;
  }
}

.flow-content__menu {
  width: 280px;
  list-style-type: none;
}

@media (width < 767px) {
  .flow-content__menu {
    display: none;
  }
}

.flow-content__menu.fixed {
  position: fixed;
  top: 100px;
}

.flow-content__menu li {
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
  position: relative;
}

.flow-content__menu li::before {
  font-size: 1.8rem;
  background-color: #3095D8;
  color: #fff;
  line-height: 1;
  padding: 2px 4px 6px;
  border-radius: 5px;
}

.flow-content__menu li:first-child::before {
  content: "01";
}

.flow-content__menu li:nth-child(2)::before {
  content: "02";
}

.flow-content__menu li:nth-child(3)::before {
  content: "03";
}

.flow-content__menu li:nth-child(4)::before {
  content: "04";
}

.flow-content__menu li:nth-child(5)::before {
  content: "05";
}

.flow-content__menu li:last-child::before {
  content: "06";
}

.flow-content__menu li::after {
  background-color: #3095D8;
  content: "";
  width: 2px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  left: 13px;
}

.flow-content__menu li:last-child:after {
  content: none;
}

.flow-content__menu li a {
  font-weight: 800;
  color: #000000;
}

.flow-content__menu li a.active {
  color: #000000;
}

.flow-content__menu li a:hover {
  color: #000000;
}

.flow-content__body {
  width: 760px;
}

@media (width < 767px) {
  .flow-content__body {
    width: auto;
  }
}

.flow-content__body.menu-fixed {
  margin-left: auto;
}

.flow-content__box {
  background-color: #FFF9E4;
  margin-bottom: 23px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

@media (width < 767px) {
  .flow-content__box {
    padding: 15px;
  }
}

.flow-content__box06 {
  margin-bottom: 0;
}

.flow-content__box h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  column-gap: 20px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  border: none;
}

@media (width < 767px) {
  .flow-content__box h3 {
    font-size: 2rem;
  }
}

.flow-content__box h3::before {
  font-size: 2.4rem;
  font-weight: 600;
  background-color: var(--blue);
  color: #fff;
  line-height: 1;
  padding: 4px 4px 6px;
  border-radius: 5px;
}

.flow-content__box01 h3::before {
  content: "01"
}

.flow-content__box02 h3::before {
  content: "02"
}

.flow-content__box03 h3::before {
  content: "03"
}

.flow-content__box04 h3::before {
  content: "04"
}

.flow-content__box05 h3::before {
  content: "05"
}

.flow-content__box06 h3::before {
  content: "06"
}

.flow-content__box p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 20px;
}

@media (width < 767px) {
  .flow-content__box p {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

.flow-content__box p strong {
  font-weight: 800;
  background: linear-gradient(transparent 50%, #ffff00 50%);
}

@media (width < 767px) {
  .flow-content__box p strong {
    padding: 3px 3px 5px;
  }
}

.anker-link {
  display: block !important;
  margin-top: -100px;
  padding-top: 100px;
  position: relative;
}

.anker-link::after {
  background: url("../images/rr/triangle.svg") no-repeat center / 100%;
  content: "";
  display: block;
  width: 40px;
  height: 23px;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: -23px;
  left: 0;
}

.anker-link:last-child::after {
  content: none;
}

.rr-content__bottom {
  max-width: 100%;
  width: 100%;
  margin: 100px auto;
  padding: 30px;
  border: 2px dotted #FB7E00;
  border-radius: 10px;
}

.rr-content__bottom p {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FB7E00;
  text-align: center;
  line-height: 1;
}

.rr-content__bottom p span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1.4;
}

.rr-content__bottom p.bottom-message::after {
  background: url("../images/rr/arrow_form.svg") no-repeat center / 100%;
  display: block;
  content: "";
  width: 32px;
  height: 18px;
  margin: 20px auto 0;
}

@media (width < 767px) {
  .rr-content__bottom {
    margin: 30px auto 60px;
    padding: 15px;
  }

  .rr-content__bottom p {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .rr-content__bottom p span {
    font-size: 1.3rem;
    display: block;
    text-align: left;
  }
}

.float-btn {
  width: 120px;
  height: 120px;
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 1;
}

.float-btn--chart {
  bottom: 170px;
}

.float-btn a {
  display: block;
}

.float-btn a img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (width < 767px) {
  .float-btn {
    width: 80px;
    height: 80px;
    right: 10px;
    bottom: 10px;
  }

  .float-btn--chart {
    bottom: 100px;
  }
}


/*------------------------------------------------------------------------------
  MW WP Form Radio Button Custom Styles
------------------------------------------------------------------------------*/

/* ラジオボタン全体のコンテナ */
.mwform-radio-field {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
  /* 項目間の余白 */
}

/* 各項目のラベル（クリック範囲） */
.mwform-radio-field label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

/* 既存の appearance: none で消えている実体を完全に非表示にする */
.mwform-radio-field input[type="radio"] {
  display: none !important;
}

/* テキスト部分の装飾（ここを擬似要素のベースにする） */
.mwform-radio-field input[type="radio"]+span {
  padding-left: 28px;
  /* 外枠の円の分だけ余白を作る */
  position: relative;
  display: inline-block;
  line-height: 20px;
}

/* 外枠の円 */
.mwform-radio-field input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #f0f0f0;
  /* 入力欄と同じ背景色 */
  border: 1px solid #ccc;
  border-radius: 50%;
  /* 正円にする */
  transition: all 0.2s ease-in-out;
}

/* 選択時の内側の点（ドット） */
.mwform-radio-field input[type="radio"]+span::after {
  content: "";
  position: absolute;
  left: 5px;
  /* (20px - 10px) / 2 */
  top: 50%;
  transform: translateY(-50%) scale(0);
  /* 通常時は縮小して隠す */
  width: 10px;
  height: 10px;
  background: var(--blue);
  /* メインカラーを使用 */
  border-radius: 50%;
  transition: transform 0.2s ease-in-out;
}

/* 選択された時のスタイル変更 */
.mwform-radio-field input[type="radio"]:checked+span::before {
  border-color: var(--blue);
}

.mwform-radio-field input[type="radio"]:checked+span::after {
  transform: translateY(-50%) scale(1);
  /* 選択時にドットを表示 */
}

/* ホバー時の挙動 */
.mwform-radio-field label:hover input[type="radio"]+span::before {
  border-color: var(--blue);
}

/* 診断チャートエリア */
.diagnosis-content {
  background-color: var(--lightgray);
  margin: 100px auto;
  padding: 80px 0;
  border: 1px solid var(--line);
}

.diagnosis-content__inner {
  max-width: 800px;
  margin: 40px auto 0;
  /*  min-height: 300px;*/
  /* ガタつき防止 */
  position: relative;
  padding: 0 20px;
}

.diagnosis-content__title {
  text-align: center;
}

.diagnosis-content__title h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.diagnosis-content__title h2::after {
  content: none;
}

/* 各ステップ共通 */
.diag-step {
  display: none;
  /* JSで制御 */
}

.diag-step.active {
  display: block;
}

/* 質問ボックス */
.diag-question-box {
  text-align: center;
  margin-bottom: 40px;
}

.step-label {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  padding: 5px 20px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.diag-question-text {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 1.6;
}

/* 選択肢ボタンエリア */
.diag-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

/* 選択肢ボタン */
.diag-btn {
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 30px 20px;
  width: 50%;
  max-width: 350px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  text-align: center;
  /* シャープなデザイン */
  border-radius: 4px;
}

.diag-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 108, 180, 0.2);
}

.diag-btn .btn-sub {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 8px;
  opacity: 0.8;
}

/* 戻るボタン */
.diag-back {
  display: block;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-bottom: 1px solid #999;
  color: #999;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 5px;
  transition: color 0.3s;
}

.diag-back:hover {
  color: #333;
  border-bottom-color: #333;
}

/* === 結果画面 === */
.diag-result-box {
  border: 4px solid var(--blue);
  padding: 40px;
  text-align: center;
  background: #fff;
}

.result-label {
  font-size: 3rem;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 20px !important;
  display: inline-block;
  border-bottom: 2px solid var(--blue);
}

.result-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin-top: 0 !important;
  margin-bottom: 40px !important;
  border-top: 0 !important;
}

.result-title span {
  font-size: 1.6rem;
  display: block;
}

/* コンタクトボタン（CTA） */
.diag-cta-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  padding: 20px 60px;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s;
  border-radius: 4px;
  /* 角丸を少しだけ */
}

.diag-cta-btn:hover {
  opacity: 0.8;
}

.diag-cta-btn::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 15px;
  margin-bottom: 2px;
}

/* リセットボタン */
.diag-reset {
  display: block;
  margin: 30px auto 0;
  background: transparent;
  border: none;
  text-decoration: underline;
  color: #666;
  cursor: pointer;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .diagnosis-content {
    margin: 60px auto;
    padding: 60px 0;
  }

  .diagnosis-content__title h2 {
    font-size: 2.2rem;
    line-height: 1.4;
  }

  .diag-question-text {
    font-size: 1.8rem;
  }

  .diag-options {
    flex-direction: column;
    gap: 15px;
  }

  .diag-btn {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    font-size: 1.6rem;
  }

  .diag-result-box {
    padding: 20px;
    border-width: 2px;
  }

  .result-title {
    font-size: 1.6rem;
    margin-bottom: 30px !important;
  }

  .diag-cta-btn {
    padding: 15px 20px;
    font-size: 1.4rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

/********************
送信完了メッセージ
********************/
.contact-content {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contact-content {
    margin: 30px auto 60px;
    padding: 0 4%;
  }
}

.contact-content__inner {
  background-color: var(--bg);
  max-width: 960px;
  margin: auto;
  padding: 0 40px;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .contact-content__inner {
    max-width: 100%;
    padding: 40px 4%;
  }
}

.contact-content__lead {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .contact-content__lead {
    font-size: 1.4rem;
  }
}

.contact-content__message p {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .contact-content__message p {
    font-size: 1.8rem;
    text-align: left;
  }
}