@charset "UTF-8";


/* Document
 ========================================================================== */
html {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

/*
.noto-sans {
	font-family: 'Noto Sans JP', sans-serif;
}
*/

.noto-serif {
	font-family: 'Noto Serif JP', serif;
}

@page {
	size: A4;
	margin: 12.7mm 9.7mm;
}

@media print{
	body {
		min-width:960px;
		-webkit-print-color-adjust:exact;
		-webkit-filter:opacity(1);
		color-adjust: exact;
	}
}

body {
	font-size: 1.8rem;
	transition: all 0.2s;
}

/*-- メニュー展開時ページ固定 --*/
body.fixed-mode {
	width: 100%;
	height: 100%;
	position: fixed;
	overscroll-behavior: none;
} 

p {
	font-size: 1.8rem;
	text-align: justify;
	word-break: break-all;
	margin-bottom: 1.5rem;
}

img {
	vertical-align: bottom;
}

/* 親要素内で最大100%表示、満たなければ原寸大でさせる */
.content img {
	max-width: 100%;
	height: auto;
}

.img-center {
	display:block;
	margin:20px auto;
}

a {
	transition: all 0.2s;
	text-decoration: none;
}

a:hover {
	opacity:0.8;
	text-decoration: underline;
}

ul,ol {
	margin:0.5em 0 0.5em 1.5em;
}

/*
li {
	padding: 5px;
	margin-bottom: 5px;
}
*/

address {
	font-style: normal;
}

dl dt {
	font-weight: bold;
	border-left: 10px solid #7e7c43;
	padding-left: 10px;
}

dl dd{
	margin-bottom: 30px;
	margin-left: 2.0rem;
}


main dl dd{
	text-align: justify;
	word-break: break-all;
}



article {
	margin-bottom: 6rem;
}


/* 汎用
 ========================================================================== */
.red {
	color:#FF0000;
}

.blue {
	color:#03C;
}

 .sp-only {
	display: none;
 }

 @media screen and (max-width:768px) {
	 .pc-only {
		 display: none;
	 }
	 .sp-only {
		display: block;
	 }

 }

 .t-l {
	 text-align: left !important;
	 text-indent: 0em !important;
}

 .t-r {
	 text-align: right !important;
	 text-indent: 0em !important;
}

.t-c {
	text-align: center !important;
	text-indent: 0em !important;
}



/* ボタン
---------------------------------------------*/

.btn {
	position:relative;
	display: table;
	margin: 30px auto;
	text-indent: 0 !important;
	border: 2px solid #7e7c43;
	border-radius:5px;
	color: #fff;
	background:#7e7c43;
/*
	color: #7e7c43;
	border: 2px solid #6633CC;
	color: #6633CC;
*/
}

.btn::before {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translate(0%, -50%);

	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f105';
	font-size: 2.0rem;
/*
	color: #6633CC;
	color: #7e7c43;
	padding-right: 15px;
*/
	color: #fff;
	margin: auto;
	line-height: 1.2;
	vertical-align: text-bottom;
	text-decoration: none;
}

.btn:hover::before {
	color: #7e7c43;
}

.btn:hover {
/*
	background:#6633CC;
*/
	background:#fff;
	text-decoration: underline;
	color: #7e7c43;
	opacity:1.0;

}

.out-link::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f35d';
	padding-left:15px;
	text-decoration:none;
}

.arrow-link {
	background: url("../img/mini-arrow.svg") no-repeat;
	background-position: center right;
	background-size: 18px;
	padding-right: 25px;
	text-decoration: underline;
	color: #7e7c43;
}


.pdf-btn {
	display: table;
	margin: 15px 0;
	padding: 15px 15px 15px 55px;
	text-indent: 0 !important;
	border-radius:5px;
	font-weight:bold;
	color: #6633CC;
	border: 2px solid #328f3c;
	background:url("../img/icon-pdf.svg");
	background-position: 10px center;
	background-size: 40px;
	background-repeat: no-repeat;
}

