@charset "UTF-8";
/*---------------------
import
---------------------*/
/*
  Media Query
  @include mediaquery(**){ 

  }
  default sm
*/
/* fonts */
@import url("https://use.typekit.net/see7xro.css");
/*
@include FuturaFont;
*/
/* font-size */
.f-10 {
  font-size: 0.625rem !important;
}

.f-12 {
  font-size: 0.75rem !important;
}

.f-14 {
  font-size: 0.875rem !important;
}

.f-16 {
  font-size: 1rem !important;
}

.f-18 {
  font-size: 1.125rem !important;
}

.f-20 {
  font-size: 0.75rem !important;
}

.f-22 {
  font-size: 0.75rem !important;
}

.f-24 {
  font-size: 0.75rem !important;
}

.f-26 {
  font-size: 0.75rem !important;
}

.f-28 {
  font-size: 0.75rem !important;
}

.f-30 {
  font-size: 0.75rem !important;
}

.f-32 {
  font-size: 0.75rem !important;
}

.f-34 {
  font-size: 0.75rem !important;
}

.f-36 {
  font-size: 0.75rem !important;
}

.f-38 {
  font-size: 0.75rem !important;
}

.f-40 {
  font-size: 0.75rem !important;
}

.f-42 {
  font-size: 0.75rem !important;
}

.f-44 {
  font-size: 0.75rem !important;
}

.f-46 {
  font-size: 0.75rem !important;
}

.f-48 {
  font-size: 0.75rem !important;
}

.f-50 {
  font-size: 0.75rem !important;
}

.f-60 {
  font-size: 0.75rem !important;
}

.f-70 {
  font-size: 0.75rem !important;
}

.f-80 {
  font-size: 0.75rem !important;
}

/*------- reset  --------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/*------- font size ----------------*/
/*------- txt color ----------------*/
/*------- common ---------*/
body {
  font: 16px "Roboto", "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  color: #3C3C3C;
}

/*------- link color ----------------*/
a {
  text-decoration: none;
  color: #3C3C3C;
  opacity: 1;
  transition: 0.4s;
}
a:hover {
  opacity: 0.6;
}
a.underline {
  text-decoration: underline !important;
}

/*------- icon ----------------*/
/*------- bg color ----------------*/
/* background */
/*------- v-align ----------------*/
.v-top {
  vertical-align: top;
}

.v-middle {
  vertical-align: middle;
}

.v-bottom {
  vertical-align: bottom;
}

/*------- border style ----------------*/
.bo-none {
  border: none !important;
}

.bo-t-none {
  border-top: none !important;
}

.bo-r-none {
  border-right: none !important;
}

.bo-b-none {
  border-bottom: none !important;
}

.bo-l-none {
  border-left: none !important;
}

/*------- sp ----------------*/
.sp-show {
  display: none;
}

.sp-hide {
  display: inherit;
}

@media screen and (max-width: 599px) {
  .sp-show {
    display: inherit;
  }
  .sp-hide {
    display: none;
  }
}
.sp-show-inline {
  display: none;
}

.sp-hide-inline {
  display: inline;
}

