@charset "UTF-8";

/* ===== リセット ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x:hidden;
}
body {
  font-family: 
  "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #444;
  line-height: 1.8;
  /* ページ遷移用エフェクト */
  opacity: 1;
  transition: opacity 0.5s ease;
}
html.is-transitioning body {
  /* ページ遷移用エフェクト */
  opacity: 0;
}
img {
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}
a img {
  display:block;
}
a {
  color: #FF7F00;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
}
	button {
	  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  width: 100%;
  height: 86px;
  background: #FFF;
  z-index: 100;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .3);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  flex-shrink: 0;
}
.site-logo img {
  width: clamp(210px, 20vw, 258px);
  height: auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

@media (min-width:769px) {
  .header-actions.sp {
    display:none;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 60px;
  }
  .header-actions {
    width: 100%;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .header-actions.pc {
    display: none;
  }
  .header-actions.sp {
    display: flex;
    max-width: 260px;
    margin: 32px auto 0;
  }
  .header-actions .btn {
    width: 80%;
    max-width: 260px;
  }
	.btn--download.btn--header {
		display: block;
	}
}

/* ===== グローバルナビ ===== */
.global-nav {
  flex-shrink: 0;
  margin-left: auto;
}
.global-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
}
.global-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: #444;
  text-decoration: none;
}
.global-nav__icon {
  width: auto;
  height: 25px;
  transition: transform .6s ease;
}
.global-nav__item:hover .global-nav__icon {
  transform: rotateY(360deg);
}

@media (max-width: 768px) {
  .global-nav {
    position: fixed;
    inset: 0;
    background: #C4E397;
    z-index: 999;
    padding: 60px 20px 20px;
    overflow-y: auto;
    clip-path: circle(0% at calc(100% - 24px) 33px);
    transition: clip-path .6s ease-in-out;
  }
  .global-nav.is-open {
    clip-path: circle(150% at calc(100% - 24px) 33px);
  }
  .global-nav__list {
    display: block;
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
  }
  .global-nav__list > li {
    display: block;
    width: 100%;
    text-align: left;
  }
  .global-nav__list > li:last-child {
    margin-bottom: 0;
  }
  .global-nav__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 30px;
    margin-bottom: 18px;
    text-align: left;
    text-decoration: none;
    color: #444;
    gap: 0;
  }
  .global-nav__icon {
    width: auto;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .global-nav__text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* SPでは回転演出を止める */
  .global-nav__item:hover .global-nav__icon {
    transform: none;
  }
}

/* 「園での生活」ドロップダウンメニュー（PC） */
.has-dropdown {
  position:relative;
}
.dropdown-menu {
  background:#fff;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(170,170,170,.5);
  min-width: 180px;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
}
.dropdown-menu li {
  text-align:center;
}
.dropdown-menu li + li {
  border-top: 1px dashed #AAA;
}
.dropdown-menu li a {
	display: block;
  font-size:14px;
	color: #444;
  text-align: left;
  padding: 10px 10px 10px 20px;
	text-decoration: none;
  transition: .5s ease;
}

@media (min-width:769px) {
  .dropdown-menu {
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    margin-top:10px;
  }
  .has-dropdown.is-open .dropdown-menu {
    opacity:1;
    visibility:visible;
  }
  .dropdown-menu li a:hover {
    background: #C4E397;
  }
  .dropdown-menu li:first-child a:hover {
    border-radius: 12px 12px 0 0;
  }
  .dropdown-menu li:last-child a:hover {
    border-radius: 0 0 12px 12px;
  }
}

/* 「園での生活」アコーディオン（SP） */
@media (max-width: 768px) {
  .has-dropdown {
    position: static;
    margin-bottom: 8px;
  }
  .has-dropdown > .global-nav__item {
    margin-bottom: 0;
  }
  .has-dropdown .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 12px;
    background: #f3f3f3;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,.12);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transition: max-height .35s ease, padding .35s ease;
  }
  .has-dropdown.is-open .dropdown-menu {
    max-height: 320px;
  }
  .dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .dropdown-menu li + li {
    border-top: 1px dashed #ccc;
  }
  .dropdown-menu a {
    display: block;
    font-size: 14px;
    color: #444;
    padding: 14px 20px;
    text-decoration: none;
  }
}

