@charset "UTF-8";
/* @import url('setting.css'); */

/* :root {
  --primary-color: rgba(4, 92, 211, 0.12);
  --main-color: #045cd3;
  --sub-color: #f06868;

  --transition-all: all 0.2s linear;
} */
/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

fonts.min.css
フォントアイコンを記載したcss

common.css
レイアウト、TOPのスタイルを記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
  content: "\hoge";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
	background: url(null) fixed;
}
html {
	font-size: 62.5%;
	overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
	overflow-y: hidden;
}
body {
	margin: 0;
	padding: 0;
	background: var(--color-white);
	color: rgb(var(--color-primary-dark));
	font-size: 16px;
	line-height: 1.8;
	font-weight: 400;
	font-style: normal;
	font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
	overflow-wrap: break-word;
	text-size-adjust: 100%;
	font-feature-settings: "palt";
	letter-spacing: 1.6px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}
.pc {
	display: none;
}
@media (min-width: 751px) {
	/*電話番号リンクをスマホのみ有効にする*/
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
.font-en {
	font-family: var(--font-en);
}
/* ------------------------------------------------------------ */
/* reset */
/* ------------------------------------------------------------ */
ul,
ol,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}
/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.main-logo,
.thum,
.image,
.banner {
	margin: 0 auto;
	text-align: center;
}
/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */
::selection {
	color: #383838;
	background: rgba(0, 0, 0, 0.1);
	text-shadow: none;
}

::-moz-selection {
	color: #383838;
	background: rgba(0, 0, 0, 0.1);
	text-shadow: none;
}
a {
	color: #333;
	cursor: pointer;
	line-height: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #666;
	opacity: 0.8;
	text-decoration: none;
}
a:active {
	color: #333;
	text-decoration: none;
}
/* ------------------------------------------------------------ */
/* ボタン */
/* ------------------------------------------------------------ */
.btn {
	text-align: center;
	height: auto;
	margin: 0 auto;
}
.btn a {
	display: inline-block;
	color: var(--color-white);
	background: rgb(var(--color-primary-dark));
	margin: 0 auto;
	font-weight: 600;
	line-height: 1;
}
.btn a:hover {
	opacity: 1;
	background: #ed1e79;
}
.btn.contact a {
	background: rgb(var(--color-point));
	border: 2px solid rgb(var(--color-point));
	font-weight: bold;
	color: var(--color-white);
}
.btn.contact a:hover {
	background: var(--color-white);
	color: rgb(var(--color-point));
}
/* ------------------------------------------------------------ */
/* common layouts */
/* ------------------------------------------------------------ */
.wrapper {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.inner {
	width: 100%;
	max-width: 1280px;
	height: auto;
	padding: 0 clamp(1.6rem, 0.511rem + 3.404vw, 4rem);
	margin: 0 auto;
	clear: both;
}
.inner::after {
	content: "";
	clear: both;
	display: block;
}
/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
	width: 100%;
	height: 5.6rem;
	background: var(--color-white);
	padding: 0.8rem 1.6rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	transition: var(--transition-all);
	z-index: 9999;
	/* スマホ用の慣性スクロール */
	-webkit-overflow-scrolling: touch;
}
.main-header .main-logo {
	width: 90px;
	margin: 0;
}
.head-contact {
	margin: auto auto 4rem;
	padding-top: 4rem;
	width: 25.2rem;
}
.head-contact .phone-link,
.head-contact .contact a {
	height: 4.8rem;
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.head-contact .phone-link {
	background: rgb(var(--color-primary));
	border-radius: 5rem;
	font-family: "Lato", sans-serif;
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--color-white);
	margin: 0 0 1.6rem;
}
.head-contact .phone-link i {
	font-size: 80%;
}
.head-contact .contact a {
	border-radius: 5rem;
	padding: 0;
}
.head-contact .contact a .fa-circle-chevron-right {
	display: none;
}
/* nav-toggle */
.nav-toggle {
	width: 2.2rem;
	height: 1rem;
	padding: 0;
}
.nav-toggle .nav-toggle-icon {
	display: block;
	min-height: inherit;
	position: relative;
	width: 100%;
	height: 100%;
}
.nav-toggle .toggle-line {
	height: 1px;
	width: 100%;
	display: block;
	background: rgb(var(--color-primary-dark));
	transition: all 0.3s ease-in-out;
	position: absolute;
	left: 0;
}
.nav-toggle .toggle-line:first-of-type {
	top: 0;
}
.nav-toggle .toggle-line:nth-of-type(2) {
	bottom: 0;
}
.nav-toggle.is-active .toggle-line:first-of-type {
	top: 10px;
	transform: rotate(45deg);
}
.nav-toggle.is-active .toggle-line:nth-of-type(2) {
	top: 10px;
	transform: rotate(-45deg);
	left: 0;
}

