@charset "UTF-8";
/* CSS Document */
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
  /** ==============================
 * Philosophyセクション start
 * ============================== **/
  .PhilosophySection {
    width: 100vw;
    background: #f2f2ef;
    padding: 0;
  }
  .PhilosophySection__inner {
    width: 100vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70vw 30vw;
    gap: 00vw;
    align-items: start;
    padding-bottom: 10vw;
  }
  .PhilosophySection__content {
    display: flex;
    flex-direction: column;
    gap: 3vw;
  }
  .PhilosophySection__block {
    padding: 0 0 4vw 10vw;
    position: relative;
  }
  .PhilosophySection__heading {
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
    color: #206b4d;
    letter-spacing: 0.05em;
    margin-bottom: 1vw;
  }
  .PhilosophySection__heading span {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 1rem;
    color: #206b4d;
  }
  .PhilosophySection__lead {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    color: #222;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
  }
  .PhilosophySection__text {
    font-size: 1rem;
    color: #333;
    line-height: 2;
    letter-spacing: 0.05rem;
  }
  .PhilosophySection__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .PhilosophySection__list li {
    font-size: 1rem;
    color: #333;
    line-height: 2;
    margin-bottom: 0.5rem;
  }
  .PhilosophySection__list span {
    color: #206b4d;
    font-size: 1.2rem;
    padding-right: 1rem;
  }
  .PhilosophySection__list strong {
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    letter-spacing: 0.05rem;
    color: #222;
    white-space: nowrap;
	width: 6.5rem;

	display: inline-block;
  }
  .PhilosophySection__bar {
    width: 8vw;
    height: 0.4rem;
    background-color: #25634D;
    position: absolute;
    left: 0;
    top: 1.3rem;
  }
  .PhilosophySection__image-wrap {
    width: 100%;
    height: 100%;
  }
  .PhilosophySection__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /** ==============================
 * Philosophyセクション end
 * ============================== **/
  /** ==============================
 * Executive Interview セクション start
 * ============================== **/
  .ExecutiveSection {
    background: #fff; /* 背景：ダークグリーン */
    padding: 5vw 0 8vw 0;
    color: #fff;
    position: relative;
  }
  .ExecutiveSection__clip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    background: #25634D; /* 背景：ダークグリーン */
    z-index: 1;
  }
 .ExecutiveSection__inner {
  position: relative;
  width: 100vw;
  margin: 0 auto;
  z-index: 10;
  padding: 0 8vw 0 0 ;
}

.ExecutiveSection__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
}

  .ExecutiveSection__header {
      position: relative;
    padding: 0 0 0 10vw;
  }

.ExecutiveSection__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  color: #f1cd6d;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.ExecutiveSection__lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
}

.ExecutiveSection__desc {
  font-size: 1rem;
  line-height: 2;
  color: #fff;
  font-weight: 400;
}

    .ExecutiveSection__bar {
	width: 8vw;
	height: 0.4rem;
	background-color: #F1CD6D;
	position: absolute;
	left: 0;
	top: 1.5rem;
  }

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}
.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('../images/play_bot.svg') no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

/* ライトボックス */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-content {
  position: relative;
  width: 80vw;
  max-width: 1280px;
}
.lightbox-content video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.4rem;
}

/* 閉じるボタン */
.lightbox-close {
  position: absolute;
  top: -2rem;
  right: -2rem;
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}

  /** ==============================
 * Executive Interview セクション end
 * ============================== **/
 
 /** ==============================
 * Company Overview セクション start
 * ============================== **/
.CompanyOverviewSection {
  background: #fff;
  padding: 6vw 0 0 0;

}
.CompanyOverviewSection__inner {
  width: 90vw;
  /*border-top: 1px solid #aaa;*/
  margin: 0 auto;
  padding: 5vw;
}
.CompanyOverviewSection__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: #1c8563;
  margin-bottom: 2.5vw;
  font-weight: 100;
}
.CompanyOverviewSection__table {
  display: flex;
  flex-direction: column;
}
.CompanyOverviewSection__row {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 1.5vw;
	font-size: 1rem;
	padding: 1.5rem 0;
	border-top: 1px solid #C5C5C5;
}
.CompanyOverviewSection__row dt {
  font-weight: 400;
  color: #333;
  margin-left:0.5rem 
}
.CompanyOverviewSection__row dd {
  color: #222;
  line-height: 1.75;

}
/** ==============================
 * Company Overview セクション end
 * ============================== **/

/** ==============================
 * Accessセクション start
 * ============================== **/
.AccessSection {
  width: 100vw;
  background: #fff;
  padding: 5vw 0;
}

.AccessSection__inner {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.AccessSection__block {
  display: flex;
  flex-direction: column;
  gap: 0vw;
}

.AccessSection__label {
  height: 1px;
  width: 4rem;
  background-color: #235296;
}

.AccessSection__address {
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.googlemaps {
  width: 80vw;
  height: 30vw;
  margin: 1vw auto;
}

.googlemaps iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* Google Map グレースケール表示（hoverでカラー） */
.googlemaps iframe,
.googlemaps object,
.googlemaps embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.googlemaps iframe:hover,
.googlemaps object:hover,
.googlemaps embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
/** ==============================
 * Accessセクション end
 * ============================== **/

}