﻿@charset "utf-8";
/*
Theme Name: anesiscms
Theme URI: 
Template: habakiri
Description: 
Author: Studio Orbiter TS
Tags: 
Version: 0.1.0
*/

/*------------------------------------------------------------------------------*/
/* 基本設定 */
/*------------------------------------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	color: #000;
	min-width: 320px;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

p {
	font-size: 16px;
	font-weight: 200;
	letter-spacing: 0.05em;
	line-height: 1.8em;
	margin: 0px auto;
	max-width: 1080px;
}

ul {
	font-size: 16px;
	font-weight: 200;
	letter-spacing: 0.05em;
	line-height: 1.8em;
	padding-left: 30px;
	list-style: square;
}

ol {
	font-size: 16px;
}

@media screen and (max-width:599px) {
	p {
		font-size: 14px;
	}

	ul {
		font-size: 14px;
		padding-left: 20px;
	}
}

table {
	font-size: 16px;
}

a:focus {
	outline: none;
}

.small,
small {
	font-size: 80%;
}

.sub-page-contents {
	padding-top: 0px;
}


hr {
	margin-top: 30px;
	margin-bottom: 30px;
	border-top: 1px solid #E61717;
}

/*------------------------------------------------------------------------------*/
/* プリセットマージン */
/*------------------------------------------------------------------------------*/
.mb0 {
	margin-bottom: 0;
}

.mb5 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb45 {
	margin-bottom: 45px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb55 {
	margin-bottom: 55px;
}

.mb60 {
	margin-bottom: 60px;
}

.pud30 {
	padding: 30px 0px;
}

/*------------------------------------------------------------------------------*/
/* ヘッダ */
/*------------------------------------------------------------------------------*/
#header {
	z-index: 4;
}

.header--transparency.header--fixed--is_scrolled {
	background-color: rgba(0, 0, 0, .5) !important;
}

.header--transparency.header--fixed--is_scrolled a {
	color: #707070 !important;
}

.site-branding {
	padding: 15px 0;
}

.site-branding__heading img {
	max-height: 48px;
	/*	filter: drop-shadow(1px 1px 0px rgb(255, 255, 255));*/
}

/*---アンカータグがある場合のズレ調整---*/
.anchor {
	margin-top: -78px;
	padding-top: 78px;
}


/*------------------------------------------------------------------------------*/
/* ページヘッダ */
/*------------------------------------------------------------------------------*/
.page-header {
	padding: 130px 15px 80px;
	border-bottom: none;
	/*background: linear-gradient(90deg, #E61717 20%, #E61717 80%);*/
	background-color: brown !important;
	background-repeat: none;
	background-image: url(../../uploads/2023/01/img_section_04.jpg);
	background-blend-mode: soft-light;
	background-position-y: bottom;
}

.page-header__title {
	font-family: 'Nanum Myeongjo', serif;
	font-size: 4.0em;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-align: left;
	margin: 0;
	color: #fff;
}

@media (max-width: 960px) {
	.page-header__title {
		font-size: 2.2em;
		margin: 0;
	}
}

@media (max-width: 599px) {
	.page-header {
		padding: 100px 15px 60px 15px;
	}

	.page-header__title {
		font-size: 2.0em;
		margin: 0;
	}
}

@media (max-width: 499px) {
	.page-header__title {
		font-size: 1.8em;
		margin: 0;
	}
}


/*------------------------------------------------------------------------------*/
/* パンくずリスト */
/*------------------------------------------------------------------------------*/
.breadcrumbs {
	font-weight: 300;
	padding: 6px;
	margin-bottom: 30px;
	color: #000;
	background-color: #eee;
}

.breadcrumbs a {
	font-weight: 500;
	margin: 0 10px;
	color: #861975;
}

.breadcrumbs a:hover {
	color: #E61717;
}

.breadcrumbs strong {
	margin: 0 10px;
}

@media (max-width: 599px) {
	.breadcrumbs {
		margin-bottom: 0px;
	}
}

