@charset "utf-8";
/* CSS Document */
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
base_format.cssと合わせて使用。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/*
==================================
Wrapper
テキストは基本、明朝(セリフ)を使用
==================================
*/
main {
  background: #333;
  color: #fff;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#Contents_wrap {
  width: 830px;
  margin: 20px auto 0;
}
/*
==================================
SNS
==================================
*/
ul.sns-area {
  float: right;
  list-style-type: none;
}
ul.sns-area li {
  display: inline-block;
}
/*
==================================
Breadcrumb
==================================
*/
.breadcrumb {
  float: left;
  width: 100%;
  margin-top: 3.9rem;
	box-sizing: border-box;
	padding-left: 2.6rem;
	font-family:"Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.breadcrumb li {
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 1em;
}
.breadcrumb li::before {
  content: ">>";
}
.breadcrumb li a {
  color: #009245;
}
/*
==================================
Link
==================================
*/
main a {
	color: #69d48c;
}
/*
==================================
Heading
見出しのデザイン違い
==================================
*/
.heading-00 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: .5em .7em;
  color: #fff;
  box-sizing: border-box;
  font-size: 3.0rem;
}
.heading-00::before {
  display: inline-block;
  width: 10px;
  height: 1.5em;
  margin-right: .5em;
  background-color: #009245;
  content: '';
}
.heading01 {
  font-size: 2.6rem;
  box-sizing: border-box;
  width: 100%;
  padding: 0 5%;
  float: left;
}
.heading01 span {
  display: flex;
  align-items: center;
  color: #009245;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.heading01 span::before {
  content: '';
  display: inline-block;
  margin-right: 20px;
  width: 40px;
  height: 1px;
  background-color: #009245;
}
.heading02 {
	position: relative;
	font-size: 2.6rem;
	box-sizing: border-box;
  width: 100%;
	float: left;
  padding: 0 5%;
}
.heading02::before {
	content: attr(data-number);
	display: block;
	font-size: 3.0rem;
}
.heading02::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 1px;
}
.sub_heading01 {
  width: 80%;
  margin: 10px 10%;
	padding-bottom: 0.3em;
  float: left;
  font-size: 2.0rem;
}
.sub_heading02 {
  width: 80%;
  margin: 10px 10%;
	padding-bottom: 0.3em;
  float: left;
  font-size: 1.6rem;
}
.bcolor_Gold {
	border-bottom: solid 1px #d8be39;
}
.bcolor_LGreen {
	border-bottom: solid 1px #69d48c;
}
.color_Gold::before {
	color: #d8be39;
}
.color_Gold::after {
	background-color: #d8be39;
}
.color_LGreen::before {
	color: #69d48c;
}
.color_LGreen::after {
	background-color: #69d48c;
}
/*
==================================
table of contents
スペック目次(アコーディオン型)
==================================
*/
.toc-001 {
  background-color: #333;
  width: 100%;
  float: left;
}
.toc-001 div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
}
.toc-001 label::after {
    margin-left: 7px;
    font-weight: 500;
    font-size: .7em;
    color: #fff;
    content: "[開く]";
    cursor: pointer;
}
.toc-001:has(:checked) label::after {
    content: "[閉じる]";
}

.toc-001 input {
    display: none;
}
.toc-001 ol {
  counter-reset: tocnum;
  margin: 0;
  overflow: hidden;
  font-size: 1.8rem;
}
.toc-001 > ol {
    height: 0;
}
.toc-001:has(:checked) > ol {
  box-sizing: border-box;
	height: auto;
  padding: 1em 6em 1em 6em;
}
.toc-001 li {
  padding: 30px 0 30px;
  font-weight: 600;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 2px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0) 4px);
  background-size: 4px 4px;
  background-repeat: repeat-x;
  background-position: center bottom;
}
.toc-001 li::before {
  counter-increment: tocnum;
  content: "0"counter(tocnum);
  font-weight: normal;
  font-size: 0.7em;
  margin-right: 1em;
}
.toc-001 a {
  color: #fff;
  text-decoration: none;
}
/*
==================================
Text
コンテンツ内のテキストレイアウト・装飾
==================================
*/
.Part_txt {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem 10%;
  line-height: 2.0;
}
.info_r {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-top: 0.5em;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 0.9em;
  font-weight: bold;
}
.copy {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.notes {
  font-size: 0.8em;
  font-weight: bold;
}
.strong {
	font-weight: bold;
}
.font_Gre {
	color: #009245;
}
.font_Gold {
	color: #d8be39;
}
.font_LGreen {
	color: #69d48c;
}
.edfc_list dd{
	margin-left: 0;
	font-size: 1.4rem;
}
.edfc_list dd ul li {
	display: inline-block;
	border: solid 2px #009245;
	margin-top: 1em;
	margin-right: 0.5em;
	padding: 0.5em;
	border-radius: 4px;
}

/*
==================================
Image
コンテンツ内の画像レイアウト
==================================
*/
.hero_img {
  width: 100%;
  float: left;
  margin: 5rem 0 5rem;
  display: flex;
  justify-content: center;
}
.Part_img_nocaption {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem 10%;
  display: flex;
  justify-content: space-around;
}
.Part_img_caption {
	float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem 10%;
	display: flex;
  justify-content: space-around;
}
.Part_img_caption dd {
	margin-left: 0;
	font-size: 1.3rem;
	text-align: center;
	padding-top: 0.5em;
}
img.logo_effect {
	filter: invert(100%);
}
img.logo_effect:hover {
	filter: brightness(0) saturate(100%) invert(34%) sepia(43%) saturate(5750%) hue-rotate(138deg) brightness(91%) contrast(101%);
}
/*
==================================
Image & Text
画像とテキストを横並びに配置したいとき
==================================
*/
.Part_Img_and_Txt {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem 10%;
  line-height: 2.0;
}
.Part_Img_and_Txt .Left-s {
  width: 45%;
  box-sizing: border-box;
  padding-right: 1em;
  float: left;
}
.Part_Img_and_Txt .Right-s {
  float: left;
  width: 55%;
  box-sizing: border-box;
}
/*
==================================
Image & Text
画像の上にテキストを配置したいとき
==================================
*/
.Part_txt_on_img {
	box-sizing: border-box;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
	float: left;
}
.Part_txt_on_img img {
	border: solid 1px #009245;
}
.Part_txt_on_img dl {
	width: 300px;
	position: absolute;
	top: 0.5em;
	left: 160px;
}
.Part_txt_on_img dd {
	margin-left: 0;
	font-size: 1.4rem;
}
.Part_txt_above_img {
	box-sizing: border-box;
	margin-left: 80px;
	margin-right: 80px;
	float: left;
}
.Part_txt_above_img dl {
	border: solid 1px #009245;
	box-sizing: border-box;
	padding: 1em;
}
.Part_txt_above_img dd {
	margin-left: 0;
	margin-top: 0.5em;
}
.Part_txt_above_img dd p {
	text-align: center;
}
/*
==================================
Button
==================================
*/
.button01 {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
}
.button01 a {
  color: #fff;
}
.button01 li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  margin-top: -4px;
  top: 50%;
  left: 100px;
}
.button01 li {
  border: solid 1px #fff;
  border-radius: 50px;
  padding: 16px 110px 16px 140px;
  text-align: center;
  position: relative;
  float: left;
}
/*
==================================
Space
スペースを確保したい要素にクラスとして追加
==================================
*/
.Base_space {
  margin-bottom: 4rem;
}
.Short_space {
	margin-bottom: 0.5em;
}
.Middle_space {
	margin-bottom: 2em;
}