@charset "UTF-8";
.kv {
  height: 100vh;
  margin-bottom: 80px;
}
.kv .image {
  height: 100%;
}
.kv .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv .image .logo {
  width: 200px;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 800px) {
  .kv .image .logo {
    width: 150px;
  }
}
@media (max-width: 600px) {
  .kv .image .logo {
    width: 100px;
  }
}
.kv .text {
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
}
@media (max-width: 800px) {
  .kv .text {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .kv .text {
    font-size: 20px;
  }
}

.main .header-list {
  top: 70vh;
}
@media (max-width: 600px) {
  .main .header-list {
    display: none;
  }
}
.main .header-list .box {
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main .header-list .box:before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  margin-right: 10px;
}
.main .header-list .box a {
  color: #000;
  font-size: 20px;
  position: relative;
}
.main .header-list .box a::after {
  content: "";
  position: absolute;
  bottom: 0px; /* テキストからの距離 */
  left: 0;
  width: 0; /* 初期状態では幅を0に */
  height: 1px; /* 下線の高さ */
  background: #000; /* 下線の色 */
  -webkit-transition: width 0.3s;
  transition: width 0.3s; /* アニメーション速度 */
}
.main .header-list .box a:hover::after {
  width: 100%; /* hover時に幅を100%に */
}
@-webkit-keyframes toBottom {
  100% {
    -webkit-transform: none;
            transform: none; /* 元の位置に戻す */
    background-position: center 0%;
  }
}
@keyframes toBottom {
  100% {
    -webkit-transform: none;
            transform: none; /* 元の位置に戻す */
    background-position: center 0%;
  }
}
.main .overview {
  height: 100vh;
  font-size: 40px;
  margin: 0 20% 80px auto;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書き設定 */
  text-orientation: upright; /* 文字の向きを保つ */
}
@media (max-width: 1024px) {
  .main .overview {
    font-size: 28px;
    margin: -100px 20% 40px auto;
  }
}
@media (max-width: 600px) {
  .main .overview {
    height: auto;
    font-size: 16px;
    margin: 0 auto 80px auto;
  }
}
.main .overview.fade-text {
  display: block;
  color: transparent;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 40px;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 300% 300%;
}
.main .overview.fade-text.animated {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #000), color-stop(50%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, #000 30%, rgba(255, 255, 255, 0) 50%);
  background-position: center 100%;
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  -webkit-animation: toBottom 2s ease 0s forwards;
          animation: toBottom 2s ease 0s forwards;
}
.main .section01 {
  max-width: 95%;
  margin: 0 auto 150px auto;
}
@media (max-width: 600px) {
  .main .section01 {
    max-width: 100%;
    margin-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.main .section01 .image {
  width: 40%;
}
@media (max-width: 600px) {
  .main .section01 .image {
    width: 100%;
  }
}
.main .section01 .content {
  width: 50%;
  margin-right: 10%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.main .section01 .content .headline {
  font-size: 40px;
  margin: 30px 0 0 60px;
}
.main .section01 .content .text {
  margin: 250px 0 0 60px;
  font-size: 24px;
  line-height: 2.5;
}
.main .section01 .content .tighten a {
  font-size: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #0c0c0c;
}
.main .section01 .content .tighten .line {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  margin-bottom: 30px;
}
.main .section01 .content .tighten .line::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #000;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 9px;
}
@media (max-width: 1100px) {
  .main .section01 .content {
    width: calc(60% - 30px);
    margin-right: 30px;
  }
  .main .section01 .content .headline {
    font-size: 32px;
    margin: 30px 0 0 30px;
  }
  .main .section01 .content .text {
    margin: 100px 0 0 30px;
    font-size: 18px;
    line-height: 1.875;
  }
  .main .section01 .content .tighten {
    font-size: 16px;
  }
  .main .section01 .content .tighten::before {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .main .section01 .content {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main .section01 .content .headline {
    font-size: 24px;
  }
  .main .section01 .content .tighten {
    max-height: 100%;
  }
  .main .section01 .content .tighten:before {
    width: 15px;
    height: 15px;
    margin-bottom: 10px;
  }
  .main .section01 .content .tighten:after {
    height: 30px;
    top: -15px;
  }
}
.main .section02 {
  margin-bottom: 150px;
}
@media (max-width: 600px) {
  .main .section02 {
    margin-bottom: 80px;
  }
}
.main .section02::before {
  content: "";
  display: block;
  width: 100%;
  height: 5%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(249, 249, 247)), color-stop(20%, rgb(249, 249, 247)), to(rgba(249, 249, 247, 0)));
  background: linear-gradient(to bottom, rgb(249, 249, 247) 0%, rgb(249, 249, 247) 20%, rgba(249, 249, 247, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.main .section02 .content {
  width: 100%;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.5rem;
  line-height: 7rem;
  opacity: 0.9;
  color: #404040;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 600px) {
  .main .section02 .content {
    font-size: 16px;
    line-height: 2;
  }
}
.main .section02 .content span {
  font-size: 1rem;
  display: block;
  margin-top: 100px;
  line-height: 1;
}
@media (max-width: 600px) {
  .main .section02 .content span {
    font-size: 12px;
    margin-top: 30px;
  }
}
.main .section02 .tighten {
  font-size: 1rem;
  white-space: nowrap;
  text-align: end;
  margin-right: 40px;
}
@media (max-width: 600px) {
  .main .section02 .tighten {
    font-size: 12px;
    margin-right: 10px;
  }
}
.main .section03 {
  margin-bottom: 150px;
}
@media (max-width: 600px) {
  .main .section03 {
    margin-bottom: 80px;
  }
}
.main .section03 .headline {
  font-size: 40px;
  margin-bottom: 300px;
  text-align: center;
}
@media (max-width: 800px) {
  .main .section03 .headline {
    font-size: 28px;
    margin-bottom: 100px;
  }
}
@media (max-width: 600px) {
  .main .section03 .headline {
    font-size: 22px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .main .section03 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main .section03 .inner .contents {
  text-align: center;
}
@media (max-width: 600px) {
  .main .section03 .inner .contents {
    width: calc(70% - 30px);
    margin-right: 30px;
  }
}
.main .section03 .inner .contents .text {
  font-size: 28px;
  line-height: 2.5;
  text-align: left;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .main .section03 .inner .contents .text {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .main .section03 .inner .contents .text {
    font-size: 16px;
  }
}
.main .section03 .inner .image {
  width: 20%;
  right: 0%;
  bottom: 0;
}
@media (max-width: 600px) {
  .main .section03 .inner .image {
    position: static;
    width: 30%;
  }
}
.main .section04 {
  margin-bottom: 150px;
}
@media (max-width: 600px) {
  .main .section04 {
    margin-bottom: 80px;
  }
}
.main .section04 .headline {
  font-size: 32px;
  margin-right: 60px;
}
@media (max-width: 600px) {
  .main .section04 .headline {
    font-size: 22px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin: 0 auto 20px auto;
  }
}
.main .section04 .list {
  width: calc(100% - 110px);
  background-color: #fff;
  border-radius: 30px;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 600px) {
  .main .section04 .list {
    width: 100%;
    padding: 20px;
  }
}
.main .section04 .list .box {
  margin-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main .section04 .list .box:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .main .section04 .list .box {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.main .section04 .list .box .date {
  margin-right: 20px;
}
@media (max-width: 600px) {
  .main .section04 .list .box .date {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .main .section04 .list .box .text {
    width: 100%;
    margin-top: 10px;
  }
}
.main .section05 {
  margin-bottom: 200px;
}
@media (max-width: 600px) {
  .main .section05 {
    margin-bottom: 100px;
  }
}
.main .section05 .headline {
  font-size: 32px;
  margin-right: 60px;
}
@media (max-width: 600px) {
  .main .section05 .headline {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin: 0 auto 20px auto;
    font-size: 22px;
  }
}
.main .section05 .list {
  width: calc(100% - 110px);
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 600px) {
  .main .section05 .list {
    width: 100%;
    padding: 20px;
  }
}
.main .section05 .list .box {
  width: calc(100% / 2 - 50px / 2);
  margin-right: 50px;
  margin-bottom: 50px;
}
.main .section05 .list .box:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 600px) {
  .main .section05 .list .box {
    width: calc(100% / 1 - 0px / 1);
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .main .section05 .list .box:nth-child(1n) {
    margin-right: 0;
  }
  .main .section05 .list .box a {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.main .section05 .list .box:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .main .section05 .list .box:nth-last-child(2) {
    margin-bottom: 20px;
  }
}
.main .section05 .list .box .text {
  text-align: center;
  color: #0c0c0c;
}
.main .section06 {
  margin-bottom: 270px;
}
@media (max-width: 600px) {
  .main .section06 {
    margin-bottom: 100px;
  }
}
.main .section06 .inner .headline {
  font-size: 32px;
  top: -95px;
  right: 40px;
}
@media (max-width: 600px) {
  .main .section06 .inner .headline {
    font-size: 22px;
    top: -65px;
  }
}
.main .section06 .inner .headline span {
  color: #fff;
}
.main .section06 .inner .image {
  width: 100%;
  overflow: hidden;
  border-radius: 40px;
}
.main .section06 .inner .image a {
  height: 100%;
}
.main .section06 .inner .image img {
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 600px) {
  .main .section06 .inner .image img {
    border-radius: 0px;
  }
}
.main .section06 .inner .image:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (max-width: 600px) {
  .main .section06 .inner .image {
    height: 300px;
  }
  .main .section06 .inner .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.main .section06 .inner .list {
  width: 20%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  bottom: 30px;
  left: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 800px) {
  .main .section06 .inner .list {
    width: 40%;
  }
}
.main .section06 .inner .list .box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.main .section06 .inner .list .box:before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .main .section06 .inner .list .box:before {
    height: 20px;
  }
}
.main .section06 .inner .list .box:hover {
  margin-top: -15px;
}
.main .section06 .inner .list .box a {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 600px) {
  .main .section06 .inner .list .box a {
    font-size: 16px;
  }
}
.main .section07 {
  margin-bottom: 150px;
}
@media (max-width: 600px) {
  .main .section07 {
    margin-bottom: 100px;
  }
}
.main .section07 .inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.main .section07 .inner .image {
  width: 40%;
  bottom: 30px;
  left: 0;
  z-index: 1;
}
@media (max-width: 600px) {
  .main .section07 .inner .image {
    width: 100%;
    position: static;
    height: 400px;
  }
  .main .section07 .inner .image img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 15px;
  }
}
.main .section07 .inner .pc {
  width: 100%;
}
.main .section07 .inner .sp {
  width: 100%;
}
.main .section07 .inner .headline {
  font-size: 32px;
  right: 40%;
  top: -20px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media (max-width: 600px) {
  .main .section07 .inner .headline {
    position: static;
    -webkit-transform: none;
            transform: none;
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.main .section07 .inner .content {
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 auto;
}
@media (max-width: 600px) {
  .main .section07 .inner .content {
    width: 100%;
    padding: 30px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.main .section07 .inner .content .cont-inner {
  width: 50%;
}
@media (max-width: 600px) {
  .main .section07 .inner .content .cont-inner {
    width: 100%;
  }
}
.main .section07 .inner .content .cont-inner .text {
  line-height: 2;
}
.main .section07 .inner .content .cont-inner .more-btn {
  margin-top: 30px;
  text-align: right;
}
.main .section07 .inner .content .cont-inner .more-btn a {
  display: inline-block;
}
.main .section07 .inner .content .cont-inner .more-btn a::after {
  content: "";
  position: absolute;
  bottom: 0px; /* テキストからの距離 */
  left: 0;
  width: 0; /* 初期状態では幅を0に */
  height: 1px; /* 下線の高さ */
  background: #000; /* 下線の色 */
  -webkit-transition: width 0.3s;
  transition: width 0.3s; /* アニメーション速度 */
}
.main .section07 .inner .content .cont-inner .more-btn a:hover::after {
  width: 100%; /* hover時に幅を100%に */
}
.main .section08 {
  margin-bottom: 150px;
}
@media (max-width: 600px) {
  .main .section08 {
    display: none;
  }
}
@media (max-width: 600px) {
  .main .section08 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.main .section08 .inner .image {
  width: calc(50% - 60px);
  margin-left: 60px;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .main .section08 .inner .image {
    width: 100%;
    margin-left: 0;
  }
}
.main .section08 .inner .content {
  width: 50%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 600px) {
  .main .section08 .inner .content {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main .section08 .inner .content .headline {
  font-size: 40px;
  margin-bottom: 50px;
  margin-left: 20px;
}
.main .section08 .inner .content .headline a {
  color: #0c0c0c;
}
@media (max-width: 600px) {
  .main .section08 .inner .content .headline {
    font-size: 24px;
  }
}
.main .section08 .inner .content .list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 180px;
}
.main .section08 .inner .content .list .btn {
  margin-right: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.main .section08 .inner .content .list .btn:before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  background-color: #000;
  border-radius: 50%;
  margin-bottom: 10px;
  text-align: center;
}
.main .section08 .inner .content .list .btn:hover {
  margin-top: -15px;
}
.main .section08 .inner .content .list .btn a {
  color: #000;
  font-size: 22px;
}
.main .section09 {
  display: none;
}
@media (max-width: 600px) {
  .main .section09 {
    display: block;
    margin-bottom: 80px;
  }
}
.main .section09 .inner {
  padding: 0;
}
.main .section09 .inner .headline {
  font-size: 22px;
  top: -70px;
  right: 40px;
}
.main .section09 .inner .headline a {
  color: #333;
}
.main .section09 .inner .headline span {
  color: #fff;
}
.main .section09 .inner .image {
  width: 100%;
  height: 150px;
}
.main .section09 .inner .image a {
  height: 100%;
}
.main .section09 .inner .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .main .section09 .inner .image {
    height: 300px;
  }
}
.main .section09 .inner .list {
  width: 40%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  bottom: 30px;
  left: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.main .section09 .inner .list .box a {
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}