@charset "utf-8";

/* reset.css
----------------------------------------- */
html,body,h1,h2,h3,h4,h5,h6,p,div,
ul,ol,li,dl,dt,dd,
table,caption,th,td,
form,button,label,address,blockquote,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border:0;
	outline:0;
	font-size: 100%;
	font-weight: normal;
}
body {
	line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}
nav ul {
	list-style:none;
}
hr {
	display: none;
}
img,abbr {
	border: none;
	vertical-align: bottom;
}
ul,ol,li {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th,td {
	text-align: left;
}
/* clearfix */
.cf {
	zoom: 1;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}

br.pc {
  display: none !important;
}

@media (min-width: 768px) {
  br.pc {
    display: block !important;
  }
}

/* common.css
----------------------------------------- */
html {
	font-size: 62.5%;
}
body {
	font-family:'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.4rem;
	color: #111;
	line-height: 2.0;
	letter-spacing: 0.06em;
	text-align: left;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #F5F5F5;
}
a {
	color: #111;
	text-decoration: none;
}
a:hover {
	color: #111;
	text-decoration: none;
}
a:focus {
}
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
input:focus, 
select:focus, 
textarea:focus {
}
img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
* {
	box-sizing: border-box;
}


/* common
----------------------------------------- */
/* loading */
#contents-wrap {
	opacity: 0;
	transition: all 1.4s;
}
#contents-wrap.fade-in {
	opacity: 1;
}
.loading-img {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	text-align: center;
	color: #fff;
	z-index: 2;
	text-align: center;
}
.loading-img img {
	width: 100%;
	height: auto;
}

/* breadcrumbs-area */
.breadcrumbs-area {
	box-sizing: border-box;
	margin-top: 15px;
	padding: 0 8%;
}
.breadcrumbs-list {
}
.breadcrumbs-list li {
	display: inline-block;
}
.breadcrumbs-list a,
.breadcrumbs-list li span {
	display: inline-block;
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.0rem;
	line-height: 1.6;
	color: #111;
	letter-spacing: 0.06em;
}
.breadcrumbs-list a {
	position: relative;
	margin-right: 29px;
}
.breadcrumbs-list a::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: -17px;
	width: 7px;
	height: 1px;
	background-color: #111;
	background-size: 5px 1px;
}
.breadcrumbs-list li span {
}

/* page-nation */
.page-nation {
	padding: 0 20px;
	text-align: center;
}
.page-nation a,
.page-nation .current {
	margin: 0 2px 0;
	padding: 0 8px;
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	letter-spacing: 0.02em;
	font-size: 1.4rem;
}
.page-nation a {
}
.page-nation .current {
	text-decoration: underline;
	color: #999;
}
/** page-nation-detail **/
.page-nation-detail {
	position: relative;
	margin: 60px auto 0;
	text-align: center;
	font-size: 1.1rem;
}
.prev-btn {
	position: absolute;
	top: 0;
	left: 0;
}
.prev-btn a {
	position: relative;
	display: inline-block;
	color: #111;
}
.back-btn {
}
.back-btn a {
	position: relative;
	display: inline-block;
	color: #111;
}
.next-btn {
	position: absolute;
	top: 0;
	right: 0;
}
.next-btn a {
	position: relative;
	display: inline-block;
	color: #111;
}

#stickyBar {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1002;
}

/* ハンバーガーボタン */
.sticky-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 70px;
    height: 70px;
    background: #474747;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}
.sticky-menu-btn:hover {
    background: #fff;
}
.sticky-menu-btn:hover .sticky-hamburger {
    background-color: #474747;
}
.sticky-menu-btn:hover .sticky-menu-label {
    color: #474747;
}

.sticky-hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: background 0.3s;
}
.sticky-menu-label {
    font-family: 'Lato', sans-serif;
    font-size: 1.0rem;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1;
    transition: color 0.3s;
}

