@charset "utf-8";

/* ==========================================================================
   Variables / Reset
   ========================================================================== */
:root {
  --mint: #42bcb8;
  --mint-light: #dff2f1;
  --ink: #172120;
  --muted: #71807f;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px,2vw,18px);
  line-height: 1.9;
  background: #fff;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

button {
  font: inherit;
}

main {
  overflow: hidden;
}

.sp {
  display: none;
}
.ib{
	display: inline-block!important;
}

/* ==========================================================================
   Header / Global Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  padding: 18px 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 12, 12, .92);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

.brand {
  position: relative;
  display: inline-flex;
  gap: 8px;
  line-height: 1;
  height: 100%;
  width: clamp(280px, 40vw, 370px);	
}

.brand img {
  height: 250%;
  object-fit: contain;
	transition: .4s;
}
.is-scrolled .brand{
	align-items: center;
}

.is-scrolled .brand img{
	height: 120%;	
	object-position: left;	
	transition: .4s;
}
.global-nav {
  display: flex;
  height: 94px;
  align-items: center;
}

.global-nav > a {
  position: relative;
  min-width: 90px;
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
}

.global-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .3s ease, left .3s ease;
}

.global-nav > a:not(.nav-contact):hover::after {
  left: 0;
  width: 100%;
}

.global-nav small {
  display: block;
  font-size: 16px;
}

.global-nav .nav-contact {
  height: 94px;
  min-width: 178px;
  display: grid;
  place-items: center;
  background: rgba(66, 188, 184, .78);
  font-size: 16px;
 grid-auto-flow: column;
	margin-left: 15px;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.header-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(66, 188, 184, .18);
  border: 1px solid rgba(66, 188, 184, .55);
  transition: background-color .3s ease, border-color .3s ease;
}

.header-mail img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-mail:hover {
  background: var(--mint);
  border-color: var(--mint);
}

.menu-button {
  display: none;
}
.mailicon{
	width: 30px;
	height: 30px;
}
.mailicon img{
	object-fit: contain;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}
.hero {
  position: relative;
  height: min(85vw, 860px);
  min-height: 620px;
  padding: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.8s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .08) 60%, rgba(0, 0, 0, .16));
}

.hero-copy {
  position: absolute;
  left: max(4vw, calc((100vw - var(--max)) / 4));
  top: 45%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 2px 12px #000;
}

.hero-catch {
  margin: 0 0 24px;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: .08em;
}

.hero-copy > p:last-child {
  font-weight: 600;
  letter-spacing: .08em;
}

.scroll {
  position: absolute;
  left: 6%;
  bottom: 74px;
  color: #fff;
  font: italic 12px Georgia;
}

.scroll span {
  display: block;
  width: 1px;
  height: 70px;
  margin: 8px auto 0;
  background: linear-gradient(#fff, transparent);
}

.hero-dots {
  position: absolute;
  right: 5%;
  bottom: 55px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .45);
}

.hero-dots .is-active {
  background: #fff;
}

/* ==========================================================================
   News Bar
   ========================================================================== */
.newsbar {
  height: 80px;
  padding: 0 max(4vw, calc((100vw - 940px) / 2));
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  background: #0f1111;
  color: #fff;
  font-size: 15px;
}

.newsbar strong {
  font-size: 25px;
}

.newsbar-track {
  position: relative;
  min-height: 40px;
}

.newsbar-item {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 120px 1fr 100px;
  gap: 20px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
}

.newsbar-item.is-active {
  opacity: 1;
  visibility: visible;
}

.newsbar-item time {
  color: #aab0af;
}

.newsbar-item .view-all {
  display: inline-block;
  text-align: right;
  font-weight: normal;
  transition: transform .3s ease;
}

.newsbar-item:hover time,
.newsbar-item:hover span {
  color: var(--mint);
}

.newsbar-item:hover .view-all {
  transform: translateX(8px);
}

/* ==========================================================================
   Section Common / Section Title
   ========================================================================== */
section {
  position: relative;
  padding: 110px 4vw;
}

.section-title{
    position:relative;
    width:max-content;
    margin:0 auto 90px;
    text-align:center;
}

.section-title span{
    display:block;
    color:transparent;
    -webkit-text-stroke:1px rgba(66,188,184,.45);
    font-size:clamp(90px,15vw,170px);
    font-weight:800;
    line-height:.8;
    letter-spacing:-.06em;
}

.section-title b{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    padding:10px 26px;
    background:var(--mint);
    color:#fff;
    font-size:clamp(15px,2.3vw,18px);
    font-weight:500;
    white-space:nowrap;
}

/* ==========================================================================
   About
   ========================================================================== */

.about{
    position:relative;
    padding:140px 4vw 130px;
    overflow:hidden;
}

.about-grid{
    position:relative;
    max-width:1600px;
    margin:auto;
    display:grid;
    grid-template-columns:350px minmax(475px,780px) 350px;
    justify-content:center;
    gap:80px;
}

/* --------------------------
   写真
---------------------------*/
.about-photo{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    z-index:2;
}

.about-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.about-photo:hover img{
    transform:scale(1.05);
}


/* 左上 */

.photo-a{
    width:320px;
    height:250px;
    transform:translateY(-70px);
}


/* 左下（重ねる） */

.photo-c{
    position:absolute;
    left:clamp(1.25rem, -16.453rem + 32.56vw, 10rem);
    top:185px;
    width:180px;
    height:180px;
    z-index:5;
}


/* 右 */

.photo-b{
    width:330px;
    height:280px;
    justify-self:end;
    transform:translateY(30px);
	margin-top: 50%;
}


/* --------------------------
   本文
---------------------------*/

.about-copy{
    max-width:600px;
    margin:auto;
    text-align:center;
    z-index:5;
}

.about-copy h2{
    margin-bottom:45px;
    font-size:28px;
    font-weight:700;
    line-height:1.6;
    letter-spacing:.08em;
}

.about-copy p{
    margin-bottom:28px;
    font-size:15px;
    line-height:2.4;
    color:#333;
}

.about-copy .flat-btn{
    margin-top:18px;
}


/* --------------------------
   飾り
---------------------------*/

.mint-square{

    position:absolute;
    background:#bcebea;
    border-radius:16px;

    opacity:.9;

    z-index:1;
}


/* 左下 */

.square-a{

    left:65px;
    bottom:10px;

    width:110px;
    height:110px;
}


/* 右下 */

.square-b{

    right:90px;
    bottom:-20px;

    width:125px;
    height:125px;
}


/* 右上 */

.square-c{
	right: 64px;
    top: 11px;
    width:75px;
    height:75px;
}


/* 線だけ */

.mint-square-line{

    position:absolute;

    right:0;
    top:55px;

    width:92px;
    height:92px;

    border:2px solid rgba(66,188,184,.35);

    border-radius:16px;

    z-index:0;
}
/* ==========================================================================
   Buttons
   ========================================================================== */
.flat-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  min-width: 220px;
  padding: 12px 25px;
  border: 1px solid var(--mint);
  color: #388e8a;
  text-align: center;
  line-height: 1.4;
  background: #fff;
}

