@charset "UTF-8";
/* CSS Document */

body {
  /*background: #1fb6e0; /* あの水色 */
   color:#282828; letter-spacing:0.05em; margin:0; line-height:200%; font-size:14px; 
font-family: 'Noto Sans JP', sans-serif; font-weight:400;
}



a{color:#4868CB; text-decoration:underline; font-weight: bold;}
a:hover{color:#4868CB; font-size: 1.1em; }
a img:hover{opacity: 0.72;}


.mp,
.sp,
.mw500{ display:none;}

.container {
  margin: 0 auto;
  /*background: #fff;*/
}

.hero {
  position: relative;
  height: 90vh; width: 100%;min-height: 800px;
  background: url(img/hero.jpg) center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0),
  rgba(0,0,0,0.3)
  );
}


.hero-inner {
    position: relative;
  z-index: 1;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1100px;
  text-align: center;
}


@media screen and (max-width:768px) {
.hero {
  height: 80vh; min-height: 600px;}
  
  .hero-inner { top: 44%;}
  
.hero::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
  rgba(0,0,0,0.6)
  );
}
}


.hero-logo {
  max-width: 500px;
  width: 80%;
  /*margin-bottom: 20px;*/
}

/*.hero-logo-wrap {
  margin-bottom: 24px;
}*/

.hero-text {
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.hero-text h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  opacity: 0.9;
}

.info-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(4px);
}



.label {
  border: 1px solid #aaa;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  opacity: 0.9;
}

.value {
  display: flex;
  align-items: center;
  gap: 6px;
}

.value strong {
  color: #ffd400;
  font-size: 36px;
}

.value small {
  font-size: 14px;
  opacity: 0.8; line-height: 1.5;
  margin-left: 6px;
}


.dow {
  font-size: 0.7em; /* ← これが一番効く */
  margin-left: 3px;
}

.arrow {
  font-size: 12px;
  opacity: 0.7;
}


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

.hero-text h1 {margin-left: 15px;}

  .info-bar {
    flex-direction: column;
    align-items: center; gap:15px;
  }

  .info-item {
   width: fit-content;
    justify-content: center;
	font-size: 13px;
  }	
  
    .info-item .label{display: none;}
  .value strong {
  font-size: 30px;
}

.dow {
  font-size: 0.4em;
}

  .info-item .value{font-weight: bold; font-size: 1.3em;}

}


.about {
  background: #fef6e9;
  padding: 80px 20px;
  position: relative;
}

.about-inner {  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
   align-items: start;
   background: #fef6e9;
   background-image: url("img/about_bg.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 450px;
  
}


/* 左 */

.about-left {}

.about-label {
  margin-bottom: 16px; line-height: 1.5;
  background-image: url("img/earth-icon.png"); background-repeat: no-repeat;background-size: 23px; padding-left: 35px; background-position: 0 0px;}

.about-label .icon img {
  width: 24px;
  height: 24px;
}

.about-label .text {
   font-size: 18px; /* ← まずここ */
  color: #ff5500;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-sub {
  font-size: 14px; font-weight: 600;
  line-height: 1.8;
  border-top: 2px dotted #bbb;
  padding-top: 12px;
}

.about-sub span{color: #ff5500; font-size: 1.3em; display: inline-block;}
.about-sub span:last-child{ margin-left: 10px;}

/* 右 */
.about-right {
  font-size: 15px;
  line-height: 2;
  position: relative;
  padding-left: 40px;margin-top: 100px;
}


/* 区切り線 */
.about-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: #ccc;
  transform: translateX(-50%);
}

/* 背景のうっすらアイコン */
.about::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 200px;
  height: 200px;
  background: url('img/about-bg.png') no-repeat center/contain;
  opacity: 0.1;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-inner::before {
    display: none;
  }


  .about-right {
    padding-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
.about-sub {
  font-size: 17px;  line-height: 1.5; text-align: center;}
  
.about-sub span:first-child{}
.about-sub span:last-child{ margin-left: 0px;}

}


.highlights {

  padding: 80px 20px;
   background: #f3eadf url("img/bg-map.png") no-repeat center;
  background-size: cover;
}

.highlights-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr;
  column-gap: 10px;
}

/* 左 */
.highlights-label {
  align-items: center;
  gap: 8px;
  color: #ff5500; font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
  background-image: url("img/icon-compass.png"); background-repeat: no-repeat;background-size: 30px; padding-left: 40px; background-position: 0 0px;
}

.highlights .icon img {
  width: 30px;
  height: 30px;
}

.highlights-head{}

.highlights-head h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
}
.highlights-head p{ font-size: 0.8em;}

/* 右 */
.highlights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* カード */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* 上部 */
.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-head img {
  width: 30px;
}

/* タイトル */
.card h3 {
  font-size: 16px;
  font-weight: 700;
}

.card p {
  font-size: 13px; line-height: 1.2; font-weight: 600;
  opacity: 0.7;
}

.card:first-of-type p{color: #3cb371;}
.card:nth-of-type(2) p{color: #f28c28;}
.card:last-of-type p{color: #8e44ad;}

/* 画像 */
.card-img {
  width: 100%;
  border-radius: 10px;
  display: block;
}


.card.green .card-head img {
  background: #3cb371;
  border-radius: 50%;
  padding: 6px;
}

.card.orange .card-head img {
  background: #f28c28;
  border-radius: 50%;
  padding: 6px;
}

.card.purple .card-head img {
  background: #8e44ad;
  border-radius: 50%;
  padding: 6px;
}

.tenpo{ max-width: 700px; margin: 100px auto 40px;}
.tenpo img{ width: 100%;}
.tenpo img:last-child{margin-top: 20px;}
.tenpo h2{  text-align: center; font-size: 26px; font-weight: bold; line-height: 1.5;
padding: 25px; color: #FCA662;}
.tenpo p{ }

.highlights .order{text-align: right; color: #FCA662; margin-right: 20%; font-size: 0.8em;}

@media (max-width: 768px) {


.highlights {
   background: #f3eadf url("img/bg-map_sp.jpg") repeat-y center top;
  background-size: 100%;
}

  .highlights-inner {
    grid-template-columns: 1fr;
  }

  .highlights-cards {
    grid-template-columns: 1fr;
  }

  .highlights-head h2 {
    margin-bottom: 20px;
  }
  
  .highlights .order{text-align: center; margin-right: inherit;}


}




.family {
  padding: 80px 20px;
  background: #f7e99b;
  text-align: center;
}

.family-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 丸3つ */
.family-circles {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

/* 丸 */
.circle {
  position: relative;
  overflow: visible;
    width: 300px;
  height: 300px;transition: transform 0.3s ease;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.circle:hover {
  transform: translateY(-8px);
}
/* バッジ */
.badge {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f58220;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;

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

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* バラバラ配置（意図あり） */
.circle:nth-child(1) .badge {
  bottom: -10px;
  left: -10px;
  transform: rotate(-8deg);
}

.circle:nth-child(2) .badge {
  top: -10px;
  right: -10px;
  transform: rotate(6deg);
}

.circle:nth-child(3) .badge {
  bottom: -10px;
  right: -10px;
  transform: rotate(-5deg);
}

/* テキスト */
.family-text h2 {
  font-size: 32px; line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon {
  width: 100px; /* 好きなサイズ */
  vertical-align: middle; margin-right: 10px;
  transform: translateY(6px);width: 100px;
}

.family-text strong {
  color: #f58220;
}

.family-text p {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .family-circles {
   display: flex;
    flex-direction: column;
    align-items: center; /* ← これが超重要 */
  }

  
  .family-text h2 {
    font-size:30px;
	display: block; line-height: 1.6;
  }

  .family-text p {
    font-size: 16px;
  }
  
  .icon {
  width: 150px;margin-bottom: 25px;}
  
  .family-text p {font-weight: bold;}
}


.event {
  background: #1fb6e0;
  padding: 80px 20px;
  position: relative;
  color: #fff;
  background-image: url("img/gaiyo_bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}

.event-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.event-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
   background-image: url("img/info-icon.png"); background-repeat: no-repeat;background-size: 23px; padding-left: 40px; background-position: 02px;
}

.event-label .icon {
  width: 20px;
  height: 20px;
  background: #ffd43b;
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.event-head h2 {
  font-size: 28px;
  font-weight: 800;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  color: #333;
}

/* 中の列 */
.event-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 見出し */

.event-col p {
  line-height: 1.3;
}

.event-col span {
  font-weight: 700;
  display:inline-block;
 margin-bottom: 2px;
}

.event-card {
  position: relative;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  background: #ddd;
  transform: translateX(-50%);
}



@media (max-width: 768px) {
  .event-inner {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card::before {
    display: none;
  }
  
  .event {
  background-size: 250%;
}
}

.info {
  display: flex;
  font-weight: bold;font-size: 14px;
   }
  
  .info a {
  display: flex;
  align-items: center; /* ←これで縦中央 */
  gap: 12px;
}

.wbc-icon {
  height: 50px;
  width: auto;
  display: block;
}

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

}

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

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


@media only screen and (max-width: 768px) {
.pc{ display:none;}
.sp{ display:inline-block;}

.info {margin-top: 20px;}
}


@media only screen and (max-width: 550px) {
.mw550{ display: inline-block;;}

}

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


}


