/* --------------------------------
   全体共通
-------------------------------- */
*{
  box-sizing:border-box;
  margin: auto;
}

html{
  scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Noto Sans JP","Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN",Arial,sans-serif;
  color:#222;
  background:#fff;
  line-height:1.8;
}

a{
  color:inherit;
  text-decoration:none;
}

.input_text {
	width:90%;
	font-size:15px;
	height:36px;
	border:1px solid #333;
}

.text_area {
	height:300px;
}

.gothic {
  font-family:"Noto Sans JP","Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN",Arial,sans-serif;
}

.mincho {
  font-family:"BIZ UDP明朝","Yu Mincho",YuMincho,"Hiragino Mincho ProN",serif;
}

.button{
  margin-top:auto;
  align-self:center;
  border:1px solid #185b38;
  border-radius:5px;
  padding:8px 35px;
  font-size:13px;
  color:#185b38;
  font-weight:700;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.button:hover {
  background: #f0f8ff;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto}

/* --------------------------------
   トップバー
-------------------------------- */
.topbar{
  height:auto;
  padding: 7px 0px;
  background:#f6b800;
  color:#111;
  font-size:13px;
  font-weight:700;
}

.topbar .inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.top-links{
  display:flex;
  align-items:center;
  gap:0}

.top-links a{
padding:0 17px;
border-left:1px solid rgba(0,0,0,.25)}

.top-links a:last-child{
  background:#155a39;
  color:#fff;
  height:38px;
  display:flex;
  align-items:center}

/* --------------------------------
   ヘッダー
-------------------------------- */
header {
  margin: 10px auto;
  max-width: 1200px;
  height: 86px;
  background: #fff;
  position: relative;
  z-index: 5;
}

.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------
   ロゴ
-------------------------------- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 68px;
  height: 60px;
  border: 4px solid #6d9824;
  border-radius: 50%;
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: scaleX(.72);
  position: relative;
}

.brand-mark:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 42px;
  background: #f4c400;
  left: 21px;
  top: 8px;
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    -20px 15px 0 -3px #e7b900,
    20px 15px 0 -3px #e7b900;
}

.brand-name {
  font-size: 30px;
  color: #759a2b;
  line-height: 1;
  font-weight: 500;
}

.brand-sub {
  font-size: 12px;
  color: #759a2b;
  letter-spacing: .2px;
  margin-top: 3px;
}

/* --------------------------------
   PC用ナビゲーション
-------------------------------- */
.pc-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
}

.pc-nav a {
  white-space: nowrap;
  text-decoration: none;
  color: #111;
}

/* --------------------------------
   PC用ドロップダウン
-------------------------------- */
.pc-nav .dropdown {
  position: relative;
}

/* プルダウン */
.pc-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  min-width: 220px;
  z-index: 1000;
  background: #185b38;
  box-shadow: 0 0 1px #185b38;
}

/* マウスオーバー */
.pc-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* プルダウン内 */
.pc-nav .dropdown-menu a {
  display: block;
  padding: 12px 15px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.pc-nav .dropdown-menu a:after {
  content: "";
}

.pc-nav .dropdown-menu a:hover {
  background: #f5f5f5;
}

/* --------------------------------
   ハンバーガー
-------------------------------- */
.hamburger {
  display: none;
  position: relative;
}

/* チェックボックス */
#menu-toggle {
  display: none;
}

/* ハンバーガーボタン */
.hamburger-button {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger-button span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  margin: 0 auto;
}

/* --------------------------------
    トップ画像
-------------------------------- */
.hero{
  height:460px;
  background-image:linear-gradient(90deg,rgba(0,0,0,.58) 0%,rgba(0,0,0,.25) 52%,rgba(0,0,0,.06) 100%), url("images/headerMain-org.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.hero-content{
  margin-left: 10px;
  padding:92px 0px;
  max-width:720px}

.eyebrow{
  font-size:18px;
  font-weight:700;
  margin-bottom:8px}

.hero h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:43px;
  line-height:1.15;
  letter-spacing:.5px}

.hero h1 span{
  display:block;
  font-family:"Yu Mincho",YuMincho,"Hiragino Mincho ProN",serif;
  font-size:35px;
  margin-top:10px}

.hero-copy{
  font-size:15px;
  font-weight:700;
  line-height:2;
  margin:22px 0 28px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-radius:28px;
  padding:12px 25px;
  font-weight:700}
