/* ==============================
 Reset & Base
 ============================== */

/* ブラウザデフォルト余白を削除・ボックスサイズ統一 */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* HTML・body 基本設定 */
html, body {
	height: 100%;
	line-height: 2;
	color: #000;
	font-family: "Yu Gothic","游ゴシック","YuGothic","游ゴシック体",-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP","Helvetica Neue",Arial,sans-serif;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
html {
	font-size: 18px;
}
@media screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
}

/* タイトル系の余白・スタイルを無効化 */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
	font-size: inherit;
	font-feature-settings: "palt";
	letter-spacing: .05em;
	line-height: 1.5;
}

/* 段落・リストの余白リセット */
p, ul, ol, dl {
	margin: 0;
	padding: 0;
	line-height: 2;
}

/* リストマーカーを非表示 */
ul, ol {
	list-style: none;
}

/* 定義リスト（dl, dt, dd）リセット */
dl, dt, dd {
	margin: 0;
	padding: 0;
}

/* dt / dd のデフォルト装飾を無効化 */
dt {
	font-weight: inherit;
}
dd {
	margin-left: 0; /* ブラウザ既定のインデント対策 */
}

/* strong, emの装飾を標準化 */
strong, em {
	font-weight: inherit;
	font-style: normal;
}

/* テーブルリセット */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 画像・動画の基本設定 */
img, video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* リンク */
a {
	color: inherit;
	text-decoration: none;
	transition: opacity .4s ease;
}
a:hover {
	opacity: .7;
}

/* フォーム要素リセット */
input, button, textarea, select {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
}

/* ボタンのクリック時カーソル */
button {
	cursor: pointer;
}

/*改行*/
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: inline-block;
	}
}


/*--------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------*/
header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: auto;
	background: transparent;
}
.home header {
	position: absolute;
}
header::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #005bac;
	width: 72.92vw; /*1400px*/
	height: 340px;
	z-index: 1;
	pointer-events: none;
	-webkit-clip-path: polygon(120px 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(120px 0, 100% 0, 100% 100%, 0 100%);
}
.home header::after {
	display: none;
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	position: relative;
	height: 140px;
	margin: 0 170px 0 3.65vw; /*70px*/
	z-index: 3;
}
.header__inner .flex {
	display: flex;
	align-items: center;
	gap: 30px;
}
.header__left {
	gap: 30px;
}
.logo {
	display: block;
	max-width: 200px;
	width: 100%;
}
.home .header__logo img {
	filter: brightness(0) invert(1);
}
.header__right {
	font-weight: 700;
	color: #fff;
}
@media screen and (max-width: 1100px) {
	.header__right {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	header::after {
		height: 200px;
	}
	.header__inner {
		height: 70px;
	}
	.logo {
		max-width: 100px;
	}
}

/* ── ハンバーガーボタン ───────────────── */
.hamburger-btn {
	position: fixed;
	top: 35px;
	right: 3.65vw; /*70px*/
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: #005bac;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1003;
	transition: background 0.25s ease, transform 0.15s ease;
}
.hamburger-btn__inner {
	position: relative;
	width: 32px;
	height: 18px;
}
.hamburger-btn__line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 99px;
	background: #fff;
	transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease, opacity 0.2s ease;
}
.hamburger-btn__line--top {
	top: 0;
}
.hamburger-btn__line--middle {
	top: 8px;
}
.hamburger-btn__line--bottom {
	bottom: 0;
}
@media screen and (max-width: 768px) {
	.hamburger-btn {
		top: 10px;
		width: 50px;
		height: 50px;
	}
	.hamburger-btn__inner {
		width: 24px;
		height: 16px;
	}
	.hamburger-btn__line--middle {
		top: 7px;
	}
}

