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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 見出し */
.article h2::before {
border-top: none;
}
.article h2::after {
border-bottom: none;
}
.article h2{
border: none;
background: none;
} 
.article h3::before {
border-top: none;
}
.article h3::after {
border-bottom: none;
}
.article h3{
border: none;
}
.article h4::before {
border-top: none;
}
.article h4::after {
border-bottom: none;
}
.article h4{
border: none;
}
.article h5::before {
border-top: none;
}
.article h5::after {
border-bottom: none;
}
.article h5{
border: none;
}
.article h6::before {
border-top: none;
}
.article h6::after {
border-bottom: none;
}
.article h6{
border: none;
}
/* 余白 */
main,
#main,
.main {
    margin: 0 ;
	padding: 0;
	border: none;
} 
.article h1 {
    margin-top: 0;
    padding-top: 0;
} 

.content {
margin-top:0px;
padding:0px;
}
.article .entry-categories-tags {
   margin-bottom: 0;
}
.article .status-publish {
	margin-bottom: 0;
}

.page .main .entry-title {
	padding: 0;
	margin: 0;
	border: none;
}
.body .article {
  margin-top: 0;
  margin-bottom: 0;
}
.entry-content {
  margin-top: 0;
  margin-bottom: 0;
}
.date-tags {
	margin-bottom: 0;
}

footer#footer {
  margin-top: 0;
}

/* herosection */
.hero {
 position: relative;
 width: 100%;
 height: 100vh;
 background: url("http://kazuki-movie.com/wp-content/uploads/2025/10/三隅の風景.png") center/cover no-repeat;
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}

.hero-inner {
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.hero-title {
	font-size: 3.5rem;
	letter-spacing: 0.05em;
	font-family: 'Zen Old Mincho', sans-serif;
	font-weight: bold;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translatey(30px);
	animation: fadeUp 1s forwards 0.3s;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-family: 'Zen Old Mincho', sans-serif;
	font-weight: bold;
	opacity: 0;
	transform: translatey(30px);
	animation: fadeUp 1s forwards 0.6s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translatey(0);
	}
}


.article ul li {
	margin-bottom: 2.5em;
}

.person-section,
.person-text-section {
	width: 100%;
}
.person-inner {
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
}
.person-block {
	display: flex;
	align-items: center;
	gap: 80px;
	flex-wrap: nowrap;
}
.person-image img {
	width: 100%;
	max-width: 480px;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 16px;
}
.person-text {
	max-width: 600px;
}
.person-block.is-left {
	flex-direction: row;
}
.person-block.is-right {
	flex-direction: row-reverse;
}
.person-title {
	font-size: 12px;
	letter-spacing: 0.15em;
	color: #888;
	margin-bottom: 12px;
}
.person-text-section h2.person-subtitle {
	font-size: 32px;
	line-height: 1.3;
	margin-bottom: 32px;
}
.person-body p {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 20px;
}
.person-text-section {
	padding: 160px 0;
}
.person-text-inner {
	margin: 0 auto;
	padding: 0 20px;
}
.person-text-section .person-title {
	text-align: center;
}
.person-text-section .person-subtitle {
	text-align: center;
}
.person-text-section .person-body {
	margin-top: 40px;
	padding-bottom: 40px;
}
.highlight-text {
	font-size: 20px;
	font-weight: 700;
	color: #656565;
	line-height: 1.9;
}
.highlight-bgtext {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	text-align: left;
	margin: 40px 0;
}
.person-btn-wrap {
	text-align: left;
	padding-left: 40px;
	margin-top: 80px;
}
.person-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #1B2755;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
	transition: 0.3s;
}
.person-btn:hover {
	background: #f08300;
	color: #fff;
}

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

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
	.hero-title {
		font-size: 1.5rem;
	}
	.hero-subtitle {
		font-size:0.8rem;
	}

	.person-block {
        flex-direction: column;
        gap: 40px;
		flex-wrap: wrap;
}

    .person-text {
       max-width: 100%;
}

    .person-image img {
       max-width: 100%;
}

    .person-subtitle {
       font-size: 24px;
}

    .person-text-section {
       padding: 120px 0;
}

	
  .person-block {
        flex-direction: column;
        gap: 40px;
		flex-wrap: wrap;
}
	
}

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