/* =========================
BASE
========================= */

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family:
		"Helvetica Neue",
		Arial,
		sans-serif;
	font-size: 1.3rem;
	font-weight: 400;
	/* line-height: 2; */
	letter-spacing: 0.05em;
	color: #2b2b2b;
	background: #fafafa;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body {
	position: relative;

	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at 12% 18%,
			rgba(214, 200, 190, 0.28),
			transparent 22%),
		radial-gradient(circle at 82% 72%,
			rgba(180, 190, 210, 0.22),
			transparent 24%);
	pointer-events: none;
	z-index: -1;
	filter: blur(40px);
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background-image:
		url("https://www.transparenttextures.com/patterns/noise.png");
	opacity: 0.025;
	pointer-events: none;
	z-index: -1;
	mix-blend-mode: multiply;
}

img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

a {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	opacity: 0.6;
}

ul {
	list-style: none;
}

/* =========================
COMMON
========================= */

.section-inner,
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

section {
	padding: 40px 0;
}

/* =========================
TYPOGRAPHY
========================= */

h1 {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.08em;
	color: #222;
}

h2 {
	font-size: 2.6rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.08em;
	color: #222;
}

h3 {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.04em;
	color: #222;
}

p {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #2b2b2b;
}

/* =========================
HEADER
========================= */

.header {
	width: 100%;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid #e5e5e5;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	backdrop-filter: blur(8px);
}

.header-inner {
	width: 90%;
	max-width: 1200px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
}

.nav-list {
	display: flex;
	gap: 40px;
}

.nav-list a {
	font-size: 1.2rem;
	letter-spacing: 0.14em;
	color: #333;
}

/* =========================
INTRO
========================= */

.intro {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 120px 20px 80px;
}

.intro-inner {
	width: 100%;
	max-width: 600px;
}

.intro-img {
	width:400px;
	margin-bottom: 50px;
}

.intro-text {
	line-height: 2.2;
}

.intro-message {
	font-size: 2rem;
	margin-bottom: 40px;
	letter-spacing: 0.08em;
	line-height: 1.8;
	color: #222;
}

/* =========================
ABOUT
========================= */

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px 60px;
}

.about-title {
	margin-bottom: 24px;
}

.profile-img {
	width: 220px;
	margin-bottom: 24px;
}

.profile-list li {
	display: flex;
	/* gap: 12px;
	margin-bottom: 14px; */
}

.profile-list span {
	min-width: 110px;
	font-weight: 500;
	color: #222;
}

.skill-img {
	max-width: 520px;
}

/* =========================
CAREER
========================= */

.career-item {
	margin-bottom: 28px;
}

.career-period {
	font-weight: 500;
	color: #222;
	/* line-height: 1.8;
	margin-bottom: 4px; */
}

.career-detail {
	padding-left: 1.2em;
	color: #2b2b2b;
	line-height: 1.9;
}

/* =========================
LICENSE
========================= */

.license-item {
	margin-bottom: 28px;
}

.license-category {
	font-weight: 500;
	color: #222;
	/* line-height: 1.8;
	margin-bottom: 4px; */
}

.license-detail {
	padding-left: 1.2em;
	color: #2b2b2b;
	/* line-height: 1.9; */
}

/* =========================
WEB WORKS
========================= */

.works-title {
	margin-bottom: 20px;
}

.works-lead {
	margin-bottom: 60px;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.work-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	overflow: hidden;
	transition: 0.3s;
}

.work-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.work-img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

.work-text {
	padding: 28px;
}

.work-name {
	margin-bottom: 18px;
}

.work-description {
	margin-bottom: 24px;
}

.work-skill {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.work-skill li {
	font-size: 1.2rem;
	padding: 6px 12px;
	background: #f3f3f3;
	border-radius: 999px;
	color: #555;
}

.work-button,
.graphic-open {
	display: inline-block;
	font-size: 1.5rem;
	letter-spacing: 0.12em;
	border-bottom: 1px solid #333;
	padding-bottom: 4px;
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	border-radius: 0;
	color: #333;
	cursor: pointer;
}

/* =========================
FUTAKOTAMAGAWA TERRACE CLINIC
========================= */
.futako-clinic-card .work-img {
	object-fit: cover;
	object-position: center;
	padding: 0;
}

/* =========================
ECOSYSPICE
========================= */

.ecosyspice-card .work-img {
	object-fit: cover;
	object-position: center 35%;
	padding: 0;
}

/* =========================
GRAPHIC
========================= */

.section-heading {
	margin-bottom: 60px;
}

.section-heading h2 {
	margin-bottom: 18px;
}

.graphic-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.graphic-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	transition: 0.3s;
}

.graphic-card:hover {
	transform: translateY(-5px);
}

.graphic-card img {
	height: 260px;
	object-fit: contain;
	background: #f5f5f5;
	padding: 20px;
}

