@charset "utf-8";

/*Google Fonts（Playfair Display）*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/*Font Awesome*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*日本語フォント*/
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@400;700&display=swap');



/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
/*@import url("inview.css");  =============画像をゆっくり表示させるやつ、不要にしている===========*/
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--bg-color: #fff;			/*主にテンプレートの背景色*/
	--bg-inverse-color: #333;	/*上のbg-colorの対として使う色*/
	
    --primary-color: #7BAFD4;		/*テーマカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対として使う色*/

	--content-space: 2vw;	/*色々な余白管理用。画面幅100% = 100vwです。*/

}


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: 'LINE Seed JP', "Meiryo", "メイリオ", sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section > ol,section > ul {margin-left: 2rem;}


/*sectionの設定
---------------------------------------------------------------------------*/
section {
    margin: 40px auto;
    padding: 30px 20px;
    max-width: 100%;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	opacity: 0.7;	/*色を70%だけ出す*/
}


/*conatiner（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
    animation: opa1 0.2s 0.4s both;
    display: flex;             /* grid から flex に変更 */
    flex-direction: column;    /* 中身を縦に並べる */
    min-height: 100vh;         /* 最低でも画面一杯の高さにする */
    min-height: 100dvh;
    padding: var(--content-space) var(--content-space) 0;
}
main {
    flex: 1; /* これが重要！コンテンツが少なくてもフッターを最下部へ押しやります */
}


/* 下記の grid-template-rows の指定は不要になるので削除またはコメントアウト */
/* body:not(.home) #container {
    grid-template-rows: auto 1fr;
} */


/*header（ロゴが入ったブロック）
---------------------------------------------------------------------------*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #7BAFD4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	margin-bottom: 20px;
}

/* ロゴの余白リセット */
#logo {
    margin: 0;
}

/* メニューを右へ寄せる */
#menubar {
    margin-left: auto;
}

/* メニュー横並び */
#menubar ul {
    display: flex;
    align-items: center;
    gap: 25px;
}


/*ロゴ画像*/
#logo {margin: 0;}
#logo img {
	display: block;
	width: 200px;	/*ロゴの幅*/
}

/*ロゴ（※テキストで使う場合）*/
#logo a {
	text-decoration: none;
	display: block;
	font-size: 1.2rem;	/*文字サイズ120%*/
}


/*ヘッダー内メニュー（大きな端末で見える横並びメニュー設定）
---------------------------------------------------------------------------*/
.large-screen #menubar ul {
	display: flex;
	gap: 1.5rem;	/*メニュー同士の間にとる余白。1.5文字分。*/
	align-items: center;
}
.large-screen #menubar ul a {
	display: block;text-decoration: none;
}


/*開閉メニュー（小さな端末用のメニュー設定）
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;		/*ブロック内の余白*/
	background: var(--bg-color);	/*背景色。冒頭のbg-colorを読み込みます。*/
	color: var(--bg-inverse-color);	/*文字色。冒頭のbg-inverse-colorを読み込みます。*/
}

.small-screen #menubar {display: none;}

/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 5px;		/*角を少し丸くする*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: var(--bg-inverse-color);	/*背景色ですが、ここでは線の色になります。冒頭のbg-inverse-colorを読み込みます。*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}


/*list-grid（３列に並んだリストブロック）
---------------------------------------------------------------------------*/
.list-grid .list * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	gap: 40px;	/*ブロックの間に空けるスペース*/
	text-align: center;	/*ブロック内をセンタリング*/
}

/* 高さを揃える */
.list-grid .list {
    height: 100%;
}

/* タブレット（2列） */
@media screen and (max-width: 900px) {
    .list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* スマホ（1列） */
@media screen and (max-width: 600px) {
    .list-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/*ボックス内のfigure画像*/
.list-grid .list figure {
	margin-bottom: 0.5rem;
}

/*ボックス内のp（文章）*/
.list-grid p {
    font-weight: normal;
    font-size: 0.95rem;    /* 少し大きくして視認性アップ */
    line-height: 1.7;      /* 適度な行間に調整 */
    text-align: justify;   /* 両端を揃えてきれいに見せる */
    margin-top: 10px;
}

/*2カラムブロック（※900px未満では１カラム）スタッフ紹介ページで使用。
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.list-half .list {
	display: flex;
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける*/
}

/*ブロック内のh4見出し*/
.list-half .list h4 {
	font-size: 1.4rem;	/*文字サイズを1.4倍*/
}

/*画像ブロック共通*/
.list-half .image-l img, .list-half .image-r img {
	border-radius: 50px;	/*角を丸くする指定。*/
	box-shadow: 10px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*２カラムを囲むブロック*/
		.list-half .list {
			gap: 2rem;
			flex-direction: row;			/*子要素を横並びにする*/
			justify-content: space-between;	/*並びかたの種類の指定*/
			align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
		}
		
		/*画像ブロック共通*/
		.list-half .image-l, .list-half .image-r {
			width: 50%;			/*画像の幅*/
		}
		
		/*画像を左に配置する場合*/
		.list-half .image-l {
			order: -1;
		}

		/*テキストブロック*/
		.list-half .text {
			flex: 1;
		}

	}/*追加指定ここまで*/


/*お知らせページ（new.html）
---------------------------------------------------------------------------*/
	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;
		gap: 1rem;  /*日付や文章の間にとるスペース。１文字分。*/
		grid-template-columns: auto 1fr;	/* 日付の幅は自動で、内容が入るブロックは残り幅一杯とる。 */
	}

	}/*追加指定ここまで*/