/*------------------------------------------------------------------------------*/
/* グローバルナビ */
/*------------------------------------------------------------------------------*/
.header--fixed,
.header.header--fixed--is_scrolled {
	box-shadow: none;
	background-color: rgba(0, 0, 0, 0.3) !important;
}

.header--fixed--is_scrolled .menu li small {
	color: #777 !important;
}

/*---グローバルナビの文字左寄せ---*/
.responsive-nav .menu-item {
	text-align: left;
	font-family: 'Nanum Myeongjo', serif;
	/*filter: drop-shadow(0 0 2px rgba(0, 0, 0, .1));*/
}

/*---説明文字の高さ---*/
.menu li small {
	line-height: 0.8em;
}

/*---グローバルナビに区切り線---*/
.menu li:first-child {
	border-left: none;
}

.menu li a {
	position: relative;
	width: 100%;
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
}

/*---ホバーで下線---*/
.menu li a:hover {
	color: #E61717 !important;
}

.menu li a::after {
	position: absolute;
	bottom: 0px;
	left: 0px;
	content: '';
	width: 100%;
	height: 2px;
	background: #E61717;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}

.menu li a:hover::after {
	transform: scale(1, 1);
}

/*---選択時文字色 ノーマル---*/
.current_page_item a {
	color: #E61717 !important;
	background-color: rgba(255, 255, 255, 0.8) !important;
}

.header--fixed--is_scrolled .current_page_item a {
	color: #E61717 !important;
	background-color: rgba(255, 255, 255, 0.8) !important;
}

/*---選択時文字色 ノーマル・サブメニュー---*/
.current_page_item small {
	color: #E61717 !important;
	background-color: rgba(255, 255, 255, 0.8) !important;
}

.header--fixed--is_scrolled .current_page_item small {
	color: #E61717 !important;
	background-color: rgba(255, 255, 255, 0.8) !important;
}

/*---選択時文字色 カスタム投稿タイプ---*/
.current-menu-item a {
	color: #E61717 !important;
	background-color: rgba(255, 255, 255, 0.8) !important;
}

.header--fixed--is_scrolled .current-menu-item a {
	color: #E61717 !important;
	background-color: rgba(255, 255, 255, 0.8) !important;
}

/*---サブメニューhover時に全幅（最大幅は親に準拠）---*/
.responsive-nav .children a,
.responsive-nav .sub-menu a {
	padding: 10px;
	width: 100%;
	font-size: 12px;
	font-weight: 600;
}


/*------------------------------------------------------------------------------*/
/* ハンバーガーボタン */
/*------------------------------------------------------------------------------*/
/*---角丸---*/
#responsive-btn {
	border-width: 0.5px !important;
	border-radius: 4px !important;
	padding: 8px;
	transition: all .5s;
	font-size: 20px;
}

/*---開くアイコン変更（fontaesome）---*/
.responsive-nav-wrapper #responsive-btn::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0c9";
	font-weight: 600;
}

/*---閉じるアイコン変更（fontaesome）---*/
.responsive-nav-wrapper.off-canvas-nav-open #responsive-btn::before {
	font-family: "Font Awesome 5 Free";
	content: "\f00d";
	font-weight: 600;
}


/*------------------------------------------------------------------------------*/
/* オフキャンバスメニュー */
/*------------------------------------------------------------------------------*/
/*---メニュー既存スタイル変更：メインコンテンツ影消去---*/
.responsive-nav-contents {
	position: relative;
	box-shadow: none;
}

.off-canvas-nav--dark {
	background: #E61717;
}

.off-canvas-nav--dark a {
	color: #fff;
}

.off-canvas-nav--dark a:hover {
	color: #E61717;
	background-color: #fff;
}

.off-canvas-nav--dark ul {
	border: none;
}

.off-canvas-nav--dark li {
	border: none;
}

.off-canvas-nav--dark .current_page_item a {
	background-color: #fff;
	color: #E61717;
}

/*---サブメニュー既存スタイル変更：左線消去---*/
.off-canvas-nav--dark ul ul {
	border-top: none;
	border-left: none;
	margin-bottom: -1px;
	margin-left: 2em;
	opacity: 1;
	visibility: visible;
}

