@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

/* reset
---------------------------------------------------------- */
html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,small, strong, sub, sup, var,b, i, dl, dt, dd, ul, ol, li,
fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	list-style: none;
	vertical-align:baseline;
	background:transparent;
}

body{
	padding:0;
	margin:0;
	line-height: 2;
	color: #333;
	background-color: #fff;
	font-size: 14px;
	font-family: "Noto Sans JP", "メイリオ","ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro",sans-serif;
	overflow-x: hidden;
}
/* common
---------------------------------------------------------- */
.container,
.h_wrap,
.f_wrap {
	margin: auto;
	max-width: 1250px;
	width: 95%;
	z-index: 1;
}
.container::after,
.h_wrap::after,
.f_wrap::after {
	content: '';
	display: block;
	clear: both;
}
section,
.section {
	position: relative;
	margin: auto;
	padding: 80px 0;
}
.inner {
	margin: auto;
	max-width: 1000px;
	width: 90%;
}
.alt_bg01 {
	background-color: #f3f6f8;
}
.alt_bg02 {
	background-color: #F7F7F6;
}
img {
	display: block;
	height: auto;
	max-width: 100%;
}
.img_hover img {
	transition: opacity .3s ease;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-ms-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
}
.img_hover:hover img {
	opacity: .7;
}
a {
	text-decoration: none;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
.txt_link {
	color: #004492;
	text-decoration: underline;
}
.txt_link:hover {
	text-decoration: none;
}
.txt_link02 {
	color: #333;
	text-decoration: none;
}
.txt_link02:hover {
	text-decoration: underline;
}
.f_bold {
	font-weight: bold;
}
.t_center {
	text-align: center;
}
.pc {
	display: block;
}
.sp {
	display: none !important;
}
.fl_l {
	float: left;
}
.fl_r {
	float: right;
}
.tit_sub {
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 35px;
	line-height: 1;
}
.tit_sub::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 1000%;
	height: 1px;
	background-color: #EFC100;
}
.tit_sub .tit_en {
	margin-right: 20px;
	font-size: 56px;
	font-weight: 400;
	font-family: 'Ubuntu', sans-serif;
	text-transform: capitalize;
}
.tit_sub .tit_jp {
	font-size: 18px;
	font-weight: normal;
}
.tit_sec {
	position: relative;
	padding-left: 20px;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}
.tit_sec::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 25px;
	background-color: #EFC100;
}
.tit_sec02{
	position: relative;
	padding-bottom: 10px;
	font-weight: normal;
	margin-bottom: 30px;
}
.tit_sec02::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 160px;
	height: 1px;
	background: #EFC100;
}
.tit_sec02 .en_txt{
	color: #EFC100;
	text-transform: uppercase;
	font-size: 20px;
}
.tit_sec02 .jp_txt{
	font-size: 17px;
	margin-left: 20px;
}
.tit_topic {
	position: relative;
	padding-left: 25px;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.6;
}
.tit_topic::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #EFC100;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.btn {
	position: relative;
	display: block;
	padding: 14px 35px;
	margin: 40px 0 0;
	float: right;
	max-width: 255px;
	width: 100%;
	color: #fff;
	background-color: #333;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
}
.btn_center {
	float: none;
	margin-left: auto;
	margin-right: auto;
}
.btn:hover {
	background-color: #EFC100;
}
.btn > * {
	position: relative;
	z-index: 1;
}
.btn .arrow {
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	height: 30px;
	width: 30px;
	margin: auto;
	overflow: hidden;
	background: url(../img/common/ico_arrow03.png) no-repeat center / 12px;
}
.btn .arrow::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: url(../img/common/ico_arrow-hov02.png) no-repeat left -100px center / 12px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
	-webkit-transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
	-ms-transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn:hover .arrow::before {
	background-position: center;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}
.btn_external .arrow {
	background: url(../img/common/ico_external01.png) no-repeat center / 14px;
}
.btn_external .arrow::before {
	background-image: url(../img/common/ico_external-hov.png);
}
.btn02{
	background-color: #fff;
	border: 1px solid #33332A;
	color: #33332A;
}
.btn02 .arrow{
	background-image: url(../img/common/ico_arrow-hov02.png);
}
.btn02:hover{
	border-color: #fbefbf;
	background-color: #fbefbf;
}
.btn02:hover .arrow{
	background-image: none;
}
.btn02 .arrow::before{
	background-color: transparent;
}
.btn03 .arrow {
	background-image: url(../img/common/ico_external-hov.png);
}
.btn03:hover .arrow {
	background-image: none;
}
.btn03:hover .arrow::before {
	background-image: url(../img/common/ico_external-hov.png);
}
/* table */
table {
	margin: auto;
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	box-sizing: border-box;
	table-layout: fixed;
}
table th,
table td {
	padding: 10px;
	vertical-align: middle;
	width: 100%;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
}
table th {
	font-weight: bold;
	text-align: left;
}
.tb_style01 td {
	padding: 45px;
}
.tb_style01 th {
	padding: 45px 20px;
	width: 112px;
	background-color: #F7F7F6;
}
/* list_box_style01 */
.list_box_style01{
	display: flex;
	flex-wrap: wrap;
	gap: 44px;
}
.list_box_style01 li{
	background: #F0F0EC;
	width: calc(50% - 22px);
	padding: 30px 30px 30px 40px;
	box-sizing: border-box;
	position: relative;
}
.list_box_style01 li::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-bottom: 20px solid transparent;
	border-right: 20px solid #fff;
}
.list_box_style01 li span{
	font-size: 18px;
	margin-bottom: 20px;
}
/* header
---------------------------------------------------------- */
header {
	position: fixed;
	top: 25px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
header .h_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	box-sizing: border-box;
	overflow: hidden;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}
header .h_wrap .logo_wrap {
	width: 100%;
}
header .h_wrap .logo_wrap .logo {
	display: block;
	max-width: 107px;
	width: 100%;
}
header .h_wrap .h_btns {
	display: flex;
	justify-content: flex-end;
	float: right;
	width: 100%;
}
header .h_wrap .h_btns_sp {
	display: none;
}
header .h_wrap .h_btns .h_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-right: 10px;
	color: #fff;
}
header .h_wrap .h_btns .h_btn .ico {
	display: block;
	margin-bottom: 10px;
	width: 45px;
	height: 45px;
	background-size: 26px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}
header .h_wrap .h_btns .btn_inquiry .ico {
	background-image: url(../img/common/ico_inquiry.png);
	background-color: #EFC100;
}
header .h_wrap .h_btns .btn_media .ico {
	background-image: url(../img/common/ico_media.png);
	background-color: #fff;
}
header .h_wrap .h_btns .h_btn small {
	font-size: 11px;
	font-weight: 300;
	line-height: 1;
}
header .h_wrap .h_btns .h_btn:hover .ico {
	opacity: .7;
}
#trigger-menu {
	display: flex;
	align-items: center;
}
#trigger-menu .trigger-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 20px;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	font-family: 'Ubuntu', sans-serif;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}
#trigger-menu .ico .line {
	display: block;
	height: 2px;
	width: 28px;
	background-color: #fff;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}
