/* ==================================================
foundation/_reset.scss
================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: top;
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

span {
  display: inline-block;
}

input,
textarea,
select {
  font-size: 16px;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

/* ==================================================
foundation/_base.scss
================================================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #191919;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

/* ==================================================
layout/_header.scss
================================================== */
/* -------------------------------------------------
.l-header
---------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 91px;
  padding-left: 44px;
  padding-right: 20px;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .l-header {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 1023px ) {
  .l-header {
    height: 55px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 767px ) {
  .l-header {
    padding-left: 5.334vw;
    padding-right: 5.334vw;
  }
}

/* 
.l-header__logo
---------------------------------------------------- */
.l-header__logo {
  width: 93px;
}
@media screen and (max-width: 1200px) {
  .l-header__logo {
    width: 80px;
  }
}
@media screen and (max-width: 1023px ) {
  .l-header__logo {
    width: 60px;
  }
}

/* 
.l-header__nav
---------------------------------------------------- */
.l-header__nav {
  width: calc(100% - 93px - 240px - 44px - 20px);
  max-width: 921px;
}
@media screen and (max-width: 1200px) {
  .l-header__nav {
    width: calc(100% - 80px - 280px - 10px - 10px);
    max-width: 921px;
  }
}
@media screen and (max-width: 1023px ) {
  .l-header__nav {
    display: none;
  }
}

/* 
.l-header__button
---------------------------------------------------- */
.l-header__button {
  width: 280px;
}
@media screen and (max-width: 1023px ) {
  .l-header__button {
    display: none;
  }
}

/* 
.l-header__hamburger
---------------------------------------------------- */
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 1023px ) {
  .l-header__hamburger {
    display: block;
    width: 35px;
    height: 20px;
  }
}

/* ==================================================
layout/_footer.scss
================================================== */
/* -------------------------------------------------
.l-footer
---------------------------------------------------- */
.l-footer {
  display: block;
}

/* 
.l-footer__header
---------------------------------------------------- */
.l-footer__header {
  position: relative;
  padding-top: 59px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px ) {
  .l-footer__header {
    padding-top: 16vw;
    padding-bottom: 8vw;
  }
}
.l-footer__header-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* 
.l-footer__footer
---------------------------------------------------- */
.l-footer__footer {
  padding-top: 30px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px ) {
  .l-footer__footer {
    padding: 8vw 5.334vw 5.334vw;
  }
}
.l-footer__footer-nav {
  max-width: 600px;
  margin: 0 auto;
}
.l-footer__footer-copyright {
  padding-top: 55px;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .l-footer__footer-copyright {
    padding-top: 14.667vw;
  }
}
.l-footer__footer-copyright small {
  color: #FFF;
  font-size: 14px;
}
@media screen and (max-width: 767px ) {
  .l-footer__footer-copyright small {
    font-size: 3.2vw;
  }
}

/* ==================================================
layout/_body.scss
================================================== */
/* -------------------------------------------------
.l-body
---------------------------------------------------- */
.l-body {
  overflow: hidden;
  padding-top: 91px;
}
@media screen and (max-width: 1023px ) {
  .l-body {
    padding-top: 55px;
  }
}

/* ==================================================
layout/_section.scss
================================================== */
/* -------------------------------------------------
.l-section
---------------------------------------------------- */
.l-section {
  margin-top: -91px;
  padding-top: 91px;
}
@media screen and (max-width: 1023px ) {
  .l-section {
    margin-top: -55px;
    padding-top: 55px;
  }
}

/* ==================================================
layout/_about-ers.scss
================================================== */
/* -------------------------------------------------
.l-about-ers
---------------------------------------------------- */
.l-about-ers {
  padding: 80px 0;
}
@media screen and (max-width: 767px ) {
  .l-about-ers {
    padding: 21.334vw 0;
  }
}

/* ==================================================
layout/_case-wrapper.scss
================================================== */
/* -------------------------------------------------
.l-case-wrapper
---------------------------------------------------- */
.l-case-wrapper {
  padding-top: 300px;
}
@media screen and (max-width: 767px ) {
  .l-case-wrapper {
    padding-top: 93.334vw;
  }
}

/* ==================================================
object/project/_header-logo.scss
================================================== */
/* -------------------------------------------------
.p-header-logo
---------------------------------------------------- */
.p-header-logo {
  display: block;
}

/* 
.p-header-logo__inner
---------------------------------------------------- */
.p-header-logo__inner {
  display: block;
}

/* ==================================================
object/project/_header-global.scss
================================================== */
/* -------------------------------------------------
.p-header-global
---------------------------------------------------- */
.p-header-global {
  padding-top: 17px;
  padding-left: 10px;
  padding-right: 23px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .p-header-global {
    padding-right: 0;
  }
}
.p-header-global > li > a {
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s;
}
.p-header-global > li > a:hover {
  color: #16991F;
}
@media screen and (max-width: 1200px) {
  .p-header-global > li > a {
    font-size: 13px;
  }
}

/* ==================================================
object/project/_header-right.scss
================================================== */
/* -------------------------------------------------
.p-header-right
---------------------------------------------------- */
.p-header-right {
  display: flex;
  flex-direction: column;
}

/* 
.p-header-right__lang
---------------------------------------------------- */
.p-header-right__lang {
  padding-bottom: 8px;
}

/* 
.p-header-right__contact
---------------------------------------------------- */
/* ==================================================
object/project/_header-lang.scss
================================================== */
/* -------------------------------------------------
.p-header-lang
---------------------------------------------------- */
.p-header-lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
.p-header-lang.open .p-header-lang__right {
  transform: rotate(180deg);
}

/* 
.p-header-lang__left
---------------------------------------------------- */
.p-header-lang__left {
  width: 83px;
  margin-right: 5.5px;
}

/* 
.p-header-lang__right
---------------------------------------------------- */
.p-header-lang__right {
  width: 9px;
  transition: transform 0.2s;
}

/* 
.p-header-lang__nav
---------------------------------------------------- */
.p-header-lang__nav {
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: 99;
  transform: translate(0, 100%);
  display: none;
  padding: 19px 36px;
  background-color: #E6F0E6;
  border-radius: 5px;
}
.p-header-lang__nav-item {
  position: relative;
  margin-top: 20px;
}
.p-header-lang__nav-item:first-child {
  margin-top: 0px;
}
.p-header-lang__nav-item::before {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(-100%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #16991F;
  content: "";
}
.p-header-lang__nav-item a {
  color: #191919;
  font-size: 14px;
  transition: color 0.3s;
}
.p-header-lang__nav-item a:hover {
  color: #16991F;
}
.p-header-lang__nav-item.active a {
  color: #16991F;
}

/* ==================================================
object/project/_hamburger.scss
================================================== */
/* -------------------------------------------------
.p-hamburger
---------------------------------------------------- */
.p-hamburger {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-hamburger__line {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #16991F;
}
.p-hamburger__line:nth-of-type(1) {
  top: 0;
  transition: top 0.2s 0.2s, transform 0.2s;
}
.p-hamburger__line:nth-of-type(2) {
  top: 50%;
  transition: width 0.2s;
}
.p-hamburger__line:nth-of-type(3) {
  top: 100%;
  transition: top 0.2s 0.2s, transform 0.2s;
}
.p-hamburger.open .p-hamburger__line:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(34deg);
  transition: top 0.2s, transform 0.2s 0.2s;
}
.p-hamburger.open .p-hamburger__line:nth-of-type(2) {
  width: 0%;
}
.p-hamburger.open .p-hamburger__line:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-34deg);
  transition: top 0.2s, transform 0.2s 0.2s;
}

/* ==================================================
object/project/_drawr.scss
================================================== */
/* -------------------------------------------------
.p-drawr
---------------------------------------------------- */
.p-drawr {
  position: fixed;
  top: 55px;
  left: 0;
  z-index: 998;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

/* 
.p-drawr__inner
---------------------------------------------------- */
.p-drawr__inner {
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: 0px 0 100px;
}

/* 
.p-drawr__nav
---------------------------------------------------- */
.p-drawr__nav {
  text-align: center;
}
.p-drawr__nav-list a {
  color: #191919;
  font: 700 14px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-drawr__nav-list a {
    font-size: 3.734vw;
  }
}
.p-drawr__nav-list .current-menu-item a {
  color: #16991F;
}
.p-drawr__nav-list li {
  margin-top: 9px;
}
@media screen and (max-width: 767px ) {
  .p-drawr__nav-list li {
    margin-top: 2.4vw;
  }
}

/* 
.p-drawr__contact
---------------------------------------------------- */
.p-drawr__contact {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media screen and (max-width: 767px ) {
  .p-drawr__contact {
    padding-top: 5.334vw;
  }
}

/* 
.p-drawr__lang
---------------------------------------------------- */
.p-drawr__lang {
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 767px ) {
  .p-drawr__lang {
    padding-top: 5.334vw;
  }
}
.p-drawr__lang-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-drawr__lang-button-left {
  width: 90px;
  margin-right: 7px;
}
@media screen and (max-width: 767px ) {
  .p-drawr__lang-button-left {
    width: 24vw;
    margin-right: 1.867vw;
  }
}
.p-drawr__lang-button-right {
  width: 11px;
  transition: transform 0.2s;
}
@media screen and (max-width: 767px ) {
  .p-drawr__lang-button-right {
    width: 2.934vw;
  }
}
.p-drawr__lang-button.open .p-drawr__lang-button-right {
  transform: rotate(180deg);
}
.p-drawr__lang-list {
  display: none;
  margin-top: 8px;
  padding: 10px;
  background-color: #E6F0E6;
}
@media screen and (max-width: 767px ) {
  .p-drawr__lang-list {
    margin-top: 2.134vw;
    padding: 2.667vw;
  }
}
.p-drawr__lang-list-item {
  text-align: center;
}
.p-drawr__lang-list-item:not(:first-child) {
  margin-top: 3px;
}
@media screen and (max-width: 767px ) {
  .p-drawr__lang-list-item:not(:first-child) {
    margin-top: 0.8vw;
  }
}
.p-drawr__lang-list-item a {
  color: #191919;
  font-size: 14px;
}
@media screen and (max-width: 767px ) {
  .p-drawr__lang-list-item a {
    font-size: 3.734vw;
  }
}
.p-drawr__lang-list-item.active a {
  color: #16991F;
}

/* ==================================================
object/project/_footer-header.scss
================================================== */
/* -------------------------------------------------
.p-footer-header
---------------------------------------------------- */
.p-footer-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* 
.p-footer-header__left
---------------------------------------------------- */
.p-footer-header__left {
  width: 50%;
}
@media screen and (max-width: 767px ) {
  .p-footer-header__left {
    width: 100%;
  }
}
.p-footer-header__left-text {
  padding-top: 40px;
  color: #16991F;
  font: 700 20px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-footer-header__left-text {
    padding-top: 8vw;
    font-size: 4.8vw;
  }
}

/* 
.p-footer-header__right
---------------------------------------------------- */
.p-footer-header__right {
  width: 50%;
  padding-left: 70px;
}
@media screen and (max-width: 1240px) {
  .p-footer-header__right {
    padding-left: 5.646vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-footer-header__right {
    width: 100%;
    padding-top: 6.667vw;
    padding-left: 0;
  }
}

/* 
.p-footer-header__logo
---------------------------------------------------- */
.p-footer-header__logo {
  width: 100%;
  padding-top: 42px;
}
@media screen and (max-width: 767px ) {
  .p-footer-header__logo {
    padding-top: 16vw;
  }
}
.p-footer-header__logo-link {
  display: block;
  width: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-footer-header__logo-link {
    width: 24vw;
  }
}

/* ==================================================
object/project/_footer-nav.scss
================================================== */
/* -------------------------------------------------
.p-footer-nav
---------------------------------------------------- */
.p-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px ) {
  .p-footer-nav {
    gap: 5.334vw;
  }
}
.p-footer-nav a {
  color: #FFF;
  font-size: 14px;
  transition: color 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-footer-nav a {
    font-size: 3.467vw;
  }
}
.p-footer-nav a:hover {
  color: #F0D81C;
}

/* ==================================================
object/project/_mv.scss
================================================== */
/* -------------------------------------------------
.p-mv
---------------------------------------------------- */
.p-mv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 91px);
}
@media screen and (max-width: 767px ) {
  .p-mv {
    height: calc(100vh - 55px);
  }
}