.pdf-btn:hover {
	background:#328f3c url("../img/icon-pdf.svg");
	background-position: 10px center;
	background-size: 40px;
	background-repeat: no-repeat;
	color:#fff;
}

/* ※付きリスト
 =========================================== */
.reference {
	list-style:none;

}

.reference li{
    text-indent: -2.8rem;
}
.reference li:before{
    content: "※";
    margin-right: 0.5rem;
	color:#F00;
}


/* 数値丸囲み
 =========================================== */
.circle-num {
	counter-reset:num;
	list-style-type: none!important;
	padding:0;
	margin:0;
}

.circle-num li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 30px;
}

.circle-num li:before {
	position: absolute;
	counter-increment: num;
	content: counter(num);
	display:inline-block;
	background:#7e7c43;
	color: #fff;
	font-weight:bold;
	font-size: 1.6rem;
	border-radius: 50%;
	left: 0;
	width: 2.4rem;
	height: 2.4rem;
	line-height: 2.4rem;
	text-align: center;
	top: 10px;
}


/* table
 =========================================== */
table {
	font-size:1.4rem;
	width:100%;
	border-collapse:collapse;
	margin-bottom:40px;
	border:1px solid #999;
}

table caption {
	font-size:1.6rem;
	font-weight:bold;
}

th {
	background: #97f383
}

tr:nth-child(odd) td {
	background: #efefef;
}

th {
	padding:15px;
	border:1px solid #999;
	text-align:left;
}

td {
	padding:15px;
	border:1px solid #999;
}

.t-mokuji th {
	text-align:center !important;
	background:#6069ed !important;
	color:#FFF !important;
}

.t-yakuin th {
	color:#333;
	width:50%;
}


/* 見出し
 ========================================================================== */
section h1 {
	text-align:center;
	color: #fff;
	line-height: 1.6;
	text-shadow: 1px 1px 2px #000, 0px 0px 5px #000, 0px 0px 5px #000, 0px 0px 5px #000, 0px 0px 5px #000;
}

section h1 span {
	display:block;
}


h1,h2,h3,h4,h5,h6 {
	font-family: 'Noto Serif JP', serif;
}


.bk-access {
	background: url("../img/bk-access01.jpg");
	background-size: cover;
	background-position: center;
}

.bk-etiquette {
	background: url("../img/bk-etiquette01.jpg");
	background-size: cover;
	background-position: center;
}

.h1-member {
	background: url("../img/h1-member.jpg");
	background-size: cover;
	background-position: center;
}



/* Sections
 ========================================================================== */

.flexbox {
	display: flex;
	-webkit-display: flex;
}

.flexbox div {
	margin: 10px 0 20px 0;
}

.fw {
	flex-wrap: wrap;
}
  
.f-sb {
	justify-content: space-between;
}

.split2 img, .split3 img {
    width: 100%;
    height: auto;
}




/* head
========================================================================== */
.head {
	width: 100%;
/*
	padding: 1px;
	background-color: rgba(255, 255, 255, 0.7);
*/
	background-color: #fff;
	z-index: 1000;
}

.head-area {
	margin: auto;
	padding: 10px 0;
}

.logo {
/*
	margin-bottom:20px;
*/
}

.logo img {
	width: 100%;
	display: block;
}


/* メインメニュー
========================================================================== */
.main-nav-wrap {
	z-index: 4;
	border-bottom: 1px solid #fff;
}

.main-nav {
	list-style: none;
	margin: 0;

}

.main-nav .single-btn {
	display: table;
	margin: auto;
	padding: 5px 22px;
	border: 2px solid #fff;
	background: #fff;
	border-radius: 50px;
	text-align: center;
	color: #000;
	font-size: 1.6rem;
/*
	font-size: 2.4rem;
*/
}

.main-nav ul {
	overflow: scroll;
	margin: 0;
	border-top: 1px solid #fff;
}

