@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@700&family=Zen+Antique&display=swap');
@import url('animation.css');

:root {
	--color-main-bg: #222222;
	--color-main-text: #CCCCCC;
	--color-cp-r: #EA5514;
	--color-cp-g: #998546;
	--color-cp-b: #004777;

	--ft-size14: 1.4rem;
	--ft-size15: 1.5rem;
	--ft-size16: 1.6rem;
	--ft-size18: 1.8rem;
	--ft-size26: 2.6rem;
	--ft-size30: 3.0rem;
	--ft-size40: 4.0rem;

	/* フォントサイズとセット */
	--ft-lh14: 1.71;
	--ft-lh15: 1.73;
	--ft-lh16: 1.75;
	--ft-lh18: 1.68;
	--ft-lh26: 1.44;
	--ft-lh30: 1.43;
	--ft-lh40: 1.45;

	--space-s30: 3.0rem;
	--space-s40: 4.0rem;
	--space-s50: 5.0rem;
	--space-s60: 6.0rem;
	--space-s70: 7.0rem;
	--space-s80: 8.0rem;
	--space-s100: 10.0rem;
	--space-s120: 12.0rem;
}

/* Default Style */
body {
	background-color: var(--color-main-bg);
	line-height: 1;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
	font-size: 1.6rem; /*全体のフォントサイズは16pxとする*/
	color: var(--color-main-text);
}

/* Default Link Style */
a {
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	opacity: .8;
}

/* common */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#wrapper {
	width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
	margin: 0 auto;
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0;
	background-color: var(--color-main-bg);
	transform: none;
	transition: all;
	transition-delay: 0s;
	transition-duration: .5s;
	transform-origin: center top;
	z-index: 100;
}

header.close {
	opacity: 0;
	transform: perspective(300px) rotateX(-90deg);
}

.header-inner {
	position:relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	height: 96px;
	margin: 0 auto;
	padding: 0;
}

/* サイトタイトル */
.site-title {
	display: flex;
	width: calc(147px + 2.0rem + 4.0rem);
	padding: 0 2.0rem 0 4.0rem;
}

.site-title h1 {
	display: flex;
}

.site-title h1 a {
	display: flex;
	align-items: center;
}

/* ヘッダーナビ */
#head-nav {
	position: relative;
	height: 100%;
	margin: 0 0 0 auto;
}

#header-nav {
	display: flex;
	height: 100%;
}

.menu {
	display: flex;
	justify-content: center;
}

.menu a:hover {
	color: var(--color-cp-r);
}

.menu > li {
	position: relative;
	height: 100%;
}

.menu > li > a,
.menu > li > span {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0.2rem 1.5rem;
	text-decoration: none;
	line-height: 1.0;
	letter-spacing: normal;
	font-weight: 500;
	font-size: 1.4rem;
	color: var(--color-main-text);
}

.menu > li#nav01 > a::after,
.menu > li#nav02 > a::after {
	content: "";
	width: 8px;
	height: 4px;
	margin-left: 0.6rem;
	background: url("../images/icon_arrow_bb.svg") 50% 50% no-repeat;
	flex-shrink: 0;
}

.menu > li#sp-nav-logo {
	display: none;
}

.menu > li#sp-nav-foot {
	display: none;
}

#nav-btn {
	display: none;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 13px 10px;
	background-color: var(--color-main-bg);
	border: 1px solid var(--color-main-text);
	border-radius: 8px;
	cursor: pointer;
	transform: translateY(-50%);
	z-index: 10;
}

#nav-btn button {
  position: relative;
	display: block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
	padding: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
	background-color: #FFFFFF;
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-btn span:nth-child(even) {
  left: 50%;
  border-radius: 0 1px 1px 0;
}

#nav-btn span:nth-child(odd) {
  left: 0;
  border-radius: 1px 0 0 1px;
}

#nav-btn span:nth-child(1), #nav-btn span:nth-child(2) {
  top: 0;
}

#nav-btn span:nth-child(3), #nav-btn span:nth-child(4) {
  top: 5px;
}

#nav-btn span:nth-child(5), #nav-btn span:nth-child(6) {
  top: 10px;
}

header.open #nav-btn {
	z-index: 500;
}

header.open #nav-btn span {
	background-color: #FFFFFF;
}

header.open #nav-btn span:nth-child(1),header.open #nav-btn span:nth-child(6) {
  transform: rotate(45deg);
}

header.open #nav-btn span:nth-child(2),header.open #nav-btn span:nth-child(5) {
  transform: rotate(-45deg);
}

header.open #nav-btn span:nth-child(1) {
  left: 2px;
  top: 3px;
}

