@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* Font Family */
/* Color */
/* Width */
/* http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
*/
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table, th, td {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #000000;
  font-size: 1.6em;
  font-family: "Noto Sans JP", serif;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
a:hover {
  opacity: 0.8;
}

#mask {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background-color: #000;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background 0.35s cubic-bezier(0.75, 0.3, 0.25, 1), color 0.35s cubic-bezier(0.75, 0.3, 0.25, 1), opacity 0.35s cubic-bezier(0.75, 0.3, 0.25, 1);
  transition: background 0.35s cubic-bezier(0.75, 0.3, 0.25, 1), color 0.35s cubic-bezier(0.75, 0.3, 0.25, 1), opacity 0.35s cubic-bezier(0.75, 0.3, 0.25, 1);
}
button:hover {
  opacity: 0.8;
}

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

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

textarea {
  outline: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.textbox {
  width: 100%;
  display: block;
  margin: 0;
  padding: 30px 0;
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  border: none;
  color: #000000;
  border-bottom: 1px solid #505050;
  background-color: transparent;
  outline: none;
}
@media (max-width: 750px) {
  .textbox {
    padding: 20px 0;
  }
}

select.textbox {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  background-image: url("/assets/images/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: center right 25px;
  background-size: 27px 14px;
}
@media (max-width: 750px) {
  select.textbox {
    padding-right: 50px;
    background-position: center right 10px;
    background-size: 24px 10px;
  }
}

::-webkit-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}

::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000000;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000000;
}

