@charset "UTF-8";

/* --- About Section --- */
.lp-about-image {
  margin-bottom: 25px;
}

.lp-about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lp-about-caption {
  margin-top: 15px;
  text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.lp-about-content {
  line-height: 1.8;
}

.lp-about-text {
  margin-bottom: 1.5em;
	font-size: 14px;
}

.lp-about-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .lp-section--about {
    padding: 100px 0;
  }

  .lp-about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
  }

	.lp-about-text {
    font-size: 1.6rem;
	}

  .lp-about-image {
    grid-column: 1;
    margin-bottom: 0;
  }

  .lp-about-content {
    grid-column: 2;
  }
}

/* --- Location Section --- */
.lp-section--location {
  padding: 60px 0;
  overflow: hidden;
  background-color: #f9f9f9;
}

.lp-location-image {
  margin-bottom: 25px;
}

.lp-location-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lp-location-content {
  line-height: 1.8;
}

.lp-location-lead {
  font-weight: bold;
  margin-bottom: 1.5em;
  font-size: 14px;
}

.lp-location-text {
  margin-bottom: 1.5em;
  font-size: 14px;
}

.lp-location-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .lp-section--location {
    padding: 100px 0;
  }

  .lp-location-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
  }

	.lp-location-lead,
	.lp-location-text{
		font-size: 1.6rem;
	}

	.lp-location-image {
    grid-column: 2; 
    margin-bottom: 0;
    order: 2;
  }

  .lp-location-content {
    grid-column: 1;
    order: 1;
  }
}

/* --- Interview Section --- */
.lp-section--interview {
  padding: 60px 0;
}

.lp-interview-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lp-interview-image {
  max-width: 400px;
  margin: 0 auto;
}

