@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
input, button, select, textarea {
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/*---------------------------------------------
    html
---------------------------------------------*/
html {
  font-size: 62.5%;
}

/*---------------------------------------------
    body
---------------------------------------------*/
body {
  color: #333;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
body * { box-sizing: border-box; }

/*---------------------------------------------
    link
---------------------------------------------*/
a {
  color: inherit;
  outline: none;
  text-decoration: none;
  transition-duration: 0.5s;
}
a img { transition-duration: 0.5s; }
a img:hover { opacity: 0.8; }

/*---------------------------------------------
    common
---------------------------------------------*/
img { height: auto; max-width: 100%; }
#wrapper { margin: 0 auto; width: 100%; overflow: hidden; }

@media screen and (max-width: 1024px) {
  .pc { display: none !important; }
}
@media screen and (min-width: 1025px) {
  .sp { display: none !important; }
}

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

.section-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: 2.4rem;
    margin-bottom: 12px;
  }
}

.section-sub {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #4DB6AC;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .section-sub {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}

.btn a {
  background: #F5A623;
  border-radius: 40px;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  text-align: center;
  width: 320px;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
  transition: all 0.3s;
}
.btn a:hover {
  background: #e6951a;
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 1.6rem;
    height: 52px;
    line-height: 52px;
    width: 280px;
  }
}

.btn-green a {
  background: #4DB6AC;
  box-shadow: 0 4px 12px rgba(77, 182, 172, 0.3);
}
.btn-green a:hover {
  background: #429e95;
  box-shadow: 0 6px 16px rgba(77, 182, 172, 0.4);
}

/* fadein */
.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 600ms ease-out;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*---------------------------------------------
    header
---------------------------------------------*/
#header {
  background: #fff;
  width: 100%;
  position: relative;   /* 初期は流れの中（MVと被らない）。スクロールで .fixed を付与 */
  top: 0;
  left: 0;
  z-index: 999;
  transition: box-shadow 0.3s;
}
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  animation: headerSlideDown 0.3s ease;
}
@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
#h-inner {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media screen and (max-width: 767px) {
  #h-inner {
    height: 64px;
  }
}
.h-logo {
  width: 160px;
}
.h-logo a {
  display: block;
}
.h-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .h-logo {
    width: 120px;
  }
}

/* gnav */
#gnav {
  display: flex;
  align-items: center;
}
#gnav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
#gnav ul li a {
  display: block;
  padding: 8px 18px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  position: relative;
}
#gnav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #4DB6AC;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s;
}
#gnav ul li a:hover::after {
  width: 70%;
}
#gnav ul li a[href="/contact/"] {
  background: #F5A623;
  color: #fff;
  border-radius: 30px;
  padding: 8px 24px;
  margin-left: 8px;
}
#gnav ul li a[href="/contact/"]::after {
  display: none;
}
#gnav ul li a[href="/contact/"]:hover {
  background: #e6951a;
}
/* SNS（お問い合わせボタンの右のアイコン）はボタン装飾を外す */
#gnav ul li:last-child a {
  padding: 0;
}

/* hamburger */
#menu-button {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
#menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
#menu-button span:nth-child(1) { top: 0; }
#menu-button span:nth-child(2) { top: 11px; }
#menu-button span:nth-child(3) { bottom: 0; }
#menu-button span.close:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
#menu-button span.close:nth-child(2) {
  opacity: 0;
}
#menu-button span.close:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ヘッダーのSNSアイコン（お問い合わせの右） */
.gnav-sns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
}
.gnav-sns a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  transition: transform 0.2s, opacity 0.2s;
}
.gnav-sns a::after {
  display: none !important;
}
.gnav-sns a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.gnav-sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 1024px) {
  .gnav-sns {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
  }
  .gnav-sns a {
    width: 36px;
    height: 36px;
  }
}

@media screen and (max-width: 1024px) {
  #menu-button {
    display: block;
  }
  #gnav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    /* ふわっと表示：透明＋非表示から */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  #gnav.open {
    opacity: 1;
    visibility: visible;
  }
  #gnav ul {
    flex-direction: column;
    gap: 0;
    /* 中身は少し下から上へスッと */
    transform: translateY(14px);
    transition: transform 0.4s ease;
  }
  #gnav.open ul {
    transform: translateY(0);
  }
  #gnav ul li a {
    font-size: 1.8rem;
    padding: 16px 40px;
    text-align: center;
  }
  #gnav ul li a::after {
    display: none;
  }
  #gnav ul li a[href="/contact/"] {
    margin-left: 0;
    margin-top: 16px;
  }
}

/* body fixed for SP menu */
body.bg-fixed {
  position: fixed;
  width: 100%;
}

/*---------------------------------------------
    page header (subpage)
---------------------------------------------*/
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../images/header-bg.jpg);
  background-size: cover;
  background-position: center 40%;
  padding: 90px 20px 30px;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-header {
    min-height: 260px;
    padding: 80px 20px 24px;
  }
}
.page-header .page-ttl {
  position: relative;
  z-index: 1;
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}
@media screen and (max-width: 767px) {
  .page-header .page-ttl {
    font-size: 2.5rem;
  }
}
.page-header .page-ttl-en {
  position: relative;
  z-index: 1;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/*---------------------------------------------
    breadcrumb
---------------------------------------------*/
.breadcrumb {
  padding: 12px 0;
  background: #f1faf8;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.breadcrumb ul li {
  font-size: 1.2rem;
  color: #999;
}
.breadcrumb ul li a {
  color: #4DB6AC;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}
.breadcrumb ul li + li::before {
  content: ">";
  padding: 0 8px;
  color: #ccc;
}

/*---------------------------------------------
    footer
---------------------------------------------*/
footer {
  background: #333;
  color: #fff;
  padding: 60px 0 0;
}
#f-inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.f-contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 767px) {
  .f-contents {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .f-logo {
    width: 92px;
    margin-left: auto;
    margin-right: auto;
  }
}
.f-logo {
  width: 132px;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.f-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.f-info {
  margin-top: 16px;
}
.f-info p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .f-info p {
    font-size: 1.15rem;
  }
  .f-nav li a {
    font-size: 1.3rem;
  }
}
.f-sns {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.f-sns li {
  line-height: 0;
}
.f-sns a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s;
}
.f-sns a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.f-sns img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .f-sns {
    justify-content: center;
  }
}
.f-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .f-nav {
    flex-direction: column;
    align-items: center;
  }
}
.f-nav li a {
  display: block;
  padding: 4px 16px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
.f-nav li a:hover {
  color: #4DB6AC;
}
.copy {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 20px 0;
}

/*---------------------------------------------
    pagetop
---------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}
.pagetop .gotop {
  display: block;
  width: 48px;
  height: 48px;
  background: #4DB6AC;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.pagetop .gotop:hover {
  background: #429e95;
  transform: translateY(-3px);
}
.pagetop .gotop::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%) rotate(-45deg);
}

/*---------------------------------------------
    cta section
---------------------------------------------*/
.cta-section {
  background: linear-gradient(135deg, #4DB6AC 0%, #3d9e95 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-section .cta-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .cta-section .cta-ttl {
    font-size: 2.2rem;
  }
}
.cta-section .cta-txt {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.8;
}
.cta-section .btn a {
  background: #fff;
  color: #4DB6AC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-section .btn a:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}
.cta-section .cta-tel {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
}
.cta-section .cta-tel a {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .cta-section .cta-tel a {
    font-size: 2.0rem;
  }
}