/* ===============================
   ボタン共通（ベース）
=============================== */
.btn {
    text-align: center;
}

.btn a,
.cta-btn {
    display: inline-block;
    text-decoration: none;

    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;

    border-radius: 6px;
    margin-top: 2rem;

    color: #fff;
    background: var(--primary-color);

    transition: all 0.3s ease;
}

/* hover共通 */
.btn a:hover,
.cta-btn:hover {
    transform: translateY(-3px);
    opacity: 0.95;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===============================
   セクション別カラー
=============================== */

/* ウィーン（ゴールド） */
.wien-section .btn a {
    background: linear-gradient(135deg, #d4af37, #a67c00);
}
.wien-section .btn a:hover {
    background: linear-gradient(135deg, #b8962e, #8c6500);
}

/* グループ（ティール） */
.group-section .btn a {
    background: linear-gradient(135deg, #5aa6a6, #2f6f73);
}
.group-section .btn a:hover {
    background: linear-gradient(135deg, #4b8f8f, #255a5d);
}

/* 出張（ネイビー） */
.indivi-section .btn a {
    background: linear-gradient(135deg, #4a6fa5, #2c4a73);
}
.indivi-section .btn a:hover {
    background: linear-gradient(135deg, #3c5c8a, #223a59);
}

/* ===============================
   CTA（最重要ボタン）
=============================== */
.cta-btn {
    background: linear-gradient(135deg, #0072ce, #004a8f);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #005bb5, #003a6f);
}

/* ===============================
   メニュー用（例外）
=============================== */
.large-screen #menubar .btn a,
.small-screen #menubar .btn a {
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: normal;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;	/*ボックス内の余白*/
	background: rgba(0,0,0,0.1);	/*背景色*/
	color: #333;	/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid rgba(0,0,0,0.3);	/*テーブルの上の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
	width: 100%;				/*幅*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(0,0,0,0.3);	/*テーブルの下の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/


/*フッター
---------------------------------------------------------------------------*/
footer * {margin: 0;padding: 0;}

/*ブロック全体*/
footer {
    margin: 0;
    padding: 10px 0; /* 【重要】上下の余白を最小限（10px）にします */
    text-align: center;
    border-top: 1px solid #eee; /* 線を太い青から細いグレーに変えるとより洗練されます */
    background: #fff;
}

/*Copyright部分*/
footer small {
	display: block;
}


/*SNSアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;	/*アイコン同士に空けるスペース*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr {
	margin-left: 0;
	margin-right: 0;
}
.pr a {
	text-decoration: none;display: block;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
	background: #555;
	color: #ccc;
}
.pr a::before {
	font-family: 'LINE Seed JP', "Meiryo", "メイリオ", sans-serif;
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*お知らせブロック
---------------------------------------------------------------------------*/

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;
		grid-template-columns: auto 1fr;
	}
	
	/*日付の右側にスペースを作る*/
	.new dt {
		margin-right: 2rem;
	}

	}/*追加指定ここまで*/


/*bg1背景
---------------------------------------------------------------------------*/
/* --- bg1（出張・業務渡航）の余白を統一 --- */
.bg1 {
    background: #f0f7fc;
    padding: var(--content-space) 0;
}

/* 左右のズレの原因だった margin を 0 にして統一 */
.bg1 section {
    max-width: 100%;
    margin: 0 auto;
}

/* タイトル上部の余白リセット */
.bg1 section h2:first-child {
    margin-top: 0;
}

/* --- スライドショーの動作を安定させる --- */
.slide > div:not(.hero-text) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
}

.slide > div.active {
    opacity: 1;
    z-index: 2;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #c02340 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;height: 50px;       /* input用 */}
.wl {width: 95%;display: block;}
.padding0 {padding: 0 !important;}
.mb0 {margin-bottom: 0px !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.7); color: #fff; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.look .color-check {color: yellow !important;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.block {display: block !important;}

/* コンタクトインフォメーション・バーの設定 */
.contact-footer-bar {
    background: linear-gradient(135deg, #7BAFD4 0%, #568db3 100%); /* UNCブルー基調 */
    color: #fff;
	max-width: 100%;
    padding: 30px 0;
    margin-top: 0;
    text-align: center;
}

.contact-wrapper {
    max-width: 90%;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    opacity: 0.8;
}

.contact-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-item .label {
    font-size: 0.7rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 12px;
    letter-spacing: 0.05em;
}

.contact-item .value {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-item .value a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item .value a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* スマホ表示用の調整 */
@media screen and (max-width: 700px) {
    .contact-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .contact-item {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ファーストビュー文字 ===== */
.slide {
    position: relative;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
    padding: 20px 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    background: rgba(0,0,0,0.25); /* ← ここが下地 */
    backdrop-filter: blur(8px);   /* ← ぼんやり効果（超重要） */
    border-radius: 16px;

    color: #fff;
    z-index: 10;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}


        /* 追加のデザイン調整（OUR JOURNEYSの透かし演出用） */
        .section-title-wrapper {
            position: relative;
            text-align: center;
            margin: 80px 0 50px;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Playfair Display', serif;
            font-size: 8rem;
            color: rgba(0, 91, 172, 0.05); /* style.cssのprimary-colorに合わせた薄い色 */
            white-space: nowrap;
            z-index: 1;
            letter-spacing: 0.2em;
            pointer-events: none;
        }
        .main-title {
            position: relative;
            z-index: 2;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin: 0;
            letter-spacing: 0.1em;
        }
        .sub-title {
            position: relative;
            z-index: 2;
            display: block;
            font-size: 0.9rem;
            color: #888;
            margin-top: 10px;
            font-weight: bold;
        }
    /* ウィーンセクションの特別カラー */
        .wien-section {
	    background-color: #fdfaf0;
    	padding: var(--content-space) 0;
    	border-top: 3px solid #d4af37;
	    max-width: 90%; /← 1200より少し狭く */
		width: 90%;
    	margin: 0 auto;      /* ← 中央寄せ */
    	padding: 30px 20px; /* 通常sectionと同じ余白 */
		}
        .wien-section h2 { color: #a67c00; }

	/* 社員旅行・グループ旅行・個人旅行セクションの特別カラー */
        .group-section {
	    background: #eef6f5;
    	padding: var(--content-space) 20px;  /* ← 左右の余白を消す */
    	border-top: 3px solid #5aa6a6;
	    max-width: 90%;   /* ← 1200より少し狭く */
    	margin: 0 auto;      /* ← 中央寄せ */
    	padding: 30px 20px; /* 通常sectionと同じ余白 */
		}
        .group-section h2 { color: #2f6f73; }

	/* indiviセクションの特別カラー */
        .indivi-section {
    	background: #f1f4f8;
    	padding: var(--content-space) 20;  /* ← 左右の余白を消す */
    	border-top: 3px solid #4a6fa5;
	    max-width: 90%; /← 1200より少し狭く */
    	margin: 0 auto;      /* ← 中央寄せ */
    	padding: 30px 20px; /* 通常sectionと同じ余白 */
		}
        .indivi-section h2 { color: #2c4a73; }


.container {
    max-width: 100%;
	margin: 0 auto;
    padding: 0 20px;
}

/* ウィーンカード画像 */
.wien-section .list figure {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.wien-section .list img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wien-section .list {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ホバーで少しズーム（高級感） */
.wien-section .list:hover img {
    transform: scale(1.05);
}

/* グループカード画像 */
.group-section .list figure {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.group-section .list img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.group-section .list {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ホバーで少しズーム（高級感） */
.group-section .list:hover img {
    transform: scale(1.05);
}

/* グループカード画像 */
.indivi-section .list figure {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.indivi-section .list img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.indivi-section .list {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ホバーで少しズーム（高級感） */
.indivi-section .list:hover img {
    transform: scale(1.05);
}

/* グループ旅行ページのメイン全体の横幅をヘッダーに合わせる */
.home main .group-section {
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
}

/* 3つ並んだカードや、下の透かし詳細セクションの横幅も最大に広げる */
.home main .list-grid,
.home main .list-half {
    max-width: 100% !important;
}