.chkbox-btn {
  display: table;
  position: relative;
  padding-left: 30px;
  margin-right: 20px;
  margin-top: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chkbox-btn:last-child {
  margin-right: 0;
}

.chkbox-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.chkbox {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #000000;
  height: 19px;
  width: 19px;
  background-color: #FFFFFF;
  border-radius: 2px;
}

.chkbox-btn:hover input ~ .chkbox {
  background-color: #FFF;
}

.chkbox-btn input:checked ~ .chkbox {
  background-color: #FFFFFF;
  border-color: #000000;
}

.chkbox:after {
  content: "";
  position: absolute;
  display: none;
}

.chkbox-btn input:checked ~ .chkbox:after {
  display: block;
}

.chkbox-btn .chkbox:after {
  top: 0;
  left: 5px;
  width: 5px;
  height: 12px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

.show-pc {
  display: block;
}
@media (max-width: 750px) {
  .show-pc {
    display: none;
  }
}

.show-sp {
  display: none;
}
@media (max-width: 750px) {
  .show-sp {
    display: block;
  }
}

@media (max-width: 750px) {
  .hide-sp {
    display: none !important;
  }
}

.contents {
  width: 100%;
  height: 100%;
  padding: 170px 6% 80px;
}
@media (max-width: 750px) {
  .contents {
    padding: 120px 6% 40px;
  }
}
.contents .inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.contents .page-navi {
  width: 200px;
  margin: 200px auto 0;
}
@media (max-width: 750px) {
  .contents .page-navi {
    width: 100%;
    margin-top: 100px;
  }
}
.contents .page-navi ul li {
  width: 100%;
  text-align: center;
  background: url("/assets/images/pagenavi_arrow_right.svg") no-repeat center right;
}
@media (max-width: 750px) {
  .contents .page-navi ul li {
    background: none;
  }
}
.contents .page-navi ul li a {
  color: #000000;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.contents .page-navi ul li + li {
  margin-top: 20px;
}

.txthead-box .en {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.txthead-box .fz40 {
  font-size: 4rem;
  line-height: 5rem;
  font-weight: 700;
}
@media (max-width: 750px) {
  .txthead-box .fz40 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
}
.txthead-box .center {
  text-align: center;
}

#wrap {
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

#header {
  width: 100%;
  height: auto;
  background: #ffffff;
}

#footer {
  width: 100%;
  height: auto;
}

.header {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  z-index: 99;
}
@media (max-width: 750px) {
  .header {
    height: auto;
  }
}
.header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .header-box {
    display: block;
  }
}
.header-box .logo {
  margin-top: 40px;
  margin-left: 40px;
  position: relative;
  z-index: 7777;
}
@media (max-width: 750px) {
  .header-box .logo {
    margin-top: 29px;
    margin-left: 22px;
  }
}
.header-box .logo a {
  display: block;
  width: 148px;
  height: 48px;
}
.header-box .logo.white img {
  -webkit-filter: invert(100%);
  filter: invert(100%);
  fill: #FFFFFF;
}
.header-box .menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: inline-block;
  width: 48px;
  height: 36px;
  overflow: hidden;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.header-box .menu-btn span {
  background: #000000;
  border: none;
  width: 100%;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.header-box .menu-btn span:nth-of-type(2) {
  top: 14px;
}
.header-box .menu-btn span:nth-of-type(3) {
  top: 28px;
}
.header-box .menu-btn.white span {
  background: #FFFFFF;
}
.header-box .menu-btn.active {
  width: 40px;
}
.header-box .menu-btn.active span {
  background: #FFFFFF;
  width: 200%;
  height: 9px;
  left: -50%;
}
.header-box .menu-btn.active span:nth-of-type(1) {
  margin-top: -1px;
  -webkit-transform: translateY(14px) translateX(0) rotate(50deg);
          transform: translateY(14px) translateX(0) rotate(50deg);
}
.header-box .menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.header-box .menu-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-14px) translateX(0) rotate(-50deg);
          transform: translateY(-14px) translateX(0) rotate(-50deg);
}
.header .menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  padding: 0 6%;
  z-index: 8888;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.header .menu_overlay.open {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media (max-width: 750px) {
  .header .menu_overlay.open {
    height: 100vh;
  }
}
.header .menu_overlay .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 750px) {
  .header .menu_overlay .inner {
    display: block;
    padding: 80px 0 70px;
  }
}
.header .menu_overlay .menu-list {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header .menu_overlay .menu-list ul + ul {
  margin-left: 8.75%;
}
.header .menu_overlay .menu-list ul li a {
  color: #FFFFFF;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
}
.header .menu_overlay .menu-list ul li + li {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .header .menu_overlay .menu-list {
    width: 100%;
    display: block;
  }
  .header .menu_overlay .menu-list ul + ul {
    margin-left: 0;
    margin-top: 15px;
  }
  .header .menu_overlay .menu-list ul li {
    text-align: center;
  }
  .header .menu_overlay .menu-list ul li a {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .header .menu_overlay .menu-list ul li + li {
    margin-top: 15px;
  }
}
.header .menu_overlay .sns-list {
  width: 98px;
}
.header .menu_overlay .sns-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 750px) {
  .header .menu_overlay .sns-list {
    margin: 180px auto 0;
  }
}

.footer {
  padding: 0 6% 40px;
}
@media (max-width: 750px) {
  .footer {
    padding: 0 6% 50px;
  }
}
.footer .inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .footer .inner {
    display: block;
  }
}
.footer .inner ul.f-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .inner ul.f-menu li {
  margin: 0 15px;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 750px) {
  .footer .inner ul.f-menu li {
    font-size: 1.2rem;
  }
}
.footer .inner ul.f-menu li a {
  color: #000000;
}
.footer .inner .sns-list {
  display: none;
}
@media (max-width: 750px) {
  .footer .inner .sns-list {
    display: block;
    width: 91px;
    margin: 0 auto 50px;
  }
  .footer .inner .sns-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer .inner .sns-list ul img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
    fill: #000000;
  }
}
.footer .inner .text {
  position: absolute;
  left: 0;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 750px) {
  .footer .inner .text {
    display: none;
  }
}