header.open #nav-btn span:nth-child(2) {
  left: calc(50% - 2px);
  top: 3px;
}

header.open #nav-btn span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

header.open #nav-btn span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

header.open #nav-btn span:nth-child(5) {
  left: 2px;
  top: 8px;
}

header.open #nav-btn span:nth-child(6) {
  left: calc(50% - 2px);
  top: 8px;
}

/* footer ---------------------------------------- */
.module-inquiry {
	padding: 8.0rem 0;
	background: linear-gradient(90deg, #CCCCCC 0%, #FFFFFF 49.52%, #999999 100%);
	color: var(--color-main-bg);
}

.module-inquiry .mod-inner {
	width: calc(100% - 40px);
	max-width: 720px;
	margin: 0 auto;
}

.module-inquiry .mod-inner > *:not(h2) {
	width: calc(100% - 60px);
	max-width: 632px;
	margin-left: auto;
	margin-right: auto;
}

.module-inquiry h2 + p {
	margin: 2.8rem 0 3.8rem;
	font-weight: 700;
	font-size: var(--ft-size18);
}

.module-inquiry h3 {
	display: flex;
	align-items: center;
	margin-bottom: 4.0rem;
	gap: 1em;
}

.module-inquiry h3::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background-color: var(--color-main-bg);
}

.module-inquiry .wp-block-buttons:not(:last-of-type) {
	margin-bottom: 5.0rem;
}

.module-inquiry .wp-block-columns {
	display: flex;
	align-items: center;
	gap: 3.2rem;
}

.module-inquiry .wp-block-column {
	width: calc((100% - 3.2rem) / 2);
}

.module-inquiry .wp-block-column p {
	font-weight: 700;
}

.module-request {
	background: url("../images/bg_mod_request.webp") 50% 50% no-repeat;
	background-size: cover;
	padding: 8.0rem 0;
	color: var(--color-main-bg);
}

.module-request > * {
	width: 50%;
	margin-left: auto;
}

.module-request h2 + p {
	margin: 1.0rem 0 2.8rem;
	font-weight: 700;
	font-size: var(--ft-size18);
}

footer {
	width: 100%;
	padding: 0 2.0rem;
	background-color: var(--color-cp-b);
	color: var(--color-main-text);
}

.footer-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	width: calc(100% - 4.0rem);
	margin: 0 auto;
	padding: 6.0rem 0 7.4rem;
}

/* フッターナビ */
.menu-footer-nav {
	width: calc(100% - 270px);
	max-width: 720px;
}

.menu-footer-nav > ul {
	display: grid;
	grid-template-areas:
	"fnav01 fnav02 fnav03 fnav04 fnav05 fnav06"
	"fnav07 fnav07s fnav07s fnav07s fnav07s fnav07s";
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: auto 1fr;
	grid-column-gap: 0;
	grid-row-gap: 1.2rem;
	justify-content: center;
	width: 100%;
}

.menu-footer-nav > ul > li#fnav01 { grid-area: fnav01; }
.menu-footer-nav > ul > li#fnav02 { grid-area: fnav02; }
.menu-footer-nav > ul > li#fnav03 { grid-area: fnav03; }
.menu-footer-nav > ul > li#fnav04 { grid-area: fnav04; }
.menu-footer-nav > ul > li#fnav05 { grid-area: fnav05; }
.menu-footer-nav > ul > li#fnav06 { grid-area: fnav06; }
.menu-footer-nav > ul > li#fnav07 { grid-area: fnav07; }
.menu-footer-nav > ul > li#fnav07s { grid-area: fnav07s; }

.menu-footer-nav > ul > li {
	letter-spacing: normal;
	line-height: 1.75;
}

.menu-footer-nav > ul > li#fnav07,
.menu-footer-nav > ul > li#fnav07s {
	padding-top: 0.8rem;
	border-top: 1px solid #226995;
}

.menu-footer-nav > ul > li#fnav07s > ul {
	display: flex;
	align-items: center;
}

.menu-footer-nav > ul > li#fnav07s > ul > li {
	width: 100%;
}

.menu-footer-nav > ul > li > a {
	display: block;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
}

.menu-footer-nav ul > li > ul {
	display: flex;
	width: 100%;
}

.menu-footer-nav ul > li > ul > li {
	width: 100%;
	line-height: 2.15;
}

.menu-footer-nav ul > li > ul > li a {
	display: block;
	text-align: center;
	letter-spacing: normal;
	font-size: 1.4rem;
}

.menu-footer-nav a:hover {
	color: var(--color-cp-r);
}

.sns-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 8.0rem 0;
	gap: 5.4rem;
}

