@charset "UTF-8";
body {
  overflow: hidden;
}

#mainvisual {
  position: relative;
  background: url("../images/bg_main.png") no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  z-index: 3;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 1.5s ease-out;
  transition: 1.5s ease-out;
  opacity: 0;
}
#mainvisual.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
#mainvisual .container {
  position: relative;
  width: 100%;
  height: 100%;
}
#mainvisual .container .main_catch {
  position: absolute;
  left: 0;
  bottom: 10%;
  color: #fff;
}
#mainvisual .container .main_catch h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  font-weight: 500;
}
#mainvisual .container .main_catch p {
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
}
#mainvisual .container .scroll {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#mainvisual .container .scroll .scroll-line {
  position: absolute;
  overflow: hidden;
  bottom: 45px;
  right: 0;
  margin: auto;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform-origin: center;
  transform-origin: center;
}
#mainvisual .container .scroll .scroll-line:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  -webkit-animation: scrollLineTop 3s ease infinite;
  animation: scrollLineTop 3s ease infinite;
  background: #fff;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #mainvisual {
    background: url("../images/sp_bg_main.png") no-repeat bottom center;
    background-size: cover;
    height: 70vh;
  }
  #mainvisual .container .main_catch {
    left: 2%;
  }
  #mainvisual .container .main_catch h1 {
    font-size: 20px;
  }
  #mainvisual .container .main_catch p {
    font-size: 14px;
  }
}
/* ========== end △ */

