@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
*/

/***********************************
Cocoonウィジェット調整用
***********************************/

li.sidebar-menu-button.menu-button {
    display: none;
	background-color: #fff;
    padding: 10px 15px;
    border: 1px solid #0066CC;
    border-right: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 5px 2.5px 2.5px gray;
	width: auto;
    height: auto;
}

span.fa.fa-outdent {
	font-size: 25px;
}

.fa-outdent:before {
	content:"\f191";
}

header.article-header.entry-header {
	position: unset;
}

footer.article-footer.entry-footer {
	background-color: #fff;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
	li.sidebar-menu-button.menu-button {
		display: inline-block;
		float: right;
		position: fixed;
		top: 85px;
		right: 0%;
		list-style: none;
		color: #0066CC;
		padding-right: 3vw;
		z-index: 50;
	}
}

/*767px以下*/
@media screen and (max-width: 767px){
}




/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*
Theme Name: LPbase-theme
*/

/* CSS Document */

/*リセット*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

a {
    text-decoration:none;
}

/*リセットここまで*/

/* リセットCSS */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	}
    
    /* 基本スタイル */
body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #fff;
	}
    
img {
	max-width: 100%;
	height: auto;
	}
    
a {
	color: inherit;
	text-decoration: none;
    }
    
    /* コンテナ */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
    }
    
    /* ヘッダー */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	border-bottom: 1px solid #eaeaea;
	background-color: #fff;
    }
    
.header-inner {
      display: flex;
      height: 5rem;
      align-items: center;
      justify-content: space-between;
    }
    
.logo {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0066CC;
    }
    
.nav {
      display: none;
    }
    
@media (min-width: 768px) {
      .nav {
        display: flex;
        gap: 2rem;
      }
    }
    
.nav-link {
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    
.nav-link:hover {
      color: #0066CC;
    }
    
.menu-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background: none;
      border: none;
      cursor: pointer;
    }
    
@media (min-width: 768px) {
      .menu-button {
        display: none;
      }
    }
    
.button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      border: none;
      border-radius: 0;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    
.button-primary {
      background-color: #0066CC;
      color: #fff;
    }
    
.button-primary:hover {
      background-color: #0055AA;
    }
    
