*,
::before,
::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	font-feature-settings: 'palt';
}

body {
	margin: 0;
}

main {
	display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border-top-width: 1px;
	margin: 0;
	clear: both;
	color: inherit;
}

pre {
	font-family: monospace, monospace;
	font-size: inherit;
}

address {
	font-style: inherit;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}

abbr[title] {
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: inherit;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
	vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	cursor: pointer;
}

button:disabled,
[type='button']:disabled,
[type='reset']:disabled,
[type='submit']:disabled {
	cursor: default;
}

:-moz-focusring {
	outline: auto;
}

select:disabled {
	opacity: inherit;
}

option {
	padding: 0;
}

fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
}

legend {
	padding: 0;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

[type='number'] {
	-moz-appearance: textfield;
}

label[for] {
	cursor: pointer;
}

details {
	display: block;
}

summary {
	display: list-item;
}

[contenteditable]:focus {
	outline: auto;
}

table {
	border-color: inherit;
	border-collapse: collapse;
}

caption {
	text-align: left;
}

td,
th {
	vertical-align: top;
	padding: 0;
}

th {
	text-align: left;
	font-weight: bold;
}
/*リセット　ここまで*/

/* 共通ベース */
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #1f1f1f;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	display: block;
}

/* ============================
   ヘッダー
   ============================ */
.aw-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #f4f875;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.aw-header__inner {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.aw-header__logo {
	display: flex;
	align-items: center;
	gap: 28px;
	min-width: 0;
}

.aw-logo-img {
	width: 177px;
}

.aw-header__title {
	margin: 0;
	line-height: 0;
}

.aw-title-img {
	width: 370px;
	height: auto;
}

.aw-header__nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.aw-btn-register {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #e47936;
	color: #fff;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 16px;
	padding: 0 20px;
	height: 55px;
	border-radius: 16px;
	white-space: nowrap;
}

.aw-btn-register__icon {
	display: inline-flex;
	width: 8px;
	height: 16px;
	align-items: center;
	justify-content: center;
}

.aw-header__social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.aw-header__social-icon {
	width: 32px;
	height: 32px;
}

.aw-hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.aw-hamburger span {
	display: block;
	height: 3px;
	width: 30px;
	background: #1f1f1f;
	border-radius: 2px;
}

/* ============================
   ハンバーガーメニュー（オーバーレイ）
   ============================ */
.aw-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: #f4f875 url(../img/bg_grid02.png) center / 54px 54px repeat;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}

.aw-menu.is-open {
	opacity: 1;
	visibility: visible;
}

/* スクロール抑止用 */
body.aw-menu-open {
	overflow: hidden;
}

.aw-menu__inner {
	/* 横幅いっぱい。最大幅は子要素（head / body）側で制御 */
	width: 100%;
	padding-bottom: 60px;
}

/* メニュー内コンテンツの最大幅 */
.menu__head-inner,
.aw-menu__body {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* ヘッダー帯は横幅いっぱい */
.aw-menu__head {
	width: 100%;
	background-color: #f4f875;
}

.menu__head-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
}

.aw-menu__brand {
	display: flex;
	align-items: center;
	gap: 28px;
	min-width: 0;
}

.aw-menu__logo {
	width: 177px;
	height: auto;
}

.aw-menu__title {
	width: 370px;
	height: auto;
}

.aw-menu__close {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
}

.aw-menu__body {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: flex-start;
	margin-top: 20px;
	width: 90%;
	padding-right: 60px;
}

/* ナビ */
.aw-menu__nav {
	flex: 1 1 auto;
	max-width: 620px;
}

.aw-menu__link,
.aw-menu__toggle {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 12px 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #1f1f1f;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.aw-menu__toggle {
	gap: 12px;
	justify-content: flex-start;
}

.aw-menu__caret {
	width: 14px;
	height: 14px;
	border-right: 3px solid #1f1f1f;
	border-bottom: 3px solid #1f1f1f;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-left: 4px;
}

.aw-menu__group.is-open .aw-menu__caret {
	transform: rotate(-135deg);
}