/* 以下、スクロールバーを追加 */
.main-nav ul::-webkit-scrollbar{
	height: 5px;
}
.main-nav ul::-webkit-scrollbar-track{
	background: #333;
}
.main-nav ul::-webkit-scrollbar-thumb {
	background: #999;
}

.main-nav li {
	transition: all 0.2s;
}

.main-nav li a {
	position: relative;
	display: block;
/*
	width: 100%;
	display: inline-block;
	padding: 12px;
*/
	box-sizing: border-box;
	padding: 12px 0px 12px 12px;
	text-align: center;
}

.main-nav li a::before {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translate(0%, -50%);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f105';
	font-size: 1.8rem;
	padding-right: 15px;
	color: #fff;
	margin: auto;
	line-height: 1.2;
	vertical-align: text-bottom;
	text-decoration: none;
}

.main-nav li a:hover {
	background:#424242;
}



.main-nav .nav-button-wrap,
.main-nav .open {
	display: block;
}

.main-nav .close {
	display: block;
}

.active .nav-button {
	display: flex;
	width: auto;
	position: fixed;
	top: 10px;
	right: 40px;
/*
	top: 35px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
*/
	z-index: 20;
}

/*
.active .nav-button::after {
	content:"メニューを閉じる";
	position: absolute;
	bottom: -10px;
	left: 38px;
	color: #fff;
	font-size: 22px;
	width: 220px;
}
*/

.active .nav-button strong {
	line-height: 1;
	padding: 0 0 0 30px;
}

/* 文字大きさ
========================================================================== */
.overview-btn {
	position:relative;
	box-sizing: border-box;
	display: table;
	background: rgb(125,185,232);
	background: -moz-linear-gradient(top,  rgb(125,185,232) 0%, rgb(31,101,163) 49%, rgb(30,87,153) 80%, rgb(44,45,135) 100%);
	background: -webkit-linear-gradient(top,  rgb(125,185,232) 0%,rgb(31,101,163) 49%,rgb(30,87,153) 80%,rgb(44,45,135) 100%);
	background: linear-gradient(to bottom,  rgb(125,185,232) 0%,rgb(31,101,163) 49%,rgb(30,87,153) 80%,rgb(44,45,135) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#2c2d87',GradientType=0 );
	text-align: center;
	font-weight: bold;
	color: #fff;
	border: 4px solid #fff;
	font-size: 2.0rem;
	border-radius: 20px;
	box-shadow: 3px 3px 3px #000, 3px 3px 3px #000;
/*
	font-size: 2.6rem;
	background: #204712;
	background: #2c2d87;
*/

}

.overview-btn:hover {
	opacity: 1;
	background: #4648c7;
}

.overview-btn::before {
  position: absolute;
  top: 50.8%;
  right: 12px;
  transform: translate(0%, -50%);
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f105';
  font-size: 2.0rem;
  color: #3d2879;
  margin: auto;
  line-height: 1.3;
  vertical-align: text-bottom;
  text-decoration: none;
  width: 2.6rem;
  height: 2.6rem;
  background: #fff;
  border-radius: 100%;
}

/* 文字大きさ
========================================================================== */
#fontSize {
/*
	width: 100px;
	height: 57px;
*/
	box-sizing: border-box;
	border: 1px solid #938a51;
	background: #fff;
	padding: 5px 10px;
	font-size: 16px;
	color: #938a51;
	line-height: 1;
}

#fontSize p {
	text-align: center;
	line-height: 1;
	display: block;
/*
	width: 100%;
	padding: 0;
*/
	margin: 0;
	padding: 5px;
}

#fontSize ul {
/*
	width: 100%;
*/
	margin: 0px auto;
	padding: 0;
    justify-content: space-between;
    overflow: hidden;
}

#fontSize ul li {
/*
	width: calc((100% / 2) - 5px);
	padding: 5px 0;
*/
	list-style: none;
	min-width: inherit;
	text-align: center;
	align-self: center;
	position: relative;
	cursor: pointer;
	border:1px solid #938a51;
	padding: 5px 10px;
	margin: auto 5px;
}