/* 開いているときの「×」状態 */
.hamburger-btn.is-open .hamburger-btn__line--top {
	top: 8px;
	transform: rotate(45deg);
}
.hamburger-btn.is-open .hamburger-btn__line--middle {
	opacity: 0;
}
.hamburger-btn.is-open .hamburger-btn__line--bottom {
	bottom: 8px;
	transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
	.hamburger-btn.is-open .hamburger-btn__line--top {
		top: 7px;
	}
	.hamburger-btn.is-open .hamburger-btn__line--bottom {
		bottom: 7px;
	}
}

/* ── オーバーレイ ───────────────── */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45); /* 後ろを暗くする */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 1000;
}
.overlay.is-active {
	opacity: 1;
	visibility: visible;
}

/* ── メニュー本体（右からスライドイン） ───────────────── */
.side-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(80%, 320px);
	height: 100vh;
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	z-index: 1002;
	display: flex;
	flex-direction: column;
	padding: 120px 50px 50px;
	overflow-y: hidden;
}
.side-menu.is-open {
	transform: translateX(0);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.side-menu__nav {
	font-weight: 700;
	margin-bottom: 50px;
}
.side-menu__sub {
	font-size: 14px;
	font-weight: 700;
}
.side-menu__sub a[target="_blank"] {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.side-menu__sub a[target="_blank"]::after {
	content: "";
	display: block;
	background-image: url("../images/ico_blanck.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 12px;
	height: 10px;
}
@media screen and (max-width: 768px) {
	.side-menu {
		padding: 80px 32px 32px;
	}
}


/*------------------------------------
.gnavi
------------------------------------*/
.gnavi dl {
	font-weight: 700;
}
.gnavi dt {
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
}
.gnavi dt a {
	display: block;
	position: relative;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #005bac;
	padding: 20px 0;
}
.gnavi dt a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url("../images/arrow_bl.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.gnavi dt a:hover::after {
	transform: translate(8px, -50%);
}
.gnavi dd {
	padding: 0;
}
.gnavi dd a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #005bac;
}
.gnavi dd:not(:last-child) {
	margin-bottom: 5px;
}
.gnavi dd a::before {
	content: "";
	display: block;
	background-color: #005bac;
	width: 5px;
	height: 2px;
	transform: skewX(-20deg);
}
.gnavi a[target="_blank"] {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.gnavi a[target="_blank"]::after {
	content: "";
	display: block;
	background-image: url("../images/ico_blanck.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 12px;
	height: 10px;
}
@media screen and (max-width: 768px) {}


/*--------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------*/
footer {
	padding-top: 140px;
}
footer .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 60px 190px;
	max-width: 1260px;
	width: calc(100% - 7.29vw);
	margin: auto;
	padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
	footer {
		padding-top: 70px;
	}
	footer .container {
		gap: 30px;
	}
}

/*.footer-left*/
.footer-left {
	flex: 1 1 440px;
}
.company-info {
	font-size: 16px;
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.company-info {
		font-size: 14px;
		margin-top: 20px;
	}
}

/*.footer-right*/
.footer-right {
	display: flex;
	flex-wrap: wrap;
	gap: 110px;
	flex: 1 1 630px;
}
.footer-right .half {
	width: calc((100% - 110px) / 2);
}
@media screen and (max-width: 768px) {
	.footer-right {
		gap: 20px;
	}
	.footer-right .half {
		width: 100%;
	}
}

/*.footer-bottom*/
.footer-bottom {
	border-top: 1px solid #ddd;
	width: 100%;
	padding-top: 30px;
}
.footer-bottom .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 22px;
	font-size: 14px;
	font-weight: 700;
}
.footer-bottom a[target="_blank"] {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.footer-bottom a[target="_blank"]::after {
	content: "";
	display: block;
	background-image: url("../images/ico_blanck.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 12px;
	height: 10px;
}
@media screen and (max-width: 768px) {
	.footer-bottom .list {
		gap: 15px;
		font-size: 12px;
	}
	.footer-bottom a[target="_blank"] {
		gap: 5px;
	}
}

/*.copyright*/
.copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #005bac;
	height: 60px;
	font-size: 14px;
	letter-spacing: .08em;
	line-height: 1;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.copyright {
		height: 50px;
		font-size: 12px;
	}
}


/*--------------------------------------------------------------------------
汎用
--------------------------------------------------------------------------*/
.page {
  position: relative;
}
main{
  position: relative;
  z-index: auto;
}
main::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}
main .breadcrumb,
main .page-title,
main .anchor,
main section,
.single .container,
.single .more-small {
  position: relative;
  z-index: 2;
}
section .container {
	width: calc(100% - 7.29vw); /*140px*/
	margin: auto;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.en
------------------------------------*/
.en {
	font-family: "Outfit", sans-serif;
	font-weight: 400;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.ttl
------------------------------------*/
.ttl {
	display: flex;
	flex-direction: column;
	font-size: 35px;
	color: #005bac;
	margin-bottom: 40px;
}
.ttl span {
	font-size: 14px;
	letter-spacing: .08em;
}
.ttl::after {
	content: "";
	background-color: #005bac;
	width: 130px;
	height: 5px;
	transform: skewX(-20deg);
	margin-top: 10px;
}
@media screen and (max-width: 768px) {
	.ttl {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.ttl span {
		font-size: 12px;
	}
	.ttl::after {
		width: 80px;
	}
}


/*------------------------------------
.link
------------------------------------*/
.link {
	margin-top: 50px;
}
.link a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 2px solid #005bac;
	border-radius: 35px;
	max-width: 300px;
	width: 100%;
	height: 70px;
	letter-spacing: .08em;
	color: #005bac;
}
.link a:hover {
	opacity: 1;
}
.link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url("../images/arrow_bl.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.link a:hover::after {
	transform: translate(8px, -50%);
}
@media screen and (max-width: 768px) {
	.link {
		margin-top: 30px;
	}
	.link a {
		max-width: 250px;
		height: 60px;
		margin: auto;
	}
}


/*------------------------------------
.accordion
------------------------------------*/
.accordion li {
	background-color: #fff;
}
.accordion li:not(:last-child) {
	margin-bottom: 16px;
}
.accordion .que {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #002965;
	padding: 20px 30px;
	cursor: pointer;
}
.accordion h3::before {
	content: "Q. ";
}
.accordion .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border: 1px solid #005bac;
	border-radius: 50%;
	width: 24px;
	height: 24px;
}
.accordion .arrow:after {
	content: "";
	background-image: url("../images/faq-arrow.svg");
	background-size: cover;
	width: 6px;
	height: 8px;
	transform: rotate(90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.accordion .que.active .arrow:after {
	transform: rotate(-90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.accordion .ans {
	display: none;
	font-size: 14px;
	padding: 10px 40px 40px;
}
.accordion p:not(:last-child) {
	margin-bottom: 20px;
}
.accordion a {
	text-decoration: underline;
	color: #8d3949;
}
.accordion a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.accordion .que {
		padding: 16px 24px;
	}
	.accordion .ans {
		font-size: 13px;
		padding: 0 24px 24px;
	}
}


/*------------------------------------
#entry
------------------------------------*/
#entry {
	background-color: #fff;
	padding-top: 120px;
}
#entry .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #005bac;
	border-radius: 20px;
	max-width: 1600px;
	height: 500px;
	padding: 0 3.65vw;
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.2);
}
#entry .ttl,
#entry p {
	color: #fff;
}
#entry .ttl {
	align-items: center;
}
#entry .ttl::after {
	background-color: #fff;
}
#entry p {
	text-align: center;
	margin-bottom: 40px;
}
#entry a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #fff;
	border-radius: 10px;
	max-width: 500px;
	width: 100%;
	height: 100px;
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	color: #005bac;
}
#entry a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url("../images/ico_blanck_bl.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 12px;
	height: 10px;
}
@media screen and (max-width: 768px) {
	#entry {
		padding-top: 60px;
	}
	#entry .container {
		height: auto;
		padding: 50px 30px;
	}
	#entry p {
		text-align: left;
		margin-bottom: 20px;
	}
	#entry a {
		height: 70px;
		font-size: 16px;
	}
	#entry a::after {
		right: 20px;
	}
}


/*------------------------------------
.breadcrumb
------------------------------------*/
.breadcrumb {
	padding: 10px 0;
}
.breadcrumb ul {
	margin: 0 3.65vw;
}
.breadcrumb li {
	display: inline;
	position: relative;
	font-size: 12px;
	padding: 0 15px;
}
.breadcrumb li:first-child {
	padding-left: 0;
}
.breadcrumb li::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	width: 5px;
	height: 5px;
	margin-top: -3px;
	transform: rotate(45deg);
}
.breadcrumb li:last-child::after {
	border: none;
}
@media screen and (max-width: 768px) {
	.breadcrumb ul {
		line-height: 1.3;
	}
}


/*------------------------------------
.page-title
------------------------------------*/
.page-title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	width: calc(100% - 7.29vw);
	min-height: 350px;
	margin: auto;
	overflow: hidden;
}
.page-title::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3); /* #000 30% */
	z-index: 1;
}
.page-title .label {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	font-size: 50px;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
	z-index: 2;
}
.page-title span {
	font-size: 18px;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {
	.page-title {
		min-height: 180px;
	}
	.page-title .label {
		font-size: 26px;
	}
	.page-title span {
		font-size: 14px;
	}
}


/*------------------------------------
.anchor
------------------------------------*/
.anchor {
	padding-top: 100px;
}
.anchor-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 1260px;
	width: calc(100% - 7.29vw);
	margin: 0 auto;
}
.anchor-list li {
	position: relative;
	width: calc((100% - 20px)/3);
}
.anchor-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #ccc;
	height: 60px;
	text-align: center;
	white-space: nowrap;
	z-index: 0;
}
.anchor-list a:hover {
	opacity: 1;
}
.anchor-list li:before,
.anchor-list li:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #9fa0a0;
}
.anchor-list a:before,
.anchor-list a:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #9fa0a0;
}
.anchor-list li:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.anchor-list li:after {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.anchor-list a:before {
	top: 0;
	left: -1px;
	width: 2px;
	height: 100%;
}
.anchor-list a:after {
	top: 0;
	right: -1px;
	width: 2px;
	height: 100%;
}
.anchor-list li:hover:before,
.anchor-list li:hover:after {
	opacity: 1;
}
.anchor-list li:hover a:before,
.anchor-list li:hover a:after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.anchor {
		padding-top: 50px;
	}
	.anchor-list li {
		width: calc((100% - 10px)/2);
	}
	.anchor-list a {
		height: 50px;
	}
}