#trigger-menu .ico .line:nth-child(2) {
	margin: 7px 0
}
#gnav {
	position: absolute;
	top: -35px;
	left: 0;
	right: 0;
	padding: 160px 0 45px;
	background-color: rgba(230, 230, 224, .96);
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}
#gnav .nav_wrap {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: auto;
	max-width: 920px;
	width: 95%;
}
#gnav .nav_wrap ul {
	max-width: 180px;
	width: 100%;
}
#gnav .nav_wrap ul li a {
	display: block;
	padding: 7px 0;
	color: #333;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	border-top: 1px solid #999;
	opacity: 0;
	background: url(../img/common/ico_arrow01.png) no-repeat right center / 16.5px;
}
#gnav .nav_wrap ul .sub-links_wrap ul {
	width: 100%;
	border-top: 0;
}
#gnav .nav_wrap ul .sub-links_wrap ul li {
	border-top: 0;
}
#gnav .nav_wrap ul .sub-links_wrap ul li a {
	padding: 4px 8px 4px 13px;
	font-size: 14px;
	font-weight: normal;
	border-top: 0;
	border-bottom: 1px solid #fff;
	background: url(../img/common/ico_arrow02.png) no-repeat right center / 8.5px;
}
#gnav .nav_wrap ul .sub-links_wrap ul li a span {
	position: relative;
	display: block;
	padding-left: 15px;
	background: url(../img/common/ico_nav-link.svg) no-repeat top 12px left / 10px;
}
#gnav .nav_wrap ul li a.no_link {
	background-image: none !important;
}
#gnav .nav_wrap ul li.ext_link a {
	background: url(../img/common/ico_external02.png) no-repeat right center / 8px;
}
#gnav .nav_wrap ul li a:hover {
	color: #EFC100;
}
body.nav_active #gnav {
	opacity: 1;
	visibility: visible;
}
body.nav_active .logo_wrap,
body.nav_active .h_btns {
	z-index: 99;
}
body.nav_active header .h_wrap .h_btns .h_btn small {
	color: #333;
}
body.nav_active header .h_wrap .h_btns .btn_media .ico {
	background-image: url(../img/common/ico_media-active.png);
	background-color: #643E33;
}
body.nav_active #trigger-menu .trigger-inner {
	color: #643E33;
}
body.nav_active #trigger-menu .trigger-inner .ico span {
	background-color: #643E33;
}
body.nav_active #trigger-menu .ico .line:first-child {
	transform: translateY(9px) rotate(45deg);
	-webkit-transform: translateY(9px) rotate(45deg);
	-moz-transform: translateY(9px) rotate(45deg);
	-ms-transform: translateY(9px) rotate(45deg);
	-o-transform: translateY(9px) rotate(45deg);
}
body.nav_active #trigger-menu .ico .line:nth-child(2) {
	opacity: 0;
}
body.nav_active #trigger-menu .ico .line:last-child {
	transform: translateY(-9px) rotate(-45deg);
	-webkit-transform: translateY(-9px) rotate(-45deg);
	-moz-transform: translateY(-9px) rotate(-45deg);
	-ms-transform: translateY(-9px) rotate(-45deg);
	-o-transform: translateY(-9px) rotate(-45deg);
}
body.nav_active #gnav .nav_wrap ul li a {
	animation: slide-left 1s forwards;
	-webkit-animation: slide-left 1s forwards;
}
header.fixed {
	position: fixed;
	opacity: 1;
}
header.fixed-top {
	position: fixed;
}
header.hidden {
	animation: hidden .3s linear .4s forwards;
	-webkit-animation: hidden .3s linear .4s forwards;
}
header.fixed .h_wrap {
	background-color: #fff;
}
header.fixed .h_wrap .h_btns .h_btn {
	color: #333;
}
header.fixed .h_wrap .h_btns .btn_media .ico {
	background-image: url(../img/common/ico_media-active.png);
	background-color: #643E33;
}
header.fixed #trigger-menu .trigger-inner {
	color: #643E33;
}
header.fixed #trigger-menu .ico .line {
	background-color: #643E33;
}

@keyframes slide-left {
	0% {
		opacity: 0;
		visibility: hidden;
		transform: translateX(120px);
		-webkit-transform: translateX(120px);
		-moz-transform: translateX(120px);
		-ms-transform: translateX(120px);
		-o-transform: translateX(120px);
	}
	100% {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
	}
}