@media screen and (max-width: 599px) {
  .sp-show-inline {
    display: inline;
  }
  .sp-hide-inline {
    display: none;
  }
}
/*---------------------
component
---------------------*/
/* HEADER */
.header {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 576px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0));
  }
}
@media screen and (max-width: 576px) {
  .header.--is-home {
    background: linear-gradient(rgb(60, 60, 60), rgba(60, 60, 60, 0));
  }
}
.header.--is-home .header-nav li {
  color: white !important;
}
@media screen and (max-width: 576px) {
  .header.--is-home .header-nav li {
    color: #3c3c3c !important;
  }
}
.header.--is-home .header-nav a {
  color: white !important;
}
@media screen and (max-width: 576px) {
  .header.--is-home .header-nav a {
    color: #3c3c3c !important;
  }
}
.header-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 30px 0;
}
@media screen and (max-width: 576px) {
  .header-inner {
    width: 100%;
    padding-top: 0;
    padding-bottom: 15px;
    box-sizing: border-box;
    height: 85px;
  }
}
@media screen and (max-width: 576px) {
  .header-logo {
    padding-left: 30px;
  }
  .header-logo img {
    width: 240px;
    height: auto;
  }
}
.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 50px;
    box-sizing: border-box;
    margin-left: 0;
    z-index: -1;
  }
}
.header-nav ul {
  display: flex;
}
@media screen and (max-width: 576px) {
  .header-nav ul {
    justify-content: center;
    margin-bottom: 50px;
  }
}
.header-nav ul li {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
}
.header-nav ul li::after {
  content: "｜";
}
@media screen and (max-width: 576px) {
  .header-nav ul li::after {
    display: none;
  }
}
.header-nav ul li:last-child::after {
  content: "";
}
.header-nav ul li a {
  padding: 10px 20px;
}
.header-regist {
  margin-left: 50px;
}
@media screen and (max-width: 576px) {
  .header-regist {
    margin-left: 0;
    text-align: center;
  }
}

.header-sp-menu {
  display: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 20px;
  padding-top: 10px;
}
@media screen and (max-width: 576px) {
  .header-sp-menu {
    display: block;
  }
}

.header-sp-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

