@charset "UTF-8";

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  z-index: 10;
  transition: .5s;
}
.header.change {
  background: #15181F;
}
.header-logo {
  max-width: 300px;
}
.header-logo:hover {
  opacity: 1;
}
.header-nav > ul {
  display: flex;
  align-items: center;
}
.header-nav > ul > li {
  position: relative;
}
.header-nav > ul > li > a {
  display: block;
  font-size: 1.8rem;
}
.header-nav > ul > li:hover a {
  opacity: 1;
}
.header-nav > ul > li:not(:last-child) {
  margin-right: 2rem;
}
.header-nav > ul > li::after {
  background: #60AC88;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  height: 1px;
  width: 100%;
}
.header-nav > ul > li:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.openbtn {
  display: none;
}
.header-nav-logo {
  display: none;
}
@media screen and (max-width: 1180px) {
  .header-nav a {
    pointer-events: none;
  }
  .header-nav-wrap.open .header-nav a {
    pointer-events: all;
  }
  .header-nav-wrap {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #14181F;
    border: 2px solid #60AC88;
    overflow-y: scroll;
    padding: 4rem 2rem 2rem;
    width: 100%;
    max-width: 350px;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
  }
  .header-nav-wrap.open {
    opacity: 1;
    pointer-events: all;
    transition: .5s;
  }
  .header-nav-logo {
    display: block;
    margin: 0 auto 2rem !important;
    max-width: 250px;
  }
  .header-nav-logo a {
    text-align: center;
  }
  .header-nav > ul {
    display: block;
  }
  .header-nav > ul > li {
    text-align: left;
    width: 100%;
  }
  .header-nav > ul > li:not(:first-child) {
    background: #fff;
    border: 2px solid #60AC88;
    margin-right: 0;
    margin-bottom: 1rem;
    padding: .5rem 2rem .5rem 3rem;
  }
  .header-nav > ul > li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 13px;
    aspect-ratio: 206 / 199;
    background: #60AC88;
    mask: url(../images/common/icon-nav-arrow.svg) no-repeat center / contain;
    transition: .5s;
    width: 10px;
  }
  .header-nav > ul > li::after {
    display: none;
  }
  .header-nav > ul > li > a {
    color: initial;
  }

  .openbtn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border: 2px solid #60AC88;
    cursor: pointer;
    display: block;
    transition: .5s;
    height: 50px;
    width: 50px;
    z-index: 10;
  }
  .openbtn.open {
    background: #60AC88;
  }
  .openbtn::after {
    content: 'MENU';
    position: absolute;
    bottom: 5px;
    left: 9px;
    color: #60AC88;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
  }
  .openbtn.open::after {
    content: 'CLOSE';
    color: #fff;
    left: 5px;
  }
  .openbtn span {
    position: absolute;
    left: 14px;
    background: #60AC88;
    display: inline-block;
    transition: .5s;
    height: 2px;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 10px;
  }
  .openbtn span:nth-of-type(2) {
    top: 18px;
  }
  .openbtn span:nth-of-type(3) {
    top: 26px;
  }
  .openbtn.open .openbtn-area {
    transform: rotate(360deg);
  }
  .openbtn.open span {
    background: #fff;
  }
  .openbtn.open span:nth-of-type(1) {
    top: 12px;
    left: 17px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.open span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.open span:nth-of-type(3) {
    top: 24px;
    left: 17px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    max-width: 200px;
  }
  .header-nav-wrap {
    right: 50%;
    transform: translateX(50%);
  }
  .openbtn {
    top: 10px;
    right: 10px;
  }
}

