@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap');
/********************************************************** default settings */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}
body {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  background: #fff;
  text-size-adjust: 100%;
}
img {
  max-width: 100%;
  border: none;
  vertical-align: middle;
}
a {
  color: #333;
  overflow: hidden;
  transition: .3s;
}
a:hover {
  color: #006699;
}
p {
  margin: 0 0 40px 0;
}
strong, b {
  font-weight: 900;
}
figure {
  margin: 0;
  padding: 0;
}
.big {
  font-size: 20px;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.mb0 {
  margin-bottom: 0;
}
@media only screen and (max-width:800px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/********************************************************** section&container */
section {
  padding: 80px 0;
}
.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}
@media only screen and (max-width:800px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}
/********************************************************** header */
header {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 80px;
}
.logo {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 99;
}
.logo img {
  width: auto;
  height: 40px;
}
header .logo_b {
  display: block;
}
header .logo_w {
  display: none;
}
/********************************************************** footer */
footer {
  background: #333;
  color: #fff;
  padding: 60px 0;
}
footer .container {
  text-align: left;
}
.footer_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.f_logo {
  width: 15%;
}
.f_address {
  width: 70%;
}
.f_address h4 {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 16px;
}
.address {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.address dt {
  width: 16%;
  margin: 0 0 10px 0;
  padding: 4px 0 0 0;
  text-align: center;
}
.address dd {
  width: 80%;
  margin: 0 0 10px 0;
  padding: 0;
}
.address dt span {
  display: block;
  background: #fff;
  color: #333;
}
.copyright {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: #ccc;
}
@media only screen and (max-width:800px) {
  .f_logo {
    width: 30%;
    margin: 0 35%;
    margin-bottom: 30px;
  }
  .f_address {
    width: 100%;
  }
  .address {
    font-size: 12px;
  }
  .f_address h4 {
    text-align: center;
  }
  .address dt {
    width: 24%;
  }
  .address dd {
    width: 70%;
  }
}
/**********************************************************  headline*/
h2 {
  font-size: 36px;
  padding: 0 0 20px 0;
  margin: 0 0 40px 0;
  position: relative;
}
h2::before {
  content: "";
  background-color: #ccc;
  position: absolute;
  bottom: 0px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
}
h3 {
  font-size: 20px;
}
@media only screen and (max-width:800px) {
  h2 {
    font-size: 24px;
  }
}
/**********************************************************  btn */
.btn {
  display: inline-block;
  background: #fff;
  color: #111;
  text-align: center;
  border: 1px solid #333;
  text-decoration: none;
  padding: 10px 40px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
}
.btn:hover {
  color: #fff;
  background-position: -100% 0;
}
/********************************************************** fv */
section#fv {
  position: relative;
  padding: 0px;
}
section#fv .wrap_fv {
  min-height: 100vh;
  background: url("../img/fv01.jpg") no-repeat center center;
  background-size: cover;
}
h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  text-align: center;
}
.scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 150px;
}
.scroll span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 0 0 10px 0;
}
.scroll span.line {
  height: 100%;
  width: 1px;
  margin: auto;
  animation: scroll 1.5s infinite;
  background-color: #fff;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media only screen and (max-width:800px) {
  h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 40%;
  }
  h1 img {
    width: 100%;
  }
}
/**********************************************************  concept */
section#concept h2 {
  font-size: 80px;
}
section#concept h2 br {
  display: none;
}
.box_concept {
  position: relative;
}
.box_concept figure:nth-child(1) {
  width: 60%;
  margin: 0 20%;
  padding: 50px 0 0 0;
}
.box_concept figure:nth-child(2) {
  width: 25%;
  position: absolute;
  left: 0;
  bottom: -60px;
}
.box_concept figure:nth-child(3) {
  width: 25%;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width:800px) {
  section#concept h2 {
    font-size: 50px;
    line-height: 1.4;
  }
  section#concept h2 br {
    display: block;
  }
  section#concept p br {
    display: none;
  }
}
/**********************************************************  achievement */
.box_achievement {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 0 10%;
  text-align: center;
}
.box_achievement div {
  width: 50%;
  padding: 60px 10px;
  font-size: 24px;
}
.achievement_year {
  background: #f7f7f7;
}
.achievement_total {
  background: #333;
  color: #fff;
}
.achievement_year span, .achievement_total span {
  display: block;
  font-family: "Oswald";
  font-size: 180px;
  line-height: 1;
}
@media only screen and (max-width:800px) {
  .box_achievement div {
    width: 100%;
    padding: 30px 10px;
    font-size: 20px;
  }
  .achievement_year span, .achievement_total span {
    font-size: 120px;
  }
}
/**********************************************************  commitment */
section#commitment {
  background: #aaa;
}
section#commitment h2 {
  color: #fff;
}
.box_commitment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0 100px 0;
}
.box_commitment div {
  width: 30%;
  background: #fff;
  text-align: center;
}
.box_commitment h3 {
  background: #333;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  padding: 60px 0 40px 0;
  position: relative;
}
.box_commitment h3 span {
  display: block;
  font-family: "Oswald";
  font-size: 100px;
  line-height: 1;
  margin: 0 0 20px 0;
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.box_commitment p {
  padding: 40px 30px;
  margin: 0;
  font-size: 16px;
}
@media only screen and (max-width:800px) {
  .box_commitment div {
    width: 100%;
    margin: 0 0 80px 0;
  }
  .box_commitment div:last-child {
    margin: 0;
  }
  .box_commitment h3 {
    font-size: 18px;
    padding: 40px 0 30px 0;
  }
  .box_commitment h3 span {
    font-size: 80px;
  }
  .box_commitment p {
    padding: 30px 20px;
    font-size: 14px;
  }
}
/**********************************************************  example */
section#example {
  background: #222;
  color: #fff;
}
section#example .container {
  max-width: 1380px;
}
/*splide*/
.splide.is-initialized:not(.is-active) .splide__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.splide__slide {
  width: 30%;
}
.splide__arrow {
  background: #000;
  opacity: 1;
  top: 40%;
}
.splide__arrow svg {
  fill: #fff;
}
.splide h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  padding: 0;
  text-align: center;
}
.splide figure {
  margin: 0 0 30px 0;
}
.splide p {
  text-align: left;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
.splide p.summary {
  text-align: left;
  font-size: 15px;
  line-height: 2;
  margin: 0 0 20px 0;
}
@media only screen and (max-width:800px) {
  section#example .container {
    padding: 0;
  }
  .splide p {
    padding: 0 20px;
  }
  .splide p.summary {
    padding: 0 20px;
  }
  .splide p.summary br {
    display: none;
  }
}
/**********************************************************  service */
.box_service {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_img {
  width: 48vw;
  margin-left: calc(50% - 50vw);
}
.service_body {
  width: 48%;
  text-align: left;
  padding: 20px 0 0 0;
}
@media only screen and (max-width:800px) {
  section#service {
    padding-bottom: 0;
  }
  .service_img {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .service_body {
    width: 100%;
    padding: 0;
  }
  .service_body br {
    display: none;
  }
  .service_body p:last-child {
    text-align: center;
  }
}
/**********************************************************  flow */
.list_flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 0 5%;
  margin-bottom: 160px;
  padding: 0;
  list-style: none;
}
.list_flow li {
  width: 24%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background: #777;
  padding: 30px 20px 60px 20px;
  margin: 0 0 14px 0;
}
.list_flow li span {
  display: block;
  font-family: "Oswald";
  font-size: 90px;
  line-height: 1;
  margin: 0 0 40px 0;
}
.list_flow li:nth-child(2) {
  background: #666;
  translate: 0 40px;
}
.list_flow li:nth-child(3) {
  background: #555;
  translate: 0 80px;
}
.list_flow li:nth-child(4) {
  background: #444;
  translate: 0 120px;
}
.list_flow li:nth-child(5) {
  background: #333;
}
.list_flow li:nth-child(6) {
  background: #222;
  translate: 0 40px;
}
.list_flow li:nth-child(7) {
  background: #111;
  translate: 0 80px;
}
.list_flow li:nth-child(8) {
  background: #000;
  translate: 0 120px;
}
@media only screen and (max-width:800px) {
  .list_flow {
    margin-bottom: 100px;
  }
  .list_flow li {
    width: 48%;
    font-size: 14px;
    padding: 30px 10px 60px 10px;
    margin: 0 0 14px 0;
  }
  .list_flow li span {
    display: block;
    font-family: "Oswald";
    font-size: 60px;
    line-height: 1;
    margin: 0 0 30px 0;
  }
  .list_flow li:nth-child(2) {
    translate: 0 40px;
  }
  .list_flow li:nth-child(3) {
    translate: 0 0;
  }
  .list_flow li:nth-child(4) {
    translate: 0 40px;
  }
  .list_flow li:nth-child(5) {
    translate: 0 0;
  }
  .list_flow li:nth-child(6) {
    translate: 0 40px;
  }
  .list_flow li:nth-child(7) {
    translate: 0 0;
  }
  .list_flow li:nth-child(8) {
    translate: 0 40px;
  }
}
/*contact*/
.btn_contact {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  letter-spacing: 4px;
  text-indent: 10px;
  font-weight: 600;
  padding: 10px 100px;
}
.contact_tel {
  display: block;
  text-align: center;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
}
.contact_tel a {
  color: #000;
  text-decoration: none;
}
.contact_time {
  display: block;
  text-align: center;
  font-size: 13px;
}
.cta2 .contact_tel, .cta2 .contact_time, .cta2 .contact_tel a {}
@media only screen and (max-width:800px) {
  .btn_contact {
    font-size: 20px;
    padding: 10px 20px;
    letter-spacing: 0px;
  }
}
/**********************************************************  faq */
section#faq {
  background: #fafafa;
}
.list_faq {
  margin: 0;
  padding: 0px 0 0 0;
  list-style: none;
  text-align: left;
}
.list_faq li {
  margin: 0 0 10px 0;
  padding: 20px 30px;
  border: 1px solid #aaa;
  background: #fff;
}
.faq_q {
  font-size: 18px;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0px 40px 0px 40px;
  background: url("../img/icon_q.png") no-repeat left top 4px;
}
.faq_a {
  display: none;
  font-size: 16px;
  margin: 30px 0 0 0;
  padding: 0px 40px 20px 40px;
  background: url("../img/icon_a.png") no-repeat left top 4px;
}
.faq_q::after {
  content: url("../img/icon_arrow_down.png");
  position: absolute;
  right: 0;
  top: 5px;
  line-height: 1;
}
.faq_q.active::after {
  content: url("../img/icon_arrow_up.png");
}
@media screen and (max-width: 800px) {
  .list_faq li {
    margin: 0 0 10px 0;
    padding: 16px;
  }
  .faq_q {
    font-size: 14px;
    padding: 0px 30px 0px 30px;
    background-size: 20px;
    background-position: 0 5px;
  }
  .faq_a {
    display: none;
    font-size: 13px;
    margin: 20px 0 0 0;
    padding: 0px 10px 10px 30px;
    background-size: 20px;
    background-position: 0 5px;
  }
}
/********************************************************** navi css */
.toggle {
  display: block;
  position: absolute;
  z-index: 999;
  right: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #333;
  cursor: pointer
}
.toggle div {
  position: relative;
}
.toggle span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 25%;
  border-bottom: solid 1px #fff;
  transition: .35s ease-in-out;
}
.toggle span:nth-child(1) {
  top: 30px
}
.toggle span:nth-child(2) {
  top: 40px;
}
.toggle span:nth-child(3) {
  top: 50px
}
.naviarea {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  text-align: center;
  z-index: 1;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  /*拡大するアニメ*/
  transform-origin: center;
  transform: scale(.5);
  transition: all .3s ease;
  /*メニューを中央に*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.global_menu {
  position: relative;
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
.global_menu li {
  margin: 0;
  padding: 0;
}
.global_menu li span {
  display: inline-block;
  font-family: "Oswald";
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  padding: 0 10px 0 0;
}
.global_menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 1px 6px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 133, 178, 1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
}
.global_menu li a:hover {
  color: #fff;
  background-position: -100% 0;
}
/*open時の処理*/
header.open_nav .logo_b {
  display: none;
}
header.open_nav .logo_w {
  display: block;
}
.open_nav .naviarea {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: scale(1.0);
}
.open_nav .toggle {
  background-color: #fff;
}
.open_nav .toggle span:nth-child(1) {
  top: 40px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-color: #333;
}
.open_nav .toggle span:nth-child(2) {
  top: 40px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: #333;
}
.open_nav .toggle span:nth-child(3) {
  top: 40px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: #333;
}
/*CTA*/
.cta_btn {
  position: absolute;
  right: 80px;
  top: 0px;
  z-index: 99;
}
.cta_btn a {
  display: block;
  line-height: 80px;
  text-align: center;
  padding: 0 30px;
  background: #F49506;
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 133, 178, 1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
}
.cta_btn a:hover {
  color: #fff;
  background-position: -100% 0;
}
@media screen and (max-width: 800px) {
  .cta_btn {
    display: none;
  }
}