@media (max-width: 750px) {
  .top .contents {
    padding-top: 55px;
  }
}
.top .projects {
  margin-top: 100px;
}
.top .projects .projects-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 750px) {
  .top .projects .projects-ttl {
    display: block;
  }
}
.top .projects .projects-ttl .col-left {
  width: 33%;
}
@media (max-width: 750px) {
  .top .projects .projects-ttl .col-left {
    width: 100%;
  }
}
.top .projects .projects-ttl .col-left h2 {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
}
@media (max-width: 750px) {
  .top .projects .projects-ttl .col-left h2 {
    font-size: 1.8rem;
    line-height: 3.2rem;
    text-align: center;
  }
}
.top .projects .projects-ttl .col-left h2 .en {
  margin-top: 20px;
  display: block;
  font-family: Helvetica Neue;
  font-size: 7rem;
  line-height: 7.5rem;
}
@media (max-width: 750px) {
  .top .projects .projects-ttl .col-left h2 .en {
    font-size: 4.4rem;
    line-height: 4.8rem;
    text-align: center;
  }
}
.top .projects .projects-ttl .col-right {
  width: 63%;
  padding-top: 15px;
}
@media (max-width: 750px) {
  .top .projects .projects-ttl .col-right {
    width: 100%;
    padding-top: 25px;
  }
}
.top .projects .projects-ttl .col-right h3 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 750px) {
  .top .projects .projects-ttl .col-right h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top .projects .projects-ttl .col-right p {
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 500;
}
.top .projects .projects-ttl + .projects-ttl {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top .projects .projects-ttl + .projects-ttl {
    margin-top: 60px;
  }
}
.top .projects .projects-item {
  position: relative;
  margin-top: 100px;
}
.top .projects .projects-item a {
  display: block;
}
.top .projects .projects-item a:hover {
  opacity: 1;
}
.top .projects .projects-item a:hover img {
  opacity: 0.6;
}
@media (max-width: 750px) {
  .top .projects .projects-item {
    margin-top: 45px;
  }
}
.top .projects .projects-item .projects-mv {
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
}
@media (max-width: 750px) {
  .top .projects .projects-item .projects-mv {
    background: transparent;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
}
.top .projects .projects-item .projects-mv img {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media (max-width: 750px) {
  .top .projects .projects-item .projects-mv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.top .projects .projects-item .projects-title {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px 32px 27px;
}
@media (max-width: 750px) {
  .top .projects .projects-item .projects-title {
    position: relative;
    padding: 25px 0 0;
  }
}
.top .projects .projects-item .projects-title p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 0.3em;
}
@media (max-width: 750px) {
  .top .projects .projects-item .projects-title p {
    color: #000000;
    font-weight: 500;
    font-size: 1.4rem;
  }
}
.top .projects .projects-item .projects-title h2 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.7px;
  color: #FFFFFF;
}
@media (max-width: 750px) {
  .top .projects .projects-item .projects-title h2 {
    color: #000000;
    font-size: 2rem;
    line-height: 1.3;
  }
}
.top .projects .projects-item + .projects-ttl {
  margin-top: 180px;
}
@media (max-width: 750px) {
  .top .projects .projects-item + .projects-ttl {
    margin-top: 80px;
  }
}

.mv {
  position: relative;
}
.mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.mv .mv-text {
  position: absolute;
  bottom: 75px;
  left: 55px;
  z-index: 2;
  width: 35.972%;
  max-width: 518px;
}
@media (max-width: 750px) {
  .mv .mv-text {
    width: 59.2%;
    left: 25px;
    bottom: 40px;
  }
}
.mv video {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intro h1 {
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .intro h1 {
    font-size: 3.2rem;
    line-height: 4.8rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
.intro p {
  font-size: 2.4rem;
  line-height: 4.4rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 750px) {
  .intro p {
    font-size: 1.8rem;
    line-height: 3.2rem;
    text-align: left;
  }
}

.our-business {
  margin-top: 60px;
  padding: 50px 60px;
  border-radius: 20px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .our-business {
    margin-top: 50px;
    padding: 30px 20px;
    display: block;
  }
}
.our-business .col-left {
  width: 55%;
}
@media (max-width: 750px) {
  .our-business .col-left {
    width: 100%;
  }
}
.our-business .col-left h2 {
  font-size: 6rem;
  line-height: 7rem;
  font-weight: 700;
  margin-bottom: 35px;
}
@media (max-width: 750px) {
  .our-business .col-left h2 {
    font-size: 2.8rem;
    line-height: 3.8rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
.our-business .col-left p {
  font-family: "Noto Sans JP", serif;
  font-size: 1.8rem;
  line-height: 3.6rem;
  font-weight: 500;
}
@media (max-width: 750px) {
  .our-business .col-left p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
.our-business .col-right {
  width: 39%;
}
@media (max-width: 750px) {
  .our-business .col-right {
    width: 100%;
    margin-top: 25px;
  }
}
.our-business .col-right ul li {
  display: block;
  padding: 17px 20px;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
}
@media (max-width: 750px) {
  .our-business .col-right ul li {
    line-height: 2rem;
    border-radius: 37px;
  }
}
@media (max-width: 750px) {
  .our-business .col-right ul li span {
    display: block;
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: center;
  }
}
.our-business .col-right ul li + li {
  margin-top: 15px;
}

@media (max-width: 750px) {
  .projects .contents {
    padding-top: 55px;
  }
}
.projects .contents .inner {
  max-width: 840px;
}
.projects .mv img {
  width: 100%;
  max-width: unset;
}
.projects .projects-details h1 {
  text-align: left;
  font-size: 4.4rem;
  line-height: 5.6rem;
}
.projects .projects-details h1 small {
  display: block;
  font-size: 2.2rem;
}
@media (max-width: 750px) {
  .projects .projects-details h1 {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
  .projects .projects-details h1 small {
    font-size: 1.8rem;
  }
}
.projects .projects-details h1 + h2, .projects .projects-details h1 + p, .projects .projects-details h1 + .box-img, .projects .projects-details h1 + .box-video {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .projects .projects-details h1 + h2, .projects .projects-details h1 + p, .projects .projects-details h1 + .box-img, .projects .projects-details h1 + .box-video {
    margin-top: 35px;
  }
}
.projects .projects-details h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .projects .projects-details h2 {
    margin-top: 60px;
  }
}
.projects .projects-details p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 1em;
}
@media (max-width: 750px) {
  .projects .projects-details p {
    margin-top: 0.75em;
  }
}
.projects .projects-details .box-img {
  width: 100%;
  margin: 2em auto 0;
}
@media (max-width: 750px) {
  .projects .projects-details .box-img {
    margin-top: 1.5em;
  }
}
.projects .projects-details .box-img img {
  width: 100%;
}
.projects .projects-details .box-img + p {
  margin-top: 2em;
}
@media (max-width: 750px) {
  .projects .projects-details .box-img + p {
    margin-top: 1.5em;
  }
}
.projects .projects-details .box-video {
  width: 100%;
  margin: 2em auto 0;
}
@media (max-width: 750px) {
  .projects .projects-details .box-video {
    margin-top: 1.5em;
  }
}
.projects .projects-details .box-video .video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.projects .projects-details .box-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.projects .projects-details .box-video + p {
  margin-top: 2em;
}
@media (max-width: 750px) {
  .projects .projects-details .box-video + p {
    margin-top: 1.5em;
  }
}

.about-desc h2 {
  font-family: "Noto Sans JP", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin: 1.15em 0;
}
@media (max-width: 750px) {
  .about-desc h2 {
    font-size: 2.6rem;
    text-align: left;
  }
}
.about-desc p {
  font-family: "Noto Sans JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}
@media (max-width: 750px) {
  .about-desc p {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
  }
}
.about-message {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
}
@media (max-width: 750px) {
  .about-message {
    margin-top: 50px;
  }
}
.about-message h3 {
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .about-message h3 {
    margin-bottom: 20px;
  }
}
.about-message .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 750px) {
  .about-message .flex {
    display: block;
  }
}
.about-message .flex .col-left h4 {
  font-size: 2.4rem;
  line-height: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .about-message .flex .col-left h4 {
    font-size: 2rem;
    line-height: 3.6rem;
    margin-bottom: 15px;
  }
}
.about-message .flex .col-left p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.about-message .flex .col-left p strong {
  font-weight: 700;
}
.about-message .flex .col-left p + p {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .about-message .flex .col-left p + p {
    margin-top: 20px;
  }
}
@media (max-width: 750px) {
  .about-message .flex .col-right {
    margin-top: 25px;
  }
}
.about-message .flex .col-right a {
  display: block;
  color: #000;
}
.about-message .flex .col-right a .text {
  margin-top: 30px;
}
.about-message .flex .col-right a .text .position {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 700;
}
.about-message .flex .col-right a .text .name {
  font-size: 2.4rem;
  line-height: 3.4rem;
  font-weight: 700;
}
.about-message .flex .col-right a .text .name span {
  margin-top: 5px;
  display: block;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 400;
}
.about-info {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
}
@media (max-width: 750px) {
  .about-info {
    margin-top: 80px;
  }
}
.about-info h3 {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  color: #737373;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .about-info h3 {
    margin-bottom: 20px;
  }
}
.about-info .content {
  padding: 45px 0;
  border-top: 1px solid #737373;
  border-bottom: 1px solid #737373;
}
@media (max-width: 750px) {
  .about-info .content {
    padding: 35px 0;
  }
}
.about-info .content .table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-info .content .table .tr + .tr {
  margin-top: 20px;
}
.about-info .content .table .tr .td {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.about-info .content .table .tr .td:first-child {
  width: 150px;
  min-width: 150px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .about-info .content .table .tr .td:first-child {
    width: 120px;
    min-width: 120px;
  }
}
.about-info .content .table .tr .td ul {
  margin-left: 20px;
}
.about-info .content .table .tr .td ul li {
  list-style: disc;
}

.member-list ul {
  margin: 100px auto 0;
  max-width: 1240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 750px) {
  .member-list ul {
    margin-top: 45px;
  }
}
.member-list ul li {
  width: 30.8%;
  margin-right: 3.8%;
  margin-top: 50px;
}
.member-list ul li:nth-child(3n) {
  margin-right: 0;
}
.member-list ul li:nth-child(-n+3) {
  margin-top: 0;
}
@media (max-width: 750px) {
  .member-list ul li {
    width: 48%;
    margin-right: 4%;
    margin-top: 30px;
  }
  .member-list ul li:nth-child(3) {
    margin-top: 30px;
  }
  .member-list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .member-list ul li:nth-child(3n) {
    margin-right: 4%;
  }
}
.member-list ul li a {
  display: block;
}
.member-list ul li a:hover {
  opacity: 1;
}
.member-list ul li a:hover dl dt img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.member-list ul li a dl dt {
  overflow: hidden;
}
.member-list ul li a dl dt img {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.member-list ul li a dl dd {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .member-list ul li a dl dd {
    margin-top: 10px;
    padding: 0 10px;
  }
}
.member-list ul li a dl dd .position {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .member-list ul li a dl dd .position {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.member-list ul li a dl dd h2 {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
}
@media (max-width: 750px) {
  .member-list ul li a dl dd h2 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.member-list ul li a dl dd .name {
  font-weight: 250;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 5px;
}
@media (max-width: 750px) {
  .member-list ul li a dl dd .name {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 0;
  }
}

/* Popup */
.popup-member {
  position: relative;
  background: #E6E6E6;
  width: 92%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0;
}
.popup-member.half {
  max-width: 575px;
}
.popup-member.half .flex .col {
  width: 100%;
}
@media (max-width: 750px) {
  .popup-member {
    padding-bottom: 40px;
  }
}
.popup-member .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 750px) {
  .popup-member .flex {
    display: block;
  }
}
.popup-member .flex .col {
  width: 50%;
}
@media (max-width: 750px) {
  .popup-member .flex .col {
    width: 100%;
  }
}
.popup-member .flex .col.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 5%;
  overflow: auto;
}
@media (max-width: 750px) {
  .popup-member .flex .col.center {
    padding: 6%;
  }
}
.popup-member .flex .col .cover {
  position: relative;
}
@media (max-width: 750px) {
  .popup-member .flex .col .cover {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
}
.popup-member .flex .col .cover p {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 8;
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: bold;
  font-size: 7rem;
  line-height: 6.5rem;
  color: #fff;
}
@media (max-width: 750px) {
  .popup-member .flex .col .cover p {
    font-size: 4rem;
    line-height: 4rem;
    bottom: 20px;
    left: 20px;
  }
}
.popup-member .flex .col .box {
  color: #000;
  overflow: hidden;
}
@media (max-width: 750px) {
  .popup-member .flex .col .box .ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 10px;
  }
}
.popup-member .flex .col .box .ttl .name-en {
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: bold;
  font-size: 7rem;
  line-height: 6.5rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .popup-member .flex .col .box .ttl .name-en {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.popup-member .flex .col .box .ttl .name {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 2px;
}
@media (max-width: 750px) {
  .popup-member .flex .col .box .ttl .name {
    margin-bottom: 0;
    margin-right: 5px;
  }
}
.popup-member .flex .col .box .ttl .position {
  font-size: 1.2rem;
  line-height: 2rem;
  margin-bottom: 15px;
}
@media (max-width: 750px) {
  .popup-member .flex .col .box .ttl .position {
    margin-bottom: 0;
  }
}
.popup-member .flex .col .box .text {
  max-height: 340px;
  overflow: auto;
}
@media (max-width: 750px) {
  .popup-member .flex .col .box .text {
    max-height: 230px;
  }
}
.popup-member .flex .col .box .text p {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.popup-member .flex .col .box .text p + p {
  margin-top: 15px;
}
@media (max-width: 750px) {
  .popup-member .mfp-close {
    top: inherit !important;
    bottom: 0 !important;
  }
}

.contact-box {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .contact-box {
    margin-top: 50px;
  }
}
.contact-menu {
  position: relative;
}
.contact-menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 1px;
  background-color: #505050;
}
@media (max-width: 750px) {
  .contact-menu::after {
    display: none;
  }
}
.contact-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.contact-menu ul li {
  width: 125px;
}
.contact-menu ul li:last-child {
  border-right: 1px solid #505050;
}
@media (max-width: 750px) {
  .contact-menu ul li:last-child {
    border-right: 0;
  }
}
.contact-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 55px;
  color: #000000;
  font-weight: 300;
  border-top: 1px solid #505050;
  border-left: 1px solid #505050;
  border-bottom: 1px solid #505050;
}
.contact-menu ul li a.current {
  font-weight: 600;
  color: #FFFFFF;
  background: #000000;
  border-bottom-color: #000000;
}
@media (max-width: 750px) {
  .contact-menu ul {
    height: 46px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #505050;
    border-radius: 23px;
    padding: 0 4px;
  }
  .contact-menu ul li {
    width: 50%;
  }
  .contact-menu ul li a {
    height: 38px;
    border: 0;
  }
  .contact-menu ul li a.current {
    border: 1px solid #505050;
    border-radius: 20px;
    color: #000000;
    background: #FFFFFF;
  }
}
.contact-form p.error {
  font-size: 84%;
  color: #FF0000;
  margin-top: 0.5em;
}
.contact-form .form-row + .form-row {
  margin-top: 60px;
}
@media (max-width: 750px) {
  .contact-form .form-row + .form-row {
    margin-top: 30px;
  }
}
.contact-form .form-row.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 750px) {
  .contact-form .form-row.flex {
    display: block;
  }
}
.contact-form .form-row.agree {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #000000;
}
@media (max-width: 750px) {
  .contact-form .form-row.agree {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.contact-form .form-row.agree p {
  font-size: 1.3rem;
  line-height: 1.7;
}
.contact-form .form-row.agree .chkbox-btn {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .contact-form .form-row.agree .chkbox-btn {
    margin-top: 40px;
  }
}
.contact-form .form-row.button {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .contact-form .form-row.button {
    margin-top: 60px;
  }
}
.contact-form .form-row.button-flex {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 750px) {
  .contact-form .form-row.button-flex {
    margin-top: 30px;
  }
}
.contact-form .form-row.button-flex .btn {
  margin: 0 7px;
}
.contact-form .form-row .col {
  width: 100%;
}
.contact-form .form-row .col.w50 {
  width: 48%;
}
@media (max-width: 750px) {
  .contact-form .form-row .col.w50 {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .contact-form .form-row .col + .col {
    margin-top: 20px;
  }
}
.contact-form.confirm .form-row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 750px) {
  .contact-form.confirm .form-row .col {
    display: block;
  }
}
.contact-form.confirm .form-row .col .topic {
  width: 192px;
  min-width: 192px;
}
@media (max-width: 750px) {
  .contact-form.confirm .form-row .col .topic {
    width: 100%;
  }
}
.contact-form.confirm .form-row .col .topic.w-auto {
  width: auto;
  white-space: nowrap;
  padding-right: 50px;
}
.contact-form.confirm .form-row .col .topic p {
  color: #505050;
  line-height: 1.5;
}
.contact-form.confirm .form-row .col .field {
  width: 100%;
}
.contact-form.confirm .form-row .col .field.w-auto {
  width: auto;
}
.contact-form.confirm .form-row .col .field p {
  line-height: 1.5;
}
.contact-form.confirm .form-row.button {
  margin-top: 80px;
}
@media (max-width: 750px) {
  .contact-form.confirm .form-row.button {
    margin-top: 40px;
  }
}
.contact-form .btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #737373;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
}
.contact-form .btn:hover {
  opacity: 1;
  color: #FFFFFF !important;
  background-color: #000000;
}
.contact-form .btn-submit {
  margin: auto;
  max-width: 450px;
  height: 125px;
  font-size: 4rem;
  line-height: 5rem;
  color: #000000;
}
@media (max-width: 750px) {
  .contact-form .btn-submit {
    max-width: 230px;
    height: 75px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.contact-form .btn-small {
  margin: auto;
  max-width: 140px;
  height: 36px;
  font-size: 1.3rem;
  line-height: 2.3rem;
  color: #505050;
}
.contact-thanks h3 {
  font-size: 4rem;
  line-height: 5rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .contact-thanks h3 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.contact-thanks p {
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .contact-thanks p {
    text-align: left;
  }
}
.contact-thanks p + p {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .contact-thanks p + p {
    margin-top: 15px;
  }
}