@-webkit-keyframes scrollLineTop {
  0% {
    -webkit-transform: translateY(-60px) scaleY(0.8);
    transform: translateY(-60px) scaleY(0.8);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  100% {
    -webkit-transform: translateY(60px) scaleY(1);
    transform: translateY(60px) scaleY(1);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
@keyframes scrollLineTop {
  0% {
    -webkit-transform: translateY(-60px) scaleY(0.8);
    transform: translateY(-60px) scaleY(0.8);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  100% {
    -webkit-transform: translateY(60px) scaleY(1);
    transform: translateY(60px) scaleY(1);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
.sec_cont {
  padding: 140px 0 180px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec_cont {
    padding: 50px 0;
  }
}
/* ========== end △ */

.sec_about .des_about {
  position: relative;
  width: 500px;
  margin: auto;
  padding-top: 50px;
}
.sec_about .des_about .ttl {
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
  top: 0;
  left: -35%;
}
.sec_about .des_about .sub {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.sec_about .des_about * + p:not(:last-child) {
  margin-bottom: 20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec_about .des_about {
    width: 100%;
    padding-top: 40px;
    padding-left: 2%;
  }
  .sec_about .des_about .ttl {
    left: 0;
    margin-bottom: 10px;
  }
  .sec_about .des_about * + p:not(:last-child) {
    margin-bottom: 10px;
  }
}
/* ========== end △ */

.list_two_img {
  margin-top: 130px;
  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;
}
.list_two_img li {
  position: relative;
  z-index: 3;
}
.list_two_img li:nth-child(1) {
  -webkit-box-shadow: 0 0 50px -25px #A6845F;
          box-shadow: 0 0 50px -25px #A6845F;
}
.list_two_img li:nth-child(2) {
  -webkit-box-shadow: 0 0 50px -25px #445E54;
          box-shadow: 0 0 50px -25px #445E54;
}
.list_two_img li.img_l {
  width: 48.5%;
}
.list_two_img li.img_s {
  width: 27.1%;
}
.list_two_img li img {
  width: 100%;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .list_two_img {
    margin-top: 25px;
    width: 104%;
    margin-left: -2%;
  }
  .list_two_img li.img_l {
    width: 58%;
  }
  .list_two_img li.img_s {
    width: 35%;
  }
}
/* ========== end △ */

.one_img {
  width: 100%;
}
.one_img img {
  width: 100%;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .one_img {
    margin-bottom: 30px;
  }
}
/* ========== end △ */

.style_ttl01 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 4px;
  margin-bottom: 30px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .style_ttl01 {
    font-size: 25px;
    margin-bottom: 15px;
  }
}
/* ========== end △ */

.sec_business .list_business .business_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec_business .list_business .business_item .txt_item {
  width: 28%;
}
.sec_business .list_business .business_item .txt_item .sub {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.sec_business .list_business .business_item .img_item {
  width: 51%;
}
.sec_business .list_business .business_item .img_item img {
  width: 100%;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec_business .list_business .business_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sec_business .list_business .business_item .txt_item {
    width: 100%;
    margin-bottom: 30px;
  }
  .sec_business .list_business .business_item .txt_item .sub {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .sec_business .list_business .business_item .img_item {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* ========== end △ */
@media (min-width: 999px) {
  .sec_business .list_business {
    position: relative;
    z-index: 1;
    height: 50vh;
  }
  .sec_business .list_business .business_item {
    position: absolute;
    z-index: 3;
    width: 100%;
    max-width: 1180px;
    height: 100%;
    -webkit-transition: all 0.4s cubic-bezier(0.5, 0, 0, 1);
    transition: all 0.4s cubic-bezier(0.5, 0, 0, 1);
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
  }
  .sec_business .list_business .business_item.in-view {
    opacity: 1;
    z-index: 99;
  }
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec_business .sec_cont {
    padding: 50px 2%;
  }
}
/* ========== end △ */

.scroll_down {
  margin-top: 130px;
}
.scroll_down a {
  display: inline-block;
  padding-right: 25px;
  background: url("../images/arrow_down.png") no-repeat top right;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .scroll_down a:hover {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .scroll_down {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/* ========== end △ */

.sec_news .box_news {
  width: 1080px;
  margin: auto;
}
.sec_news .box_news .cont_news {
  height: 545px;
  overflow-y: auto;
  border-top: 1px dotted #ccc;
}
.sec_news .box_news .cont_news ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-decoration: none;
  padding: 70px 0;
  border-bottom: 1px dotted #ccc;
}
.sec_news .box_news .cont_news ul li a .date {
  width: 170px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
  color: #5A685D;
  line-height: normal;
}
.sec_news .box_news .cont_news ul li a p {
  width: calc(100% - 170px);
  padding-right: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
}
.sec_news .box_news .cont_news ul li a:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #C1C0BF;
  background: url("../images/arrow_btn_m.png") no-repeat center;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .sec_news .box_news .cont_news ul li a:hover {
    background: rgba(90, 104, 93, 0.5);
    color: #fff;
  }
  .sec_news .box_news .cont_news ul li a:hover .date {
    color: #fff;
  }
  .sec_news .box_news .cont_news ul li a:hover:after {
    border-color: #fff;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec_news .box_news {
    width: 100%;
    margin-top: 30px;
  }
  .sec_news .box_news .cont_news {
    height: 471px;
  }
  .sec_news .box_news .cont_news ul li a {
    padding: 20px 0 20px 2%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec_news .box_news .cont_news ul li a:after {
    right: 0;
    width: 45px;
    height: 45px;
    background-size: 8px;
  }
  .sec_news .box_news .cont_news ul li a .date {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
  }
  .sec_news .box_news .cont_news ul li a p {
    width: 100%;
    padding-right: 60px;
  }
}
/* ========== end △ */

.sec_company {
  position: relative;
  background: url("../images/bg_company.png") no-repeat top center/cover;
  margin-top: 160px;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 1.5s ease-out;
  transition: 1.5s ease-out;
  opacity: 0;
}
.sec_company.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.sec_company .inner_sec {
  position: relative;
  width: 100%;
  color: #fff;
  padding-top: 40%;
  padding-right: 50%;
  padding-bottom: 15%;
}
.sec_company .inner_sec:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  top: 60%;
  right: 50px;
  border-radius: 50%;
  border: 1px solid #C1C0BF;
  background: url("../images/arrow_btn_l.png") no-repeat center;
}
.sec_company .inner_sec p {
  letter-spacing: 3px;
  font-weight: normal;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .sec_company:hover {
    opacity: 0.7;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec_company {
    background: url("../images/sp_bg_company.png") no-repeat top center/cover;
    margin-top: 50px;
  }
  .sec_company .inner_sec {
    padding-top: 40%;
    padding-right: 100px;
    padding-bottom: 10%;
  }
  .sec_company .inner_sec:after {
    width: 60px;
    height: 60px;
    background-size: 10px;
    right: 10px;
  }
  .sec_company .inner_sec .style_ttl01 {
    margin-bottom: 5px;
  }
  .sec_company .inner_sec p {
    line-height: 1.8;
  }
}
/* ========== end △ */

.progress-wrapper {
  position: absolute;
  width: 30px;
  z-index: 9999;
  left: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 200px;
}

.progress-bar {
  height: 100%;
  width: 1px;
  background-color: #ccc;
  position: relative;
  z-index: 1;
  margin: 10px 0;
}
.progress-bar::after {
  content: "";
  background-color: #000;
  width: 1px;
  top: 0;
  height: var(--percent);
  position: absolute;
}

@media (max-width: 767px) {
  .progress-wrapper {
    display: none;
  }
}