@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Zen Maru Gothic */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================
  base  PC
  ページ全体に付与するcss
  header/footer/フォームなど共通箇所
========================================= */
body {
  /* fontはcom-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: 0 auto;
  color: #442800;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

a[href^="fax:"] {
  -webkit-tap-highlight-color: transparent !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  text-decoration: none !important;
}

/*	parts  PC
共通パーツの設定
------------------------------------ */
a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}

/* 横幅480px以内で改行したくないときにspanにクラスをつけて使う */
.br {
  display: inline-block;
}

.over {
  overflow: hidden;
}

.fle {
  display: flex;
}

.fle-between {
  justify-content: space-between;
}

.fle-around {
  justify-content: space-around;
}

.fle-center {
  justify-content: center;
}

/* =========================================
  header  PC
  ヘッダー部分（MV含む）のcss
========================================= */
/*	headline  PC
ロゴ、ヘッダーナビ、ヘッダーリンク等
------------------------------------ */
#header {
  width: 100%;
}
#header .ent-headline {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
#header .ent-logo-link {
  display: flex;
}
#header .headline {
  width: 100%;
  padding: 20px 3.125vw;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media screen and (max-width: 1350px) {
  #header .headline {
    padding: 20px 10px;
  }
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1270px) {
  #header .logo {
    width: 220px;
  }
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .current {
  color: #a1c398 !important;
}
#header .contact {
  text-align: center;
  margin-left: 1.5vw;
}
#header .contact-txt {
  display: block;
  width: 272px;
}
#header .line {
  margin: 8px auto 0;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 25px;
}
@media screen and (max-width: 1350px) {
  #gnav .list-item:nth-of-type(n + 2) {
    margin-left: 20px;
  }
}
#gnav .list-link {
  padding-left: 15px;
  color: #442800;
  position: relative;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
}
#gnav .list-link::after {
  transition: transform 0.3s ease;
}
#gnav .list-link:hover::after {
  transform: translate(5px, -50%);
}
#gnav .list-link::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1150px) {
  #gnav .list-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1150px) and (max-width: 767px) {
  #gnav .list-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#gnav .list-link::after {
  width: 6px;
  height: 10px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background: url(/img/all/nav-arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv {
  padding-top: 120px;
}
#top-mv .mv {
  position: relative;
  width: 100%;
  height: 42.1vw;
  background: url(/img/all/mv.jpg) no-repeat center/cover;
}
#top-mv .mv-ttl {
  position: absolute;
  width: 38.6vw;
  left: 8.3vw;
  bottom: 9.47vw;
}
#top-mv .mv-ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 40px;
  bottom: 50px;
  z-index: 99;
}
@media screen and (max-width: 1350px) {
  .fixed {
    right: 20px;
  }
}
.fixed-page {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a1c398;
  outline: 1px solid #fff;
  outline-offset: -4px;
  border-radius: 50%;
  transition: 0.3s ease;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .ent-copy {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #442800;
}
#footer .ent-copy-txt {
  letter-spacing: 0.06em;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}