.footer-inner .foot-module {
	width: fit-content;
	margin: 0;
	font-size: 1.4rem;
}

.footer-inner dl dt {
	width: 100%;
	margin: 0 0 1.7rem;
	text-align: center;
}

.footer-inner dl dd {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	line-height: 2.0;
	gap: 1em;
}

.copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 1.4rem auto 0;
	gap: 1em;
	letter-spacing: normal;
}

.copy .pp {
	font-size: 1.3rem;
}

.copy .cp {
	margin-bottom: 0.1rem;
	font-size: 1.2rem;
}

.site-links {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding-bottom: 4.0rem;
	font-size: 1.4rem;
	gap: 1.2rem;
}

.site-links a {
	display: block;
	padding: 0.5rem 1.2rem 0.2rem;
	border: 1px solid var(--color-main-text);
	border-radius: 99em;
	letter-spacing: normal;
	line-height: 1.71;
}

/* ページトップへ
#pageTop {
	position: fixed;
	right: 20px;
	bottom: -80px;
	line-height:0;
	z-index:8;
}


#pageTop a {
	display:block;
	width: 34px;
	height: 34px;
	padding: 0 0 2px;
	border: 1px solid #ffffff;
	border-radius: 4px;
	background-color: #15588e;
	text-align: center;
	line-height: 33px;
	font-size: 25px;
	color: #ffffff;
}
*/

/* content ---------------------------------------- */
.breadcrumb {
	position: absolute;
	top: 96px;
	width: 100%;
	z-index: 10;
}

.breadcrumb ul {
	display: flex;
	width: min(calc(100% - 60px),960px);
	margin: 0 auto;
	padding: 1.0rem 0;
	font-weight: 400;
	font-size: 1.2rem;
	gap: 2em;
}

.breadcrumb ul li {
	display: flex;
	align-items: center;
	color: var(--main-color);
	gap: 2em;
}

.breadcrumb ul li:not(:last-of-type)::after {
	content: "/";
}

.container {
	padding-top: 96px;
	line-height: 1.75;
	font-size: 1.6rem;
}

.contents {
}

.contents main {
}

h1, .style-h1 {
	font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.45;
	font-weight: 700;
	font-size: 4.0rem;
}

h2, .style-h2 {
	font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.43;
	font-weight: 700;
	font-size: 3.2rem;
}

h3, .style-h3 {
	font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.43;
	font-weight: 700;
	font-size: 2.6rem;
}

h4, .style-h4 {
	font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.45;
	font-weight: 700;
	font-size: 1.9rem;
}

.ft-min {
	font-family: "Zen Antique", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: normal;
}

p, ul, ol, table {
	line-height: 1.75;
	letter-spacing: 0.02em;
}

.wp-block-buttons {
	display: flex;
	gap: 3.2rem;
}

.wp-block-buttons .wp-block-button {
	width: 100%;
	max-width: 300px;
}

.wp-block-buttons .wp-block-button a.wp-block-button__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: var(--color-cp-b);
	border-radius: 8px;
	aspect-ratio: 25/6;
	letter-spacing: 0.02em;
	font-weight: 700;
	color: #FFFFFF;
	gap: 0.8rem;
}

.wp-block-buttons .wp-block-button a.wp-block-button__link::after {
	content: "";
	width: 16px;
	height: 16px;
	background: url("../images/icon_arrow_cr.svg") 50% 50% no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.width-base {
}

.width-base > * {
	width: min(calc(100% - 60px),960px);
	margin: 0 auto;
}

.width-wide {
}

.width-wide > * {
	width: min(calc(100% - 60px),1180px);
	margin: 0 auto;
}

.width-narrow {
}

.width-narrow > * {
	width: min(calc(100% - 60px),800px);
	margin: 0 auto;
}

.anchor {
	display: block;
	transform: translate(0, -96px);
}

.disp-none {
	display: none;
}

/* ================================================ */
@media (min-width: 841px) {

.menu > li#nav07 {
	margin-left: 1.5rem;
}

.menu > li#nav07 > a {
	padding: 0.2rem 3.2rem;
	background-color: var(--color-cp-b);
	border-radius: 16px 0 0 16px;
	font-weight: 700;
	color: #FFFFFF;
}

.menu > li > ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 0;
	top: calc(100% - 1.0rem);
	min-width: 170px;
	background-color: var(--color-main-bg);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	transition: 0s;
}

.menu > li:hover > ul {
  visibility: visible;
  opacity: 1;
}

.menu > li > ul > li > a {
  visibility: hidden;
	height: 0;
	padding: 0 2.0rem;
	line-height: 1.72;
	letter-spacing: normal;
	font-weight: 500;
	font-size: 1.4rem;
  opacity: 0;
  transition: .5s;
}