/* サブメニュー（アコーディオン） */
.aw-menu__sub {
	display: none;
	padding: 4px 0 8px 16px;
}

.aw-menu__group.is-open .aw-menu__sub {
	display: block;
}

.aw-menu__sub li {
	padding: 9px 0;
}

.aw-menu__sub a {
	position: relative;
	padding-left: 22px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #1f1f1f;
}

.aw-menu__sub a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 12px;
	height: 2px;
	background: #1f1f1f;
}

/* 右側の情報カード */
.aw-menu__aside {
	position: relative;
	flex: 0 0 auto;
	width: 468px;
}

.aw-menu__card {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 24px;
	padding: 28px 30px;
}

.aw-menu__card-logo {
	height: 56px;
	width: auto;
	margin-bottom: 20px;
}

.aw-menu__card-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 14px;
}

.aw-menu__card-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.aw-menu__card-row--wrap {
	align-items: flex-start;
	flex-wrap: wrap;
}

.aw-menu__card-text {
	flex: 1;
	min-width: 0;
}

.aw-menu__badge {
	flex: 0 0 auto;
	background: #e47936;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	border-radius: 50px;
	padding: 3px 12px;
}

.aw-menu__card-text {
	font-weight: 700;
	font-size: 16px;
	color: #4a4a4a;
}

.aw-menu__card-text .ib {
	display: inline-block;
}