/* 3つのボタン */
.btn {
  width: 130px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #fff;
  padding: 6px 0;
  text-decoration: none;
  transition: .5s ease;
}
.btn__icon {
  height: 20px;
  width: auto;
}
.btn--recruit {
  background: #FBCE00;
  color: #444;
}
.btn--contact {
  background: #339900;
}
.btn--download {
  background: #FFA64D;
}

@media (min-width: 769px) {
  .btn--recruit:hover {
    background: #F5B801;
  }
  .btn--contact:hover {
    background: #216400;
  }
  .btn--download:hover {
    background: #FD7E00;
  }
}
@media (max-width: 768px) {
  .btn {
    width: 200px;
    font-size: 15px;
    padding: 8px 0;
  }
}

/* ハンバーガーメニュー */
.menu-toggle {
  display: none;
}

@media (max-width:768px) {
  .menu-toggle {
	  position: absolute;
	  top: 50%;
	  right: 0;
	  transform: translateY(-50%);
    display:block;
    width: 44px;
    height: 44px;
    z-index: 9999;
  }
  .menu-toggle__bars,
  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    content: "";
    display: block;
    width: 22px;
    height: 3px;
    background: #390;
    border-radius: 999px;
    position: relative;
    transition: transform .4s ease, opacity .3s ease;
  }
  .menu-toggle__bars::before {
    position: absolute;
    top: -8px;
  }
  .menu-toggle__bars::after {
    position: absolute;
    top: 8px;
  }

  /* ×状態 */
  .menu-toggle.is-active .menu-toggle__bars {
    background-color: transparent;
  }
  .menu-toggle.is-active .menu-toggle__bars::before {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.is-active .menu-toggle__bars::after {
    transform: translateY(-8px) rotate(-45deg);
  }
}