/* フッター */
.footer {
  background: #15181F;
  padding: 5rem 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.footer-logo {
  max-width: 250px;
  margin-bottom: 2rem;
}
.footer-info .dl-tel {
  display: flex;
  flex-wrap: wrap;
}
.footer-info .dl-tel dt {
  width: 35px;
}
.footer-info .dl-tel dd {
  width: calc(100% - 35px);
}
.footer-flex .box2 {
  width: 70%;
}
.footer-nav-wrap {
  display: flex;
  gap: 5rem;
  justify-content: flex-end;
}
.footer-nav {
  position: relative;
}
.footer-nav li a {
  line-height: 2.3;
}
.footer-nav:not(:last-child) li:not(.bold) {
  padding-left: 1.7rem;
  position: relative;
}
.footer-nav:not(:last-child) li:not(.bold)::before {
  background: #ccc;
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  height: .5px;
  width: 10px;
}
.footer-nav li:not(.bold) a {
  font-weight: 200;
}
.footer-nav:not(:last-child)::after {
  background: #ccc;
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  height: 100%;
  width: .5px;
}
.copyright {
  text-align: right;
}
@media screen and (max-width: 1180px) {
}
@media screen and (max-width: 1024px) {
  .footer-flex {
    flex-wrap: wrap;
  }
  .footer-flex .box1 {
    margin: 0 auto 5rem;
  }
  .footer-flex .box2 {
    width: 100%;
  }
  .footer-nav-wrap {
    justify-content: center;
  }
}
@media screen and (max-width: 820px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 767px) {
  .footer-flex .box1 {
    margin: 0 0 3rem;
  }
  .footer-nav-wrap {
    flex-wrap: wrap;
    gap: 2rem 0;
  }
  .footer-nav {
    width: 48%;
  }
  .footer-nav:not(:last-child)::after {
    display: none;
  }
}

/* flex */
.flex {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}
.flex-img-wrap {
  width: 50%;
}
.flex-ele-wrap {
  width: 50%;
}
.flex-ele-wrap p:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .flex {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .flex-img-wrap {
    width: 70%;
  }
  .flex-ele-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .flex-img-wrap {
    width: 100%;
  }
}

/* インナー */
.inner1,
.inner2,
.inner3 {
  margin: 0 auto;
  padding: 0 2rem;
}
.inner1 {
  max-width: 1120px;
}
.inner2 {
  max-width: 1280px;
}
.inner3 {
  max-width: 1920px;
}

/* 要素間調整 */
.sec {
  position: relative;
  padding: 10rem 0;
}
.sec:first-child {
  padding: 10rem 0 5rem;
}
.sec:last-child {
  padding: 5rem 0 10rem;
}
.sec:only-child {
  padding: 10rem 0;
}
.eles:only-child {
  margin-bottom: 0;
}
.eles:not(:last-child) {
  margin-bottom: 3rem;
}
.eles p:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .sec:first-child {
    padding: 5rem 0;
  }
  .sec:only-child {
    padding: 5rem 0;
  }
}