.off-canvas-nav--dark ul ul li {
	border-left: none;
}

.responsive-nav-contents {
	position: relative;
	box-shadow: none;
}


/*------------------------------------------------------------------------------*/
/* スライダー */
/*------------------------------------------------------------------------------*/
#main_visual {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #000;
}

.main_visual_img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	opacity: 0.8;
}

.main_visual_img img {
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}

.slider_copy {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.slider_copy img {
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	max-width: 980px;
	width: 100%;
}

.slider_copy p {
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	max-width: 980px;
	width: 100%;
}

/*------------------------------------------------------------------------------*/
/* フッタ */
/*------------------------------------------------------------------------------*/

/*---汎用要素---*/
.origin_footer {
	position: relative;
	padding: 60px 0px;
}

.origin_footer a {
	color: #fff;
}

#footer_info {
	float: left;
	padding-right: 15px;
	padding-bottom: 15px;
}

.footer_logo {
	padding-bottom: 15px;
}

.footer_logo img {
	max-width: 230px;
}

.access_info p {
	font-size: 1em;
	font-weight: 600;
	color: #fff;
}

.footer_link {
	float: left;
	padding-right: 15px;
	padding-bottom: 15px;
}

.footer_link h3 {
	font-size: 14px;
}

.footer_link a {
	color: #fff;
}

.footer_link a:hover {
	color: #E61717;
}

.footer_link ul {
	float: left;
	list-style: none;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
	padding: 0px 15px;
	margin-bottom: 0px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.copyright {
	font-size: 12px;
	text-align: center;
	color: #fff;
	padding: 8px;
	background-color: #A89B93;
}

/*------------------------------------------------------------------------------*/
/* Page to Top */
/*------------------------------------------------------------------------------*/
.footer_cta {
	width: 100%;
}

#page_top {
	position: absolute;
	right: 24px;
	top: -60px;
	width: 40px;
	height: 40px;
	background: #A89B93;
	border-radius: 2px;
}

#page_top a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	text-decoration: none;
}

#page_top a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f077';
	font-size: 24px;
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}


/*------------------------------------------------------------------------------*/
/* アニメーション */
/*------------------------------------------------------------------------------*/
/*---ページをふわっと表示---*/
@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

/*---スクロールインエフェクト---*/
.fade-in {
	opacity: 0;
	transition-duration: 1000ms;
	transition-property: opacity, transform;
}

.fade-in-up {
	transform: translate(0, 50px);
}

.fade-in-down {
	transform: translate(0, -50px);
}

.fade-in-left {
	transform: translate(-50px, 0);
}

.fade-in-right {
	transform: translate(50px, 0);
}

.scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}


/*------------------------------------------------------------------------------*/
/* レイアウトコントロール */
/*------------------------------------------------------------------------------*/
/*---CTA座標検知のための設定---*/
body {
	position: relative;
}

/*---メインコンテンツ最低高1画面---*/
.sub-page-contents {
	min-height: 100vh;
}

/*---中央寄せ---*/
.align_center {
	text-align: center;
}

/*---要素全幅---*/
.side_0 {
	padding-right: 0px;
	padding-left: 0px;
}

/*---文章段落---*/
.paragraph {
	padding: 0px 15px 20px;
	margin: 0px;
	word-break: keep-all;
}

/*---太字---*/
.bold {
	font-weight: bold;
}

/*---大きい文字---*/
.large {
	font-size: 1.5em;
	line-height: 1.5em;
}

.x_large {
	font-size: 2.0em;
	line-height: 2.0em;
}

.small {
	font-size: 0.8em;
	font-weight: 300;
	line-height: 1.3em;
}

/*---色付き文字---*/
.color {
	color: #c2b8e6;
}

/*---右寄せ明朝---*/
.right_mincho {
	display: block;
	width: 100%;
	/*text-align: right;*/
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5em;
	font-weight: 600;
}

.br_sp {
	display: none;
}