/* ===== トップメインビジュアル ===== */
.hero {
  position: relative;
  overflow: hidden;
  height: 600px;
  margin: 86px 0 0;
  /* SVGマスク */
  -webkit-mask-image: url("../img/common/hero-mask.svg");
  mask-image: url("../img/common/hero-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 110% 100%;
  mask-size: 110% 100%;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__catch {
  color: #FFF;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
	padding-bottom: 60px;
  line-height: 1.6;
  text-shadow:
    0 2px 6px rgba(0,0,0,.5),
    0 0 12px rgba(0,0,0,.4);
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
    -webkit-mask-size: 120% 100%;
    mask-size: 120% 100%;
    margin: 60px 0 0;
  }
  .hero__img {
    transform: scale(1.2);
  }
  .hero__content {
    align-items: flex-end;
    justify-content: center;
  }
  .hero__catch {
    font-size: 25px;
    text-align: center;
  }
}


/* ===== フッター ===== */
.site-footer {
  position: relative;
  background-color: #C4E397;
  margin: 300px 0 0;
}
.footer-curve {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}
.footer-inner {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.footer-character {
  position: absolute;
  top: -84px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 80px;
}
.footer-body {
  background: #C4E397;
  padding: 0 0 20px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-buttons {
  display: flex;
  gap: 12px;
}
.btn--footer {
  width: 160px;
}
.sns-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.sns-wrap.sp {
  display: none;
}
.sns-wrap a {
  margin-right: 10px;
}
.sns-wrap a:last-child {
  margin-right: 0;
}
.sns-wrap img {
  width: 40px;
  height: 40px;
}
.footer-nav {
  margin-top: 24px;
}
.footer-nav__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav__row li {
  margin-right: 15px;
}
.footer-nav__row li:last-child {
  margin-right: 0;
}
.footer-nav a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}
.footer-info {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.footer-nav-sub {
  margin-bottom: 30px;
}
.footer-nav-sub ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav-sub ul li:not(:last-child) {
  margin-right: 5px;
}
.footer-nav-sub ul li:first-child::after {
  content: "｜";
  margin-left: 5px;
}
.footer-nav-sub a {
  font-size: 14px;
  color: #216400;
  text-decoration: none;
}
.footer-logo {
  margin-right: 40px;
}
.footer-address {
  margin-right: 15px;
}
.footer-tel a {
  text-decoration: none;
}
.footer-copy {
  font-size: 14px;
  margin-bottom: 5px;
  position: relative;
  padding-top: 15px;
  line-height: 1;
}
.footer-copy::before {
  content:"";
  display:block;
  width:80px;
  height:3px;
  background:#9ED152;
  margin:0 auto 20px;
}

@media (min-width: 769px) {
  .footer-nav a:hover {
    color: #FF7F00;
  }
  .footer-nav-sub a {
    color: #216400;
    text-decoration: underline;
  }
  .footer-nav-sub a:hover {
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .footer-body {
    padding: 10px 0 20px;
  }
  .site-footer {
    margin: 200px 0 0;
  }
  .btn--footer {
    width: 200px;
  }
  .footer-buttons {
    flex-direction: column;
  }
  .footer-buttons:not(:last-of-type) {
    margin: 0 0 10px;
  }
  .footer-character {
    top: -73px;
    height: 60px;
  }
  .footer-info {
    flex-direction: column;
  }
  .footer-logo {
    margin: 0;
  }
  .footer-address {
    margin: 10px 0 0;
  }
  .footer-tel {
    margin: 0;
  }
  .sns-wrap.sp {
    display: flex;
    margin-top: 30px;
  }
}


/* ===== フッターバナー ===== */
#banner_area {
  background:#FFFFE1;
  padding:30px;
}
.footer-banner {
  display:flex;
  justify-content:center;
  align-items:center;
}
.footer-banner a {
  margin-right:20px;
  transition: .5s ease;
}
.footer-banner a:last-child {
  margin-right:0;
}
.footer-banner img {
  width:230px;
  height:auto;
}

@media (min-width:481px) {
  .footer-banner a:hover {
    opacity: .7;
  }
}

@media (max-width:480px) {
  .footer-banner {
    flex-direction:column;
  }
  .footer-banner a {
    margin-right:0;
    margin-bottom:20px;
  }
  .footer-banner a:last-child {
    margin-bottom:0;
  }
}


/* ===== 共通：その他 ===== */
/* 電話番号リンク制御 */
a[href^="tel:"] {
  color:#444;
  text-decoration: none;
}
@media (min-width: 481px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/* 改行 */
.br_hid {
  display: none;
}
.br_hid_r {
  display: block;
}
@media (max-width:768px) {
  .br_hid {
    display: block;
  }
  .br_hid_r {
    display: none;
  }
}

/* レイアウト共通 */
.l-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* トップ：見出し装飾 */
.section-heading {
  position: relative;
  display: inline-block;
}
.section-heading__jp {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(24px, 3.5vw, 40px);
}
.section-heading__en {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
}
.section-heading__icon {
  position: absolute;
  width: 60px;
  height: 60px;
}
.section-heading__icon--right {
  top: -18px;
  right: -70px;
}
.section-heading__icon--left {
  top: -18px;
  left: -70px;
}

@media (max-width: 768px) {
  .section-heading__icon {
    width: 40px;
    height: auto;
  }
  .section-heading__icon--right {
    top: -20px;
    right: -50px;
  }
  .section-heading__icon--left {
    top: -20px;
    left: -50px;
  }
}


/* ===== トップコンテンツ ===== */
/* トップ：イントロ */
.intro {
  text-align: center;
  padding: 80px 0 150px;
}
.intro-flex {
  display: flex;
  gap: 60px;
  align-items: center;
  margin: 60px 0 100px;
}
.intro-image {
  flex: 1;
}
.intro-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
}
.intro-text {
  flex: 1;
  text-align: left;
}
.intro-character {
  width: 180px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}
.intro-text p:not(:last-child) {
  margin-bottom: 20px;
}
.intro .section-heading__jp {
  display: flex;
  align-items: center;
}
.intro .section-heading__jp span {
  font-size: 20px;
}
.philosophy-heading {
  margin-top: 40px;
}
.intro-philosophy {
  margin-top: 60px;
}
.intro-philosophy ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}
.intro-philosophy li {
  margin-bottom: 16px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .intro {
    padding: 40px 0 80px;
  }
  .intro .section-heading__jp {
    flex-direction: column;
  }
  .intro .section-heading__jp span {
    font-size: 18px;
  }
  .intro-flex {
    flex-direction: column-reverse;
    gap: 20px;
    margin: 30px 0 60px;
  }
  .intro-image img {
    max-width: 100%;
  }
  .intro-character {
    width: 140px;
    margin: 0 auto 20px;
  }
  .intro-philosophy {
    margin-top: 30px;
  }
}

/* トップ：園のご案内 */
.about-section {
  position: relative;
  background-color: #C9EFC1;
  padding: 50px 0 100px;
  z-index: 2;
}
.about-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
  z-index: 2;
}
.about-wave--top {
  top: -80px;
  transform: scaleY(-1);
}
.about-wave--bottom {
  bottom: -80px;
  transform: scale(-1,-1);
}
.about-inner {
  position: relative;
  text-align: center;
}
.about-card-list {
  display: grid;
  justify-content: center;
  margin-top: 60px;
}

@media (min-width: 769px) {
  .about-card-list {
    grid-template-columns: repeat(3, minmax(280px, 360px));
    column-gap: 40px;
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 0 60px;
  }
  .about-card-list {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    column-gap: 4%;
    row-gap: 24px;
  }
}

.about-card {
  position: relative;
  width: 100%;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-radius: 12px;
}
.about-card__image {
  width: 100%;
  aspect-ratio: 8 / 8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  will-change: transform;
}
.about-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  color: #333;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.85);
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
    line-height: 1;
    font-weight: 700;
}
.about-card__icon {
  width: 26px;
  height: auto;
  flex-shrink: 0;
}

/* hover時の画像拡大 */
@media (hover:hover) and (pointer: fine) {
  .about-card:hover .about-card__image {
    transform: scale(1.08);
  }
}

.image-about-01 {
  background-image: url('../img/common/about_image_01.jpg');
}
.image-about-02 {
  background-image: url('../img/common/about_image_02.jpg');
}
.image-about-03 {
  background-image: url('../img/common/about_image_03.jpg');
}
.image-about-04 {
  background-image: url('../img/common/about_image_04.jpg');
}
.image-about-05 {
  background-image: url('../img/common/about_image_05.jpg');
}
.image-about-06 {
  background-image: url('../img/common/about_image_06.jpg');
}
/* 画像の位置調整 */
.image-about-03 {
  background-position: left center;
}
.image-about-05 {
  background-position: -60px top;
}
.about-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.about-deco--left {
  top: 60px;
  left: 20px;
  width: 80px;
}
.about-deco--right {
  bottom: -75px;
  right: 0;
  width: 68px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-deco--left {
    top: 30px;
    width: 120px;
  }
  .about-deco--right {
    bottom: 30px;
    width: 140px;
  }
}

@media (max-width: 768px) {
  .about-card__title {
    font-size: 18px;
    padding: 10px 10px;
  }
  .about-card__icon {
    width: 20px;
  }
  .about-deco--left {
    top: 40px;
    width: 60px;
  }
  .about-deco--right {
    bottom: -60px;
    width: 50px;
  }
}

/* トップ：子育て支援 */
.support-section {
  padding: 150px 0 160px;
  background-image: url("../img/common/bg_top_kosodate.png");
  background-repeat: repeat;
}
.support-inner {
  text-align: center;
}
.support-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
}
.support-wave--bottom {
  bottom: -80px;
}