/* 見出し */
.ttlbox1 {
  padding-left: 10rem;
  position: relative;
  margin-bottom: 3rem;
}
.ttlbox1::before {
  background: #fff;
  content: '';
  position: absolute;
  top: 45px;
  left: 0;
  height: 1px;
  width: 80px;
}
.ttlbox1 .en {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.ttlbox1 .en::first-letter {
  color: #60AC88;
  font-size: 8rem;
}
.ttlbox1 .ja {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.ttlbox2 {
  padding-top: 7rem;
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}
.ttlbox2::before {
  background: #fff;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  width: 1px;
}
.ttlbox2 .en {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.ttlbox2 .en::first-letter {
  color: #60AC88;
  font-size: 8rem;
}
.ttlbox2 .ja {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.sec.bgwhite .ttlbox2 .en,
.sec.bgwhite .ttlbox2 .ja {
  color: #181818;
}
.sec.bgwhite .ttlbox2::before {
  background: #181818;
}
.ttlbox3 {
  margin-bottom: 5rem;
  position: relative;
}
.ttlbox3 .ja,
.ttlbox3 .en {
  line-height: 1.5;
}
.ttlbox3 .ja {
  font-size: 3rem;
}
.ttlbox3 .en {
  color: rgba(255,255,255,.1);
  font-size: 10rem;
  font-weight: 900;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1180px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 820px) {
  /* .ttlbox .en {
    color: rgba(255,255,255,.3);
    font-size: 8rem;
  }
  .ttlbox .ja {
    font-size: 2rem;
  } */
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 767px) {
  .ttlbox1 {
    padding-left: 4.5rem;
  }
  .ttlbox1::before {
    top: 25px;
    width: 30px;
  }
  .ttlbox1 .en {
    font-size: 2rem;
  }
  .ttlbox1 .ja {
    font-size: 1.4rem;
  }
  .ttlbox1 .en::first-letter {
    font-size: 4rem;
  }
  .ttlbox2 {
    padding-top: 3rem;
  }
  .ttlbox2::before {
    height: 30px;
  }
  .ttlbox2 .en {
    font-size: 2rem;
  }
  .ttlbox2 .ja {
    font-size: 1.4rem;
  }
  .ttlbox2 .en::first-letter {
    font-size: 4rem;
  }
  .ttlbox3 .ja {
    font-size: 2rem;
  }
  .ttlbox3 .en {
    font-size: 5rem;
  }
}

/* ボタン */
.morebtn1 a {
  border: 1px solid #fff;
  display: inline-block;
  min-width: 250px;
  opacity: 1;
  padding: 1rem 0;
  text-align: center;
}
.morebtn1 i {
  display: inline-block;
  margin-left: 1rem;
}
.morebtn1 a:hover {
  background: #fff;
  color: #181818;
}
.morebtn1 a:hover i {
  color: #181818;
}
@media screen and (max-width: 1180px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 820px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 767px) {
  .morebtn1 a {
    min-width: 200px;
    padding: .5rem 1rem;
  }
}

/* お知らせリスト */
.ul-news {
  max-width: 1000px;
  margin: 0 auto;
}
.ul-news .time {
  background: #60AC88;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.ul-news .cat {
  color: #fff;
  display: inline-block;
  padding: 0 1rem;
}
.ul-news .cat.news {
  background: #AC1C21;
}
.ul-news .cat.blog {
  background: #60AC88;
}
.ul-news .ttl {
  font-weight: 600;
}
.ul-news li {
  border-bottom: 1px solid #fff;
  padding-bottom: .5rem;
  position: relative;
}
.ul-news li::before {
  background: #60AC88;
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: .5s;
  height: 2px;
  width: 20%;
}
.ul-news li:hover::before {
  width: 100%;
}
.ul-news li:not(:last-child) {
  margin-bottom: 2rem;
}

/* -----------------------
bg
----------------------- */
.sec.bgwhite {
  background: #f2f2f2;
}
.sec.bgwhite .ttlbox2 .en,
.sec.bgwhite .ttlbox2 .ja {
  color: #181818;
}
.sec.bgwhite .ttlbox2::before {
  background: #181818;
}


/******************************
スクルール連動アニメーション
******************************/
.leftover-box {
  overflow: hidden;
}
.leftover-box .leftover-box-in {
  overflow: hidden;
  position: relative;
  transition-delay: 0.1s;
  transform: translate3d(-100.5%, 0px, 0px);
  transition-delay: 0s;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: left center;
  transition-property: transform, -webkit-transform;
}
.leftover-box.animated .leftover-box-in::before {
  transform: scale(0, 1);
}
.leftover-box .leftover-box-in::before {
  background: #181818;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transform: scaleX(1);
  transition-delay: 0.4s;
  transition-duration: 1.5s;
  transform-origin: right center;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 5;
}
.leftover-box .leftover-box-in img {
  transform: scale(1);
  transition-duration: 4s;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
}
.leftover-box.animated .leftover-box-in {
  transform: translate3d(0px, 0px, 0px);
}