@media screen and (max-width:599px) {

	/*---大きい文字---*/
	.large {
		font-size: 1.2em;
		line-height: 1.2em;
	}

	.x_large {
		font-size: 1.5em;
		line-height: 1.5em;
	}

	/*---スマホ幅でセンタリング解除---*/
	.align_center {
		text-align: left;
	}

	/*---スマホ幅で消える改行---*/
	.br_md {
		display: none;
	}

	/*---スマホ幅で現れる改行---*/
	.br_sp {
		display: inherit;
	}
}

/*---角丸画像---*/
.img_round {
	border-radius: 8px;
}

/*------------------------------------------------------------------------------*/
/* 見出し */
/*------------------------------------------------------------------------------*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	margin-top: 0em;
	margin-bottom: 1.0em;
}

h2 {
	font-size: 2.5em;
}

h3 {
	font-size: 1.8em;
}

h4 {
	font-size: 1.35em;
}

@media screen and (max-width:599px) {
	h2 {
		font-size: 2.0em;
	}
	
	h3 {
		font-size: 1.4em;
		margin-bottom: 10px;
	}
	
	h4 {
		font-size: 1.2em;
		margin-bottom: 10px;
	}
}


/*---サブタイトル---*/
.sub_title_h {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 300;
	padding-bottom: 1.0em;
	border-bottom: 1px solid #E61717;
}

.sub_title_h span {
	display: block;
	font-family: 'Nanum Myeongjo', serif;
	font-size: 64px;
	font-weight: 300;
	line-height: 1.5em;
}

@media screen and (max-width:599px) {
	.sub_title_h {
		font-size: 14px;
	}

	.sub_title_h span {
		font-size: 42px;
	}
}

/*---グレー背景---*/
.gray_h {
	padding: .25em .75em;
	background-color: #f6f6f6;
	border-left: 6px solid #ccc;
}

/*---二重下線---*/
.double_h {
	padding-bottom: .25em;
	margin-bottom: 15px;
	border-bottom: 3px double #ccc;
}

/*------------------------------------------------------------------------------*/
/* リスト */
/*------------------------------------------------------------------------------*/
.float_list {
	display: inline-block;
}

.float_list ul {
	float: left;
	margin: 0px 15px;
}

.point_list {
	background: #eee;
	padding: 15px 30px 15px 35px;
	font-size: 1.2em;
	border-radius: 4px;
}

.point_list li {
	color: #E61717;
	margin-bottom: 0.5em;
}

.point_list li span {
	color: #000;
}

@media screen and (max-width:599px) {
	.point_list {
		padding: 15px 15px 15px 30px;
		font-size: 1.0em;
	}
}


/*------------------------------------------------------------------------------*/
/* ボタン */
/*------------------------------------------------------------------------------*/
/*---既存検索ボタンのスタイリング修正---*/
.btn {
	border-radius: 0px;
}

/*---既存検索ボタンのスタイリング修正---*/
.btn-default {
	color: #fff;
	background-color: #ccc;
	border: none;
	height: 37px;
}

/*---色枠白背景ボタン---*/
.button {
	height: 60px;
	max-width: 240px;
	position: relative;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	border: 1px solid #fff;
	color: #E61717;
	text-align: center;
	background-color: rgba(255, 255, 255, 1);
	transition: 0.5s;
}

.button i {
	transition: 0.5s;
}

.button:hover {
	background-color: #E61717;
	border: 1px solid #E61717;
}

.button a {
	font-family: 'Nanum Myeongjo', serif;
	display: block;
	color: #E61717;
	font-size: 1.2em;
	font-weight: 300;
	text-align: center;
	text-decoration: none;
	padding: 16px;
}

.button a:hover {
	color: #fff;
	text-decoration: none;
}

/*---色付きボタン---*/
.button_r {
	font-family: 'Nanum Myeongjo', serif;
	max-width: 280px;
	position: relative;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	border: 1px solid #E61717;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	background-color: #E61717;
	transition: 0.5s;
}

.button_r i {
	transition: 0.5s;
}

.button_r:hover {
	background-color: #fff;
	border: 1px solid #E61717;
}

.button_r a {
	display: block;
	color: #fff;
	font-size: 1.2em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	padding: 16px;
}

