@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

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

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  color: #101D21; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 30px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

.footer {
  position: relative; }
  .footer .inner {
    max-width: 1560px;
    display: flex;
    justify-content: space-between;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .footer .inner {
        display: block; } }
  .footer__top {
    background: #fff;
    padding: 100px 0; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        padding: 115px 0 60px; } }
    .footer__top .left .logo {
      display: block;
      width: 218px;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .footer__top .left .logo {
          width: auto;
          display: inline-block;
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: 600;
          margin-bottom: 36px; } }
    .footer__top .left dl {
      margin-bottom: 30px; }
      @media only screen and (max-width: 767px) {
        .footer__top .left dl {
          margin-bottom: 20px; } }
      .footer__top .left dl:last-of-type {
        margin-bottom: 0; }
      .footer__top .left dl dt {
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 500;
        margin-bottom: 15px; }
        @media only screen and (max-width: 767px) {
          .footer__top .left dl dt {
            font-size: 14px;
            font-size: 1.4rem;
            margin-bottom: 10px; } }
      .footer__top .left dl dd {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 2.13333333;
        color: #949C9D; }
        @media only screen and (max-width: 767px) {
          .footer__top .left dl dd {
            font-size: 13px;
            font-size: 1.3rem;
            line-height: 1.69230769; } }
    .footer__top .right {
      display: flex;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .footer__top .right {
          display: block;
          margin-top: 44px; } }
      .footer__top .right .list li {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 40px;
        transition: color .3s; }
        @media only screen and (max-width: 767px) {
          .footer__top .right .list li {
            font-size: 14px;
            font-size: 1.4rem;
            margin-bottom: 0;
            border-bottom: 1px solid #E7E9ED; } }
        @media only screen and (max-width: 767px) {
          .footer__top .right .list li:last-of-type {
            border: none; } }
        @media only screen and (max-width: 767px) {
          .footer__top .right .list li a {
            display: block;
            padding: 14px 0; } }
        .footer__top .right .list li:hover {
          color: #008195; }
        .footer__top .right .list li:last-of-type {
          margin-bottom: 0; }
      .footer__top .right .btnArea {
        margin-left: 150px; }
        @media only screen and (max-width: 767px) {
          .footer__top .right .btnArea {
            margin: 30px 0 0; } }
        .footer__top .right .btnArea small {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: 500;
          color: #008195;
          margin-bottom: 10px; }
          .footer__top .right .btnArea small:after {
            content: "";
            width: 8px;
            height: 5px;
            display: inline-block;
            background: #008195;
            clip-path: polygon(0 0, 100% 0, 50% 100%);
            margin-left: 5px; }
        .footer__top .right .btnArea .btn {
          width: 292px;
          height: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: 500;
          margin-bottom: 20px;
          transition: background-color .3s, color .3s; }
          @media only screen and (max-width: 767px) {
            .footer__top .right .btnArea .btn {
              width: 100%; } }
          .footer__top .right .btnArea .btn svg {
            margin-right: 10px; }
            .footer__top .right .btnArea .btn svg path {
              fill: #008195;
              transition: fill .3s; }
          .footer__top .right .btnArea .btn.insta {
            border: 1px solid #008195;
            color: #008195;
            background-color: #fff; }
            .footer__top .right .btnArea .btn.insta:hover {
              background-color: #008195;
              color: #fff; }
              .footer__top .right .btnArea .btn.insta:hover svg path {
                fill: #fff; }
          .footer__top .right .btnArea .btn.contact {
            background-color: #CBC54A;
            color: #fff; }
            .footer__top .right .btnArea .btn.contact:hover {
              background-color: #008195; }
    .footer__top .pagetop {
      position: absolute;
      right: 40px;
      bottom: 0px;
      transition: bottom .3s; }
      @media only screen and (max-width: 767px) {
        .footer__top .pagetop {
          top: -88px;
          right: 21px;
          bottom: auto; } }
      .footer__top .pagetop:hover {
        bottom: 6px; }
  .footer__bottom {
    background: #101D21;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 17px;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        font-size: 12px;
        font-size: 1.2rem; } }

.header__logo {
  width: 460px;
  height: 180px;
  padding: 36px 65px;
  display: block;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99; }
  @media only screen and (min-width: 768px) {
    .header__logo {
      width: 298px;
      height: 116px;
      padding: 23px 42px;
      clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%); }
      .header__logo > div {
        width: 185px; } }
  @media only screen and (max-width: 767px) {
    .header__logo {
      width: 158px;
      height: 72px;
      padding: 14px 16px;
      clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%); } }
  @media only screen and (max-width: 767px) {
    .header__logo img {
      width: 114px; } }

.header .gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  top: 31px;
  right: 60px;
  z-index: 98;
  position: absolute; }
  @media only screen and (min-width: 768px) {
    .header .gnav {
      padding-top: 14px;
      padding-right: 228px; } }
  @media only screen and (max-width: 767px) {
    .header .gnav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 125px 30px 40px;
      display: block;
      transition: opacity .3s, visibility .3s;
      opacity: 0;
      visibility: hidden; } }
  @media only screen and (max-width: 767px) {
    .header .gnav.is-active {
      opacity: 1;
      visibility: visible; } }
  .header .gnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .header .gnav__list {
        display: block; } }
    .header .gnav__list li {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 500;
      color: #fff;
      margin-left: 50px; }
      @media only screen and (max-width: 767px) {
        .header .gnav__list li {
          border-bottom: 1px solid #101D21;
          color: #101D21;
          margin-left: 0; } }
      .header .gnav__list li a {
        position: relative; }
        @media only screen and (min-width: 768px) {
          .header .gnav__list li a {
            display: block; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a {
            padding: 16px 15px;
            display: flex;
            align-items: center; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a:before {
            content: "";
            width: 5px;
            height: 10px;
            display: block;
            background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(0%, -50%); } }
        @media only screen and (min-width: 768px) {
          .header .gnav__list li a:hover:after {
            width: 100%; } }
        .header .gnav__list li a:after {
          content: "";
          width: 0%;
          height: 1px;
          display: block;
          background: #fff;
          position: absolute;
          left: 0;
          bottom: -9px;
          transition: width .3s; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a span {
            font-size: 22px;
            font-size: 2.2rem;
            font-weight: 600;
            font-family: "Figtree", sans-serif;
            color: #008195;
            position: relative;
            top: 1px; } }
        @media only screen and (min-width: 768px) {
          .header .gnav__list li a small {
            display: block;
            margin-bottom: 3px; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a small {
            font-size: 12px;
            font-size: 1.2rem;
            font-weight: 500;
            display: block;
            margin-left: 10px; } }
      .header .gnav__list li.none a {
        transition: opacity .3s; }
        .header .gnav__list li.none a:hover {
          opacity: 0.7; }
        .header .gnav__list li.none a:after {
          content: none; }
  .header .gnav .contactBtn {
    width: 178px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #008195;
    background-color: #fff;
    filter: drop-shadow(0px 3px 10px rgba(39, 51, 74, 0.15));
    margin-left: 50px;
    transition: background-color .3s, color .3s; }
    @media only screen and (min-width: 768px) {
      .header .gnav .contactBtn {
        position: fixed;
        top: 31px;
        right: 60px; } }
    .header .gnav .contactBtn:hover {
      background-color: #CBC54A;
      color: #fff; }
  .header .gnav .btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
    transition: background-color .3s, color .3s;
    margin-top: 40px; }
    .header .gnav .btn svg {
      margin-right: 10px; }
      .header .gnav .btn svg path {
        fill: #008195;
        transition: fill .3s; }
    .header .gnav .btn.insta {
      border: 1px solid #008195;
      color: #008195;
      background-color: #fff; }
      .header .gnav .btn.insta:hover {
        background-color: #008195;
        color: #fff; }
        .header .gnav .btn.insta:hover svg path {
          fill: #fff; }

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s; }
  .hamburger.is-active {
    background-color: #008195; }
    .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
      transform: rotate(150deg);
      top: 7px; }
    .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
      width: 0; }
    .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
      transform: rotate(-150deg);
      bottom: 7px; }
  .hamburger__inner {
    width: 25px;
    height: 16px;
    position: relative; }
    .hamburger__inner span {
      width: 25px;
      height: 2px;
      display: block;
      background: #CBC54A;
      position: absolute;
      left: 0;
      transition: transform .3s, top .3s, bottom .3s, width .3s; }
      .hamburger__inner span:nth-of-type(1) {
        top: 0; }
      .hamburger__inner span:nth-of-type(2) {
        top: 7px;
        left: auto;
        right: 0; }
      .hamburger__inner span:nth-of-type(3) {
        bottom: 0; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 29, 33, 0.3);
  z-index: 96;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s; }
  @media only screen and (max-width: 767px) {
    .overlay.is-active {
      opacity: 1;
      visibility: visible; } }

.loading {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #008195;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0; }
  .loading.is-active:before {
    width: 140%; }
    @media only screen and (max-width: 767px) {
      .loading.is-active:before {
        width: 220%; } }
  .loading.is-active .loading__cont {
    opacity: 0; }
    .loading.is-active .loading__cont > div {
      transform: rotate(45deg); }
  .loading:before {
    content: "";
    width: 0%;
    height: 100%;
    display: block;
    background: rgba(16, 29, 33, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, calc(100% - 550px) 0, 100% 100%, 0 100%);
    transition: width .5s, opacity .5s;
    transition-delay: 1s; }
    @media only screen and (max-width: 767px) {
      .loading:before {
        clip-path: polygon(0 0, calc(100% - 350px) 0, 100% 100%, 0 100%); } }
  .loading__cont {
    transition: opacity .5s;
    transition-delay: 1s; }
    .loading__cont > div {
      filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.16));
      position: relative;
      transition: transform .5s; }
      @media only screen and (max-width: 767px) {
        .loading__cont > div {
          width: 171px; } }
      .loading__cont > div img {
        opacity: 0.2; }
  .loading span {
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #fff;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media only screen and (max-width: 767px) {
      .loading span {
        font-size: 18px;
        font-size: 1.8rem; } }

.c-title02.wht .en {
  color: #fff; }

.c-title02.wht .jp {
  color: #fff; }

.c-title02.center {
  text-align: center; }

.c-title02 .en {
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
  display: block;
  color: #008195;
  margin-bottom: 5px; }
  @media only screen and (max-width: 767px) {
    .c-title02 .en {
      font-size: 40px;
      font-size: 4rem;
      margin-bottom: 12px; } }

.c-title02 .jp {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  display: block; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

@media only screen and (min-width: 768px) {
  body.contact .header__logo {
    width: 298px;
    height: 116px;
    padding: 23px 42px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%); }
    body.contact .header__logo > div {
      width: 185px; } }

body.contact .mainvisual {
  width: 100%;
  height: 350px;
  background-color: #008195;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 116px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    body.contact .mainvisual {
      height: 220px;
      padding-top: 70px; } }
  body.contact .mainvisual:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/contact/mv.png) center center/cover no-repeat;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.contact .mainvisual:before {
        background: url(../images/contact/mv_sp.png) center center/cover no-repeat; } }
  body.contact .mainvisual .c-title02 .en {
    margin-bottom: 18px; }
    @media only screen and (max-width: 767px) {
      body.contact .mainvisual .c-title02 .en {
        margin-bottom: 8px; } }

body.contact .whole {
  background: #F2F6F8;
  padding: 125px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.contact .whole {
      padding: 60px 0 170px; } }
  body.contact .whole .inner {
    max-width: 1177px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .inner {
        padding: 0 16px; } }
  body.contact .whole__box {
    background: #fff;
    padding: 120px 40px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole__box {
        padding: 80px 14px; } }
    body.contact .whole__box > div {
      max-width: 817px;
      margin: 0 auto; }
    body.contact .whole__box .stepList {
      display: flex;
      justify-content: center;
      margin-bottom: 55px; }
      body.contact .whole__box .stepList li {
        width: 57px;
        margin: 0 25px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .stepList li {
            width: 48px; } }
        body.contact .whole__box .stepList li.active span {
          background: #008195; }
        body.contact .whole__box .stepList li.active:after {
          opacity: 1; }
        body.contact .whole__box .stepList li:after {
          content: "";
          width: 50px;
          height: 1px;
          display: block;
          background: #008195;
          position: absolute;
          right: -50px;
          top: 28px;
          opacity: 0; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .stepList li:after {
              top: 23px; } }
        body.contact .whole__box .stepList li:last-of-type:after {
          content: none; }
        body.contact .whole__box .stepList li span {
          width: 57px;
          height: 57px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #E7ECED;
          color: #fff;
          font-size: 24px;
          font-size: 2.4rem;
          font-family: "Figtree", sans-serif; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .stepList li span {
              width: 48px;
              height: 48px;
              padding-top: 2px; } }
        body.contact .whole__box .stepList li small {
          font-size: 14px;
          font-size: 1.4rem;
          display: block;
          text-align: center;
          margin-top: 8px; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .stepList li small {
              font-size: 12px;
              font-size: 1.2rem; } }
    body.contact .whole__box .description {
      text-align: center;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        body.contact .whole__box .description {
          font-size: 14px;
          font-size: 1.4rem; } }
      body.contact .whole__box .description strong {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.75;
        font-weight: 600;
        color: #008195;
        margin-bottom: 36px; }
      body.contact .whole__box .description small {
        font-size: 14px;
        font-size: 1.4rem;
        display: block;
        line-height: 1.75; }
    body.contact .whole__box .formArea {
      margin-top: 70px; }
      @media only screen and (max-width: 767px) {
        body.contact .whole__box .formArea {
          margin-top: 55px; } }
      body.contact .whole__box .formArea__form table {
        width: 100%; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .formArea__form table {
            display: block; } }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .formArea__form table tbody {
            display: block; } }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .formArea__form table tr {
            display: block;
            border-bottom: 1px solid #E7ECED;
            padding: 20px 0; } }
        body.contact .whole__box .formArea__form table tr th {
          width: 202px;
          padding: 36px 0;
          border-bottom: 1px solid #E7ECED;
          vertical-align: top; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .formArea__form table tr th {
              display: block;
              width: 100%;
              border: none;
              padding: 0;
              margin-bottom: 10px; } }
          body.contact .whole__box .formArea__form table tr th span {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 2;
            font-weight: 500;
            display: inline-block; }
          body.contact .whole__box .formArea__form table tr th .border {
            padding-left: 16px;
            position: relative; }
            body.contact .whole__box .formArea__form table tr th .border:before {
              content: "";
              width: 5px;
              height: 21px;
              display: block;
              background: #048195;
              position: absolute;
              top: 5px;
              left: 0; }
          body.contact .whole__box .formArea__form table tr th small {
            width: 40px;
            height: 20px;
            font-size: 12px;
            font-size: 1.2rem;
            font-weight: 500;
            border: 1px solid #CBC54A;
            color: #CBC54A;
            display: inline-block;
            padding: 3px 7px 2px;
            vertical-align: top;
            margin: 5px 0 0 16px; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__box .formArea__form table tr th small {
                margin-left: 12px; } }
            body.contact .whole__box .formArea__form table tr th small.required {
              background: #CBC54A;
              color: #fff; }
        body.contact .whole__box .formArea__form table tr td {
          width: calc(100% - 202px);
          padding: 30px 0;
          border-bottom: 1px solid #E7ECED;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .formArea__form table tr td {
              display: block;
              width: 100%;
              border: none;
              padding: 0; } }
          body.contact .whole__box .formArea__form table tr td input[type="text"] {
            width: 100%;
            height: 40px;
            background: #F2F6F8;
            font-size: 14px;
            font-size: 1.4rem;
            padding: 10px 16px; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__box .formArea__form table tr td input[type="text"] {
                height: 38px;
                padding: 9px 10px; } }
            body.contact .whole__box .formArea__form table tr td input[type="text"]::placeholder {
              color: rgba(103, 101, 101, 0.5); }
          body.contact .whole__box .formArea__form table tr td textarea {
            width: 100%;
            height: 144px;
            background: #F2F6F8;
            font-size: 14px;
            font-size: 1.4rem;
            padding: 10px 16px;
            resize: none; }
            body.contact .whole__box .formArea__form table tr td textarea::placeholder {
              color: rgba(103, 101, 101, 0.5); }
            @media only screen and (max-width: 767px) {
              body.contact .whole__box .formArea__form table tr td textarea {
                height: 144px;
                padding: 9px 10px; } }
          body.contact .whole__box .formArea__form table tr td .selectBox {
            position: relative; }
            body.contact .whole__box .formArea__form table tr td .selectBox select {
              width: 100%;
              height: 40px;
              background: #F2F6F8;
              font-size: 14px;
              font-size: 1.4rem;
              padding: 10px 16px; }
              body.contact .whole__box .formArea__form table tr td .selectBox select::placeholder {
                color: rgba(103, 101, 101, 0.5); }
              @media only screen and (max-width: 767px) {
                body.contact .whole__box .formArea__form table tr td .selectBox select {
                  height: 38px;
                  padding: 9px 10px; } }
            body.contact .whole__box .formArea__form table tr td .selectBox svg {
              position: absolute;
              top: 50%;
              right: 11px;
              transform: translate(0%, -50%);
              pointer-events: none; }
          body.contact .whole__box .formArea__form table tr td .col {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__box .formArea__form table tr td .col {
                margin-bottom: 10px; } }
            body.contact .whole__box .formArea__form table tr td .col:last-of-type {
              margin-bottom: 0; }
            body.contact .whole__box .formArea__form table tr td .col > div {
              width: 48%;
              max-width: 272px;
              display: flex;
              align-items: center; }
              @media only screen and (max-width: 767px) {
                body.contact .whole__box .formArea__form table tr td .col > div {
                  max-width: 148px; } }
              body.contact .whole__box .formArea__form table tr td .col > div span {
                font-size: 14px;
                font-size: 1.4rem;
                width: 57px; }
                @media only screen and (max-width: 767px) {
                  body.contact .whole__box .formArea__form table tr td .col > div span {
                    width: 38px;
                    font-size: 12px;
                    font-size: 1.2rem; } }
              body.contact .whole__box .formArea__form table tr td .col > div input[type="text"] {
                width: calc(100% - 57px); }
                @media only screen and (max-width: 767px) {
                  body.contact .whole__box .formArea__form table tr td .col > div input[type="text"] {
                    width: calc(100% - 38px); } }
          body.contact .whole__box .formArea__form table tr td p {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 2.28571429;
            margin-bottom: 14px; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__box .formArea__form table tr td p {
                font-size: 12px;
                font-size: 1.2rem;
                line-height: 1.83333333;
                padding-left: 16px; } }
            body.contact .whole__box .formArea__form table tr td p:last-of-type {
              margin-bottom: 0; }
      body.contact .whole__box .formArea__form .privacypolicy {
        border: 1px solid #008195;
        margin-top: 40px;
        padding: 30px 35px;
        padding-right: 13px; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .formArea__form .privacypolicy {
            padding: 30px 13px;
            padding-right: 8px; } }
        body.contact .whole__box .formArea__form .privacypolicy > div {
          height: 153px;
          overflow-y: scroll;
          padding-right: 14px; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .formArea__form .privacypolicy > div {
              padding-right: 8px; } }
          body.contact .whole__box .formArea__form .privacypolicy > div::-webkit-scrollbar {
            background-color: transparent;
            width: 8px; }
          body.contact .whole__box .formArea__form .privacypolicy > div::-webkit-scrollbar-track {
            background-color: transparent; }
          body.contact .whole__box .formArea__form .privacypolicy > div::-webkit-scrollbar-thumb {
            background-color: #008195;
            border-radius: 6px;
            border-right: 2px solid transparent;
            border-left: 2px solid transparent;
            background-clip: padding-box; }
          body.contact .whole__box .formArea__form .privacypolicy > div p {
            font-size: 13px;
            font-size: 1.3rem;
            line-height: 1.46153846; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__box .formArea__form .privacypolicy > div p {
                font-size: 12px;
                font-size: 1.2rem;
                line-height: 1.83333333; } }
            body.contact .whole__box .formArea__form .privacypolicy > div p strong {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.42857143;
              font-weight: 500;
              color: #008195; }
              @media only screen and (max-width: 767px) {
                body.contact .whole__box .formArea__form .privacypolicy > div p strong {
                  font-size: 13px;
                  font-size: 1.3rem;
                  line-height: 1.69230769; } }
      body.contact .whole__box .formArea__form .agree {
        position: relative;
        margin: 0 auto;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: max-content; }
        body.contact .whole__box .formArea__form .agree #agree {
          opacity: 0;
          position: absolute;
          top: 0;
          left: 0;
          width: 1px;
          display: block; }
          body.contact .whole__box .formArea__form .agree #agree:checked + label i:before {
            opacity: 1; }
          body.contact .whole__box .formArea__form .agree #agree:checked + label span {
            color: #008195; }
        body.contact .whole__box .formArea__form .agree label {
          display: flex;
          align-items: center;
          justify-content: center;
          width: max-content;
          margin: 0 auto; }
          body.contact .whole__box .formArea__form .agree label:hover i:before {
            opacity: 0.15; }
          body.contact .whole__box .formArea__form .agree label:hover span {
            color: #008195; }
          body.contact .whole__box .formArea__form .agree label i {
            width: 22px;
            height: 22px;
            border: 1px solid #008195;
            display: inline-block;
            margin-right: 10px;
            position: relative; }
            body.contact .whole__box .formArea__form .agree label i:before {
              content: "";
              width: 12px;
              height: 12px;
              display: block;
              background: #008195;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              opacity: 0;
              transition: opacity .3s; }
          body.contact .whole__box .formArea__form .agree label span {
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 500;
            color: #101d21;
            transition: color .3s; }
      body.contact .whole__box .formArea__form .submitArea {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .formArea__form .submitArea {
            margin-top: 60px; } }
        body.contact .whole__box .formArea__form .submitArea.confirm {
          margin-top: 60px; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .formArea__form .submitArea.confirm {
              flex-direction: column; } }
          body.contact .whole__box .formArea__form .submitArea.confirm .btnSubmit {
            margin: 0 15px; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__box .formArea__form .submitArea.confirm .btnSubmit {
                margin: 0 auto; } }
      body.contact .whole__box .formArea__form .btnSubmit {
        width: 330px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 500;
        transition: background-color .3s, color .3s;
        background-color: #008195;
        color: #fff;
        margin: 0 auto; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .formArea__form .btnSubmit {
            font-size: 14px;
            font-size: 1.4rem;
            width: 100%;
            max-width: 283px; } }
        body.contact .whole__box .formArea__form .btnSubmit:hover {
          background-color: #CBC54A; }
        body.contact .whole__box .formArea__form .btnSubmit.modify {
          border: 1px solid #111D21;
          color: #111D21;
          background-color: #fff; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__box .formArea__form .btnSubmit.modify {
              order: 2;
              margin-top: 20px !important; } }
          @media only screen and (min-width: 768px) {
            body.contact .whole__box .formArea__form .btnSubmit.modify:hover {
              background-color: #111D21;
              color: #fff; } }
        @media only screen and (max-width: 767px) {
          body.contact .whole__box .formArea__form .btnSubmit.top {
            background: #000; } }

body.top .mainvisual {
  width: 100vw;
  height: 100vh;
  background: radial-gradient(ellipse, #008195, #008195, #007D91, #006E81, #00687D, #00637A);
  overflow: hidden; }
  body.top .mainvisual__movie {
    width: 100%;
    height: 100%;
    position: relative;
    mix-blend-mode: screen; }
    body.top .mainvisual__movie video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: 100vh; }
  body.top .mainvisual__image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .mainvisual__image .car {
      width: 61.875vw;
      max-width: 1188px;
      max-height: 81.85185185vh;
      position: absolute;
      top: 0;
      left: 4.01041667vw; }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__image .car {
          width: 108.26666667vw;
          right: -12.8vw;
          left: auto;
          top: 48%;
          transform: translate(0, -50%); } }
      body.top .mainvisual__image .car img {
        max-height: 81.85185185vh; }
        @media only screen and (max-width: 767px) {
          body.top .mainvisual__image .car img {
            max-height: 100%; } }
    body.top .mainvisual__image .parts {
      width: 32.96875vw;
      max-width: 633px;
      max-height: 35.27777778vh;
      position: absolute;
      right: 9.47916667vw;
      bottom: 5.55555556vh;
      text-align: right; }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__image .parts {
          width: 55.46666667vw;
          right: auto;
          left: 1.33333333vw;
          bottom: 8.54572714vh; } }
      body.top .mainvisual__image .parts img {
        max-height: 35.27777778vh; }
        @media only screen and (max-width: 767px) {
          body.top .mainvisual__image .parts img {
            max-height: 100%; } }
  body.top .mainvisual__text {
    position: absolute;
    top: 14.53703704vh;
    right: 5.52083333vw;
    color: #fff; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__text {
        top: 15.74212894vh;
        right: 4.26666667vw; } }
    body.top .mainvisual__text h1 strong {
      display: block;
      font-size: min(4.0625vw, 7.22222222vh);
      letter-spacing: 0.05em;
      line-height: 1.4;
      font-weight: 600;
      text-align: right; }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__text h1 strong {
          font-size: 8.8vw; } }
    body.top .mainvisual__text h1 small {
      display: block;
      font-size: min(1.14583333vw, 2.03703704vh);
      letter-spacing: 0.05em;
      line-height: 1.46666667;
      font-weight: 600;
      margin-top: 1.85185185vh;
      text-align: right; }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__text h1 small {
          font-size: 2.93333333vw;
          margin-top: 1.2vh; } }
  body.top .mainvisual__scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 95px;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__scroll {
        height: 35px; } }
    body.top .mainvisual__scroll span {
      font-size: 16px;
      font-size: 1.6rem;
      font-family: "Figtree", sans-serif;
      color: #fff;
      position: absolute;
      top: -27px;
      left: 50%;
      transform: translate(-50%, 0%); }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__scroll span {
          font-size: 12px;
          font-size: 1.2rem;
          top: -21px; } }
    body.top .mainvisual__scroll:after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0);
      width: 1px;
      height: 100px;
      display: block;
      background: #fff;
      animation: scrollAnimation 2s cubic-bezier(0.76, 0, 0.24, 1) infinite; }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__scroll:after {
          height: 65px; } }