.flat-btn:before {
  position: absolute;
  top: 0;
  left: 50px;
  width: 150%;
  height: 500%;
  content: "";
  transition: all .5s ease-in-out;
  transform: translateX(-98%) translateY(-70%) rotate(135deg);
  background: var(--mint);
}

.flat-btn span {
  position: relative;
  z-index: 1;
  transition: .4s;
}

.flat-btn:hover:before {
  transform: translateX(-9%) translateY(-45%) rotate(135deg);
}

.flat-btn:hover span {
  color: #fff;
}

/* ==========================================================================
   Service
   画面幅いっぱいに表示し、画像70% : 文章30%の比率で配置
   ========================================================================== */
.service {
  padding-left: 0;
  padding-right: 0;
}

.service-intro {
  text-align: center;
  margin: 0 auto 55px;
}

.service-intro p {
  margin-top: 15px;
  font-size: 16px;
}

.service-list {
  width: 100%;
  margin: auto;
}

.service-row {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 260px;
}

.service-row.reverse {
  grid-template-columns: 42% 58%;
  justify-content: end;	
}

.service-row.reverse .service-image {
  order: 2;
}

.service-image {
	overflow: hidden;    
	height: 100%;
}

.service-image img {
  transition: transform 1s;
    aspect-ratio: 5 / 2;
}