.button_r a:hover {
	color: #E61717;
	text-decoration: none;
}

/*---白枠透過ボタン---*/
.button_w {
	max-width: 280px;
	position: relative;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	border: 1px solid #fff;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	background-color: rgba(255, 255, 255, 0);
	transition: 0.5s;
}

.button_w i {
	transition: 0.5s;
}

.button_w:hover {
	background-color: #fff;
	border: 1px solid #E61717;
}

.button_w a {
	display: block;
	color: #fff;
	font-size: 1.2em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	padding: 16px;
}

.button_w a:hover {
	color: #E61717;
	text-decoration: none;
}


.arrow_button {
	max-width: 280px;
	position: relative;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	border: 1px solid #E61717;
	border-radius: 4px;
	color: #E61717;
	font-weight: 600;
	text-align: center;
	background-color: rgba(255, 255, 255, 0);
	transition: 0.5s;
	display: block;
	color: #E61717;
	font-size: 1.0em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	padding: 15px;
}

.arrow_button:hover {
	color: #fff;
	text-decoration: none;
	background-color: #E61717;
}


/*------------------------------------------------------------------------------*/
/* テーブル */
/*------------------------------------------------------------------------------*/
/*---汎用レスポンシブテーブル---*/
.float_table {
	width: 100%;
	table-layout: auto;
	word-break: break-all;
	word-wrap: break-all;
}

.float_table tr {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.float_table th {
	width: auto;
	min-width: 150px;
	/*white-space: nowrap;*/
	word-break: break-word;
	padding: 10px 15px;
}

.float_table td {
	width: auto;
	box-sizing: border-box;
	word-break: break-word;
	padding: 10px 15px;
}

@media screen and (max-width:599px) {
	.float_table {
		width: 100%;
		table-layout: fixed;
	}

	.float_table th {
		display: block;
		width: 100%;
		background: rgba(0, 0, 0, .1);
	}

	.float_table td {
		display: block;
		width: 100%;
	}
}

/*---沿革レスポンシブテーブル---*/
#history .float_table th {
	width: 100px;
	min-width: 100px;
	font-size: 1.2em;
}

.lv1 {
	min-width: 100px;
	text-align: right;
	color: #707070;
}

#history .float_table td.lv1 {
	width: 15px;
}

@media screen and (max-width:599px) {
	#history .float_table th {
		width: 100% !important;
	}

	#history .float_table td {
		padding: 0px 15px 15px;
	}

	#history .float_table td.lv1 {
		text-align: left;
		padding: 5px 10px;
	}
}


/*------------------------------------------------------------------------------*/
/* フォーム */
/*------------------------------------------------------------------------------*/
/*---reCAPTCHAを非表示化---*/
.grecaptcha-badge { visibility: hidden; }

.recaptcha_policies {
	text-align: center;
	color: #eee;
}
.recaptcha_policies a {
	color: #eee;
}
.recaptcha_policies a:hover {
	color: #eee;
}


/*---ContactForm7のボタン色---*/
.wpcf7-submit {
	width: 40%;
	height: 60px;
	border: 1px solid #E61717;
	border-radius: 4px;
	color: #E61717;
	font-weight: 600;
	font-size: 22px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0);
	margin: 1.5em auto;
	transition: 0.5s;
}

.wpcf7-submit:hover {
	color: #fff;
	background-color: #E61717;
}

.wpcf7 .wpcf7-submit:disabled {
	color: #515151;
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid #515151;
}

/*---ローディング画像不可視化（ボタンセンターずれ回避）---*/
.wpcf7-spinner {
	display: none;
}


/*---ContactForm7の同意ボタンAjax不可視化---*/
.wpcf7 .ajax-loader {
	display: none !important;
}

/*---ContactForm7の同意ボタン中央寄せのためのマージン除去---*/
span.wpcf7-list-item {
	display: inline-block;
	margin: 0px;
}

/*---既存フォーム要素のスタイリング修正---*/
.form-control {
	border-radius: 0px;
	box-shadow: none;
}

/*---既存フォーム要素のスタイリング修正---*/
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
	line-height: 25px;
}

