@charset "utf-8";
/*==========================================================================
   基本レイアウト
==========================================================================*/
* {
	box-sizing: border-box;
}
::before , ::after {
	box-sizing: inherit;
}

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

img {
	max-width: 100%;
	height: auto;
}
a:hover img {
	opacity: 0.7;
}
.pc {
	display: none;
}
.container,.inner {
	padding: 0 10px;
}
body {
	font: 1em/1.5 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic','Noto Sans JP', sans-serif;
	font-size: 0.875em;
}


body {
    background-color: #f9fafb;
}
/*==========================================================================
	header
==========================================================================*/
header {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    background: #fff;
}


header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 20px;
}


.main-mark {
    width: 80px;  
    height: auto;
}


.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.main-logo {
    width: 250px;
    height: auto;
}


.copy {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-top: 5px;
    letter-spacing: 0.1em;
}


.header-sns {
    display: flex;
    gap: 15px;
}
.header-sns i {
    font-size: 30px;
}
.header-sns a:hover {
    color: #069767;
}

header {
	border-bottom: solid 2px #243250;
	padding: 15px 0;
	background: #fff;
}





/* スマホ用（画面幅767px以下）の指定 */
@media screen and (max-width: 767px) {
    
    .header-logo a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
    header-logo {
        display: none;
    }

    
    .main-logo {
        width: 180px; 
        height: auto;
        margin-bottom: 8px;
    }

    .main-mark {
        width: 60px;
        height: auto;
    }

    
    .header-sns {
        justify-content: center;
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .banners li a {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 10px;
    }

    .banners li img {
        width: 80px;
        margin-right: 15px;
        flex-shrink: 0;
    }
}



.keyimg {
	background: url(../images/body_bg.jpg) no-repeat;
	margin-bottom: 10px;
}
.keyimg ul {
	max-width: 700px;
	margin: 0 auto;
}
.keyimg img {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.keyimg {
    padding: 20px 10px;
}

/*==========================================================================
	nav
==========================================================================*/
nav {
	border-top: solid 2px #243250;
	margin-bottom: 30px;
	background: linear-gradient(#fff 5%,#f4f4f4 50%,#ededed 50%,#fff 95%);
}
.menu {
	display: flex;
	max-width:  940px;
	margin: 0 auto;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 5px;/* ★変更★ */
	right: 16px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 48px;
	height: 48px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #d6d5d5;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #d6d5d5;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -100%;/* ★変更★ */
	top: 0px;
	width: 100%;/* ★変更★ */
	height: 100vh;
	background: rgba(90,90,90,0.7);/* ★変更★ */
	color: #fff;/* ★変更★ */
	transition: .3s;
	text-align: center;/* ★追加★ */
	font-size: 1.2rem;/* ★追加★ */
	line-height: 1;/* ★追加★ */
	font-weight: bold;/* ★追加★ */
	font-family: 'メイリオ';
	}
.menu span {
	font-size: 0.7rem;/* ★追加★ */
	font-weight: normal;/* ★追加★ */
}

.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .8);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	/*position: absolute;*/
	right: 0;
}
/* 768px以上はハンバーガーボタン非表示、ヘッダー固定 */
/* PC用メディアクエリの中の .menu を整理 */

@media screen and (min-width: 768px) {
	.btn {
		display: none;
	}
	.menu {
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		position: fixed;
		top: 30px;
		right: 0;
		width: 100%;
		/*height: 100px;*/
		height: 55px;
	}
}

/**************** ここまで、メニューのスタイリング ****************/
@media screen and (min-width: 768px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}

/*==========================================================================
	main
==========================================================================*/
main {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.container {
	max-width:  1200px;
	margin: 0 auto 60px;
}

main {
	margin-bottom: 50px;
}
main h2 {
	border-left: 5px solid #243250;
	padding-left: 20px;
	margin-bottom: 20px;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}
main .guide {
	margin-bottom: 50px;
}
main .guide img {
	display: block;
	margin: 0 auto 15px;
}
main .news {
	margin-bottom: 50px;
	overflow: hidden;
}
main .news dt {
	width: 13.5em;
	float: left;
	clear: left;
	padding-left: 2.5em;
	background: url(../images/icon_01.png) no-repeat left top 8px;
	padding-top: 10px;
}
main .news dd {
	border-bottom: 1px dotted #CCC;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 13.5em;
}
main .news dt {
    background: none;
    padding-left: 0;
    color: #f70404;
    font-weight: bold;
}
main .news dd {
    border-bottom: 1px solid #eee;
    padding-left: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}



.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.guide-table th, .guide-table td {
    border-bottom: 1px solid #eee;
    padding: 15px;
    text-align: left;
}
.guide-table th {
    width: 30%;
    color: #243250;
    background-color: #f9f9f9;
}


.policy-box {
    background: #fff9e6;
    border: 2px dashed #f51a1a;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}


.trial-btn {
    display: block;
    background: #f30e0e; 
    color: #fff;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin: 40px auto;
    max-width: 400px;
    transition: 0.3s;
}
.trial-btn:hover {
    background: #d35400;
    transform: scale(1.05);
}


.map-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
    border: 5px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}


.address {
    font-weight: bold;
    color: #243250;
    margin-bottom: 10px;
}

.transport-guide {
    background: #f4f7f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.transport-guide h4 {
    color: #243250;
    border-bottom: 2px solid #243250;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 15px;
}

.transport-guide ul {
    list-style-type: "📍";
    padding-left: 1.5em;
}

.faq-container {
    max-width: 800px;
    margin: 20px auto;
}


.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}


.faq-item summary {
    padding: 20px;
    font-weight: bold;
    color: #243250;
    cursor: pointer;
    list-style: none;
    position: relative;
    background-color: #f9f9f9;
}


.faq-item summary::before {
    content: "Q.";
    color: #f51919;
    margin-right: 10px;
    font-size: 1.2em;
}


.faq-answer {
    padding: 20px;
    border-top: 1px solid #eee;
    line-height: 1.8;
    background-color: #fff;
}


.faq-answer p::before {
    content: "A.";
    color: #243250;
    font-weight: bold;
    margin-right: 10px;
}

/*==========================================================================
	aside
==========================================================================*/
aside {
	margin-bottom: 30px;
}
aside .banners li {
	margin-bottom: 20px;
	text-align: center;
}

/*==========================================================================
	footer
==========================================================================*/
footer {
	padding: 40px 10px;
	background-color: #243250;
	text-align: center;
}
footer {
    padding: 60px 10px 30px;
    background-color: #1a253d;
    color: #fff;
}


footer address.sp img {
    max-width: 250px;
    margin-bottom: 30px;
}





@media (min-width: 768px) {
	header {
		position: static;
	}
	header address {
		display: block;
	}
	nav {
		display: block;
		border-bottom: solid 1px #ccc;
	}
	.menu {
		position: static;
		background: transparent;
	}
	.menu li {
		border-left: solid 1px #ccc;
		color: #333;
		
	}
	.menu li:last-child {
		border-right: solid 1px #ccc;
	}
	.menu-list:hover {
		color: #6495Ed
	}
	.container {
		display: flex;
		justify-content: space-between;
		margin-bottom: 0;
	}
	main {
		width: calc(700 / 940 * 100%);
	}
	main .guide {
		display: flex;
		justify-content: space-between;
	}
	main h2 {
		text-align: left;
	}
	main .guide img {
		width: calc(280 / 700 * 100%);
	}
	main .guide p {
		width: calc(400 / 700 * 100%);
	}
	aside {
		width: calc(220 / 940 * 100%);
	}
}
@media (min-width: 1300px) {
	.container,.inner {
		padding: 0;
	}
}