.service-row:hover img {
  transform: scale(1.035);
}

.crop-detail img {
  object-position: 72% 55%;
  transform: scale(1.15);
}

.service-body {
  position: relative;
  padding: 4vw 7vw 35px 4vw;
}
.reverse .service-body{
  padding: 4vw 4vw 35px 9vw;
}
.service-body em {
  position: absolute;
  right: 6%;
  top: 2vw;
  color: #c7eae8;
  font: 400 clamp(60px, 6vw, 90px) / 1 Arial;
  font-style: normal;
  font-family: "Oswald", sans-serif;	
}

.service-row.reverse .service-body em {
  left: 6%;
  right: auto;
}

.service-body small {
  color: var(--mint);
  font-size: 9px;
}

.service-body h3 {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 27px;
}

.service-body p {
  max-width: 400px;
}

.service-body .flat-btn {
  margin-top: 20px;
}

.service-contact {
  display: flex;
  max-width: 960px;
  margin: 42px auto 0;
  border: 1px solid var(--mint);
  padding: 10px 30px;
	gap:30px;
	justify-content: center;
	font-size: 23px;
	font-weight: 500;
	transition: .4s;
}
.service-contact .icon{
	width: 40px;
	height: 40px
}
.service-contact .icon img{
	object-fit: contain;
}
.service-contact .arrow{
	color:  var(--mint);
	transition: .4s;
}
.service-contact:hover {
	box-shadow: 0 0 8px var(--mint);
	transition: .4s;
}
.service-contact:hover .arrow{
	transform: translateX(8px);
	transition: .4s;
}
/* ==========================================================================
   Information
   ========================================================================== */
.information {
}

.information .section-title span {
  font-size: clamp(58px, 8vw, 110px);
}

.info-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
}

.info-title{

    position:relative;

    margin-bottom:35px;

    padding-top:18px;

}

.info-title span{

    display:block;

    color:transparent;

    -webkit-text-stroke:1px rgba(66,188,184,.20);

    font-family:"Oswald",sans-serif;

    font-size:clamp（70px,5vw,82px);

    font-weight:700;

    line-height:.85;

    letter-spacing:-.05em;

    text-transform:uppercase;

}

.info-title h3{

    position:absolute;

    top:75%;

    left:16px;

    transform:translateY(-50%);

    display:inline-block;

    margin:0;

    padding:7px 18px;

    background:var(--mint);

    color:#fff;

    font-size:13px;

    font-weight:500;

    letter-spacing:.08em;

    white-space:nowrap;

}
.news-list {
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--mint) transparent;
}

.news-list li {
  border-bottom: 1px solid #fff;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 10px;
  transition: background-color .25s ease;
}

.news-list a:hover {
  background: rgba(255, 255, 255, .6);
}

.news-list .thumb {
  flex: none;
  width: 140px;
　aspect-ratio: 4 / 3;　　	
  border-radius: 10px;
  overflow: hidden;
  background: var(--mint-light);
  display: grid;
  place-items: center;
}

.news-list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list .body {
  flex: 1;
  min-width: 0;
}

.news-list time {
  display: block;
  color: var(--mint);
  font-size: 12px;
  margin-bottom: 6px;
}

.news-list p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.7;
}

.news-list .newmark {
  color: #e2574c;
  font-size: 11px;
  margin-left: 4px;
}

.news-list .view-more {
  display: inline-block;
  margin-top: 8px;
  color: var(--mint);
  font-size: 11px;
  transition: transform .3s ease;
}

.news-list a:hover .view-more {
  transform: translateX(6px);
}

.news-list .no-news a,
.news-list .no-news {
  padding: 14px 8px;
  color: var(--muted);
  font-size: 13px;
}

.calendar {
  padding: 0;
  min-height: 324px;
 
  background: #efffff;
  overflow: hidden;
	padding: 20px 10px;
}

.calendar iframe {
  display: block;
  width: 100%;
height: 100%;
/*  min-height: 350px;*/
  border: 0;
}

/* ==========================================================================
   Access
   ========================================================================== */