/* ナビゲーション（閉じた状態） */
.sticky-nav {
    display: none;
    position: absolute;
    bottom: 80px;
    right: -30px;       
    background: #474747;
    min-width: 180px;
    padding: 16px 0;
    border: 1px solid #666;
}
.sticky-nav.open {
    display: block;
}
.sticky-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sticky-nav li {
    margin: 0;
}
.sticky-nav a {
    display: block;
    padding: 8px 20px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.sticky-nav a:hover {
    opacity: 0.7;
}
.sticky-nav .instagram-link img {
    height: 20px;
    width: auto;
    vertical-align: middle;
}


/* ttl */
.sec-ttl {
	display: flex;
	justify-content: center;
	margin-left: 15px;
}
.sec-ttl .jpn {
	margin-right: 5px;
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.8rem;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	vertical-align: top;
	line-height: 1.5;
	letter-spacing: 0.14em;
}
.sec-ttl .eng {
	padding-top: 3px;
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.2rem;
	color: #999;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	vertical-align: top;
	line-height: 1;
}

/* link */
.sec-link {
}
.sec-link span {
	position: relative;
	display: inline-block;
	padding: 9px 70px 0 0;
	font-size: 1.35rem;
	letter-spacing: 0.06em;
}
.sec-link.two-lines span {
	position: relative;
	display: inline-block;
	padding: 0 70px 0 0;
	font-size: 1.35rem;
	letter-spacing: 0.06em;
	line-height: 1.8;
}
.sec-link span::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 36px;
	height: 36px;
	border: 1px solid #111;
	border-radius: 50%;
}
.sec-link span::after {
	content: "";
	position: absolute;
	top: 17px;
	right: 16px;
	width: 39px;
	height: 4.7px;
	background: url(../images/yuka-ohtani/arrow.svg) 0 0 no-repeat;
	background-size: 39px 4.7px;
}

/* lead */
.sec-lead p {
	margin-bottom: 25px;
	font-size: 1.5rem;
	line-height: 2.4;
}
.sec-lead p:last-child {
	margin-bottom: 0;
}

.sec-lead h3 {
    font-size: 1.5rem;
}

.sec-lead ul li {
    font-size: 1.5rem;
}
.sec-lead hr {
    display: block;
    border: 0;
    border-top: 1px solid #ccc;
    height: 0;
    margin: 25px 0;
}

.sec-lead h2 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2.0;
    margin: 0 0 10px;
}

@media (max-width: 767px) {
  .sec-lead p,
  .sec-lead ul li,
  .sec-lead h3 {
    font-size: 1.3rem;
  }
}

/* header
----------------------------------------- */
#header {
  position: relative;
	margin-bottom: 40px;
}
#top #header {
	margin-bottom: 0;
}
#header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #fff;
}

#header > p {
    padding: 0 13.3%;
    font-size: 1.5rem;
    line-height: 2.4;
    margin-bottom: 40px;
}

.header-logo {
    position: absolute;
    top: 90px;
    left: 30px;
    display: flex;          /* block → flex に変更 */
    align-items: center;    /* 追加 */
    gap: 10px;              /* 追加 */
    width: auto;
    height: auto;
    z-index: 100;
}

.logo-tagline {
	display: block;
	margin-bottom: 2px;
	font-size: 1.0rem;
	transform: scale(0.9);
	transform-origin: left top;
	letter-spacing: 0.16em;
}
.logo {
	display: block;
	width: 250px;
	height: auto;
	margin-bottom: 6px;
}
.logo-keyword {
	display: block;
	margin-left: 10px;
	font-size: 1.8rem;
	letter-spacing: 0.16em;
}

/* =========================================
   SP（〜559px）ヘッダー修正
   H1を画像の上に配置・文字・画像を小さく
   ========================================= */
