/* TOP  */
/* ======================================================== */
/* MAIN VISUAL */
.c-mainvisual {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  position: relative;
  display: flex;
  overflow: hidden;
}
.c-mainvisual-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 20;
  color: #fff;
  padding: 20px;
}
.c-mainvisual-text .title {
  max-width: 538px;
  width: 100%;
  margin-bottom: 26px;
}
.c-mainvisual-text .title img {
  display: block;
  width: 100%;
}
.c-mainvisual-text .small-text {
  /* font-weight: 700; */
  font-family: "ZenMaruGothic-Medium";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 43px;
}
.c-mainvisual-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #111;
}

.c-mainvisual-img::after {
  content: "";
  background-color: rgba(97, 33, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 11;
  left: 0;
}
.c-mainvisual-img .c-mainvisual__slider {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 1px;
  min-height: 1px;
  width: 100%;
  height: 100%;
}
.c-mainvisual-img .img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.c-mainvisual__cloud {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 46%;
  transform: translateX(-50%);
  pointer-events: none;
  /* overflow: hidden; */
  z-index: 10;
}

.c-mainvisual__cloud .mist {
  position: absolute;
  bottom: 0; /* mist always starts at bottom */
  background: radial-gradient(
    ellipse at center,
    rgba(223, 223, 223, 0.9) 0%,
    rgba(223, 223, 223, 0.6) 40%,
    rgba(223, 223, 223, 0.1) 80%,
    rgba(223, 223, 223, 0) 100%
  );
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0;
  animation: floatUp 4s ease-in-out infinite;
  mix-blend-mode: screen;
  box-shadow: 0 0 30px rgba(223, 223, 223, 0.3);
  z-index: 1;
  transition: opacity 1s ease-out;
  will-change: transform, opacity;
}

@keyframes floatUp {
  0% {
    transform: translateY(200px) translateX(-100px) scale(1);
  }
  25% {
    transform: translateY(120px) translateX(-90px) scale(1.05);
    opacity: 0.5;
  }
  50% {
    transform: translateY(50px) translateX(-50px) scale(1.1);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-20px) translateX(-20px) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) translateX(0px) scale(1.3);
    opacity: 0;
  }
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 767px) {
  .c-mainvisual {
    min-height: 450px;
  }
  .c-mainvisual__cloud {
    height: 30%;
  }
  .c-mainvisual-text {
    padding: 70px 20px;
  }
  .c-mainvisual-text .title {
    margin-bottom: 15px;
  }
  .c-mainvisual-text .small-text {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* =========================================== */
/* HEADING */
.l-heading-wrapper {
  width: 100%;
  overflow: hidden;
}
.l-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .l-heading {
    gap: 0 10px;
  }
  .l-heading-item {
    width: 100%;
  }
}
/* EMD HEADING */
/* NEWS BLOCK */
.l-news {
  max-width: 1570px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 128px;
}
.l-news::after {
  content: "";
  width: 100vw;
  height: 680px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background-image: url(./../images/top/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.l-news .l-heading {
  margin-bottom: 58px;
}
.l-news .l-heading-item {
  display: flex;
  align-items: center;
}
.l-news h2.l-heading-item {
  /* font-weight: 700; */
  font-family: "ZenMaruGothic-Medium";
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px 20px;
  padding-left: 20px;
}
.l-news h2.l-heading-item small {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.l-news .c-slider-wrapper {
  padding: 0 84px;
}
.l-news .c-slider-wrapper .c-slider-arrow {
  top: 32%;
}
.l-news .l-news__button.c-slider-wrapper {
  text-align: right;
  padding-top: 40px;
}
@media screen and (max-width: 1600px) {
  .l-news .c-slider-wrapper {
    padding: 0 45px;
  }
}
@media screen and (max-width: 1400px) {
  .l-news .l-heading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px 0;
  }
  .l-news h2.l-heading-item {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .l-news h2.l-heading-item small {
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 0;
  }
  .l-news h2.l-heading-item {
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-news .l-heading-item {
    display: block;
  }
  .l-news h2.l-heading-item {
    text-align: center;
  }
  .l-news h2.l-heading-item small {
    display: block;
    margin-left: 0;
  }
  .l-news .c-news-list {
    margin-bottom: 30px;
  }
  .l-news .l-news__button.c-slider-wrapper {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-news {
    padding-top: 60px;
  }
  .l-news .l-heading {
    margin-bottom: 40px;
    gap: 20px 0;
  }
  .l-news h2.l-heading-item {
    font-size: 22px;
  }
  .l-news h2.l-heading-item small {
    font-size: 13px;
  }
  .l-news .c-news-list {
    margin-bottom: 10px;
  }

  .l-news .c-slider-wrapper {
    padding: 0;
  }
  .l-news .l-news__button.c-slider-wrapper {
    padding-top: 30px;
  }
}
/* END NEWS BLOCK */
/* =========================================== */
/* BLOCK 1 */
.p-top .block1 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 112px;
}
.p-top .block1 .c-section1__img {
  width: 47.2%;
  position: relative;
}
@keyframes sway {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(12deg); /* Increased from 3deg */
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-12deg); /* Increased from -3deg */
  }
  100% {
    transform: rotate(0deg);
  }
}

.p-top .block1__img {
  position: absolute;
  bottom: -54px;
  left: -85px;
  z-index: 10;
  width: 228px;
  height: auto;
  animation: sway 3s ease-in-out infinite;
  transform-origin: center bottom;
}

.p-top .block1 .c-slider3 {
  width: 100%;
}
.p-top .block1 .c-section1__text {
  padding-left: 58px;
  padding-top: 86px;
}
.p-top .block1__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* font-weight: 700; */
  font-family: "ZenMaruGothic-Medium";
  font-weight: 500;
  font-size: 54px;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.p-top .block1__title .c-text-bg {
  font-size: 44px;
  line-height: 64px;
  display: inline-block;
  padding: 6px 25px;
  margin-right: 5px;
}
.p-top .block1__title2 {
  /* font-weight: 700; */
  font-family: "ZenMaruGothic-Medium";
  font-weight: 500;
  font-size: 46px;
  letter-spacing: 0;
  margin-bottom: 32px;
}

@media screen and (max-width: 1250px) {
  .p-top .block1__img {
    left: 10px;
  }
  .p-top .block1 .c-section1 {
    align-items: center;
  }
  .p-top .block1 .c-section1__text {
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-top .block1 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top .block1 .c-section1__text {
    padding-left: 0;
    padding-top: 60px;
  }
  .p-top .block1__img {
    left: -85px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .block1 {
    padding-top: 60px;
  }
  .p-top .block1__img {
    left: -20px;
    bottom: -20px;
    width: 100px;
  }
  .p-top .block1 .c-section1__text {
    padding-top: 40px;
  }
  .p-top .block1__title .c-text-bg {
    font-size: 20px;
    line-height: 1.6;
    margin-right: 8px;
  }
  .p-top .block1__title {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .p-top .block1__title2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
/* END BLOCK 1 */
/* =========================================== */
/* BLOCK 2 */
.p-top .block2 {
  padding-top: 120px;
  position: relative;
}
.p-top .block2 .c-card1__list {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.p-top .block2::after {
  content: "";
  position: absolute;
  bottom: -68px;
  right: 90px;
  z-index: -1;
  width: 640px;
  height: 355px;
  background-image: url(./../images/top/bg2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1400px) {
  .p-top .block2::after {
    right: -50px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .block2 {
    padding-top: 60px;
  }
  .p-top .block2::after {
    content: unset;
  }
}
/* END BLOCK 2 */
/* =========================================== */
/* BLOCK 3 */
.p-top .block3 {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 118px;
}
.p-top .block3 .c-title1 {
  margin-bottom: 58px;
}
.p-top .block3 .c-card2__list {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-top .block3 {
    padding-top: 70px;
  }
  .p-top .block3 .c-title1 {
    margin-bottom: 25px;
  }
  .p-top .block3 .c-card2__list {
    margin-top: 40px;
  }
}
/* END BLOCK 3 */
/* =========================================== */
/* BLOCK 4 */
.p-top .block4 {
  width: 100%;
  max-width: 1256px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 98px;
  position: relative;
}
.p-top .block4::after,
.p-top .block4 .c-section1__text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 226px;
  width: 100vw;
  height: 1437px;
  z-index: -1;
  background-image: url(./../images/top/bg3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-top .block4 .c-title1 {
  margin-bottom: 58px;
}
.p-top .block4__section-list {
  margin-top: 64px;
}
.p-top .block4__section-list .c-section1 + .c-section1 {
  margin-top: 109px;
}
.p-top .block4 .c-section1__img {
  width: 66.8%;
}
.p-top .block4 .c-section1__img .c-slider-wrapper {
  padding-bottom: 48px;
}
.p-top .block4 .c-section1__img .same-slide3 {
  border-radius: 50px;
}
.p-top .block4 .c-section1__text {
  border-radius: 50px 0 0 0;
  flex: 1;
  margin-left: -226px;
  background-color: #fff;
  position: relative;
  z-index: 10;
  margin-top: 104px;
  padding-top: 50px;
  padding-left: 74px;
  overflow: hidden;
}

.p-top .block4 .c-section1__text::after {
  left: auto;
  right: -332px;
  transform: translateX(0);
  background-position: right top;
  top: -280px;
}
.p-top .block4 .c-section1 .c-title2 {
  margin-bottom: 20px;
}
.p-top .block4 .c-section1 .c-text-main {
  margin-bottom: 44px;
}

.p-top .block4 .c-section1.reverse {
  flex-direction: row-reverse;
}
.p-top .block4 .c-section1.reverse .c-section1__text {
  border-radius: 0 50px 0 0;
  margin-left: 0;
  margin-right: -226px;
  padding-left: 0;
  padding-right: 50px;
}
.p-top .block4 .c-section1.reverse .c-section1__text::after {
  right: auto;
  top: auto;
  left: -330px;
  bottom: 106px;
  background-position: left top;
}

.p-top .block4 .c-card2__list {
  width: 100%;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  gap: 70px 55px;
}
.p-top .block4 .c-card2__list-item {
  width: calc((100% - 110px) / 3);
}
.p-top .block4 .c-card2 {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-top .block4 .c-card2__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-top .block4 .c-card2 .c-text-main {
  margin-bottom: 10px;
}
.p-top .block4 .c-card2 .c-btn1 {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1024px) {
  .p-top .block4::after,
  .p-top .block4 .c-section1__text::after {
    content: unset;
  }
  .p-top .block4 .c-section1__img .c-slider-wrapper {
    padding-bottom: 0;
  }
  .p-top .block4 .c-slider-wrapper.u-pagination .c-slider-pagination {
    bottom: 10px;
  }
  .p-top .block4 .c-section1.reverse .c-section1__text,
  .p-top .block4 .c-section1__text {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .p-top .block4 .c-section1__text {
    width: 100%;
  }

  .p-top .block4 .c-card2__list {
    gap: 70px 60px;
  }
  .p-top .block4 .c-card2__list-item {
    width: calc((100% - 60px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .p-top .block4 {
    padding-top: 80px;
  }
  .p-top .block4 .c-title1 {
    margin-bottom: 30px;
  }
  .p-top .block4__section-list {
    margin-top: 30px;
  }
  .p-top .block4__section-list .c-section1 + .c-section1 {
    margin-top: 60px;
  }
  .p-top .block4 .c-section1__img .same-slide3 {
    border-radius: 30px;
  }
  .p-top .block4 .c-slider-wrapper.u-pagination .c-slider-pagination {
    bottom: 5px;
  }
  .p-top .block4 .c-section1__text {
    padding-top: 30px;
  }
  .p-top .block4 .c-section1 .c-text-main {
    margin-bottom: 30px;
  }

  .p-top .block4 .c-card2__list {
    gap: 60px 0;
    margin-top: 60px;
  }
  .p-top .block4 .c-card2__list-item {
    width: 100%;
  }
  .p-top .block4 .c-card2__content {
    padding-top: 30px;
  }
}
/* END BLOCK 4 */
/* =========================================== */
/* BLOCK 5 */
.p-top .block5 {
  padding-top: 120px;
  position: relative;
}
.p-top .block5::after {
  content: "";
  background-image: url(./../images/top/bg4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 306px;
  width: 100vw;
  height: 929px;
  z-index: -1;
}
.p-top .block5__img {
  display: block;
  width: 100%;
}
.p-top .block5__wrapper {
  width: 90%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -160px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  border-radius: 100px 100px 0 0;
  padding: 70px 110px 10px;
}
.p-top .block5 .c-title3 {
  margin-bottom: 30px;
}
.p-top .block5 .c-text-main {
  margin-bottom: 52px;
}
@media screen and (max-width: 1024px) {
  .p-top .block5__wrapper {
    margin-top: -60px;
    padding: 60px 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .block5 {
    padding-top: 70px;
  }
  .p-top .block5::after {
    content: unset;
  }
  .p-top .block5__wrapper {
    width: 100%;
    margin-top: 0;
    padding: 40px 0 0;
  }
  .p-top .block5 .c-title3 {
    margin-bottom: 20px;
  }
  .p-top .block5 .c-text-main {
    margin-bottom: 30px;
  }
}
/* END BLOCK 5 */
/* =========================================== */
/* BLOCK 6 */
.p-top .block6 {
  padding-top: 110px;
  padding-bottom: 130px;
}
.p-top .block6 iframe {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.p-top .block6 .c-list1 {
  width: 100%;
  max-width: 662px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .p-top .block6 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .p-top .block6 iframe {
    height: 350px;
    margin-bottom: 30px;
  }
  .p-top .block6 .c-list1 {
    margin-bottom: 30px;
  }
}
/* END BLOCK 6 */
/* =========================================== */
/* INSTAGRAM */
.p-top .block-ins {
  padding: 120px 0;
  background-color: rgba(3, 120, 230, 0.06);
}
.p-top .block-ins-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.p-top .block-ins .c-section1__text {
  width: 416px;
  flex: 0 1 auto;
  background-color: #fff;
  border-radius: 50px 0 0 50px;
  padding: 40px 50px 50px;
}
.p-top .block-ins .c-section1__img {
  flex: 1;
}
.p-top .block-ins__title {
  /* font-weight: 700; */
  font-family: "ZenMaruGothic-Medium";
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 38px;
}
.p-top .block-ins__title strong {
  display: block;
  font-size: 32px;
  margin-bottom: -2px;
}
.p-top .block-ins__title small {
  font-size: 11px;
}
.p-top .block-ins__text {
  /* font-weight: 700; */
  font-family: "ZenMaruGothic-Medium";
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 26px;
  margin-bottom: 10px;
}
.p-top .block-ins .c-btn1 {
  max-width: 316px;
}
.p-top .block-ins .c-btn1 span {
  display: flex;
}
.p-top .block-ins .c-btn1 span::before {
  background-image: url(./../images/common/ic-instagram-black.png);
  width: 17px;
  height: 17px;
  margin-right: 11px;
  margin-top: 5px;
}
.p-top .block-ins .c-btn1:hover span::before {
  background-image: url(./../images/common/ic-instagram-blue.png);
}
@media screen and (max-width: 1024px) {
  .p-top .block-ins-wrapper {
    padding: 0 50px;
    text-align: center;
  }
  .p-top .block-ins .c-section1__text {
    padding-bottom: 60px;
    border-radius: 50px 50px 0 0;
  }
  .p-top .block-ins .c-btn1 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top .block-ins {
    padding: 70px 0;
  }
  .p-top .block-ins-wrapper {
    padding: 0 20px;
  }
  .p-top .block-ins .c-section1__text {
    border-radius: 30px 30px 0 0;
    padding: 40px 20px;
    padding-bottom: 40px;
  }
  .p-top .block-ins__title {
    margin-bottom: 20px;
  }
  .p-top .block-ins__title strong {
    font-size: 26px;
  }
  .p-top .block-ins__title small {
    font-size: 11px;
  }
  .p-top .block-ins__text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .p-top .block-ins .c-btn1 {
    justify-content: center;
  }
  .p-top .block-ins .c-btn1 span::before {
    width: 15px;
    height: 15px;
    margin-right: 8px;
    margin-top: 2px;
  }
}
/* END INSTAGRAM */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* END TOP  */
