@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/*===============================
 Base
===============================*/
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box;-o-box-sizing: border-box;  -ms-box-sizing: border-box;box-sizing: border-box;}
.sp { display: none; }
body {
	color: #231815;
}
a {
	color: #231815;
	text-decoration: none;
	transition: .5s;
}
a:hover {
	opacity: 0.8;
}
img {
	width: 100%;
	height: auto;
}
.slick-slide img.sp { display: none; }
@media screen and (max-width:1024px) {
	.pc-br { display: none; }
}
@media screen and (max-width:767px) {
	/* 画面サイズが 767px以下の場合に適用 */
	.pc { display: none; }
	.sp { display: block; width: 100%; }
}

/*===============================
 Clear
===============================*/
img {
	border: 0;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}
ol, ul {
	list-style: none!important;
}
* {
	margin: 0;
	padding: 0;
}

/*===============================
 Font
===============================*/
html {
	font-size: 10px;
}
body {
	font-family: "Noto Sans", sans-serif;
	line-height: 1.875;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}
h1, h2, h3, h4, h5 {
	line-height: 1.538;
}
p, li, dt, dd, th, td {
	line-height: 2;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}
a {
	letter-spacing: 0.05em;
}

/*===============================
 Layout
===============================*/
#wrapper { overflow: hidden; background-color: #EDEDED; }
.container { width:90%; margin:0 auto; max-width: 1300px; }
.left-container { width:95%; max-width: calc(1300px + ((100% - 1300px) / 2)); margin: 0 0 0 auto; position: relative; }
.right-container { width:95%; max-width: calc(1300px + ((100% - 1300px) / 2)); margin: 0 auto 0 0; position: relative; }
.linkbtn { display: flex; align-items: center; justify-content: center; border: 3px solid #C4C85A; background-color: #C4C85A; color: #231815; width: 360px; min-height: 60px; font-size: 1.8rem; font-weight: bold; }
.linkbtn:hover { background-color: #fff; color: #C4C85A; }
.sectitle01 { font-family: "Impact", sans-serif; font-size: 8.0rem; font-weight: 400; line-height: 1; font-style: normal; letter-spacing: 0.05em; }
.pagetit { font-family: "Impact", sans-serif; font-size: 6.0rem; line-height: 1.3; font-weight: 400; letter-spacing: 0.03em; color: #EDEDED; }
.pagesubtitle { font-size: 2.0rem; line-height: 1.3; font-weight: 700; letter-spacing: 0.03em; color: #EDEDED;}
.pagesubtit { color: #fff; font-weight: 700; font-size: 4.0rem; letter-spacing: 0.01em; line-height: 1; font-style: normal; }
.pagetitle { position: relative; z-index: 1; margin-top: 80px; }
.pagetitle_img { position: absolute; width: 400px; top: 20px; right: 5%; }
.cta {padding: 100px 0;}
.cta .linkbtn { margin: 0 auto; background-color: #FAC60E; color: #121212; border: 3px solid #FAC60E; width: 600px; min-height: 100px; font-size: 2.4rem; font-weight: 700; }
.cta .linkbtn:hover { background-color: #fff; color: #FAC60E; }
.cta.btm { padding-bottom: 200px; }
.clear { clear:both; }
section { padding:100px 0; position: relative; }
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width: 1025px) and (max-width: 1250px) {
	
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:2.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeInAnime{
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}

/* 上から */

.fadeImg{
	animation-name:fadeImgAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	-moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    transition-delay: .5s;
}
	
@keyframes fadeImgAnime{
	from {
		-webkit-transform: scale(1.0);
		-moz-transform: scale(1.0);
		-ms-transform: scale(1.0);
		-o-transform: scale(1.0);
		transform: scale(1.0);
	}

	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

/* 上から */

.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:0.7s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeDownAnime{
	from {
	opacity: 0;
	transform: translateY(-100px);
	}

	to {
	opacity: 1;
	transform: translateY(0);
	}
}

/* fadeUp */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.7s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeUpAnime{
	from {
	opacity: 0;
	transform: translateY(50px);
	}

	to {
	opacity: 1;
	transform: translateY(0);
	}
}

/* 左から */

.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeLeftAnime{
	from {
	opacity: 0;
	transform: translateX(-100px);
	}

	to {
	opacity: 1;
	transform: translateX(0);
	}
}

/* 右から */

.fadeRight{
	animation-name:fadeRightAnime;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeRightAnime{
	from {
	opacity: 0;
	transform: translateX(100px);
	}

	to {
	opacity: 1;
	transform: translateX(0);
	}
}
	
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
	
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
	opacity: 0;
}

/*===============================
 COMMON
===============================*/
/* contact */
.contact { background-color: #424939; }
.contact .top_sectit { color: #fff; margin-bottom: 70px; }
.contact .top_sectit .sectitle01 { margin-bottom: 15px; }
.contact .contact_inner p { text-align: center; margin-bottom: 80px; color: #fff; font-size: 1.8rem; }
.contact .contact_inner .linkbtn { width: 360px; min-height: 90px; background-color: #C4C85A; color: #424939; /* margin: 0 auto; */ font-size: 2.2rem; border: 3px solid #Fff; border-radius: 10px; }
.contact .contact_inner .linkbtn:hover { background-color: #424939; color: #C4C85A; opacity: 1; }
.contact .contact_inner .tel_area { margin-right: 13%; }
.contact .contact_inner .tel_number { font-family: "Impact", sans-serif; font-size: 5.0rem; color: #fff; line-height: 1.5; }
.contact .contact_inner .tel_hour { font-family: "Impact", sans-serif; color: #fff; text-align: left; }
.contact_inner_flex { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }

/* article */
.archive-article { position: relative; }
.archive-article:hover {
	cursor: pointer;;
}
.archive-article_img {
	overflow: hidden;
	border-radius: 10px;
}
.archive-article_img_inner {
	display: block;
	padding-top: 60%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	transition-duration: .5s;
}
.archive-article:hover .archive-article_img_inner {
	transform: scale(1.1);
}
.archive-article_top {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 10px;
}
.archive-article_top .date {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
}
.archive-article_top .category {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2;
    padding: 1px 7px 0;
    border: 1px solid #000;
}
.archive-article_tit {
    min-height: auto;
}
.archive-article_tit h2 {
    font-size: 1.8rem;
    font-weight: 400;
}
.top-two_cover {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    z-index: 2;
}

/*===============================
 header
===============================*/
#header { position: fixed; min-height: 80px; width: 100%; z-index: 9; display: flex; justify-content: flex-end; align-items: center; background: rgba(255, 255, 255, 0.5); transition: 0.5s; }
#header.change-color { background-color: #EDEDED; }
#header.page { background-color: #EDEDED; }
#header .header_logo { position: absolute; top: 38%; left: 40px; width: 200px; }
#header .header_logo a span { display: inline-block; }
#pc-nav ul.menu { list-style: none; display: flex; justify-content: center; align-items: center; margin: 0; }
#pc-nav ul.menu > li > a { display: block; text-decoration: none; margin: 0 25px; font-size: 1.5rem; line-height: 1; color: #231815; }
#pc-nav ul.menu > li > a.change-color { color: #231815; }
#pc-nav ul.menu > li:last-of-type { margin-left: 30px; }
#header #pc-nav ul.menu .contact_btn { display: flex; align-items: center; justify-content: center; color: #231815; background-color: #BDB944; border: 1px solid #BDB944; min-width: 220px; min-height: 80px; margin: 0; }
#header #pc-nav ul.menu .contact_btn:hover { background-color: #fff; color: #BDB944; opacity: 1; }

@media screen and (min-width: 1025px) and (max-width: 1400px) {
	#header {padding-right: 30px;}
	#pc-nav ul.menu > li > a {margin: 0 20px;}
	#header .header_logo { left: 30px; }
}
@media screen and (max-width: 1024px) {
	#pc-nav { display: none; }
}

/*===============================
 MV
===============================*/
#mv { width: 100%; position: relative; height: 80vh; position: relative; }
#mv:before { content: ''; background-image: url(images/top_mv2.jpg); position: absolute; background-position: center; background-size: cover; top: 0; left: 0; width: 100%; height: 101%; }
#mv .container { position: relative; margin: 0; width: 100%; max-width: none; height: 80vh; z-index: 2; }
.mv_txt_area { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); width: 90%; max-width: 1140px; }
.mv_tit { font-size: 7.0rem; line-height: 1.4; text-shadow: #707070 0px 1px 3px; color: #fff; font-family: '游明朝体', serif; }
#mv_logo_txt { width: 90%; position: absolute; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); bottom: -3.3vw; }
#mv_filter { width: 100vw; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.2); z-index: 1; }
.pagetit.uppercase { text-transform: uppercase; }
.pagetitle { padding: 100px 0; position: relative; z-index: 0; }
.pagetitle::before { content: ""; position: absolute; z-index: -1; width: 44%; height: 100%; background: transparent conic-gradient(from 117deg at 104% 105%, #586F3B 0.00%, #0D0F0B 100.00%) 0% 0% no-repeat padding-box; top: 0; left: 0; }
.pagetitle::after { content: ""; position: absolute; z-index: -1; width: 56%; height: 100%; top: 0; right: 0; }


/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-34px;
	bottom:60px;
    /*テキストの形状*/
	color: #eee;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	text-shadow: 0px 1px 2px #909090;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 50px;
    right: -6px;
    /*矢印の形状*/
    width: 2px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
	box-shadow: 0px 1px 2px #909090;
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:50px;
	right:0;
    /*矢印の形状*/
	width:2px;
	height: 82px;
	background:#eee;
	box-shadow: 0px 1px 2px #909090;
}

/*===============================
 トップページ
===============================*/
.top_sectit { margin-bottom: 80px; text-align: center; }
.top_sectit h2 { font-size: 2.0rem; }
#top .top_sectit .sectitle01 { margin-bottom: 15px; }
.more_btn {/*ボタンの形状*/ display: inline-block; display: flex; align-items: center; justify-content: center; border: 3px solid #FAC60E; width: 460px; min-height: 60px; border-radius: 60px; text-decoration: none; color: #121212; background-color: #FAC60E; /*アニメーションの指定*/ transition: all .2s linear; font-weight: 600; }
.more_btn:hover { background-color: #fff; color: #FAC60E; }

/* front-top */
#front-top { position: relative; padding: 100px 0 100px; background-color: #424939; }
#front-top_tit { text-align: center; font-size: 3.0rem; line-height: 1.75; color: #fff; margin-bottom: 25px; }
#front-top_txt { color: #fff; text-align: center; }

/* SERVICE */
#top_service .top_sectit { margin-bottom: 20px; }
#top_service .top_sectit .sectitle01 { color: #C4C85A; }
.sec_top_service_list { display: flex; justify-content: space-around; }
.sec_top_service_list > li { width: 250px; }
.sec_top_service_list_tit { text-align: center; font-size: 2.0rem; }
.sec_top_service_linkbtn { width: 500px; max-width: 100%; display: block; margin-inline: auto; margin-top: 30px; background-color: #C4C85A; text-align: center; padding-block: 15px; }

/* ABOUT */
.sec_top_about_linkbtn { width: 500px; max-width: 100%; display: block; margin-inline: auto; margin-top: 50px; background-color: #C4C85A; text-align: center; padding-block: 22px; }

/* NEWS */
.top_news_content { margin-bottom: 20px; }
#top_news { background-color: #C4C85A83; }
.top_news_content_flex { display: flex; justify-content: space-between; flex-wrap: wrap; }
.top_news_sectit { width: 300px; max-width: 100%; }
.top_news_sectit h2 { font-size: 2.0rem; }
.top_news_sectit .sectitle01 { margin-bottom: 10px; }
.top_news_linkbtn { margin-top: 65px; background-color: #C4C85A; display: block; text-align: center; width: 500px; max-width: 100%; padding-block: 22px; }
.top_news_article { width: calc(100% - 350px); }
.news_item a { display: flex; padding-block: 30px; border-bottom: 1px solid #231815; }
.top_news_article > article.news_item:first-of-type a { border-top: 1px solid #231815; }
.news_item .news_item_date { margin-inline: 40px; }
.news_item .news_item_title { margin-inline: 40px; }
.news_item .news_item_arrow { width: 30px; display: inline-block; margin-left: auto; margin-right: 40px; }

/*===============================
 PAGE-SERVICE
===============================*/
.service_content_box { padding-bottom: 170px; }
.service_content_box h3.service_list_title { font-size: 3.0rem; font-weight: 700; line-height: 1; margin-bottom: 20px; }
.service_content_box_inner { padding-top: 60px; }
.service_content_box_inner01 { display: flex; justify-content: space-between; padding: 60px 100px; }
.service_content_box_inner01_list { display: flex; padding: 0 5%; justify-content: space-between; flex-wrap: wrap; max-width: 1100px; margin-inline: auto; }
.service_content_box_inner01_list > li { width: 24%; text-align: center; }
.service_content_box_inner01_list p { margin-bottom: 30px; }
.service_content_box_inner01_list a.linkbtn { width: 100%; }
.service_list_subtitle { font-size: 2.4rem; margin-bottom: 10px; }
.service_content_box_inner_flex { display: flex; flex-wrap: wrap; justify-content: space-between; padding-top: 100px; }
.service_content_box_inner_flex .left { width: 48vw; }
.service_content_box_inner_flex .service_linkbtn { padding-block: 15px; text-align: center; margin-top: 30px; font-size: 1.6rem; line-height: 1.66; }
.service_content_box_inner_flex .right { width: min(48%, 620px); }
.service_content_box_inner_flex.flex_direction .right { padding-left: 0; }
.service_content_box_inner_flex.left-container .left { width: min(48%, 620px); }
.service_content_box_inner_flex.left-container .right { order: 2; width: 48vw; }
.service_content_box_inner_flex p { margin-bottom: 20px; }
#new_car_sales_txt { margin-bottom: 10px; }
#suzuki_mark { margin-bottom: 20px; display: flex; flex-wrap: wrap; }
.suzuki_mark_img { width: 240px; margin-right: 20px; }
#suzuki_mark .suzuki_mark_txt { font-size: 2.0rem; margin-bottom: 0; display: flex; align-items: center; }
.mv_service::after { background: url(./images/service_mv.jpg) no-repeat center right / cover; }

@media screen and (min-width: 1201px) and (max-width: 1300px) {
	
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
	
}
@media screen and (min-width: 1025px) and (max-width: 1250px) {
	
}

/*===============================
 PAGE-ABOUT
===============================*/
.about_content_box_inner {padding: 100px 0 150px; }
.about_content_box_inner .profile_box { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 50px; }
.about_content_box_inner .profile_box .about-list { width: 48%; }
.about_content_box_inner .profile_box .profile_img { width: 48%; }
.about_content_box_inner .profile_box > p { width: 46%; color: #231815; }
.about_content_box_inner .profile_box > img { width: 46%; color: #231815; }
.about_content_box_inner .about_map_title { margin-bottom: 30px; font-size: 2.0rem; }
.about_content_box_inner .about_map_title span { width: 32px; display: inline-block; margin-right: 5px; }
.mv_about::after { background: url(./images/about_mv.jpg) no-repeat center right / cover; }
.about-list li { border-bottom: 1px solid #231815; margin: 0 0 16px 0; padding: 0 0 16px 0; }
.about-list dl { display: flex; justify-content: space-between; }
.about-list dt { width: 156px; padding: 0 0 0 20px; color: #231815; }
.about-list dd { width: calc(100% - 5% - 156px); color: #231815; display: flex; align-items: center; }

/*===============================
 PAGE-CONTACT
===============================*/
.mv_contact::after { background: url(./images/contact_mv.jpg) no-repeat center right / cover; }
@media screen and (min-width: 1400px) { .mv_contact::after { background: url(./images/contact_mv.jpg) no-repeat center right / 175%; } }
.contact_content_inner { max-width: 770px; padding: 80px 0 150px; }
.contact_title { text-align: center; margin-bottom: 30px; font-weight: 700; font-size: 3.5rem; }
.contact_txt { text-align: center; margin-bottom: 50px; font-weight: 600; line-height: 2.2; }
.contact_content_inner .contact_item { margin-bottom: 20px; }
.contact_content_inner input[type="text"], .contact_content_inner input[type="email"] { width: 100%; border-radius: 12px; min-height: 50px; font-size: 1.6rem; padding: 0 20px; border: 1px solid #231815; }
.contact_content_inner textarea { width: 100%; border-radius: 12px; min-height: 200px; font-size: 1.6rem; padding: 15px 20px; border: 1px solid #231815; line-height: 1.66; font-family: 'Noto Sans', sans-serif; }
.contact_content_inner input[type="submit"] { width: 400px; max-width: 100%; border-radius: 10px; border: 2px solid #C4C85A; background-color: #C4C85A; margin-inline: auto; display: block; transition: all 0.5s; font-size: 2.0rem; min-height: 80px; }
.contact_content_inner input[type="submit"]:hover { background-color: #fff; color: #C4C85A; }
.contact_content_inner label span { font-weight: 700; font-size: 1.8rem; }
.contact_content_inner .required::after { content: "※必須"; color: #FD0000; font-size: 1.4rem; margin-left: 10px; }
.contact_submit_btn { margin-top: 40px; }
#contact_txt_btm { text-align: center; font-size: 1.2rem; line-height: 2; font-weight: 400; margin-bottom: 50px; }
.contact_txt_privacylink { text-decoration: underline; transition: 0.5s; }
.contact_txt_privacylink:hover { text-decoration: none; }

/* 入力内容の確認 */
#page-contact.confirm .contact_content_inner { padding: 0px 0 100px; }
#page-contact.confirm .contact_content_inner .contact_item { border-bottom: 1px solid #333; padding-bottom: 7px; }
#page-contact.confirm .contact_submit_btn { display: flex; }
#page-contact.confirm .contact_content_inner input[type="submit"] { width: 40%; }
#page-contact.confirm .contact_content_inner input[name="mwform_submitButton-514"] { order: 2; }
#page-contact.confirm .contact_content_inner input[type="submit"].mainback { background-color: #fff; border: 2px solid #707070; color: #707070; order: 1; }
#page-contact.confirm .required { margin-bottom: 13px; }

/* 送信完了 */
#page-contact.thanks { padding: 200px 0 120px; }
#apply_head { text-align: center; font-size: 2.4rem; margin-bottom: 30px; }
#apply_txt { text-align: center; margin-bottom: 50px; }
#apply_btn_link { background-color: #fff; width: 350px; border: 1px solid #C4C85A; margin: 0px auto; color: #C4C85A; font-size: 2.0rem; line-height: 2; min-height: 80px; transition: 0.5s; display: flex; align-items: center; justify-content: center; }
#apply_btn_link:hover { background-color: #C4C85A; color: #231815; }

/* 入力エラー */
#page-contact.error .contact_content_inner { padding: 0px 0 100px; }
#page-contact.error form label br { display: none; }
#page-contact.error .sectitle02, #page-contact.confirm .sectitle02 { text-align: center; padding: 30px 0; font-size: 3.4rem; }
#page-contact.error .contact_txt, #page-contact.confirm .contact_txt { margin-bottom: 50px; }

@media screen and (min-width: 768px) and (max-width: 773px) {
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 40px !important;
	}
}
@media screen and (min-width: 774px) and (max-width: 819px) {
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 8px !important;
	}
}
@media screen and (min-width: 820px) and (max-width: 1024px) {
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 20px !important;
	}
}

/*===============================
 ARCHIVE-NEWS
===============================*/
.news_archive_inner { max-width: 900px; padding: 100px 0; }
.news_archive_inner .news_list_item { display: inline-block; padding: 5px 0; display: flex; border-bottom: 1px #231815 solid; }
.news_archive_inner .news_list_date { font-size: 1.6rem; font-family: "Impact", sans-serif; }
.news_archive_inner .news_list_title { font-weight: 700; font-size: 1.6rem; margin-inline: 30px; }
.news_archive_inner .news_list_arrow { display: inline-block; width: 10px; margin-left: auto; margin-right: 30px; }
.news_archive_inner .news_list_arrow img { vertical-align: text-top; }
.newslist > li { border-bottom: 1px solid #707070; }
.newslist > li:first-of-type { border-top: 1px solid #707070; }
.newslist > li > a { padding: 30px 80px 30px 30px; display: flex; align-items: center; position: relative; }
.newslist > li > a:before { content: '\f054'; font-family: "Font Awesome 5 Free"; font-weight: 600; font-size: 18px; position: absolute; right: 30px; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); }
.newslist .date { margin-right: 5%; }
.news_inner .pagelink { display: flex; align-items: flex-end; }
.mv_news::after { background: url(./images/news_mv.jpg) no-repeat center right / cover; }

/*===============================
 SINGLE
===============================*/
.single-page { padding: 110px 0 100px; margin-bottom: 100px; }
.single-main .container { max-width: 890px; }
.single-main .article_date { font-style: normal; font-size: 2.0rem; font-weight: 400; letter-spacing: 0.1em; font-family: "Impact", sans-serif; text-align: left; margin-bottom: 10px; }
.single-main .article_tit { font-size: 3.0rem; font-weight: 700; line-height: 1.5; letter-spacing: 0.1em; margin: 0 auto 50px; padding-bottom: 30px; border-bottom: 3px solid #231815; }
.single-main .mainimg { max-width: 600px; margin: 0 auto 30px; }

/* content */
.article_content h2 { font-size: 2.0rem; font-weight: 400; letter-spacing: 0.1em; line-height: 1.5; padding: 2px 20px 6px; margin: 30px 0 20px; border-left: 7px solid #BDB943; position: relative; }
.article_content h3 { font-size: 2.0rem; font-weight: 400; letter-spacing: 0.1em; line-height: 1.5; padding: 2px 20px 6px; margin: 30px 0 20px; border-left: 7px solid #BDB943; position: relative; }
.article_content h4 { font-size: 1.6rem; font-weight: 400; letter-spacing: 0.1em; line-height: 2.125; padding-bottom: 5px; margin-bottom: 20px; position: relative; }
.article_content h5 { font-size: 1.5rem; font-weight: 400; letter-spacing: 0.1em; line-height: 2.125; padding-bottom: 5px; margin-bottom: 20px; position: relative; }
.article_content h6 { font-size: 1.4rem; font-weight: 400; letter-spacing: 0.1em; line-height: 2.125; padding-bottom: 5px; margin-bottom: 20px; position: relative; }
.article_content img { border: none !important; }
.article_content p { font-weight: 400; margin-bottom: 20px; }
.article_content p strong { font-weight: 700; }
.article_content p em { font-style: italic; }
.article_btmlink { display: flex; margin-top: 70px; }
.article_btmlink > div { width: 50%; min-height: 130px; position: relative }
.article_btmlink > div.back { border-right: 3px solid #BDB943; }
.article_btmlink > div > a { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); font-size: 2.4rem; font-weight: 200; color: #3FA7FC; }
.single-main_btm { margin-top: 100px; }
.single-main_btm .linkbtn { margin: 0 auto; background-color: #BDB943; border: 3px solid #BDB943; min-height: 73px; }
.single-main_btm .linkbtn:hover { background-color: #fff; color: #BDB943; }
.gallery-columns-2 > dl.gallery-item { width: 49% !important; }
.gallery-columns-2 > dl.gallery-item:not(:nth-of-type(2n)) { margin-right: 2%; }
.gallery-columns-3 > dl.gallery-item { width: 32% !important; }
.gallery-columns-3 > dl.gallery-item:not(:nth-of-type(3n)) { margin-right: 2%; }
.gallery-columns-4 > dl.gallery-item { width: 24% !important; }
.gallery-columns-4 > dl.gallery-item:not(:nth-of-type(4n)) { margin-right: calc( 4% / 3 ); }
.gallery-columns-5 > dl.gallery-item { width: 19% !important; }
.gallery-columns-5 > dl.gallery-item:not(:nth-of-type(5n)) { margin-right: calc( 5% / 4 ); }
.gallery-columns-6 > dl.gallery-item { width: 16% !important; }
.gallery-columns-6 > dl.gallery-item:not(:nth-of-type(6n)) { margin-right: calc( 4% / 5 ); }
.gallery-columns-7 > dl.gallery-item { width: 14% !important; }
.gallery-columns-7 > dl.gallery-item:not(:nth-of-type(7n)) { margin-right: calc( 2% / 6 ); }
.gallery-columns-8 > dl.gallery-item { width: 12% !important; }
.gallery-columns-8 > dl.gallery-item:not(:nth-of-type(8n)) { margin-right: calc( 4% / 7 ); }
.gallery-columns-9 > dl.gallery-item { width: 10% !important; }
.gallery-columns-9 > dl.gallery-item:not(:nth-of-type(9n)) { margin-right: calc( 10% / 8 ); }

/*===============================
 footer
===============================*/
#footer { position: relative; padding-top: 70px; background-color: #C4C85A; }
.openbtn { position: fixed; z-index: 9999; top: 0; right: 0; cursor: pointer; width: 70px; height: 67px; display: none; }
.openbtn span { display: inline-block; transition: all .4s; position: absolute; left: 20px; cursor: pointer; }
.openbtn span:nth-of-type(1), .openbtn span:nth-of-type(2) , .openbtn span:nth-of-type(3) { height: 1px; background: #231815; width: 40%; opacity: 1; }
.openbtn span:nth-of-type(1) { top: 30px; }
.openbtn span:nth-of-type(2) { top: 32px; opacity: 0; }
.openbtn span:nth-of-type(3) { top: 38px; }
.openbtn.active span:nth-of-type(1) { top: 26px; left: 28px; transform: translateY(6px) rotate(-45deg); width: 30%; opacity: 1; }
.openbtn.active span:nth-of-type(2) { opacity: 0; }
.openbtn.active span:nth-of-type(3){ top: 38px; left: 28px; transform: translateY(-6px) rotate(45deg); width: 30%; opacity: 1; }
.footer_menu_logo { text-align: center; }
.footer_menu_logo a { display: block; }
.footer_menu_logo a img { width: 260px; }
.footer_menu_logo_img { margin-bottom: 20px; }
.footer_menu_logo a.privacy_link { font-size: 1.4rem; font-weight: 400; text-decoration: underline; }
.footer_menu_logo a.privacy_link:hover { text-decoration: none; }
.footer_info { text-align: center; }
.footer_info .corp_name { font-size: 2.0rem; font-weight: 700; line-height: 1.5; margin-bottom: 10px; }
.footer_info .address { margin-bottom: 10px; }
.footer_info .privacy_link { font-size: 1.4rem; font-weight: 400; text-decoration: underline; }
.footer_info a.privacy_link:hover { text-decoration: none; }
.footer_menu { margin-bottom: 50px; }
.footer_menu > ul { display: flex; flex-wrap: wrap; justify-content: center; }
.footer_menu > ul > li > a { margin: 0 40px; font-size: 1.6rem; color: #fff; line-height: 1; }
.footer_inner01 { display: flex; align-items: center; justify-content: space-between; color: #fff; width: 90%; margin: 0 auto; }
.footer_linkbtn { max-width: 200px; width: 100%; display: block; margin-inline: auto; background-color: #424939; padding-block: 20px; color: #EDEDED; text-align: center; margin-top: 40px; transition: all 0.5s; border: 3px solid #424939; }
.footer_linkbtn:hover { background-color: #EDEDED; color: #424939; }
.copyright { text-align: center; padding: 20px 0; }
.copyright small { font-size: 1.2rem; font-style: normal; font-weight: 700; letter-spacing: 0.2em; color: #707070; }
#page-top { position: fixed; right: 0; top: 200px; z-index: 100; }
#page-top a { color: #fff; display: inline-block; padding: 30px; background-color: rgb(90, 73, 87); text-align: center; border-radius: 50px 0 0 50px; }
#page-top a span { font-size: 2.6rem; font-weight: 600; }

/*========= グローバルナビゲーションのためのCSS ===============*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	bottom:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#424939;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 80%;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}
#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:15px 0;
	display: block;
	letter-spacing: 0.1em;
	font-weight: bold;
	line-height: 1.85;
}
#g-nav li a#c_btn {
	color: #121212;
	background-color: #BDB944;
	border: 2px solid #BDB944;
	width: 200px;
    margin: 0 auto;
	margin-top: 20px;
}

@media screen and (max-width: 1024px) {
	.openbtn { display: block; }
}

/*===============================
 page-privacy-policy
===============================*/
.mv_privacy-policy { padding-top: 90px; }
.mv_privacy-policy::before { content: none; }
.mv_privacy-policy .pagetit { color: #231815; text-align: center; }
.mv_privacy-policy .pagesubtitle { color: #231815; text-align: center; }
.policy_content_inner { max-width: 1100px; padding: 100px 5% 150px; margin-inline: auto; font-family: "Noto Serif", serif; }
.policy_content_inner .policy_txt { line-height: 2; }
.policy_content_inner .policy_item { padding-bottom: 50px; border-bottom: 1px solid #231815; }
.policy_content_inner .policy_item ol { list-style: decimal outside!important; padding-left: 60px; }
.policy_content_inner .policy_item_title { padding: 50px 0 30px 20px; position: relative; }
.policy_content_inner .policy_item_title::before { content: ""; position: absolute; width: 5px; height: 40px; background: #231815; top: 40px; left: 0; }
.policy_content_inner .policy_last_txt { text-align: right; }

/*===============================
 ページネーション
===============================*/
.pagination { margin: 100px 0; text-align: center; }
.nav-links { font-style: normal; font-size: 2.0rem; font-weight: 700; letter-spacing: 0.2em; }
.nav-links > span { margin: 0 15px 0; color: #BDB944; }
.nav-links > a { margin: 0 15px 0; }
.page-numbers { font-weight: 300; }

/*===============================
 404
===============================*/
#mv_notfound { padding-top: 180px; }
#mv_notfound .pagetitle { padding: 0; margin: 0; }
#mv_notfound .pagetitle:before, #mv_notfound .pagetitle:after { display: none; }
#notfound { padding: 80px 0; }
#no-found_tit { font-size: 5.0rem; text-align: center; color: #424939; }
#notfound .container p { text-align: center; margin-bottom: 50px; }
#notfound .linkbtn { margin: 0 auto; }
#notfound .linkbtn:hover { background-color: #fff; }

@media screen and (max-width: 767px) {
/*===============================
 Font
===============================*/
p, li, dt, dd, th, td {
	font-size: 1.5rem;
	line-height: 2;
}

/*===============================
 Layout
===============================*/
.container { width:100%; padding: 0 5%; }
.left-container, .right-container { width: 95%; }
section {padding:50px 0; }
.pagetitle { padding: 50px 0; margin-top: 67px; }
.pagesubtitle { font-size: 1.7rem; }
.pagetit {font-size: 2.4rem; font-weight: 700;}
.pagesubtit {font-size: 2.4rem; margin-bottom: 0;}
.sectitle01 {font-size: 4.0rem;}
.sectitle02 {font-size: 2.8rem;}
.linkbtn {width: 300px; min-height: 60px; font-size: 1.6rem;}
.cta { padding: 20px 0 70px; }
.cta.btm { padding-bottom: 70px; }
.cta .linkbtn { width: 320px; min-height: 70px; font-size: 1.8rem; }

/*===============================
 COMMON
===============================*/
/* contact */
.contact .top_sectit {
	margin-bottom: 30px;
}
.contact .contact_inner .linkbtn {
	width: 300px;
	font-size: 1.6rem;
	min-height: 60px;
}
.contact .contact_inner p {
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.6rem;
}
.contact .contact_inner .tel_number {
	font-size: 4.0rem;
}
.contact .contact_inner .tel_area {
	margin-bottom: 30px;
	margin-right: 0;
}
.contact .contact_inner .tel_hour {
	text-align: center;
}


/*===============================
 header
===============================*/
#header {
	min-height: 67px;
}
#header .header_logo {
	top: 55%;
	left: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 260px;
}

/*===============================
 MV
===============================*/
#mv {
	height: 100vh;
}
#mv:before {
	background-image: url(images/top_mv2_sp.jpg);
}
#mv .container {
	height: 100vh;
}
.mv_txt_area {
	top: 50%;
}
.mv_tit {
	font-size: 3.4rem;
	color: #fff;
	-webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: none;
}
.pagetit {
	font-size: 3.5rem;
}
.mv_img_area {
    padding: 20px 0 30px;
}

/*===============================
 トップページ
===============================*/
.top_sectit {
    margin-bottom: 30px;
}
.top_sectit h2 {
    font-size: 1.6rem;
}
.left_box {
	width: 100%;
}
.subtit {
	font-size: 2.0rem;
}
.more_btn {
	font-size: 1.6rem;
	width: 320px;
	text-align: center;
	line-height: 1.5;
	margin: 0 auto;
}
.more_btn::before {
	right: -113px;
    width: 108px;
}
.more_btn::after {
	top: 56%;
    right: -110px;
    height: 6px;
}

/* front-TOP */
#front-top {
	padding: 50px 0;
}
#front-top .container {
	padding: 0 5%;
}
#front-top_tit {
	font-size: 2.4rem;
}
#front-top_txt {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.13;
}

/* SERVICE */
#top_service {
	padding-bottom: 50px;
}
#top_service .top_sectit {
    margin-bottom: 0px;
}
.sec_top_service_list {
	display: block;
}
.sec_top_service_list > li {
    width: 100%;
}
.sec_top_service_list > li:not(:last-of-type) {
	margin-bottom: 10px;
}
.sec_top_service_list_img {
	width: 230px;
	margin: 0 auto;
	display: block;
}
#sec_top_service_list_item01 .sec_top_service_list_tit {
	margin-top: -10px;
}
#sec_top_service_list_item02 .sec_top_service_list_tit {
	margin-top: -20px;
}
.sec_top_service_linkbtn {
	padding-block: 15px;
}

/* ABOUT */
#top_about_txt01 {
	margin-bottom: 50px;
}
.sec_top_about_linkbtn {
	padding-block: 15px;
}

/* NEWS */
.top_news_content { margin-bottom: 0; }
.top_news_content_flex { flex-direction: column; }
.top_news_sectit { width: 100%; text-align: center; display: contents; }
.top_news_sectit h2 { font-size: 1.6rem; }
.top_news_article { width: 100%; margin-top: 40px; }
.top_news_linkbtn { order: 5; margin-inline: auto; margin-top: 50px; }
.news_item a { flex-wrap: wrap; padding-block: 13px; }
.news_item .news_item_date { margin-left: 0; margin-right: 40px; width: 100%; font-size: 1.4rem; }
.news_item .news_item_title { margin-inline: auto; margin-left: 0; margin-right: 40px; width: 100%; }
.news_item .news_item_arrow { width: 24px; margin-right: 0; right: 10px; position: absolute; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); line-height: 1; }
.top_news_linkbtn { padding-block: 15px; }

/* BLOG */
.bloglist > li {
    width: 100%;
	margin-bottom: 50px;
}
.bloglist > li:not(:nth-of-type(2n)) {
    margin-right: 0px;
}
.archive-article_date {
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.archive-article_top .category {
	padding: 3px 10px 0;
}
.archive-article_tit {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.archive-article_tit h2 {
	line-height: 2;
	font-weight: 500;
}

/*===============================
 PAGE-SERVICE
===============================*/
.mv_service::after { background: url(./images/service_mv.jpg) no-repeat center right 30% / cover; }
.service_content_box_inner01_list > li { width: 31%; margin-bottom: 10px; max-width: 100%; margin-inline: auto; }
.service_content_box_inner01_list p { margin-bottom: 10px; font-size: 1.4rem; line-height: 1.5; }
.service_content_box_inner01_list a.linkbtn { font-size: 1.4rem; min-height: 50px; }
.service_content_box_inner_flex { padding-top: 0; margin-bottom: 60px; }
.service_content_box_inner_flex .left { width: 100%; }
.service_content_box_inner_flex .right { width: 100%; padding: 30px 0 0 5vw; }
.service_content_box_inner_flex.flex_direction { flex-direction: column-reverse; }
.service_content_box_inner_flex.flex_direction .left { padding: 30px 5% 0 0; width: 100%; }
.service_content_box_inner_flex.flex_direction .right { padding: 0; width: 100%; }
.service_content_box { padding-bottom: 50px; }
.service_content_box h3 { font-size: 2.6rem; padding: 0; line-height: 1.35; }
.service_content_box h3.service_list_title { font-size: 2.6rem; }
.service_list_subtitle { font-size: 2.0rem; }
.service_content_box_inner { padding: 25px 0 40px; }
.service_content_box_inner01 { padding: 20px 0 40px; flex-wrap: wrap; }
.service_content_box_inner_flex .service_linkbtn { margin-inline: auto; padding-block: 10px; }
#page_service_jump03 { margin-bottom: 0; }
.suzuki_mark_img { width: 200px; margin-right: 15px; }
#suzuki_mark .suzuki_mark_txt { font-size: 1.6rem; }

/*===============================
 PAGE-ABOUT
===============================*/
.mv_about::after { background: url(./images/about_mv.jpg) no-repeat center right 15% / cover; }
.about_content_box_inner { padding: 30px 5%; }
.about_content_box_inner .profile_box { flex-wrap: wrap; flex-direction: column; }
.about_content_box_inner .profile_box > p { width: 100%; margin-bottom: 20px; }
.about_content_box_inner .profile_box > img { width: 100%; }
.about_content_box_inner .profile_box .about-list { width: 100%; margin: 10px auto 0 auto; }
.about_content_box_inner .profile_box .profile_img { width: 100%; order: 2; }
.about_content_box_inner .about_map_title { margin-bottom: 20px; }
.about-list li { margin: 0 0 20px 0; padding: 0 0 20px 0; }
.about-list dt { padding: 0; line-height: 1.6; width: 110px; }
.about-list dd { line-height: 1.6; width: calc(100% - 0% - 110px); }
.about-map iframe { height: 300px; }

/*===============================
 PAGE-CONTACT
===============================*/
.mv_contact::after { background: url(./images/contact_mv.jpg) no-repeat center right 30% / cover; }
.contact_content_inner { padding: 30px 5% 50px; }
.contact_title { font-size: 2.4rem; margin-bottom: 20px; }
.contact_txt { text-align: center; font-size: 1.4rem; line-height: 2; margin-bottom: 20px; }
.contact_content_inner .contact_item { margin-bottom: 15px; }
.contact_content_inner label span { font-size: 1.6rem; }
.contact_content_inner .required::after { font-size: 1.3rem; }
.contact_submit_btn { margin-top: 20px; }
.contact_content_inner input[type="submit"] { font-size: 1.6rem; }
input[type="submit"].mainsubmit { width: 300px; min-height: 60px; }
input[type="submit"].mainback { width: 300px; min-height: 60px; }

/* 入力内容確認 */
#page-contact.confirm { padding: 67px 0 50px; }
#page-contact.confirm .contact_content_inner { padding: 0px 5%; }
#page-contact.error .contact_txt, #page-contact.confirm .contact_txt { margin-bottom: 20px; }
#page-contact.confirm .required { margin-bottom: 0; }
#page-contact.confirm input[type="submit"].mainsubmit { margin: 0 auto 20px; }
#page-contact.confirm .contact_content_inner input[type="submit"] { width: 300px; min-height: 60px; }
#page-contact.error .sectitle02, #page-contact.confirm .sectitle02 { padding: 20px 0; font-size: 2.4rem; }
#page-contact.confirm .contact_submit_btn { flex-wrap: wrap; margin-top: 30px; }
#page-contact.confirm .contact_content_inner input[name="mwform_submitButton-514"] { order: 1; }

/* 送信完了 */
#page-contact.thanks { padding: 100px 0 50px; }
#apply_head { font-size: 2.2rem; margin-bottom: 20px; }
#apply_txt { font-size: 1.3rem; margin-bottom: 40px; }
#apply_btn_link { width: 300px; min-height: 60px; font-size: 1.8rem; }

/* 入力内容エラー */
#page-contact.error .contact_content_inner { padding: 0px 5%; }
#page-contact.error { padding: 67px 0 50px; }

/*===============================
 ARCHIVE-NEWS
===============================*/
.mv_news::after { background: url(./images/news_mv.jpg) no-repeat center right 25% / cover; }
.news_archive_inner { padding: 50px 5%; }
.newslist > li > a { padding: 15px 45px 15px 15px; flex-wrap: wrap; }
.newslist > li > a:before { right: 15px; }
.newslist .date { margin-right: 0; width: 100%; }
.newslist .tit { width: 100%; }

/*===============================
 SINGLE
===============================*/
.single-page { padding: 67px 0 30px; margin-bottom: 0;}
.single-main .container { padding: 30px 7vw; }
.single-main .article_date { font-size: 1.4rem; text-align: left; margin-bottom: 5px; }
.single-main .article_tit { font-size: 2.0rem; line-height: 1.666; margin: 0 auto 30px; padding-bottom: 15px; }
.single-main .article_content { margin-bottom: 40px; }
.single-main .mainimg { margin-bottom: 30px; }
.single-main_btm { margin-top: 0; }
.single-main_btm .linkbtn { min-height: 60px; }

/* content */
.article_content h2 {
	font-size: 2.0rem;
	padding-bottom: 15px;
	margin: 0 auto 15px;
    line-height: 1.5;
}
.article_content h3 {
	font-size: 1.5rem;
	line-height: 1.73;
}
.article_content h4 {
	font-size: 1.4rem;
	line-height: 1.66;
}
.article_content h5 {
	font-size: 1.4rem;
	line-height: 1.66;
}
.article_content h6 {
	font-size: 1.4rem;
	line-height: 1.66;
}
.article_content p {
	margin-bottom: 10px;
}

.article_btmlink {
	margin: 50px 0;
}
.article_btmlink > div {
	min-height: 100px;
}
.article_btmlink > div.back {
    border-right: 1px solid #3FA7FC;
}
.article_btmlink > div > a {
	font-size: 1.6rem;
	width: 70%;
}
.article_btmlink > div.next > a {
	text-align: right;
}

/*===============================
 footer
===============================*/
#footer {
	padding-top: 40px;
}
.footer_inner01 {
    padding: 40px 0 15px;
	display: block;
	text-align: center;
}
.footer_address {
	width: fit-content;
	margin-inline: auto;
	text-align: left;
}
.footer_menu_logo {
	margin-bottom: 0;
	margin-top: 40px;
}
.footer_menu_logo a img {
    width: 250px;
}
.footer_menu_logo a.privacy_link { font-size: 1.2rem; }
.footer_info .address {
	font-size: 1.6rem;
}
.footer_inner02 {
	margin: 0 7%;
	padding: 50px 0 30px;
}
.footer_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    padding: 0px 20%;
	margin-bottom: 0;
}
.footer_menu > ul {
	display: block;
	width: auto;
}
.footer_menu > ul > li > a {
	margin: 0;
}
.footer_menu > ul > li:not(:last-of-type) {
	margin-bottom: 25px;
}
.copyright {
	line-height: 1.3;
}
.copyright small {
	font-size: 1.0rem;
	letter-spacing: 0.1em;
}

/*===============================
 ページネーション
===============================*/
.pagination {
    margin: 50px 0 20px;
}
.nav-links > span {
	margin: 0 10px 0;
}
.nav-links > a {
    margin: 0 10px 0;
}

/*===============================
 404
===============================*/
#mv_notfound {
    padding-top: 120px;
}
#notfound {
	padding: 50px 0;
}
#no-found_tit {
	font-size: 2.6rem;
}
#notfound .container p {
    margin-bottom: 30px;
}

/*===============================
 page-privacy-policy
===============================*/
#mv_privacy {
    padding-top: 67px;
}
#mv_privacy .pagetitle {
	padding: 30px 0 30px;
}
#mv_privacy .pagetitle .pagesubtit {
	font-size: 4.0rem;
}
#mv_privacy .pagetitle .pagetit {
    font-size: 1.6rem;
}
.privacy_content > div:first-of-type {
	padding-top: 0;
}
.privacy_inner {
	padding: 30px 0;;
}
.privacy_inner h2 {
	font-size: 2.0rem;
	margin-bottom: 20px;
}
.privacy_inner > ul {
    padding-left: 36px;
}
.privacy_inner > ul > ul {
    padding-left: 35px;
}
.privacy_inner ul > li:not(:last-of-type) {
    margin-bottom: 15px;
}
.privacy_num {
	top: -11px;
}
#privacy_btm {
	margin-top: 20px;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
/*===============================
 Layout
===============================*/
p, li, dt, dd, th, td { font-size: 1.4rem; line-height: 2; }
section { padding: 70px 0; }
.pagetitle { margin-top: 70px; }
.pagesubtit {font-size: 3.8rem;}
.pagetit {font-size: 3.8rem;}
.sectitle01 {font-size: 6.0rem;}
.sectitle02 {font-size: 3.2rem;}
.subtit {font-size: 2.2rem;}
.linkbtn {width: 330px; min-height: 70px;}
.cta { padding: 60px 0; }
.cta.btm { padding-bottom: 100px; }
.cta .linkbtn {font-size: 2.2rem;width: 500px;min-height: 90px;}
.no-tab { display: none; }

/*===============================
 header
===============================*/
#header { min-height: 70px; }
#header .header_logo { top: 31%; left: 3%; width: 260px; }

/*===============================
 MV
===============================*/
#mv:before { background-position: 70% 30%; filter: blur(2px); }
.mv_tit { font-size: 4.4rem; line-height: 1.66; }
.mv_txt { font-size: 3.0rem; }

/*===============================
 トップページ
===============================*/
.top_sectit {
	margin-bottom: 50px;
}
#top_service .top_sectit {
    margin-bottom: 20px;
}
.top_sectit h2 {
    font-size: 1.8rem;
}

/* front-top */
#front-top {
	padding: 70px 0;
}
#front_btn {
	margin: 0 auto 40px;
	font-size: 1.6rem;
	width: 320px;
    min-height: 70px;
}
#front_btn span {
	font-size: 2.2rem;
}
#front-top_txt {
	font-size: 1.8rem;
}

/* SERVICE */
#top_service {
	padding: 70px 0 90px;
}
.top_service_box {
	margin-bottom: 70px;
}
.top_service_box .txt_box h3 {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.top_service_box .txt_box {
	padding-top: 0;
}
.top_service_box .txt_box p {
	margin-bottom: 30px;
}
.sec_top_service_list > li { width: 29%; }
.sec_top_service_list_tit { font-size: 1.6rem; }

/* ABOUT */
#top_about_txt01 {
	margin-bottom: 50px;
}

/* NEWS */
.top_news_sectit { width: 100%; }
.top_news_article { width: 100%; }
.top_news_linkbtn { margin: 40px 0; }
.news_inner .newslist {
	margin: 0 0 50px;
}
#news .newslist {
    margin-bottom: 50px;
}
.newslist > li > a {
	padding: 30px 80px 30px 30px;
}

/* contact */
.contact { padding: 70px 0; margin: 0; }
.contact .top_sectit { color: #fff; margin-bottom: 50px; }
.contact .contact_inner .sectit02 { margin-bottom: 40px; }
.contact .contact_inner .sectit02 h2 { font-size: 1.8rem; }
.contact .contact_inner .sectit02 .sectitle02 { margin-bottom: 0; }
.contact .contact_inner p { margin-bottom: 50px; }
.contact .contact_inner .tel_area { margin-right: 7%; }
.contact .contact_inner .linkbtn { min-height: 80px; font-size: 1.8rem; width: 300px; }

/*===============================
 PAGE-SERVICE
===============================*/
.service_content_box { padding-bottom: 70px; }
.service_content_arrow { margin: 50px auto 30px; }
.service_content_em_txt { font-size: 3.0rem; }
.service_content01_tit { margin-bottom: 50px; }
#service_content_box_inner01 { padding: 30px 0; }
.service_content_box h3 { font-size: 2.4rem; }
.service_content_box_inner { padding: 40px 0 0; }
.service_content_box_inner_flex { padding-top: 70px; }
.service_content_box_inner_flex .left { width: 100%; }
.service_content_box_inner_flex .right { width: 100%; padding: 30px 5% 0; }
.service_content_box_inner_flex.flex_direction { flex-direction: column-reverse; }
.service_content_box_inner_flex.flex_direction .left { padding: 30px 5% 0 0; width: 100%; }
.service_content_box_inner_flex.flex_direction .right { padding: 0; width: 100%; }
.service_content_box_inner_flex .service_linkbtn { min-width: 316px; text-align: center; margin-top: 30px; }
#service_content_box_inner01 .txt01 { margin-bottom: 30px; }
.service_content_box_inner01_list { justify-content: space-around; }

/*===============================
 PAGE-ABOUT
===============================*/
#about_content01 { padding: 50px 0 40px; }
.about_content { padding: 0 0 40px; }
.about-list li { margin: 0 0 20px 0; padding: 0 0 20px 0; }
.about_content_box_inner { padding: 70px 0; }
.about_content_box_inner .profile_box { flex-direction: column; }
.about_content_box_inner .profile_box .about-list { width: 100%; margin-bottom: 20px; }
.about_content_box_inner .profile_box .profile_img { width: 100%; order: 2; }
.about_content_box_inner .about_map_title { margin-bottom: 20px; }

/*===============================
 PAGE-CONTACT
===============================*/
#page-contact { padding: 50px 0; }
.contact_txt { margin-bottom: 50px; }
.contact_content_inner { padding: 80px 0; }

/* 入力内容確認 */
#page-contact.confirm { padding: 70px 0 50px; }
#page-contact.confirm .contact_content_inner { padding: 0px 0 50px; }
#page-contact.confirm input[type="submit"].mainsubmit { width: 300px; }
input[type="submit"].mainback { width: 300px; }

/* 完了画面 */
#page-contact.thanks { padding: 100px 0; }

/* 入力エラー */
#page-contact.error { padding: 70px 0 50px; }
#page-contact.error .contact_content_inner { padding: 0px 0 50px; }
#page-contact.error .sectitle02, #page-contact.confirm .sectitle02 { padding: 30px 0; }
#page-contact.error .contact_txt, #page-contact.confirm .contact_txt { margin-bottom: 30px; }

/*===============================
 ARCHIVE-NEWS
===============================*/
.page-news.container {
	padding: 70px 0 50px;
}

/*===============================
 SINGLE
===============================*/
.single-page {
	padding: 90px 0;
	margin-bottom: 0;
}
.single-main .article_tit {
	font-size: 2.6rem;
	margin: 0 auto 40px;
	padding-bottom: 20px;
}
.single-main_btm {
    margin-top: 70px;
}

/*===============================
 SINGLE-WORKS
===============================*/
.single-works .article_tit {
	margin: 0 auto 10px;
    padding-bottom: 0px;
}
.article_content p {
	margin-bottom: 10px;
}

/*===============================
 SINGLE-NEWS
===============================*/


/*===============================
 ページネーション
===============================*/
.pagination {
    margin: 70px 0 0;
}

/*===============================
 footer
===============================*/
#footer {
    padding-top: 50px;
}
.footer_inner01 {
    padding: 60px 0 20px;
}
.footer_menu_logo a img {
    width: 130px;
}
.footer_menu_logo a.privacy_link { font-size: 1.2rem; }
.footer_menu {
	padding: 0 5%;
	margin-bottom: 20px;
}
.footer_menu > ul {
	flex-wrap: wrap;
}
.footer_menu > ul > li {
	width: 20%;
	text-align: center;
}
.footer_menu > ul > li:nth-of-type(-n+4) {
    margin-bottom: 0;
}
.footer_menu > ul > li > a {
	margin: 0;
	font-size: 1.3rem;
}
.footer_info .privacy_link {
	font-size: 1.2rem;
}
#g-nav li a {
	font-size: 1.5rem;
}
#g-nav.panelactive {
    bottom: 0;
}
.openbtn {
	right: 15px;
	height: 70px;
}
.copyright small {
	font-size: 1.0rem;
}

/*===============================
 page-privacy-policy
===============================*/
#mv_privacy {
    padding-top: 70px;
}
#mv_privacy .pagetitle {
	padding: 50px 0;
}
#mv_privacy .pagetitle .pagesubtit {
	font-size: 6.0rem;
}

/*===============================
 404
===============================*/
#mv_notfound { padding-top: 140px; }
#no-found_tit { font-size: 4.0rem; }
}

@media screen and (min-width: 800px) and (max-width: 990px) {
#g-nav-inner {
	top: 30%;
}
}


@media screen and (min-width: 991px) and (max-width: 1024px) {
/*===============================
 COMMON
===============================*/
.contact .container {
	width: 70%;
}

/*===============================
 footer
===============================*/
.footer_menu {
	padding: 0 10%;
}
.openbtn {
	width: 100px;
    height: 70px;
	right: 20px;
}
#g-nav-inner {
	top: 27%;
}
}