@keyframes hidden {
	0% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

/* news
---------------------------------------------------------- */
#news {
	padding: 120px 0 80px;
}
.news_content {
	display: none;
}
.news_content.current {
	display: block;
}
.list_cat {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 75px;
}
.list_cat li {
	max-width: 144px;
	width: 100%;
}
.list_cat li a {
	display: block;
	padding: 3px 10px;
	color: #333;
	text-align: center;
	box-sizing: border-box;
	background-color: #F0F0F0;
	border: 1px solid #ccc;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.list_cat li a.current,
.list_cat li a:hover {
	color: #fff;
	border-color: #EFC100;
	background-color: #EFC100;
}
.list_news {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.list_news li {
	max-width: 465px;
	width: 46.5%;
	border-top: 1px solid #E6E6E6;
}
.list_news li:last-child,
.list_news li:nth-last-child(2) {
	border-bottom: 1px solid #E6E6E6;
}
.list_news li a {
	display: flex;
	padding: 40px 30px;
	width: 100%;
	color: #333;
	overflow: hidden;
	box-sizing: border-box;
}
.list_news li a > * {
	float: left;
}
.list_news li a .post_content {
	display: flex;
	align-items: baseline;
	width: 100%;
}
.list_news li a .post_content .cat {
	display: inline-block;
	padding: 0 10px;
	margin: 0 30px;
	max-width: 135px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background-color: #FBEFBF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}
.list_news li a .post_content p {
	width: 50%;
}
.list_news li a:hover p {
	text-decoration: underline;
}

/* footer
---------------------------------------------------------- */
footer {
	border-top: 1px solid #E6E6E6;
}
footer .container {
	padding: 80px 0 45px;
	max-width: 885px;
	overflow: hidden;
}
footer .logo {
	float: left;
}
footer .logo img {
	margin-bottom: 50px;
	max-width: 128px;
	width: 100%;
}
footer .logo_text p {
	margin-bottom: 15px;
	font-size: 12px;
}
footer .logo_text .sns ul {
	display: flex;
	align-items: center;
	gap: 25px;
}
footer .logo_text .sns ul li {
	max-width: 32px;
}
footer .logo_text .sns ul li img {
	margin-bottom: 0;
}
footer .logo_text .sns ul li#yt {
	max-width: 41px;
}
footer .f_nav {
	float: right;
}
footer .f_nav ul {
	margin-right: 70px;
	float: left;
	overflow: hidden;
}
footer .f_nav ul li {
	margin-bottom: 10px;
}
footer .f_nav ul li:last-child {
	margin-bottom: 0;
}
footer .f_nav ul:last-child {
	padding-right: 0;
	margin-right: 0;
}
footer .f_nav ul li a {
	position: relative;
	color: #333;
	font-size: 12px;
}
footer .f_nav ul li a:hover {
	color: #EFC100;
}
footer .f_nav ul li .sub-links_wrap ul {
	margin: 0 0 0 10px;
	float: none;
}
footer .f_nav ul li .sub-links_wrap ul li:first-child,
footer .f_nav ul li .sub-links_wrap ul li:last-child {
	margin-right: 0;
}
footer .f_nav ul li .sub-links_wrap ul li {
	margin-bottom: 0;
	float: none;
}
footer .f_nav ul li .sub-links_wrap ul li a span {
	position: relative;
	display: inline-block;
	padding-left: 12px;
	background: url(../img/common/ico_nav-link.svg) no-repeat top 12px left / 10px;
}
footer .f_nav ul.sp {
	display: none;
}
footer .copyright {
	padding: 35px 0;
	font-size: 9px;
	font-family: 'Oswald', sans-serif;
	text-align: center;
	letter-spacing: 1px;
	border-top: 1px solid #E6E6E6;
}
#backtop {
    position: fixed;
    right: 0;
    bottom: 100px;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    z-index: 99;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
#backtop:hover {
	opacity: .8;
}
#backtop.show {
	opacity: 1;
	visibility: visible;
}
#backtop img {
	max-width: 15px;
}
#backtop span {
	display: block;
	padding-left: 40px;
	color: #EFC100;
	font-size: 16px;
	line-height: 1;
	background: url(../img/common/ico_page-top.png) no-repeat left center / 19.5px;
	text-transform: uppercase;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}