@media only screen and (max-width: 559px) {

	/* --- H1（ロゴエリア）を通常フローに戻す --- */
	.header-logo {
		position: static;          /* absoluteを解除 */
		display: flex;
		flex-direction: column;    /* 縦並び */
		align-items: flex-start;
		gap: 6px;
		padding: 50px 15px 12px;
	}

	/* --- ロゴ画像を小さく --- */
	.logo {
		width: 180px;              /* 250px → 130px */
		margin-bottom: 0;
	}

	/* --- キャッチコピーテキストを小さく --- */
	.logo-keyword {
		font-size: 1.3rem;         /* 1.8rem → 1.1rem */
		margin-left: 0;
		letter-spacing: 0.10em;
		line-height: 1.6;
	}

	/* --- メインビジュアルエリア：上部パディング不要に --- */
	.main-visual-area {
		padding-top: 0 !important; 
		margin-bottom: 40px;
	}

	/* --- メインビジュアル画像：右余白を縮小して画像を小さく --- */
	.main-visual {
		padding-right: 30px;       /* 60px → 30px */
	}
  
  .profile-sec-ttl {
		margin-top: 30px;          /* お好みで調整してください */
	}

	#stickyBar {
        right: 20px;
        bottom: 20px;
    }
    .sticky-menu-btn {
        width: 56px;
        height: 56px;
    }
    .sticky-hamburger {
        width: 18px;
    }
    .sticky-menu-label {
        font-size: 0.9rem;
    }

}

/* page-visual-area */
.page-visual-area {
	position: relative;
	padding-top: 102px;
}
.page-visual {
	position: relative;
	padding-right: 20%;
}
.page-visual-ttl {
	position: absolute;
	top: 50%;
	right: 20%;
	margin-top: -25px;
	padding: 8px 18px 9px 18px;
	background-color: #F5F5F5;
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	letter-spacing: 0.06em;
	font-size: 1.5rem;
	opacity: 0;
	transition: all 1.2s;
}
.page-visual-area.fade-in .page-visual-ttl {
	opacity: 1;
}


/* contents
----------------------------------------- */
/* contact-sec */
.contact-sec {
	position: relative;
	display: block;
	width: 74%;
	margin: 0 auto 80px;
}
.contact-sec .sec-ttl {
	margin-left: -5px;
}
.contact-sec-illust {
	position: relative;
	margin-top: -50px;
	z-index: -1;
}

/* form-input-tbl */
.form-input-tbl {
	width: 100%;
}
.form-input-tbl th,
.form-input-tbl td {
	display: block;
	width: 100%;
}
.form-input-tbl th {
	margin-bottom: 8px;
	font-size: 1.3rem;
	color: #111;
	letter-spacing: 0.07em;
}
.form-input-tbl td {
	margin-bottom: 17px;
	font-size: 1.3rem;
	color: #111;
}

/* form */
.input-text {
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	width: 100%;
	height: 46px;
	box-sizing: border-box;
	padding: 2px 8px;
	border: none;
	background-color: #fff;
	border: 1px solid #E6E6E6;
	color: #111;
	vertical-align: middle;
	font-size: 1.2rem;
}
.textarea {
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	box-sizing: border-box;
	width: 	100%;
	padding: 8px 8px;
	border: none;
	background-color: #fff;
	border: 1px solid #E6E6E6;
	font-size: 1.2rem;
}
.input-select {
	font-family:'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	width: 16em;
	height: 40px;
	margin-right: 5px;
	padding: 6px 8px;
	border: none;
	background-color: #fff;
	border: 1px solid #E6E6E6;
	color: #111;
	font-size: 1.2rem;
	line-height: 1.6;
	vertical-align: middle;
}
.submit-btn {
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	display: block;
	width: 180px;
	margin: 17px auto 0;
	padding: 20px 0;
	background-color: #5F5F5F;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
	letter-spacing: 0.1em;
	border-style: none;
}
.submit-btn:hover {
}
input[type="button"],input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	border-radius: 0;
}
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, textarea:focus, select:focus {
	border: 1px solid #AFB2B9;
	outline: 0;
}
input[type="submit"]:focus,
button[type="submit"]:focus {
	background-color: #AFB2B9;
	color: #fff;
	outline: 0;
}
.required-input-mark {
	color: #B13F36;
	font-size: 1.2rem;
}
.form-alert-text {
	margin-bottom: 30px;
	font-size: 1.2rem;
	line-height: 2.0;
}


