@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;
}

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

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

div#content {
	margin-top: 70px;
}

main#main-content h1#archive-title {
	margin-top: 0;
	padding-left: 0;
}

main#main-content article.article {
	margin-top: 0;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
	li.sidebar-menu-button.menu-button {
		display: inline-block;
		float: right;
		position: fixed;
		top: 105px;
		right: 0%;
		list-style: none;
		color: #2d96f3;
		padding-right: 3vw;
		z-index: 50;
	}
	
	main#main-content h1#archive-title {
		margin-left: 0;
	}
}

/*767px以下*/
@media screen and (max-width: 767px){
	li.sidebar-menu-button.menu-button {
		top: 25px;
	}
}



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

:root {
  --color-primary: #2196f3;
  --color-primary-50: #e3f2fd;
  --color-primary-100: #bbdefb;
  --color-primary-200: #90caf9;
  --color-primary-300: #64b5f6;
  --color-primary-400: #42a5f5;
  --color-primary-500: #2196f3;
  --color-primary-600: #1e88e5;
  --color-primary-700: #1976d2;
  --color-primary-800: #1565c0;
  --color-primary-900: #0d47a1;
}

/* ベーススタイル */
 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* コンテナ */
.container-narrow {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-narrow {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-narrow {
    padding: 0 2rem;
  }
}

/* ユーティリティクラス */
.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-primary-5 {
  background-color: rgba(33, 150, 243, 0.05);
}

.bg-primary-10 {
  background-color: rgba(33, 150, 243, 0.1);
}

.border-primary {
  border-color: var(--color-primary);
}

.hover-bg-primary-5:hover {
  background-color: rgba(33, 150, 243, 0.05);
}

.hover-bg-primary-90:hover {
  background-color: rgba(33, 150, 243, 0.9);
}

.hover-text-primary:hover {
  color: var(--color-primary);
}

.hover-text-white:hover {
  color: white;
}

.hover-bg-zinc-50:hover {
  background-color: #fafafa;
}

.hover-bg-zinc-100:hover {
  background-color: #f4f4f5;
}

/* テキストサイズ */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

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

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

/* フォントウェイト */
.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

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

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* マージン・パディング */
.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

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

.mb-16 {
  margin-bottom: 4rem;
}

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

.mt-2 {
  margin-top: 0.5rem;
}

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

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

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

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

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

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-20 {
  padding-top: 3rem;
}

/* フレックスとグリッド */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0%;
}

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

.items-center {
  align-items: center;
}

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

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

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

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-10 > * + * {
  margin-top: 2.5rem;
}

.space-x-10 > * + * {
  margin-left: 2.5rem;
}