#backtop:hover {
	bottom: 110px;
}
/* header for inner pages
---------------------------------------------------------- */
/* .page_inner header{
	position: relative;
	top: 0;
} */
.page_inner header .h_wrap .h_btns .h_btn{
	color: #33332A;
}
.page_inner #trigger-menu .ico .line{
	background-color: #33332A;
}
.page_inner #trigger-menu .trigger-inner{
	color: #33332A;
}
.page_inner header .h_wrap .h_btns .btn_media .ico{
	background-image: url(../img/common/ico_media-active.png);
    background-color: #643E33;
}
/* list
---------------------------------------------------------- */
.list_style01 li{
	padding-left: 15px;
	position: relative;
	margin-bottom: 3px;
}
.list_style01 li::before{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #C8C8C8;
	left: 0;
	top: 9px;
}
/* CTA
---------------------------------------------------------- */
.contact-cta{
	padding: 0 0 120px;
}
.contact-cta .case{
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	border: 1px solid #333;
	position: relative;
	z-index: 1;
}
.contact-cta .case .case_inner{
	position: relative;
	text-align: center;
	padding: 25px 0;
}
.contact-cta .case .case_inner::before,
.contact-cta .case .case_inner::after{
	content: "";
	position: absolute;
	height: 1px;
	background: #fff;
	width: calc(100% - 64px);
	left: 0;
	right: 0;
	margin:  auto;
	z-index: 2;
}
.contact-cta .case .case_inner::before{
	top: -1px;
}
.contact-cta .case .case_inner::after{
	bottom: -1px;
}
.contact-cta .case .tit_cta{
	font-size: 24px;
	font-weight: 400;
}
.contact-cta .case .tel_link{
	color: #333;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.2;
	padding-left: 50px;
	background: url(../img/common/ico_tel.png) no-repeat left top 15px;
	background-size: 38px;
	font-family: "Noto Sans JP", sans-serif;
	margin: 15px auto 30px;
	display: table;
}
.contact-cta .case .sched{
	font-size: 16px;
	max-width: 450px;
	height: 35px;
	background: #F7F7F6;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
/* pagination
---------------------------------------------------------- */
.pagination_wrap{
	margin-top: 20px;
	background: #F7F7F6;
	padding: 20px 15px;
	text-align: center;
}
.wp-pagenavi {
	display: flex;
	gap: 6px;
	align-items: center;
	/* font-family: sans-serif; */
	justify-content: center;
	margin-top: 15px;
}

.wp-pagenavi a, .wp-pagenavi span {
	padding: 8px 9px !important;
	text-decoration: none;
	border-radius: 0;
	color: #333;
	border: 0 !important;
	background-color: #fff;
}

.wp-pagenavi span.pages {
	display: none;
}

.wp-pagenavi .current {
	background-color: #fff3cd;
	border-color: #ffecb5;
	font-weight: bold;
}

.wp-pagenavi .lastpostslink {
	background: #fff;
	border-color: #fff;
}

.wp-pagenavi .extend {
	border: none;
	background: none;
	pointer-events: none;
}

@media screen and ( max-width : 1040px ) {
	/* news
	---------------------------------------------------------- */
	.list_news li a {
		display: block;
	}
	.list_news li a .date {
		display: block;
		margin-bottom: 10px;
	}
	.list_news li a .post_content .cat {
		margin: 0 10px 0 0;
	}
	.list_news li a .post_content p {
		width: 70%;
	}
}

@media screen and ( max-width : 880px ) {
	/* footer
	---------------------------------------------------------- */
	footer .container {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		padding: 0;
		width: 100%;
	}
	footer .f_nav {
		padding: 35px 0;
		margin: auto;
		width: 85%;
		border-bottom: 1px solid #E6E6E6;
	}
	footer .f_nav ul.pc {
		display: none;
	}
	footer .f_nav ul.sp {
		display: block;
		margin: 0 auto;
		float: none;
	}
	footer .f_nav ul.sp li {
		margin-bottom: 5px;
		float: left;
		width: 50%;
	}
	footer .logo {
		padding: 35px 0;
		margin: auto;
		float: none;
		width: 85%;
	}
	footer .logo img {
		margin: 0 auto 30px;
	}
	footer .logo .logo_text {
		display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        gap: 20px;
	}
	footer .logo_text p {
		margin-bottom: 0;
	}
	footer .copyright {
		padding-top: 0;
		border-top: 0;
	}
	#backtop {
		right: -20px;
	}
	#backtop span {
		font-size: 100%;
	}
}