/* ----------------------------------------- */


/* top */


/* header
----------------------------------------- */


/* main-visual-area */
.main-visual-area {
	position: relative;
	margin-bottom: 70px;
	/* width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100); */
	padding-top: 102px;
}
.main-visual {
	position: relative;
	padding-right: 60px;
}
.main-visual img {
	image-rendering: auto;
}
.main-visual-copy-jpn {
	position: absolute;
	bottom: -92px;
	right: calc(60px - 15px);
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.3rem;
	font-weight: 300;
	letter-spacing: 0.14em;
	line-height: 2.5;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	vertical-align: top;
	z-index: 100;
}
.main-visual-copy-jpn span {
	display: inline-block;
	transform: translateY(15px);
	opacity: 0;
	transition: all .8s;
}
.main-visual-area.fade-in .main-visual-copy-jpn span {
	transform: translateY(0);
	opacity: 1;
}
.main-visual-copy-jpn span.copy01 {
	transition-delay: .1s;
}
.main-visual-copy-jpn span.copy02 {
	transition-delay: .2s;
}
.main-visual-copy-jpn span.copy03 {
	transition-delay: .3s;
}
.main-visual-copy-jpn span.copy04 {
	transition-delay: .4s;
}
.main-visual-copy-eng {
	position: relative;
	margin: -22vw 0 0 0;
	/* margin: -85px 0 0 0; */
	z-index: 10;
	opacity: 0;
	transform: translateY(20px);
	transition: all 1.0s;
	transition-delay: .6s;
}
.main-visual-area.fade-in .main-visual-copy-eng {
	transform: translateY(0);
	opacity: 1;
}


/* contents
----------------------------------------- */