/*---既存フォーム要素のスタイリング修正---*/
input,
textarea {
	width: 100%;
	padding: 8px;
	background: #f4f4f4;
	border: none;
	border-radius: 4px;
	box-shadow: none;
}

/*---既存フォーム要素のスタイリング修正---*/
input:focus {
	border-radius: 0px;
}

/*---既存フォーム要素のスタイリング修正---*/
input[type="checkbox"],
input[type="radio"] {
	line-height: normal;
	text-align: center;
	margin: 0 auto;
}

/*---既存フォーム要素のスタイリング修正---*/
select {
	width: 100%;
	background: #f4f4f4;
	border: none;
	border-radius: 0px;
	box-shadow: none;
	padding: 10px;
}

/*---既存フォーム要素のスタイリング修正---*/
label {
	font-size: 17px;
}

/*---郵便番号横並び---*/
.zip_code input {
	display: inline-flex;
	width: 97px;
}

/*---要素並列配置---*/
.parallel {
	display: inline-flex;
}

/*---要素並列配置---*/
.age input {
	width: 200px;
}

input[type="date"] {
	width: 200px !important;
}

/*---必須事項span---*/
.must {
	padding: 1px 8px 2px;
	margin-left: 1em;
	background: #E61717;
	border-radius: 2px;
	color: #fff;
	font-weight: 300;
	font-size: 12px;
	white-space: nowrap;
	position: relative;
	top: -2px;
}


/*------------------------------------------------------------------------------*/
/* GoogleMap */
/*------------------------------------------------------------------------------*/
.google_map {
	position: relative;
	padding-bottom: 45%;
	height: 0;
	overflow: hidden;
	min-height: 500px;
	filter: drop-shadow(0px 1px 4px rgb(0, 0, 0, 0.16));
}

.google_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

@media screen and (max-width:1140px) {
	.google_map {
		padding-bottom: 90%;
	}
}

@media screen and (max-width:599px) {
	.google_map {
		position: relative;
		padding-bottom: 80%;
	}
}


/*------------------------------------------------------------------------------*/
/* HOME */
/*------------------------------------------------------------------------------*/
/*---セクション共通---*/
.section_inner {
	max-width: 1330px;
	margin: auto;
	padding: 0px 15px;
}

/*---section_01 About Us---*/
#aboutus {
	padding: 0px 15px;
}

#aboutus .section_inner {
	position: relative;
	margin: 30px auto 15px;
	padding: 60px 30px;
	background-image: url(../../uploads/2023/01/img_section_01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: soft-light;
	color: #fff;
	border-radius: 4px;
}

#aboutus .button {
	position: absolute;
	bottom: 0px;
	width: 280px;
	border-radius: 4px 4px 0px 0px;
}

@media screen and (max-width:599px) {
	#aboutus {
		margin: 30px 0px;
	}
}


/*---section_01.25 Think the Earth---*/
#think_the_earth {
	position: relative;
	margin: 30px auto 15px;
	padding: 60px 30px;
	background-image: url(../../uploads/2023/03/bg_section_01b.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: soft-light;
	color: #fff;
	border-radius: 4px;	
}

/*---section_01.5 Information---*/
#information {
	margin: auto;
	padding: 60px 0px;
}


/*---section_02 Solution---*/
#solution {
	margin: auto;
	padding: 15px 15px 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

#solution .button {
	position: absolute;
	bottom: 0px;
	float: right;
	width: 280px;
	border-radius: 4px 4px 0px 0px;
}

#solution h2 {
	position: absolute;
	top: 30%;
	padding: 0px 15px;
	margin: 60px 0px;
	border-bottom: none;
}

#solution_01 {
	position: relative;
	min-height: 1040px;
	background-image: url(../../uploads/2023/01/img_section_02_01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.2);
	background-blend-mode: soft-light;
	color: #fff;
	border-radius: 4px;
}

#solution_02 {
	position: relative;
	min-height: 1040px;
	background-image: url(../../uploads/2023/01/img_section_02_02.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.2);
	background-blend-mode: soft-light;
	color: #fff;
	border-radius: 4px;
}