/* FOOTER */
.footer {
  padding-top: 200px;
  padding-bottom: 132px;
  background: url("../img/parts/parts_bg_footer.png") center bottom no-repeat;
  background-size: 100% auto;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 100px;
  padding-top: 90px;
}
@media screen and (max-width: 576px) {
  .footer-inner {
    row-gap: 60px;
  }
}
.footer-message {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .footer-message {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.footer-message__copy-jp {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 3.4px;
}
@media screen and (max-width: 576px) {
  .footer-message__copy-jp {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}
.footer-message__copy-en {
  margin-top: 38px;
  font-size: 42px;
  letter-spacing: 4.2px;
  font-family: futura-pt, sans-serif;
  font-weight: "book";
}
@media screen and (max-width: 576px) {
  .footer-message__copy-en {
    font-size: 28px;
    letter-spacing: 2.8px;
    font-style: normal;
  }
}
.footer-message__txt-jp {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 576px) {
  .footer-message__txt-jp {
    font-size: 16px;
    letter-spacing: 1.6px;
    margin-top: 8px;
  }
}
.footer-message__txt-en {
  margin-top: 27px;
  font-size: 17px;
  letter-spacing: 1.7px;
  line-height: 2;
  font-family: futura-pt, sans-serif;
  font-weight: "book";
}
@media screen and (max-width: 576px) {
  .footer-message__txt-en {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}
.footer-message__logo {
  margin-top: 27px;
}
@media screen and (max-width: 576px) {
  .footer-message__logo {
    margin-top: 40px;
  }
  .footer-message__logo img {
    width: 100px;
  }
}
.footer-copyright {
  font-size: 12px;
  letter-spacing: 1.2px;
}

/* LAYOUT */
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .inner {
    width: 100%;
  }
}

/* archive */
.archive-list li {
  padding: 10px 0;
  border-bottom: 1px dotted #000;
}
.archive-list li time {
  margin-right: 20px;
}
.archive-list li a {
  text-decoration: underline;
}

/* single-page */
.single-page {
  padding-top: 100px;
}
.single-page .single-page__inner {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .single-page .single-page__inner {
    width: 90%;
  }
}
.single-page__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 50px;
}

/*---------------------
pages
---------------------*/
/* HOME */
.home-contents__title {
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 3.9px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .home-contents__title {
    font-size: 22px;
    letter-spacing: 2.2px;
  }
}
.home-contents__title::before {
  content: "｜　";
}
.home-contents__title::after {
  content: "　｜";
}
.home-contents__lead {
  padding-top: 180px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 576px) {
  .home-contents__lead {
    padding-top: 70px;
    margin-bottom: 10px;
  }
}
.home-contents__subtitle {
  width: 640px;
  height: 66px;
  text-align: center;
  margin: 0 auto;
  background: url("../img/home/home_subtitle_bg.png") 0 0 no-repeat;
  background-size: 640px auto;
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 66px;
  margin-bottom: 44px;
}
@media screen and (max-width: 576px) {
  .home-contents__subtitle {
    width: 360px;
    background-size: 100% auto;
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height: 38px;
    height: 38px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26px;
  }
}
.home-contents__txt {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.8px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .home-contents__txt {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
  }
}

/* home-kv */
.home-kv {
  width: 100%;
  height: 1080px;
  background: url("../img/home/home_kv.jpg") center top no-repeat;
  background-size: 1920px 1080px;
  margin-top: -110px;
}
@media screen and (max-width: 576px) {
  .home-kv {
    height: 844px;
    margin-top: 0;
    background: url("../img/home/home_kv_sp.jpg") center top no-repeat;
    background-size: 100% auto;
  }
}
.home-kv__inner {
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 576px) {
  .home-kv__inner {
    width: 100%;
  }
}
.home-kv__body {
  position: absolute;
  top: 400px;
  left: 50px;
}
@media screen and (max-width: 576px) {
  .home-kv__body {
    top: 185px;
    left: 55px;
  }
}
.home-kv__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 3.4px;
  color: white;
}
@media screen and (max-width: 576px) {
  .home-kv__title {
    font-size: 28px;
    letter-spacing: 2.8px;
  }
}
.home-kv__copy {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: white;
  margin-top: 14px;
}
@media screen and (max-width: 576px) {
  .home-kv__copy {
    font-size: 16px;
    letter-spacing: 1.6px;
    margin-top: 10px;
  }
}
.home-kv__btn {
  margin-top: 54px;
  display: block;
}
@media screen and (max-width: 576px) {
  .home-kv__btn {
    display: none;
  }
}

/* home-topic */
.home-topic {
  margin-top: -310px;
  width: 100%;
  height: 633px;
  background: url("../img/home/home_topic_bg.png") center 0 no-repeat;
  background-size: 1920px auto;
  box-sizing: border-box;
  padding-top: 120px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 576px) {
  .home-topic {
    margin-top: -192px;
    height: 633px;
    background: url("../img/home/home_topic_bg_sp.png") center 0 no-repeat;
    background-size: 100% auto;
    padding-left: 32px;
    padding-right: 20px;
  }
}
.home-topic__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 576px) {
  .home-topic__title {
    font-size: 20px;
  }
}
.home-topic__list {
  margin-top: 17px;
}
.home-topic__list li {
  font-size: 16px;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  line-height: 2;
}
@media screen and (max-width: 576px) {
  .home-topic__list li {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.home-topic__list li a {
  color: #000;
  text-decoration-line: underline;
}
.home-topic__list li a time {
  margin-right: 20px;
}
@media screen and (max-width: 576px) {
  .home-topic__list li a time {
    display: block;
  }
}
.home-topic__link {
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #000;
  margin-top: 6px;
}
@media screen and (max-width: 576px) {
  .home-topic__link {
    font-size: 12px;
  }
}

/* home-logic */
.home-logic {
  width: 100%;
  height: 1600px;
  background: url("../img/home/home_logic.jpg") center 0 no-repeat;
  background-size: 1920px auto;
  margin-top: -326px;
  position: relative;
  z-index: -1;
  padding-top: 200px;
}
@media screen and (max-width: 576px) {
  .home-logic {
    height: 2050px;
    background: url("../img/home/home_logic_sp.jpg") center 0 no-repeat;
    background-size: 100% auto;
    margin-top: -334px;
    padding-top: 334px;
  }
}
.home-logic__head {
  text-align: center;
  margin-bottom: 170px;
}
@media screen and (max-width: 576px) {
  .home-logic__head {
    margin-bottom: 100px;
  }
  .home-logic__head img {
    width: 88px;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .home-logic__block {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.home-logic__box {
  display: flex;
  flex: 1;
  margin-bottom: 145px;
}
@media screen and (max-width: 576px) {
  .home-logic__box {
    flex-direction: column;
    position: relative;
  }
}
.home-logic__box--img {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .home-logic__box--img {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
.home-logic__box--img img {
  border-radius: 20px;
}
.home-logic__box--body {
  width: 555px;
  margin-left: 74px;
  color: white;
}
@media screen and (max-width: 576px) {
  .home-logic__box--body {
    width: 100%;
    margin-left: 0;
  }
}
.home-logic__box--title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 50px;
  margin-bottom: 27px;
}
@media screen and (max-width: 576px) {
  .home-logic__box--title {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.7;
    text-align: center;
    position: absolute;
    top: 0;
  }
}
.home-logic__box--txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 576px) {
  .home-logic__box--txt {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 1.2px;
  }
}
.home-logic__box.--rev {
  justify-content: end;
}
@media screen and (max-width: 576px) {
  .home-logic__box.--rev {
    flex-direction: column-reverse;
  }
}
.home-logic__box.--rev .home-logic__box--body {
  width: 356px;
  margin-left: 0;
  margin-right: 42px;
}
@media screen and (max-width: 576px) {
  .home-logic__box.--rev .home-logic__box--body {
    width: 100%;
  }
}
.home-logic__box.--rev .home-logic__box--img {
  width: 300px;
}
@media screen and (max-width: 576px) {
  .home-logic__box.--rev .home-logic__box--img {
    width: 290px;
    padding-top: 0;
  }
}

/* home-vision */
.home-vision {
  width: 100%;
  height: 2753px;
  background: url("../img/home/home_vision.jpg") center 0 no-repeat;
  background-size: 1920px auto;
  position: relative;
  top: -195px;
  box-sizing: border-box;
  padding-top: 188px;
}
@media screen and (max-width: 576px) {
  .home-vision {
    height: 2180px;
    background: url("../img/home/home_vision_sp.jpg") center 0 no-repeat;
    background-size: 100% auto;
    top: -420px;
  }
}
.home-vision::before {
  content: "";
  width: 100%;
  height: 375px;
  background: url("../img/home/home_vision_parts.png") center top no-repeat;
  background-size: 1920px auto;
  position: absolute;
  top: -185px;
  left: 0;
}
@media screen and (max-width: 576px) {
  .home-vision::before {
    display: none;
  }
}
.home-vision .home-contents__title {
  color: white;
}
.home-vision__contents {
  display: flex;
}
.home-vision__contents--img img {
  border-radius: 20px;
}
.home-vision__contents--title {
  font-size: 20px;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 2px;
  color: white;
  margin-top: 26px;
  margin-bottom: 11px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents--title {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 1.8px;
    margin-top: 11px;
    text-align: center;
  }
  .home-vision__contents--title img {
    width: 144px;
    height: auto;
  }
}
.home-vision__contents--txt-en {
  color: white;
  font-family: futura-pt, sans-serif;
  font-weight: "book";
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.7px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents--txt-en {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .home-vision__contents--txt-en br {
    display: none;
  }
}
.home-vision__contents--txt-jp {
  color: white;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents--txt-jp {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .home-vision__contents--txt-jp br {
    display: none;
  }
}
.home-vision__contents--body {
  width: 380px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents--body {
    width: auto;
  }
}
.home-vision__contents.--home-vision01 {
  margin-top: 166px;
  justify-content: end;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision01 {
    margin-top: 36px;
    justify-content: flex-start;
    margin-left: 150px;
  }
}
.home-vision__contents.--home-vision01 .home-vision__contents--body {
  margin-right: 67px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision01 .home-vision__contents--body {
    margin-right: 50px;
  }
}
.home-vision__contents.--home-vision01-2 {
  margin-top: 136px;
  justify-content: start;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision01-2 {
    margin-top: 60px;
  }
  .home-vision__contents.--home-vision01-2 .home-vision__contents--txt-jp br {
    display: inline !important;
  }
}
.home-vision__contents.--home-vision01-2 .home-vision__contents--body {
  margin-left: 140px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision01-2 .home-vision__contents--body {
    margin-left: 40px;
  }
}
.home-vision__contents.--home-vision02 {
  margin-top: 57px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision02 {
    width: 290px;
    margin: 64px auto 0;
  }
}
.home-vision__contents.--home-vision03 {
  justify-content: end;
  margin-top: -178px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision03 {
    width: 290px;
    margin: 90px auto 0;
  }
}
.home-vision__contents.--home-vision04 {
  margin-top: -60px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision04 {
    width: 290px;
    margin: 110px auto 0;
  }
}
.home-vision__contents.--home-vision04 .home-vision__contents--body {
  margin-left: 115px;
}
@media screen and (max-width: 576px) {
  .home-vision__contents.--home-vision04 .home-vision__contents--body {
    margin-left: 0;
  }
}
.home-vision__btn {
  margin-top: 107px;
  text-align: center;
}

/* home-blake-space */
.home-blake-space {
  width: 100%;
  height: 1073px;
  display: block;
  background: url("../img/home/home_blake_space.jpg") center top no-repeat;
  background-size: 1920px auto;
  margin-top: -413px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 576px) {
  .home-blake-space {
    background: url("../img/home/home_blake_space_sp.jpg") center top no-repeat;
    background-size: 100% auto;
    margin-top: -470px;
    height: 383px;
  }
}

/* home-project */
.home-project {
  background: #f7f7f7;
  padding-bottom: 180px;
}
@media screen and (max-width: 576px) {
  .home-project {
    padding-bottom: 90px;
  }
}
.home-project__img {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .home-project__img {
    width: 100%;
  }
  .home-project__img img {
    margin-left: auto;
    margin-right: auto;
  }
}

.home-project__theme {
  padding-bottom: 174px;
}
@media screen and (max-width: 576px) {
  .home-project__theme {
    padding-bottom: 100px;
  }
}
.home-project__theme--item {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item {
    flex-direction: column;
    width: 290px;
  }
}
.home-project__theme--item-img {
  width: 280px;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item-img {
    width: 100%;
  }
}
.home-project__theme--item-img img {
  border-radius: 20px;
}
.home-project__theme--item-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  background: #FFB400;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  left: 40px;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item-title {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    left: 30px;
    width: 260px;
    box-sizing: border-box;
  }
}
.home-project__theme--item-title::before {
  content: "１";
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: white;
  background: #006EB7;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  left: -40px;
  border-radius: 100%;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item-title::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    left: -30px;
  }
}
.home-project__theme--item-box {
  display: flex;
  gap: 37px;
  margin-top: 36px;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item-box {
    margin-top: 30px;
    gap: 24px;
  }
}
.home-project__theme--item-icon {
  width: 70px;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item-icon {
    width: 63px;
  }
}
.home-project__theme--item-txt {
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item-txt {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 1.2px;
    flex: 1;
  }
}
.home-project__theme--item:nth-child(1) {
  margin-left: 50px;
  padding-bottom: 200px;
  background: url("../img/home/home_project_theme01_vector.png") 350px 95% no-repeat;
  background-size: 213px auto;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 110px;
    background: url("../img/home/home_project_theme_vector.png") center 96% no-repeat;
    background-size: 12px auto;
    margin-top: 30px;
  }
}
.home-project__theme--item:nth-child(2) {
  margin-left: 120px;
  padding-bottom: 200px;
  background: url("../img/home/home_project_theme02_vector.png") 300px 96% no-repeat;
  background-size: 113px auto;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item:nth-child(2) {
    flex-direction: column-reverse;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 110px;
    background: url("../img/home/home_project_theme_vector.png") center 96% no-repeat;
    background-size: 12px auto;
  }
}
.home-project__theme--item:nth-child(2) .home-project__theme--item-title::before {
  content: "2";
}
.home-project__theme--item:nth-child(3) {
  margin-left: 160px;
  padding-bottom: 200px;
  background: url("../img/home/home_project_theme03_vector.png") 300px 95% no-repeat;
  background-size: 167px auto;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 110px;
    background: url("../img/home/home_project_theme_vector.png") center 96% no-repeat;
    background-size: 12px auto;
  }
}
.home-project__theme--item:nth-child(3) .home-project__theme--item-title::before {
  content: "3";
}
.home-project__theme--item:nth-child(4) {
  margin-left: 180px;
  padding-bottom: 200px;
  background: url("../img/home/home_project_theme04_vector.png") 300px 95% no-repeat;
  background-size: 156px auto;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item:nth-child(4) {
    flex-direction: column-reverse;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 110px;
    background: url("../img/home/home_project_theme_vector.png") center 96% no-repeat;
    background-size: 12px auto;
  }
}
.home-project__theme--item:nth-child(4) .home-project__theme--item-title::before {
  content: "4";
}
.home-project__theme--item:nth-child(5) {
  margin-left: 180px;
}
@media screen and (max-width: 576px) {
  .home-project__theme--item:nth-child(5) {
    margin-left: auto;
    margin-right: auto;
  }
}
.home-project__theme--item:nth-child(5) .home-project__theme--item-title::before {
  content: "5";
}

/* home-project__step */
.home-project__step {
  background: #F7F7F7;
  padding-bottom: 420px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .home-project__step {
    padding-bottom: 80px;
  }
}
.home-project__step::after {
  content: "";
  width: 1920px;
  height: 320px;
  display: block;
  background: url("../img/home/home_project_step_parts.png") center bottom no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -109px;
}
@media screen and (max-width: 576px) {
  .home-project__step::after {
    width: 100%;
    height: 100px;
    display: block;
    background: url("../img/home/home_project_step_parts_sp.png") center bottom no-repeat;
    background-size: 100% auto;
    bottom: -40px;
  }
}
.home-project__step--block {
  width: 840px;
  margin: 0 auto 180px;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
@media screen and (max-width: 576px) {
  .home-project__step--block {
    width: 100%;
    box-sizing: border-box;
    padding-left: 43px;
    padding-right: 25px;
    row-gap: 22px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.home-project__step--item {
  display: flex;
  gap: 30px;
  background: white;
  border-radius: 20px;
  padding: 30px 20px 30px 30px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .home-project__step--item {
    padding: 17px 25px 10px 0;
    gap: 0;
  }
}
.home-project__step--item:last-child .home-project__step--step::after {
  display: none;
}
.home-project__step--item:nth-child(even) .home-project__step--step::after {
  background: url("../img/home/home_project_step_yellow.png") center bottom no-repeat;
  background-size: 50px auto;
}
@media screen and (max-width: 576px) {
  .home-project__step--item:nth-child(even) .home-project__step--step::after {
    background: url("../img/home/home_project_step_yellow_sp.png") center bottom no-repeat;
    background-size: 100% auto;
  }
}
.home-project__step--item:nth-child(even) .home-project__step--circle {
  background: #FFB400;
}
.home-project__step--step {
  position: relative;
}
@media screen and (max-width: 576px) {
  .home-project__step--step {
    left: -18px;
  }
}
.home-project__step--step::after {
  content: "";
  position: absolute;
  bottom: -104px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 105px;
  display: block;
  background: url("../img/home/home_project_step_blue.png") center bottom no-repeat;
  background-size: 50px auto;
}
@media screen and (max-width: 576px) {
  .home-project__step--step::after {
    width: 30px;
    height: 99px;
    bottom: -40px;
    display: block;
    background: url("../img/home/home_project_step_blue_sp.png") center bottom no-repeat;
    background-size: 100% auto;
  }
}
.home-project__step--circle {
  width: 140px;
  height: 140px;
  background: #006EB7;
  border-radius: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .home-project__step--circle {
    width: 100px;
    height: 100px;
  }
}
.home-project__step--caption {
  font-size: 12px;
}
.home-project__step--num {
  font-size: 36px;
}
.home-project__step--title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .home-project__step--title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.home-project__step--txt {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 576px) {
  .home-project__step--txt {
    font-size: 10px;
    line-height: 1.8;
  }
}
.home-project__step--btn {
  text-align: center;
}

/* home-about */
.home-about {
  padding-top: 240px;
}
@media screen and (max-width: 576px) {
  .home-about {
    padding-top: 90px;
  }
}
.home-about .inner {
  width: 760px;
}
@media screen and (max-width: 576px) {
  .home-about .inner {
    width: 100%;
  }
}
.home-about__img {
  margin-top: 157px;
  margin-bottom: 126px;
}
@media screen and (max-width: 576px) {
  .home-about__img {
    margin-top: 54px;
    width: 290px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 576px) {
  .home-about__table {
    width: 100%;
  }
}
.home-about__table--row {
  display: flex;
  border-bottom: 1px dotted #000;
}
@media screen and (max-width: 576px) {
  .home-about__table--row {
    flex-direction: column;
  }
}
.home-about__table dt, .home-about__table dd {
  font-size: 16px;
  letter-spacing: 1.6px;
  padding: 20px 0;
}
@media screen and (max-width: 576px) {
  .home-about__table dt, .home-about__table dd {
    text-align: center;
  }
}
.home-about__table dt {
  font-weight: 700;
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .home-about__table dt {
    font-size: 14px;
    width: 100%;
    padding-top: 28px;
    padding-bottom: 0;
  }
}
.home-about__table dd {
  width: 640px;
  padding-left: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  .home-about__table dd {
    font-size: 12px;
    padding-left: 0;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 28px;
  }
}
.home-about__map {
  width: 620px;
  height: 380px;
  margin: 150px auto 0;
}
@media screen and (max-width: 576px) {
  .home-about__map {
    width: 290px;
    height: 180px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* registration */
@media screen and (max-width: 576px) {
  .registration {
    padding-top: 85px;
  }
}
.registration-logo {
  text-align: center;
  margin: 150px 0 120px;
}
@media screen and (max-width: 576px) {
  .registration-logo {
    margin: 30px 0 50px;
  }
  .registration-logo img {
    width: 100px;
    height: auto;
  }
}
.registration-head {
  text-align: center;
}
.registration-head__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .registration-head__title {
    font-size: 16px;
  }
}
.registration-head__txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.8px;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .registration-head__txt {
    font-size: 12px;
  }
}
.registration-head__btn {
  margin-top: 50px;
}
.registration-step {
  margin-top: 54px;
  margin-bottom: 90px;
}
.registration-step ul {
  text-align: center;
}
.registration-step ul li {
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 576px) {
  .registration-step ul li {
    font-size: 14px;
  }
}

/* registration-form */
.registration-form {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .registration-form {
    width: 90%;
  }
}
.registration-form__dl dt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
  padding-left: 8px;
  margin-bottom: 8px;
}
.registration-form__dl dd {
  margin-bottom: 23px;
}
.registration-form__dl--list li {
  margin-bottom: 8px;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .registration-form__dl--list li {
    white-space: initial;
  }
}
.registration-form__dl--list li:last-child {
  margin-bottom: 0;
}
.registration-form__dl--list li.--half {
  width: 50%;
}
.registration-form__dl--txt {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.75;
  margin-bottom: 15px;
}
.registration-form__submit {
  margin-top: 112px;
  text-align: center;
}

/* form */
.hissu {
  font-size: 12px;
  font-weight: 700;
  color: #FF0000;
  vertical-align: top;
}

.hidden {
  display: none;
}

.form-input {
  border-radius: 10px;
  border: 1px solid #3C3C3C;
  padding: 12px 17px;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
}
.form-input::placeholder {
  color: #CCCCCC;
}
@media screen and (max-width: 576px) {
  .form-input {
    font-size: 16px;
  }
}

.form-select {
  border-radius: 10px;
  border: 1px solid #3C3C3C;
  padding: 12px 17px;
  font-size: 18px;
}
@media screen and (max-width: 576px) {
  .form-select {
    font-size: 16px;
  }
}

.form-checkbox {
  border-radius: 2px;
  border: 1px solid #CCC;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

.form-btn {
  background: #006EB7;
  border-radius: 20px;
  width: 320px;
  height: 70px;
  box-sizing: border-box;
  position: relative;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: white;
  cursor: pointer;
  display: inline-block;
  line-height: 70px;
}
.form-btn:disabled {
  background: #ccc;
  cursor: default;
}

/*# sourceMappingURL=style.css.map */
