/*==================================================
基本のおまじない
===================================*/
html { 
	scroll-behavior: smooth;
	font-size: 10px;
	height: auto;	
}
body {
	margin: 0;
	padding: 0;
	color: #fff;
	margin: 0 auto;
	font-family: "Zen Old Mincho", serif;
 	font-weight: 400;
  	font-style: normal;
	height: auto;
	max-width: 1500px;
    background-color: #f0e8db;
}
* {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
    color: #fff;
	-webkit-tap-highlight-color: transparent; 
}
a:hover {
	cursor: pointer;
}
p {
	margin: 0;
	padding: 0;
}
#section {
	overflow: hidden;
}
.fuwa {
	opacity: 0;
	transform: translateY(20px);
	transition: all ease-in-out .6s;
	
}
.fuwa.on {
	opacity: 1;
	transform: translateY(0px);
	transition: all ease-in-out .6s;
	transition-delay: .2s;
}

/*==================================================
top
===================================*/
/*==================================================
header
===================================*/

#header {
    background-color: #f0e8db;
    transition: background-color 0.5s ease-in-out; /* 変化の速度を0.5秒に調整 */
    height: 60px;
	max-width: 1500px;
}
#header.on {
    /* background-color: transparent; ← この行を削除またはコメントアウト */
    background-color: rgba(240, 232, 219, 0.7); /* 半透明の背景色に変更 (元の色味を維持) */
    -webkit-backdrop-filter: blur(8px); /* Safari用のぼかしフィルター */
    backdrop-filter: blur(8px); /* 背景を8px分ぼかす */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transform: translateY(10px);
    animation: opa 1s ease-in-out;
    animation-fill-mode: forwards;
    z-index: 10;
}
.logo {
    position: fixed;
    height: 68px;
    width: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center; 
    z-index: 100000;
}
.logo img {
    width: 100%;
    height: auto;
    opacity: .6;
}
 @keyframes opa {
	0% { 
        opacity: 0;
        transform: translateY(20px);
    }

	100% { 
        opacity: 1;
        transform: translateY(0px);
    }
  } 
@media (min-width: 1000px) {
    .logo {
        left: 30px;
        transform: translateX(0);
       
    }
  }


 

 /*============パソコン用メニュー===============*/
.pc_header {
    width: 100%;
    height: 60px;
    position: relative;
    top: 0;
    left: 0;
    display: none;
}
@media (min-width: 1000px) {
    .pc_header {
        display: block;
    }
}

.header_menu {
    display: flex;
    width: 680px;
    height: auto; 
    position: absolute;
    top: 50%;
    right: 10px; 
    transform: translateY(-50%);
}
.header_menu a {
    width: 100%;
    height: 16px;
    display: block;
}
.header_menu a:hover {
    opacity: .7;
}
.header_menu div:nth-child(1),
.header_menu div:nth-child(2),
.header_menu div:nth-child(3),
.header_menu div:nth-child(4),
.header_menu div:nth-child(5) {
    width: auto;
    height: 16px;
    margin-right: 44px;
}
.header_menu div:nth-child(6) {
    width: auto;
    height: 16px;
    margin-right: 0;
}

.header_menu img {
    display: block;
    height: 16px;
    width: auto;
}
.header_menu div:nth-child(1) img {
    width: auto;
    height: 22px;
}
.header_menu div:nth-child(6) img {
   width: auto;
    height: 22px; 
}



.header_menu li:nth-child(2) img,
.header_menu li:nth-child(3) img,
.header_menu li:nth-child(4) img,
.header_menu li:nth-child(5) img
 {
    width: auto;
    height: 16px;
    float: right;
}
.header_menu li:nth-child(2) img {
    margin-right: 40px;
}
.header_menu li:nth-child(3) img {
    margin-left: 18px; 
}
.header_menu li:nth-child(4) img {
    margin-left: 40px; 
}
.header_menu li:nth-child(5) img {
    margin-right: 40px;
}








/*============ハンバーガーメニュー===============*/

.hamburger-menu {
	position: fixed;
	top: 0;
	right: 0;
	display: block;
	z-index: 10000000000;
}

.menu-btn {
	position:fixed;
    top: 4px;
    right: 24px;
    display: flex;
    height: 68px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.menu-btn:hover {
	opacity: .6;
	cursor:pointer;
}
.menu-btn span,
.menu-btn span:before{
    content: '';
    display: block;
    height: 1.5px;
    width: 50px;
    background-color: #00000082;
    position: absolute;
	z-index: 10000;
	transition: ease-in 0.4s;
}
.menu-btn span:before {
    bottom: 7px;
}

#menu-btn-check:checked ~ .menu-btn span {
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
	transform: rotate(45deg) scale(0.6) ;
	transition: ease-in 0.4s;
    background-color: #fff;
    height: 1.5px;
}
#menu-btn-check:checked ~ .menu-btn span::before {
	box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
	height: 1.5px;
    bottom: 0;
    transform: rotate(90deg);
	transition: ease-in 0.4s;
    background-color: #fff;
}

