/* Global Styling */



#hero-section {
    background: url('img/hero-img.webp') center center / cover no-repeat;
}




/* セクションのスタイル */



h2, h3{
	font-family: "Shippori Mincho B1";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 800;
	line-height: 160%; /* 44.8px */
	letter-spacing: 0.1rem;
}







/* 共通のFlexboxスタイル */
/* セクション1：製品紹介
-----------------------------------------------*/
.supplement_intro {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 20px;
}


.text-content {
  width: 560px;
	gap:35px;
}


.intro-block {
  flex-direction: row;
}

.supplement_intro{

}

.product-images img {
    max-width: 600px;
}

/* セクション2：不調について
-----------------------------------------------*/
.check_list {
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}

.supplement_concerns {
	background: url("img/mss_img02.webp") no-repeat center top;
    padding: 40px;
    margin-bottom: 20px;
	color: #fff;
}

.concerns-block ul {
	font-family: Inter;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.concerns-block ul li {
	display: flex;
  	align-items: center;
 	gap: 12px;
}


.check_list ul li::before {
  content: url("../common/img/svg-check.svg");
}

#sec02 .concerns-block{
	flex-direction: row;
	justify-content: flex-end;
}

#sec02 .text-content{
	width: 55.19%;
}

/* セクション3：オーソモレキュラー療法の特徴
------------------------------------------------------------*/
.features-block {
 	flex-direction: row;
	justify-content: space-between;
	margin-top: 160px;
	gap:30px;
}


.features-block:nth-child(2) {
  flex-direction: row-reverse;
}



.supplement_features {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 20px;
}

.feature-image {
    max-width: 300px;
}

/* セクション4：トグルメニュー */
.supplement_menu {
    /*background-color: #f9f9f9;*/
    padding: 40px;
    margin-bottom: 20px;
}

.menu-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.toggle-menu {
    width: 100%;
}

.menu-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.menu-title {
    background-color: #eee;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title span {
    font-size: 0.875rem;
}

.menu-content {
    padding: 15px;
    background-color: #f9f9f9;
}

.menu-content p {
    margin: 0 0 10px;
}

.product-list {
  display: flex;
  gap: 20px;
  flex-direction: row;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 0;
  margin: 20px 0;
}

.product-list img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
}


.menu-content {
	display: none;
    opacity: 0;
    transition: all 0.7s;
}

/* トグルがアクティブなとき */
.menu-content.open {
	display: block;
    opacity: 1;
}


.menu-block {
  padding: 5.66%;
  background: #F1F1F1;
}

#sec04 .menu-title {
  display: flex;
  height: 70px;
  padding: 0 7.55%;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: var(--Text-2, #9A9799);
  flex-direction: row;
  color: #fff;
}

#sec04 .menu-title a{
  color: #fff;
}


.product {
  display: flex;
  width: 180px;
  flex-direction: column;
  align-items: flex-start;
}

.menu-content {
  padding: 7.55%;
  background-color: #fff;
}

.menu-title span::after {
  content: url("../common/img/svg-toggle.svg");
}

.menu-subtext{
	font-family: Inter;
}



/* セクション5：サプリメントの購入案内
-----------------------------------------------*/
.supplement_purchase {
	
}

.purchase-button img{
	width: 252px;
}

.purchase-button:hover {
}

.purchase-block {
  flex-direction: row-reverse;
  background: url( "../common/img/bg.webp") no-repeat;
  justify-content: center;
  gap: 2.64%;
  padding: 4.72% 14.15%;
}

.img-content {
  width: 230px;
}




/* メディアクエリ (レスポンシブ対応) */
@media (max-width: 768px) {
    .intro-block, .concerns-block, .features-block, .menu-block, .purchase-block {
        flex-direction: column;
        text-align: center;
    }

    .product-images img, .feature-image {
        max-width: 100%;
    }

    .product-list {
        flex-direction: column;
    }

    .product-list img {
        max-width: 100%;
    }
}