.access-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.access dl{
	padding: 2vw 0;
}
.access dl > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  margin: 8px 0;
}

.access dt {
  color: var(--mint);
}

.access dd {
  margin-bottom: 10px;
  margin-left: 15px;
}
.access-icon{
	width: 25px;
	height: 33px;
	object-fit: contain;
}
.map {
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
}

.map span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .5);
}

.map small {
  position: absolute;
  bottom: 12px;
  right: 15px;
}

/*=========================
CTA
=========================*/

.contact{

    position:relative;

    padding:75px 4vw;

    color:#fff;

    overflow:hidden;

    background:
    linear-gradient(90deg,rgba(0,0,0,.45),rgba(0,0,0,1)),
    url("../img/ctabg.jpg") center center/cover no-repeat;
}

.contact-inner{
    max-width:1280px;
    margin:auto;
    gap:70px;
	display: flex;
	justify-content: flex-end;
}

.contact-copy{
	margin-bottom: 20px;
}

.contact-copy h2{
    margin-bottom:15px;
    font-size:42px;
    font-weight:700;
    line-height:1.4;
}

.contact-copy p{
    font-size:20px;
    opacity:.9;

}

.contact-actions{

    display:flex;

    gap:18px;
}

.contact-actions a{

    width:330px;

    height:96px;

    padding:0 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    text-decoration:none;

    transition:.35s;
}

.tel-btn{

    background:var(--mint);

    color:#fff;
}

.mail-btn{

    border:1px solid rgba(255,255,255,.5);

    color:#fff;

    background:rgba(0,0,0,.15);

    backdrop-filter:blur(5px);
}

.contact-actions .icon{
    width:30px;
}

.contact-actions .text{
    flex:1;
    padding-left:18px;
}
.contact-actions .tel-btn strong{
    font-size:28px;

}
.contact-actions strong{
    display:block;
    font-size:18px;
    font-weight:700;
	line-height: 1.3;
}

.contact-actions small{

    font-size:14px;

    opacity:.8;
}

.contact-actions span{

    font-size:22px;

    transition:.3s;
}

.contact-actions a:hover{

    transform:translateY(-6px);
}

.contact-actions a:hover span{

    transform:translateX(8px);
}
footer{

    background:#1c1c1c;

    color:#fff;

    text-align:center;

    padding:55px 20px 30px;
}

footer img{

    width:280px;

    margin-bottom:25px;
}

footer p{

    line-height:2;

    color:#ddd;

    font-size:14px;
}