/* 
.p-mv__video 
---------------------------------------------------- */
.p-mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 
.p-mv__bg 
---------------------------------------------------- */
.p-mv__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

/* 
.p-mv__title
---------------------------------------------------- */
.p-mv__title {
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-mv__title {
    padding: 0 5.334vw;
  }
}

/* 
.p-mv__scroll
---------------------------------------------------- */
.p-mv__scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-mv__scroll-text {
  color: #FFF;
  font: 30px "Noto Sans JP", sans-serif;
}
.p-mv__scroll-ico {
  width: 43px;
  height: 43px;
  animation: move-y 1s infinite alternate ease-in-out;
}

@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
/* ==================================================
object/project/_first.scss
================================================== */
/* -------------------------------------------------
.p-first
---------------------------------------------------- */
.p-first {
  max-width: 880px;
  padding: 66px 0 100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-first {
    padding: 17.6vw 0 26.667vw;
  }
} /* 
.p-first__title
---------------------------------------------------- */
.p-first__title {
  text-align: center;
  color: #FFF;
  font: 700 24px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-first__title {
    font-size: 5.867vw;
  }
}

/* 
.p-first__text
---------------------------------------------------- */
.p-first__text {
  padding-top: 30px;
  color: #FFF;
  font: 700 18px/1.64 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-first__text {
    padding-top: 8vw;
    font-size: 4.267vw;
  }
}

/* 
.p-first__illust
---------------------------------------------------- */
.p-first__illust {
  max-width: none;
  margin: 66px auto 0;
}
@media screen and (max-width: 767px ) {
  .p-first__illust {
    margin-top: 10.667vw;
  }
}

/* 
.p-first__illus2
---------------------------------------------------- */
.p-first__illust2 {
  max-width: 460px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px ) {
  .p-first__illust2 {
    margin-top: 10.667vw;
  }
}

/* 
.p-first__list
---------------------------------------------------- */
.p-first__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px ) {
  .p-first__list {
    margin-top: 10.667vw;
  }
}

/* 
.p-first__item
---------------------------------------------------- */
.p-first__item {
  position: relative;
  width: calc(25% - 30px);
  margin-top: 40px;
  margin-right: 40px;
}
@media screen and (max-width: 767px ) {
  .p-first__item {
    width: calc(33.3333333333% - 3.556vw);
    margin-top: 5.334vw;
    margin-right: 5.334vw;
  }
}
.p-first__item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px ) {
  .p-first__item:nth-child(4n) {
    margin-right: 5.334vw;
  }
}
.p-first__item:nth-child(-n+4) {
  margin-top: 0;
}
@media screen and (max-width: 767px ) {
  .p-first__item:nth-child(-n+4) {
    margin-top: 5.334vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-first__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px ) {
  .p-first__item:nth-child(-n+3) {
    margin-top: 0;
  }
}
.p-first__item-name {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  transform: translateX(-50%);
  color: #16991F;
  font: 700 22px "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px ) {
  .p-first__item-name {
    bottom: 4vw;
    font-size: 3.467vw;
  }
}

/* ==================================================
object/project/_media.scss
================================================== */
/* -------------------------------------------------
.p-media
---------------------------------------------------- */
.p-media {
  display: flex;
}
@media screen and (max-width: 767px ) {
  .p-media {
    display: block;
  }
}

/* -------------------------------------------------
.p-media__content
---------------------------------------------------- */
.p-media__content {
  width: 50%;
}
@media screen and (max-width: 767px ) {
  .p-media__content {
    width: 100%;
  }
}

/* -------------------------------------------------
.p-media__picture
---------------------------------------------------- */
.p-media__picture {
  width: 50%;
}
@media screen and (max-width: 767px ) {
  .p-media__picture {
    width: 100%;
    padding-top: 8vw;
  }
}
.p-media__picture img {
  width: calc(100% + 8.065vw);
}
@media screen and (max-width: 767px ) {
  .p-media__picture img {
    width: 100%;
  }
}

/* ==================================================
object/project/_about-ers-top.scss
================================================== */
/* -------------------------------------------------
.p-about-ers-top
---------------------------------------------------- */
.p-about-ers-top {
  padding-right: 60px;
}
@media screen and (max-width: 1240px) {
  .p-about-ers-top {
    padding-right: 4.839vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-about-ers-top {
    padding-right: 0;
  }
}

/* 
.p-about-ers-top__subtitle
---------------------------------------------------- */
.p-about-ers-top__subtitle {
  padding-top: 40px;
}
@media screen and (max-width: 767px ) {
  .p-about-ers-top__subtitle {
    padding-top: 10.667vw;
  }
}

/* 
.p-about-ers-top__text
---------------------------------------------------- */
.p-about-ers-top__text {
  padding-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px ) {
  .p-about-ers-top__text {
    padding-top: 5.334vw;
    font-size: 3.734vw;
  }
}

/* 
.p-about-ers-top__button
---------------------------------------------------- */
.p-about-ers-top__button {
  padding-top: 36px;
}
@media screen and (max-width: 767px ) {
  .p-about-ers-top__button {
    padding-top: 8vw;
  }
}

/* ==================================================
object/project/_ers-system.scss
================================================== */
/* -------------------------------------------------
.p-ers-system
---------------------------------------------------- */
.p-ers-system {
  padding-top: 60px;
}
@media screen and (max-width: 767px ) {
  .p-ers-system {
    padding: 16vw 0 0;
  }
}

/* 
.p-ers-system__list
---------------------------------------------------- */
.p-ers-system__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding-top: 37px;
}
@media screen and (max-width: 1240px) {
  .p-ers-system__list {
    gap: 4.839vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-ers-system__list {
    flex-direction: column;
    gap: 5.334vw;
  }
}
.p-ers-system__list-item {
  width: calc(33.3333333333% - 40px);
}
@media screen and (max-width: 767px ) {
  .p-ers-system__list-item {
    width: 100%;
  }
}

/* 
.p-ers-system__button
---------------------------------------------------- */
.p-ers-system__button {
  display: flex;
  justify-content: flex-end;
  padding-top: 40px;
}
@media screen and (max-width: 767px ) {
  .p-ers-system__button {
    padding-top: 10.667vw;
  }
}

/* 
.p-ers-system__links
---------------------------------------------------- */
.p-ers-system__links {
  transform: translateY(220px);
  margin-top: -220px;
  padding-top: 100px;
  display: flex;
}
@media screen and (max-width: 767px ) {
  .p-ers-system__links {
    display: block;
    transform: translateY(93.334vw);
    margin-top: -93.333vw;
    padding-top: 16vw;
  }
}
.p-ers-system__links-item {
  width: 50%;
}
@media screen and (max-width: 767px ) {
  .p-ers-system__links-item {
    width: 100%;
  }
}

/* ==================================================
object/project/_system-item.scss
================================================== */
/* -------------------------------------------------
.p-system-item
---------------------------------------------------- */
.p-system-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 36.8px 30px 20px;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 1240px) {
  .p-system-item {
    padding: 2.968vw 2.42vw 1.613vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-system-item {
    padding: 5.334vw;
  }
}

/* 
.p-system-item__ico
---------------------------------------------------- */
.p-system-item__ico {
  width: 84px;
  height: 84px;
  margin: 0 auto;
}
.p-system-item__ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1240px) {
  .p-system-item__ico {
    width: 6.775vw;
    height: 6.775vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-system-item__ico {
    width: 17.334vw;
    height: 17.334vw;
  }
}

/* 
.p-system-item__title
---------------------------------------------------- */
.p-system-item__title {
  flex-grow: 1;
  max-height: 78px;
  padding-top: 20px;
  text-align: center;
  color: #16991F;
  font: 700 20px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1240px) {
  .p-system-item__title {
    max-height: 6.291vw;
    padding-top: 1.613vw;
    font-size: 1.613vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-system-item__title {
    max-height: none;
    padding-top: 5.334vw;
    font-size: 4.8vw;
  }
}

/* 
.p-system-item__text
---------------------------------------------------- */
.p-system-item__text {
  padding-top: 17px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 1240px) {
  .p-system-item__text {
    padding-top: 1.371vw;
    font-size: 1.452vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-system-item__text {
    padding-top: 3.2vw;
    font-size: 3.734vw;
  }
}

/* ==================================================
object/project/_image-link.scss
================================================== */
/* -------------------------------------------------
.p-image-link
---------------------------------------------------- */
.p-image-link {
  overflow: hidden;
  display: block;
}
.p-image-link:hover .p-image-link__button-ico {
  transform: translateX(40px);
}
@media screen and (max-width: 767px ) {
  .p-image-link:hover .p-image-link__button-ico {
    transform: translateX(10.667vw);
  }
}
.p-image-link:hover .p-image-link__img {
  transform: scale(1.17);
}

/* 
.p-image-link__inner
---------------------------------------------------- */
.p-image-link__inner {
  position: relative;
  padding-bottom: 80%;
}

/* 
.p-image-link__title
---------------------------------------------------- */
.p-image-link__title {
  position: absolute;
  top: 80px;
  left: 62.6px;
  z-index: 1;
}
@media screen and (max-width: 767px ) {
  .p-image-link__title {
    top: 8vw;
    left: 5.334vw;
  }
}

/* 
.p-image-link__img
---------------------------------------------------- */
.p-image-link__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s;
}

/* 
.p-image-link__button
---------------------------------------------------- */
.p-image-link__button {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
}
@media screen and (max-width: 767px ) {
  .p-image-link__button {
    bottom: 5.334vw;
    right: 5.334vw;
  }
}

/* ==================================================
object/project/_case-top.scss
================================================== */
/* -------------------------------------------------
.p-case-top
---------------------------------------------------- */
.p-case-top {
  position: relative;
  padding-top: 26px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px ) {
  .p-case-top {
    padding: 26.667vw 0 16vw;
  }
} /* 
.p-case-top__bg1
---------------------------------------------------- */
.p-case-top__bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 233px;
}
@media screen and (max-width: 767px ) {
  .p-case-top__bg1 {
    top: 32vw;
    height: 21.334vw;
  }
}

/* 
.p-case-top__bg2
---------------------------------------------------- */
.p-case-top__bg2 {
  position: absolute;
  top: 233px;
  left: 0;
  width: 100%;
  height: calc(100% - 233px);
}
@media screen and (max-width: 767px ) {
  .p-case-top__bg2 {
    top: 53.334vw;
    height: calc(100% - 21.334vw - 32vw);
  }
}

/* 
.p-case-top__list
---------------------------------------------------- */
.p-case-top__list {
  position: relative;
  z-index: 1;
  padding-top: 115px;
}
@media screen and (max-width: 767px ) {
  .p-case-top__list {
    padding-top: 13.334vw;
  }
}

/* 
.p-case-top__button
---------------------------------------------------- */
.p-case-top__button {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
}
@media screen and (max-width: 767px ) {
  .p-case-top__button {
    padding-top: 4vw;
  }
}

/* ==================================================
object/project/_article-card.scss
================================================== */
/* -------------------------------------------------
.p-article-card
---------------------------------------------------- */
.p-article-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  transition: opacity 0.3s !important;
}
.p-article-card:hover {
  opacity: 0.7;
}

/* 
.p-article-card__thumbnail
---------------------------------------------------- */
.p-article-card__thumbnail {
  position: relative;
  padding-bottom: 80%;
}
@media screen and (max-width: 767px ) {
  .p-article-card__thumbnail {
    padding-bottom: 70%;
  }
}
.p-article-card__thumbnail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-article-card__thumbnail-category {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
  display: inline-block;
  padding: 7px 20px;
  background-color: #FFFC3A;
  color: #16991F;
  font: 700 14px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-article-card__thumbnail-category {
    font-size: 3.2vw;
    bottom: -2.666vw;
    padding: 1.867vw 5.334vw;
  }
}

/* 
.p-article-card__body
---------------------------------------------------- */
.p-article-card__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 20px 34px;
  color: #191919;
}
@media screen and (max-width: 767px ) {
  .p-article-card__body {
    padding: 5.334vw;
  }
}
.p-article-card__body-time {
  margin-right: 18px;
  font-size: 16px;
}
@media screen and (max-width: 767px ) {
  .p-article-card__body-time {
    margin-right: 2.667vw;
    font-size: 3.734vw;
  }
}
.p-article-card__body-new {
  color: #F09E1C;
  font: 700 14px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-article-card__body-new {
    font-size: 3.734vw;
  }
}
.p-article-card__body-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  padding-top: 10px;
  color: #16991F;
  font: 700 18px/1.8 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-article-card__body-title {
    padding-top: 2.667vw;
    font-size: 4.267vw;
  }
}

