* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}



body {
	font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	color: #222;
	background: #fff;
	line-height: 1.7;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* ヘッダーメニュー */
/*------------------------------------------------------*/

*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;*behavior:url(/scripts/boxsizing.htc)}.container{margin:0 auto}.clr:after,.col:after,.container:after,.group:after,.row:after{content:"";display:table;clear:both}.row{padding-bottom:0}.col{display:block;float:left;width:100%}@media (min-width:769px),print{.gutters .col{margin-left:2%}.gutters .col:first-child{margin-left:0}.gutters .colR:first-child{margin-right:0}.sp{display:none}}@media(max-width:768px){.sp_none{display:none !important;}}

@media only screen and ( max-width : 768px ) {
  .sbox {
    margin-bottom: 20px;
  }
  .container {
    padding: 0 30px;
  }
  /*section {
    padding: 100px 0;
  }*/
}

@media only screen and ( max-width : 480px ) {
  .container {
    padding: 0 20px;
  }
}
@media only screen and ( max-width : 374px ) {
  .container {
    padding: 0 10px;
  }
}

@media print, screen and ( min-width : 769px ) {
  .sbox {
    margin-bottom: 25px;
  }
  .container {
    /*width: 1080px;*/
	width:1200px;
  }
  /*section {
    padding: 200px 0;
  }*/
}

#header {
  box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  z-index: 99;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFFEFB;
}
/*#gNav a:hover {
  color: #999;
}*/
nav li a {
  font-size: 14px;
  letter-spacing: 0.2em;
}
nav .sub-menu,.mean-container .mean-nav ul ul {
  background: #fff;
}

/* スマホ用メニューCSS */
/*@media only screen and ( max-width : 768px ) {*/
@media only screen and ( max-width : 1278px ) {
  #header {
    padding: 10px 0;
    height: 60px;
  }
  .h_logo {
	width: 200px;
    position: absolute;
    top: 11px;
    left: 10px;
    z-index: 100;
  }
  #gNav .nav {
    overflow-y: auto;
    height: 100vh;
  }
  .mean-nav .container {
    padding: 0;
  }
  nav li .fa {
    display: none;
  }
}

/* PC用メニューCSS */
/*@media print, screen and ( min-width : 769px ) {*/
@media print, screen and ( min-width : 1279px ) {
  #header {
    height: 80px;
  }
  .h_logo img {
	width: 290px;
  }
  #h_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #gNav ul {
    position: relative;
    display: flex;
  }
  #gNav li {
    position: relative;
    margin-right: 3em;
  }
  #gNav li:last-child {
    margin-right: 0;
  }
  #gNav li i {
    font-size: 16px;
    margin-left: 5px;
  }
  #gNav li a {
    position: relative;
    display: block;
    text-align: center;
    line-height: 80px;
  }
  #gNav .sub-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  #gNav .sub-menu a {
    padding: 10px;
    display: block;
    border-bottom: none;
    padding: 20px;
    line-height: 1.2em;
  }
  #gNav .sub-menu a:hover:after {
    content: none;
  }
  #gNav .sub-menu li {
    display: block;
    font-size: 16px;
    padding: 0;
    margin: 0;
  }
  #gNav .sub-menu li:last-child {
    border-bottom: none;
  }
  #gNav ul > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  #gNav ul > li:hover a,#gNav .current-menu-item a,#gNav .current-menu-parent a {
    /*color: #bfd0ff;*/
	/*color:#ADD893;*/
  }
  #gNav li:hover ul.sub-menu {
    top: 80px;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
  }
  #gNav li ul li:after {
    content: none;
  }
 #gNav li:hover ul.sub-menu a {
    color: #111;
  }
  #gNav .sub-menu li a:hover {
    background: #fff;
  }
  #gNav .contact_btn a:hover {
    color: #fff;
  }
}

/*------------------------------------------------------*/



/* ヘッダー画像 */
/*------------------------------------------------------*/

    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      background: #111;
	  
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
	  
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 2.2s ease-in-out;
      will-change: opacity;
      overflow: hidden;
    }

    .hero-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      transform: scale(1.08);
      animation: bgZoom 14s linear infinite alternate;
      will-change: transform;
      backface-visibility: hidden;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.34);
    }

    .hero-bg.active {
      opacity: 1;
    }

    .hero-bg.bg1::before {
      background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80");
    }

    .hero-bg.bg2::before {
      background-image: url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1600&q=80");
    }

    .hero-bg.bg3::before {
      background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1600&q=80");
    }

    @keyframes bgZoom {
      from {
        transform: scale(1.08);
      }
      to {
        transform: scale(1.00);
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 980px;
      text-align: center;
      color: #fff;
    }

    .hero-sub,
    .hero-title,
    .hero-text,
    .hero-buttons {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .hero-sub.show,
    .hero-title.show,
    .hero-text.show,
    .hero-buttons.show {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-sub {
      display: inline-block;
      margin-bottom: 18px;
      font-size: 14px;
      letter-spacing: 0.18em;
    }

    .hero-title {
      font-size: clamp(34px, 6vw, 72px);
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero-text {
      font-size: clamp(15px, 2vw, 18px);
      line-height: 1.9;
      max-width: 760px;
      margin: 0 auto 34px;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      min-width: 180px;
      padding: 14px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: #fff;
      color: #111;
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.85);
      color: #fff;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: #fff;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-align: center;
      opacity: 0.9;
      animation: floatArrow 1.8s ease-in-out infinite;
    }

    .scroll-indicator span {
      display: block;
      font-size: 22px;
      margin-top: 6px;
    }

    @keyframes floatArrow {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    .section {
      padding: 88px 24px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-head {
      margin-bottom: 36px;
      text-align: center;
    }

    .section-head .en {
      display: block;
      font-size: 12px;
      letter-spacing: 0.16em;
      color: #777;
      margin-bottom: 10px;
    }

    .section-head h2 {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.3;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .card {
      background: #fff;
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    }

    .card h3 {
      font-size: 22px;
      margin-bottom: 14px;
    }

    .card p {
      font-size: 14px;
      color: #555;
      margin-bottom: 18px;
    }

    .card a {
      font-size: 14px;
      font-weight: 700;
    }

    .gray-bg {
      background: #f7f7f7;
    }

    .news-list {
      display: grid;
      gap: 16px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid #e5e5e5;
    }

    .news-date {
      font-size: 14px;
      color: #777;
    }

    .news-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .news-text {
      font-size: 14px;
      color: #555;
    }

    footer.site-footer {
      background: #111;
      color: #fff;
      padding: 48px 24px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-logo {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .footer-text {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
    }

    @media (max-width: 992px) {
      .cards {
        grid-template-columns: 1fr;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        padding: 14px 16px;
        flex-wrap: wrap;
      }

      .logo {
        font-size: 18px;
      }

      .main-nav {
        width: 100%;
      }

      .main-nav ul {
        gap: 16px;
        flex-wrap: wrap;
      }

      .main-nav a {
        font-size: 13px;
      }

      .hero {
        min-height: 92vh;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 280px;
      }

      .section {
        padding: 72px 20px;
      }
    }