footer small{

    display:block;

    max-width:900px;

    margin:35px auto 0;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.15);

    color:#888;
}
/* ==========================================================================
   Page Top Button
   ========================================================================== */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 15;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: #fff;
  box-shadow: 0 8px 20px rgba(66, 188, 184, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease, box-shadow .3s ease, background-color .3s ease;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop span {
  font-size: 20px;
  transition: transform .3s ease;
}

.pagetop:hover {
  background: #388e8a;
  box-shadow: 0 12px 26px rgba(66, 188, 184, .55);
}

.pagetop:hover span {
  transform: translateY(-4px);
}

/* ==========================================================================
   Mobile Action Bar (smartphone only)
   ========================================================================== */
.mobile-actionbar {
  display: none;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-text {
  opacity: 0;
  transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.reveal-up {
  transform: translateY(70px);
}

.reveal-left {
  transform: translateX(-90px);
}

.reveal-right {
  transform: translateX(90px);
}

.reveal-text {
  transform: translateY(28px);
  transition-delay: .22s;
}

.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ==========================================================================
   Responsive (max-width: 1023px) — Header / Burger Menu
   ========================================================================== */
@media (max-width: 1023px) {
  .header-actions {
    display: flex;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 5px;
    width: 40px;
    padding: 8px;
    border: 0;
    background: transparent;
  }

  .menu-button i {
    display: block;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    transition: transform .3s ease, opacity .2s ease;
  }

  .menu-button[aria-expanded="true"] i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 110px 9vw 60px;
    counter-reset: navcount;
    background:
      radial-gradient(circle at 88% 12%, rgba(66, 188, 184, .2), transparent 45%),
      linear-gradient(160deg, #0c1615 0%, #101c1a 55%, #0c1615 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
    overflow: hidden;
  }

  .global-nav::before {
    content: "MENU";
    position: absolute;
    left: -.03em;
    bottom: 4vh;
    color: transparent;
    -webkit-text-stroke: 1px rgba(66, 188, 184, .22);
    font: 800 clamp(70px, 22vw, 220px)/.8 "Oswald", sans-serif;
    letter-spacing: -.03em;
    pointer-events: none;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .global-nav > a {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 14px 4px 14px 58px;
    font: 600 clamp(26px, 6.5vw, 44px)/1.1 "Oswald", sans-serif;
    letter-spacing: .02em;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease, color .3s ease;
  }

  .global-nav.is-open > a {
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav > a:nth-child(1) { transition-delay: .05s; }
  .global-nav > a:nth-child(2) { transition-delay: .12s; }
  .global-nav > a:nth-child(3) { transition-delay: .19s; }
  .global-nav > a:nth-child(4) { transition-delay: .26s; }
  .global-nav > a.nav-contact { transition-delay: .33s; }

  .global-nav > a:not(.nav-contact) {
    counter-increment: navcount;
  }

  .global-nav > a:not(.nav-contact)::before {
    content: "0" counter(navcount);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(12px, 2.6vw, 16px);
    color: var(--mint);
    opacity: .8;
  }

  .global-nav > a:not(.nav-contact)::after {
    left: 58px;
    bottom: 8px;
  }

  .global-nav > a:not(.nav-contact):hover,
  .global-nav > a:not(.nav-contact):active {
    color: var(--mint);
  }

  .global-nav small {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .5);
  }

  .global-nav .nav-contact {
    order: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    height: auto;
    min-width: 0;
    margin-top: 26px;
    padding: 18px 22px;
    border-radius: 6px;
    background: var(--mint);
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
  }

  .global-nav.is-open .nav-contact {
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav .nav-contact::after {
    content: "→";
    margin-left: auto;
  }
}

/* ==========================================================================
   Responsive (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .sp {
    display: block;
  }

  .site-header {
    height: 70px;
    padding: 13px 18px;
  }
	.header-mail {
		display: none;
	}
  .hero {
    height: 82vh;
    min-height: 560px;
  }

  .hero-slide img {
    object-position: 62% center;
  }

  .hero-copy {
    left: 24px;
    top: 47%;
  }

  .hero-catch {
    font-size: 32px;
  }

  .hero-copy > p:last-child {
    font-size: 11px;
  }

  .scroll {
    bottom: 55px;
  }

  .newsbar {
    height: auto;
    min-height: 92px;
    padding: 18px 20px;
    grid-template-columns: 70px 1fr;
    gap: 4px 10px;
  }

  .newsbar-track {
    min-height: 52px;
  }

  .newsbar-item {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2px;
  }

  .newsbar-item time {
    font-size: 11px;
  }

  .newsbar-item .view-all {
    display: none;
  }

  section {
    padding: 75px 20px;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .section-title span {
    font-size: clamp(35px, 20vw, 130px);
  }

  .section-title b {
	font-size: 14px;
	padding: 3px 20px;
	top: 60%;
  }

  .about-grid {
    display: block;
  }

  .about-photo {
    position: absolute;
    width: 145px;
    height: 150px;
    opacity: .35;
  }

  .photo-a {
    left: -55px;
    top: 0;
  }

  .photo-b {
    right: -55px;
    bottom: 0;
  }

  .about-copy {
    position: relative;
    z-index: 2;
  }

  .about-copy p {
    font-size: 11px;
  }

  .mint-square {
    display: none;
  }

  .service {
    padding-left: 0;
    padding-right: 0;
  }

  .service-intro {
    padding: 0 20px;
  }

  .service-intro h2 {
    font-size: 17px;
  }

  .service-row,
  .service-row.reverse {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .service-row.reverse .service-image {
    order: 0;
  }

  .service-image {
    height: 230px;
  }

  .service-body {
    padding: 35px 25px 48px;
  }

  .service-body em,
  .service-row.reverse .service-body em {
    right: 22px;
    left: auto;
  }

  .service-contact {
    margin: 25px 20px 0;
    font-size: 10px;
  }

  .info-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .news-list {
    max-height: 380px;
  }

  .news-list a {
    gap: 14px;
    padding: 14px 6px;
  }

  .news-list .thumb {
    width: 90px;
    height: 90px;
  }

  .calendar,
  .calendar iframe {
    min-height: 260px;
  }

  .map {
    height: 210px;
  }

  .contact {
    padding: 50px 20px;
    display: block;
    text-align: center;
  }

  .contact h2 {
    font-size: 20px;
  }

	.contact-inner{
		justify-content: center;
	}
	.contact-actions {
	  flex-direction: column;
    margin-top: 30px;
  }

  .contact-actions a {
    width: 100%;
    min-width: 0;
  }

  .reveal-left {
    transform: translateX(-45px);
  }

  .reveal-right {
    transform: translateX(45px);
  }

  .pagetop {
    display: none;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-actionbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    background: #0f1111;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .3);
  }

  .mobile-actionbar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 8px;
    color: #fff;
    font-size: 10px;
    letter-spacing: .04em;
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .mobile-actionbar a:last-child {
    border-right: 0;
  }

  .mobile-actionbar img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .mobile-actionbar .arrow {
    font-size: 16px;
    line-height: 1;
    color: var(--mint);
  }

  .mobile-actionbar .action-tel {
    background: var(--mint);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-text {
    transition: none;
  }

  .hero-slide {
    transform: none;
  }
}

/* ==========================================================================
   Lower Pages
   ========================================================================== */
.lower-page .site-header {
  background: rgba(10, 12, 12, .92);
}

.lower-page .brand img {
  height: 120%;
  object-position: left;
}

.lower-hero {
  min-height: 620px;
  padding: 170px 4vw 110px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.lower-hero-bg {
  position: absolute;
  inset: 0;
}

.lower-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(66, 188, 184, .28), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18) 62%, rgba(0, 0, 0, .5));
}

.lower-hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
}

.lower-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.25;
  letter-spacing: .08em;
}

.lower-hero-copy > p:last-child {
  max-width: 620px;
  font-weight: 600;
  letter-spacing: .06em;
}

.lower-lead,
.message-section,
.company-section,
.form-section,
.service-detail,
.news-detail-section,
.thanks-section {
  padding-left: 4vw;
  padding-right: 4vw;
}

.lead-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 60px;
  background:
    linear-gradient(135deg, rgba(66, 188, 184, .12), transparent 48%),
    #fff;
  border: 1px solid rgba(66, 188, 184, .24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
  text-align: center;
}

.lead-panel h2,
.message-copy h2,
.wide-cta h2,
.contact-lead h2 {
  margin: 0 0 22px;
  font-size:clamp(20px, 3vw, 30px);
  line-height: 1.55;
  letter-spacing: .06em;
}

.service-detail {
  display: grid;
  gap: 70px;
  padding-top: 60px;
}

.detail-card {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: stretch;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
}

.detail-card.reverse {
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
}

.detail-card.reverse .detail-image {
  order: 2;
}

.detail-image {
  min-height: 430px;
  overflow: hidden;
}

.detail-image img {
  transition: transform 1s ease;
}

.detail-card:hover .detail-image img {
  transform: scale(1.04);
}

.detail-body {
  position: relative;
  padding: 64px min(6vw, 78px);
}

.detail-num {
  position: absolute;
  right: 30px;
  top: 22px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(66, 188, 184, .42);
  font: 800 clamp(70px, 8vw, 130px)/1 "Oswald", sans-serif;
  pointer-events: none;
}

.detail-body h2 {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.35;
}

.check-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid rgba(66, 188, 184, .18);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  background: var(--mint);
  border-radius: 50%;
}

