@charset "utf-8";

.container {
  /* max-width: 96.0rem; */
  position: relative;
}

.slick {
  display:flex
}

.main_img {
  width: 96.0rem;
  height: 40.7rem;
  vertical-align: bottom;
  object-fit: cover;
  position: relative;
  object-position: 100% 100%;
  opacity: 0.5;
  width: 100%;
}

.main_title {
  color: #fff;
  position: absolute;
  top: 5.0rem;
  left: 14rem;
  font-family: var(--NotoSerif);
  font-weight: var(--extra-bold);
  font-size: 3.5rem;
  line-height: 1.42857142857em;
  z-index: 1;
  text-shadow: 0 0 0.9rem rgba(0, 0, 0, 1);
}

.wrapper {
  /* margin-left: 20.9rem; */
  width: 54.3rem;
  max-width: 100%;
  margin: 0 auto;
}

.inview {
  /* transform: translate(0,-20%); */
  /* transition: 2s; */
  opacity: 0;
}

.sub_title {
  font-size: 2.0rem;
  color: #E67F12;
  font-family: var(--NotoSans);
  font-weight: var(--medium);
}

.inview.is_show {
  transform: translate(0, 0);
  opacity: 1;
}

.greeting1 {
  margin-top: 7.0rem;
}

.greeting2 {
  margin-top: 5.0rem; 
}

.sub_text {
  width: 54.4rem;
  font-size: 1.7rem;
  font-family: var(--NotoSans);
  font-weight: var(--medium);
  line-height: 2.94117647059em;
  margin-top: 2.0rem;
  color: #3c3c3c;
  /* transform: translate(0,-20%); */
  /* transition: 2s; */
  opacity: 0;
}

.sub_text.is_show {
  transform: translate(0, 0);
  opacity: 1;
}

.sub_text1 {
  width: 54.4rem;
  font-size: 1.7rem;
  font-family: var(--NotoSans);
  font-weight: var(--medium);
  line-height: 2.94117647059em;
  margin-top: 2.0rem;
}

.name {
  margin-top: 7.0rem;
  margin-bottom: 1.0rem;
  font-size: 2.2rem;
  line-height: 1.36363636364em;
  font-family: var(--NotoSans);
  font-weight: var(--regular);
  color: #3C3C3C;
}

.sub_img {
  width: 54.0rem;
  height: 31.3rem;
  vertical-align: bottom;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.link {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.66666666667em;
  margin-top: 5.0rem;
  padding-bottom: 1.1rem;
  font-family: var(--NotoSans);
  font-weight: var(--regular);
  position: relative; 
}

.link_a {
  color: #3c3c3c;
}

.link::after{
  content: "";
  position: absolute;
  height: 0.2rem;
  background-color: #3C3C3C;
  width: 2.54rem;
  bottom: 0;
  right: -5.7rem;
  transform-origin: right top;
  transform: rotate(45deg) scale(1,1);
  border-radius: 0.1em;
  transition: transform 0.2s ease-in-out;
}

.link:hover::after{
  animation: border_anim1 0.6s linear forwards;
  animation-delay: 0.4s;
}

@keyframes border_anim1 {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 2.54rem;
  }
}

.link::before {
  content: "";
  position: absolute;
  top: 3.9rem;
  left: 0rem;
  width: 29.2rem;
  height: 0.2rem;
  background: #3c3c3c;
  transform-origin: right top;
}

.link:hover::before {
  animation: border_anim2 0.8s linear forwards;
}

@keyframes border_anim2 {
  0% {
    left: 0;
    width: 29.2rem;
  }
  25% {
    left: 0;
    width: 29.2rem;
  }
  50% {
    left: 29.2rem;
    width: 0;
  }
  75% {
    left: 0;
    width: 0;
  }
  100% {
    left: 0;
    width: 29.2rem;
  }
}

.content1 {
  margin-top: 7.0rem;
}

.content2 {
  margin-top: 5.0rem;
  margin-bottom: 2.0rem;
}

.ditail {
  display: flex;
  margin-top: 1.0rem;
}

.ditail_title {
  border: #3c3c3c 0.1rem solid;
  width: 11.7rem;
  height: 5.6rem;
  border-radius: 0.6rem 0.6rem 0.6rem 0.6rem;
  font-size: 1.9rem;
  font-family: var(--NotoSans);
  font-weight: var(--medium);
  line-height: 2em;
  text-align: center;
  padding-top: 0.8rem;
}

.ditail:last-child {
  margin-bottom: 7.6rem;
}

.ditail_text {
  font-family: var(--NotoSans);
  font-weight: var(--medium);
  line-height: 1.75em;
  font-size: 1.6rem;
  margin-left: 3.0rem;
  color: #3c3c3c;
  white-space: nowrap;
}

