:root {
  --space-s: clamp(8px, 2vw, 16px);
  --space-m: clamp(16px, 4vw, 35px);
  --space-l: clamp(24px, 6vw, 64px);

  --font-s: clamp(12px, 2.5vw, 14px);
  --font-m: clamp(14px, 3vw, 16px);
  --font-ml: clamp(16px, 3.2vw, 20px);
  --font-l: clamp(18px, 3.5vw, 26px);
}

/* 表示・非表示 */
/* スマホのサイズでは非表示 */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
/* PCのサイズでは非表示 */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 共通 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #202124;
}
body h1,body h2,body h3,body li,body div,body p,body a,body dt,body dd,body th,body td {
  font-family: "UD新ゴ コンデンス90 L", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
body h1 {
  letter-spacing: 3px;
}
body h1,body h2,body h3 {
  font-weight: normal;
}
body a,body li {
  text-decoration: none;
}
body a:hover {
  color: #B08A3E;
  transition: all .3s;
}
body img {
  width: 100%;
}
body ul {
  list-style: none;
}
.align_c {
    text-align: center;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 共通パーツ ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ーーーーー ボタン ーーーーー */
a.btn_style{
  display: block;
  width: min(80vw, 230px);
  height: auto;
  padding: 0.8em 1.5em;
  font-size: var(--font-m);
  box-shadow: 2px 2px 4px rgba(32, 33, 36, 0.25);
  border: none;
  text-align: center;
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
}
a.btn_style:hover{
  opacity: 0.8;
  transition: 0/3s;
  cursor: pointer;
}
a.primary{
  background-color: #B08A3E;
  color: #202124;
}
a.secondary{
  background-color: #1B2A3A;
  color: #fff;
}
a.third{
  background-color: #CACBCC;
  color: #202124;
}
.fa-chevron-right:before {
  content: "\f054";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.fa-chevron-left:before {
  content: "\f053"; 
  position: absolute;
  left: 10px;       
  top: 50%;
  transform: translateY(-50%);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝ ヘッダー ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
header nav {
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 20px;
  text-align: center;
  background: #1B2A3A;
  width: 100%;
  z-index: 99;
  box-shadow: 0px 0px 4px rgba(27, 42, 58, 0.5);
}
header nav ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
  padding: 0;
  margin: 0;
}
header nav ul li{
  margin: 0;
  margin-left: 13px;
  margin-right: 13px;
  font-size: var(--font-m);
  white-space: nowrap;
}
header nav ul li a{
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
header nav ul li{
  margin-right: 0.8%;
}
}
@media screen and (max-width: 767px) {
header nav ul li{
  margin: 0;
  margin-left: 1%;
  margin-right: 1%;
  font-size: var(--font-m);
  white-space: inherit;
}
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ トップへ戻るボタン ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.return_top{
  text-align: center;
  background: #4A5A6A;
  color: #fff;
  padding: 9px 0;
  font-size: 14px;
  padding: 15px 42px;
}
.return_top a{
  color: #fff;
  padding-right: 5px;
}
.fa-angle-up{
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
.return_top{
  padding: 8px 42px;
}
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ フッター ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer{
  text-align: center;
  background: #1B2A3A;
  padding: 44px 0 0 0;
}
footer nav ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
  padding-bottom: 40px;
  margin: 0;
}
footer nav ul li{
  margin: 0;
  margin-left: 13px;
  margin-right: 13px;
  font-size: 16px;
  white-space: nowrap;
}
footer nav ul li a{
  color: #fff;
}
footer .copyright{
  color: #fff;
  font-size: 12px;
  padding-bottom: 15px;
}
.fa-arrow-up-right-from-square{
  padding-left: 5px;
  font-size: 14px;
}

/* common 
-------------------------------------------------------------*/
.inner_size {
	width : 1200px;
	margin: 0 auto;
	max-width: 96vw;
}
img{
	max-width: 100%;
}
/* title 
-------------------------------------------------------------*/
#title {
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: right top;
	margin-top: 23px;
}
#title .inner_size {
	position: relative;
}
#title h1 {
	position: absolute;
	left: 0;
	top : 100px;
	padding : 18px 40px;
	text-align: left;
	font-size: 32px;
	font-weight: normal;
	text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff;
}
#title h1 span {
	color: #B08A3E;
	font-size : 14px;
	display: block;
	margin-top : -5px;
	text-transform: uppercase;
	font-weight: bold;
}
/* p_list 
-------------------------------------------------------------*/
#p_list {
	background: #EAEBEB;
	padding : 2px 0;
	font-size: 14px;
}
#p_list nav.breadCrumb{
  padding: 10px 0;
}
#p_list a.home,a.taxonomy.category{
  color: #202124;
}
#p_list a.home:hover,a.taxonomy.category:hover{
  color: #B08A3E;
}