#footer .ent-copy-link {
  color: #fff;
}
#footer .current {
  color: #68935c !important;
}
#footer .container {
  gap: 30px;
}
@media screen and (max-width: 1330px) {
  #footer .logo {
    width: 300px;
  }
}
#footer .address {
  margin-top: 25px;
}
#footer .link-list {
  gap: 30px;
  margin-top: 25px;
}
#footer .link-list-btn {
  transition: all 0.3s ease;
}
#footer .link-list-btn:hover {
  transform: scale(0.95);
}
@media screen and (max-width: 1330px) {
  #footer .box {
    margin-right: 120px;
  }
}
#footer .nav {
  padding: 20px 30px;
  background-color: #f3f4ee;
  border-radius: 10px;
}
#footer .list:nth-of-type(n + 2) {
  margin-top: 10px;
}
#footer .list-item {
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #footer .list-item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 15px;
  padding-left: 18px;
  position: relative;
}
#footer .list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
}
#footer .list-item:nth-of-type(n + 2)::before {
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #a1c398;
  border-radius: 50%;
}
#footer .list-link {
  color: #442800;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #a1c398;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .copy {
  text-align: right;
  margin-top: 24px;
  font-size: 12px;
  font-size: 1.2rem;
}
#footer .copy-link {
  color: #442800;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv {
  padding-top: 120px;
}
#sv .sv {
  width: 100%;
  padding: 30px 0 50px;
  position: relative;
}
#sv .sv-img {
  width: 1020px;
  height: 420px;
  margin-left: auto;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  #sv .sv-img {
    width: 68vw;
  }
}
@media screen and (min-width: 1921px) {
  #sv .sv-img {
    width: 53.1vw;
  }
}
#sv .sv-ttl {
  position: absolute;
  letter-spacing: 0.06em;
  padding: 3px 48.5px;
  top: 177px;
  left: calc(50% - 540px);
  color: #fff;
  background: url(/img/sv/sv-ttl-bg.jpg) left top;
  border-radius: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-child {
  background: url(/img/sv/sv-child.jpg) no-repeat center/cover;
}
#sv .sv-growth {
  background: url(/img/sv/sv-growth.jpg) no-repeat center/cover;
}
#sv .sv-climacteric {
  background: url(/img/sv/sv-climacteric.jpg) no-repeat center/cover;
}
#sv .sv-fee {
  background: url(/img/sv/sv-fee.jpg) no-repeat center/cover;
}
#sv .sv-news {
  background: url(/img/sv/sv-news.jpg) no-repeat center/cover;
}
#sv .sv-site {
  background: url(/img/sv/sv-site.jpg) no-repeat center/cover;
}
#sv .sv-privacy {
  background: url(/img/sv/sv-privacy.jpg) no-repeat center/cover;
}
#sv .sv-error {
  background: url(/img/sv/sv-error.jpg) no-repeat center/cover;
}
#sv .sv-contact {
  background: url(/img/sv/sv-contact.jpg) no-repeat center/cover;
}
#sv .sv-complete {
  background: url(/img/sv/sv-complete.jpg) no-repeat center/cover;
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    height: 25px;
    padding: 0 2%;
  }
}
.breadcrumb .bread-inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 20px;
  margin: auto;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:nth-of-type(3) {
  display: inline;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb li,
.breadcrumb a {
  color: #a1c398;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #442800;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #442800;
}

/* =========================================

  layout  SP
  共通パーツのスマホ時css
========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
  ------------------------------------ */
  .com-inner,
  .bread-inner {
    width: 100% !important;
  }
  .breadcrumb {
    display: none;
  }
  /* =========================================
  header  SP
  ========================================= */
  /*	headline  SP
  ------------------------------------ */
  #header .ent-headline {
    height: 70px;
  }
  #header .ent-logo-link {
    width: 250px;
  }
  #header .headline {
    height: 70px;
    padding: 0 10px;
  }
  #header .logo {
    width: 200px;
    padding: 13px 5px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv {
    padding-top: 70px;
  }
  #top-mv .mv {
    height: 100vw;
    max-height: 400px;
    min-height: 350px;
    background: url(/img/all/mv.jpg) no-repeat calc(100% + 85px) bottom/cover;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  /*	gnav-add  SP
  ------------------------------------ */
  /* --- info系 --- */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (min-width: 400px) {
  #top-mv .mv {
    background: url(/img/all/mv.jpg) no-repeat calc(100% + 60px) bottom/cover;
  }
}
@media screen and (max-width: 767px) {
  #top-mv .mv-ttl {
    width: 85.7vw;
    min-width: 300px;
    max-width: 342px;
    left: 10px;
    bottom: 0px;
  }
}
@media screen and (max-width: 767px) and (min-width: 400px) {
  #top-mv .mv-ttl {
    transform: translateX(-50%);
    left: 45%;
  }
}
@media screen and (max-width: 767px) {
  .fixed {
    right: 20px;
    bottom: 45px;
  }
  .fixed-page {
    width: 65px;
    height: 65px;
    padding: 20px;
  }
  .fixed-page:hover {
    transform: unset;
  }
  .hamburger-drawer {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .hamburger-drawer-icon {
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  .hamburger-drawer-line {
    fill: none;
    stroke: #a1c398;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 60 60;
  }
  .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer.active .hamburger-drawer-line {
    stroke: #a1c398;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .nav {
    padding: 60px 0px 30px;
  }
  .nav-list {
    padding: 15px 15px 35px;
    background-color: #f3f4ee;
    border-radius: 20px;
  }
  .nav-list-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav-list.active .nav-list-item:nth-child(1) {
    transition-delay: 0.3s;
  }
  .nav-list.active .nav-list-item:nth-child(2) {
    transition-delay: 0.4s;
  }
  .nav-list.active .nav-list-item:nth-child(3) {
    transition-delay: 0.5s;
  }
  .nav-list.active .nav-list-item:nth-child(4) {
    transition-delay: 0.6s;
  }
  .nav-list.active .nav-list-item:nth-child(5) {
    transition-delay: 0.7s;
  }
  .nav-list.active .nav-list-item:nth-child(6) {
    transition-delay: 0.8s;
  }
  .nav-list.active .nav-list-item:nth-child(7) {
    transition-delay: 0.9s;
  }
  .nav-list.active .nav-list-item:nth-child(8) {
    transition-delay: 1s;
  }
  .nav-list.active .nav-list-item:nth-child(9) {
    transition-delay: 1.1s;
  }
  .nav-list.active .nav-list-item:nth-child(10) {
    transition-delay: 1.2s;
  }
  .nav-list.active .nav-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-list-link {
    position: relative;
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    color: #442800;
    text-decoration: none;
    overflow: hidden;
    border-bottom: 2px dotted #a1c398;
    background: url(/img/all/nav-arw.png) no-repeat 5px center;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10% 8vw 5%;
    width: 100%;
    height: 100%;
    background: url(/img/top/menu-bg.jpg) left top;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
    overflow-y: auto;
  }
  #drawer-menu.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .contact {
    text-align: center;
    margin: 25px auto 0;
  }
  #drawer-nav .contact-txt {
    margin: 0 auto;
  }
  #drawer-nav .mail {
    width: 260px;
    height: 50px;
    margin: 25px auto 0;
  }
  .drawer-info {
    display: flex;
    padding: 30px 15px;
    flex-direction: column;
    align-items: center;
    background-color: #f3f4ee;
    border-radius: 20px;
    /* 初期状態: 非表示 + 下方向オフセット */
    /* ドロワーが開いたとき（#drawer-menu.active）に表示させる */
  }
  .drawer-info .pcnav-info-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .drawer-info > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #drawer-menu.active .drawer-info {
    /* nav リストのアニメーションの後に順次出現させる遅延を付与 */
  }
  #drawer-menu.active .drawer-info > * {
    opacity: 1;
    transform: translateY(0);
  }
  #drawer-menu.active .drawer-info > *:nth-child(1) {
    transition-delay: 0.9s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(2) {
    transition-delay: 1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(3) {
    transition-delay: 1.1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(4) {
    transition-delay: 1.2s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(5) {
    transition-delay: 1.3s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(6) {
    transition-delay: 1.4s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(7) {
    transition-delay: 1.5s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(8) {
    transition-delay: 1.6s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(9) {
    transition-delay: 1.7s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(10) {
    transition-delay: 1.8s;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .current {
    color: #a1c398;
    border-bottom: none !important;
  }
  #footer .inner {
    padding: 50px 15px 25px;
  }
  #footer .container {
    display: block;
  }
  #footer .logo {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
  #footer .address {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #footer .link-list {
    justify-content: center;
  }
  #footer .link-list-btn {
    width: 30px;
    height: 30px;
  }
  #footer .box {
    margin-right: 0;
  }
  #footer .nav {
    width: 100%;
    margin-top: 35px;
    padding: 30px 15px;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #a1c398;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: 0;
  }
  #footer .list-sp {
    display: flex !important;
  }
  #footer .list-item {
    width: 50%;
    margin-left: 0;
  }
  #footer .list-item:first-of-type {
    width: 100%;
    border-bottom: 1px solid #a1c398;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
    border-bottom: 1px solid #a1c398;
  }
  #footer .list-item:nth-of-type(n + 2)::before {
    display: none;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #a1c398;
  }
  #footer .list-item:nth-last-of-type(2) {
    border-bottom: none;
  }
  #footer .list-item:last-of-type {
    border-bottom: none;
  }
  #footer .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 1.2;
    height: 60px;
    text-align: center;
    padding: 10px 5px;
  }
  #footer .list-link::after {
    display: none;
  }
  #footer .copy {
    text-align: center;
    margin-top: 45px;
  }
}
@media screen and (max-width: 767px) and (max-width: 425px) {
  #footer .copy {
    text-align: left;
    margin-top: 20px;
    padding-right: 70px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #sv {
    padding-top: 70px;
  }
  #sv .sv {
    padding: 20px 0;
  }
  #sv .sv-img {
    width: 90vw;
    height: 275px;
  }
  #sv .sv-ttl {
    text-align: center;
    top: unset;
    left: 20px;
    bottom: 40px;
    padding: 3px 15.5px;
  }
  #sv .sv-growth {
    background: url(/img/sv/sv-growth.jpg) no-repeat -125px center/cover;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */