@charset "UTF-8";

/*
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/


/* ============================================================
   BASE
   ============================================================ */

body {
  font-family: 'Zen Kaku Gothic New', sans-serif !important;
  font-weight: 500 !important;
  font-style: normal;
}

a {
  text-decoration: none;
}

a:hover {
  color: #351207;
}

.main {
  background-color: #fffef9;
  padding: 0;
}

.content {
  margin-top: 0;
}

.center {
  text-align: center;
}

.sp-only { display: none; }
.pc-only { display: block; }
  .sp-none {
    display: block;
  }

/* ============================================================
   LAYOUT / WRAP
   ============================================================ */

.wrap {
  width: 100% !important;
  max-width: 1400px;
  margin: 0 auto;
}

.wrap[style] {
  width: auto !important;
}


/* ============================================================
   HEADING
   ============================================================ */

/* h2 と固定ページタイトルの波線装飾を共通化 */
h2,
.koteipage-title {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

h2::after,
.koteipage-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 15px;
  width: 200px;
  background-image: url("skins/skin-template/images/nami.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.koteipage-title {
  font-size: 1.6rem;
  font-weight: bold;
}

/* 投稿ページの不要な要素を非表示 */
.page .entry-title,
.date-tags,
.page .post-date,
.page .entry-date,
.author-info,
.post-update,
.breadcrumb {
  display: none;
}

/* 投稿日は投稿ページのみ表示 */
.date-tags { display: none; }
.single-post .date-tags { 
  display: block; 
  text-align: center;

}

.single-post .post-date {
  font-size: 1rem;
}

.entry-title,
.archive-title {
  margin: 16px 0 40px;
}

.entry-content {
  margin-top: 30px !important;
}

.article-header {
  margin-top: 100px;
}


/* ============================================================
   HEADER / NAVI
   ============================================================ */

.header-container-in.hlt-top-menu .logo-header img {
  max-height: 70px;
  width: 70px;
  height: auto;
  vertical-align: middle;
}

.footer-site-logo-image {
  display: none !important;
}

#navi-in {
  margin-top: 10px;
  margin-bottom: 10px;
}

#navi-in li {
  position: relative;
  list-style: none;
  overflow: hidden;
  font-weight: 600;
  padding-top: 10px;
  margin-top: 15px;
}

/* ナビ項目の音符背景 */
#navi-in li::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('http://damp-ebino-9360.chips.jp/wordpress/wp-content/uploads/2026/03/21129-scaled.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  z-index: 1;
}

#navi-in li:nth-child(1)::before {
  filter: brightness(0) saturate(100%) invert(86%) sepia(11%) saturate(1455%) hue-rotate(187deg) brightness(101%) contrast(101%);
}
#navi-in li:nth-child(2)::before {
  filter: brightness(0) saturate(100%) invert(90%) sepia(10%) saturate(800%) hue-rotate(295deg) brightness(102%) contrast(101%);
}
#navi-in li:nth-child(3)::before {
  filter: brightness(0) saturate(100%) invert(95%) sepia(15%) saturate(500%) hue-rotate(45deg) brightness(100%) contrast(95%);
}
#navi-in li:nth-child(4)::before {
  filter: brightness(0) saturate(100%) invert(95%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(105%) contrast(101%);
}
#navi-in li:nth-child(5)::before {
  filter: brightness(0) saturate(100%) invert(85%) sepia(10%) saturate(600%) hue-rotate(205deg) brightness(95%) contrast(90%);
}

#navi-in li a {
  position: relative;
  z-index: 2;
  display: block;
  color: #333;
}


/* ============================================================
   MOBILE HEADER & HAMBURGER MENU
   ============================================================ */

/* PCでは非表示 */
.mobile-header,
.mobile-menu {
  display: none;
}

.mobile-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fffef9;
  z-index: 999;
}

.mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
}

.logo img {
  height: 40px;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #604a00;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(217, 192, 192, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 3;
}

.mobile-menu ul {
  padding: 40px;
  border-radius: 10px;
  list-style: none;
  height: 100%;
  background-color: #fffef9;
  transition: 0.5s;
}

.mobile-menu li {
  margin: 15px 0;
  text-align: center;
}

.mobile-menu a {
  font-size: 20px;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   HERO
   ============================================================ */

.hero-text {
  position: absolute;
  margin-top: 30px;
  margin-left: 10%;
  font-weight: 700;
  padding-top: 160px;
  /* padding-right: 110px; */
  background: url('https://luna-wind.com/wp-content/uploads/2026/04/logo-muji.png');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 0 10px;
  width: 40vw;
  max-width: 550px;
  min-width: 300px;
}


@media screen and (max-width: 1330px) {
  .hero-text {
    padding-top: 140px;
}

}

@media screen and (max-width: 1273px) {
  .hero-text {
    padding-top: 120px;
    margin-top: 0px;
}

.hero-btn{
  margin-top: 0px !important;

}

}


@media screen and (max-width: 1073px) {
/* .big {
    font-size: 5rem !important;
} */

.hero-text h1 {
    line-height: 51px;
}

}

@media screen and (max-width: 1018px) {
/* .big {
    font-size: 4.3rem  !important;
} */

.hero-text {
    padding-top: 115px  !important;
}

}

@media screen and (max-width: 900px) {
/* .big {
    font-size: 4.3rem !important;
} */

.hero-text {
    padding-top: 115px;
}

}

.tab-only {
    display: none;
  }



.hero-text h1 {
  font-family: sans-serif !important;
  font-size: 3rem;
  line-height: 100%;
  margin-bottom: 20px;
}

.big {
  font-size: 5rem;
}

.hero-img {
  position: static;
  padding-left: 30%;
}

.bosyu {
  position: absolute;
  z-index: 2;
  width: 270px;
  margin-left: 30px;
  margin-top: 17px;
}

.hero-btn {
  transition: transform 0.3s ease;
  margin-top: clamp(27px, 2vw, 20px);
}

.hero-btn:hover {
  transform: translateY(-3px);
  color: whitesmoke;
  transition: transform 0.3s ease;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.contact-btn {
  background-color: #a3e1fb;
  border: white solid 0px;
  width: 340px;
  height: 60px;
  font-size: 1.5rem;
  padding-top: 12px;
  margin-top: 50px;
  border-radius: 30px;
}

.section-btn,
.post-btn {
  position: relative;
  background-color: #a3e1fb;
  color: white;
  font-weight: 800;
  display: block;
  height: 55px !important;
  line-height: 54px;
  text-align: center;
  border-radius: 30px;
  transition: transform 0.3s ease;
  overflow: hidden;
  padding-bottom: 20px;
}

.section-btn {
  width: 300px;
  font-size: 1.5rem;
  margin: 20px auto 0;
}

.post-btn {
  width: 200px;
  font-size: 1.1rem;
  margin: 20px 0 0 auto;
}

.section-btn:hover,
.post-btn:hover {
  transform: translateY(-3px);
  color: whitesmoke;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about {
  margin-top: 150px;
  margin-bottom: 150px;
  text-align: center;
  background-image: url("skins/skin-template/images/about-back.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 80px;
  position: relative;
  font-size: 16px;
}

.about-img {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 100%;
}

.about-img1 {
  right: 14%;
  top: 8%;
}

.about-img2 {
  left: 11%;
  bottom: 0%;
  width: 230px;
  height: 230px;
}

.appeal {
  margin-top: 50px;
  background-size: contain;
  right: 0%;
}


/* ============================================================
   POSTS / INFORMATION
   ============================================================ */

.posts {
  margin-top: 100px;
  background-color: #ccf0ff;
  padding: 60px 0 80px;
  color: #604a00;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.post-item {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  gap: 40px;
  justify-content: center;
}

.post-item:hover {
  opacity: 0.7;
}

.post-thumbnail img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 18px;
}

.post-content {
  padding: 15px;
  width: 400px;
  color: #604a00;
}

.post-content h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.post-content p {
  font-size: 0.95em;
  color: #555;
}

.view-btn {
  text-align: right;
  margin-right: 10%;
}


/* ============================================================
   RECRUITING SECTION
   ============================================================ */

.Recruiting {
  margin-top: 150px;
  margin-bottom: 150px;
  font-size: 16px;
}

.Recruiting h2 {
  margin-bottom: 30px;
}

.Recruiting span {
  background-color: #a3e1fb;
  padding: 3px 14px 5px;
  color: #fffef9;
  border-radius: 30px;
  margin-right: 7px;
}

.Recruiting li:first-child  { margin-bottom: 10px; }
.Recruiting li:nth-child(2) { margin-bottom: 18px; }
.Recruiting li:nth-child(3) {
  margin-left: 35px;
  font-weight: normal;
  margin-bottom: 5px;
}

.Recruiting-list {
  max-width: 510px;
  margin: 20px auto 0;
  background-color: #ABD2FF;
  padding: 20px;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
}

.Recruiting-list ul {
  text-align: left;
  list-style: none;
  padding-left: 20px;
}

.Recruiting-img {
  position: absolute;
  width: 250px;
  top: -10px;
}

.Recruiting-img1 {
  right: -100px;
  width: 220px;
}

.Recruiting-img2 {
  left: -120px;
}


/* ============================================================
   SNS & CONTACT
   ============================================================ */

.sns {
  background-color: #ccf0ff;
  padding: 60px 0 90px;
  margin-bottom: 100px;
}

.contact {
  margin-bottom: 100px;
}


/* ============================================================
   CONTACT FORM (CF7)
   ============================================================ */

.wpcf7 form {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ABD2FF;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  transition: 0.3s;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #7BB9FF;
  box-shadow: 0 0 6px rgba(171, 210, 255, 0.7);
}

.wpcf7 input[type="submit"] {
  background-color: #ABD2FF;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #7BB9FF;
  transform: translateY(-2px);
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 10px 15px;
  border: 2px solid #ABD2FF;
  border-radius: 6px;
  background: #f8fbff;
  color: #333;
  font-size: 15px;
}

.wpcf7 label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.wpcf7-form-control-wrap::after {
  color: #ABD2FF;
}


/* ============================================================
   SINGLE POST
   ============================================================ */

.single-post .entry-header,
.single-post .entry-content {
  text-align: center;
}

.single-post .entry-header img,
.single-post .entry-content img,
.eye-catch {
  margin: 0 auto;
  display: block;
  max-width: 60vw;
}


/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp.inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}


/* ============================================================
   RESPONSIVE — 834px以下
   ============================================================ */

@media screen and (max-width: 834px) {
    .tab-only {
    display: none;
  }

  main.main,
  div.sidebar {
    padding: 0;
  }

  /* 検索ボタン非表示 */
  .search-menu-button,
  .menu-button.search-menu-button,
  .header-search-button,
  .mobile-header-menu-buttons li[class*="search"] {
    display: none !important;
  }

  .mobile-header-menu-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-header-menu-buttons .logo-menu-button {
    order: 1;
    margin-right: auto;
  }

  .mobile-header-menu-buttons .navi-menu-button {
    order: 2;
    margin-left: auto;
  }

  .navi-menu-button {
    margin-left: auto;
  }

  .my-hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .my-hamburger span {
    height: 3px;
    background: #000;
    display: block;
    transition: 0.3s;
  }

  .header-site-logo-image {
    display: none;
  }

}

/* ============================================================
   RESPONSIVE — 1023px以下（スマホ）
   ============================================================ */


  @media screen and (max-width: 1024px) {


  /* モバイルヘッダー表示 */
  .mobile-header {
    display: block;
    background-color: #fffef9;
  }

  .mobile-menu { display: none; }
  .mobile-menu.active { display: block; }

  /* ハンバーガーアイコン（モバイル用） */
  .my-hamburger {
    display: inline-block;
    width: 26px;
    height: 18px;
    position: relative;
  }

  .my-hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #604a00;
    left: 0;
  }

  .my-hamburger span:nth-child(1) { top: 0; }
  .my-hamburger span:nth-child(2) { top: 8px; }
  .my-hamburger span:nth-child(3) { bottom: 0; }

  /* ナビ */
  #navi-in {
    margin-top: 0;
  }

  .tab-only {
    display: block;
  }

  .tab-none {
    display: none;
  }



}





/* ============================================================
   RESPONSIVE — 768px以下（スマホ）
   ============================================================ */

@media screen and (max-width: 768px) {

    /* スマホ表示切替 */
  .sp-only { display: block; }
  .pc-only { display: none; }
  .tab-only {
    display: none;
  }


    /* ヒーロー */
  .hero {
    margin-top: 0px;
  }

  .hero-text {
    background: none !important;
  }

  .hero-img {
    height: auto;
    position: static;
    margin-left: 0;
    width: 100vw;
    padding-left: 0;
  }

  .sp-hero-img {
    position: relative;
  }



  /* About */
  .about {
    margin-top: 50px;
    margin-bottom: 150px;
    padding: 80px 50px 0;
    height: auto;
    background-image: none;
  }

  .about .content {
    text-align: left;
  }

  .about-img1,
  .about-img2 {
    width: 0;
    height: 0;
  }

  /* 投稿一覧 */
  .post-item {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }

  .post-thumbnail img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

    .post-content {
        padding: 15px 30px;
        width: 100%;
    }


  .post-btn {
    margin: 20px auto;
  }

  .view-btn {
    text-align: right;
    margin-right: 0;
  }

  /* Recruiting */
  .Recruiting {
    padding: 0 30px;
  }

  .Recruiting p {
    text-align: left;
  }

  .Recruiting li {
    text-align: center;
  }

  .Recruiting li:nth-child(3) {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .Recruiting span {
    line-height: 3rem;
  }

  .Recruiting-list {
    max-width: 95%;
    padding-left: 0;
    text-align: center;
  }

  .Recruiting-img {
    display: none;
  }

  /* 投稿記事 */
  .single-post .entry-header img,
  .single-post .entry-content img,
  .eye-catch {
    max-width: 90vw;
  }
}

@media screen and (max-width: 500px) {

    .sp-left {
    text-align: left;
  }

  .entry-content {
    text-align: left !important;
    margin: 10px 20px;

}
}

@media screen and (max-width: 375px) {

  .sp-none {
    display: none;
  }
}