/* ------------------------------------------------------------ */
/* gnav */
/* ------------------------------------------------------------ */
.gnav {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: calc(100vh - 5.6rem);
	position: fixed;
	top: 5.6rem;
	right: 0;
	transform: translateX(100%);
	z-index: 999;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
	background: var(--color-white);
	max-width: 48rem;
}
.gnav.is-active {
	transform: translateX(0);
	pointer-events: auto;
	overflow-y: auto;
}
.spnav_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: auto;
	opacity: 0;
	position: relative;
	padding: 75px 0 1.5em;
	z-index: 999;
	/*
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
*/
}
.show-nav .spnav_inner {
	opacity: 1;
	transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
.overlay {
	position: fixed;
	width: 100vw;
	height: 100vh;
	display: block;
	background: rgba(0, 0, 0, 0.2);
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 100;
}
.overlay.is-active {
	opacity: 1;
	visibility: visible;
}
/* ------------------------------------------------------------ */
/* nav-menu */
/* ------------------------------------------------------------ */
.nav-menu {
	width: 100%;
	padding: 0;
}
.menu-item {
	border-bottom: 1px solid rgb(var(--color-primary));
}
.menu-item.is-open {
	border-bottom: 1px solid rgba(var(--color-primary), 0);
}
.menu-item > a,
.menu-item > p {
	display: block;
	width: 100%;
	padding: 0.8em 1.5em;
	color: rgb(var(--color-primary-dark));
	font-size: 1.6rem;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
/* .menu-item > a::after, */
.menu-item-has-children > a::after,
.menu-item > p::after {
	content: "\f054";
	color: rgb(var(--color-primary));
	font-family: "Font Awesome 6 Free";
	float: right;
}
.menu-item a:hover {
	opacity: 1;
}
/*アコーディオン*/
.menu-item-has-children a,
.menu-item .nav_ttl {
	/* cursor: pointer; */
	position: relative;
}

/* .menu-item .nav_ttl::after, */
.menu-item-has-children a::after,
.menu-item .nav_ttl a::after {
	transform: rotate(90deg);
}
/* .menu-item .nav_ttl.is-open::after, */
.menu-item-has-children.is-open a::after,
.menu-item .nav_ttl.is-open a::after {
	transform: rotate(-90deg);
}
.nav_cnt {
	display: none;
}
.nav_cnt.is-open {
	display: block;
}
.sub-menu,
.nav-child {
	background: #f2f2f2;
	display: none;
}
.sub-menu li a,
.nav-child li a {
	display: block;
	padding: 0.8em 1.5em;
	font-size: 1.6rem;
	font-weight: bold;
	/* line-height: 1;
	white-space: nowrap; */
}
.sub-menu li a:hover,
.nav-child li a:hover {
	filter: brightness(130%);
}
.gnav_sub {
	background: #f6f7f8;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 2rem 0;
}
.gnav_sub li {
	line-height: 1;
	font-size: 1.4rem;
	padding: 0 1.6rem;
}

.gnav_sub li:not(:last-child) {
	border-right: 1px solid;
}
/* ------------------------------------------------------------ */
/* common content */
/* ------------------------------------------------------------ */
.content {
	width: 100%;
	height: auto;
	position: relative;
	padding: 5.6rem 0 0;
	margin: 0 auto;
}
.base {
	width: 100%;
	height: auto;
	position: relative;
	padding: 2.5em 0;
	margin: 0 auto;
}
/* .narrow{
  max-width: 88rem;
	margin-right: auto;
	margin-left: auto;
} */
.bg_color {
	background: rgb(var(--color-primary-lighter));
}
.bg {
	background: url("../img/mv03.jpg") no-repeat center / cover;
	background-attachment: fixed;
}
.bg::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(var(--color-primary-dark), 0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.bg * {
	position: relative;
	color: var(--color-white);
	z-index: 3;
}
/* ------------------------------------------------------------ */
/* ttl */
/* ------------------------------------------------------------ */
/* .main-ttl {
	font-size: 1.5em;
	margin: 0 auto 1.5em;
	text-align: center;
}
.sub-ttl {
	font-size: 1.2em;
	margin: 0 auto 0.8em;
	border-bottom: 2px solid #c7c7c7;
} */
.page-ttl {
	display: block;
	text-align: center;
	background: rgb(var(--color-primary));
	color: var(--color-white);
	line-height: 1;
	font-size: clamp(2.4rem, 2.037rem + 1.135vw, 3.2rem);
	padding: 1.25em 0;
}
/* ------------------------------------------------------------ */
/* flx_box */
/* ------------------------------------------------------------ */
.flx_box {
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
/* カラム共通 */
.flx_item {
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}
.flx_item .thum {
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}
/* ------------------------------------------------------------ */
/* list */
/* ------------------------------------------------------------ */
.editor-area .txt-list {
	margin-bottom: 0;
}

.txt-list-item {
	position: relative;
	padding: 1.25em 0 !important;
	margin-bottom: 0 !important;
	border-bottom: 1px solid rgb(var(--color-primary-dark));
}
.txt-list-item::before {
	display: none !important;
}
.txt-list-item a {
	color: rgb(var(--color-primary-dark)) !important;
	text-decoration: none !important;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5em;
}
.txt-list-item a:hover {
	color: rgb(var(--color-primary)) !important;
}
.txt-list-item .postdate {
	font-family: var(--font-en);
	display: inline-block;
	width: 96px;
	font-size: 1.4rem;
}
.cat {
	display: inline-block;
	color: var(--color-white);
	text-align: center;
	padding: 0 0.5em;
	width: 80px;
	font-size: 1.4rem;
}
.cat_news {
	background-color: rgb(var(--color-primary));
}
.cat_release {
	background-color: rgb(var(--color-primary-light));
}
.cat_column {
	background-color: rgb(var(--color-primary-dark));
}

.txt-list-item p {
	padding: 0 !important;
	margin: 0 !important;
	/* max-width: calc(100% - (200px + 2em)); */
	width: 100%;
	line-height: 1.6;
	/* overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1; */
}

.grid-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, 1fr);
	gap: 1em;
	justify-content: center;
	list-style: none;
}
.editor-area .grid-list + h2 {
	margin-top: 4em;
}
.grid-list-item {
}
.editor-area .grid-list-item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.grid-list-item::before {
	display: none !important;
}
.grid-list-item.has-background {
	border-radius: 1rem;
	overflow: hidden;
}

.grid-list-item a {
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	padding: clamp(1.6rem, 0.511rem + 3.404vw, 4rem);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none !important;
}
.grid-list-item h3 {
	width: 100%;
	color: rgb(var(--color-primary-dark));
	order: 2;
	-webkit-transition: var(--transition-all);
	transition: var(--transition-all);
}
.grid-list-item h3:has(+ .thumb) {
	margin-top: 1em !important;
}
.grid-list-item .thumb {
	width: 100%;
	max-width: 280px;
	max-height: 100px;
	order: 1;
	margin: 0 auto auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.archive .grid-list-item .thumb {
	max-width: 100%;
	aspect-ratio: 16/9;
	max-height: inherit;
	overflow: hidden;
}
.grid-list-item .thumb img {
	max-width: inherit;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.grid-list-item p {
	width: 100%;
	color: rgb(var(--color-primary-dark));
	order: 3;
	-webkit-transition: var(--transition-all);
	transition: var(--transition-all);
}
.editor-area .grid-list-item p {
	margin: 0 auto var(--gap-md);
}

.grid-list-item .wp-block-buttons {
	width: 100%;
	order: 4;
	margin: auto auto 0;
}
.editor-area .grid-list-item .wp-block-buttons {
	margin: auto auto 0;
}

.grid-list-item a:hover h3,
.grid-list-item a:hover p {
	color: rgb(var(--color-primary));
}

.anker-list {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 1em;
	margin: 0 auto 6.4rem;
}

.anker-list-item {
	font-weight: bold;
	font-size: 1.2em;
	text-decoration: none !important;
	padding: 0 0 0 1.2em;
	position: relative;
}
.anker-list-item::before {
	content: "\f13a";
	font-family: "Font Awesome 6 Free";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	font-size: 0.9em;
	line-height: 1;
	color: rgb(var(--color-primary));
	position: absolute;
	left: 0;
	top: 0.5em;
}

/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
@keyframes fadeInup {
	0% {
		opacity: 0;
		transform: translateY(50%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIndown {
	0% {
		transform: translateY(-50%);
	}
	100% {
		transform: translateY(0);
	}
}
.fadeInup {
	opacity: 0;
	animation: fadeInup 2s ease-in-out 0.3s 1 forwards;
}
.fadeIn {
	opacity: 0;
	animation: fadeIn 2s ease-in-out 2.5s 1 forwards;
}
.inview {
	opacity: 0;
}
/* ------------------------------------------------------------ */
/* swiper */
/* ------------------------------------------------------------ */
.swiper {
	padding-bottom: 3.2rem;
	position: relative;
}
.slider-block {
	width: 100%;
	padding-inline: 4rem;
	position: relative;
	text-align: center;
}
.mainSlider {
	padding-bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: var(--swiper-navigation-top-offset, 50%);
	width: 2.4rem;
	height: 2.4rem;
	margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	background-color: rgb(var(--color-primary));
	border-radius: 50%;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	right: var(--swiper-navigation-sides-offset, 10px);
	left: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 10px);
	right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	text-transform: none !important;
	letter-spacing: 0;
	line-height: 1;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1.4rem;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: "\f053";
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: "\f054";
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: -4px;
}
.mainSlider.swiper-horizontal > .swiper-pagination-bullets,
.mainSlider .swiper-pagination-bullets.swiper-pagination-horizontal,
.mainSlider .swiper-pagination-custom,
.mainSlider .swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 8px);
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--color-white);
	border: 1px solid rgb(var(--color-primary));
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background: rgb(var(--color-primary));
}

.mainSlider .swiper-button-next,
.mainSlider .swiper-button-prev {
	width: 4.4rem;
	height: 4.4rem;
}
.mainSlider .swiper-button-next:after,
.mainSlider .swiper-button-prev:after {
	font-size: 2rem;
}
.mainSlider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
}

/* ------------------------------------------------------------ */
/* タブ */
/* ------------------------------------------------------------ */
.tab-container {
	padding: clamp(1.6rem, 0.511rem + 3.404vw, 4rem);
	border-radius: 1rem;
}
.news .tab-container + .wp-block-buttons {
	margin-top: var(--gap-2xl);
	margin-bottom: 0;
}

.tab-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 1.2rem;
	row-gap: 1.2rem;
	max-width: 680px;
	margin: 0 auto var(--gap-rg);
}
.tab-btn-item {
	width: calc(50% - 0.6rem);
}
.tab-btn a {
	text-decoration: none !important;
	text-align: center;
	padding: 0.5em 1em;
	border-radius: 100vmax;
	font-size: 1.4rem;
	font-weight: bold;
	background-color: var(--color-white);
	border: 1px solid rgb(var(--color-primary-dark));
	color: rgb(var(--color-primary-dark));
}
.editor-area .tab-btn a {
	color: rgb(var(--color-primary-dark));
}
.tab-btn a.is-active,
.tab-btn a:hover {
	color: var(--color-white) !important;
	opacity: 1;
}
.cat_all.is-active,
.cat_all:hover {
	background-color: rgb(var(--color-point));
	border-color: rgb(var(--color-point));
}
.cat_news.is-active,
.cat_news:hover {
	background-color: rgb(var(--color-primary));
	border-color: rgb(var(--color-primary));
}
.cat_release.is-active,
.cat_release:hover {
	background-color: rgb(var(--color-primary-light));
	border-color: rgb(var(--color-primary-light));
}
.cat_column.is-active,
.cat_column:hover {
	background-color: rgb(var(--color-primary-dark));
	border-color: rgb(var(--color-primary-dark));
}

.tab-content {
	display: none;
}
.tab-content.is-active {
	display: block;
}
/* ------------------------------------------------------------ */
/* アコーディオン */
/* ------------------------------------------------------------ */

.ac-item {
	width: 100%;
	margin: 0 auto 2px;
}
.ac-ttl {
	width: 100%;
	padding: 0.5em 2em 0.5em 2.8em;
	background-color: rgb(var(--color-primary-lighter));
	position: relative;
	cursor: pointer;
}
.ac-ttl::before,
.ac-ttl::after {
	display: block;
	line-height: 1;
	position: absolute;
	-webkit-transition: var(--transition-all);
	transition: var(--transition-all);
}
.ac-ttl::before {
	content: "Q";
	font-family: var(--font-en);
	font-weight: bold;
	font-size: 2.4rem;
	color: rgb(var(--color-primary));
	left: 0.5em;
	top: 0.4em;
}
.ac-ttl::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	font-size: 1.4rem;
	line-height: 1;
	color: rgb(var(--color-primary));
	right: 0.8em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ac-ttl.is-active::after {
	content: "\f077";
}

.ac-cnt {
	/* display: none; */
	height: 0;
	padding: 0.5em 1em 0.5em 2.8em;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	position: relative;
	-webkit-transition: var(--transition-all);
	transition: var(--transition-all);
}
.ac-cnt p {
	margin-bottom: 1.2em !important;
	/* padding-bottom: 4rem; */
}
.ac-cnt p:last-of-type {
	padding-bottom: 4rem;
}

.ac-cnt::before {
	content: "A";
	font-family: var(--font-en);
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1;
	color: rgb(var(--color-point));
	position: absolute;
	top: 0.6em;
	left: 0.5em;
}
.ac-cnt.is-active {
	/* display: block; */
	height: auto;
	opacity: 1;
	visibility: visible;
}

/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
	background: rgb(var(--color-primary));
	color: var(--color-white);
	width: 100%;
}
.main-footer a {
	color: var(--color-white);
}
.footer_nav {
	display: flex;
	flex-wrap: wrap;
	padding: 8rem 5%;
}
.footer-menu {
	margin: 0 4rem 3.5rem 0;
	font-weight: bold;
	flex-basis: 24rem;
}
.footer-menu .menu-item {
	margin: 0 0 1.6rem;
	border: none;
}
.footer-menu .menu-item > a {
	font-size: 1.6rem;
	padding: 0;
}
.footer-menu .footer-menu-ttl {
	margin: 0 0 1.6rem;
}
.footer-menu .footer-menu-ttl a {
	font-size: 1.8rem;
}
.footer_sub {
	border-top: 1px solid var(--color-white);
	padding: 1rem 1.6rem;
}
.footer_sub li {
	display: inline-block;
	font-size: 1.4rem;
}
.footer_sub li:not(:last-child) {
	border-right: 1px solid;
	margin-right: 1rem;
	padding-right: 1rem;
}
.copy {
	font-family: "Lato", sans-serif;
	font-size: 1.2rem;
}
@media screen and (min-width: 480px) {
	/* スマートフォン横 */
	.sp {
		display: block;
	}
	.spnav {
		width: 350px;
	}
	.base {
		padding: 3em 0;
	}
	/* ------------------------------------------------------------ */
	/* flx_box */
	/* ------------------------------------------------------------ */
	/* 2カラム */
	.flx_2cols .flx_item {
		width: calc(100% / 2 - 0.5em);
		margin: 0 1em 1em 0;
	}
	.flx_2cols .flx_item:nth-child(2n),
	.flx_2cols .flx_item:last-child {
		margin: 0 0 1em;
	}
	/* 3カラム */
	.flx_3cols .flx_item {
		width: calc(100% / 3 - 0.5em);
		margin: 0 0.5em 1em 0;
	}
	.flx_3cols .flx_item:nth-child(3n) {
		margin: 0 0 1em;
	}
	/* 4カラム */
	.flx_4cols .flx_item {
		width: calc(100% / 4 - 0.5em);
		margin: 0 0.5em 1em 0;
	}
	.flx_4cols .flx_item:nth-child(4n) {
		margin: 0 0 1em;
	}
	/* ------------------------------------------------------------ */
	/* list  */
	/* ------------------------------------------------------------ */
	.grid-list {
		grid-template-columns: repeat(auto-fit, calc((100% - 1em) / 2));
		gap: 1em;
	}
	/* ------------------------------------------------------------ */
	/* section */
	/* ------------------------------------------------------------ */
	.tab-btn {
		justify-content: space-between;
		gap: 1.6rem;
	}
	.tab-btn-item {
		width: calc(50% - 0.8rem);
	}
}
@media screen and (min-width: 768px) {
	/* タブレット縦 / スマートフォン横 */
	/* ------------------------------------------------------------ */
	/* common content */
	/* ------------------------------------------------------------ */

	.base {
		padding: 4em 0;
	}

	/* .page-ttl {
		font-size: 3.2rem;
		padding: 3rem 0;
	} */
	/* ------------------------------------------------------------ */
	/* flx_box */
	/* ------------------------------------------------------------ */
	/* 2カラム */
	.flx_2cols .flx_item {
		width: calc(100% / 2 - 1em);
		margin: 0 2em 2em 0;
	}
	.flx_2cols .flx_item:nth-child(2n),
	.flx_2cols .flx_item:last-child {
		margin: 0 0 2em;
	}
	/* 3カラム */
	.flx_3cols .flx_item {
		width: calc(100% / 3 - 1em);
		margin: 0 1em 2em 0;
	}
	.flx_3cols .flx_item:nth-child(3n) {
		margin: 0 0 2em;
	}
	/* 4カラム */
	.flx_4cols .flx_item {
		width: calc(100% / 4 - 1em);
		margin: 0 1em 2em 0;
	}
	.flx_4cols .flx_item:nth-child(4n) {
		margin: 0 0 2em;
	}
	/* ------------------------------------------------------------ */
	/* list  */
	/* ------------------------------------------------------------ */
	.grid-list {
		grid-template-columns: repeat(auto-fit, calc((100% - 2em) / 2));
		gap: 2em;
	}
	.txt-list-item a {
		gap: 0.5em;
	}
	.txt-list-item p {
		max-width: calc(100% - (96px + 80px + 1em));
		padding-left: 0.5em !important;
	}
	/* ------------------------------------------------------------ */
	/* section */
	/* ------------------------------------------------------------ */
	.tab-btn {
		margin: 0 auto var(--gap-xl);
		gap: 1em;
	}
	.tab-btn-item {
		flex: 1;
	}
	.tab-btn a {
		font-size: 1.6rem;
		width: calc(50% - 0.5em);
	}
}
@media screen and (min-width: 1025px) {
	/* デスクトップ/タブレット横 */
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
	/* ------------------------------------------------------------ */
	/* header */
	/* ------------------------------------------------------------ */
	.main-header {
		height: 8.8rem;
		padding: 1.6rem;
	}
	.main-header .main-logo {
		width: 16.5rem;
	}
	.head-contact {
		width: 23rem;
		flex-shrink: 0;
		margin: 0;
		padding: 0;
	}

	.head-contact .phone-link,
	.head-contact .contact a {
		display: inline-block;
		height: auto;
	}
	.head-contact .phone-link {
		background: none;
		color: rgb(var(--color-primary));
		margin: 0;
		font-size: 2.8rem;
		line-height: 1;
	}
	.head-contact .contact a {
		padding: 0.3rem 0.3rem 0.3rem 1.4rem;
		width: 100%;
	}
	.head-contact .contact a .fa-circle-chevron-right {
		float: right;
		display: block;
	}
	.nav-toggle {
		display: none;
	}
	/* ------------------------------------------------------------ */
	/* gnav */
	/* ------------------------------------------------------------ */
	.gnav {
		box-shadow: none;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex-basis: calc(100% - 16.5rem);
		transform: none;
		position: initial;
		max-width: none;
		height: auto;
	}
	/* nav-menu */
	.nav-container {
		flex-basis: calc(100% - 23rem);
		margin: 0 auto;
		padding: 0 3rem;
		max-width: 88rem;
	}
	.nav-menu {
		display: flex;
		justify-content: space-between;
		margin: 0;
		position: relative;
	}
	.menu-item {
		position: relative;
		border: none;
	}
	.menu-item > *::after {
		content: none;
	}
	.menu-item > a,
	.menu-item .nav_ttl {
		border: none;
		padding: 0;
		font-size: clamp(1.3rem, 0.956rem + 0.54vw, 1.6rem);
	}
	.menu-item > a:hover {
		color: rgb(var(--color-primary));
	}
	.menu-item-has-children a::after,
	.menu-item .nav_ttl::before,
	.menu-item .nav_ttl::after {
		content: none !important;
	}
	.sub-menu,
	.nav-child {
		background: none;
		display: block;
		position: absolute;
		top: 3rem;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		z-index: 1;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s linear;
	}

	.menu-item-has-children:hover .sub-menu,
	.nav_ttl:hover + .nav-child,
	.sub-menu:hover,
	.nav-child:hover {
		max-height: 100vh;
	}
	.sub-menu::before,
	.nav-child::before {
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 9px 9px 9px;
		border-color: transparent transparent rgb(var(--color-primary-dark)) transparent;
		margin: auto;
	}
	.sub-menu li:not(:last-child),
	.nav-child li:not(:last-child) {
		border-bottom: 1px solid var(--color-white);
	}
	.sub-menu a,
	.nav-child a {
		background: rgb(var(--color-primary));
		color: var(--color-white);
		line-height: 1;
		white-space: nowrap;
	}
	.sub-menu a:hover {
		color: var(--color-white);
	}

	.gnav_sub {
		display: none;
	}
	/* ------------------------------------------------------------ */
	/* footer */
	/* ------------------------------------------------------------ */
	.footer_sub {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	/* ------------------------------------------------------------ */
	/* common content */
	/* ------------------------------------------------------------ */
	.content {
		padding: 8.8rem 0 0;
	}

	.base {
		padding: 5em 0;
	}
	/* ------------------------------------------------------------ */
	/* section */
	/* ------------------------------------------------------------ */
	.txt-list-item a {
		gap: 1em;
	}
	.txt-list-item .postdate {
		width: 100px;
		font-size: 1.5rem;
	}
	.cat {
		padding: 0.25em 0.5em;
		width: 100px;
		font-size: 1.5rem;
	}
	.txt-list-item p {
		max-width: calc(100% - (200px + 2em));
	}
}