.graphic-card-body {
	padding: 28px;
}

.graphic-card-body h3 {
	margin-bottom: 14px;
}

.graphic-card-body p {
	margin-bottom: 24px;
}

/* =========================
GRAPHIC MODAL
========================= */

.graphic-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
	z-index: 9999;
}

.graphic-modal.active {
	display: flex;
}

.graphic-modal-inner {
	position: relative;
	width: 90vw;
	max-width: 1600px;
}

.graphic-modal-inner img {
	width: 100%;
	max-height: 92vh;
	object-fit: contain;
	border-radius: 10px;
}

.modal-close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	color: #fff;
	font-size: 3rem;
	cursor: pointer;
}

/* =========================
CONTACT
========================= */

.contact {
	border-top: 1px solid #e8e8e8;
	padding-bottom: 100px;
}

.contact .section-heading{
	display:flex;
	flex-direction:column;
	align-items:center;
	text-align:center;
}

.contact-content {
	display: flex;
	justify-content:center;
	gap: 40px;
	margin-top: 60px;
	flex-wrap: wrap;
}

.contact-item h3 {
	margin-bottom: 14px;
}

.contact-item p,
.contact-item a {
	font-size: 1.5rem;
	line-height: 1.0;
	color: #222;
}

/* ========================================
   トップへ戻るボタン
   角丸スクエア版
======================================== */

#page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100; /* 他の要素より上に */
}

#page-top a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: auto;

    /* border-radius: 14px; */

    border: 1px solid rgba(255,255,255,0.95);

    background-color: rgba(255,255,255,0.18);

    box-shadow: black 1px 1px 1px -1px;

    transition:
        transform 0.3s,
        opacity 0.3s,
        border-color 0.3s,
        background-color 0.3s;

    opacity: 0.8;
}


/* hover */

#page-top a:hover {

    transform: translateY(-3px);

    opacity: 1;

    border-color: #ffffff;

    background-color: rgba(255,255,255,0.26);
}



/* =========================
FOOTER
========================= */

.footer {
	padding: 30px 0;
	border-top: 1px solid #e8e8e8;
	background: #fff;
}

.footer p {
	font-size: 1.3rem;
	color: #777;
	text-align: center;
	letter-spacing: 0.05em;
}



/* =**====================================**= */
/* =========================
WORK DETAIL PAGE
========================= */
.work-detail-page {
	background: #f7f8f7;
	position: relative;
	overflow-x: hidden;
}

/* =========================
BACKGROUND
========================= */
.work-detail-page::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: url("../img/bg-bluegreen.webp");
	background-size: 120%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.1;
	filter: blur(2px);
	pointer-events: none;
	z-index: -1;
}

/* =========================
HEADER
========================= */
.work-header {
	width: min(1280px, 92%);
	margin: 0 auto;
	padding-top: 18px;
}

.back-link {
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #111;
	position: relative; /* 疑似要素の位置の基準 */
	overflow: hidden;   /* はみ出た光を隠す */
	display: inline-block; /* 変化をしっかり出すため */
	text-decoration: none;
}

/* 光の筋を作る（疑似要素） */
.back-link::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%; /* 最初は左側に隠しておく */
	width: 50%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.6) 50%, /* ここが光る部分 */
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-25deg); /* 斜めに傾ける */
	transition: none;
}

/* ホバー時に光を左から右へ流す */
.back-link:hover::after {
	left: 150%;
	transition: 0.6s ease-in-out; /* スッと動くスピード */
}

/* 文字自体の色も少しだけ上品に変化させる場合 */
.back-link:hover {
	color: #555; /* ほんの少し柔らかい色に */
}


/* =========================
MAIN
========================= */
.work-detail {
	width: min(1280px, 92%);
	margin: 0 auto;
	padding: 24px 0 10px;
}

/* =========================
HERO
========================= */
.detail-hero {
	margin-bottom: 40px;
}

.clinic-page .detail-category {
	font-size: 1.2rem;
	letter-spacing: 0.14em;
	color:  #1A365D;
	margin-bottom: 12px;
}

.detail-hero h1 {
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
	color: #111;
	margin-bottom: 18px;
}

.detail-lead {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #1a1a1a;
	margin-bottom: 22px;
}

/* =========================
ROLE TAG
========================= */
.detail-role-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.detail-role-tags span {
	background: #233d78;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	padding: 8px 14px;
}

/* =========================
INFO
========================= */
.detail-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 28px;
}

.detail-info li {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #1a1a1a;
}

/* =========================
MOCKUP
========================= */

.detail-hero-mockup{
	max-width:1000px;
	margin:0 auto;
}

.detail-hero-mockup img{
	width:100%;
	display:block;
	margin:0 auto;
}