/* ==================================================
object/project/_slider.scss
================================================== */
/* -------------------------------------------------
.p-slider
---------------------------------------------------- */
.p-slider {
  position: relative;
}

/* 
.p-slider__buttons
---------------------------------------------------- */
.p-slider__buttons {
  display: flex;
  justify-content: flex-end;
  padding-top: 44px;
}
@media screen and (max-width: 767px ) {
  .p-slider__buttons {
    padding-top: 5.334vw;
  }
}

/* 
.p-slider__button
---------------------------------------------------- */
.p-slider__button {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px !important;
  margin: 0 !important;
  background-image: none !important;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px ) {
  .p-slider__button {
    width: 9.334vw !important;
    height: 9.334vw !important;
  }
}
.p-slider__button img {
  width: 24px;
}
@media screen and (max-width: 767px ) {
  .p-slider__button img {
    width: 5.867vw;
  }
}
.p-slider__button--prev {
  margin-right: 22px !important;
}
.p-slider__button--prev img {
  transform: rotate(180deg);
}

/* ==================================================
object/project/_news-top.scss
================================================== */
/* -------------------------------------------------
.p-news-top
---------------------------------------------------- */
.p-news-top {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 61px;
  padding-bottom: 84px;
}
@media screen and (max-width: 767px ) {
  .p-news-top {
    padding: 16vw 0;
  }
}

/* 
.p-news-top__categories
---------------------------------------------------- */
.p-news-top__categories {
  padding-top: 47px;
}
@media screen and (max-width: 767px ) {
  .p-news-top__categories {
    padding-top: 9.067vw;
  }
}

/* 
.p-news-top__list
---------------------------------------------------- */
.p-news-top__list {
  padding-top: 28px;
}
@media screen and (max-width: 767px ) {
  .p-news-top__list {
    padding-top: 5.867vw;
  }
}

/* 
.p-news-top__button
---------------------------------------------------- */
.p-news-top__button {
  display: flex;
  justify-content: flex-end;
  padding-top: 23px;
}
@media screen and (max-width: 767px ) {
  .p-news-top__button {
    padding-top: 6.667vw;
  }
}

/* ==================================================
object/project/_column-top.scss
================================================== */
/* -------------------------------------------------
.p-column-top
---------------------------------------------------- */
.p-column-top {
  position: relative;
  padding-top: 62px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px ) {
  .p-column-top {
    padding: 16vw 0;
  }
} /* 
.p-column-top__list
---------------------------------------------------- */
.p-column-top__list {
  padding-top: 90px;
}
@media screen and (max-width: 767px ) {
  .p-column-top__list {
    padding-top: 10.667vw;
  }
}

/* 
.p-column-top__button
---------------------------------------------------- */
.p-column-top__button {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
}
@media screen and (max-width: 767px ) {
  .p-column-top__button {
    padding-top: 4vw;
  }
}

/* ==================================================
object/project/_news-categories.scss
================================================== */
/* -------------------------------------------------
.p-news-categories
---------------------------------------------------- */
.p-news-categories {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 40px);
}
@media screen and (max-width: 767px ) {
  .p-news-categories {
    gap: 2.134vw 4vw;
    width: 100%;
  }
}

/* 
.p-news-categories__item
---------------------------------------------------- */
.p-news-categories__item {
  min-width: 160px;
  margin-top: 8px;
  margin-right: 40px;
  padding: 5px 0;
  border: 1px solid #16991F;
  border-radius: 99px;
  color: #16991F;
  text-align: center;
  font: 700 16px "Noto Sans JP", sans-serif;
  line-height: 1;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-news-categories__item {
    min-width: 40vw;
    margin: 0;
    min-width: none;
    width: calc(50% - 2vw);
    padding: 1.334vw 0;
    font-size: 3.734vw;
  }
}
.p-news-categories__item:hover {
  background-color: #16991F;
  color: #FFF;
}
.p-news-categories__item--active {
  background-color: #16991F;
  color: #FFF;
}

/* ==================================================
object/project/_news-link.scss
================================================== */
/* -------------------------------------------------
.p-news-link
---------------------------------------------------- */
.p-news-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 25px 0 12px;
  color: #191919;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-news-link {
    padding: 5.334vw 0 2.4vw;
  }
}
.p-news-link:hover {
  opacity: 0.7;
}
.p-news-link + .p-news-link {
  border-top: 1px solid #B4B4B4;
}

/* 
.p-news-link__time
---------------------------------------------------- */
.p-news-link__time {
  width: 110px;
  font-size: 18px;
  line-height: 1.9;
}
@media screen and (max-width: 767px ) {
  .p-news-link__time {
    font-size: 3.734vw;
    width: 24vw;
  }
}

/* 
.p-news-link__category
---------------------------------------------------- */
.p-news-link__category {
  width: 80px;
  padding: 4px 0;
  margin-top: 10px;
  margin-right: 20px;
  background-color: #16991F;
  text-align: center;
  color: #FFF;
  font: 700 14px/1 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-news-link__category {
    width: 24vw;
    padding: 1.334vw 0;
    margin-top: 0.8vw;
    font-size: 3.734vw;
  }
}

/* 
.p-news-link__title
---------------------------------------------------- */
.p-news-link__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: calc(100% - 110px - 100px);
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px ) {
  .p-news-link__title {
    width: 100%;
    padding-top: 1.334vw;
    font-size: 4vw;
  }
}