#fontSize .medium {
	background-color: #938a51;
	color: #fff;
}

/* トップヴィジュアル
========================================================================== */
.sl-visual {
    position:relative;
	width: 100%;
}
/*
.sl-visual-text {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
	color: #fff;
	text-shadow: 1px 1px 2px #000, 0px 0px 5px #000;
}

.sl-visual-text span {
	display: block;
	font-size: 2.0rem;
}
*/

/* content
========================================================================== */
.content {
	margin: auto;
	padding: 30px 0;
	box-sizing: border-box;
}

.content h2 {
    font-size: 3.2rem;
	text-align: center;
    margin-bottom: 30px;
	color:#7e7c43;
}
.content h2 span {
	position: relative;
	display: block;
	font-size: 1.8rem;
}
.content h2 span:before{
	position: absolute;
	top: 0;
	left: calc(50% - 120px);
	width: 240px;
	height: 1px;
	content: '';
	border-radius: 3px;
	background: #7e7c43;
  }

  .content h3 {
	text-align: center;
    margin: 45px 0 15px 0;
	padding: 5px;
	background: #eef4d2;
}

  .content h4 {
    margin: 15px 0 15px 0;
	padding: 5px;
	border-bottom:2px solid #7e7c43;
}


.cont-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* Center in the middle
========================================= */
.center-middle {
	margin:40px auto;
}


/* long-sentence
========================================= */
.long-sentence {
}


.long-sentence p {
	text-indent: 1em;
	margin-bottom: 1.5rem;
	text-align: justify;
	word-break: break-all;
}

.long-sentence img {
	display:block;
	margin:auto;
}


.long-sentence figure {
	margin: 60px auto;
}

.long-sentence figcaption {
	font-size: 1.2rem;
}
/* side-area
========================================================================== */
.side-area strong {
	display:block;
    font-size: 2.4rem;
	text-align:center;
	color:#06C;
	padding:0 15px 15px 15px;
}

.side-area ul {
	list-style:none;
	margin:0;
	border-top:3px solid #06C;
}

.side-area ul li a {
	display:block;
	padding:15px 10px;
	border-bottom:1px dashed #39F;
}

.side-area ul li a:hover {
	background:#06C;
	color:#FFFFFF;
}





/* お知らせ
========================================================================== */
.news-block {
}


.news-block ul{
	list-style:none;
	margin:0;
	border-top: solid 1px #b3b279;
}

.news-block li {
	border-bottom: solid 1px #b3b279;
	color:#333333;
	padding:5px 0;
}

.news-block .blog-date {
	padding: 10px 0px;
	font-weight: bold;
	color: #999;
}

.news-block li p {
	margin:0;
	padding:5px 0px;
}

.news-block li a {
	color:#333333;
}

.news-block li a:hover {
/*
	background: #757433;
	color:#fff;
*/
}

.news-block li time {
}

.news-block {
}

/*-- カテゴリ --*/
.categories {
}

.categories a {
	margin:5px 15px 5px 0px;
	padding:5px 10px;
	font-size:1.6rem;
}

/* sub-nav
========================================================================== */
.sub-nav {
	background: #328f3c;
	padding: 15px 0;
}

.sub-nav ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

.sub-nav ul li a {
	position: relative;
	display: block;
	text-align: center;
	color: #fff;
}


.sub-nav ul li a::before {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translate(0%, -50%);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f105';
	font-size: 2.0rem;
	padding-right: 15px;
	color: #fff;
	margin: auto;
	line-height: 1.2;
	vertical-align: text-bottom;
	text-decoration: none;
}


/* top-contact-area
========================================================================== */
.contact-box {
	background: #eee;
}

.top-contact-area {
}

.top-contact-area div {
	display: block;
	width: 100%;
	background: #b4b37b;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	padding: 16px;
	margin-bottom: 60px;
}

.top-contact-area div strong {
	display: block;
}

/*-- bottom-contact-tel-number --*/
.bctn {
	display: block;
	font-size: 3.0rem;
	font-weight: bold;
}