@media screen and (max-width:1080px) {
	#solution {
		grid-template-columns: repeat(1, 1fr);
	}

	#solution_01 {
		min-height: 640px;
	}

	#solution_02 {
		min-height: 640px;
	}
}

/*---section_03 Works---*/
#works {
	margin-bottom: 30px;
}

#works h2 {
	border-bottom: none;
	margin-bottom: 0px;
}

/*---section_03.5 recruitoment and collaboration---*/
#recruitoment_collaboration {
	margin: auto;
	padding: 15px 15px 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
#recruitoment_collaboration h2 {
	border-bottom: none;
}
.entry_contents {
	position: absolute;
	top: 15%;
	padding: 0px 15px;
	margin: 60px 0px;
}
.entry_contents p {
	background: rgba(0,0,0,.3);
	padding: 15px;
	font-size: 1.2em;
}
#recruitoment_collaboration .button {
	position: absolute;
	bottom: 0px;
	float: right;
	width: 280px;
	border-radius: 4px 4px 0px 0px;
}

#recruitoment_collaboration_01 {
	position: relative;
	min-height: 640px;
	background-image: url(../../uploads/2023/02/bnr_recruitoment.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.2);
	background-blend-mode: soft-light;
	color: #fff;
	border-radius: 4px;
}

#recruitoment_collaboration_02 {
	position: relative;
	min-height: 640px;
	background-image: url(../../uploads/2023/02/bnr_collaboration.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left;
	background-color: rgba(0, 0, 0, 0.2);
	background-blend-mode: soft-light;
	color: #fff;
	border-radius: 4px;
}

@media screen and (max-width:1080px) {
	#recruitoment_collaboration {
		grid-template-columns: repeat(1, 1fr);
	}
}

/*---section_04 Contact---*/
#contact {
	position: relative;
	margin: 30px 0px 0px;
	padding: 15px;
	background-image: url(../../uploads/2023/01/img_section_04.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.2);
	background-blend-mode: soft-light;
	color: #fff;
}

#contact .button {
	margin-bottom: 30px;
}


/*------------------------------------------------------------------------------*/
/* アネシスについて */
/*------------------------------------------------------------------------------*/
.president_image {
	position: relative;
}
.president_message {
	position: absolute;
	bottom: 0px;
	padding: 15px;
	color: #fff;
	background: rgba(0, 0, 0, .5);
}
.president_message h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.0em;
	font-weight: 300;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #E61717;
}
@media screen and (max-width:899px) {
	.president_message {
		position: inherit;
		padding: 0px;
		color: #000;
		background: rgba(255, 255, 255, 1);
	}
	.president_message h3 {
		font-size: 1.6em;
	}
}

/*------------------------------------------------------------------------------*/
/* 業務内容・ソリューション */
/*------------------------------------------------------------------------------*/
.solutions_img img {
	width: 100%;
	border-radius: 2px;
}
.solutions_img h3 {
	padding-bottom: .5em;
	margin-bottom: 15px;
	border-bottom: 3px double #ccc;
}

.solution_inner {
	margin: 0px auto 60px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 15px;
}

@media screen and (max-width: 999px) {
	.solution_inner {
		gap: 10px;
	}
}

@media screen and (max-width: 699px) {
	.solutions_img h3 {
		font-size: 1.3em;
	}

	.solution_inner {
		margin: 0px auto 40px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		gap: 10px;
		grid-template-areas:
			"solution_card_a solution_card_a"
			"solution_card_b solution_card_c";
	}

	.solution_card_a {
		grid-area: solution_card_a;
	}

	.solution_card_b {
		grid-area: solution_card_b;
	}

	.solution_card_c {
		grid-area: solution_card_c;
	}
}


/*------------------------------------------------------------------------------*/
/* 投稿　シングルページ */
/*------------------------------------------------------------------------------*/
#single_page .contents_box {
	margin: 0px auto 30px;
	max-width: none;
}

.contents_text {
	padding: 60px 0px 30px;
}

.next_prev {
	display: inline-flex;
	margin-bottom: 30px;
}