/* ==================================================
object/project/_bg-column.scss
================================================== */
/* -------------------------------------------------
.p-bg-column
---------------------------------------------------- */
.p-bg-column {
  background-image: url(../images/common/pic_bg_column.jpg);
  background-size: cover;
  background-position: center center;
}

/* ==================================================
object/project/_bg-case.scss
================================================== */
/* -------------------------------------------------
.p-bg-case
---------------------------------------------------- */
.p-bg-case {
  background-image: url(../images/system/bg_case.jpg);
  background-size: cover;
  background-position: center center;
}

/* ==================================================
object/project/_page-visual.scss
================================================== */
/* -------------------------------------------------
.p-page-visual1
---------------------------------------------------- */
.p-page-visual1 {
  position: relative;
  height: 400px;
}
@media screen and (max-width: 767px ) {
  .p-page-visual1 {
    height: 80vw;
  }
}

/* 
.p-page-visual1__title
---------------------------------------------------- */
.p-page-visual1__title {
  position: absolute;
  top: 80px;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-page-visual1__title {
    top: 21.334vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-page-visual1__title-en img {
    width: auto;
    height: 8vw;
  }
}
.p-page-visual1__title-ja {
  padding-top: 9px;
  color: #FFF;
  font: 700 32px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-page-visual1__title-ja {
    font-size: 5.867vw;
    white-space: nowrap;
  }
}

/* 
.p-page-visual1__cut
---------------------------------------------------- */
.p-page-visual1__cut {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .p-page-visual1__cut {
    height: 18.791vw !important;
    background-position: right bottom !important;
    background-size: 1240px 100% !important;
  }
}
@media screen and (max-width: 767px ) {
  .p-page-visual1__cut {
    height: 21.334vw !important;
    background-position: center bottom !important;
    background-size: 100% 100% !important;
  }
}

/* 
.p-page-visual1__bg-image
---------------------------------------------------- */
.p-page-visual1__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 
.p-page-visual1__breadcrumb
---------------------------------------------------- */
.p-page-visual1__breadcrumb {
  position: absolute;
  bottom: 125px;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: flex-end;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  color: #FFF;
  white-space: nowrap;
}
@media screen and (max-width: 1240px) {
  .p-page-visual1__breadcrumb {
    bottom: 10.081vw;
  }
}
@media screen and (max-width: 767px ) {
  .p-page-visual1__breadcrumb {
    display: none;
  }
}
.p-page-visual1__breadcrumb-inner {
  width: 350px;
  margin-left: auto;
  overflow: hidden;
  color: #191919;
  text-overflow: ellipsis;
}
.p-page-visual1__breadcrumb a, .p-page-visual1__breadcrumb span {
  display: inline;
}
.p-page-visual1__breadcrumb a {
  color: #FFF;
}
.p-page-visual1__breadcrumb a:hover {
  text-decoration: underline;
}

/* ==================================================
object/project/_ers-first.scss
================================================== */
/* -------------------------------------------------
.p-ers-first
---------------------------------------------------- */
.p-ers-first {
  padding-bottom: 78px;
}
@media screen and (max-width: 767px ) {
  .p-ers-first {
    padding-bottom: 0;
  }
}

/* ==================================================
object/project/_resource.scss
================================================== */
/* -------------------------------------------------
.p-resource
---------------------------------------------------- */
.p-resource {
  padding: 75px 75px 60px;
}
@media screen and (max-width: 767px ) {
  .p-resource {
    transform: translate(-5.333vw, 0);
    width: calc(100% + 10.667vw);
    padding: 16vw 5.334vw;
  }
} /* 
.p-resource__top
---------------------------------------------------- */
.p-resource__top {
  padding-left: 28px;
}
@media screen and (max-width: 767px ) {
  .p-resource__top {
    padding-left: 0;
  }
}

/* 
.p-resource__text 
---------------------------------------------------- */
.p-resource__text {
  padding-top: 34px;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-resource__text {
    padding-top: 6.4vw;
    font-size: 3.734vw;
  }
}

/* 
.p-resource__figure
---------------------------------------------------- */
.p-resource__figure {
  padding-top: 37px;
}
@media screen and (max-width: 767px ) {
  .p-resource__figure {
    padding-top: 8vw;
  }
}

/* ==================================================
object/project/_recycle.scss
================================================== */
/* -------------------------------------------------
.p-recycle
---------------------------------------------------- */
.p-recycle {
  padding: 61px 0 80px;
  background-color: #E6F0E6;
}
@media screen and (max-width: 767px ) {
  .p-recycle {
    padding: 16vw 0;
  }
}

/* 
.p-recycle__text
---------------------------------------------------- */
.p-recycle__text {
  padding-top: 25px;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-recycle__text {
    padding-top: 6.4vw;
    font-size: 3.734vw;
  }
}

/* 
.p-recycle__figure
---------------------------------------------------- */
.p-recycle__figure {
  padding-top: 36px;
}
@media screen and (max-width: 767px ) {
  .p-recycle__figure {
    padding-top: 8vw;
  }
}

/* ==================================================
object/project/_system-first.scss
================================================== */
/* -------------------------------------------------
.p-system-first
---------------------------------------------------- */
.p-system-first {
  padding: 55px 0 80px;
}
@media screen and (max-width: 767px ) {
  .p-system-first {
    padding: 16vw 0;
  }
}

/* ==================================================
object/project/_system-video.scss
================================================== */
/* -------------------------------------------------
.p-system-video
---------------------------------------------------- */
.p-system-video {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

/* 
.p-system-video__title
---------------------------------------------------- */
.p-system-video__title {
  color: #FFF;
  font: 700 24px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-system-video__title {
    font-size: 5.334vw;
  }
}

/* 
.p-system-video__video
---------------------------------------------------- */
.p-system-video__video {
  width: 100%;
  margin-top: 27px;
  background-color: #D9D9D9;
}
@media screen and (max-width: 767px ) {
  .p-system-video__video {
    margin-top: 2.667vw;
  }
}

/* ==================================================
object/project/_system.scss
================================================== */
/* -------------------------------------------------
.p-system
---------------------------------------------------- */
.p-system {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 60px;
}
@media screen and (max-width: 767px ) {
  .p-system {
    margin-top: 10.667vw;
    margin-bottom: 16vw;
    width: calc(100% + 10.667vw);
    transform: translate(-5.333vw, 0);
    padding: 16vw 5.334vw;
  }
}

/* 
.p-system__text
---------------------------------------------------- */
.p-system__text {
  padding-top: 38px;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-system__text {
    padding-top: 7.467vw;
    font-size: 3.734vw;
  }
}

/* 
.p-system__figure
---------------------------------------------------- */
.p-system__figure {
  margin-top: 46px;
}
@media screen and (max-width: 767px ) {
  .p-system__figure {
    margin-top: 8vw;
  }
}

/* 
.p-system__size
---------------------------------------------------- */
.p-system__size {
  padding: 100px 0 20px;
}

/* ==================================================
object/project/_ers-table.scss
================================================== */
/* -------------------------------------------------
.p-ers-table
---------------------------------------------------- */
@media screen and (max-width: 767px ) {
  .p-ers-table {
    width: calc(100% + 5.334vw);
    /* overflow: auto; */
    overflow: visible;
  }
}
.p-ers-table > table:first-child {
  width: 240px;
}
.p-ers-table table:first-child + * {
  width: calc(100% - 240px);
}
.p-ers-table table {
  border-collapse: collapse;
  margin-top: 24px;
}
.p-ers-table table td {
  white-space: nowrap;
}
.p-ers-table thead tr:nth-of-type(1) {
  height: 34px;
}
.p-ers-table tbody tr:nth-of-type(2) {
  height: 61.39px;
}
@media screen and (max-width: 767px ) {
  .p-ers-table table:first-child {
    width: 200px;
  }
  .p-ers-table table:first-child + * {
    width: calc(100% - 200px);
  }
  .p-ers-table thead tr:nth-of-type(1) {
    height: 31px;
  }
  .p-ers-table tbody tr:nth-of-type(2) {
    height: 55px;
  }
}
.p-ers-table table td {
  border: 1px solid #bbb;
  text-align: center;
  vertical-align: middle;
  padding: 3px 10px;
}
@media screen and (max-width: 767px ) {
  .p-ers-table table td {
    font-size: 14px;
  }
}

/* 
.p-ers-table__flex
---------------------------------------------------- */
.p-ers-table__flex {
  display: flex;
  align-items: flex-start;
  overflow: auto;
}
@media screen and (max-width: 767px ) {
  .p-ers-table__flex {
    overflow: visible;
  }
}

/* 
.p-ers-table__second
---------------------------------------------------- */
.p-ers-table__second table {
  width: 100%;
}
@media screen and (max-width: 767px ) {
  .p-ers-table__second {
    overflow: auto;
  }

  .p-ers-table__second table {
    width: auto;
  }
}

/* 
.p-ers-table__text
---------------------------------------------------- */
.p-ers-table__text {
  font-size: 18px;
  margin-top: 8px;
}
@media screen and (max-width: 767px ) {
  .p-ers-table__text {
    /* white-space: nowrap; */
  }
}

/* ==================================================
object/project/_patent.scss
================================================== */
/* -------------------------------------------------
.p-patent
---------------------------------------------------- */
.p-patent {
  padding: 40px 100px 30px;
  margin-top: 50px;
  background-color: #E6F0E6;
}
@media screen and (max-width: 767px ) {
  .p-patent {
    padding: 8vw 4vw;
    margin-top: 13.334vw;
  }
}
.p-patent__title {
  position: relative;
  padding-bottom: 16px;
  text-align: center;
  font: 700 24px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-patent__title {
    padding-bottom: 3.467vw;
    font-size: 5.334vw;
  }
}
.p-patent__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 40px;
  height: 6px;
  background-color: #FFFC3A;
}
.p-patent__text1 {
  padding-top: 40px;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-patent__text1 {
    padding-top: 7.467vw;
    font-size: 3.734vw;
  }
}
.p-patent__text2 {
  padding-top: 18px;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-patent__text2 {
    padding-top: 3.734vw;
    font-size: 3.734vw;
  }
}
.p-patent__text2--accent {
  color: #16991F;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 767px ) {
  .p-patent__text2--accent {
    font-size: 4.267vw;
  }
}
.p-patent__picture {
  max-width: 318px;
  margin: 18px auto 0;
}
@media screen and (max-width: 767px ) {
  .p-patent__picture {
    margin: 3.467vw auto 0;
  }
}
.p-patent__title2 {
  display: inline-block;
  padding: 0 10px;
  margin-top: 20px;
  color: #16991F;
  background-color: #FFFC3A;
  font: 700 20px/35px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-patent__title2 {
    margin-top: 7.2vw;
    padding: 0 2.667vw;
    font-size: 4.8vw;
  }
}
.p-patent__list {
  padding-top: 30px;
}
@media screen and (max-width: 767px ) {
  .p-patent__list {
    padding-top: 5.334vw;
  }
}
.p-patent__list-item {
  position: relative;
  padding-left: 44px;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-patent__list-item {
    padding-left: 8vw;
    font-size: 4vw;
  }
}
.p-patent__list-item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px ) {
  .p-patent__list-item:not(:first-child) {
    margin-top: 3.734vw;
  }
}
.p-patent__list-item::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 20px;
  height: 4px;
  background-color: #16991F;
}
@media screen and (max-width: 767px ) {
  .p-patent__list-item::after {
    width: 5.334vw;
    height: 0.8vw;
    top: 3.2vw;
  }
}