#menu-btn-check {
	display: none;

}

#menu-btn-check:checked ~ .menu-min {
	display: block;
}

.menu-min {
    position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: auto;
	display: none;
	background-color: #00000063;
	z-index: 1000;
	transition: all .2s ease-in;
}

.min-menu {
	width: 70%;
	height: 100vh;
    background-color: #56544f;
    padding-top: 100px;
    margin-left: 30%;
}
.menu_li {
	width: 80%;
	margin-left: 10%;
	border-bottom: 2px solid #a5a4a434;
	display: block;
	opacity: 0;
	transform: translateY(50px);
}

.menu_li a {
	color: #56544f;
	display: block;
	line-height: 80px;
	font-size: 2rem;
	letter-spacing: 0.2em;
	transition: all 0.2s;
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 1000000;
}
.min-menu li:nth-child(2) img,
.min-menu li:nth-child(3) img,
.min-menu li:nth-child(4) img,
.min-menu li:nth-child(5) img
 {
    position: absolute;
    width: auto;
    height: 25px;
    right: 0;
    top: 50%;
    margin-top: -12.5px;
    z-index: 1000000000000;
}
.min-menu li:nth-child(1) img,
.min-menu li:nth-child(6) img {
    position: absolute;
    width: auto;
    height: 30px;
    right: 0;
    top: 50%;
    margin-top: -12.5px;
    z-index: 1000000000000;
}
.menu_li a:hover {
	opacity: .6;
	transition: all 0.2s;
}

/* アニメーションスタートの遅延時間を決めるCSS(ハンバーガーmenu)*/

.delay-time002{
	animation-delay: 0.2s;
	}
	
	.delay-time004{
	animation-delay: 0.4s;
	}
	
	.delay-time006{
	animation-delay: 0.6s;
	}
	
	.delay-time008{
	animation-delay: 0.8s;
	}
	
	.delay-time010{
	animation-delay: 1s;
	}
	
	.delay-time012{
	animation-delay: 1.2s;
	}

	.delay-time014{
	animation-delay: 1.4s;
	}
/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	
	.fadeUp2 {
	animation-name:fadeUpAnime2;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
		transform: translateY(50px);
	  }
	
	  to {
		opacity: 1;
		transform: translateY(0);
	  }
	}
	@keyframes fadeUpAnime2{
		from {
		  opacity: 0;
		}
	  
		to {
		  opacity: 1;
		}
	  }


 @media (min-width: 1000px) {
    .hamburger-menu {
        display: none;
    }
 }

/******************* インタビューページ ***********************/
.midori_pc {
	display: none;
}
.midori_photo {
	position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
	margin-top: 68px;
	aspect-ratio: 7/5.2;
	background-color: #a5a4a4;
}
.midori_photo img:nth-child(1) {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: auto;
}
.int_main_p {
	position: absolute;
	top: 12%;
	left: 6%;
	width: 48%;
}
.int_main_p2 {
	position: absolute;
	top: 12%;
	right: 4%;
	width: 48%;
}
.int_main_p_sachiko {
	position: absolute;
	top: 24%;
	left: 6%;
	width: 48%;
}
.int_main_h2 {
	display: block;
	width: 74%;
	height: auto;
	margin: 10% 0 0 10%;
}
.int_main_h2_mayuko {
	display: block;
	width: 50%;
	height: auto;
	margin: 10% 25% 10%;
}
.int_main_h2_mayuko img {
	width: 100%;
	height: auto;
	opacity: .8;
}
.int_main_h2 img {
	width: 100%;
	height: auto;
	opacity: .8;
}
.int_main_h2_yasuko {
	font-size: 2.2rem;
	font-weight: 400;
	width: 56%;
	height: auto;
	margin: 8% 0 0 8%;
	color: #000000c4;
	line-height: 3.2rem;
	letter-spacing: 0.05em;
}
.int_main_h2_yasuko img {
	width: 100%;
	height: auto;
	opacity: .8;
}
.int_main_h2_sayuri2 {
	display: block;
	width: 80%;
	height: auto;
	margin: 10% 0 0 10%;
}
.int_main_h2_sayuri2 img {
	width: 100%;
	height: auto;
	opacity: .8;
}
.int_main_h2_sayuri {
	display: none;
}
.int_main_h2_yoko {
	font-size: 2.2rem;
	font-weight: 400;
	width: 78%;
	height: auto;
	margin: 8% 0 0 8%;
	color: #000000c4;
	line-height: 3.2rem;
	letter-spacing: 0.05em;
}
.int_main_h2_yoko img {
	width: 100%;
	height: auto;
	opacity: .8;
}
.int_main_h2_sachiko {
	display: block;
	width: 66%;
	height: auto;
	margin: 10% 0 0 10%;
}
.int_main_h2_sachiko img {
	width: 100%;
	height: auto;
	opacity: .8;
}

.int_essence_p {
	font-size: 3rem;
	width: auto;
	height: auto;
	font-family: "Tangerine", cursive;
  	font-weight: 400;
 	font-style: normal;
}

/**************** 700ピクセル以上のインタビュートップ ********************/
/**************** 700 ***********************/
@media (min-width: 700px) {
	.midori_photo {
		display: none;
	}
	.midori_pc {
		display: block;
		width: 54%;
		height: auto;
		margin-left: 23%;
		margin-top: 14%;
	}
	.dialog {
		width: 60%;
		height: auto;
		margin-left: 20%;
	}
	.dialog img {
		width: 100%;
		height: auto;
	}
	.midori_photo_pc {
		width: 100%;
		height: auto;
		margin-top: 8%;
	}
	.midori_photo_pc img {
		width: 100%;
		height: auto;
	}
	.int_main_h2 {
		display: block;
		width: 34%;
		height: auto;
		margin: 5% auto;
	}
	.int_main_h2 img {
		width: 100%;
		height: auto;
		opacity: .7;
	}
	.int_main_h2_yasuko {
		display: block;
		width: 24%;
		height: auto;
		margin: 5% auto 0;
	}
	.int_main_h2_yasuko img {
		width: 100%;
		height: auto;
		opacity: .7;
	}
	.int_main_h2_sayuri {
		display: block;
		width: 50%;
		height: auto;
		margin: 5% auto;
	}
	.int_main_h2_sayuri img {
		width: 100%;
		height: auto;
		opacity: .7;
	}
	.int_main_h2_sayuri2  {
		display: none;
	}
	.int_main_h2_yoko {
		display: block;
		width: 34%;
		height: auto;
		margin: 5% auto;
	}
	.int_main_h2_yoko img {
		width: 100%;
		height: auto;
		opacity: .7;
	}
	.int_main_h2_sachiko {
		display: block;
		width: 28%;
		height: auto;
		margin: 5% auto;
	}
	.int_main_h2_sachiko img {
		width: 100%;
		height: auto;
		opacity: .7;
	}
	.int_main_h2_mayuko {
		display: block;
		width: 30%;
		height: auto;
		margin: 5% auto;
	}
	.int_main_h2_mayuko img {
		width: 100%;
		height: auto;
		opacity: .8;
	}
}

/* ============ 比較画像のUL外枠 =================*/
.midori_photo_ab {
	width: 83%;
	height: auto;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	margin-top: 30px;
	margin-left: 8.5%;
}
/* ============ 比較画像の写真イメージ =================*/
.midori_photo_ab li:nth-child(1) img:nth-child(1),
.midori_photo_ab li:nth-child(3) img:nth-child(1){
	border-radius: 35vw;
	border: 1px solid #0000007f;
	width: 100%;
	height: auto;
}
/* ============ 比較画像の写真の下の文字 =================*/
.midori_photo_ab li:nth-child(1) img:nth-child(2),
.midori_photo_ab li:nth-child(3) img:nth-child(2){
	width: 60%;
	margin-left: 20%;
	margin-top: 10px;
}

/* ============ 比較画像の写真イメージの外枠 =================*/
.midori_photo_ab li:nth-child(1),
.midori_photo_ab li:nth-child(3) {
	width: 36%;
	height: auto;
}
.midori_photo_ab li:nth-child(1) {
	margin-left: 4%;
}


/* ============ 比較画像の矢印の外枠 =================*/
.midori_photo_ab li:nth-child(2){
	width: 20%;
}
/* ============ 比較画像の矢印イメージ =================*/
.yaji2 {
	width: 100%;
	height: auto;
	margin-top: -20px;
}