@media (max-width: 768px) {
  .support-section {
    padding: 100px 0;
  }
  .support-text {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* トップ：子育て支援 */
.support-map {
  position: relative;
  max-width: 720px;
  margin: 60px auto 0;
}
.support-map__image {
  width: 100%;
  height: auto;
  display: block;
}
.support-hit {
  position:absolute;
  border-radius:50%;
  cursor:pointer;
  background:transparent;
}
.hit-baby {
  width: 29%;
  height: 26%;
  top: 14%;
  left: 5%;
  border-radius: 50%;
}
.hit-temp {
  width: 29%;
  height: 24%;
  top: 1%;
  left: 35%;
  border-radius: 50%;
}
.hit-child {
  width: 30%;
  height: 25%;
  top: 17%;
  right: 5%;
  border-radius: 50%;
}
.hit-hiroba {
  width: 28%;
  height: 24%;
  bottom: 31%;
  left: 8%;
  border-radius: 50%;
}
.hit-tsuen {
  width: 29%;
  height: 23%;
  bottom: 18%;
  left: 35%;
  border-radius: 50%;
}
.hit-pre {
  width: 29%;
  height: 25%;
  bottom: 31%;
  right: 8%;
  border-radius: 50%;
}

@media (hover:hover) {
  .support-hit:hover {
    outline: 3px solid rgba(255, 180, 0, 0.6);
    outline-offset: -3px;
  }
  .support-hit:hover {
    outline: none;
  }
}

.support-deco {
  position: absolute;
  width: 98px;
  height: 70px;
  pointer-events: none;
}
.support-deco--left {
  left: -60px;
  top: 38%;
}
.support-deco--right {
  right: -60px;
  top: 14%;
}

@media (max-width: 768px) {
  .support-deco {
    height: 50px;
    width: auto;
  }
  .support-deco--left {
    left: 18%;
    top: -8%;
  }
  .support-deco--right {
    right: 18%;
    top: -8%;
  }
}

/* トップ：子育て支援 こども誰でも通園制度 */
.tsuen {
  margin: 60px auto 0;
  text-align: center;
}
.tsuen-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #9ED152;
  border-radius: 12px;
}
.tsuen-title {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 999px;
  margin-bottom: 24px;
}
.tsuen-title img {
  display: block;
  width: 100%;
  max-width: 314px;
  height: auto;
  margin: 0 auto;
}
.tsuen-text {
  color: #fff;
  margin: 0 0 32px;
  text-align: left;
}
.tsuen-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  font-size: 16px;
  color: #FFF;
  padding: 15px 10px;
  background: #FF9C39;
  text-decoration: none;
  border-radius: 999px;
  transition: .5s ease;
}
.tsuen-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: translateY(-50%) rotate(45deg);
  transition: .5s ease;
}
.tsuen-btn:hover {
  color: #FF7F00;
  background: #FFF;
}
.tsuen-btn:hover::after {
  border-top: 2px solid #FF7F00;
  border-right: 2px solid #FF7F00;
}

@media (max-width: 768px) {
  .tsuen {
    margin-top: 40px;
  }
  .tsuen-box {
    padding: 30px 25px;
  }
  .tsuen-text {
    font-size: 15px;
  }
}

/* トップ：行事・イベント報告 */
.event-section {
  position: relative;
  background: #ffffff;
  padding: 50px 0 100px;
}
.event-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
}
.event-wave--top {
  top: -80px;
  transform: scaleY(-1);
}

@media (max-width: 768px) {
  .event-section {
    padding: 20px 0 80px;
  }

  .support-text {
    font-size: 15px;
    line-height: 1.9;
  }
}