/*-- bottom-contact-mail-form --*/
.bcmf {
	display: table;
	background: #fff;
	padding: 14px 24px;
	margin: 10px auto 0 auto;
	border-radius: 20px;
	font-size: 2.0rem;
	color: #84863d;
}

/* googlemap
========================================================================== */
.g-map {
	margin:30px auto;
}

.g-map iframe {
    width: 100%;
    border: 2px solid #ccc;
}


/* フッタ foot
========================================================================== */
.foot {
	width: 100%;
}

.foot-bottom-area {
	background: #282828;
	text-align: center;
	color:#FFF;
}

.fba-link {
	background: #878643;
	color: #fff;
}

.fba-link dl {
	margin-top: 30px;
}

.fba-link dl a {
	display: block;
	color: #fff;
	padding: 5px;
}

.fba-link dl a:hover {
	background: #204712;
}

.fba-link dl a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f105';
	font-size: 1.8rem;
	height: 35px;
	color: #fff;
	margin: auto;
	padding-right: 15px;
	text-align: center;
	line-height: 1;
	vertical-align: baseline;
	text-decoration: none;
}

.fba-link dl dt {
	border-bottom: solid 2px #eee;
	border-left:none;
	padding:0;
	margin-bottom:1.8rem;
}

.fba-link dl dd ul {
	list-style: none;
	margin:0;
}

  .fba-link dl li {
	font-size: 1.6rem;
	border-bottom: dashed 1px #eee;
}

/* media pc print
========================================================================== */

body {
	}

	/*--汎用の幅--*/
	.some-width {
		margin: auto;
	}

	.logo {
/*
		margin: auto;
*/
		max-width: 338px;
	}


	.head-area {
		align-items: center;
		justify-content: space-between;
	}

	.head-item {
		font-size: 16px;
/*
		height: 57px;
		align-items: center;
*/
	}

	.telnumber{

	}

	.memberlogin{
		margin: 0 30px;
/*
		border-radius: 100%;
		background: #8F8351;
		padding: 5px 10px;
*/
	}


	.nav-button-wrap {
		display: block;
/*
		position: fixed;
		right: 0px;
		top: 0px;
*/
		cursor: pointer;
		padding: 15px;
/*
		background: #2b44c6;
*/
		background: #204712;
		z-index: 4;
		text-align: center;
		color: #fff;
	}

/*	
	.nav-button-wrap::after {
		content:"MENU";
        position: absolute;
        bottom: 10px;
        left: 8px;
        color: #fff;
        font-size: 14px;
	}
*/
	.main-nav {
		display: none;
	}
	.main-nav .close {
		display: none;
	}
    
	.main-nav ul li a {
		font-size: 1.5rem;
/*
		font-size: 2.0rem;
*/
		color: #fff;
        border-bottom: 1px dashed #fff;
	}

	.main-nav-wrap.open .main-nav {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		background-color: rgba(0, 0, 0, 0.9);
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: hidden;
        z-index: 5;
	}

    .main-nav-wrap.open .main-nav li {
		display: block;
		padding: 0;
		margin-bottom: 0;
	}
	.main-nav-wrap.open .main-nav li:hover {
		background: transparent;
	}
	.main-nav-wrap.open .main-nav .dropdown {
		display: block;
		position: static;
		background: transparent;
	}

	.nav-button,
	.nav-button span {
		display: inline-block;
		transition: all 0.3s;
	}

	.nav-button {
		display: none;
		z-index: 1;
		width: 25px;
		height: 19px;
		position: relative;
	}


	.nav-button span {
		position: absolute;
		left: 0;
		width: 30px;
		height: 3px;
		background-color: #fff;
		border-radius: 4px;
	}

	.main-nav .dropdown {
		margin-left:20px;
	}


	/*-- 三本線制御 --*/
	.nav-button span:nth-of-type(1) {
		top: 0;
	}

	.nav-button span:nth-of-type(2) {
		top: -4px;
/*
		top: 8px;
*/
	}

	.nav-button span:nth-of-type(3) {
		bottom: 0;
	}

	.active .nav-button span:nth-of-type(1) {
		transform: translateY(10px) rotate(-45deg);
	}

	.active .nav-button span:nth-of-type(2) {
		opacity: 0;
		padding: 16px;
	}

	.active .nav-button span:nth-of-type(3) {
		transform: translateY(-6px) rotate(45deg);
	}

	.news-block {
		margin: auto;
	}
	
	.news-block li time {
	}