/*------------------------------------
.table
------------------------------------*/
.table dl {
	display: flex;
	align-items: baseline;
	column-gap: 20px;
	padding: 20px 0;
}
.table dl:not(:last-child) {
	border-bottom: 1px solid #ddd;
}
.table dt {
	flex: 0 0 150px;
	font-weight: 700;
}
.table dd {
	flex: 1 1 auto;
	min-width: 0;
}
@media screen and (max-width: 768px) {
	.table dl {
		padding: 10px 0;
	}
	.table dt {
		flex: 0 0 90px;
	}
}


/*------------------------------------
.slick-slider
------------------------------------*/
.slick-prev,
.slick-next {
	background-color: #005bac;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}
.slick-prev {
	left: 50px;
	z-index: 1;
}
.slick-next {
	right: 50px;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	background-color: #005bac;
}
.slick-prev:before,
.slick-next:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-image: url("../images/arrow_wh.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	font-size: 0;
	opacity: 1;
}
.slick-prev:before {
	transform: translate(-50%, -50%) scaleX(-1);
}
@media screen and (max-width: 768px) {
	.slick-prev,
	.slick-next {
		width: 50px;
		height: 50px;
	}
	.slick-prev {
		left: 15px;
	}
	.slick-next {
		right: 15px;
	}
}

/*.slick-dots*/
.slick-dots {
	bottom: -40px;
}
.slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0 10px;
}
.slick-dots li button {
	width: 10px;
	height: 10px;
}
.slick-dots li button:before {
	background-color: #000;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	font-size: 0;
}
@media screen and (max-width: 768px) {
	.slick-dots li {
		width: 8px;
		height: 8px;
		margin: 0 6px;
	}
	.slick-dots li button {
		width: 8px;
		height: 8px;
	}
	.slick-dots li button:before {
		width: 8px;
		height: 8px;
	}
}


