@charset "utf-8";
/* ------------------
  sanitize_min
------------------ */
*,::before,::after{box-sizing:border-box}::before,::after{text-decoration:inherit;vertical-align:inherit}html{cursor:auto;line-height:1.5;-moz-tab-size:2;tab-size:2;-webkit-tap-highlight-color:transparent;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word;font-size:62.5%;margin:0;padding:0}body{margin:0;padding:0;-webkit-text-size-adjust:100%}h1,h2,h3,h4,h5,h6{margin:0}dl dl,dl ol,dl ul,ol dl,ul dl,dt,dd{margin:0}ol ol,ol ul,ul ol,ul ul{margin:0}hr{height:0;overflow:visible}main{display:block}ol,ul{list-style:none;padding:0;margin:0}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;text-decoration: none}p{padding:0;margin:0}abbr[title]{text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}iframe{border-style:none}img{border-style:none;max-width:100%;width:auto;height:auto}svg:not([fill]){fill:currentColor}svg:not(:root){overflow:hidden}table{border-collapse:collapse}button,input,select{margin:0}button{overflow:visible;text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}fieldset{border:1px solid #a0a0a0;padding:.35em .75em .625em}input{overflow:visible}legend{color:inherit;display:table;max-width:100%;white-space:normal}progress{display:inline-block;vertical-align:baseline}select{text-transform:none}textarea{margin:0;overflow:auto;resize:vertical}[type="checkbox"],[type="radio"]{padding:0}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}details{display:block}dialog{background-color:#fff;border:solid;color:#000;display:block;height:-moz-fit-content;height:-webkit-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}dialog:not([open]){display:none}summary{display:list-item}canvas{display:inline-block}template{display:none}a,area,button,input,label,select,summary,textarea,[tabindex]{-ms-touch-action:manipulation;touch-action:manipulation}[hidden]{display:none}[aria-busy="true"]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled="true"],[disabled]{cursor:not-allowed}[aria-hidden="false"][hidden]{display:initial}[aria-hidden="false"][hidden]:not(:focus){clip:rect(0,0,0,0);position:absolute}address,em{font-style:normal}mark{background:inherit}figure{margin:0}

/* ------------------
 グローバル変数
------------------ */
:root {
  --main-color: #c00;/* var(--main-color) */
	--sub-color: #FEF5F5;/* var(--sub-color) */
	--title: 3.2rem;/* var(--title) */
	--headline: 2.4rem;/* var(--headline) */
	--subheadline: 1.8rem;/* var(--subheadline) */
}
@media screen and (max-width: 767px) {
	:root {
		--title: 2rem;/* var(--title) */
		--headline: 1.8rem;/* var(--headline) */
		--subheadline: 1.6rem;/* var(--subheadline) */
	}
}

/* ------------------
 フォント
------------------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* ------------------
  共通設定
------------------ */
html {scroll-behavior: smooth;}
body {font-family: 'Noto Sans JP','メイリオ','Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;font-size: 1.6rem;position: relative;}
main {line-height: 1.8;}
a{color: initial;}
a[href]:hover {opacity: 0.8;cursor: pointer;text-decoration: none;}
sub,sup {font-size: 75%;padding: 0 3px;}

/* PC・SP切り替え */
.tablet_block,.sp_block,.sp_nav--btn,.drawer_nav {display: none;}
  @media screen and (max-width: 767px) {
    .sp_block {display: block;}
    .pc_block,.tablet_block {display: none;}
  }

/* テキスト */
.txt_red {color: var(--main-color);}
a.txt_red {text-decoration: underline;&hover{text-decoration: none;}}
.txt_center {text-align: center;}
.txt_bold {font-weight: bold;}
.txt_main {margin-bottom: 20px;}

.border_red {border: 1px solid var(--main-color);}

/* ------------------
  レイアウト
------------------ */
.container {max-width: 1024px;width: 90%;margin: 65px auto;}

/* ------------------
  共通パーツ
------------------ */
section {
	margin: 0 auto 60px;
}

/*見出し*/
.headline {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto 35px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #7FB8A3;
  border-image: linear-gradient(90deg, #7FB8A3 0%, #00A4C5 100%);
  border-image-slice: 1;
}

/*ボタン*/
.more_btn {
  width: 241px;
  height: 50px;
  background: var(--main-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
	color: #fff;
}

/* サンプルはこちら */
a.sample_btn {
	max-width: 310px;
	width: 90%;
  height: 54px;
	padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	gap: 20px;
  background: var(--sub-color);
  margin: 30px auto;
  color: var(--main-color);
	font-size: var(--subheadline);
	font-weight: bold;
	position: relative;
	&::before {
		content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
	}
	&::after {
		content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 19px;
    background: #fff;
    height: calc(tan(60deg) * 7px / 2);
    width: 5px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
	}
}

/* ------------------
  header
------------------ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header_logo {
	padding: 10px 0;
	margin-left: 8.6%;
	line-height: 1.3;
	font-size: 1.4rem;
}

/*お問い合わせ*/
.header_contact {
  max-width: 520px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8.6%;
}
.header_contact--kojin {
  width: 132px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--main-color);
  color: #cd0002;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.3;
}
.header_contact--box {
  max-width: 372px;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	gap: 5px 0;
  border: 1px solid #ccc;
}
.header_contact--txt {
  font-size: 1.4rem;
}
.header_contact--btn {
  width: 115px;
  height: 26px;
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.3rem;
	font-weight: bold;
}
a.header_contact--tel {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -1px;
  color: #000;
  line-height: 1;
}

/*グローバルナビゲーション*/
.global_nav {
  height: 45px;
  width: 100%;
  background: var(--main-color);
}
.global_nav--list {
  max-width: 1024px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
.global_nav--item {
	width: calc(100% / 5);
  height: 100%;
	position: relative;
	&::before {
		content: "";
		display: block;
		height: 29px;
		width: 1px;
		background: #fff;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	&:last-child::after {
		content: "";
		display: block;
		height: 29px;
		width: 1px;
		background: #fff;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	& a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 100%;
		font-weight: bold;
		color: #fff;
	}
}
/* ------------------
footer
------------------ */
.footer_management {
  width: 100%;
  padding: 40px 5%;
  background: #ededed;
}
.footer_management--title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-color);
  margin: 0 auto 15px;
}
.footer_management--list {
  max-width: 1024px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footer_management--item {
  height: 52px;
  max-width: 240px;
  width: 100%;
  border: 2px solid #fff;
  font-weight: bold;
}
.footer_management--item a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 15px;
}
.footer_management--item a[href="https://www.saitama-hp.com/"] {color: #990000;background: #f5e5e5;}
.footer_management--item a[href="https://www.digital-catalog.jp/"] {color: #0033cc;background: #e3e6f7;}
.footer_management--item a[href="https://www.webook-berry.jp/"] {color: #0e0253;background: #ccc;}
.footer_management--item a[href="https://www.saitama-catalog.jp/"] {color: #006531;background: #dde6e0;}
.footer_management--item a[href="https://www.seizogyo.com/"] {color: #0d2354;background: #c2c8d4;}
.footer_management--item a[href="https://www.crossmedia-berry.jp/"] {color: #1f0863;background: #dedae8;}
.footer_management--item a[href="https://www.web-douga.com/"] {color: #333;background: #ffe5dc;}

.footer_management2 {display: flex;justify-content: center;flex-wrap: wrap;gap: 20px;margin: 20px auto 0;
	& li {max-width: 420px;width: 100%;}
	& a {width: 100%;display: flex;flex-wrap: wrap;}
	& span {max-width: 210px;width: 100%;padding: 8px 0;display: flex; justify-content:center;align-items: center;background: #F0B2B2;color: #333;font-size: 2rem;}
}

.footer_sitename {background: #fff;padding: 15px 0;font-weight: bold;}
.footer_sitename--txt {max-width: 1024px;width: 90%;margin: auto;}
.footer_sitename a {color: #fff;}

.footer_container {max-width: 1280px;width: 90%;padding: 40px 0 0;margin: auto;display: flex;justify-content: space-between;align-items: flex-start;}
.footer_nav {display: flex;justify-content: flex-end;gap: 65px;}
.footer_nav--list {margin: 0 auto 15px;display: flex;flex-direction: column;flex-wrap: wrap;gap: 0 40px;}
.footer_nav--list a {display: flex;align-items: center;gap: 10px;position: relative;font-weight: bold;}
.footer_list--item {margin-bottom: 15px;}

.footer_nav--list:last-of-type {gap: 0;}
a.footer_list--icon {padding: 15px 50px 15px 5px; display: flex;align-items: center;gap: 20px;border-top: 1px solid var(--main-color);}
a.footer_list--icon.last {border-bottom: 1px solid var(--main-color);}

.footer_list--sublist {display: flex;flex-direction: column;gap: 5px;margin: 5px 0 5px 10px;}
.footer_list--sublist a {color: #000;font-size: 1.4rem;font-weight: normal;}
.footer_list--sublist a::before {content: "";width: 15px;height: 15px;display: inline-block;background: #fff;border-radius: 50%;}
.footer_list--sublist a::after {content: "";width: 5px;height: 5px;border-top: 1px solid #333;border-right: 1px solid #333;transform: translateY(-45%) rotate(45deg);position: absolute;left: 4px;top: 50%;}

.footer_external {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 1.4rem;
	margin: 40px 0 0 auto;
	& a {font-weight: normal;display: flex;align-items: flex-start;gap: 3px;}
	& a::after {content: url("../img/external_icon.webp");display: inline-block;width: 11;height: 10px;transform: translateY(-5px);}
}

.copyright {color: var(--main-color);padding: 5px 0;text-align: start;font-size: 1.6rem;max-width: 1280px;margin: 0 auto 10px;width: 90%;}


/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: var(--main-color);
  opacity: 0;
  transition: 0.5s;
  z-index: -10;
}
#backtop::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
#backtop.active {
  opacity: 0.6;
  z-index: 50;
}


/* ------------------
下層ページ共通
------------------ */
/*ページタイトル*/
.page_head {
	width: 100%;
	display: flex;
	align-items: center;
	padding-bottom: 40px;
	position: relative;
}
@media print, screen and (min-width: 768px){.page_head{background: url("../img/main/page.webp") no-repeat center center;background-size: cover;height: 152px;}}
@media screen and (max-width: 767px){.page_head{background: url("../img/main/page_sp.webp") no-repeat center center;background-size: cover;height: 135px}}
.page_title {
	max-width: 1024px;
	width: 90%;
	margin: auto;
	font-size: var(--title);
	color: #fff;
	font-weight: bold;
}

/*見出し*/
.page_headline {
	width: 100%;
	min-height: 60px;
	padding: 8.5px 15px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--main-color);
	font-size: var(--subheadline);
	color: #fff;
	font-weight: bold;
}
.colored_box > .page_headline {
	justify-content: center;
}

/*大見出し*/
.page_majorheadline {
	width: 100%;
	font-size: var(--headline);
	font-weight: bold;
	padding: 32px 5px 28px;
	text-align: center;
	margin: 30px auto;
	border: 2px solid var(--main-color);
}
.page_majorheadline.ver2 {
	width: 100%;
	font-size: var(--subheadline);
	font-weight: bold;
	padding: 16px 20px 14px 20px;
	text-align: left;
	margin: 30px auto;
	border: 2px solid var(--main-color);
}

/*パンくずリスト*/
.breadcrumb_box {
	width: 100%;
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	left: 0;
	bottom: 0;
}
.breadcrumb {
  max-width: 1024px;
	width: 90%;
	height: 40px;
  margin: auto;
  display: flex;
	align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size:1.4rem;
}
.breadcrumb_item a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumb_item a[href] {text-decoration: underline;}
.breadcrumb_item a[href]:hover {text-decoration: none;}
.breadcrumb_item a[href]::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-bottom: 1px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

/* レイアウト */
.page_container {
	max-width: 1024px;
	width: 90%;
	padding: 30px 0 60px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 50px;
}
.flex_imgtxt {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	margin: 0 auto;
	& .flex_imgtxt--txt {
		flex: 1;
	}
}
.colored_box {
	width: 100%;
	padding: 25px;
	background: var(--sub-color);
	margin: 0 auto;
}


/* サイドメニュー */
.aside {
	width: 240px;
}
.aside_box {
	width: 100%;
	padding: 10px;
	background: #E8E8E8;
	margin-bottom: 30px;
}
.aside_title {
	color: var(--main-color);
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
	font-size: 1.8rem;
}
.aside_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.aside_list--item {
	width: 220px;
	background: #fff;
	& a {
		width: 100%;
		height: 42px;
		background: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 20px 10px 10px;
		position: relative;
	}
	& a::before {
		content: "";
		color: #fff;
		min-width: 12px;
		min-height: 12px;
		padding: 1px 0 0 1px;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		background: var(--main-color);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
	& a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 13px;
		background: #fff;
		height: calc(tan(60deg) * 7px / 2);
		width: 5px;
		clip-path: polygon(0 0, 100% 50%, 0 100%);
	}
	& a.report {
		line-height: 1.3;
	}
}

.aside_txt {
	width: 240px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	font-size: var(--subheadline);
	font-weight: bold;
	background: #E8E8E8;
}

.aside_sample {
	width: 240px;
	background: var(--sub-color);
	margin: 20px auto;
	& a {
		width: 100%;
		height: 100%;
		display: flex;
		font-size: var(--subheadline);
		font-weight: bold;
		color: var(--main-color);
		display: flex;
		text-align: center;
	}
	& span > span {
		font-size: 1.6rem;
	}
	& p {
		width: 120px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		line-height: 1.2;
		gap: 5px;
	}
}

/* コンテンツ */
.page_article {
	max-width: 734px;
	width: 100%;
}
.page_article--head {
	width: 100%;
	font-size: var(--headline);
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 3px solid var(--main-color);
	margin: 0 auto 40px;
}

/* お問い合わせバナー */
.aside_contact {
	width: 100%;
	padding: 25px 20px;
	margin: 60px auto 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
	background: #F5C7C7;
}
.aside_contact--left {
	font-size: 1.5rem;
}
.aside_contact--txt {
	font-size: var(--headline);
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px dotted var(--main-color);
	margin-bottom: 5px;
}
.aside_contact--btn {
	width: 242px;
	height: 58px;
	padding: 15px 15px 15px 35px;
	background: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: #fff;
	font-weight: bold;
	position: relative;
	&::before {
		content: "";
		display: block;
		width: 14px;
		height: 14px;
		border-radius: 50%;
		background: #fff;
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
	&::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 20px;
		background: var(--main-color);
		height: calc(tan(60deg) * 7px / 2);
		width: 5px;
		clip-path: polygon(0 0, 100% 50%, 0 100%);
	}
}

/* 数字付きBOX */
.num_box {
	padding: 36px 18px 18px;
	background: #fff;
	position: relative;
	&::before {
		content: "";
		width: 48px;
		height: 48px;
		background: var(--main-color);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: auto;
		color: #fff;
		font-weight: bold;
		font-size: 2.4rem;
	}
	&:nth-child(1)::before {content: "01";}
	&:nth-child(2)::before {content: "02";}
	&:nth-child(3)::before {content: "03";}
	&:nth-child(4)::before {content: "04";}
	&:nth-child(5)::before {content: "05";}
	&:nth-child(6)::before {content: "06";}
	&:nth-child(7)::before {content: "07";}
	&:nth-child(8)::before {content: "08";}
}

/* 矢印を追加する場合 */
.num_box--arrow {
  &::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: -18px;
		background: var(--main-color);
		height: calc(28px / 2 * tan(60deg));
		width: 12px;
		clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
	&:last-child::after {
		content: none;
	}
}

/* ページ上部オプションリスト */
.option_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 auto 40px;
}
.option_list--item {
	width: 175.5px;
	background: var(--sub-color);
	& a {
		width: 100%;
		height: 40px;
		font-size: 1.4rem;
		font-weight: bold;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 20px 10px 10px;
		position: relative;
		line-height: 1.3;
	}
	& a::before {
		content: "";
		color: #fff;
		min-width: 12px;
		min-height: 12px;
		padding: 1px 0 0 1px;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		background: var(--main-color);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
	& a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 13px;
		background: #fff;
		height: calc(tan(60deg) * 7px / 2);
		width: 5px;
		clip-path: polygon(0 0, 100% 50%, 0 100%);
	}
	& a.txt_s {
		font-size: 1.3rem;
	}
}

/* ページ下部オプションリスト */
.option_footer {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 auto 40px;
	background: var(--sub-color);
}
.option_footer--item {
	width: 165.5px;
	background: #fff;
	& a {
		width: 100%;
		height: 40px;
		font-size: 1.4rem;
		font-weight: bold;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 20px 10px 10px;
		position: relative;
  	line-height: 1.3;
	}
	& a::before {
		content: "";
		color: #fff;
		min-width: 12px;
		min-height: 12px;
		padding: 1px 0 0 1px;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		background: var(--main-color);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
	& a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 13px;
		background: #fff;
		height: calc(tan(60deg) * 7px / 2);
		width: 5px;
		clip-path: polygon(0 0, 100% 50%, 0 100%);
	}
	& a.txt_s {
		font-size: 1.3rem;
	}
}

/* 注意書き */
.note_list li {
	font-size: 1.4rem;
	text-indent: -1.4rem;
	padding-left: 1.4rem;
}

/* 通常フォントサイズのインデント*/
.indent_list li,.txt_indent {
	text-indent: -1.6rem;
	padding-left: 1.6rem;
}
.indent_list,.txt_indent  {
	margin-bottom: 20px;
}

/* ------------------
テーブル
------------------ */
.table_box {
	width: 100%;
	overflow: auto;
	margin: 20px auto 40px;
}
/* 価格表 */
.price_table {
	width: 100%;
	border: 1px solid var(--main-color);
	text-align: center;
	& th {width: 38%;background: var(--sub-color);padding: 15px 15px;}
	& th:first-child {border-right: 1px solid var(--main-color);}
	& td {width: 62%;padding: 15px 15px;}
	& tr:not(:last-child) {border-bottom: 1px solid var(--main-color);}
	& thead th {background: #FCCACA;}
	& thead tr {border-bottom: 1px solid var(--main-color);}
}
.table_box + .txt_indent {margin-top: -20px;}
.table_box + .indent_list {margin-top: -20px;}

/* PC用設定 */
@media screen and (max-width: 1279px) {body {width: 1280px;}}
@media screen and (min-width: 768px) {a[href*="tel:"] {pointer-events: none;cursor: default;text-decoration: none;}}
/* iPad縦 */
@media screen and (orientation: portrait) and (min-width: 768px){
	.header_contact--kojin {font-size: 1.2rem;line-height: 1.2;}
}
/* スマホ設定 */
@media screen and (max-width: 767px) {
  body {width: 100%;padding-top: 57px;font-size: 1.5rem;}
  .header_contact,.global_nav {display: none;}
  .sp_block, .sp_nav--btn, .drawer_nav {display: block;}
	section {margin: 0 auto 30px;}
  
  /* ------------------
  header
  ------------------ */
  .header {height: 57px;width: 100%;position: fixed;top: 0;left: 0;z-index: 99;background: rgba(255, 255, 255, 0.8);}
  .header_logo {margin-left: 3%;
		& img {max-height: 40px;}
	}

  /* ------------------
  ハンバーガーメニュー
  ------------------ */
  /* ボタン */
  .sp_nav--btn{position: absolute; width: 48px;height: 40px;background: var(--main-color);border: none;right: 3%;top:10px;transition: all 0.5s;}
  .sp_nav--btn span {position: absolute;display: block;height: 2px;background: #fff;margin: auto;}

  /* 閉じた状態 */
  .sp_nav--btn[aria-pressed="false"] span {width: 28px;transition: all 0.5s;}
  .sp_nav--btn[aria-pressed="false"] span:nth-child(1) {top: 10px;left: 0;right: 0;}
  .sp_nav--btn[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
  .sp_nav--btn[aria-pressed="false"] span:nth-child(3) {bottom: 10px;left: 0;right: 0;margin: auto;}

  /* 開いた状態 */
  .sp_nav--btn[aria-pressed="true"] span {width: 30px;transition: all 0.5s;}
  .sp_nav--btn[aria-pressed="true"] span:nth-child(1) {top: 52%;transform: translateY(-1.5px) rotate(45deg);background: #fff;left: 9px;}
  .sp_nav--btn[aria-pressed="true"] span:nth-child(2) {display: none;}
  .sp_nav--btn[aria-pressed="true"] span:nth-child(3) {bottom: 50%;transform: translateY(1.5px) rotate(-45deg);background: #fff;left: 9px;}

  /* メニューパネル */
  .drawer_nav {
    position: fixed;
    height: 100%;
    width: 80%;
    padding: 10px 6.5% 100px;
    top: 57px;
    right: 0;
    color: #000;
    z-index: 999;
    overflow: scroll;
    transition: all 0.3s;
    background: #A21B1B;
  }
  .drawer_nav[aria-hidden="true"] {
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
  }
  .drawer_nav[aria-hidden="false"] {
    visibility: visible;
    transform: translateX(0);
  }
  .drawer_menu {width: 100%;margin-bottom: 30px;}
  .drawer_list--item {width: 100%;}
  .drawer_menu--item {
    width: 100%;
    height: 100%;
    padding: 15px 5px 5px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
		border: none;
    color: #fff;
    font-weight: bold;
    position: relative;
    font-size: 1.4rem;
		background: none;
  }
  .drawer_menu--item[aria-expanded="false"]::after {
    content: "＋";
    display: inline-block;
    font-weight: bold;
  }
  .drawer_menu--item[aria-expanded="true"]::after {
    content: "－";
    display: inline-block;
    font-weight: bold;
  }
  .drawer_menu--item[aria-expanded="false"] + .drawer_dropdown {
    height: 0;
    overflow: hidden;
  }
  .drawer_menu--item[aria-expanded="true"] + .drawer_dropdown {
    height: auto;
    margin-bottom: 10px;
  }
	.drawer_list--item {
		background: none;
	  width: 100%;
    height: 100%;
    padding: 5px 5px 5px 0px;
    border-bottom: 1px dotted #fff;
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
	}
  .drawer_dropdown--item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color:#fff;
    font-weight: bold;
    padding: 12px 0 12px 20px;
    border-bottom: 1px dotted #fff;
  }
  .drawer_dropdown--item::before {
    content: "-";
    display: inline-block;
  }
  .drawer_menu--item[aria-expanded="true"] {
    border-bottom: none;
  }
  .drawer_menu--item[aria-expanded="false"] + .drawer_dropdown--menu {
    height: 0;
    overflow: hidden;
  }
  .drawer_menu--item[aria-expanded="true"] + .drawer_dropdown--menu {
    height: auto;
  }
  .drawer_dropdown--menu {
    background: none;
    width: 96%;
    margin: 0 0 0 auto;
  }
  .drawer_dropdown--menu li:last-child a {
    border-bottom: none;
  }
	a.drawer_menu--item[target="_blank"] {
		display: flex;align-items: flex-start;gap: 5px;justify-content: flex-start;
		&::after {content: url("../img/header/external_icon.webp");display: inline-block;width: 11px;height: 10px;transform: translateY(-5px);}
	}
  .sp_nav--category {
    margin-top: 25px;
    padding: 2px 15px;
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
  }
  .sp_nav--contact {
    display: flex;
    width: 100%;
    gap: 10px;
    margin: 20px auto 10px;
		& li {
			width: calc(50% - 5px);
		}
  }
  a.header_mail,a.header_tel {
		width: 100%;
		height: 40px;
    gap: 5px;
    font-size: 1.2rem;
    border: 1px solid #fff;
    display: inline-flex;
    justify-content: center;
		align-items: center;
		color: #fff;
  }
  
  /* bodyをタッチ不可に */
  #onbody {position: absolute;height: 100%;width: 100%; top: 57px;left: 0;background: rgba(0, 0, 0, 0.6);z-index: 90;overflow: hidden;}
	#body:has(#onbody[aria-hidden="true"]) {overflow: hidden;}

  /* ------------------
  footer
  ------------------ */
	.footer_container {display: none;}
  .footer {font-size: 1.5rem;}
	.footer_management--title {font-size: 1.8rem;}
  .footer_management--list {gap: 10px;}
  .footer_management--item {width: calc(50% - 5px);}
  .footer_management--item a {padding: 0 5px;font-size: 1.3rem;}
  .footer_list--item {width: 100%;}
	.footer_management2 {gap: 10px;margin: 10px auto 0;
	  & li {max-width: calc(50% - 5px);}
		& span {font-size: 1.3rem;}
	}
	.copyright {width: 100%;background: var(--main-color);color: #fff;font-size: 1.4rem;text-align: center;margin-bottom: 0;padding: 5px 5%;}
	
  /* ------------------
  下層ページ共通
  ------------------ */
	.page_container {flex-direction: column-reverse;padding-bottom: 20px;align-items: center;}
	.page_article--head {margin-bottom: 20px;}
	.flex_imgtxt {flex-wrap: wrap;}
	
	/* パンくずリスト */
	.breadcrumb {min-height: 40px; height: auto;}
	
	/* サイドメニュー */
	.aside,.aside_list--item {width: 100%;}
	.aside_txt,.aside_sample {display: none;}
	.drawer_nav .aside_sample{display: flex;}
	
	/* お問い合わせバナー */
	.aside_contact {flex-wrap: wrap;}
	.aside_contact--btn {font-size: 1.6rem;}
	.aside_contact--txt {font-size: 1.7rem;}
	
	/* 数字付きBOX */
	.num_box::before {
		font-size: 1.8rem;
		width: 36px;
		height: 36px;
	}
	
	/* 矢印を追加する場合 */
	.num_box--arrow {
		&::after {
			content: "";
			position: absolute;
			top: inherit;
			transform: translateY(0);
			right: 0;
			left: 0;
			bottom: -24px;
			margin: auto;
			height: calc(12px / 2 * tan(60deg));
			width: 28px;
			clip-path: polygon(0 0, 100% 0, 50% 100%);
		}
	}
	
	/* ページ上部オプションリスト */
	.option_list--item {
		width: calc(50% - 10px);
		& a {font-size: 1.2rem;}
		& a.txt_s {font-size: 1.2rem;}
	}
	
	/* ページ下部オプションリスト */
	.option_footer {padding: 10px;}
	.option_footer--item {width: calc(50% - 5px);
		& a {font-size: 1.2rem;}
		& a.txt_s{font-size: 1.2rem;}
	}
	.option_footer--item .txt_s {font-size: 1.2rem;}
}
/* 印刷用設定 */
@media print {body {width:1280px!important;zoom: 0.68;-webkit-print-color-adjust: exact;}}
@page {size: A4;margin: 5px;}