/* 規定
======================================================= */
.regi-list {
	counter-reset: regi; /* 'regi' という名前のカウンターを設定し、 0 で初期化する。 */
}

.regi-list dl dt {
	font-weight:bold;
	border-left: none;
	padding-left: 0px;
}

.regi-list dl dt,
.regi-list dl dd {
	padding-top:5px;
}

.regi-list dl dt::before {
	counter-increment: regi;/* regi カウンターの値に1を加算 */
	content: "第 " counter(regi) " 条";     /* カウンター値の前後に表示 */
}

.regi-list dl dd ul,
.regi-list dl dd ol{
	margin-top:10px;
	margin-left: 4.8rem;
}

.regi-list dl dd li {
	margin-bottom:20px;
}
/* --リスト数字を漢数字-- */
.kansuu-list {
}

.kansuu-list li {
	list-style-type: cjk-ideographic;
	position: relative;
}



/* overview記事
======================================================= */

/* overviewのh1見出し
================= */
.exp-bgc {
	color: #E0CA82;
	background-color: #1f3b72;
	padding:20px 10px !important;
}

.ov-kiji-btn-area {
	display: flex;
	-webkit-display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.ov-kiji-btn-area a {
	position: relative;
/*
	width:calc(100% / 2);
	display: table;
	margin: 30px auto;
*/
	margin: 30px 10px;
	text-indent: 0 !important;
	border: 2px solid #1f3b72;
	color: #fff;
	background: #1f3b72;
}

.ov-kiji-prev {
	padding:10px 15px 10px 30px;
}

.ov-kiji-prev::before{
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translate(0%, -50%);
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f104';
  font-size: 2.0rem;
  color: #fff;
  margin: auto;
  line-height: 1.2;
  vertical-align: text-bottom;
  text-decoration: none;
}



.ov-kiji-next {
	padding:10px 30px 10px 15px;
}

.ov-kiji-next::before{
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0%, -50%);
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f105';
  font-size: 2.0rem;
  color: #fff;
  margin: auto;
  line-height: 1.2;
  vertical-align: text-bottom;
  text-decoration: none;
}



	/* 汎用トップボタン
	========================================== */
	.r-ind-btn {
		display: table;
		margin: auto;
		padding: 5px 22px;
		border: 2px solid #7e7c43;
		background: #fff;
		border-radius: 50px;
		text-align: center;
		color: #7e7c43;
	}