.button-large {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }
    
    .button-outline {
      background-color: transparent;
      border: 1px solid #0066CC;
      color: #0066CC;
    }
    
    .button-outline:hover {
      background-color: #E6F0FA;
    }
    
    /* 固定バナー */
    .fixed-banner {
      position: fixed;
      right: 0;
      top: 33%;
      z-index: 40;
      transform: translateY(-50%);
      transition: all 0.3s;
    }
    
    .fixed-banner-inner {
      position: relative;
    }
    
    .close-button {
      position: absolute;
      top: -0.5rem;
      left: -0.5rem;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      background-color: #fff;
      border: none;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      z-index: 10;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .banner-content {
      background-color: #fff;
      border: 1px solid #0066CC;
      padding: 1rem 1.25rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s;
    }
    
    .banner-content:hover {
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* セクション共通 */
    section {
      padding: 6rem 0;
    }
    
    .bg-gray {
      background-color: #f9fafb;
    }
    
    .section-title {
      font-size: 1.875rem;
      font-weight: 300;
      color: #111827;
      margin-bottom: 1rem;
    }
    
    .section-title span {
      color: #0066CC;
    }
    
    .section-description {
      font-size: 1rem;
      color: #6b7280;
      font-weight: 300;
      max-width: 36rem;
      margin: 1rem auto 4rem;
    }
    
    /* ヒーローセクション */
    .hero {
      position: relative;
      background-color: #fff;
    }
    
    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3rem;
    }
    
    @media (min-width: 768px) {
      .hero-content {
        flex-direction: row;
      }
    }
    
    .hero-text {
      flex: 1;
    }
    
    .hero-title {
      font-size: 2.25rem;
      line-height: 1.2;
      font-weight: 300;
      color: #111827;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .hero-title {
        font-size: 3rem;
      }
    }
    
    .hero-title span {
      color: #0066CC;
      font-weight: 400;
    }
    
    .hero-description {
      font-size: 1.125rem;
      color: #4b5563;
      font-weight: 300;
      max-width: 28rem;
      margin-bottom: 1.5rem;
    }
    
    .hero-image-container {
      flex: 1;
      position: relative;
    }
    
    .hero-badge {
      position: absolute;
      bottom: -1.25rem;
      left: -1.25rem;
      background-color: #fff;
      padding: 0.75rem;
      border-radius: 0.5rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .hero-badge p {
      font-size: 0.875rem;
      font-weight: 500;
      color: #0066CC;
    }
    
    /* カード */
    .card {
      background-color: #fff;
      border: none;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s;
    }
    
    .card:hover {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .icon-circle {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background-color: #E6F0FA;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .card-title {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
    
    .card-text {
      color: #6b7280;
      font-weight: 300;
    }
    
    /* グリッド */
    .grid {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    /* 特徴ボックス */
    .feature-box {
      background-color: #f9fafb;
      padding: 2rem;
      border-radius: 0.5rem;
    }
    
    .feature-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .feature-icon {
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background-color: #0066CC;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
    
    /* 実績カード */
    .result-card {
      overflow: hidden;
      border: none;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .result-image-container {
      position: relative;
    }
    
    .result-badge {
      position: absolute;
      top: 0.75rem;
      left: 0.75rem;
      background-color: #0066CC;
      color: #fff;
      font-size: 0.75rem;
      padding: 0.25rem 0.75rem;
    }
    
    .testimonial {
      background-color: #f9fafb;
      padding: 1rem;
      font-style: italic;
      font-size: 0.875rem;
      color: #4b5563;
    }
    
    /* 料金プラン */
    .pricing-highlight {
      background-color: #E6F0FA;
      padding: 1.5rem;
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .pricing-card {
      background-color: #fff;
      padding: 1.5rem;
      border: 1px solid #f3f4f6;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-popular {
      position: relative;
    }
    
    .pricing-popular-badge {
      position: absolute;
      top: 0;
      right: 0;
      background-color: #0066CC;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.25rem 0.75rem;
    }
    
    .pricing-title {
      text-align: center;
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }
    
    .pricing-price {
      text-align: center;
      font-size: 2.25rem;
      font-weight: 500;
      color: #0066CC;
      margin-bottom: 1.5rem;
    }
    
    .pricing-price span {
      font-size: 0.875rem;
      font-weight: 400;
      color: #6b7280;
    }
    
    .pricing-description {
      text-align: center;
      font-size: 0.875rem;
      font-weight: 500;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    
    .pricing-features {
      list-style: none;
      margin-bottom: 2rem;
    }
    
    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    
    .pricing-feature-icon {
      width: 1.25rem;
      height: 1.25rem;
      color: #0066CC;
      flex-shrink: 0;
      margin-top: 0.125rem;
    }
    
    .pricing-feature-text {
      font-size: 0.875rem;
      color: #6b7280;
    }
    
    .pricing-button {
      width: 100%;
    }
    
    .pricing-notes {
      margin-top: 3rem;
      background-color: #fff;
      padding: 2rem;
      border: 1px solid #f3f4f6;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-entry-fee {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    
    .pricing-campaign {
      text-align: center;
      color: #FF5252;
      font-size: 0.875rem;
      margin-bottom: 2rem;
    }
    
    .pricing-note {
      font-size: 0.875rem;
      color: #6b7280;
      margin-bottom: 1rem;
    }
    
    /* アコーディオン */
    .accordion {
      margin-bottom: 1rem;
    }
    
    .accordion-item {
      border: 1px solid #e5e7eb;
      background-color: #fff;
      margin-bottom: 1rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .accordion-header {
      padding: 1rem 1.5rem;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    
    .accordion-header:hover {
      background-color: #f9fafb;
    }
    
    .accordion-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .accordion-content {
      padding: 1rem 1.5rem;
      display: none;
    }
    
    .accordion-content.active {
      display: block;
    }
    
    /* お問い合わせフォーム */
    .form-container {
      background-color: #fff;
      padding: 2rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
    
    .form-label span {
      color: #0066CC;
    }
    
    .form-input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0;
      margin-top: 0.5rem;
    }
    
    .form-select {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0;
      margin-top: 0.5rem;
      background-color: #fff;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
      background-position: right 0.5rem center;
      background-repeat: no-repeat;
      background-size: 1.5em 1.5em;
    }
    
    .form-submit {
      width: 100%;
      margin-top: 1rem;
    }
    
    .form-success {
      background-color: #fff;
      padding: 3rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    
    .success-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background-color: #E6F0FA;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      padding: 1rem;
    }
    
    .success-icon svg {
      width: 2.5rem;
      height: 2.5rem;
      color: #0066CC;
    }
    
    .success-title {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    
    .success-message {
      color: #6b7280;
      font-weight: 300;
      margin-bottom: 2rem;
    }
    
    /* CTA セクション */
    .cta {
      background-color: #0066CC;
      color: #fff;
      padding: 4rem 0;
    }
    
    .cta-title {
      font-size: 1.875rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }
    
    .cta-description {
      max-width: 36rem;
      margin: 0 auto 2rem;
      font-weight: 300;
    }
    
    .cta-button {
      background-color: #fff;
      color: #0066CC;
    }
    
    .cta-button:hover {
      background-color: #f9fafb;
    }
    
    .cta-notes {
      margin-top: 2rem;
      font-size: 0.875rem;
      font-weight: 300;
    }
    
    /* フッター */
    footer {
      background-color: #000;
      color: #fff;
      padding: 4rem 0;
    }
    
    .footer-grid {
      display: grid;
      gap: 3rem;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .footer-logo {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0066CC;
      margin-bottom: 1.5rem;
    }
    
    .footer-description {
      color: #9ca3af;
      font-size: 0.875rem;
      font-weight: 300;
      max-width: 28rem;
    }
    
    .footer-heading {
      font-weight: 500;
      font-size: 1.125rem;
      margin-bottom: 1rem;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-link {
      margin-bottom: 0.5rem;
      color: #9ca3af;
      font-weight: 300;
    }
    
    .footer-link a:hover {
      color: #0066CC;
    }
    
    .footer-copyright {
      border-top: 1px solid #374151;
      margin-top: 3rem;
      padding-top: 2rem;
      text-align: center;
      color: #6b7280;
      font-size: 0.875rem;
      font-weight: 300;
    }
    
    /* ユーティリティ */
.text-center {
	text-align: center;
}
    
.flex {
	display: flex;
}
    
.justify-center {
	justify-content: center;
}
    
.items-center {
	align-items: center;
}
    
.space-y-4 > * + * {
	margin-top: 1rem;
}
    
.mt-4 {
	margin-top: 1rem;
}
    
.mb-4 {
	margin-bottom: 1rem;
}
    
.mt-8 {
	margin-top: 2rem;
}
    
.mb-8 {
	margin-bottom: 2rem;
}
    
.mt-12 {
	margin-top: 3rem;
}
    
.mb-12 {
	margin-bottom: 3rem;
}
    
.rounded-lg {
	border-radius: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}

.border-b {
    border-bottom-width: 1px;
}

.font-medium {
    font-weight: 500;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.font-light {
    font-weight: 300;
}

.gap-2 {
    gap: 0.5rem;
}

.items-start {
    align-items: flex-start;
}

.text-\[\#0066CC\] {
    --tw-text-opacity: 1;
    color: rgb(0 102 204 / var(--tw-text-opacity, 1));
}

.shrink-0 {
    flex-shrink: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

/* ================================ */
/* Instagramフィード表示を横並びに整える */
.instagram-feed-wrapper {
  max-width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.instagram-feed-wrapper .sbi_item {
  width: 23% !important; /* ほぼ4列（少し余白あり） */
  aspect-ratio: 1 / 1;   /* 正方形に揃える */
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .instagram-feed-wrapper .sbi_item {
    width: 48% !important; /* モバイルでは2列表示 */
  }
}

/* フッターグリッドの高さ揃え */
.footer-grid,
.grid-cols-2 {
  align-items: stretch;
}

/*SNSセクション*/
section.sns-section {
	padding: 5vw;
	background-color: rgba(0,0,0,0.1);
}

/*コラムページ*/
.post-section {
	margin-top: 100px;
	margin-bottom: 50px;
	padding: 0 5vw;
}

.post-section h2 img {
	display: block;
	margin: 0 auto;
}

.post-section p img {
	display: block;
	margin: 0 auto;
}

.post-section h2 {
	margin-bottom: 20px;
	color: #0066CC;
	font-weight: 500;
}

.post-section hr {
	margin: 30px 0;
}

.post-section p {
	line-height: 2em;
}

.post-link-section {
	font-weight: 600;
    color: #0066CC;
    padding: 0 5vw;
    margin-bottom: 50px;
}

.post-link-section a:first-child {
	margin-right: 2em;
}

.post-link-section a {
	color: #0066CC;
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