/* profile-sec */
.profile-sec {
	margin-bottom: 95px;
	padding-bottom: 30px;
	overflow: hidden;
}
.profile-sec-img-side {
	padding-left: 13.3%;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
}
.profile-sec.scrollin .profile-sec-img-side {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-text-side {
	position: relative;
	padding-bottom: 10px;
}
.profile-sec-text-side::before {
	content: "";
	position: absolute;
	top: 60px;
	right: -7px;
	width: 100px;
	height: 205px;
	background-size: 100px 205px;
	z-index: -10;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .8s;
}
.profile-sec-text-side.scrollin::before {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-ttl {
	position: relative;
	margin-bottom: 30px;
	padding-left: 13.3%;
	padding-top: 10px;
	font-size: 2.0rem;
	line-height: 1.7;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .2s;
}
.profile-sec-text-side.scrollin .profile-sec-ttl {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-ttl::before {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	width: 84%;
	height: 42px;
	background-color: #F5F5F5;
}
.profile-sec-text-side .sec-lead {
	margin-bottom: 30px;
	padding: 0 13.3%;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .4s;
}
.profile-sec-text-side.scrollin .sec-lead {
	transform: translateY(0);
	opacity: 1;
}

.profile-sec-link {
	padding: 0 13.3%;
	text-align: right;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .6s;
}
.profile-sec-text-side.scrollin .profile-sec-link {
	transform: translateY(0);
	opacity: 1;
}

/* =========================================
   nature-harmonist-sec
   profile-sec を左右反転した派生レイアウト
   ========================================= */

/* --- SP（〜559px）base --- */
.nature-harmonist-sec {
    margin-bottom: 95px;
    padding-bottom: 30px;
    overflow: hidden;
}

/* 画像エリア */
.nh-img-side {
    padding-left: 13.3%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s;
}
.nature-harmonist-sec.scrollin .nh-img-side {
    opacity: 1;
    transform: translateY(0);
}

/* テキストエリア */
.nh-text-side {
    position: relative;
    padding-bottom: 10px;
}

/* タイトル */
.nh-ttl {
    position: relative;
    margin-bottom: 30px;
    padding-left: 13.3%;
    padding-right: 13.3%;
    padding-top: 10px;
    font-size: 2.0rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s;
    transition-delay: .2s;
}
.nh-ttl::before {
    display: none;
}

.profile-sec-ttl::before {
    display: none;
}

.nature-harmonist-sec.scrollin .nh-ttl {
    opacity: 1;
    transform: translateY(0);
}

/* 本文 */
.nh-text-side .sec-lead {
    margin-bottom: 30px;
    padding: 0 13.3%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s;
    transition-delay: .4s;
}
.nature-harmonist-sec.scrollin .nh-text-side .sec-lead {
    opacity: 1;
    transform: translateY(0);
}
.nh-text-side .profile-sec-link-wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s;
    transition-delay: .6s;
}
.nature-harmonist-sec.scrollin .profile-sec-link-wrap {
    opacity: 1;
    transform: translateY(0);
}

.nh-text-side .profile-sec-link {
    opacity: 1;
    transform: none;
    transition: none;
    padding: 0 13.3% 0 0;
    text-align: right;
}

@media only screen and (min-width: 960px) {
    .nh-text-side .profile-sec-link-wrap {
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: flex-end;
    }
    .nh-text-side .profile-sec-link-wrap .profile-sec-link {
        margin-top: 0;
    }
    .nh-text-side .profile-sec-link .sec-link span {
        padding-top: 0;
    }
}

/* --- タブレット（560px〜959px）--- */
@media only screen and (min-width: 560px) and (max-width: 959px) {

    .nh-img-side {
        padding-left: 18%;
    }
    .nh-ttl {
        padding-left: 18%;
        font-size: 2.0rem;
    }
    .nh-text-side .sec-lead {
        padding: 0 18%;
    }

}


/* --- PC（960px〜）: 左右反転レイアウト --- */
@media only screen and (min-width: 960px) {

    .nature-harmonist-sec {
        display: flex;
        flex-direction: row-reverse; /* ← ここで左右を反転 */
        align-items: flex-start;
        padding-top: 60px;
        overflow: hidden;
    }

    /* 画像エリア：右側57% */
    .nh-img-side {
        width: 57%;
        padding: 0;
    }

    /* テキストエリア：左側、右端を画像に -10% かぶせる */
    .nh-text-side {
        width: 52.8%;
        margin: 15vw 0 0 0;
        margin-right: -10%; /* 右にネガティブマージンで画像と重なる */
        padding: 6.2vw 0 10px 3%;
        background-color: rgba(245, 245, 245, 0.85);
        z-index: 10;
    }

    .nh-ttl {
        padding-left: 18%;
        padding-right: 5%;
        font-size: 2.6rem;
        letter-spacing: 0.1em;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    .nh-ttl::before {
        top: -40px;
        left: 0;
        width: 100%;
        height: 42px;
    }

    .nh-text-side .sec-lead {
        padding: 0 5% 0 18%;
        margin-bottom: 65px;
    }

}

/* =========================================
   media-sec
   ========================================= */

/* --- 共通（SP〜） --- */
.media-sec {
    margin-bottom: 95px;
    padding: 60px 13.3%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s;
}
.media-sec.scrollin {
    opacity: 1;
    transform: translateY(0);
}

/* セクション見出し h3 */
.media-sec h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2.0;
    margin: 40px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ccc;
}
.media-sec h3:first-of-type {
    margin-top: 0;
}

/* リード文 */
.media-sec > p {
    font-size: 1.35rem;
    line-height: 2.4;
    margin-bottom: 30px;
}

/* --- media-list --- */
.media-list {
    margin-bottom: 40px;
}
.media-list dl {
    margin: 0;
}

/* SP：dl-group は縦積み */
.dl-group {
    margin-bottom: 24px;
}
.dl-group:last-child {
    margin-bottom: 0;
}

/* dt：two-col-item の h4 と同デザイン */
.media-list dt {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2.0;
    margin: 0 0 6px;
    padding: 4px 10px;
    background-color:#ececec;
    border-left: 2px solid #7f7f7f;
}

/* dd */
.media-list dd {
    font-size: 1.3rem;
    line-height: 2.4;
    letter-spacing: 0.06em;
    padding: 0 0 0 10px;
}

/* --- two-col-wrap：SP は縦積み --- */
.two-col-wrap {
    margin-top: 0;
}
.two-col-item {
    margin-bottom: 35px;
}
.two-col-item:last-child {
    margin-bottom: 0;
}

/* two-col-item 内 h3 */
.two-col-item h3 {
    margin-top: 0;
}

/* リスト共通 */
.media-sec ul,
.two-col-item ul {
    margin: 0;
    padding-left: 1.6em;
}
.media-sec ul li,
.two-col-item ul li {
    list-style: disc;
    font-size: 1.3rem;
    line-height: 2.4;
    letter-spacing: 0.06em;
}

/* リンクボタン */
.media-sec .profile-sec-link {
    margin-top: 40px;
    text-align: right;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s;
    transition-delay: .6s;
}
.media-sec.scrollin .profile-sec-link {
    opacity: 1;
    transform: translateY(0);
}


/* --- PC（960px〜）--- */
@media only screen and (min-width: 960px) {

    .media-sec {
        padding: 80px 11.4%;
    }

    /* media-list：dl-group を2カラムグリッドに */
    .media-list dl {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 60px;
        align-items: start;
    }
    .dl-group {
        margin-bottom: 0; /* gridが間隔を管理 */
    }

    /* two-col-wrap：2カラムグリッド */
    .two-col-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 60px;
    }
    .two-col-item {
        margin-bottom: 0;
    }

}


/* =========================================
   accordion
   ========================================= */

.accordion-group {
    margin-top: 20px;
}

/* accordion-item 内を flex で横並びに */
.accordion-item {
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 16px;
}
.accordion-item:first-of-type {
    border-top: 1px solid #ccc;
}

/* タイトル */
.accordion-title {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
    padding: 14px 0 4px;
}

/* details を flex 子要素として扱う */
.accordion-details {
    display: contents; /* details自体はレイアウトに関与させない */
}

/* more トグル：タイトルの右横に */
.accordion-toggle {
    flex-shrink: 0;
    display: block;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #999;
    padding: 14px 0 4px;
    list-style: none;
    user-select: none;
    white-space: nowrap;
}
.accordion-toggle::-webkit-details-marker {
    display: none;
}
.accordion-details[open] .accordion-toggle {
    color: #111;
}

/* 本文：横幅100%で下に展開 */
.accordion-body {
    width: 100%;
    padding: 0 0 20px;
}
.accordion-body p {
    font-size: 1.2rem;
    line-height: 2.4;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}
.accordion-body p:last-child {
    margin-bottom: 0;
}

/* profile-sec-link を複数並べる場合の間隔 */
.nh-text-side .profile-sec-link + .profile-sec-link {
    margin-top: 16px;
}




/* tablet 560px - 959px */
@media only screen and (min-width: 560px) {
#header > p {
        padding: 0 18%;
    }

/* header
----------------------------------------- */

/* main-visual-area */
.main-visual-area {
	position: relative;
	margin-bottom: 100px;
	/* width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100); */
	padding-top: 150px;
}
.main-visual {
	position: relative;
	padding-right: 100px;
}
.main-visual-copy-jpn {
	position: absolute;
	bottom: 16%;
	right: calc(100px - 1.8vw);
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.6vw;
	font-weight: 300;
	letter-spacing: 0.14em;
	line-height: 2.5;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	vertical-align: top;
	z-index: 100;
}
.main-visual-copy-jpn span {
	display: inline-block;
	transform: translateY(15px);
	opacity: 0;
	transition: all .8s;
}
.main-visual-area.fade-in .main-visual-copy-jpn span {
	transform: translateY(0);
	opacity: 1;
}
.main-visual-copy-jpn span.copy01 {
	transition-delay: .1s;
}
.main-visual-copy-jpn span.copy02 {
	transition-delay: .2s;
}
.main-visual-copy-jpn span.copy03 {
	transition-delay: .3s;
}
.main-visual-copy-jpn span.copy04 {
	transition-delay: .4s;
}
.main-visual-copy-eng {
	position: relative;
	margin: -9.3vw 0 0 0;
	/* margin: -85px 0 0 0; */
	z-index: 10;
	opacity: 0;
	transform: translateY(20px);
	transition: all 1.0s;
	transition-delay: .6s;
}
.main-visual-area.fade-in .main-visual-copy-eng {
	transform: translateY(0);
	opacity: 1;
}


/* contents
----------------------------------------- */


/* profile-sec */
.profile-sec {
	margin-bottom: 95px;
	padding-bottom: 30px;
	overflow: hidden;
}
.profile-sec-img-side {
	padding-left: 18%;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
}
.profile-sec.scrollin .profile-sec-img-side {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-text-side {
	position: relative;
	padding-bottom: 10px;
}
.profile-sec-text-side::before {
	content: "";
	position: absolute;
	top: 60px;
	right: -7px;
	width: 100px;
	height: 205px;
	background-size: 100px 205px;
	z-index: -10;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .8s;
}
.profile-sec-text-side.scrollin::before {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-ttl {
	position: relative;
  margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 18%;
	padding-top: 10px;
	font-size: 2.0rem;
	line-height: 1.7;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .2s;
}
.profile-sec-text-side.scrollin .profile-sec-ttl {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-ttl::before {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	width: 84%;
	height: 42px;
	background-color: #F5F5F5;
}
.profile-sec-text-side .sec-lead {
	margin-bottom: 30px;
	padding: 0 18%;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .4s;
}
.profile-sec-text-side.scrollin .sec-lead {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-link {
	padding: 0 18%;
	text-align: right;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .6s;
}
.profile-sec-text-side.scrollin .profile-sec-link {
	transform: translateY(0);
	opacity: 1;
}




} /* tablet end */




/* PC 960px - */
@media only screen and (min-width: 960px) {


/* header
----------------------------------------- */
#header > p {
        padding: 0 11.4%;
    }

/* main-visual-area */
.main-visual-area {
	position: relative;
	margin-bottom: 50px;
	/* width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100); */
	padding-top: 240px;
}
.main-visual {
	position: relative;
	padding-right: 200px;
}
.main-visual-copy-jpn {
	position: absolute;
	bottom: auto;
	top: 25%;
	right: calc(200px - 20px);
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 0.13em;
	line-height: 2.7;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	vertical-align: top;
	z-index: 100;
}
.main-visual-copy-jpn span {
	display: inline-block;
	transform: translateY(15px);
	opacity: 0;
	transition: all .8s;
}
.main-visual-area.fade-in .main-visual-copy-jpn span {
	transform: translateY(0);
	opacity: 1;
}
.main-visual-copy-jpn span.copy01 {
	transition-delay: .1s;
}
.main-visual-copy-jpn span.copy02 {
	transition-delay: .2s;
}
.main-visual-copy-jpn span.copy03 {
	transition-delay: .3s;
}
.main-visual-copy-jpn span.copy04 {
	transition-delay: .4s;
}
.main-visual-copy-eng {
	position: relative;
	margin: -9.2vw 0 0 0;
	z-index: 10;
	opacity: 0;
	transform: translateY(20px);
	transition: all 1.0s;
	transition-delay: .6s;
}
.main-visual-area.fade-in .main-visual-copy-eng {
	transform: translateY(0);
	opacity: 1;
}


/* contents
----------------------------------------- */

/* profile-sec */
.profile-sec {
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-bottom: 95px;
	padding-bottom: 30px;
	padding-top: 60px;
	overflow: hidden;
}
.profile-sec-img-side {
	width: 57%;
	padding: 0;
	transform: translateY(0);
	opacity: 0;
	transition: all 1.0s;
}
.profile-sec.scrollin .profile-sec-img-side {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-text-side {
	position: static;
	width: 52.8%;
	margin: 15vw 0 0 -10%;
	padding: 6.2vw 3% 10px 0;
	background-color: rgba(245, 245, 245, 0.85);
	z-index: 10;
}
.profile-sec-text-side::before {
	content: "";
	position: absolute;
	top: 0;
	right: -27px;
	width: 208px;
	height: 428px;
	background-size: 208px 428px;
	z-index: 10;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .5s;
}
.profile-sec.scrollin .profile-sec-text-side::before {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-ttl {
	position: relative;
	margin-bottom: 40px;
	padding-left: 18%;
	padding-top: 10px;
	font-size: 2.6rem;
	line-height: 1.6;
	letter-spacing: 0.1em;
	z-index: 100;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .1s;
}
.profile-sec.scrollin .profile-sec-ttl {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-ttl::before {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	width: 84%;
	height: 42px;
	background-color: #F5F5F5;
}
.profile-sec-text-side .sec-lead {
	position: relative;
	margin-bottom: 65px;
	padding: 0 18%;
	z-index: 100;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .3s;
}
.profile-sec.scrollin .sec-lead {
	transform: translateY(0);
	opacity: 1;
}
.profile-sec-link {
	padding: 0 18%;
	text-align: right;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .4s;
}
  
.profile-sec.scrollin .profile-sec-link {
	transform: translateY(0);
	opacity: 1;
}

.profile-sec-text-side .profile-sec-link-wrap {
    padding: 0 13.3%;
    text-align: right;
}

/* PC（960px〜）：横並びに */
@media only screen and (min-width: 960px) {
    .profile-sec-text-side .profile-sec-link-wrap {
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: flex-end;
        padding: 0 18%;
    }
    /* wrap内の各リンクのpaddingをリセット（wrapが管理するため） */
    .profile-sec-text-side .profile-sec-link-wrap .profile-sec-link {
        padding: 0;
    }
}

} /* PC end */



/* PC:1201px - */
@media only screen and (min-width: 1201px) {


} /* PC end */



/* PC:1601px - */
@media only screen and (min-width: 1601px) {



} /* PC end */

html {
	font-size: 62.5%; /* 1rem = 10px 基準 */
}

body {
	font-family: 'HiraginoMinchoProW3', "ヒラギノ明朝 ProN W3", serif;
	font-size: 1.4rem;
	color: #111;
	line-height: 2.0;
	letter-spacing: 0.06em;
	text-align: left;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #F5F5F5;
}

a {
	color: #111;
	text-decoration: none;
}

a:hover {
	color: #111;
	text-decoration: none;
}

/* 全要素のボックスサイズ計算 */
* {
	box-sizing: border-box;
}

/* 画像レスポンシブ */
img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	vertical-align: bottom;
}


.logo img {
    height: 40px;
}

.main-nav {
    position: absolute;
    right: 2rem;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
    border-radius: 2px;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #474747;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 2rem 0;
    gap: 2rem;
    z-index: 999;
    list-style: none;
    margin: 0;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 0;
    list-style: none;
}

.main-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
    white-space: nowrap;
    display: block;
    padding: 0.5rem;
}

.main-nav a:hover {
    opacity: 0.8;
}

.instagram-link img {
    height: 24px;
    width: auto;
    vertical-align: middle;
}

/* =========================================
   Footer（kobeページより）
   ========================================= */
footer {
    background-color: #474747;
    color: white;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 0;
}

footer img {
    height: 60px;
    flex-shrink: 0;
}

footer > div {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer .inner {
    border: 2px solid white;
    padding: 1.2rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

footer .inner::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: white;
    transform: translateX(-50%);
}

footer .inner > div:first-child {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer address {
    flex: 1;
    font-style: normal;
    line-height: 1.5;
    font-size: 1.2rem;
    text-align: left;
}

footer address p {
    margin-bottom: 0.3rem;
}

footer nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

footer nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

footer nav a:hover {
    opacity: 0.8;
}

footer small {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    footer {
        padding: 1rem;
    }
    footer .inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    footer .inner::after {
        display: none;
    }
    footer .inner > div:first-child {
        flex: none;
        justify-content: center;
    }
    footer address {
        flex: none;
        text-align: center;
    }
    footer nav ul {
        justify-content: center;
        gap: 1rem;
    }
    footer nav a {
        font-size: 0.85rem;
    }
}