/* =========================
ROW
========================= */
.detail-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 42px;
	margin-bottom: 24px;
}

/* =========================
SECTION
========================= */
.detail-section {
	width: 100%;
}

/* =========================
HEADING
========================= */
.detail-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
}

.detail-heading img {
	width: 28px;
	height: auto;
	flex-shrink: 0;
	display: block;
}

/* =========================
TEXT
========================= */
.detail-text {
	font-size: 1.6rem;
	line-height: 1.6;
	color: #1a1a1a;
}

/* =========================
PERSONA
========================= */
.persona-row {
	align-items: start;
}

.target-section {
	max-width: 420px;
}

.persona-section {
	max-width: 760px;
}

.persona-image {
	margin-bottom: 16px;
}

.persona-image img {
	width: 82%;
	max-width: 460px;
	height: auto;
	max-height: 260px;
	
	object-fit: cover;
	/* object-position:center top; */
	display: block;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.03);
}

/* =========================
RESPONSIVE
========================= */
.responsive-section {
	margin-top: 8px;
}

.responsive-section .detail-text{
	text-align:center;
}

.responsive-image {
	margin-bottom: 16px;
}

.clinic-page .responsive-image img{
	width:65%;
	max-width:700px;
	display:block;
	margin:0 auto;
}

/* =========================
BUTTON
========================= */
.visit-site {
	margin: 60px auto 80px;
	text-align: center;
}

.visit-site a {
	display: inline-block;
	padding: 16px 46px;
	border: 1px solid #222;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #111;
	transition: 0.35s;
}

.visit-site a:hover {
	background: #0c1836;
	color: #FFFF00;
}

/* =========================
RESPONSIVE
========================= */
@media screen and (max-width:768px) {

	.work-detail {
		width: min(92%, 680px);
		padding: 20px 0 60px;
	}

	.detail-hero h1 {
		font-size: 4rem;
	}

	.detail-lead {
		font-size: 1.9rem;
	}

	.detail-row {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.detail-heading {
		font-size: 2.5rem;
	}

	.detail-text {
		font-size: 1.75rem;
	}

	.detail-info li {
		font-size: 1.65rem;
	}

	.persona-section {
		max-width: 100%;
	}

	.responsive-image img {
		max-width: 280px;
	}
}

/* ===ジビエ肉キーマカレー「エコスパ」=== */
/* =========================
WORK DETAIL PAGE
========================= */
.work-detail-page {
	background: #fbfaf6;
	position: relative;
	overflow-x: hidden;
}

/* =========================
BACKGROUND
========================= */
.spice-page::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: url("../img/bg-spice.webp");
	background-size: 140%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.1;
	filter: blur(3px);
	pointer-events: none;
	z-index: -1;
}

/* =========================
HEADER
========================= */
.work-header {
	width: min(1280px, 92%);
	margin: 0 auto;
	padding-top: 18px;
}

.back-link {
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #111;
	transition: 0.3s;
}

.back-link:hover {
	opacity: 0.6;
}

/* =========================
MAIN
========================= */
.work-detail {
	width: min(1280px, 92%);
	margin: 0 auto;
	padding: 24px 0 10px;
}

/* =========================
HERO
========================= */
.detail-hero {
	margin-bottom: 40px;
}

.spice-page .detail-category {
	font-size: 1.2rem;
	letter-spacing: 0.14em;
	color: #027d46;
	margin-bottom: 12px;
}

.detail-hero h1 {
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
	color: #111;
	margin-bottom: 18px;
}

.detail-lead {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #1a1a1a;
	margin-bottom: 16px;
	max-width: 760px;
}

.team-note {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 18px;
}

/* =========================
ROLE TAG
========================= */
.detail-role-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.detail-role-tags span {
	background: #233d78;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	padding: 8px 14px;
}

/* =========================
INFO
========================= */
.detail-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 28px;
}

.detail-info li {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #1a1a1a;
}

/* =========================
MOCKUP
========================= */
.detail-hero-mockup {
	max-width: 920px;
	margin: 0 auto;
}

.detail-hero-mockup img {
	width: 82%;
	display: block;
	margin: 0 auto;
	box-shadow: rgba(255,255,255,0.26);
}

/* =========================
ROW
========================= */
.detail-row {
	display: grid;
	grid-template-columns: 1fr 1fr;

	column-gap: 72px;

	align-items: start;

	max-width: 1180px;
	margin: 0 auto 24px;
}

/* =========================
SECTION
========================= */
.detail-section {
	width: 100%;
}

/* =========================
HEADING
========================= */
.detail-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
}

.detail-heading img {
	width: 28px;
	height: auto;
	flex-shrink: 0;
	display: block;
}

/* =========================
TEXT
========================= */
.detail-text {
	font-size: 1.6rem;
	line-height: 1.6;
	color: #1a1a1a;
}