/*------------------------------------
#contact
------------------------------------*/
/*.g-form*/
.g-form .form-col {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 20px 0;
}
.g-form .form-col:not(:last-of-type) {
	border-bottom: 1px solid #ddd;
}
.g-form .form-col dt {
	flex: 0 0 250px;
	font-weight: 700;
	white-space: nowrap;
}
.g-form .form-col dt .req {
	color: #dc1111;
	margin-left: 4px;
}
.g-form .form-col dd {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
}
.g-form .form-col:first-child dd p {
	position: relative;
}
.g-form .form-col:first-child dd p::after {
	content: "";
	display: block;
	position: absolute;
	top: 45%;
	right: 30px;
	border-top: 6px solid #000;
	border-right: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid transparent;
}
.g-form .form-col dd .conditional-input {
	margin-top: 16px;
}
.g-form .wpcf7-list-item {
	display: block;
	margin: 0;
}
.g-form .wpcf7-list-item:not(:last-child) {
	margin-bottom: 8px;
}
.g-form .wpcf7-list-item label {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0;
}
.g-form .wpcf7-list-item span {
	font-size: 18px;
	line-height: 1;
}
.g-form input[type=checkbox],
.g-form input[type=radio] {
	background-color: #fff;
	border: 1px solid #ccc;
	width: 20px;
	height: 20px;
	transition: 0.5s ease;
}
.g-form input[type=checkbox]:after {
	top: 1px;
	border-width: 2px;
	transform: rotate(45deg);
}
.g-form input[type=checkbox]:checked {
	background-color: #005bac;
	border: 1px solid #005bac;
}
.g-form input[type=checkbox]:checked:after {
	border-color: #fff;
}
.g-form .wpcf7-list-item-label {
	cursor: pointer;
}
.g-form input[type=text],
.g-form input[type=email],
.g-form input[type=tel],
.g-form input[type=number],
.g-form input[type=password],
.g-form input[type=search],
.g-form input[type=url] {
	background-color: #f1f1f1;
	width: 100%;
	margin: 0;
	padding: 15px;
}
.g-form textarea,
.g-form select {
	display: block;
	background-color: #f1f1f1;
	width: 100%;
	padding: 15px;
	outline: none;
}
.g-form textarea {
	height: 160px;
}
.g-form .privacy-agree {
	text-align: center;
	margin-top: 30px;
}
.g-form .privacy-agree p:first-child {
	margin-bottom: 30px;
}
.g-form .privacy-agree p a {
	text-decoration: underline;
	color: #005bac;
}
.g-form .privacy-agree p a:hover {
	text-decoration: none;
}
.g-form .submit {
	margin-top: 50px;
}
.g-form .submit input[type=submit] {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #005bac;
	border-radius: 30px;
	max-width: 250px;
	width: 100%;
	height: 60px;
	color: #fff;
	margin: auto;
	transition: .5s ease;
	cursor: pointer;
}
.g-form .submit input[type=submit]:hover {
	opacity: .6;
}
.g-form .submit .wpcf7-spinner {
	display: none;
}
.wpcf7 form.invalid .wpcf7-response-output {
	display: none;
}
@media screen and (max-width: 768px) {
	.g-form .form-col {
		flex-direction: column;
		align-items: flex-start;
	}
	.g-form .form-col dt {
		flex: 0;
		margin-bottom: 15px;
	}
	.g-form .form-col dd {
		padding: 0;
	}
	.g-form .wpcf7-list-item span {
		font-size: 14px;
	}
	.g-form input[type=text],
	.g-form input[type=email],
	.g-form input[type=tel],
	.g-form input[type=number],
	.g-form input[type=password],
	.g-form input[type=search],
	.g-form input[type=url],
	.g-form textarea {
		font-size: 16px;
	}
	.g-form textarea {
		height: 110px;
	}
	.g-form .submit {
		margin-top: 30px;
	}
	.g-form .submit input[type=submit] {
		width: 160px;
		height: 40px;
	}
}