@media only screen and (min-width: 768px), print {
	html {
		font-size: 62.5%;
	}

	body {
		min-width: 960px;
	}

	.btn {
		text-align: center;
		padding: 15px 15px 15px 30px;
	}


	/* flexbox内のdivに使う汎用分割
	 ======================================*/
	.split2 div {
		width: calc((100% / 2) - 20px);
	}
	
	.split3 div {
		width: calc((100% / 3) - 30px);
	}


		/*--汎用の幅--*/
		.some-width {
			width: 960px;
		}

		.head-area {
			width: 960px;
		}

		.main-nav-wrap.open .main-nav {
			padding: 30px 20px 20px 20px;
		}
	
		.main-nav ul {
			max-height: 65%;
		}

		.overview-btn {
			padding: 30px 45px 30px 20px;
			margin: 40px auto 20px auto;
		}

		.news-block {
			width: 900px;
		}

		.news-block .blog-date {
			margin-right:15px;
		}

		.news-block p {
			padding: 10px 10px;
		}

		.content {
			width: 960px;
		}

	.center-middle {
		width:450px;
	}

		.long-sentence figcaption {
			text-align: right;
		}

		.sub-content {
			width: 700px;
		}
	
		.side-area {
			width: 200px;
		}


		.top-contact-area div {
			display: block;
			width: calc((100% / 2) - 30px);
			padding: 16px;
			margin-bottom: 40px;
		}

	.foot-bottom-area {
		padding-bottom: 10px;
	}

		.fba-in {
			display: flex;
			justify-content: space-between;
			padding: 15px 0 10px 0;
			margin: auto;
		}

		.fba-in a {
			color: #fff;
			border-right: 1px solid #fff;
			padding:5px 20px;
		}

		.fba-in a:hover {
			background: #eee;
			color: #000;
		}	

		.fba-link .address-area {
			width: 60%;
			margin: auto;
		}

		.fba-link dl {
			margin: 0px auto 20px auto;
		}


	/* sub-nav
	========================================== */
	.sub-nav ul {
		max-width: 960px;
		display: flex;
		flex-wrap: wrap;
		justify-content:center;
	}

	.sub-nav ul li {
		margin: auto 10px;
		padding: 0;
	}

	.sub-nav ul li a {
		padding: 5px 10px 5px 30px;
	}
	
	.g-map iframe {
		height:600px;
	}



	
	
	
/* page-top
========================================================================== */
	.page-top {
		width: 50px;
		height: 50px;
		position: fixed;
		right: 20px;
		bottom: 20px;
		background: #313131;
		color: #fff;
		text-decoration: none;
		border:1px solid #CCC;
		z-index: 10;
	}
	
	.page-top span{
		position: relative;
		display: block;
		width: 50px;
		height: 50px;
		text-align: center;
		padding-top: 21px;
		font-size: 0px;
	}
	
	.page-top span::before{
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		content: '\f106';
		font-size: 25px;
		color: #fff;
		position: absolute;
		width: 25px;
		height: 25px;
		top: 0;
		bottom: 23;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
	}
	
	
}

/*-- スマホ --*/	
@media only screen and (max-width: 768px) {
	html {
		font-size: 62.5%;
	}

	body {
		min-width: 320px;
	}


	section h1 {
		padding:45px 3%;
		font-size:2.5rem;
	}
	
	section h1 span {
		font-size:2.2rem;
	}
	
	.btn {
		padding: 10px 15px 10px 30px;
	}

	.flexbox div {
		width: 100%;
		margin: 10px auto 20px auto;
	}

	.img-over {
		width: 100%;
		height: auto;
	}
	
	/* --スマホでスクロールさせる場所-- */
	.scroll-area {
		overflow: auto;
		width: 100%;
		margin-bottom:40px;
	}

	.scroll-area::before {
		content:"横スクロールできます。→";
		color: #666;
		font-weight: bold;
		font-size: 1.4rem;
	}

	/* 以下、スクロールバーを追加 */
	.scroll-area::-webkit-scrollbar{　　
	 height: 5px;
	}
	.scroll-area::-webkit-scrollbar-track{
	 background: #333;
	}
	.scroll-area::-webkit-scrollbar-thumb {
	 background: #999;
	}

	.scroll-area table {
		table-layout: fixed;
		min-width:700px;
		margin-bottom:10px;
	}



	.logo, .head-item {
		margin: auto;
	}

	.head-item {
		display: none;
	}

	.content {
		width: 90%;
	}

	.main-nav-wrap.open .main-nav {
		padding: 25px 10px 10px 10px;
	}

	.main-nav ul {
		max-height: 65%;
	}

	.overview-btn {
		padding: 10px 42px 10px 17px;
		margin: 20px auto;
	}

	.long-sentence figcaption {
		text-align: left;
	}

	.news-block li a {
	}
	
	.news-block .blog-date {
		display: block;
		padding-top: 10px;
		margin:auto;
	}


	.top-contact-area div {
		display: block;
		width: 100%;
		padding: 16px;
		margin-bottom: 60px;
	}

	.foot-bottom-area {
		padding-bottom: 60px;
	}

	.fba-link .flexbox dl {
		width: 90%;
		margin-left: 4%;
	}

	.fba-in a {
		display: block;
		color: #fff;
		border-bottom: 1px solid #fff;
		padding:10px 0px;
	}

	.foot-logo {
		max-width: 338px !important;
	}

	/* sub-nav
	========================================== */
	.sub-nav ul {
		display:flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: auto 10px;
	}

	.sub-nav ul li {
/*
		margin: auto 10px;
*/
		width: calc(95% / 2);
		padding: 0;
	}
	
	.sub-nav ul li a {
		padding: 8px 0px 8px 10px;
		font-size: 1.5rem;;
		border-bottom: 1px dashed #fff;
		}

	.sub-nav ul li a::before {
		left: 2px;
	}

	.g-map iframe {
		height:400px;
	}

	/* page-top
	========================================================================== */
	.page-top {
		width: 100%;
		position: fixed;
		right: 0;
		bottom: 0;
		background: #313131;
		color: #fff;
		text-decoration: none;
		border:1px solid #CCC;
		z-index: 3;
	}
	
	.page-top span{
		position: relative;
		display: block;
		text-align: center;
	}
	
	.page-top span::before{
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		content: '\f106';
		font-size: 2.5rem;
		color: #fff;
		margin: auto;
		padding-right: 15px;
		text-align: center;
		line-height: 0.9;
		vertical-align: text-bottom;
	}
	
}