.aw-menu__card-tel {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.aw-menu__tel-icon {
	width: 22px;
	height: 22px;
}

.aw-menu__tel {
	font-weight: 700;
	font-size: 22px;
	color: #e47936;
}

.aw-menu__card-social {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.aw-menu__social-icon {
	width: 32px;
	height: 32px;
}

.aw-menu__card-btns {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

.aw-menu__card-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	height: 54px;
	padding: 0 18px;
	border-radius: 14px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 15px;
}

/* デザイン比率（200:137）で横幅を配分 */
.aw-menu__card-btn--outline {
	flex: 200 1 0;
	background: #fff;
	border: 1px solid #4a4a4a;
	color: #4a4a4a;
}

.aw-menu__card-btn--solid {
	flex: 137 1 0;
	background: #e47936;
	color: #fff;
}

/* みきゃん（カード右下に重なる） */
.aw-menu__mican {
	position: absolute;
	right: -120px;
	bottom: 25px;
	width: 150px;
	height: auto;
	z-index: 1;
}

/* ============================
   フッター
   ============================ */
.aw-footer {
	background: #f4f875;
	padding: 48px 0 28px;
}

.aw-foot {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
}

.aw-foot__logo {
	height: 64px;
	width: auto;
	margin-bottom: 20px;
}

.aw-foot__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 14px;
}

.aw-foot__info-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.aw-foot__info-row--wrap {
	flex-wrap: wrap;
}

.aw-foot__badge {
	background: #e47936;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	border-radius: 50px;
	padding: 3px 12px;
}

.aw-foot__info-text {
	font-weight: 700;
	font-size: 16px;
	color: #4a4a4a;
}

.aw-foot__map {
	font-weight: 700;
	font-size: 16px;
	color: #4a4a4a;
	text-decoration: underline;
	margin-left: 2px;
}

.aw-foot__tel-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.aw-foot__tel-icon {
	width: 22px;
	height: 22px;
}

.aw-foot__tel {
	font-weight: 700;
	font-size: 22px;
	color: #e47936;
}

.aw-foot__social {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.aw-foot__social-icon {
	width: 32px;
	height: 32px;
}

.aw-foot__btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.aw-foot__btn {
	display: flex;
	align-items: center;
	gap: 14px;
	border-radius: 14px;
	padding: 14px 16px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 15px;
}

.aw-foot__btn--outline {
	background: #fff;
	border: 1px solid #4a4a4a;
	color: #4a4a4a;
}

.aw-foot__btn--solid {
	background: #e47936;
	color: #fff;
}

.aw-foot__nav {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 6px;
}

.aw-foot__nav-link {
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: #4a4a4a;
}

.aw-foot__copy {
	margin-top: 36px;
	text-align: center;
	font-size: 13px;
	color: #4a4a4a;
	line-height: 1.8;
	font-weight: 700;
}

.aw-foot__copy p {
	margin: 0;
}

/* ============================
   ヘッダー・フッター レスポンシブ
   ============================ */
@media (max-width: 1000px) {
	.aw-header__logo {
		gap: 15px;
	}
	.aw-logo-img {
		width: 155px;
	}
	.aw-title-img {
		width: 300px;
	}
	/* メニュー内ロゴもヘッダーに合わせる */
	.aw-menu__brand {
		gap: 15px;
	}
	.aw-menu__logo {
		width: 155px;
	}
	.aw-menu__title {
		width: 300px;
	}
}
@media (max-width: 900px) {
	.aw-header__inner {
		height: 80px;
	}
	.aw-header__logo {
		gap: 16px;
	}
	.aw-logo-img {
		width: 132px;
	}
	.aw-title-img {
		width: 280px;
	}
	/* メニュー内ロゴもヘッダーに合わせる */
	.aw-menu__brand {
		gap: 16px;
	}
	.aw-menu__logo {
		width: 132px;
	}
	.aw-menu__title {
		width: 280px;
	}
	/* ヘッダー高さに合わせる */
	.menu__head-inner {
		height: 80px;
	}
	.aw-foot {
		grid-template-columns: 1fr;
	}
	/* 縦並び時は pagenavi（ナビ）を上に表示 */
	.aw-foot__nav {
		order: -1;
	}
	/* 900px以下では登録ボタンとSNSアイコンを非表示 */
	.aw-btn-register,
	.aw-header__social {
		display: none;
	}
	/* メニュー: 縦1カラム化 */
	.aw-menu__body {
		flex-direction: column;
		gap: 28px;
		padding-right: 20px;
	}
	.aw-menu__nav {
		max-width: none;
	}
	.aw-menu__aside {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}
	.aw-menu__mican {
		display: none;
	}
}

@media (max-width: 560px) {
	.aw-header__logo {
		gap: 10px;
	}
	.aw-title-img {
		width: 170px;
		margin-bottom: 5px;
	}
	.aw-header__inner {
		height: 64px;
	}
	.aw-logo-img {
		width: 110px;
	}
	.aw-foot__copy {
		text-align: left;
	}
	/* メニュー: スマホもロゴを表示し、通常ヘッダーとサイズ・位置を合わせる */
	.menu__head-inner {
		height: 64px;
	}
	.aw-menu__brand {
		gap: 10px;
	}
	.aw-menu__logo {
		width: 110px;
	}
	.aw-menu__title {
		width: 170px;
	}
	.aw-menu__link,
	.aw-menu__toggle {
		font-size: 14px;
		padding: 10px 0;
	}
	.aw-menu__card {
		padding: 24px;
	}
	/* スマホ: ボタンは縦積み・左寄せ・固定幅（デザイン Frame57(1) 準拠） */
	.aw-menu__card-btns {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.aw-menu__card-btn {
		flex: 0 0 auto;
		height: 52px;
		max-width: 100%;
		padding: 0 14px;
		white-space: nowrap;
	}
	.aw-menu__card-btn--outline {
		width: 200px;
	}
	.aw-menu__card-btn--solid {
		width: 140px;
	}
	.aw-menu__body {
		width: calc(100% - 30px);
	}

	.aw-menu__card-logo {
		height: 36px;
	}
	.aw-menu__badge {
		font-size: 12px;
	}

	.aw-menu__card-text {
		font-size: 14px;
	}

	.aw-menu__tel {
		font-size: 20px;
	}
}

@media (max-width: 400px) {
	.aw-header__inner.aw-container {
		padding: 0 10px !important;
	}
	.aw-logo-img {
		width: 90px;
	}
	.aw-title-img {
		width: 150px;
	}
	.aw-menu__logo {
		width: 90px;
	}
	.aw-menu__title {
		width: 150px;
	}
}
