f/* Pierre Zero - About Us Page Specific Styles */

/* About Us Article */
.aboutus-article {
    padding-top: 100px;
}

/* Method Section */
.method-section {
    padding: 0px 0 150px 0;
	overflow: hidden;
}

.method-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 32px;
    line-height: 1.4;
    color: #3f3d3c;
    text-align: center;
    margin: 0 0 100px 0;
	font-weight: 600;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.method-content.reverse {
    flex-direction: row-reverse;
}

.method-text {
    flex: 1;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-header {
}

.method-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #d6c677;
    white-space: nowrap;
    font-variation-settings: 'wdth' 100;
}
.method-number span {
    font-size: 2em;
	margin-left: .3em;
}
.method-header h3 {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0;
    white-space: nowrap;
}

.method-description {
    width: 100%;
}

.method-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.method-image {
    flex: 1;
    max-width: 704px;
    margin: 0;
}

.method-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 800/566;
    object-fit: cover;
}

/* First method image specific positioning */
.method-content:not(.reverse) .method-image img {
    object-position: 91.31% 39.89%;
    background-size: 206.51% 111.47%;
}

/* Second method image specific positioning */
.method-content.reverse .method-image img {
    object-position: 46.19% 0%;
    background-size: 180.44% 100%;
}

/* Product Banner Section */
.product-banner-section {
    padding: 0;
}
.product-banner-section a {
    display: block;
}

.product-banner {
    position: relative;
  background-color: #3f3d3c;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



.banner-background {
    width: 50%;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63.64% 54.26%;
    background-size: 100.99% 244.09%;
}



.banner-content {
	width: 100%;
    max-width: 1400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	padding: 0 30px;
	box-sizing: border-box;
}
.banner-content-text{
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	color: white;
}
.banner-more{
	display: flex;
	justify-content: flex-start;
}
.banner-content h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 40px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

.banner-content .view-more-btn {
    background-color: transparent;
    color: #fff;
    transition : all 0.5s ease 0s;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,1.00);
}
.banner-content .view-more-btn:hover {
  opacity: .9;
  color: #fff;
}

/* Responsive Design for About Us */
@media (max-width: 1200px) {
    .method-content,
    .method-content.reverse {
    }
    
    .method-text {
        max-width: none;
    }
    
    .method-image {
        max-width: none;
    }
    
    .method-title {
        font-size: 28px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .method-section {
        padding: 80px 0;
    }
    
    .method-title {
        font-size: 24px;
        margin-bottom: 60px;
    }
    
    .method-content {
        gap: 30px;
    }
    
    .method-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .method-number {
        font-size: 20px;
    }
    
    .method-header h3 {
        font-size: 20px;
        white-space: normal;
    }
    
    .method-description p {
    }
    
    .product-banner {
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content .view-more-btn {
        font-size: 14px;
        gap: 15px;
    }
	.banner-content {
	position: relative;
	top: 0%;
	left: 0%;
		transform: translate(0%, 0%);
}
	.banner-content-text {
		gap: 10px;
		text-align: center;
		width: 100%;
		padding-top: 30px;
}
	.product-banner {
   flex-direction: column;
		gap: 30px;
}
	.banner-background {
    width: 80%;
    margin-bottom: 2rem;
}
	.banner-more{
	justify-content: center;
}
}

@media (max-width: 576px) {
    .aboutus-article {
        padding-top: 0px;
    }
   .method-content,
    .method-content.reverse {
  flex-direction: column;
}
    .method-section {
        padding: 0px 0 60px 0;
    }
    
    .method-title {
        font-size: 24px;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    
    .method-header h3 {
        font-size: 22px;
    }
    
    .method-number {
        font-size: 14px;
    }
    
    .product-banner {
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
}



/* Container Wide for About Us */
.container-wide {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 30px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 20px;
    }
}
@media (min-width: 577px) {

}
/* =================================================================
   COMMON ANIMATIONS
   ================================================================= */
/* Initial state for elements that will animate */
.animate-image-up, /* 画像の初期状態 */
.animate-text-fade { /* テキストの初期状態 */
    opacity: 0; /* 最初は透明 */
}

.animate-image-up {
    transform: translateY(50px); /* 下から50pxの位置に配置 */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* 透明度と位置の変化を0.8秒でスムーズに */
}

.animate-text-fade {
    transform: translateY(50px); /* テキストも下から50pxの位置に配置 */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* 透明度と位置の変化を0.8秒でスムーズに */
}

/* State when animation is active */
.is-visible { /* このクラスが要素に追加されるとアニメーションがトリガーされます */
    opacity: 1; /* 不透明にして表示 */
    transform: translateY(0); /* 元の位置に移動 */
}
.img-shadow{
	position: relative;
}
.img-shadow::after{
	content: '';
	position: absolute;
	top:20px;
	left: 20px;
	background-color: #E6E7E8;
	width: 100%;
	height: 100%;
	z-index: -1;
}