outline
.btn-yellow{
  background:#f7b900;
  color:#111}

.btn-green{
  background:#17603b;
color:#fff}

.btn:hover {
  filter: brightness(1.2); 
}

.arrow{
  font-size:18px}

/* floating banners */
.hero-banners{
  position:absolute;
  right:22px;
  top:25px;
  width:310px;
  display:grid;
  gap:18px;
}

.hero-banners-mob{
  display:none;
}

.banner{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.7);
}

.banner img{
  display:block;
  width:100%;
  height:auto}

.banner.hawaii{
  background:rgba(65,38,22,.9)
}

.banner.hawaii img{
  opacity:.96
}

.banner-text{
  position:absolute;
  display:block;
  margin:10px 15px;
  line-height: 1.3;
  height:auto
}

/* section */
.section{
  padding:30px 0
}

.section-title{
  text-align:center;
  color:#185b38;
  font-size:28px;
  margin:0 0 5px;
  font-weight:800}

.section-lead{
  text-align:center;
  margin:0 auto 30px;
  font-size:17px}

/* cards */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 3px 15px rgba(0,0,0,.11);
  border:1px solid #eee;
  margin-top: 0;
}

.card-img{
  height:200px;
  overflow:hidden;
  background:#ddd}

.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block}

.card-body{
  padding:20px 18px 23px;
  min-height:245px;
  display:flex;
  flex-direction:column}

.card h3{
  font-size:18px;
  margin:0 0 12px;
  color:#185b38}

.card:nth-child(2) h3{
  color:#9a3c2c}

.card:nth-child(3) h3{
  color:#087eaf}

.card:nth-child(4) h3{
  color:#ef5b18}

.card:nth-child(6) h3{
  color:#9a3c2c}

.card:nth-child(7) h3{
  color:#087eaf}

.card:nth-child(8) h3{
  color:#ef5b18}

.card p{
  font-size:15px;
  line-height:1.8;
  margin:0 0 18px}

.card .outline{
  margin-top:auto;
  align-self:center;
  border:1px solid #185b38;
  border-radius:5px;
  padding:8px 35px;
  font-size:13px;
  color:#185b38;
  font-weight:700;
}

.card:nth-child(2) .outline{
  color:#9a3c2c;
  border-color:#9a3c2c}

.card:nth-child(3) .outline{
  color:#087eaf;
  border-color:#087eaf}

.card:nth-child(4) .outline{
  color:#ef5b18;
  border-color:#ef5b18}

.card:nth-child(6) .outline{
  color:#9a3c2c;
  border-color:#9a3c2c}

.card:nth-child(7) .outline{
  color:#087eaf;
  border-color:#087eaf}

.card:nth-child(8) .outline{
  color:#ef5b18;
  border-color:#ef5b18}

.outline:hover {
  background: #f0f8ff;
}

/* other program */
.other{
  background:#f1f5ed;
  border-radius:14px;
  padding:25px 30px;
  /* display:grid;
  */  grid-template-columns:1fr 200px;
  align-items:center;
  gap:25px;
}

.other-copy{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:60px;
  align-items:center}

.globe{
  width:100px;
  height:100px;
  border:3px solid #1c5e3c;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:50px;
  color:#1c5e3c}

.other h2{
  margin:0;
  color:#185b38;
  font-size:22px}

.other p{
  margin:3px 0 0;
  /*font-size:13px*/}

.other img{
  width:200px;
  height:120px;
  object-fit:cover;
  border-radius:8px}

.other-action{
    display:flex;
    justify-content:center;
    margin-top:20px;
}

/* feature row */
.features{
/*  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
 */  
  display:flex;  
  padding:32px 0 50px;
}

.features img{
  width:100%;
}

.feature{
  margin-top:0;
  width:18%;
  text-align:center
}

.feature-icon{
  width:52px;
  height:52px;
  margin:0 auto 10px;
  border:3px solid #23613f;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#23613f;
  font-size:25px}

.feature h4{
  margin:0 0 5px;
  color:#23613f;
  font-size:15px}

.feature p{
  font-size:14px;
  line-height:1.7;
  margin:0;
}

/* --------------------------------
    フッター
-------------------------------- */

footer {
  clear: both;
  margin-top: 20px;
  background:#145a38;
  color:#fff;
  padding:20px 0 18px;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.3fr 1.3fr 0.9fr 1fr 0.9fr;
  gap:35px;
  align-items:start;
}

.footer-logo{
  display:flex;
  gap:10px;
  align-items:center;
  color:#f5c000;
  font-size:28px;
}

.footer-brand p{
  font-size:12px;
  line-height:1.7}

.footer-menu {
  width:80%;
  align-self:start;
  margin-top:0;
}

footer h4{
  margin:0 0 8px;
  font-size:14px;
}

footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

footer li{
  font-size:13px;
  line-height:2;
}

.copyright{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:25px;
  padding-top:15px;
  font-size:11px
}
/* --------------------------------
    ページトップへのスクロール
-------------------------------- */
#pageTop{
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  padding:6px;
  font-size:80%;
  text-align: center;
  color:#333;
  background: linear-gradient(rgba(240, 240, 240, 0.6),rgba(230, 230, 230, 0.6));
}

#pageTop:hover {
  background: #f0f8ff;
}