/* =========================
PERSONA
========================= */
.persona-row {
	align-items: start;
}

.target-section,
.persona-section {
	max-width: 100%;
}


.persona-image {
	margin-bottom: 16px;
}

.persona-image img {
	width: 82%;
	margin: 0 auto;

	max-width: 460px;
	max-height: 260px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

/* =========================
RESPONSIVE
========================= */
.responsive-section {
	margin-top: 8px;
}

.responsive-section .detail-text {
	text-align: center;
}

.responsive-image {
	margin-bottom: 16px;
	text-align: center;
}


.spice-responsive .responsive-image img{
	width:auto;
	height:min(660px,80vh);
	max-width:100%;

	display:block;
	margin:0 auto;
}

/* =========================
BUTTON
========================= */
.visit-site {
	margin: 60px auto 80px;
	text-align: center;
}

.visit-site a {
	display: inline-block;
	padding: 16px 46px;
	border: 1px solid #222;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #111;
	transition: 0.35s;
}

.visit-site a:hover {
	background: #233d78;;
	color: #FFFF00;
	border-color: #233d78;;
}

/* =========================
RESPONSIVE
========================= */
@media screen and (max-width:768px) {

	.work-detail {
		width: min(92%, 680px);
		padding: 20px 0 60px;
	}

	.detail-hero h1 {
		font-size: 4rem;
	}

	.detail-lead {
		font-size: 1.9rem;
	}

	.detail-row {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.detail-heading {
		font-size: 2.5rem;
	}

	.detail-text {
		font-size: 1.75rem;
	}

	.detail-info li {
		font-size: 1.65rem;
	}

	.persona-section {
		max-width: 100%;
	}

	.responsive-image img {
		max-width: 280px;
	}
}

/* ===================================
   ESTALIS ページ専用スタイル
=================================== */

/* =========================
BACKGROUND
========================= */
.estalis-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../img/bg-gold.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    /* 90度回転して縦方向に流す */
    transform: rotate(90deg) scale(1.6);

    opacity: 0.9;
    filter: blur(1px);
    pointer-events: none;
    z-index: -1;
}

/* =========================
CATEGORY COLOR（ESTALISのアクセントカラー）
========================= */
.estalis-page .detail-category {
    color: #B89C6A;
}

/* =========================
COLOR PALETTE
========================= */
.color-section {
    margin-top: 8px;
    margin-bottom: 8px;
}

.color-palette {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
    max-width: 640px;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.color-swatch {
    width: 54px;
    height: 54px;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.color-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.color-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
}

.color-desc {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
}

/* =========================
RESPONSIVE SECTION（ESTALIS）
========================= */
.estalis-responsive {
    margin-top: 8px;
}

.estalis-responsive .detail-text {
    text-align: center;
}

.estalis-responsive .responsive-image {
    margin-bottom: 16px;
    text-align: center;
}

.estalis-responsive .responsive-image img {
    width: auto;
    height: min(660px, 60vh);
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* =========================
VISIT SITE（clinic-pageと完全統一）
========================= */
.estalis-page .visit-site a:hover {
    background: #0c1836;
    color: #FFFF00;
    border-color: #222;
}

/* =========================
RESPONSIVE（768px以下）
========================= */
@media screen and (max-width: 768px) {

    .color-palette {
        gap: 22px;
    }

    .color-swatch {
        width: 46px;
        height: 46px;
    }

    .color-name {
        font-size: 1.65rem;
    }

    .color-desc {
        font-size: 1.55rem;
    }

    .estalis-responsive .responsive-image img {
        height: auto;
        max-width: 280px;
    }
}

/* ===================================
   HANS & VLIET ページ専用スタイル
=================================== */

/* =========================
BACKGROUND
========================= */
.hans-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../img/bg-orenge.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    /* 90度回転して縦方向に流す */
    transform: rotate(90deg) scale(1.6);

    opacity: 0.9;
    filter: blur(1px);
    pointer-events: none;
    z-index: -1;
}

/* =========================
CATEGORY COLOR（テラコッタ）
========================= */
.hans-page .detail-category {
    color: #B8401C;
}

/* =========================
レスポンシブ画像（全幅・単独）
========================= */
.hans-responsive-section {
    width: 100%;
    margin-bottom: 8px;
}

.hans-responsive-image {
    width: 100%;
    /* margin-bottom: 8px; */
}

.hans-responsive-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.hans-responsive-label {
    text-align: center;
}

.detail-text .hans-responsive-label{
	margin-top:-6px;
}

/* =========================
VISIT SITE（clinic-pageと完全統一）
========================= */
.hans-page .visit-site a:hover {
    background: #0c1836;
    color: #FFFF00;
    border-color: #222;
}

/* =========================
RESPONSIVE（768px以下）
========================= */
@media screen and (max-width: 768px) {

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