.menu > li:hover > ul > li > a {
  visibility: visible;
	display: block;
	height: auto;
	padding: 0.8rem 2.0rem;
	white-space: nowrap;
  opacity: 1;
}

.menu > li:hover > ul > li:first-of-type {
	padding-top: 1.2rem;
}

.menu > li:hover > ul > li:last-of-type {
	padding-bottom: 1.2rem;
}

}

/* ================================================ */
@media (max-width: 1000px) {

/* サイトタイトル */
.site-title {
	width: calc(100% - (147px + 2.0rem + 2.0rem));
	max-width: calc(147px + 2.0rem + 2.0rem);
	min-width: auto;
	padding: 0 2.0rem;
	z-index: 10;
}

.menu > li > a,
.menu > li > span {
	padding: 0.2rem 0.6rem;
}

.menu > li#nav07 {
	margin-left: 0.6rem;
}

.menu > li#nav07 > a {
	padding: 0.2rem 1.8rem;
}

/* footer ---------------------------------------- */

.footer-inner {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	width: calc(100% - 4.0rem);
	margin: 0 auto;
	padding: 6.0rem 0 7.4rem;
	gap: 8.0rem;
}

/* フッターナビ */
.menu-footer-nav {
	width: 100%;
	max-width: 720px;
}

}

/* ================================================ */
@media (max-width: 840px) {

:root {
	--ft-size14: 1.4rem;
	--ft-size15: 1.5rem;
	--ft-size16: 1.6rem;
	--ft-size18: 1.8rem;
	--ft-size26: 2.6rem;
	--ft-size32: 3.0rem;
	--ft-size40: 4.0rem;

	/* フォントサイズとセット */
	--ft-lh14: 1.71;
	--ft-lh15: 1.73;
	--ft-lh16: 1.75;
	--ft-lh18: 1.68;
	--ft-lh26: 1.44;
	--ft-lh32: 1.43;
	--ft-lh40: 1.45;

	--space-s30: 3.0rem;
	--space-s40: 4.0rem;
	--space-s50: 5.0rem;
	--space-s60: 6.0rem;
	--space-s70: 7.0rem;
	--space-s80: 8.0rem;
	--space-s100: 10.0rem;
	--space-s120: 12.0rem;
}

/* header ---------------------------------------- */
.header-inner {
}

/* サイトタイトル */
.site-title {
	width: calc(100% - (147px + 2.0rem + 2.0rem));
	max-width: calc(147px + 2.0rem + 2.0rem);
	min-width: auto;
	padding: 0 2.0rem;
	z-index: 10;
}

header.open .site-title {
	z-index: 0;
}

/* ヘッダーナビ */
#nav-btn {
	display:block;
}

#header-nav {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	background-color: rgba(51, 51, 51, 0.6);
	transition: 0.5s;
}

header.open .header-inner {
}

header.open #header-nav {
	height: 100%;
	opacity: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.menu {
	width: 100%;
	height: 0;
	padding: 0;
	transition: 0.5s;
	transition-delay: 0.1s;
}

.menu > li {
	display: none;
}

.menu > li > ul {
	display: none;
}

header.open .menu {
	display: block;
	height: auto;
	background-color: var(--color-main-bg);
}

header.open .menu > li:not(#sp-nav-logo) {
	display: block;
	width: calc(100% - 60px);
	height: auto;
	margin: 0 auto;
	border-bottom: 1px dashed var(--color-main-text);
}

header.open .menu > li#sp-nav-logo {
	display: block;
	width: calc(100% - (147px + 2.0rem));
	max-width: calc(147px + 2.0rem);
	min-width: auto;
	height: auto;
	margin-bottom: 3.0rem;
	padding: 2.9rem 0 0 2.0rem;
	border-bottom: none;
}

.menu > li:not(#sp-nav-logo) > a,
.menu > li:not(#sp-nav-logo) > span {
	justify-content: space-between;
	height: auto;
	padding: 2.0rem 0;
	font-weight: 700;
	font-size: 1.6rem;
}

header.open .menu > li#sp-nav-logo > a {
	display: inline;
	padding: 0;
}

header.open .menu > li > ul {
	display: block;
	padding: 0 1.5em 2.0rem;
}

.menu > li:not(#sp-nav-logo) > a:has(+ ul),
.menu > li:not(#sp-nav-logo) > span:has(+ ul) {
	padding-bottom: 2.0rem;
}

.menu > li > ul > li > a {
	display: block;
	line-height: 2.15;
	font-size: 1.3rem;
}

header.open .menu > li#sp-nav-foot {
	display: block;
	width: 100%;
	margin-top: 4.2rem;
	border-bottom: 0;
	text-align: center;
}