/*-- PC向け --*/
@media only screen and (min-width: 769px), print {
	body {
		min-width:960px;
	}

	section h1 {
		padding:60px 3%;
		font-size:3.0rem;
	}
	
	section h1 span {
		font-size:2.2rem;
	}


/* PCのメインメニュー
========================================================================== */
.pc-head {
	width: 100%;
    padding: 1px;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 1000;
}

.pc-head .flexbox div {
	margin:0 auto !important;
}

.pc-nav-wrap {
	display:block;
}

.is_stuck {
	background:#FFFFFF;
	z-index:1000;
	box-shadow: #000 0px 2px 10px;
}

.pc-nav {
	list-style: none;
/*
	display:table;
*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px auto 20px auto;
}

.is_stuck .pc-nav {
	margin: 15px auto !important;
}

.pc-nav-wrap::after {
	clear:both;
}


/*-- 仕様上必要な要素 --*/
.hreq {
	display:block;
	font-size:0px;
	line-height:0;
	color:#fff;
}
.pc-nav-wrap  br{
	height:1px;
	font-size:0;
	line-height:0;
	display:inline-block;
/*
	display:contents;
	content: "";
*/
}


.pc-nav li {
	transition: all 0.2s;
	border-right: 1px solid #63610a;
	border-left: 1px solid #63610a;
	margin-right: -1px;
/*
	float:left;
*/
}

.pc-nav li a {
	width: 100%;
	display: inline-block;
	box-sizing: border-box;

	color: #63610a;
	text-align: center;
	padding: 0px 17px;
}


.pc-nav li a:hover {
	background:#938a51;
	color:#FFFFFF !important;
}

.pc-nav .dropdown-btn {
	position: relative;
	cursor: pointer;
}

.pc-nav .dropdown-btn:hover {
}


.pc-nav .open {
	display: block !important;
}

.pc-nav .close {
	display: block !important;
}

.pc-nav .dropdown-btn {
	position: relative;
	cursor: pointer;
}

.pc-nav .dropdown-btn:hover {
}


.pc-nav .dropdown {
	width: max-content;
	z-index: 1000;
	position: absolute;
	left: 0;
	top: 3rem;
	list-style:none;
	background:#FFF;
	box-shadow:0px 0px 3px #000;
	margin: 0;
	display: none;
}

.pc-nav .dropdown li {
	float:none;
}

.pc-nav .dropdown li a {
	color:#333;
	padding: 10px;
	border-bottom: 1px dashed #39F;
}


}