/*--------------------------------------------------------------------------
投稿関連
--------------------------------------------------------------------------*/
/*------------------------------------
.topic-path
------------------------------------*/
.topic-path {
	background-color: #ffdde0;
	padding: 16px 0;
}
.topic-path ul {
	line-height: 1;
	padding: 0 56px;
}
.topic-path ul li,
.topic-path ul span {
	display: inline;
	font-size: 14px;
	line-height: 1.3;
}
.topic-path ul li a:after {
	content: "／";
	padding: 0 8px;
}
@media screen and (max-width: 768px) {
	.topic-path ul {
		padding: 0 16px;
	}
}


/*------------------------------------
投稿一覧
------------------------------------*/
.archive .page-title {
	background-image: url("../images/mv.webp");
}
.archive section {
	padding: 80px 0 120px;
}
.archive .container {
	max-width: 1260px;
	width: calc(100% - 7.29vw);
	margin: auto;
}
.archive .list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.archive .entry {
	width: calc((100% - 120px)/4);
}
.archive .img {
	margin-bottom: 20px;
	overflow: hidden;
}
.archive .img img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
	transform: scale(1);
}
.archive .img a:hover img {
	transform: scale(1.1);
}
.archive .post-tags {
	display: flex;
	justify-content: flex-start;
	gap: 5px;
	margin-bottom: 8px;
}
.archive .post-tags a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #005bac;
	height: 25px;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	padding: 0 8px;
}
.archive h2 {
	font-size: 22px;
}
.article_text {
	margin-top: 10px;
}
.article_text p {
	font-size: 16px;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.archive section {
		padding: 50px 0 70px;
	}
	.archive .list {
		gap: 30px 15px;
	}
	.archive .entry {
		width: calc((100% - 15px)/2);
	}
	.archive .img {
		margin-bottom: 15px;
	}
	.archive .post-tags {
		gap: 3px;
		margin-bottom: 5px;
	}
	.archive .post-tags a {
		height: 20px;
		font-size: 12px;
	}
	.archive h2 {
		font-size: 16px;
	}
	.article_text p {
		font-size: 14px;
	}
}