.grid {
  display: grid;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

/* ポジショニング */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.top-24 {
  top: 6rem;
}

.left-0 {
  left: 0;
}

.z-50 {
  z-index: 50;
}

/* サイズ */
.w-full {
  width: 100%;
}

.w-16 {
  width: 4rem;
}

.w-12 {
  width: 3rem;
}

.w-5 {
  width: 1.25rem;
}

.w-4 {
  width: 1rem;
}

.h-full {
  height: 100%;
}

.h-20 {
  height: 5rem;
}

.h-16 {
  height: 4rem;
}

.h-12 {
  height: 3rem;
}

.h-5 {
  height: 1.25rem;
}

.h-4 {
  height: 1rem;
}

.h-40 {
  height: 10rem;
  width: 100%;
}

.h-48 {
  height: 12rem;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-500 {
  height: 500px;
}

.h-600 {
  height: 600px;
}

/* ボーダー */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

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

.border-zinc-100 {
  border-color: #f4f4f5;
}

.border-zinc-200 {
  border-color: #e4e4e7;
}

.border-zinc-300 {
  border-color: #d4d4d8;
}

.border-zinc-800 {
  border-color: #27272a;
}

.border-transparent {
  border-color: transparent;
}

/* 背景色 */
.bg-white {
  background-color: #ffffff;
}

.bg-zinc-50 {
  background-color: #fafafa;
}

.bg-zinc-100 {
  background-color: #f4f4f5;
}

.bg-zinc-200 {
  background-color: #e4e4e7;
}

.bg-zinc-900 {
  background-color: #18181b;
}

.bg-red-500 {
  background-color: #ef4444;
}

.bg-rose-100 {
  background-color: #ffe4e6;
}

/* テキストカラー */
.text-white {
  color: #ffffff;
}

.text-zinc-400 {
  color: #a1a1aa;
}

.text-zinc-500 {
  color: #71717a;
}

.text-zinc-600 {
  color: #52525b;
}

.text-zinc-700 {
  color: #3f3f46;
}

.text-zinc-800 {
  color: #27272a;
}

.text-red-500 {
  color: #ef4444;
}

.text-rose-500 {
  color: #f43f5e;
}

.text-rose-600 {
  color: #e11d48;
}

.text-rose-700 {
  color: #be123c;
}

/* その他のユーティリティ */
.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.text-center {
  text-align: center;
}

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

.uppercase {
  text-transform: uppercase;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

/* コンポーネント */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.025em;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  border-radius: 5px;
  border-bottom: 4px solid var(--color-primary-900);
  transition: 0.2s all;
}

.btn-primary:hover {
  background-color: rgba(33, 150, 243, 0.9);
  border-bottom: 2px solid var(--color-primary-900);
  transform: translateY(2px);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.025em;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.btn-outline:hover {
  background-color: rgba(33, 150, 243, 0.05);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
	border-bottom: 2px double var(--color-primary-100);
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 4rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: #52525b;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(33, 150, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 300;
  color: #27272a;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: #52525b;
  font-weight: 300;
  max-width: 20rem;
}

/* リスト */
.list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}

/* プローズ */
.prose {
  max-width: 65ch;
  color: #3f3f46;
}

.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.prose ul {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* メディアクエリ */
@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }
  
  .md-hidden {
    display: none;
  }
  
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .md-order-1 {
    order: 1;
  }
  
  .md-order-2 {
    order: 2;
  }
  
  .md-text-3xl {
    font-size: 1.875rem;
  }
  
  .md-text-4xl {
    font-size: 2.25rem;
  }
  
  .md-text-5xl {
    font-size: 3rem;
  }
  
  .md-px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  
  .md-block {
    display: block;
  }
  
  .md-h-600 {
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* モバイル対応の強化 */
@media (max-width: 768px) {
  .container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .py-24 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* ヒーローセクションの調整 */
  .hero-section h1 {
    font-size: 1.875rem;
  }

  /* 画像サイズの調整 */
  .h-500 {
    height: 300px;
  }

  /* グリッドアイテムの間隔調整 */
  .gap-16 {
    gap: 2rem;
  }

  .gap-12 {
    gap: 1.5rem;
  }

  .gap-8 {
    gap: 1rem;
  }

  /* ステップアイテムの調整 */
  .step-item {
    margin-bottom: 2rem;
  }
}

/* タッチデバイス用の調整 */
@media (hover: none) {
  .btn-primary:active,
  .btn-outline:active {
    opacity: 0.8;
    transition-property: opacity;
    transition-duration: 200ms;
  }

  /* タップ領域の拡大 */
  .studio-toggle,
  .seo-toggle,
  a {
    padding: 0.5rem;
    margin: -0.5rem;
  }
}

/*インスタセクション*/
section#sns div.container-narrow {
	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: #2196f3;
}

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

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

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

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

.wpcf7-text, .wpcf7-select, .wpcf7-date {
	padding-top: 0.5rem;
    padding-bottom: 0.5rem;
	padding-left: 0.75rem;
    padding-right: 0.75rem;
	--tw-border-opacity: 1;
    border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
	border-width: 1px;
	width: 100%;
	border-style: solid;
}

.wpcf7-submit {
	background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    font-weight: 300;
    letter-spacing: 0.025em;
	border: none;
    border-radius: 5px;
    border-bottom: 4px solid var(--color-primary-900);
    transition: 0.2s all;
	cursor: pointer;
}

.wpcf7-submit:hover {
	background-color: rgba(33, 150, 243, 0.9);
    border-bottom: 2px solid var(--color-primary-900);
    transform: translateY(2px);
}

section#sns {
	padding: 0 15vw;
	padding-bottom: 15vw;
}

.flex-1.flex.justify-end {
	flex: 1 1 auto;
}

.justify-start .menu-toggle {
	border: none;
    background-color: inherit;
    color: #2196f3;
}

button.menu-close {
	border: none;
    background-color: inherit;
    color: #2196f3;	
}

.items-center .text-sm {
	white-space: nowrap;
}

.grid.md-grid-cols-3.gap-10 ul {
	list-style: none;
}

.title-concept::before {
	content: 'Concept';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-flow::before {
	content: 'flow';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-price::before {
	content: 'Price Plan';
    position: absolute;
	white-space: nowrap;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-studio::before {
	content: 'Studio';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-sns::before {
	content: 'Sns';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-contact::before {
	content: 'Contact';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-customer-voice::before {
	content: 'Customer Voice';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-problem::before {
	content: 'Problem';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-promise::before {
	content: 'Promise';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.title-service::before {
	content: 'Service';
    position: absolute;
    font-size: 350%;
    font-family: 'Ballet', cursive;
    font-weight: 100;
    color: var(--color-primary-300);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
	white-space: nowrap;
}

.text-strong {
	color: #fff;
    font-weight: 600;
    background-color: #ef4444;
    width: auto;
    margin: 0.5rem auto;
    font-size: 1.1em;
    line-height: 2em;
}

.price-flexbox {
    display: flex;
    justify-content: space-between;
}

.price-flex-item {
	width: 48%;
}

img.prices-item-img {
	width: 33%;
}

.photo-container {
	display: flex;
}

.photo-item-img {
	background-size: cover;
	width: 25%;
	height: 12vw;
}


section.hero-section {
	background-image: url(https://astp.website/weddingbody/wp-content/uploads/2025/06/hero-image-01.jpg);
	background-position: center;
    background-size: cover;
	transition: background-image 1s ease-in-out;
}

.voice-subtitle {
	font-style: oblique;
    line-height: 3em;
    font-weight: 500;
    color: var(--color-primary);
}

@media screen and (max-width:767px){
	#column .column-grid {
		grid-template-columns: repeat(1, 1fr) !important;
	}
	
	section#sns {
		padding: 0 5vw;
		padding-bottom: 5vw;
	}
	
	.flex.items-center.justify-between.p-6.border-b.border-zinc-100 {
		background-color: #fff;
	}
	
	.flex-1.overflow-y-auto.p-6 {
		background-color: #fff;
	}
	
	.p-6.border-t.border-zinc-100 {
		background-color: #fff;
	}
	
	.text-strong {
		font-size: 0.8em;
	}
	
	.price-flexbox {
		justify-content: space-between;
		flex-direction: column;
	}
	
	.price-flex-item {
		width: 100%;
	}
	
	section#prices {
		overflow-x: hidden;
	}
	
	.photo-container {
		flex-wrap: wrap;
	}
	
	.photo-item-img {
		width: 50%;
		height: 30vw
	}
	
	section.hero-section {
	background-image: url(https://astp.website/weddingbody/wp-content/uploads/2025/06/hero-image-01-sp.jpg);
	}
	
	.text-mobile-bg {
	background-color: rgba(255, 255, 255, 0.6);
    padding: 8px;
	}

}

.problem-title {
	font-weight: 400;
    font-size: 1.25em;
    color: #444;
    line-height: 3em;
}

.problem-box{
	margin-top: 0;
}

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

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

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