/* ==================================================
object/project/_comparison.scss
================================================== */
/* -------------------------------------------------
.p-comparison
---------------------------------------------------- */
.p-comparison {
  padding: 60px 0 79px;
}
@media screen and (max-width: 767px ) {
  .p-comparison {
    padding: 16vw 0;
  }
}

/* 
.p-comparison__scroll
---------------------------------------------------- */
@media screen and (max-width: 767px ) {
  .p-comparison__scroll {
    display: flex;
    align-items: flex-start;
    overflow: auto;
    width: calc(100% + 5.334vw);
  }

  .p-comparison__scroll > table:first-child {
    width: 155px;
    margin-top: 10.134vw;
    background-color: #F2F2F2;
  }
  .p-comparison__scroll > table:first-child tr:nth-child(2n) {
    background-color: #fff;
  }
  /* .p-comparison__scroll > table:first-child tr:nth-of-type(1) {
    height: 140px;
  } */
}

/* 
.p-comparison__second
---------------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-comparison__second {
    width: calc(100% - 155px);
    overflow: auto;
  }

  /* .p-comparison__second table tr:nth-of-type(3) {
    height: 114px;
  }
  .p-comparison__second table tr:nth-of-type(4) {
    height: 81px;
  } */
}

/* 
.p-comparison__table
---------------------------------------------------- */
.p-comparison__table {
  margin-top: 40px;
}
@media screen and (max-width: 767px ) {
  .p-comparison__table {
    overflow: auto;
    margin-top: 10.134vw;
  }
}

/* ==================================================
object/project/_comparison-table.scss
================================================== */
/* -------------------------------------------------
.p-comparison-table
---------------------------------------------------- */
.p-comparison-table {
  width: 100%;
  background-color: #F2F2F2;
  border-collapse: collapse;
}
@media screen and (max-width: 767px ) {
  .p-comparison-table {
    width: 900px;
  }
} /* 
.p-comparison-table__item
---------------------------------------------------- */
.p-comparison-table__item {
  border: 0;
}
.p-comparison-table__item:nth-child(2n) {
  background-color: #fff;
}
.p-comparison-table__item-space, .p-comparison-table__item-th {
  /* width: 16.6666%; */
}
.p-comparison-table__item-header, .p-comparison-table__itemtd {
  width: 20.8333%;
}
.p-comparison-table__item-header {
  padding: 11px 0 18px;
  border-left: 1px solid #16991F;
}
.p-comparison-table__item-header-title {
  font: 700 16px "Noto Sans JP", sans-serif;
}
.p-comparison-table__item-header-title--bg-yellow {
  padding: 5px 26px;
  background-color: #FFFC3A;
  color: #16991F;
}
.p-comparison-table__item-header-illust {
  width: 164px;
  height: 72px;
  margin-top: 10px;
}
.p-comparison-table__item-header-illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-comparison-table__item-th {
  padding: 13px 10px;
  font-size: 18px;
  vertical-align: middle;
}
@media screen and (max-width: 767px ) {
  .p-comparison-table__item-th {
    padding: 2.667vw 1.334vw;
    font-size: 3.734vw;
  }
}
.p-comparison-table__item-td {
  padding: 13px 10px;
  border-left: 1px solid #16991F;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-comparison-table__item-td {
    padding: 2.667vw 1.334vw;
    font-size: 3.734vw;
  }
}

/* ==================================================
object/project/_step.scss
================================================== */
/* -------------------------------------------------
.p-step
---------------------------------------------------- */
.p-step {
  padding: 75px 0 80px;
  background-color: #E6F0E6;
}
@media screen and (max-width: 767px ) {
  .p-step {
    padding: 16vw 0;
  }
}

/* 
.p-step__body
---------------------------------------------------- */
.p-step__body {
  padding-top: 38px;
}
@media screen and (max-width: 767px ) {
  .p-step__body {
    padding-top: 8vw;
  }
}

/* 
.p-step__yellow
---------------------------------------------------- */
.p-step__yellow {
  padding: 23px 20px;
  margin-top: 60px;
  background-color: #FFFC3A;
  text-align: center;
  color: #16991F;
  font: 700 20px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-step__yellow {
    margin-top: 8vw;
    padding: 5.334vw;
    font-size: 4.267vw;
  }
}

/* ==================================================
object/project/_step-item.scss
================================================== */
/* -------------------------------------------------
.p-step-item
---------------------------------------------------- */
.p-step-item {
  display: flex;
}
@media screen and (max-width: 767px ) {
  .p-step-item {
    flex-direction: column;
  }
}
.p-step-item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px ) {
  .p-step-item:not(:first-child) {
    margin-top: 11.734vw;
  }
}

/* 
.p-step-item__picture
---------------------------------------------------- */
.p-step-item__picture {
  width: 300px;
}
@media screen and (max-width: 767px ) {
  .p-step-item__picture {
    width: 100%;
    order: 2;
    margin-top: 4.534vw;
  }
}

/* 
.p-step-item__content 
---------------------------------------------------- */
.p-step-item__content {
  max-width: 600px;
  width: calc(100% - 300px);
  padding-left: 60px;
}
@media screen and (max-width: 767px ) {
  .p-step-item__content {
    max-width: none;
    width: 100%;
    padding-left: 0;
    order: 1;
  }
}
.p-step-item__content-num {
  width: auto;
  height: 48px;
}
@media screen and (max-width: 767px ) {
  .p-step-item__content-num {
    height: 8vw;
  }
}
.p-step-item__content-title {
  padding-top: 20px;
  color: #16991F;
  font: 700 20px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-step-item__content-title {
    padding-top: 0;
    margin-top: -7.2vw;
    padding-left: 17.334vw;
    font-size: 5.067vw;
  }
}
.p-step-item__content-text {
  padding-top: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-step-item__content-text {
    padding-top: 3.2vw;
    font-size: 3.734vw;
  }
}

/* ==================================================
object/project/_faq.scss
================================================== */
/* -------------------------------------------------
.p-faq
---------------------------------------------------- */
.p-faq {
  padding-top: 26px;
  padding-bottom: 81px;
}
@media screen and (max-width: 767px ) {
  .p-faq {
    padding: 6.667vw 0 16vw;
  }
}

/* 
.p-faq__title
---------------------------------------------------- */
.p-faq__title {
  position: relative;
  padding-left: 50px;
  color: #FFF;
  font: 700 24px "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-faq__title {
    font-size: 5.334vw;
  }
}
.p-faq__title::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #FFFC3A;
  content: "";
}

/* 
.p-faq__group
---------------------------------------------------- */
.p-faq__group + .p-faq__group {
  margin-top: 60px;
}
@media screen and (max-width: 767px ) {
  .p-faq__group + .p-faq__group {
    margin-top: 13.334vw;
  }
}
.p-faq__group-white {
  padding: 45px 20px 60px 100px;
  margin-top: 25px;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 767px ) {
  .p-faq__group-white {
    padding: 5.334vw;
    margin-top: 5.334vw;
  }
}

/* ==================================================
object/project/_faq-item.scss
================================================== */
/* -------------------------------------------------
.p-faq-item
---------------------------------------------------- */
.p-faq-item + .p-faq-item {
  padding-top: 30px;
  margin-top: 28px;
  border-top: 1px solid #E6F0E6;
}
@media screen and (max-width: 767px ) {
  .p-faq-item + .p-faq-item {
    padding-top: 8vw;
    margin-top: 7.467vw;
  }
}

/* 
.p-faq-item__string
---------------------------------------------------- */
.p-faq-item__string {
  position: absolute;
  left: 0;
  top: 6px;
  width: auto;
  height: 28px;
}
@media screen and (max-width: 767px ) {
  .p-faq-item__string {
    height: 6.934vw;
    top: 1.6vw;
  }
}

/* 
.p-faq-item__header
---------------------------------------------------- */
.p-faq-item__header {
  position: relative;
  padding-left: 60px;
  padding-right: 80px;
}
@media screen and (max-width: 767px ) {
  .p-faq-item__header {
    padding-left: 16vw;
    padding-right: 0vw;
  }
}
.p-faq-item__header-title {
  font: 700 18px/2 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .p-faq-item__header-title {
    font-size: 4.267vw;
  }
}

/* 
.p-faq-item__body
---------------------------------------------------- */
.p-faq-item__body {
  position: relative;
  padding-top: 28px;
  padding-left: 60px;
  padding-right: 80px;
}
@media screen and (max-width: 767px ) {
  .p-faq-item__body {
    padding-top: 7.467vw;
    padding-left: 16vw;
    padding-right: 0vw;
  }
}
.p-faq-item__body .p-faq-item__string {
  top: 32px;
}
@media screen and (max-width: 767px ) {
  .p-faq-item__body .p-faq-item__string {
    top: 8vw;
  }
}
.p-faq-item__body-text {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px ) {
  .p-faq-item__body-text {
    font-size: 3.734vw;
  }
}