/* コンテンツ 
-------------------------------------------------------------*/
#contents .inner {
	padding : 50px 0 100px;
	width: 1024px;
	max-width: 96%;
	margin: 0 auto;
}
.inner_box{
	width: 1024px;
	margin: 0 auto;
	max-width: 96%;
	margin: 0 auto;
}
#contents .inner .text {
	font-size: 17px;
	line-height: 25px;
}
#contents .inner .text p {
	margin-bottom: 24px;
}
/* 余白
-------------------------------------------------------------*/
h2.ttl_01{
  margin-bottom: 30px;
}
#contents .b_sp {
	padding-bottom: 40px;
	margin-bottom: 60px;
}
#contents .b_sp2 {
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.sp_b_sp{
	margin-bottom: 10px;
	display: inline-block;
}
.l_sp{
	margin-left: 10px;
	margin-bottom: 10px;
	display: inline-block;
}
.clear {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: stretch;
	align-items: stretch;
}
@media screen and (max-width: 767px) {
	.clear {
		display: inherit;
	}
	.l_sp{
		margin-left: 0px;
		margin-bottom: 0px;
		display: inline-block;
	}
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝ スマホ ＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝ ハンバーガーメニュー ＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 767px) {
  .sp_header .h_menu {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  background: url(../images/h_menu.png) no-repeat center center #1f3344;
  display: block;
  z-index: 999;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.16));
  cursor: pointer;
}
  .sp_header .sp_header_nav{
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;

  transform: translateX(100%); /* ← 非表示 */
  transition: transform .6s ease;
  z-index: 999;
  }
.sp_header_nav.open {
    bottom: 0;
    padding-top: 100px;
    transform: translateX(0);
  }

.sp_header_nav.open .h_menu {
    background: url(../images/close.png) no-repeat center center #1B2A3A;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.6s;
  }
.sp_header_nav.open ul {
  display: block;
  text-align: left;
  }
.sp_header_nav.open ul li{
  border-bottom: 1px solid #1B2A3A;
  }
.sp_header_nav.open ul li:first-child{
  border-top: 1px solid #333;
  }
.sp_header_nav.open ul li a{
  color: #1B2A3A;
  font-size: 18px;
  margin: 0;
  display: block;
  padding: 16px 0;
  position: relative;
  padding-left: 5%;
}
.sp_header_nav.open ul li a.fa-chevron-right:before {
  content: "\f054";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝ スマホ用フッター ＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.sp_footer nav ul {
  display: block;
  padding: 30px 0; 
}
.sp_footer nav ul li{
  margin: 0px 18px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
  .sp_footer nav ul li:first-child{
  border-top: 1px solid #ddd;
  }
  .sp_footer nav ul li a{
  display: inline-block;
  padding: 13px 0px;
  font-size: 16px;
  display: block;
  position: relative;
  padding-left: 5%;
}
  .sp_footer  nav ul li a.fa-chevron-right:before {
  content: "\f054";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
  footer {
    padding-top: 12px;
  }
  footer div.copyright {
    font-size: 10px;
  }
}