header.open .menu > li#sp-nav-foot .sns-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5.0rem 0;
	padding: 0;
	gap: 5.4rem;
}

header.open .menu > li#sp-nav-foot p.copy {
	display: block;
	padding-bottom: 2.8rem;
	line-height: 2.0;
	text-align: center;
	font-size: 1.2rem;
}

/* footer ---------------------------------------- */

.footer-inner {
	width: calc(100% - 2.0rem);
}

.site-links {
	flex-wrap: wrap;
}

/* content ---------------------------------------- */
.container {
}

h1, .style-h1 {
	line-height: 1.5;
	font-size: 3.6rem;
}

h2, .style-h2 {
	line-height: 1.54;
	font-size: 2.8rem;
}

h3, .style-h3 {
	line-height: 1.5;
	font-size: 2.3rem;
}

h4, .style-h4 {
	line-height: 1.45;
	font-size: 1.9rem;
}

/* wp-block-column 1column */
.wp-block-columns {
	flex-wrap: wrap !important;
}

.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
	flex-basis:100% !important;
}

}

/* ================================================ */
@media (max-width: 694px) {

/* フッターナビ */
.menu-footer-nav > ul {
	display: grid;
	grid-template-areas:
	"fnav01 fnav02 fnav03"
	"fnav04 fnav05 fnav06"
	"fnav07 fnav07 fnav07"
	"fnav07s fnav07s fnav07s";
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: max-content max-content max-content 1fr;
	grid-column-gap: 0;
	grid-row-gap: 1.2rem;
	justify-content: center;
	width: 100%;
}

.menu-footer-nav > ul > li#fnav07 {
	padding-top: 1.2rem;
}

.menu-footer-nav > ul > li#fnav07s {
	padding-top: 0;
	border-top: 0;
}

.menu-footer-nav > ul > li#fnav07s > ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
}

.menu-footer-nav > ul > li#fnav07s > ul > li {
	width: calc(100% / 3);
}

}

/* ================================================ */
@media (max-width: 480px) {

:root {
	--ft-size14: 1.4rem;
	--ft-size15: 1.5rem;
	--ft-size16: 1.6rem;
	--ft-size18: 1.8rem;
	--ft-size26: 2.6rem;
	--ft-size32: 3.0rem;
	--ft-size40: 4.0rem;

	/* フォントサイズとセット */
	--ft-lh14: 1.71;
	--ft-lh15: 1.73;
	--ft-lh16: 1.75;
	--ft-lh18: 1.68;
	--ft-lh26: 1.44;
	--ft-lh32: 1.43;
	--ft-lh40: 1.45;

	--space-s30: 3.0rem;
	--space-s40: 4.0rem;
	--space-s50: 5.0rem;
	--space-s60: 6.0rem;
	--space-s70: 7.0rem;
	--space-s80: 8.0rem;
	--space-s100: 10.0rem;
	--space-s120: 12.0rem;
}

/* header ---------------------------------------- */

/* footer ---------------------------------------- */
.footer-inner {
	padding: 4.8rem 0 6.0rem;
	gap: 4.6rem;
}

/* フッターナビ */
.menu-footer-nav > ul {
	display: grid;
	grid-template-areas:
	"fnav01 fnav02"
	"fnav03 fnav04"
	"fnav05 fnav06"
	"fnav07 fnav07"
	"fnav07s fnav07s";
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: max-content max-content max-content max-content 1fr;
	grid-column-gap: 0;
	grid-row-gap: 1.2rem;
	justify-content: center;
	width: 100%;
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
}

.menu-footer-nav > ul > li#fnav07s > ul > li {
	width: calc(100% / 2);
}

.sns-links {
	margin: 3.0rem 0 5.0rem;
}

/* content ---------------------------------------- */
.container {
}

h1, .style-h1 {
	line-height: 1.43;
	font-size: 2.8rem;
}

h2, .style-h2 {
	line-height: 1.5;
	font-size: 2.4rem;
}

h3, .style-h3 {
	line-height: 1.5;
	font-size: 2.0rem;
}

h4, .style-h4 {
	line-height: 1.54;
	font-size: 1.7rem;
}

p, ul, ol, table {
	line-height: 1.73;
	font-size: 1.5rem;
}

.width-base > * {
	width: min(calc(100% - 40px),960px);
}

.width-wide > * {
	width: min(calc(100% - 40px),1180px);
}

.width-narrow > * {
	width: min(calc(100% - 40px),800px);
}

}