@charset "UTF-8";
/* CSS Document */

/* 文字 */

.moji_s {
		font-size: 0.7rem;
		line-height: 0.9rem;
		color:#666;
}
.moji_m {
		font-size: 1.0rem;
		line-height: 1.9rem;
		color:#666;
}
.moji_l {
		font-size: 2.3rem;
		line-height: 2.5rem;
		color:#666;
}
.moji_green_l {
		font-size: 1.6rem;
		line-height: 2.0rem;
		color:#91a76d;
}

.moji_green_xl {
		font-size: 1.8rem;
		line-height: 2.3rem;
		color:#91a76d;
}


.tittle {
		font-size: 1.3rem;
		line-height: 3.0rem;
		color:#039;
	font-family: "Noto Serif JP", sans-serif;
}
a.no-color-change:link,
a.no-color-change:visited,
a.no-color-change:hover,
a.no-color-change:active {
  color: ;
}
p {
   text-align: justify;
}
/* 文字ココまで */
/* 見出し */
.btn--orange,
h2 {
	color: #09F;
  border-bottom: 3px solid #09F;
  	font-family: "Noto Serif JP", sans-serif;
}
h3 {
	color: #FFFFFF;
  border-bottom: 1.5px solid #FFFFFF;
  		font-size: 1.8rem;
  	font-family: "Noto Serif JP", sans-serif;
}
/* 見出しココまで */

.resizeimage img { width: 100%; }

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp {
	display: block !important;
	color: #d7e7ae;
}
}
@media screen and (min-width: 640px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 640px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}


/* ↓縦に積むテーブル↓ */
p {
  font-weight: nomal;
}
table {
  margin: 0px auto;
}
.tbl-r02 th {
}
.tbl-r02 td {
}
 
@media screen and (max-width: 450px) {
  .last td:last-child {
    width: 100%;
  }
  .tbl-r02 {
    width: 100%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
　　border-bottom: none;
    display: block;
  }
}
 /* ↑縦に積むテーブル↑ */

/* ↓幅替テーブル↓ */
 table.sample {
   display: block;
   border: none;
}
table.sample tr {
   display: inline;
}
table.sample td {
   display: inline-block;
   margin-bottom: 10px;
}
 /* ↑幅替テーブル↑ */


header{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}


/* ↓ハンバーガーメニュー↓ */
header {
  padding:10px;
  background: #d7e7ae;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 10px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;/*最大幅（お好みで調整を）*/
  height: 100%;
  background: #fff;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  text-align:left;
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.header-logo-menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-area{text-align:center;margin:auto;}
 /* ↑ハンバーガーメニュー↑ */
 
 /* ↓モーダルウィンドウ↓ */
 .modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center;
}
#img1:not(:target) + .modal-wrapper {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
#img1:target + .modal-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  padding: 5px 5px 5px;
  border-radius: 2px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

 /* ↑モーダルウィンドウ↑ */
 
  /* ↓TOPへもどるル↓ */
#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #91a76d;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #91a76d;
}
 /* ↑TOPへもどる↑ */