/********************** 700ピクセル以上の比較画像 ***********************/
/********************** 700ピクセル以上の比較画像 ***********************/
@media (min-width: 700px) {
	.midori_photo_ab {
		width: 60%;
		height: auto;
		display: flex;
		align-items: center;
		box-sizing: border-box;
		margin-top: 8%;
		margin-left: 20%;
	}
	/* ============ 比較画像の写真イメージの外枠 =================*/
	.midori_photo_ab li:nth-child(1),
	.midori_photo_ab li:nth-child(3) {
		width: 30%;
		height: auto;
	}
	.midori_photo_ab li:nth-child(1) {
		margin-left: 10%;
	}
	/* ============ 比較画像の矢印イメージ =================*/
	.midori_photo_ab li:nth-child(2){
			width: 20%;
	}
	.yaji2 {
		width: 60%;
		margin-left: 20%;
	}
}

/**************** インタビューの文面 スマホ版 ***********************/
/* ============ インタビュー =================*/
.int_p {
    width: 85%;
    height: auto;
    margin-left: 7.5%;
    color: #000000;
    padding: 30px 0 50px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.int_p p {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 24px;
	letter-spacing: 0.09em;
	line-height: 2.2rem;
	font-family: "Zen Old Mincho", serif;
}
.p_line2 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-size: 1.4rem;
}
.p_line1 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
}


.slide {
	display: block;
}
.int_scroll {
	width: 100%;
	height: auto;
	margin-top: 5%;
	overflow: hidden;
}
.swiper-slide {
	width: 100%;
	height: auto;
	border-radius: 5%;
	overflow: hidden;
}
.swiper-slide img {
	width: 100%;
	height: auto;
}
.swipe2-pagination {
	width: 100%;
	height: auto;
	text-align: center;
	display: block;
	margin:6% auto 10%;
}
.swiper a:hover {
	opacity: .6;
}

.swiper-pagination-bullet {
	width: 5px !important;
	height: 5px !important;
	margin-left: 8px !important;
}
.swiper-pagination-bullet-active {
	background-color: #56544f !important;
	width: 8px !important;
	height: 8px !important;
	transform: translateY(1.5px) !important;

}


.more {
	display: none;
}
/**************** インタビューの文面 PC版 ***********************/
/**************** 700 ***********************/
@media (min-width: 700px) {
	.int_p {
		width: 70%;
		height: auto;
		margin-left: 15%;
		color: #000000;
		padding: 10% 0 ;
		opacity: .7;
	}
	.int_p p {
		font-size: 1.8rem;
		font-weight: 200;
		margin-bottom: 24px;
		letter-spacing: 0.09em;
		line-height: 3rem;
		font-family: "Zen Old Mincho", serif;
	}
	.p_line2 {
		font-size: 1.8rem;
	}
	.p_line1 {
		font-size: 1.8rem;
	}
	.more {
		display: block;
		font-size: 3rem;
		font-weight: 200;
		text-align: center;
		color: #0000006f;
	}

/**************** インタビュースライド PC版 ***********************/
/**************** 700 ***********************/

	.slide {
		display: block;
	}
	.int_scroll {
		width: 100%;
		height: auto;
		margin-top: 5%;
		overflow: hidden;
	}
	.swiper-slide {
		width: 100%;
		height: auto;
		border-radius: 5%;
		overflow: hidden;
	}
	.swiper-slide img {
		width: 100%;
		height: auto;
	}
	.swipe2-pagination {
		width: 100%;
		height: auto;
		text-align: center;
		display: block;
		margin:6% auto 10%;
	}
	.swiper2 a:hover {
		opacity: .6;
	}
	
	.swiper-pagination-bullet {
		width: 5px !important;
		height: 5px !important;
		margin-left: 8px !important;
	}
	.swiper-pagination-bullet-active {
		background-color: #56544f !important;
		width: 8px !important;
		height: 8px !important;
		transform: translateY(1.5px) !important;

}
}
/* ===================== Footer =======================*/
.footer {
    width: 100%;
    height: auto;
    aspect-ratio: 7/1.6;
    background-color: #56544f;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 8px 0 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: relative;
}
.footer ul {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 4%;
}
.footer li {
    width: 100%;
    height: auto;
    margin-top: 8px; 
}
.footer a {
    color:#f0e8db;
}
.footer p {
    width: 100%;
    height: auto;
    font-size: 1.1rem;
    font-weight: 300;
    margin-top:16px;
    margin-bottom: 4px;
    text-align: center;
    color:#f0e8db;
    letter-spacing: 0.04em;
}
.copy {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: auto;
    margin: 20px auto 0;
}
.copy img {
    width: 100%;
    height: auto;
}

@media screen and (min-width:600px) { 
    .footer {
        width:  100%;
        height: 100px;
    }
    .footer ul {
        margin-top: 20px;
	}


}