/* ==================================================
object/project/_recruit.scss
================================================== */
/* -------------------------------------------------
.p-recruit
---------------------------------------------------- */
.p-recruit {
  padding: 26px 0 80px;
}
@media screen and (max-width: 767px ) {
  .p-recruit {
    padding: 6.667vw 0 16vw;
  }
}

/* 
.p-recruit__white
---------------------------------------------------- */
.p-recruit__white {
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 767px ) {
  .p-recruit__white {
    width: calc(100% + 8vw);
    transform: translate(-4vw, 0);
  }
}
.p-recruit__white-table {
  padding-top: 40px;
}
@media screen and (max-width: 767px ) {
  .p-recruit__white-table {
    padding-top: 6.667vw;
  }
}
.p-recruit__white-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  padding-top: 40px;
}
@media screen and (max-width: 767px ) {
  .p-recruit__white-gallery {
    gap: 5.334vw 5.334vw;
  }
}
.p-recruit__white-gallery img {
  width: 0;
  min-width: calc(33.3333333333% - 33.3333333333px);
  flex: 1;
}
@media screen and (max-width: 767px ) {
  .p-recruit__white-gallery img {
    min-width: calc(50% - 2.667vw);
  }
}

/* 
.p-recruit__inner
---------------------------------------------------- */
.p-recruit__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (max-width: 767px ) {
  .p-recruit__inner {
    padding: 16vw 3.2vw;
  }
}

/* ==================================================
object/project/_recruit-table.scss
================================================== */
/* -------------------------------------------------
.p-recruit-table
---------------------------------------------------- */
.p-recruit-table {
  width: 100%;
  background-color: #F2F2F2;
  border-collapse: collapse;
}

/* 
.p-recruit-table__item
---------------------------------------------------- */
.p-recruit-table__item:nth-child(2n) {
  background-color: #fff;
}

/* 
.p-recruit-table__header
---------------------------------------------------- */
.p-recruit-table__header {
  width: 200px;
  padding: 20px;
  border-right: 1px solid #16991F;
  font-size: 18px;
  vertical-align: middle;
}
@media screen and (max-width: 767px ) {
  .p-recruit-table__header {
    width: 32vw;
    padding: 2.667vw;
    font-size: 3.2vw;
  }
}

/* 
.p-recruit-table__body
---------------------------------------------------- */
.p-recruit-table__body {
  width: calc(100% - 200px);
  padding: 20px 40px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px ) {
  .p-recruit-table__body {
    width: calc(100% - 32vw);
    padding: 2.667vw;
    font-size: 3.2vw;
  }
}

/* ==================================================
object/project/_white-ly.scss
================================================== */
/* -------------------------------------------------
.p-white-ly
---------------------------------------------------- */
.p-white-ly {
  padding: 26px 0 80px;
}
@media screen and (max-width: 767px ) {
  .p-white-ly {
    padding: 6.667vw 0 16vw;
  }
}

/* 
.p-white-ly__box
---------------------------------------------------- */
.p-white-ly__box {
  background-color: #FFF;
  padding: 60px 0;
}
@media screen and (max-width: 767px ) {
  .p-white-ly__box {
    padding: 16vw 0;
  }
}

/* 
.p-white-ly__inner
---------------------------------------------------- */
.p-white-ly__inner {
  max-width: 890px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px ) {
  .p-white-ly__inner {
    padding: 0 4vw;
  }
}

/* ==================================================
object/project/_company-table.scss
================================================== */
/* -------------------------------------------------
.p-company-table
---------------------------------------------------- */
.p-company-table {
  width: 100%;
  margin-top: 45px;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 767px ) {
  .p-company-table {
    margin-top: 8vw;
  }
} /* 
.p-company-table__item
---------------------------------------------------- */
.p-company-table__item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
@media screen and (max-width: 767px ) {
  .p-company-table__item {
    padding: 3.734vw 0;
  }
}
.p-company-table__item-header {
  width: 250px;
}
@media screen and (max-width: 767px ) {
  .p-company-table__item-header {
    width: 32vw;
    font-size: 3.467vw;
    text-align: left;
    vertical-align: middle;
  }
}
.p-company-table__item-body {
  width: calc(100% - 250px);
}
@media screen and (max-width: 767px ) {
  .p-company-table__item-body {
    width: calc(100% - 32vw);
    font-size: 3.467vw;
  }
}
.p-company-table__item-body a {
  color: #191919;
  transition: opacity 0.3s;
}
.p-company-table__item-body a:hover {
  opacity: 0.6;
}

/* ==================================================
object/project/_access.scss
================================================== */
/* -------------------------------------------------
.p-access
---------------------------------------------------- */
.p-access {
  padding-top: 80px;
}
@media screen and (max-width: 767px ) {
  .p-access {
    padding-top: 14.934vw;
  }
}

/* 
.p-access__text
---------------------------------------------------- */
.p-access__text {
  padding-top: 35px;
}
@media screen and (max-width: 767px ) {
  .p-access__text {
    padding-top: 8vw;
    font-size: 3.734vw;
  }
}

/* 
.p-access__map
---------------------------------------------------- */
.p-access__map {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 767px ) {
  .p-access__map {
    margin-top: 4.8vw;
    height: 53.334vw;
  }
}

/* ==================================================
object/project/_case-study.scss
================================================== */
/* -------------------------------------------------
.p-case-study
---------------------------------------------------- */
.p-case-study {
  padding: 26px 0 150px;
}
@media screen and (max-width: 767px ) {
  .p-case-study {
    padding: 6.667vw 0 16vw;
  }
}

/* 
.p-case-study__list 
---------------------------------------------------- */
.p-case-study__list {
  padding-top: 40px;
}
@media screen and (max-width: 767px ) {
  .p-case-study__list {
    padding-top: 10.667vw;
  }
}

/* ==================================================
object/project/_categories.scss
================================================== */
/* -------------------------------------------------
.p-categories
---------------------------------------------------- */
.p-categories {
  max-width: 880px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
}
@media screen and (max-width: 767px ) {
  .p-categories {
    padding: 4.8vw;
  }
}

/* 
.p-categories__title
---------------------------------------------------- */
.p-categories__title {
  text-align: center;
}
.p-categories__title span {
  position: relative;
  padding-left: 50px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-categories__title span {
    font-size: 4.267vw;
    padding-left: 40px;
  }
}
.p-categories__title span::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 40px;
  height: 6px;
  background-color: #FFFC3A;
  content: "";
}
@media screen and (max-width: 767px ) {
  .p-categories__title span::after {
    width: 8.534vw;
  }
}

/* 
.p-categories__list
---------------------------------------------------- */
.p-categories__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 15px;
}
@media screen and (max-width: 767px ) {
  .p-categories__list {
    gap: 4vw;
    padding-top: 3.467vw;
  }
}
.p-categories__list-item {
  min-width: calc(16.6666666667% - 16.6666666667px);
  padding: 0 10px;
  border-radius: 99px;
  border: 1px solid #16991F;
  text-align: center;
  color: #16991F;
  font: 700 14px/28px "Noto Sans JP", sans-serif;
  transition: 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-categories__list-item {
    min-width: calc(33.3333333333% - 2.6666666667vw);
    padding: 0 2.134vw;
    font-size: 3.2vw;
    line-height: 6.134vw;
  }
}
.p-categories__list-item:hover {
  background-color: #16991F;
  color: #FFF;
}
.p-categories__list-item--active {
  background-color: #16991F;
  color: #FFF;
}
.p-categories__list-item:first-child {
  width: 170px;
  margin-left: calc((100% - 170px) / 2);
  margin-right: calc((100% - 170px) / 2);
}
@media screen and (max-width: 767px ) {
  .p-categories__list-item:first-child {
    width: 34.667vw;
  }
}

/* ==================================================
object/project/_entry-list.scss
================================================== */
/* -------------------------------------------------
.p-entry-list
---------------------------------------------------- */
.p-entry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-entry-list {
    flex-direction: column;
    gap: 10.667vw;
  }
}

/* 
.p-entry-list__item
---------------------------------------------------- */
.p-entry-list__item {
  width: calc(33.3333333333% - 40px);
}
@media screen and (max-width: 767px ) {
  .p-entry-list__item {
    width: 100%;
  }
}

/* ==================================================
object/project/_paginate.scss
================================================== */
/* -------------------------------------------------
.p-paginate
---------------------------------------------------- */
.p-paginate {
  padding-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-paginate {
    padding-top: 12vw;
  }
}
.p-paginate .wp-pagenavi a, .p-paginate .wp-pagenavi span {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #16991F;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  transition: 0.3s;
  border-radius: 4px;
}
@media screen and (max-width: 767px ) {
  .p-paginate .wp-pagenavi a, .p-paginate .wp-pagenavi span {
    width: 9.334vw;
    height: 9.334vw;
    line-height: 9.334vw;
  }
}
.p-paginate .wp-pagenavi a:not(:last-child), .p-paginate .wp-pagenavi span:not(:last-child) {
  margin-right: 18px;
}
@media screen and (max-width: 767px ) {
  .p-paginate .wp-pagenavi a:not(:last-child), .p-paginate .wp-pagenavi span:not(:last-child) {
    margin-right: 2.667vw;
  }
}
.p-paginate .wp-pagenavi a.current, .p-paginate .wp-pagenavi span.current {
  background-color: #F0D81C;
  color: #191919;
}
.p-paginate .wp-pagenavi a:hover {
  background-color: #F0D81C;
  color: #191919;
}
.p-paginate.v2 .wp-pagenavi a, .p-paginate.v2 .wp-pagenavi span {
  border: 1px solid #16991F;
  line-height: 38px;
}
@media screen and (max-width: 767px ) {
  .p-paginate.v2 .wp-pagenavi a, .p-paginate.v2 .wp-pagenavi span {
    line-height: 8.8vw;
  }
}
.p-paginate.v2 .wp-pagenavi a.current, .p-paginate.v2 .wp-pagenavi span.current {
  border-color: #F0D81C;
}
.p-paginate.v2 .wp-pagenavi a:hover {
  border-color: #F0D81C;
}