@media screen and ( max-width : 768px ) {
	/* common
	---------------------------------------------------------- */
	section,
	.section {
		padding: 60px 0;
	}
	.fl_l,
	.fl_r {
		float: none;
	}
	.tit_sub {
		padding-bottom: 20px;
		margin-bottom: 30px;
	}
	.tit_sub .tit_en {
		margin-right: 10px;
		font-size: 340%;
	}
	.tit_sub .tit_jp {
		font-size: 115%;
	}
	.tit_sec {
		padding-left: 15px;
		margin-bottom: 20px;
		font-size: 150%;
	}
	.tit_sec::before {
		width: 2px;
		height: 22px;
	}
	.tit_topic {
		font-size: 150%;
	}
	.tit_topic::before {
		top: 11px;
		height: 17px;
		width: 17px;
	}
	.btn {
		padding: 12px 30px;
		margin: 30px 0 0;
		max-width: 235px;
	}
	/* table */
	.tb_style01 th {
		padding: 30px 15px;
	}
	.tb_style01 td {
		padding: 30px;
	}

	/* header
	---------------------------------------------------------- */
	header {
		top: 20px;
	}
	header .h_wrap .h_btns .h_btn_pc {
		display: none;
	}
	header .h_wrap .h_btns_sp {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}
	header .h_wrap .h_btns_sp .h_btn_sp:last-child {
		margin-right: 0;
	}
	#trigger-menu .trigger-inner {
		margin: 0;
	}
	#gnav {
		top: -20px;
		padding: 90px 0 25px;
	}
	#gnav .nav_wrap {
		flex-wrap: wrap;
		gap: 15px 2%;
	}
	#gnav .nav_wrap ul {
		max-width: none;
		width: 48%;
	}
	#gnav .nav_wrap ul li a {
		font-weight: normal;
	}

	/* news
	---------------------------------------------------------- */
	#news {
		padding: 120px 0 80px;
	}
	.list_cat {
		gap: 10px;
		margin-bottom: 55px;
	}
	.list_cat li {
		max-width: 125px;
	}
	.list_news li a {
		padding: 30px 20px;
	}
	/* list
	---------------------------------------------------------- */
	.list_style01 li{
		padding-left: 15px;
	}
	.list_style01 li::before{
		width: 8px;
		height: 8px;
		top: 9px;
	}
	/* CTA
	---------------------------------------------------------- */
	.contact-cta{
		padding: 0 0 60px;
	}
	.contact-cta .case .case_inner{
		padding: 15px 0;
	}
	.contact-cta .case .case_inner::before,
	.contact-cta .case .case_inner::after{
		width: calc(100% - 40px);
	}
	.contact-cta .case .tit_cta{
		font-size: 120%;
	}
	.contact-cta .case .tel_link{
		font-size: 250%;
		padding-left: 30px;
		background-position: left top 7px;
		background-size: 24px;
		margin: 10px auto 20px;
	}
	.contact-cta .case .sched{
		font-size: 110%;
		max-width: 360px;
	}

}

@media screen and ( max-width : 640px ) {
	/* common
	---------------------------------------------------------- */
	section,
	.section {
		padding: 40px 0;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block !important;
	}
	.tit_sub {
		padding-bottom: 15px;
		margin-bottom: 25px;
	}
	.tit_sub .tit_en {
		display: block;
		margin: 0 auto 10px;
		font-size: 250%;
	}
	.tit_sub .tit_jp {
		display: block;
		font-size: 110%;
	}
	.tit_sec {
		padding-left: 10px;
		margin-bottom: 15px;
		font-size: 130%;
	}
	.tit_sec::before {
		height: 18px;
	}
	.tit_topic {
		font-size: 130%;
	}
	.tit_topic::before {
		height: 15px;
		width: 15px;
	}
	.btn {
		padding: 10px 20px;
		margin: 30px auto 0;
		float: none;
		max-width: 220px;
	}
	.btn .arrow {
		right: 10px;
	}
	/* table */
	.tb_style01 th {
		padding: 20px 10px;
		width: 90px;
	}
	.tb_style01 td {
		padding: 20px;
	}

	/* header
	---------------------------------------------------------- */
	header .h_wrap .logo_wrap .logo {
		max-width: 90px;
	}

	/* news
	---------------------------------------------------------- */
	#news {
		padding: 90px 0 50px;
	}
	.list_cat {
		gap: 10px 2.2%;
		margin-bottom: 35px;
	}
	.list_cat li {
		max-width: none;
		width: 48.9%;
	}
	.list_cat li:first-child {
		width: 100%;
	}
	.list_news li {
		max-width: none;
		width: 100%;
	}
	.list_news li:nth-child(n+4) {
		display: none;
	}
	.list_news li a {
		padding: 20px 0;
	}
	.list_news li a .post_content p {
		width: 80%;
	}

	/* news
	---------------------------------------------------------- */
	footer .f_nav ul li a {
	}

	/* CTA
	---------------------------------------------------------- */
	.contact-cta{
		padding: 0 0 50px;
	}
	.contact-cta .case .case_inner::before,
	.contact-cta .case .case_inner::after{
		width: calc(100% - 20px);
	}
	.contact-cta .case .tel_link{
		font-size: 230%;
		padding-left: 27px;
		background-position: left top 7px;
		background-size: 20px;
	}
	.contact-cta .case .sched{
		font-size: 100%;
        max-width: 300px;
	}
}