.service-more {
  max-width: 1440px;
  margin: 20px auto 0;
  padding: 70px min(5vw, 70px);
  background:
    radial-gradient(circle at 88% 18%, rgba(66, 188, 184, .22), transparent 30%),
    linear-gradient(135deg, #f3fbfa 0%, #fff 58%, #edf8f7 100%);
  border: 1px solid rgba(66, 188, 184, .22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .06);
}

.service-more-heading {
  max-width: 845px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-more-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.55;
  letter-spacing: .06em;
}

.service-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-mini-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 42px 34px 38px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(66, 188, 184, .2);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66, 188, 184, .14), transparent 46%);
  opacity: 0;
  transition: opacity .35s ease;
}

.service-mini-card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 188, 184, .55);
  box-shadow: 0 24px 58px rgba(66, 188, 184, .14);
}

.service-mini-card:hover::before {
  opacity: 1;
}

.service-mini-card > * {
  position: relative;
  z-index: 1;
}

.service-mini-card > span {
  position: absolute;
  right: 24px;
  top: 18px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(66, 188, 184, .34);
  font: 800 clamp(64px, 6vw, 96px)/1 "Oswald", sans-serif;
}

.service-mini-card h3 {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
}

.service-mini-card p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

.wide-cta {
  max-width: 1080px;
  margin: 30px auto 110px;
  padding: 42px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background: var(--mint-light);
  border: 1px solid rgba(66, 188, 184, .35);
}