/* ==================================================
object/project/_contact-ly.scss
================================================== */
/* -------------------------------------------------
.p-contact-ly
---------------------------------------------------- */
.p-contact-ly {
  padding: 26px 0 70px;
}

/* 
.p-contact-ly__top
---------------------------------------------------- */
.p-contact-ly__top {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-contact-ly__top {
    font-size: 3.734vw;
  }
}
.p-contact-ly__top p + p {
  margin-top: 10px;
}

/* 
.p-contact-ly__attention
---------------------------------------------------- */
.p-contact-ly__attention {
  width: 287px;
  margin-top: 37px;
  padding: 12px 0 12px 60px;
  background-color: #fff;
  border-left: 6px solid #FFFC3A;
}
@media screen and (max-width: 767px ) {
  .p-contact-ly__attention {
    width: 66.667vw;
    margin-top: 8vw;
    padding: 3.2vw 0 3.2vw 13.334vw;
  }
}
.p-contact-ly__attention-item {
  font-size: 18px;
}
@media screen and (max-width: 767px ) {
  .p-contact-ly__attention-item {
    font-size: 4.267vw;
  }
}
.p-contact-ly__attention-item span {
  color: #FF0000;
}
.p-contact-ly__attention-item + .p-contact-ly__attention-item {
  margin-top: 10px;
}
@media screen and (max-width: 767px ) {
  .p-contact-ly__attention-item + .p-contact-ly__attention-item {
    margin-top: 2.134vw;
  }
}

/* 
.p-contact-ly__body
---------------------------------------------------- */
.p-contact-ly__body {
  margin-top: 40px;
  border-radius: 5px;
  padding: 70px 100px 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px ) {
  .p-contact-ly__body {
    margin-top: 10.667vw;
    padding: 16vw 2.667vw;
  }
}

/* ==================================================
object/project/_contact-item.scss
================================================== */
/* -------------------------------------------------
.p-contact-item
---------------------------------------------------- */
.p-contact-item {
  display: flex;
}
@media screen and (max-width: 767px ) {
  .p-contact-item {
    display: block;
  }
}
.p-contact-item.center {
  align-items: center;
}
.p-contact-item + .p-contact-item {
  margin-top: 30px;
}
@media screen and (max-width: 767px ) {
  .p-contact-item + .p-contact-item {
    margin-top: 8vw;
    padding-top: 8vw;
    border-top: 1px solid #DDD;
  }
}

/* 
.p-contact-item__header 
---------------------------------------------------- */
.p-contact-item__header {
  width: 230px;
  color: #16991F;
  font: 700 18px "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 767px ) {
  .p-contact-item__header {
    width: 100%;
    font-size: 4.267vw;
    line-height: 1.6;
  }
}
.p-contact-item__header span > span {
  color: red;
}

/* 
.p-contact-item__body 
---------------------------------------------------- */
.p-contact-item__body {
  width: calc(100% - 230px);
}
@media screen and (max-width: 767px ) {
  .p-contact-item__body {
    width: 100%;
    padding-top: 4.8vw;
  }
}
.p-contact-item__body .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px ) {
  .p-contact-item__body .wpcf7-form-control.wpcf7-radio {
    gap: 4.267vw;
  }
}
.p-contact-item__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
.p-contact-item__body .wpcf7-form-control.wpcf7-radio label {
  display: flex;
  align-items: center !important;
}
.p-contact-item__body .wpcf7-form-control.wpcf7-radio label input {
  -webkit-appearance: none;
  border-radius: 50%;
  margin: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  margin-right: 15px;
}
.p-contact-item__body .wpcf7-form-control.wpcf7-radio label input:checked {
  background-image: url(../images/contact/circle.svg);
  background-size: 10px 10px;
  background-position: center center;
  background-repeat: no-repeat;
}
.p-contact-item__body .wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px ) {
  .p-contact-item__body .wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
    font-size: 3.734vw;
  }
}
.p-contact-item__body .wpcf7-form-control-wrap {
  width: 100%;
}
.p-contact-item__body input[type=text],
.p-contact-item__body input[type=email],
.p-contact-item__body input[type=tel] {
  -webkit-appearance: none;
  display: block;
  max-width: 600px;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 0;
  background-color: #E6F0E6;
  padding: 15px;
}
.p-contact-item__body textarea {
  -webkit-appearance: none;
  display: block;
  max-width: 600px;
  width: 100%;
  height: 254px;
  border-radius: 5px;
  border: 0;
  background-color: #E6F0E6;
  padding: 15px;
}
.p-contact-item__body .ex {
  font-size: 14px;
  padding-bottom: 10px;
}
.p-contact-item__body .privacy {
  color: #2A3ED5;
  text-decoration: underline;
  font-size: 18px;
  transition: 0.3s;
  line-height: 1.34;
  padding-bottom: 12px;
}
.p-contact-item__body .privacy:hover {
  opacity: 0.6;
}
.p-contact-item__body .wpcf7-list-item.first.last {
  margin-left: 0;
}
.p-contact-item__body .wpcf7-list-item.first.last label {
  display: flex;
  align-items: center;
}
.p-contact-item__body .wpcf7-list-item.first.last label input {
  width: 18px;
  height: 18px;
  margin-right: 14px;
}
.p-contact-item__body .wpcf7-list-item.first.last label .wpcf7-list-item-label {
  font-size: 18px;
  line-height: 1.34;
}
.p-contact-item__body .wpcf7-not-valid-tip {
  font-size: 12px;
}

/* 
.p-form-item__button
---------------------------------------------------- */
.p-form-item__button {
  padding-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-form-item__button {
    padding-top: 8vw;
  }
}
.p-form-item__button-inner {
  position: relative;
  display: inline-block;
  width: 500px;
  height: 80px;
}
@media screen and (max-width: 767px ) {
  .p-form-item__button-inner {
    width: 74.667vw;
    height: 16vw;
  }
}
.p-form-item__button-inner::after {
  position: absolute;
  top: 50%;
  right: 90px;
  width: 50px;
  height: 50px;
  transform: translate(0, -50%);
  background-image: url(../images/contact/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: 0.5s;
}
@media screen and (max-width: 767px ) {
  .p-form-item__button-inner::after {
    right: 8vw;
  }
}
.p-form-item__button-inner:hover::after {
  right: 15px;
}
.p-form-item__button input {
  width: 100%;
  height: 100%;
  border-radius: 99px;
  background-color: #F0D81C;
  border: 0;
  cursor: pointer;
  background-image: url(../images/contact/text_submit.svg);
  background-repeat: no-repeat;
  background-position: left 40% center;
}

/* ==================================================
object/project/_news-ly.scss
================================================== */
/* -------------------------------------------------
.p-news-ly
---------------------------------------------------- */
.p-news-ly {
  padding: 26px 0 60px;
}
@media screen and (max-width: 767px ) {
  .p-news-ly {
    padding: 6.667vw 0 16vw;
  }
}

/* 
.p-news-ly__inner
---------------------------------------------------- */
.p-news-ly__inner {
  max-width: 890px;
  margin: 0 auto;
}

/* ==================================================
object/project/_column-ly.scss
================================================== */
/* -------------------------------------------------
.p-column-ly
---------------------------------------------------- */
.p-column-ly .c-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.p-column-ly .c-container {
		display: block;
	}
}

/* 
.p-column-ly__main 
---------------------------------------------------- */
.p-column-ly__main {
  width: 74.1666%;
}
@media screen and (max-width: 767px) {
	.p-column-ly__main {
		width: 100%;
	}
}

/* 
.p-column-ly__sidebar 
---------------------------------------------------- */
.p-column-ly__sidebar {
  width: 21.6666%;
}
@media screen and (max-width: 767px) {
	.p-column-ly__sidebar {
		margin-top: 40px;
		width: 100%;
	}
}

/* ==================================================
object/project/_aside-categories.scss
================================================== */
/* -------------------------------------------------
.p-aside-categories
---------------------------------------------------- */
.p-aside-categories {
  padding: 40px 20px;
  background-color: rgba(230, 240, 230, 0.4);
  font-size: 0;
}

/* 
.p-aside-categories__title
---------------------------------------------------- */
.p-aside-categories__title {
  position: relative;
  padding-left: 50px;
  font-weight: 700;
  font-size: 18px;
}
.p-aside-categories__title::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 40px;
  height: 7px;
  background-color: #FFFC3A;
  content: "";
}

/* 
.p-aside-categories__item
---------------------------------------------------- */
.p-aside-categories__item {
  position: relative;
  display: block;
  padding-left: 15px;
  margin-top: 30px;
  font-size: 18px;
  color: #191919;
  transition: color 0.3s;
}
.p-aside-categories__item:hover {
  color: #16991F;
}
.p-aside-categories__item::after {
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #16991F;
  border-radius: 50%;
  content: "";
}

/* ==================================================
object/project/_entry.scss
================================================== */
/* -------------------------------------------------
.p-entry
---------------------------------------------------- */
/* 
.p-entry__header
---------------------------------------------------- */
.p-entry__header {
  display: flex;
  align-items: center;
}
.p-entry__header-category {
  padding: 7px 17px;
  margin-right: 20px;
  background-color: #FFFC3A;
  color: #16991F;
  font: 700 14px "Noto Sans JP", sans-serif;
}
.p-entry__header-time {
  font-size: 16px;
}

/* 
.p-entry__title
---------------------------------------------------- */
.p-entry__title {
  color: #16991F;
  font: 700 24px "Noto Sans JP", sans-serif;
  padding-top: 20px;
}

/* 
.p-entry__thumbnail
---------------------------------------------------- */
.p-entry__thumbnail {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 30px;
}