.event-sns {
  text-align: center;
}
.event-sns .section-heading {
  display: inline-block;
  margin: 0;
  text-align: center;
}
.sns-block {
  width: 100%;
  max-width: 1100px; /* 280*4 + 20*3 = 1180 */
  margin-top: 30px;
  text-align: left;
}
.sns-title {
  font-size: 24px;
  color: #444;
  position: relative;
  margin: 0 0 15px;
}
.sns-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #339900;
  margin: 5px 0 0;
}
/* プラグイン使用時不要
.sns-list {
  display: flex;
  flex-wrap: nowrap;
}
*/
.sns-list .item {
  margin-right: 20px;
}
.sns-list .item:last-child {
  margin-right: 0;
}
.sns-list img {
  width: 280px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.sns-more {
  margin-top: -6px;
  text-align: right;
}

@media (min-width: 769px) {
  /* Instagram：左寄せ */
  .sns-block--instagram {
    margin-left: 0;
    margin-right: auto;
  }
  .sns-block--tiktok {
    margin-left: auto;
    margin-right: 0;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .sns-block {
    margin-top: 20px;
  }
  .sns-block--instagram,
  .sns-block--tiktok {
    margin-left: 0;
    margin-right: 0;
  }
  .sns-block--tiktok {
    margin-top: 10px;
  }
	/* プラグイン使用時不要
  .sns-list {
    flex-wrap: wrap;
  }
	*/
  .sns-list .item {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .sns-list .item:nth-child(2n) {
    margin-right: 0;
  }
  .sns-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
	.sns-more {
    margin-top: -5px;
  }
}

/* トップ：採用情報 */
.recruit-section {
  margin: 70px auto 160px;
}
.recruit-box {
  margin: 0 auto;
  background: #FBCE00;
  padding: 15px 40px 15px 60px;
  border-radius: 20px;
  position: relative;
}
.recruit-flower {
  position: absolute;
  top: -60px;
  left: 20px;
  width: 100px;
}
.recruit-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.recruit-textarea {
  width: 45%;
  color: #684C14;
  display: flex;
  flex-direction: column;
}
.recruit-heading {
  text-align: center;
  margin: 20px 0 10px;
}
.recruit-title {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.recruit-title h2 {
  font-size: 40px;
  margin: 0;
  line-height: 1.2;
}
.recruit-title .note {
  position: absolute;
  top: -10px;
  transform: none;
}
.note-left {
  width: 28px;
  left: -50px;
}
.note-right {
  width: 36px;
  right: -54px;
}
.recruit-en {
  font-size: 18px;
  margin: 0;
  line-height: 1;
}
.recruit-text {
  margin: 30px 0;
}
.recruit-textarea .recruit-btn {
  align-self: center;
}
.recruit-btn {
  background: #339900;
  color: #fff;
}
.recruit-btn::after {
  border-color: #fff;
}
.recruit-images {
  position: relative;
  width: 500px;
  height: 350px;
  flex-shrink: 0;
}
.recruit-images img {
  border-radius: 12px;
}
.img-top {
  position: absolute;
  bottom: -60px;
  right: -150px;
  width: 100%;
  max-width: 360px;
  z-index: 2;
}
.img-bottom {
  position: absolute;
  top: -60px;
  right: 0;
  width: 100%;
  max-width: 500px;
  z-index: 1;
}
.recruit-sp-image {
  display: none;
}

@media (max-width: 768px) {
  .recruit-section {
    margin: 0;
  }
  .recruit-section.l-container {
    max-width: 100%;
    padding: 0;
  }
  .recruit-box {
    max-width: 100%;
    padding: 30px 20px;
    border-radius: 0;
  }
  .recruit-flower {
    top: -48px;
    left: 20px;
    width: 80px;
  }
  .recruit-inner {
    flex-direction: column;
  }
  .recruit-textarea {
    width: 100%;
    text-align: center;
  }
  .recruit-heading {
    margin-bottom: 0;
  }
  .recruit-title h2 {
    font-size: 28px;
  }
  .note-left {
    left: -50px;
    top: -6px;
  }
  .note-right {
    right: -60px;
    top: -6px;
  }
  .recruit-text {
    text-align: left;
  }
  .recruit-images {
    display: none;
  }
  .recruit-sp-image {
    display: block;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
  }
  .recruit-sp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
}


/* ===== 404 ===== */
.notfound-text {
  margin: 60px 0 0;
	text-align: center;
}
.notfound-text .link-top {
	display: block;
  margin-top: 30px;
}
.link-top:hover {
	text-decoration: none;
}


/* ===== 下層共通 ===== */
/* 背景 */
.lower-page {
  background: url("../img/common/bg_lower.jpg") repeat;
}

/* コンテナ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ページタイトル（hero上のサークル） */
.hero--lower-title {
  position: relative;
  min-height: 420px;
  margin-bottom: 0;
}
.hero--lower-title .hero__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.page-title {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  text-align: center;
}
.page-title__heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.page-title__icon {
  width: auto;
  height: 40px;
}
.page-title__jp {
  font-size: 38px;
  color: #1D5900;
  font-weight: 700;
  margin: 8px 0 2px 0;
}
.page-title__en {
  font-size: 18px;
  color: #1D5900;
  font-weight: 500;
}

/* h2 */
.lower-heading {
  padding-top: 40px;
}
.lower-heading__title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  color: #1D5900;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.lower-heading__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #1D5900;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hero--lower-title {
    min-height: 300px;
  }
  .page-title {
    width: 200px;
    height: 200px;
  }
  .page-title__icon {
    width: 34px;
  }
  .page-title__jp {
    font-size: 24px;
  }
  .page-title__en {
    font-size: 14px;
  }
  .lower-heading__title {
    font-size: 28px;
  }
}

/* h3 */
.lower-h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  color: #1D5900;
  font-weight: 700;
  line-height: 1.4;
}
.lower-h3::before {
  content: "";
  width: 30px;
  height: 4px;
  background: #1D5900;
  border-radius: 999px;
  flex-shrink: 0;
}
.lower-h3 span {
  font-size: 20px;
  color: #1D5900;
  margin-left: -15px;
}

@media (max-width: 768px) {
  .lower-h3 {
    font-size: 22px;
    gap: 10px;
  }
  .lower-h3::before {
    width: 20px;
  }
  .lower-h3 span {
    font-size: 18px;
  }
  .lower-h3__sub {
    font-size: 16px;
  }
}

.lower-h4 {
  font-size: 24px;
  color: #1D5900;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.5;
}

@media (max-width:768px) {
  .lower-h4 {
    font-size: 20px;
  }
}

/* お問い合わせ */
.contact-lower {
  margin:80px 0;
}
.contact-lower__box {
  max-width:1000px;
  width:100%;
  margin:0 auto;
  background:#FFFFE6;
  border-radius:12px;
  padding: 30px;
  border:2px dashed #CFCFCF;
  text-align:center;
}
.contact-lower__title {
  font-size:28px;
  color:#339900;
  margin:0 0 30px;
}
.contact-lower__text p {
  margin-bottom: 15px;
}
.contact-lower__text .hosoku {
  font-size:14px;
  margin-top: 0;
}

@media (max-width:768px) {
  .contact-lower {
    margin:60px 0;
  }
  .contact-lower__box {
    padding:20px;
  }
  .contact-lower__title {
    font-size:22px;
    margin:0 0 20px;
  }
}


/* ===== アンカーリンクの固定ヘッダーかぶり対策 ===== */
html {
  scroll-padding-top: 66px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 40px;
  }
}

/* 念のため、飛び先要素側にも設定 */
[id] {
  scroll-margin-top: 66px;
}

@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 40px;
  }
}


/* ===== Instagram フィード ===== */
#sb_instagram #sbi_images {
	padding: 0 !important;
}
.tiktok-feed__actions {
	margin: 0 !important;
}


/* ===== TikTok フィード ===== */
@media (max-width: 768px) {
	#tiktok-feed-feed-0 {
		--qligg-columns: 4 !important;
		--qligg-spacing: 10px !important;
	}
}

@media (max-width: 480px) {
	#tiktok-feed-feed-0 {
		--qligg-columns: 2 !important;
		--qligg-spacing: 10px !important;
	}
}