.ditail_inner {
  margin-top: 1.6rem;
}


@media screen and (max-width:699.98px) {

  .container {
    max-width: 37.5rem;
  }
  
  .main_img {
    width: 37.5rem;
    height: 21.8rem;
    vertical-align: bottom;
    object-fit: cover;
    position: relative;
    filter: saturate(200%);
  }
  
  .main_title {
    color: #fff;
    position: absolute;
    top: 2.7rem;
    left: 5.8rem;
    font-family: var(--NotoSerif);
    font-size: 2.0rem;
    line-height: 1.5em;
  }
  
  .wrapper {
    margin-left: 5.8rem;
    width: 30rem;
    max-width: 100%;
  }
  
  .sub_title {
    font-size: 1.5rem;
    color: #E67F12;
    font-family: var(--NotoSans);
    font-weight: var(--medium);
  }
  
  .greeting1 {
    margin-top: 7.0rem;
  }
  
  .greeting2 {
    margin-top: 7.0rem; 
  }
  
  .sub_text {
    width: 25.9rem;
    font-size: 1.2rem;
    font-family: var(--NotoSans);
    font-weight: var(--regular);
    line-height: 2.08333333333em;
    margin-top: 4.0rem;
  }
  
  .sub_text1 {
    width: 25.2rem;
    font-size: 1.2rem;
    font-family: var(--NotoSans);
    font-weight: var(--regular);
    line-height: 2.08333333333em;
    margin-top: 4.0rem;
  }
  
  .name {
    margin-top: 4rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--NotoSans);
    font-weight: var(--regular);
  }
  
  .sub_img {
    width: 25.8rem;
    height: 14.9rem;
    vertical-align: bottom;
    object-fit: cover;
    filter: saturate(200%);
  }
  
  .link {
    font-size: 1.2rem;
    margin-top: 4.0rem;
    padding-bottom: 0.8rem;
    font-family: var(--NotoSans);
    font-weight: var(--regular);
    margin-left: 6.368rem;
    position: relative;  
  }
  
  .link::after{
    content: "";
    position: absolute;
    height: 0.1rem;
    background-color: #3C3C3C;
    width: 1.55280649149rem;
    bottom: -0.1rem;
    right: -3.9rem;
    transform-origin: right top;
    transform: rotate(45deg) scale(1,1);
    border-radius: 0.1em;
    transition: transform 0.2s ease-in-out;
  }
  
  .link:hover::after{
    animation: border_anim1 0.6s linear forwards;
    animation-delay: 0.4s;
  }
  
  @keyframes border_anim1 {
    0% {
      width: 0;
    }
    50% {
      width: 0;
    }
    100% {
      width: 1.55280649149rem;
    }
  }
  
  
  .link::before {
    content: "";
    position: absolute;
    top: 2.8rem;
    left: 0rem;
    width: 19.432rem;
    height: 0.1rem;
    background: #3c3c3c;
  }
  
  .link:hover::before {
    animation: border_anim2 0.8s linear forwards;
  }
  
  @keyframes border_anim2 {
    0% {
      left: 0;
      width: 19.432rem;
    }
    25% {
      left: 0;
      width: 19.432rem;
    }
    50% {
      left: 19.432rem;
      width: 0;
    }
    75% {
      left: 0;
      width: 0;
    }
    100% {
      left: 0;
      width: 19.432rem;
    }
  }

  .content1 {
    margin-top: 7.0rem;
  }
  
  .linefeed {
    display: none;
  }

  .content2 {
    margin-top: 7.0rem;
    margin-bottom: 4.0rem;
  }
  
  .ditail {
    flex-direction: column;
    margin-top: 0rem;
  }
  
  .ditail_title {
    border: #3c3c3c 0.1rem solid;
    width: 8.4rem;
    height: 3.9rem;
    border-radius: 0.3rem 0.3rem 0.3rem 0.3rem;
    font-size: 1.3rem;
    font-family: var(--NotoSans);
    font-weight: var(--medium);
    line-height: 2.92307692308em;
    text-align: center;
    padding-top: 0rem;
  }
  
  .ditail_text {
    font-family: var(--NotoSans);
    font-weight: var(--medium);
    line-height: 1.76923076923em;
    font-size: 1.3rem;
    margin-left: 0rem;
    width: 25.9rem;
    margin-top: 2.0rem;
    margin-bottom: 4.0rem;
    white-space: inherit; 
  }
  
  .ditail_inner {
    margin-top: 2.0rem;
  }

  .ditail:last-child {
    margin-bottom: 3.0rem;
  }
}