/* 
.p-entry__content
---------------------------------------------------- */
.p-entry__content {
  padding-top: 40px;
}
.p-entry__content h2 {
  display: inline-block;
  font: 700 24px "Noto Sans JP", sans-serif;
  border-bottom: 6px solid #FFFC3A;
  margin-bottom: 20px;
}
.p-entry__content h3 {
  position: relative;
  padding-left: 50px;
  font: 700 22px "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
}
.p-entry__content h3::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 40px;
  height: 6px;
  background-color: #FFFC3A;
  content: "";
}
.p-entry__content h4 {
  margin-bottom: 20px;
  font: 700 20px "Noto Sans JP", sans-serif;
}
.p-entry__content * + h2,
.p-entry__content * + h3,
.p-entry__content * + h4 {
  margin-top: 60px;
}
.p-entry__content p {
  font-size: 18px;
}
.p-entry__content p + p {
  margin-top: 30px;
}
.p-entry__content img {
  width: auto;
}
.p-entry__content ul,
.p-entry__content ol {
  margin-top: 1.5em;
}
.p-entry__content ul {
  list-style-type: disc;
}
.p-entry__content ol {
  list-style-type: decimal;
}
.p-entry__content ol li {
  list-style-type: decimal;
}
.p-entry__content li {
  margin-left: 1.5em;
}
.p-entry__content li + li {
  margin-top: 16px;
}
.p-entry__content table {
  border-collapse: collapse;
}
.p-entry__content table th, .p-entry__content table td {
  border: 1px solid #BBB;
  padding: 10px 20px;
}
.p-entry__content table th {
  background-color: #16991F;
  color: #FFF;
  min-width: 180px;
  vertical-align: middle;
}
.p-entry__content a {
  color: #16991F;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-entry__content a:hover {
  opacity: 0.6;
}

/* ==================================================
object/project/_buttons.scss
================================================== */
/* -------------------------------------------------
.p-buttons
---------------------------------------------------- */
.p-buttons {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}
.p-buttons a {
  color: #191919;
  font-size: 18px;
  transform: 0.3s;
}
.p-buttons a:hover {
  opacity: 0.6;
}

/* ==================================================
object/project/_button-all.scss
================================================== */
/* -------------------------------------------------
.p-button-all
---------------------------------------------------- */
.p-button-all {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

/* ==================================================
object/project/_privacy-item.scss
================================================== */
/* -------------------------------------------------
.p-privacy-item
---------------------------------------------------- */
.p-privacy-item {
  margin-top: 30px;
}
@media screen and (max-width: 767px ) {
  .p-privacy-item {
    margin-top: 6.934vw;
  }
}

/* 
.p-privacy-item__title
---------------------------------------------------- */
.p-privacy-item__title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-privacy-item__title {
    font-size: 4.267vw;
  }
}

/* 
.p-privacy-item__text
---------------------------------------------------- */
.p-privacy-item__text {
  padding-top: 12px;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 767px ) {
  .p-privacy-item__text {
    padding-top: 1.867vw;
    font-size: 3.734vw;
  }
}
.p-privacy-item__text a {
  color: #16991F;
  text-decoration: underline;
  transition: 0.3s;
}
.p-privacy-item__text a:hover {
  opacity: 0.6;
}

/* ==================================================
object/project/_pdf.scss
================================================== */
/* -------------------------------------------------
.p-pdf
---------------------------------------------------- */
.p-pdf {
  display: flex;
  align-items: center;
  padding: 0 25px;
  transition: 0.3s opacity;
}
.p-pdf:hover {
  opacity: 0.6;
}
.p-pdf .arrow {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background-color: #000;
  border-radius: 50%;
}
.p-pdf .arrow::after, .p-pdf .arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: right;
  width: 6px;
  height: 1px;
  background-color: #fff;
  content: "";
}
.p-pdf .arrow::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-pdf .arrow::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-pdf .text {
  white-space: nowrap;
  font-size: 14px;
  color: #191919;
}
.p-pdf .ico {
  width: 24px;
}

/* ==================================================
object/component/_container.scss
================================================== */
/* -------------------------------------------------
.c-container
---------------------------------------------------- */
.c-container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px ) {
  .c-container {
    padding: 0 5.334vw;
  }
}

/* ==================================================
object/component/_title1.scss
================================================== */
/* -------------------------------------------------
.c-title1
---------------------------------------------------- */
.c-title1 {
  display: flex;
  flex-direction: column;
}

/* 
.c-title1__en
---------------------------------------------------- */
.c-title1__en img {
  width: auto;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px ) {
  .c-title1__en img {
    height: 7.734vw;
  }
}

/* 
.c-title1__ja
---------------------------------------------------- */
.c-title1__ja {
  position: relative;
  padding-left: 50px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 767px ) {
  .c-title1__ja {
    padding-left: 10.667vw;
    font-size: 4.8vw;
  }
}
.c-title1__ja::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 6px;
  background-color: #F0D81C;
}
@media screen and (max-width: 767px ) {
  .c-title1__ja::after {
    width: 8.534vw;
    height: 1.067vw;
  }
}

/* ==================================================
object/component/_title2.scss
================================================== */
/* -------------------------------------------------
.c-title2
---------------------------------------------------- */
.c-title2 {
  color: #16991F;
  font: 700 24px/1.3 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px ) {
  .c-title2 {
    font-size: 4.534vw;
  }
}
.c-title2--large {
  font-size: 32px;
}
@media screen and (max-width: 767px ) {
  .c-title2--large {
    font-size: 6.934vw;
  }
}

/* ==================================================
object/component/_title3.scss
================================================== */
/* -------------------------------------------------
.c-title3
---------------------------------------------------- */
.c-title3 {
  text-align: center;
}
.c-title3 span {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 767px ) {
  .c-title3 span {
    font-size: 5.334vw;
    padding-left: 10.667vw;
  }
}
.c-title3 span::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 4px;
  background-color: #FFFC3A;
  content: "";
}
@media screen and (max-width: 767px ) {
  .c-title3 span::after {
    width: 8.534vw;
  }
}

/* ==================================================
object/component/_button1.scss
================================================== */
/* -------------------------------------------------
.c-button1
---------------------------------------------------- */
.c-button1 {
  display: flex;
  align-items: center;
  width: 240px;
  height: 50px;
  background-color: gray;
  border-radius: 999px;
}
@media screen and (max-width: 767px ) {
  .c-button1 {
    width: 64vw;
    height: 13.334vw;
  }
}
.c-button1--large {
  width: 340px;
  height: 70px;
}
@media screen and (max-width: 1240px) {
  .c-button1--large {
    width: 27.42vw;
    height: 5.646vw;
  }
}
@media screen and (max-width: 767px ) {
  .c-button1--large {
    width: 64vw;
    height: 13.334vw;
  }
}
.c-button1--large:hover .c-button1__ico {
  transform: translateX(80px) !important;
}
@media screen and (max-width: 1240px) {
  .c-button1--large:hover .c-button1__ico {
    transform: translateX(6.452vw) !important;
  }
}
@media screen and (max-width: 767px ) {
  .c-button1--large:hover .c-button1__ico {
    transform: translateX(10.667vw) !important;
  }
}
.c-button1:hover .c-button1__ico {
  transform: translateX(40px);
}
@media screen and (max-width: 767px ) {
  .c-button1:hover .c-button1__ico {
    transform: translateX(10.667vw);
  }
}

/* 
.c-button1__text 
---------------------------------------------------- */
.c-button1__text {
  width: 155px;
  text-align: center;
  color: #191919;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 767px ) {
  .c-button1__text {
    width: 41.334vw;
    font-size: 4.267vw;
  }
}
.c-button1__text--large {
  width: 200px;
  font-size: 18px;
  padding-left: 38px;
}
@media screen and (max-width: 1240px) {
  .c-button1__text--large {
    width: 16.13vw;
    font-size: 1.775vw;
    padding-left: 3.065vw;
  }
}
@media screen and (max-width: 767px ) {
  .c-button1__text--large {
    width: 41.334vw;
    padding-left: 0;
    font-size: 4.267vw;
  }
}

/* 
.c-button1__ico 
---------------------------------------------------- */
.c-button1__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.6s;
}
@media screen and (max-width: 767px ) {
  .c-button1__ico {
    width: 10.134vw;
    height: 10.134vw;
  }
}
.c-button1__ico img {
  width: 24px;
}
@media screen and (max-width: 767px ) {
  .c-button1__ico img {
    width: 6.4vw;
  }
}
.c-button1__ico--large {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1240px) {
  .c-button1__ico--large {
    width: 4.033vw;
    height: 4.033vw;
  }
}
@media screen and (max-width: 767px ) {
  .c-button1__ico--large {
    width: 10.134vw;
    height: 10.134vw;
  }
}
.c-button1__ico--large img {
  width: 30px;
}
@media screen and (max-width: 1240px) {
  .c-button1__ico--large img {
    width: 2.42vw;
  }
}
@media screen and (max-width: 767px ) {
  .c-button1__ico--large img {
    width: 6.4vw;
  }
}

/* ==================================================
object/component/_bg-cut.scss
================================================== */
/* -------------------------------------------------
.c-bg-cut
---------------------------------------------------- */
.c-bg-cut {
  height: 233px;
  background-image: url(../images/common/bg_green_cut.png);
  background-position: center bottom;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px ) {
  .c-bg-cut {
    height: 21.334vw;
    background-size: 100% 100%;
  }
}
.c-bg-cut--white {
  background-image: url(../images/common/bg_green_cut_white.png);
}

/* ==================================================
object/component/_bg-gradation.scss
================================================== */
/* -------------------------------------------------
.c-bg-gradation
---------------------------------------------------- */
.c-bg-gradation {
  background: rgb(21, 153, 31);
  background: linear-gradient(180deg, rgb(21, 153, 31) 0%, rgb(45, 86, 53) 100%);
}

/* ==================================================
object/utility/_pc.scss
================================================== */
/* -------------------------------------------------
.u-pc
---------------------------------------------------- */
.u-pc {
  display: block;
}
@media screen and (max-width: 767px ) {
  .u-pc {
    display: none;
  }
}

/* ==================================================
object/utility/_sp.scss
================================================== */
/* -------------------------------------------------
.u-sp
---------------------------------------------------- */
.u-sp {
  display: none;
}
@media screen and (max-width: 767px ) {
  .u-sp {
    display: block;
  }
}

.u-tac {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-bgc--white {
  background-color: #fff;
}
.u-bgc--yellow {
  background-color: #F0D81C;
}
.u-bgc--green {
  background-color: #16991F;
}
.u-bgc--green2 {
  background-color: #E6F0E6;
}

.u-color--font {
  color: #191919 !important;
}
.u-color--white {
  color: #FFF;
}
.u-color--green {
  color: #16991F;
}