.message-grid,
.company-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.message-photo {
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

.message-copy {
  position: relative;
  padding: 58px 0 58px 58px;
}

.message-copy::before {
  content: "MESSAGE";
  position: absolute;
  right: -5vw;
  top: -20px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(66, 188, 184, .22);
  font: 800 clamp(70px, 11vw, 160px)/.8 "Oswald", sans-serif;
  letter-spacing: -.05em;
}

.company-section {
  background: #eff7f6;
}
.company-card{

    max-width:1000px;
    margin:0 auto;
    padding:clamp(2.5rem, 1.631rem + 3.66vw, 4.375rem) clamp(0.625rem, -1.113rem + 7.32vw, 4.375rem);
    background:#fff;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.company-head{

    margin-bottom:45px;
    text-align:center;

}

.company-head h2{

    margin-bottom:15px;
    font-size:34px;
    letter-spacing:.05em;

}

.company-head p{

    color:#666;
    line-height:2;

}

.company-table{

    margin:0;

}

.company-table>div{

    display:grid;

    grid-template-columns:220px 1fr;

    gap:25px;

    padding:22px 0;

    border-bottom:1px solid rgba(66,188,184,.18);

}

.company-table dt{

    color:var(--mint);

    font-weight:700;

}

.company-table dt i{

    width:22px;

    margin-right:10px;

}

.company-table dd{

    margin:0;

    line-height:1.9;

}

.company-btn{

    margin-top:50px;

    text-align:center;

}



.access-section{

    padding:120px 4vw;

    background:#fff;

}

.access-map{

    max-width:1180px;
	height: 45vh;
    margin:auto;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.access-map iframe{

    width:100%;
	height: 100%;
    border:0;

}
/*.company-grid {
  align-items: stretch;
}

.company-table {
  margin: 0;
  padding: 44px 50px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
}

.company-table > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(66, 188, 184, .2);
}

.company-table dt {
  color: var(--mint);
  font-weight: 700;
}

.company-table dd {
  margin: 0;
}

.company-map {
  min-height: 520px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}*/



.form-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(66, 188, 184, .16), transparent 28%),
    #fff;
}

.contact-lead {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.phone-card {
  display: inline-grid;
  grid-template-columns: auto;
  gap: 2px;
  width: 80%;
  min-width: 380px;
  margin-top: 28px;
  padding: 22px 34px;
  background: var(--mint);
  color: #fff;
  box-shadow: 0 18px 35px rgba(66, 188, 184, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.phone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(66, 188, 184, .35);
}

.phone-card strong {
  font-size: 31px;
  font-family: "Oswald", sans-serif;
  letter-spacing: .04em;
}

.contact-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 54px;
  background: #fff;
  border: 1px solid rgba(66, 188, 184, .24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
}

.form-row {
  margin-bottom: 26px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-form label {
  display: block;
  margin-bottom: 9px;
  font-weight: 700;
}

.contact-form label span {
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--mint);
  color: #fff;
  font-size: 11px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cddbd9;
  background: #f8fbfb;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(66, 188, 184, .14);
  background: #fff;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.privacy-box {
  margin: 18px 0 36px;
  padding: 22px;
  background: #f0f8f7;
  border: 1px solid rgba(66, 188, 184, .24);
}

.privacy-box summary {
  cursor: pointer;
  color: #248c88;
  font-weight: 700;
}

.privacy-scroll {
  max-height: 170px;
  margin-top: 16px;
  padding: 18px;
  overflow-y: auto;
  background: #fff;
}

.agree {
  display: flex !important;
  gap: 10px;
  align-items: center;
  margin-top: 18px !important;
}

.agree input {
  width: auto;
}

.form-submit {
  cursor: pointer;
}

.thanks-section {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding-top: 170px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.42)),
    url("../img/top/hero-road.png") center/cover no-repeat;
}