@keyframes scrollAnimation {
  0% {
    transform-origin: top;
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -webkit-transform: scaleY(0); }
  50% {
    transform-origin: top;
    transform: scaleY(1);
    -webkit-transform-origin: top;
    -webkit-transform: scaleY(1); }
  51% {
    transform-origin: bottom;
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    -webkit-transform: scaleY(1); }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -webkit-transform: scaleY(0); } }

body.top .service {
  padding: 200px 0 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .service {
      padding: 166px 0 40px; } }
  body.top .service__logo {
    position: absolute;
    top: 116px;
    left: 50%;
    transform: translate(-50%, 0%); }
    @media only screen and (max-width: 767px) {
      body.top .service__logo {
        width: 152px;
        top: 58px;
        left: auto;
        right: 16px;
        transform: translate(0, 0); } }
  body.top .service .col {
    display: flex;
    justify-content: space-between;
    padding-bottom: 160px; }
    @media only screen and (max-width: 767px) {
      body.top .service .col {
        display: block;
        padding-bottom: 60px; } }
  body.top .service .left {
    width: 37.91666667%; }
    @media only screen and (max-width: 767px) {
      body.top .service .left {
        width: 100%; } }
    body.top .service .left .catch {
      font-size: 30px;
      font-size: 3rem;
      line-height: 1.72;
      font-weight: 600;
      display: block;
      border-top: 1px solid #101D21;
      padding-top: 30px;
      margin-top: 60px;
      margin-bottom: 165px; }
      @media only screen and (max-width: 767px) {
        body.top .service .left .catch {
          font-size: 22px;
          font-size: 2.2rem;
          padding: 30px 0;
          border-bottom: 1px solid #101D21;
          margin-bottom: 36px; } }
      body.top .service .left .catch em {
        color: #008195; }
    body.top .service .left .bg {
      width: 813px;
      margin-left: -360px;
      max-width: 813px;
      clip-path: polygon(0 0, 100% 0, calc(100% - 88px) 100%, 0 100%); }
      @media only screen and (max-width: 1280px) {
        body.top .service .left .bg {
          width: 63.515625vw;
          margin-left: calc(-25vw - 40px);
          clip-path: polygon(0 0, 100% 0, calc(100% - 6.875vw) 100%, 0 100%); } }
  body.top .service .right {
    width: 46.2%;
    padding-top: 268px; }
    @media only screen and (min-width: 768px) {
      body.top .service .right {
        text-align: justify; } }
    @media only screen and (max-width: 767px) {
      body.top .service .right {
        width: 100%;
        padding-top: 0; } }
    body.top .service .right p {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 2;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.top .service .right p {
          font-size: 15px;
          font-size: 1.5rem; } }
    body.top .service .right .bg {
      width: calc(100% + 16px);
      margin-left: -30px;
      margin-top: 38px;
      clip-path: polygon(0 0, 100% 0, calc(100% - 34px) 100%, 0 100%); }
  body.top .service__list {
    counter-reset: number 0; }
    body.top .service__list li {
      position: relative;
      padding: 80px 0;
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.top .service__list li {
          padding: 60px 0;
          display: block; } }
      body.top .service__list li:before {
        content: "";
        width: 100vw;
        height: 1px;
        display: block;
        background: #101D21;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0); }
      body.top .service__list li .text {
        width: 70%;
        display: flex; }
        @media only screen and (max-width: 767px) {
          body.top .service__list li .text {
            width: 100%;
            display: block; } }
        body.top .service__list li .text dt {
          width: 61.9047619%;
          padding-left: 50px;
          padding-right: 30px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.top .service__list li .text dt {
              width: 100%;
              padding-left: 34px;
              padding-right: 0; } }
          body.top .service__list li .text dt:before {
            counter-increment: number 1;
            content: counter(number, decimal-leading-zero);
            font-size: 24px;
            font-size: 2.4rem;
            font-weight: 500;
            color: #008195;
            position: absolute;
            top: 5px;
            left: 0; }
            @media only screen and (max-width: 767px) {
              body.top .service__list li .text dt:before {
                font-size: 18px;
                font-size: 1.8rem;
                top: 3px; } }
          body.top .service__list li .text dt h3 {
            font-size: 28px;
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.25; }
            @media only screen and (max-width: 767px) {
              body.top .service__list li .text dt h3 {
                font-size: 20px;
                font-size: 2rem;
                margin-bottom: 30px; } }
            body.top .service__list li .text dt h3 small {
              font-size: 20px;
              font-size: 2rem;
              font-weight: 600;
              display: block;
              margin-top: 7px; }
              @media only screen and (max-width: 767px) {
                body.top .service__list li .text dt h3 small {
                  font-size: 18px;
                  font-size: 1.8rem; } }
        body.top .service__list li .text dd {
          width: 38.0952381%; }
          @media only screen and (max-width: 767px) {
            body.top .service__list li .text dd {
              width: 100%; } }
          body.top .service__list li .text dd p {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 2;
            font-weight: 500; }
            @media only screen and (max-width: 767px) {
              body.top .service__list li .text dd p {
                font-size: 13px;
                font-size: 1.3rem;
                line-height: 1.69230769; } }
      body.top .service__list li .image {
        width: 26.25%; }
        @media only screen and (max-width: 767px) {
          body.top .service__list li .image {
            width: 100%;
            margin-top: 30px; } }

body.top .works {
  background: #008195;
  color: #fff;
  padding: 150px 0; }
  @media only screen and (max-width: 767px) {
    body.top .works {
      padding: 60px 0 24px; } }
  body.top .works__title {
    font-size: 30px;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 60px; }
    @media only screen and (max-width: 767px) {
      body.top .works__title {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 40px; } }
  body.top .works__list {
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.top .works__list {
        flex-wrap: wrap; } }
    body.top .works__list li {
      width: 22.66666667%;
      margin-right: 3.11111111%; }
      @media only screen and (max-width: 767px) {
        body.top .works__list li {
          width: 47.92332268%;
          margin-right: 4.15335464%;
          margin-bottom: 36px; } }
      body.top .works__list li:nth-of-type(4n) {
        margin-right: 0; }
      @media only screen and (max-width: 767px) {
        body.top .works__list li:nth-of-type(2n) {
          margin-right: 0; } }
      body.top .works__list li .text {
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          body.top .works__list li .text {
            margin-top: 15px; } }
        body.top .works__list li .text strong {
          display: block;
          font-size: 20px;
          font-size: 2rem;
          font-weight: 600;
          line-height: 1.5;
          padding-bottom: 15px;
          border-bottom: 1px solid #fff; }
          @media only screen and (max-width: 767px) {
            body.top .works__list li .text strong {
              font-size: 13px;
              font-size: 1.3rem; } }
        body.top .works__list li .text p {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.71428571;
          font-weight: 500;
          margin-top: 14px; }
          @media only screen and (max-width: 767px) {
            body.top .works__list li .text p {
              font-size: 11px;
              font-size: 1.1rem;
              line-height: 1.72727273; } }

body.top .equipments {
  padding: 160px 0;
  background: #FAFAFA; }
  @media only screen and (max-width: 767px) {
    body.top .equipments {
      padding: 60px 0 60px; } }
  body.top .equipments .c-title02 {
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.top .equipments .c-title02 {
        margin-bottom: 45px; } }
  body.top .equipments__box {
    max-width: 795px;
    margin-left: auto;
    padding-top: 30px;
    border-top: 1px solid #101D21; }
    body.top .equipments__box dl {
      margin-bottom: 60px; }
      body.top .equipments__box dl:last-of-type {
        margin-bottom: 0; }
      body.top .equipments__box dl dt {
        display: flex;
        align-items: center;
        margin-bottom: 30px; }
        body.top .equipments__box dl dt .number {
          width: 58px;
          height: 58px;
          font-family: "Figtree", sans-serif;
          font-size: 24px;
          font-size: 2.4rem;
          color: #fff;
          background: #101D21;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 20px; }
          @media only screen and (max-width: 767px) {
            body.top .equipments__box dl dt .number {
              width: 52px;
              height: 52px;
              margin-right: 15px; } }
        body.top .equipments__box dl dt > div strong {
          display: block;
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 1.45833333;
          font-weight: 600;
          margin-bottom: 8px; }
          @media only screen and (max-width: 767px) {
            body.top .equipments__box dl dt > div strong {
              font-size: 16px;
              font-size: 1.6rem;
              margin-bottom: 4px; } }
        body.top .equipments__box dl dt > div small {
          display: block;
          font-size: 13px;
          font-size: 1.3rem;
          line-height: 1.15384615;
          font-weight: 600;
          color: #949C9D; }
      body.top .equipments__box dl dd .table {
        margin-top: 30px;
        border-bottom: 1px solid #101D21; }
        @media only screen and (max-width: 767px) {
          body.top .equipments__box dl dd .table {
            margin-top: 20px; } }
        body.top .equipments__box dl dd .table .table02 {
          display: none; }
          body.top .equipments__box dl dd .table .table02 table tbody tr:last-of-type th {
            border: none; }
          body.top .equipments__box dl dd .table .table02 table tbody tr:last-of-type td {
            border: none; }
        body.top .equipments__box dl dd .table table {
          width: 100%; }
          body.top .equipments__box dl dd .table table thead tr th {
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 500;
            padding: 20px;
            border-bottom: 2px solid #E0E0E0;
            text-align: center; }
            @media only screen and (max-width: 767px) {
              body.top .equipments__box dl dd .table table thead tr th {
                font-size: 11px;
                font-size: 1.1rem;
                padding: 10px 10px; } }
            body.top .equipments__box dl dd .table table thead tr th:nth-of-type(1) {
              width: 30.8%; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table thead tr th:nth-of-type(1) {
                  width: 32.5%; } }
            body.top .equipments__box dl dd .table table thead tr th:nth-of-type(2) {
              padding-left: 0px;
              width: 33%; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table thead tr th:nth-of-type(2) {
                  width: 26%; } }
            body.top .equipments__box dl dd .table table thead tr th:nth-of-type(3) {
              width: 15.7%; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table thead tr th:nth-of-type(3) {
                  width: 16%; } }
            body.top .equipments__box dl dd .table table thead tr th:nth-of-type(4) {
              width: 20.5%; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table thead tr th:nth-of-type(4) {
                  width: 25.5%; } }
          body.top .equipments__box dl dd .table table tbody tr th {
            border-bottom: 1px solid #E0E0E0;
            padding: 14px;
            text-align: center;
            color: #008195;
            width: 30.8%;
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571;
            vertical-align: top; }
            @media only screen and (max-width: 767px) {
              body.top .equipments__box dl dd .table table tbody tr th {
                font-size: 11px;
                font-size: 1.1rem;
                line-height: 1.45454545;
                width: 32.5%;
                padding: 10px 0;
                vertical-align: top; } }
          body.top .equipments__box dl dd .table table tbody tr td {
            border-bottom: 1px solid #E0E0E0;
            padding: 14px;
            text-align: center;
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571; }
            @media only screen and (max-width: 767px) {
              body.top .equipments__box dl dd .table table tbody tr td {
                font-size: 11px;
                font-size: 1.1rem;
                line-height: 1.45454545;
                padding: 10px 0; } }
            body.top .equipments__box dl dd .table table tbody tr td:first-of-type {
              text-align: left;
              padding-left: 50px; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table tbody tr td:first-of-type {
                  padding-left: 8px; } }
            body.top .equipments__box dl dd .table table tbody tr td:nth-of-type(1) {
              width: 33%; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table tbody tr td:nth-of-type(1) {
                  width: 26%; } }
            body.top .equipments__box dl dd .table table tbody tr td:nth-of-type(2) {
              width: 15.7%; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table tbody tr td:nth-of-type(2) {
                  width: 16%; } }
            body.top .equipments__box dl dd .table table tbody tr td:nth-of-type(3) {
              width: 20.5%; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table table tbody tr td:nth-of-type(3) {
                  width: 25.5%; } }
        body.top .equipments__box dl dd .table .open {
          width: 100%;
          height: 60px;
          padding-bottom: 15px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          cursor: pointer; }
          @media only screen and (max-width: 767px) {
            body.top .equipments__box dl dd .table .open {
              height: 48px;
              padding-bottom: 5px; } }
          body.top .equipments__box dl dd .table .open.active:before {
            opacity: 0; }
          body.top .equipments__box dl dd .table .open.active i:after {
            opacity: 0; }
          body.top .equipments__box dl dd .table .open:before {
            content: "";
            width: 100%;
            height: 200%;
            display: block;
            position: absolute;
            left: 0;
            bottom: 0;
            background: linear-gradient(rgba(250, 250, 250, 0.8), #fafafa);
            transition: opacity .3s; }
          body.top .equipments__box dl dd .table .open i {
            width: 15px;
            height: 15px;
            position: relative; }
            @media only screen and (max-width: 767px) {
              body.top .equipments__box dl dd .table .open i {
                width: 13px;
                height: 13px; } }
            body.top .equipments__box dl dd .table .open i:before {
              content: "";
              width: 15px;
              height: 1px;
              display: block;
              background: #008195;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%); }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table .open i:before {
                  width: 13px; } }
            body.top .equipments__box dl dd .table .open i:after {
              content: "";
              width: 1px;
              height: 15px;
              display: block;
              background: #008195;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              transition: opacity .3s; }
              @media only screen and (max-width: 767px) {
                body.top .equipments__box dl dd .table .open i:after {
                  height: 13px; } }

body.top .about {
  padding: 160px 0;
  background: #fff; }
  @media only screen and (max-width: 767px) {
    body.top .about {
      padding: 90px 0; } }
  body.top .about .c-title02 {
    margin-bottom: 106px; }
    @media only screen and (max-width: 767px) {
      body.top .about .c-title02 {
        margin-bottom: 45px; } }
  body.top .about .inner > h3 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.45833333;
    font-weight: 500;
    color: #CBC54A;
    text-align: center;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.top .about .inner > h3 {
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 24px; } }
  body.top .about .inner > p {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.45;
    font-weight: 500;
    text-align: center;
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.top .about .inner > p {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 2;
        margin-bottom: 60px; } }
  body.top .about .col {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.top .about .col {
        flex-direction: column;
        margin-bottom: 50px; } }
    body.top .about .col:last-of-type {
      margin-bottom: 0; }
    body.top .about .col .text {
      width: 62.16666667%;
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.top .about .col .text {
          width: 100%;
          order: 2;
          padding: 0;
          margin-top: 10px; } }
      body.top .about .col .text table {
        width: 100%;
        max-width: 608px; }
        @media only screen and (max-width: 767px) {
          body.top .about .col .text table {
            display: block; } }
        @media only screen and (max-width: 767px) {
          body.top .about .col .text table tbody {
            display: block; } }
        @media only screen and (max-width: 767px) {
          body.top .about .col .text table tr:last-of-type {
            border: none; } }
        @media only screen and (max-width: 767px) {
          body.top .about .col .text table tr {
            display: block;
            border-bottom: 1px solid #E0E0E0;
            padding: 10px 0; } }
        body.top .about .col .text table tr th {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          font-weight: 500;
          padding: 12px 0;
          border-bottom: 1px solid #E0E0E0;
          width: 37.82894737%; }
          @media only screen and (max-width: 767px) {
            body.top .about .col .text table tr th {
              width: 100%;
              display: block;
              border: none;
              font-size: 14px;
              font-size: 1.4rem;
              padding: 0;
              margin-bottom: 5px;
              line-height: 1.6; } }
        body.top .about .col .text table tr td {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          padding: 12px 0;
          border-bottom: 1px solid #E0E0E0;
          width: 62.17105263%; }
          @media only screen and (max-width: 767px) {
            body.top .about .col .text table tr td {
              width: 100%;
              display: block;
              border: none;
              font-size: 13px;
              font-size: 1.3rem;
              line-height: 1.69230769;
              padding: 0; } }
    body.top .about .col .image {
      width: 37.83333333%; }
      @media only screen and (max-width: 767px) {
        body.top .about .col .image {
          width: 100%;
          order: 1; } }
      body.top .about .col .image > div {
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.top .about .col .image > div {
            margin-bottom: 12px; } }
        body.top .about .col .image > div:last-of-type {
          margin-bottom: 0; }
      @media only screen and (max-width: 767px) {
        body.top .about .col .image.narrow {
          order: 2;
          width: 282px;
          margin: 50px auto 0; } }

body.top .history {
  padding: 120px 0 135px;
  background-color: rgba(16, 29, 33, 0.8);
  background-image: url(../images/top/history_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff; }
  @media only screen and (max-width: 767px) {
    body.top .history {
      background-image: url(../images/top/history_bg_sp.png);
      padding: 70px 0 60px; } }
  body.top .history__table {
    max-width: 585px;
    margin: 95px auto 0; }
    @media only screen and (max-width: 767px) {
      body.top .history__table {
        margin-top: 45px; } }
    body.top .history__table table {
      width: 100%; }
      @media only screen and (max-width: 767px) {
        body.top .history__table table {
          display: block; } }
    @media only screen and (max-width: 767px) {
      body.top .history__table tbody {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.top .history__table tr {
        display: block;
        border-bottom: 1px solid #E0E0E0;
        padding: 10px 0; } }
    @media only screen and (max-width: 767px) {
      body.top .history__table tr:last-of-type {
        border: none; } }
    body.top .history__table tr:last-of-type th {
      border: none; }
    body.top .history__table tr:last-of-type td {
      border: none; }
    body.top .history__table tr th {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2;
      font-weight: 500;
      padding: 15px 0;
      border-bottom: 1px solid #E0E0E0;
      width: 39.31623932%; }
      @media only screen and (max-width: 767px) {
        body.top .history__table tr th {
          display: block;
          width: 100%;
          border: none;
          padding: 0;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.8; } }
    body.top .history__table tr td {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2;
      padding: 15px 0;
      border-bottom: 1px solid #E0E0E0;
      width: 60.68376068%; }
      @media only screen and (max-width: 767px) {
        body.top .history__table tr td {
          display: block;
          width: 100%;
          border: none;
          padding: 0; } }
  @media only screen and (max-width: 767px) and (max-width: 767px) {
    body.top .history__table tr td {
      font-size: 13px;
      font-size: 1.3rem; } }

body.top .access {
  padding: 160px 0; }
  @media only screen and (max-width: 767px) {
    body.top .access {
      padding: 90px 0 60px; } }
  @media only screen and (max-width: 767px) {
    body.top .access .inner {
      padding: 0 22px; } }
  body.top .access .col {
    display: flex;
    justify-content: space-between;
    margin-top: 100px; }
    @media only screen and (max-width: 767px) {
      body.top .access .col {
        display: block;
        margin-top: 74px; } }
    body.top .access .col dl {
      width: 45.66666667%; }
      @media only screen and (max-width: 767px) {
        body.top .access .col dl {
          width: 100%;
          position: relative;
          margin-bottom: 30px; } }
      body.top .access .col dl dt {
        width: 100%;
        height: 340px; }
        @media only screen and (max-width: 767px) {
          body.top .access .col dl dt {
            height: 420px; } }
        body.top .access .col dl dt iframe {
          width: 100%;
          height: 100%; }
      body.top .access .col dl dd {
        margin-top: 30px; }
        @media only screen and (max-width: 767px) {
          body.top .access .col dl dd {
            margin: 0;
            background: rgba(16, 29, 33, 0.7);
            padding: 30px 25px;
            color: #fff;
            position: absolute;
            left: 0;
            bottom: 0; } }
        body.top .access .col dl dd strong {
          display: block;
          font-size: 18px;
          font-size: 1.8rem;
          line-height: 1.44444444;
          font-weight: 600;
          margin-bottom: 12px; }
          @media only screen and (max-width: 767px) {
            body.top .access .col dl dd strong {
              font-size: 13px;
              font-size: 1.3rem;
              line-height: 1.69230769;
              margin-bottom: 0; } }
        body.top .access .col dl dd address {
          display: block;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          margin-bottom: 12px; }
          @media only screen and (max-width: 767px) {
            body.top .access .col dl dd address {
              font-size: 13px;
              font-size: 1.3rem;
              line-height: 1.69230769;
              margin-bottom: 18px; } }
        body.top .access .col dl dd span {
          display: block;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          color: #949C9D; }
          @media only screen and (max-width: 767px) {
            body.top .access .col dl dd span {
              color: #fff;
              font-size: 11px;
              font-size: 1.1rem;
              line-height: 1.72727273; } }

body.top main > .contact {
  padding: 120px 0 128px;
  background-color: #008195;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: block; }
  @media only screen and (max-width: 767px) {
    body.top main > .contact {
      padding: 70px 0; } }
  @media only screen and (min-width: 768px) {
    body.top main > .contact:hover:after {
      width: 140%;
      opacity: 1; }
    body.top main > .contact:hover .btn {
      color: #fff;
      background: #CBC54A; } }
  body.top main > .contact:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/top/contact_bg.png) center center/cover no-repeat;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top main > .contact:before {
        background: url(../images/top/contact_bg_sp.png) center center/cover no-repeat; } }
  body.top main > .contact:after {
    content: "";
    width: 0%;
    height: 100%;
    display: block;
    background: rgba(16, 29, 33, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    clip-path: polygon(0 0, calc(100% - 550px) 0, 100% 100%, 0 100%);
    transition: width .5s, opacity .5s; }
  body.top main > .contact .inner {
    position: relative;
    z-index: +1; }
  body.top main > .contact .btn {
    width: 100%;
    max-width: 400px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #008195;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 76px auto 0;
    transition: background-color .3s, color .3s; }
    @media only screen and (max-width: 767px) {
      body.top main > .contact .btn {
        width: 283px;
        height: 60px;
        font-size: 15px;
        font-size: 1.5rem;
        margin-top: 36px; } }
