@charset "UTF-8";

/* 共通 */
.top_titlebox {
  margin-bottom: 40px;
}
.top_titlebox .sub {
  font-size: 20px;
  color: var(--color2);
  margin-bottom: 10px;
}
.top_titlebox .title {
  font-size: 35px;
  color: var(--color2);
}
.top_titlebox .title_txt {
  line-height: 1.75;
  margin-top: 30px;
}
.topbox {
  align-items: flex-start;
  justify-content: space-between;
}
.topbox .childbox,
.topbox .pict {
  width: 48%;
  box-sizing: border-box;
}
.topbox .childtitle {
  font-size: 22px;
  border-bottom: dashed 1px var(--color3);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.topbox .comment {
  line-height: 1.75;
  text-align: justify;
}
.topbox .nextbtn {
  margin-top: 40px;
}
.topbox .nextbtn a {
  color: #fff;
  border: solid 1px var(--color2);
  background-color: var(--color2);
  padding: 10px 30px;
  display: inline-block;
  transition: all .3s;
}
.topbox .nextbtn:hover a {
  color: var(--color2);
  background-color: #fff;
}
.topbox .nextbtn i {
  margin-left: 10px;
}
@media screen and (max-width:768px) {
  .top_titlebox {
    margin-bottom: 30px;
  }
  .top_titlebox .sub {
    font-size: 16px;
  }
  .top_titlebox .title {
    font-size: 22px;
  }
  .topbox {
    flex-wrap: wrap;
    gap: 30px;
  }
  .topbox .childbox,
  .topbox .pict {
    width: 100%;
  }
  .topbox .childtitle {
    font-size: 18px;
    text-align: center;
  }
  .topbox .comment {
    font-size: 14px;
  }
  .topbox .nextbtn {
    text-align: center;
  }
  .topbox .nextbtn a {
    font-size: 14px;
  }
}

/* ファーストビュー */
.fv {
  height: calc(100vh - 100px);
  background-image: url(../img/top/img_top01-2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 50px;
  position: relative;
}
.fv .wrap {
  max-width: 1400px;
}
.fv .title {
  font-size: 60px;
  line-height: 1.3;
  color: var(--color2);
}
.fv .sub {
  font-size: 25px;
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and (max-width:960px) {
  .fv {
    height: calc(100vh - 90px);
  }
}
@media screen and (max-width:768px) {
  .fv {
    padding-top: 30px;
  }
  .fv .title {
    font-size: 25px;
  }
  .fv .sub {
    font-size: 13px;
  }
}

/* スクロールダウン */
.scroll_down {
  position:absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  animation: arrowmove 1s ease-in-out infinite;
  opacity: 1;
  visibility: visible;
  transition: all .3s ease;
}
.scroll_down.fixed {
  opacity: 0;
  visibility: hidden;
}
.scroll_down .inn {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: var(--color2);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}
.scroll_down .txt {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: var(--color2);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}
.scroll_down .arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.scroll_down .arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}
.scroll_down .arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.scroll_down .arrow:before,
.scroll_down .arrow:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: var(--color2);
}
.scroll_down .arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.scroll_down .arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@media screen and (max-width:768px) {
  .scroll_down {
    right: 50%;
  }
  .scroll_down .inn {
    left: 50%;
    transform: translateX(-50%);
  }
}
@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}

/* 投資スタイル */
.style .box {
  border-radius: 10px;
  background-color: var(--color6);
  padding: 30px;
  margin-top: 40px;
}
.style .boxtitle {
  font-size: 25px;
  margin-bottom: 30px;
}
.style .box .list {
  gap: 30px;
}
.style .box .item {
  width: calc((100% - 60px)/3);
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
}
.style .box .item .item_title {
  font-size: 18px;
  text-align: center;
  color: var(--color2);
}
.style .box .item .item_title::after {
  content: "";
  width: 30px;
  border-bottom: dotted 2px var(--color2);
  margin: 15px auto 20px;
  display: block;
}
.style .box .item .item_txt {
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}
@media screen and (max-width:768px) {
  .style .box {
    padding: 30px 20px;
  }
  .style .boxtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .style .box .list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .style .box .item {
    width: 100%;
    padding: 20px;
  }
}

/* トレーラーハウス経営とは */
.management {
  background-color: var(--color6);
}

/* CCUとは */
.ccu {
  background-color: var(--color6);
}

/* 会社概要 */
.company .table {
  width: 100%;
  max-width: 800px;
  border-top: solid 1px var(--color1);
  margin: 0 auto;
  box-sizing: border-box;
}
.company .table tr td {
  vertical-align: middle;
  border-bottom: solid 1px var(--color1);
  padding: 15px 20px;
}
.company .table tr td.left {
  white-space: nowrap;
  border-right: solid 1px var(--color1);
}
@media screen and (max-width:768px) {
  .company .table tr td {
    font-size: 14px;
    padding: 10px;
  }
  .company .table tr td span {
    display: block;
  }
}
@media screen and (min-width:769px) {
  .company .table tr td span {
    margin-right: .5em;
  }
}