.lp-interview-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lp-interview-caption {
  margin-top: 15px;
  text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.lp-interview-copy {
  font-size: 16px;
	font-weight: bold;
  line-height: 1.5;
  color: #333;
  margin-bottom: 30px;
}

.lp-interview-item {
  margin-bottom: 30px;
}

.lp-interview-lead {
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #2e8b7d;
 font-size: 14px;
}

.lp-interview-text {
  line-height: 1.8;
  margin-bottom: 0;
	font-size: 14px;
}

@media (min-width: 769px) {
  .lp-section--interview {
    padding: 100px 0;
  }

  .lp-interview-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .lp-interview-profile {
    flex: 0 0 35%;
  }

  .lp-interview-body {
    flex: 1;
  }

  .lp-interview-copy {
    font-size: 20px;
  }

	.lp-interview-lead,
	.lp-interview-text {
		font-size: 1.6rem;
	}
}

/* --- CSR Section --- */
.lp-section--csr {
  padding: 60px 0;
}

.lp-csr-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.lp-csr-episode .lp-csr-layout{
  margin-bottom: 0;
}

.lp-csr-image img,
.lp-csr-image-vertical img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 横並びバージョン */
.lp-csr-image--vertical {
  display: flex;
  gap: 16px;
}

.lp-csr-image--vertical img {
  width: calc(50% - 8px);
  flex: 1;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lp-csr-image {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.lp-csr-text{
  padding-bottom: 10px;
  font-size: 14px;
}

.lp-csr-text span{
  font-weight: bold;
}

.lp-csr-content {
  line-height: 1.8;
}

@media (min-width: 700px) {
  .lp-section--csr {
    padding: 100px 0;
  }

  .lp-csr-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .lp-csr-episode .lp-csr-layout{
    margin-bottom: 60px;
  }

  .lp-csr-main .lp-csr-content {
    grid-column: 1;
    order: 1;
  }
  .lp-csr-main .lp-csr-image {
    grid-column: 2;
    order: 2;
    justify-self: center;
  }

  .lp-csr-episode .lp-csr-image-vertical {
    grid-column: 1;
    order: 1;
    max-width: 320px;
    justify-self: center;
  }
  .lp-csr-episode .lp-csr-content {
    grid-column: 2;
    order: 2;
  }

  .lp-section--csr h2 {
    text-align: left;
    margin-bottom: 40px;
  }

}

@media (min-width: 1440px) {
  .lp-csr-layout {
    gap: 60px;
    margin-bottom: 100px;
  }

  .lp-csr-text{
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
}

/* --- banner Section --- */
.lp-section--banner {
  background-color: #fdfaf6;
  padding: 60px 0;
}

.lp-banner-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lp-banner-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
}

.lp-banner-img {
  position: relative;
  width: 40%;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.lp-banner-img::after {
  content: "クリック";
  position: absolute;
  right: 10px;
  bottom: 10px;

  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;

  padding: 15px 15px;
  border-radius: 999px;

  pointer-events: none;
}

.lp-banner-item:hover .lp-banner-img::after {
  opacity: 1;
  transform: translateY(0);
}

.lp-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-banner-item:hover .lp-banner-img {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.lp-banner-text {
  width: 60%;
}

.lp-banner-text p {
  color: #4a4238;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  view-timeline-name: --item-reveal;
  view-timeline-axis: block;
  animation: reveal linear both;
  animation-timeline: --item-reveal;
  animation-range: entry 10% cover 30%;
}

@media (min-width: 768px) {
  .lp-section--banner{
    padding: 60px 0 !important;
  }

  .lp-banner-layout {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .lp-banner-item {
    flex-direction: column;
    width: calc((100% - 80px) / 3); 
    align-items: flex-start;
    gap: 20px;
  }

  .lp-banner-img {
    width: 100%;
  }

  .lp-banner-text {
    width: 100%;
  }

  .lp-banner-text p {
    font-size: 1.4rem;
    text-align: center;
  }

}

.fv{
  position: relative;
}

.fv .fv-slider .slick-slide a figure{
  position: relative;
  overflow: hidden;
}

.fv .fv-slider .slick-slide a figure img{
  transition: transform .45s ease;
}

/* 白オーバーレイ */
.fv .fv-slider .slick-slide a figure:before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.25);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
  pointer-events: none;
}

/* hover時 */
.fv .fv-slider .slick-slide a:hover figure:before{
  opacity: 1;
}

.fv .fv-slider .slick-slide a:hover figure img{
  transform: scale(1.05);
}

.fv .fv-slider {

  .slick-arrow{
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    z-index: 10;

    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: #2e8b7d;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    transition: .3s;

    font-size: 0;
  }

  .slick-prev{
    left: 20px;
  }

  .slick-next{
    right: 20px;
  }

  .slick-arrow:before{
    font-size: 40px;
    color: #fff;
    opacity: 1;
    position: relative;
    top: -6px;
  }

  .slick-prev:before{
    content: "‹";
  }

  .slick-next:before{
    content: "›";
  }

  .slick-arrow:hover{
    opacity: .8;
  }
}

@media screen and (max-width: 768px){

  .fv .fv-slider{

    .slick-prev{
      left: calc(50% - 70px);
    }

    .slick-next{
      right: calc(50% - 70px);
    }

    .slick-arrow {
      top: 102%;
     width: 50px;
     height: 50px;
    }

  }

}
.fv{
  position: relative;
}
.fv-scroll{
  position: absolute;
  right: 20px;
  bottom: -250px;
  transform: translateX(-50%);
  z-index: 999;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* 3本の波 */
.fv-scroll span{
  display: block;
  width: 22px;
  height: 22px;

  border-right: 2px solid #2e8b7d;
  border-bottom: 2px solid #2e8b7d;
  transform: rotate(45deg);

  opacity: 0;
  animation: wave 1.6s infinite;
}

/* 遅延で波っぽくする */
.fv-scroll span:nth-child(1){
  animation-delay: 0s;
}
.fv-scroll span:nth-child(2){
  animation-delay: .15s;
}
.fv-scroll span:nth-child(3){
  animation-delay: .3s;
}

.fv-scroll p{
  margin-top: 15px;
  font-size: 10px;
  letter-spacing: .2em;
  animation: textWave 1.6s infinite;
}

@keyframes wave{
  0%{
    opacity: 0;
    transform: translateY(-8px) rotate(45deg);
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: translateY(8px) rotate(45deg);
  }
}

@keyframes textWave{
  0%   { transform: translateY(2px); opacity: .4; }
  50%  { transform: translateY(-2px); opacity: 1; }
  100% { transform: translateY(2px); opacity: .4; }
}

@media screen and (max-width: 768px){

  .fv-scroll{
    display: none;
  }

}