/*.pager*/
.archive .pager {
	padding-top: 100px;
}
.archive .pager,
.archive .pager ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.archive .pager {
	gap: 64px;
}
.archive .pager ul {
	gap: 32px;
}
.archive .pager ul li {
	position: relative;
}
.archive .pager ul li:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #005bac;
	width: 0;
	height: 4px;
	transition: 0.5s ease;
}
.archive .pager ul li:hover:after {
	width: 100%;
	opacity: 1;
}
.archive .pager ul li.current:after {
	width: 100%;
}
.archive .pager ul li a,
.archive .pager ul li span {
	display: block;
	font-family: "Outfit", serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	padding: 0 16px 24px;
}
.archive .pager ul li span {
	color: #005bac;
}
.archive .pager .arrow a {
	display: block;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.archive .pager .arrow.prev a:hover {
	transform: translateX(-8px);
}
.archive .pager .arrow.prev img {
	transform: scale(-1, 1);
}
.archive .pager .arrow.next a:hover {
	transform: translateX(8px);
}
@media screen and (max-width: 768px) {
	.archive .pager {
		gap: 16px;
		padding-top: 50px;
	}
	.archive .pager ul {
		gap: 0;
	}
	.archive .pager ul li a,
	.archive .pager ul li span {
		font-size: 16px;
		padding: 0 16px 16px;
	}
}


/*------------------------------------
投稿詳細
------------------------------------*/
.single .page-title {
	background-image: url("../images/mv.webp");
}
@media screen and (max-width: 768px) {}

/*.main-sec*/
.single .main-sec {
	padding-top: 80px;
}
.single .main-sec .container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 40px;
}
.single .main-sec ul {
	display: flex;
	justify-content: flex-start;
	gap: 5px;
}
.single .main-sec ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #005bac;
	height: 25px;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	padding: 0 8px;
}
.single .main-sec h1 {
	font-size: 30px;
}
.single .main-sec time {
	letter-spacing: .05em;
}
@media screen and (max-width: 768px) {
	.single .main-sec {
		padding-top: 20px;
	}
	.single .main-sec .container {
		gap: 8px;
		padding-bottom: 16px;
	}
	.single .main-sec ul {
		gap: 3px;
		margin-bottom: 5px;
	}
	.single .main-sec ul a {
		height: 20px;
		font-size: 12px;
	}
	.single .main-sec h1 {
		font-size: 22px;
	}
}

/*.container*/
.single .container {
	max-width: 900px;
	width: calc(100% - 7.29vw);
	margin: 0 auto;
}
@media screen and (max-width: 768px) {}

/*.cms-block*/
.single .cms-block h2 {
	font-size: 30px;
	margin: 60px 0 30px;
}
.single .cms-block picture {
	display: block;
	margin: 40px 0;
}
.single .cms-block > p {
	margin: 30px 0;
}
.single .cms-block strong {
	font-weight: 900;
}
.single .cms-block em {
	font-style: italic;
}
.single .cms-block ul,
.single .cms-block ol {
	margin: 30px 0;
	padding-left: 30px;
}
.single .cms-block ul li {
	list-style: disc;
}
.single .cms-block ol li {
	list-style: decimal;
}
.single .cms-block li:not(:last-child) {
	margin-bottom: 4px;
}
.single .cms-block blockquote {
	position: relative;
	border-left: 4px solid #000;
	padding: 15px 0 15px 60px;
}
.single .cms-block blockquote:before {
	top: -25px;
	left: 30px;
	font-family: "Outfit", sans-serif;
	font-size: 50px;
}
.single .cms-block blockquote > p {
	font-size: 18px;
}
.single .cms-block a {
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.single .cms-block h2 {
		font-size: 18px;
		margin: 30px 0 20px;
	}
	.single .cms-block picture {
		margin: 20px 0;
	}
	.single .cms-block > p {
		margin: 20px 0;
	}
	.single .cms-block ul,
	.single .cms-block ol {
		margin: 20px 0;
		padding-left: 20px;
	}
	.single .cms-block blockquote {
		padding: 10px 0 10px 40px;
	}
	.single .cms-block blockquote:before {
		top: -20px;
		left: 15px;
		font-size: 40px;
	}
}

/*.more-small*/
.single .more-small {
	margin-top: 100px;
}
.single .more-small a {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #ebeff2;
	border-radius: 30px;
	max-width: 250px;
	width: 100%;
	height: 60px;
	margin: auto;
	padding-left: 35px;
}
.single .more-small a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%);
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.single .more-small a:hover::after {
	transform: translate(8px, -50%);
}
@media screen and (max-width: 768px) {
	.single .more-small {
		margin-top: 50px;
	}
}