.thanks-card {
  max-width: 820px;
  padding: 56px;
  background: rgba(255, 255, 255, .95);
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .24);
}

.thanks-card h1 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 48px);
}

.thanks-card .flat-btn {
  margin-top: 28px;
}

.news-detail-hero {
  padding-top: 170px;
  padding-bottom: 30px;
}

.news-detail-section {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 35px;
	align-items: start;
	padding-top: 30px;
}

.news-article {
  padding: 52px;
  background: #fff;
  border: 1px solid rgba(66, 188, 184, .2);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
}

.news-article time {
  display: block;
  color: var(--mint);
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
}

.news-article h1 {
  margin: 12px 0 30px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.45;
}

.news-article figure {
  margin: 0 0 34px;
  max-height: 520px;
  overflow: hidden;
}

.news-body {
  margin-bottom: 34px;
}

.news-body img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.news-side {
  position: sticky;
  top: 120px;
  padding: 30px;
  background: #eff7f6;
}

.news-side h2 {
  margin: 0 0 20px;
  color: var(--mint);
  font-family: "Oswald", sans-serif;
}

.news-side ul {
  padding: 0;
  list-style: none;
}

.news-side li {
  border-bottom: 1px solid rgba(66, 188, 184, .25);
}

.news-side a {
  display: block;
  padding: 14px 0;
}

.news-side time {
  display: block;
  color: var(--mint);
  font-size: 12px;
}
#s01,#s02,#s03,#s04{
	scroll-margin-top: 80px;
}

@media (max-width: 1023px) {
  .lower-page .global-nav {
    background:
      radial-gradient(circle at 88% 12%, rgba(66, 188, 184, .2), transparent 45%),
      linear-gradient(160deg, #0c1615 0%, #101c1a 55%, #0c1615 100%);
  }

  .detail-card,
  .detail-card.reverse,
  .message-grid,
  .company-grid,
  .news-detail-section {
    grid-template-columns: 1fr;
  }

  .detail-card.reverse .detail-image {
    order: 0;
  }

  .wide-cta {
    display: block;
  }

  .service-more-grid {
    grid-template-columns: 1fr;
  }

  .wide-cta .flat-btn {
    margin-top: 24px;
  }

  .news-side {
    position: static;
  }
}

@media (max-width: 767px) {
  .lower-hero {
    min-height: 540px;
    padding: 130px 22px 70px;
  }

  .lower-hero h1 {
    font-size: 28px;
  }

  .lead-panel,
  .contact-form,
  .thanks-card,
  .news-article,
  .company-table {
    padding: 28px 22px;
  }

  .detail-image,
  .message-photo,
  .company-map {
    min-height: 260px;
    height: 260px;
  }

  .detail-body {
    padding: 38px 24px 44px;
  }

  .detail-num {
    top: 18px;
    right: 20px;
    font-size: 76px;
  }

  .message-copy {
    padding: 18px 0 0;
  }

  .company-table > div,
  .form-row.two {
    grid-template-columns: 1fr;
    gap: 8px;
  }
.company-head h2 {
    font-size: 30px;
}
  .wide-cta {
    margin: 0 20px 75px;
    padding: 30px 24px;
  }

  .service-more {
    padding: 42px 22px;
  }

  .service-mini-card {
    min-height: 0;
    padding: 34px 24px 30px;
  }

  .phone-card {
    min-width: 0;
    width: 100%;
  }

  .phone-card strong {
    font-size: 26px;
  }

  .news-detail-hero {
    padding-top: 120px;
  }

  .thanks-section {
    min-height: 620px;
    padding-top: 110px;
  }
}