.next_button {
	position: absolute;
	right: 0px;
	width: 50%;
	text-align: center;
}

.next_button a {
	padding: 10px;
}

.prev_button {
	position: absolute;
	left: 0px;
	width: 50%;
	text-align: center;
}

.prev_button a {
	padding: 10px;
}

.entry-meta {
	border-bottom: 1px dotted #fff;
	font-size: 1em;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.entry-meta .news_date {
	font-size: 1.5em;
}

.entry-meta .news_title {
	padding: 0px;
}

.news_title h3 {
	margin: 0px;
}

.entry-meta .sub_title_h {
	padding: 0px 10px 10px 10px;
}

.post_icon {
	display: inline-flex;
}

.post_icon .news_cate span a {
	top: 4px;
}

.wp-pagenavi {
	padding: 30px 15px;
	text-align: center;
}

@media screen and (max-width: 599px) {
	.entry-meta .news_date {
		padding-right: 15px;
	}

	.post_icon .news_cate span a {
		top: -3px;
	}

	.entry-meta .sub_title_h {
		font-size: 1.5em;
	}
}

/*---LihgtBox---*/
.lightbox .lb-image {
	border-radius: 0px!important;
	border: 0px solid #fff!important;
}

.gallery_list_after {
	margin: 0px auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 10px;
	grid-template-areas:
	"after_image_01 after_image_01" 
	"after_image_02 after_image_03" 
	"after_image_04 after_image_05"; 
}
.gallery_list_after img {
	width: 100%;
}
.after_image_01 {
	grid-area: after_image_01;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.after_image_02 {
	grid-area: after_image_02;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.after_image_03 {
	grid-area: after_image_03;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.after_image_04 {
	grid-area: after_image_04;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.after_image_05 {
	grid-area: after_image_05;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.gallery_list_before {
	margin: 0px auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 10px;
	grid-template-areas:
	"before_image_01 before_image_01" 
	"before_image_02 before_image_03" 
	"before_image_04 before_image_05"; 
}
.gallery_list_before img {
	width: 100%;
}
.before_image_01 {
	grid-area: after_image_01;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.before_image_02 {
	grid-area: after_image_02;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.before_image_03 {
	grid-area: after_image_03;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.before_image_04 {
	grid-area: after_image_04;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.before_image_05 {
	grid-area: after_image_05;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

/*------------------------------------------------------------------------------*/
/* 投稿　アーカイブページ・ループ */
/*------------------------------------------------------------------------------*/
.post_inner {
	margin: 0px auto 30px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
#information .post_inner {
	margin: 0px auto 30px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 15px;
}

#information .post_card {
	margin-bottom: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.post_card {
	margin-bottom: 8px;
}

.post_img {
	aspect-ratio: 16 / 9;
	width: 100%;
	margin-bottom: 10px;
	border-radius: 2px;
	overflow: hidden;
}

.post_img img {
	width: 100%;
	transition-duration: 0.5s;
}

.post_img img:hover {
	transform: scale(1.1, 1.1);
	cursor: pointer;
	transition-duration: 0.5s;
}

.post_info {
	display: block ruby;
}


.category_icon {
	margin-right: 0.5em;
	margin-bottom: 4px;
}
.category_icon span {
}
.category_icon a {
	display: inline-block;
	padding: 0.35em 1em 0.5em;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.0em;
	border-radius: 2px;
	background-color: #000;
}

.post_date {
	margin-right: 1.0em;
	line-height: 1.0em;
	font-size: 15px;
}

.post_title {
	float: left;
	margin-top: 0px;
}
.post_title a {
	color: #000;
	font-size: 0.7em;
}

@media screen and (max-width:1300px) {
	.post_inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width:680px) {
	.post_inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

/*------------------------------------------------------------------------------*/
/* ページャー */
/*------------------------------------------------------------------------------*/
.wp-pagenavi {
    display: inline-block;
    padding-left: 0;
    margin: 23px 0;
    border-radius: 4px;
  }

.wp-pagenavi a, .wp-pagenavi span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    background-color: #000;
    border-color: #000;
    color: #fff;
}