@charset "utf-8";

/* ----------------------------------------------------
  ローディング
---------------------------------------------------- */
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.start {
  background: #fffcf5;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}
.start img {
  max-width: 200px;
  min-width: 200px;
  height: auto;
}

/* 小さいスマホ用 */
@media only screen and (max-width: 480px) {
  .start img {
    width: 150px;
    max-width: none;
  }
}

.start p {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  display: none;
  z-index: 9999;
}
.loading {
  color: #a9cd1a;
  position: fixed;
  font-weight: 600;
  top: 69%;
  transform: translate(-50%,-50%);
  display: none;
  z-index: 9999;
  left: 50%;
  font-size: 28px;
}
.loading span {
  display: inline-block;
  margin: 0 -.075em 50px;
  animation: loading .7s infinite alternate;
}
.loading span:nth-child(2) {animation-delay: .1s;}
.loading span:nth-child(3) {animation-delay: .2s;}
.loading span:nth-child(4) {animation-delay: .3s;}
.loading span:nth-child(5) {animation-delay: .4s;}
.loading span:nth-child(6) {animation-delay: .5s;}
.loading span:nth-child(7) {animation-delay: .6s;}

@keyframes loading {
  0% { transform: scale(1); }
  100% { transform: scale(0.8); }
}


/* ----------------------------------------------------
  information
---------------------------------------------------- */
#information-box{
	background: #fffcf5;
  border-radius: 10px;
  padding:15px 20px;
}
@media print, screen and (min-width: 768px) {
#information-box{
  padding: 30px;
  }
}
@media print, screen and (min-width: 992px) {
#information-box{
  padding: 75px;
  }
}

@media only screen and (max-width: 767px) {
#information-box .btn02{margin-bottom: 10px;}
}

/* information-area_01
--------------------------- */
#information-area_01{
	height: 350px;
	overflow: scroll;
	overflow-x: hidden;
}
@media print, screen and (min-width: 768px)  {
#information-area_01{
  height: 440px;
  }
}
@media print, screen and (min-width: 1200px) {
#information-area_01{
  height: 440px;
  }
}

#information-area_01::-webkit-scrollbar {
  width: 12px !important;
}
#information-area_01::-webkit-scrollbar-track {
  background: #999 !important;
  border-radius: 100px !important;
}
#information-area_01::-webkit-scrollbar-thumb {
  background: #999 !important;
  border-radius: 100px !important;
}
#information-area_01 {
  scrollbar-width: thin;
  scrollbar-color: #999 #f1f1f1;
}


/* information-area_02
--------------------------- */
#information-area_02{
	height: 1200px;
	overflow: scroll;
	overflow-x: hidden;
}
@media print, screen and (min-width: 768px)  {
#information-area_02{
  height: 1500px;
  }
}
@media print, screen and (min-width: 1200px) {
#information-area_02{
  height: 2000px;
  }
}

#information-area_02::-webkit-scrollbar {
  width: 12px !important;
}
#information-area_02::-webkit-scrollbar-track {
  background: #999 !important;
  border-radius: 100px !important;
}
#information-area_02::-webkit-scrollbar-thumb {
  background: #999 !important;
  border-radius: 100px !important;
}
#information-area_02 {
  scrollbar-width: thin;
  scrollbar-color: #999 #f1f1f1;
}

.news_table_02{
	width:98%;
	border-collapse: collapse;
	position: relative;
  font-size: 14px;
  line-height: 24px;
}
@media print, screen and (min-width: 992px) {
.news_table_02{
  font-size: 16px;
  line-height: 26px;  
  }
}


.news_table_02 tr{
  border-bottom: 1px solid #ebe1d6;
}
.news_table_02 th{
	padding:15px 0 0 0;
	display: block;
	font-weight: normal;
	text-align: left;
	letter-spacing: 0.1em;
}
.news_table_02 td{
	padding:0 0 20px 0;
	display: block;
	text-align: left;
}

@media print, screen and (min-width: 992px) {
.news_table_02 th{
	width: 200px;
	padding:20px 0 25px 0;
	vertical-align:top;
	display:table-cell;
	}
.news_table_02 td{
	padding:20px 0 25px 0;
	vertical-align:top;
	display:table-cell;
	}
}
@media print, screen and (min-width: 1200px) {
.news_table_02 th{
	width: 220px;
	}
}

.news_table_02 .new{
	color: #7dc94c;
	font-size: 13px;
	margin-left: 10px;
}
.news_table_02 .maru_photo{
  border-radius: 10px;
}

.news_table_02 .news_title{
  font-size: 16px;
  margin-bottom: 0px;
}
@media print, screen and (min-width: 992px) {
.news_table_02 .news_title{
  font-size: 21px;
  margin-bottom: 4px;
  }
}

.news_table_02 a:link {
  margin-top: 10px;
  display: block;
  width: 100%;
  padding: 15px 5px;
  text-align: center;
  letter-spacing: 2px;
  color: #fff !important;
  background: #7dc94c;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.news_table_02 a:visited {
  color: #fff !important;
}
.news_table_02 a:hover,
.news_table_02 a:active {
  color: #fff !important;
  background: #319306;  
  text-decoration: none !important;
}


/* ----------------------------------------------------
  スクロールヒント用
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .table_wrap {
    width: 100%;
    margin-inline: auto;
    overflow-x: auto;
    overflow-y: hidden !important;
    box-sizing: border-box;
    max-height: none;
  }

.table_wrap::-webkit-scrollbar {
  height: 8px; /* 少し控えめに */
}
.table_wrap::-webkit-scrollbar-track {
  background-color: #E2E2E2;
}
.table_wrap::-webkit-scrollbar-thumb {
  background-color: #aaa;
}
  
}

@media print, screen and (min-width: 768px) {
  .table_wrap {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
}

/* ----------------------------------------------------
  スクロール中身の横幅制御
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .table_hint {
    min-width: 600px; /* width→min-widthに変更が重要 */
    margin: 0 auto;
  }

  .table_hint_02 {
    min-width: 400px;
    margin: 0 auto;
  }
}

@media print, screen and (min-width: 768px) {
  .table_hint,
  .table_hint_02 {
    width: 100%;
    min-width: 0; /* リセット */
  }
}


/* ----------------------------------------------------
	 カテゴリー
---------------------------------------------------- */
/* 共通余白　必須class
--------------------------- */
.tenkai_ctrg{
  padding:0 0 20px 0;
}

@media print, screen and (min-width: 1200px) {
.tenkai_ctrg{
    padding:0 0 30px 0;
  }
}

/* アコーディオン基本
--------------------------- */
.tenkai_ctrg .accordion dt{
  display:block;
  width:100%;
  padding:15px 20px;
  font-weight:normal;
  color:#fff;
  background:#7dc94c;/* 背景　メインカラー */
  cursor:pointer;
}

.tenkai_ctrg .accordion dd{
  display:none;
}

.tenkai_ctrg .accordion dd ul{
  list-style:none;
  padding:0;
  margin:0;
}

.tenkai_ctrg .accordion dd li a{
  display:block;
  padding:15px 40px 15px 20px;
  border-top:1px solid #eee;
  transition:.3s;
  position:relative;
}

/* 縦メニュー　角丸
--------------------------- */
@media only screen and (max-width: 767px) {
.tenkai_ctrg .accordion dt{
  border-radius:10px 10px 0 0;
  }
.tenkai_ctrg .accordion dd li:last-child a{
  border-radius:0 0 10px 10px;
  border-bottom:none;
  }
}

@media print, screen and (min-width: 768px) {
.tenkai_ctrg--b .accordion dd li:first-child a{
  border-radius:10px 10px 0 0;
  }
.tenkai_ctrg--b .accordion dd li:last-child a{
  border-radius:0 0 10px 10px;
  }
}

/* リンク
--------------------------- */
.tenkai_ctrg .accordion dd li a:link,
.tenkai_ctrg .accordion dd li a:visited{
  color:#735a5a;
  background:#fff;
}

.tenkai_ctrg .accordion dd li a:hover{
  color:#fff;
  background:#7dc94c;  
}

/* アイコン
--------------------------- */
.tenkai_ctrg .accordionIcon{
  position:relative;
  float:right;
  width:24px;
  height:24px;
}

.tenkai_ctrg .accordionIcon span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#fff;
  transition:.4s;
}

.tenkai_ctrg .accordionIcon span:nth-of-type(1){top:0;}
.tenkai_ctrg .accordionIcon span:nth-of-type(2){top:11px;}
.tenkai_ctrg .accordionIcon span:nth-of-type(3){bottom:0;}

.tenkai_ctrg .active .accordionIcon span:nth-of-type(1){
  transform:translateY(11px) rotate(-315deg);
}

.tenkai_ctrg .active .accordionIcon span:nth-of-type(2){
  opacity:0;
}

.tenkai_ctrg .active .accordionIcon span:nth-of-type(3){
  transform:translateY(-11px) rotate(315deg);
}

/* 現在選択中のカテゴリ
--------------------------- */
@media only screen and (max-width: 767px) {
.tenkai_ctrg .navon{
  background:#eee !important;
  color:#735a5a !important;
  }
}

@media print, screen and (min-width: 768px) {
.tenkai_ctrg .navon{
  background:#7dc94c !important; /* 選択中　背景色 */
  color:#fff !important;
  }
}

/* ----------------------------------------------------
   カテゴリ Aタイプ（横並びボタン）
---------------------------------------------------- */

@media print, screen and (min-width: 768px) {
.tenkai_ctrg--a .accordion dd{
  display:block;
  }

.tenkai_ctrg--a .accordion dd ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  }

.tenkai_ctrg--a .accordion dd li{
  width:auto;
  }

.tenkai_ctrg--a .accordion dd li a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 20px;
  border-radius:100px;
  border:1px solid #222;
  background:#fff;
  white-space:nowrap;
  }
}

@media print, screen and (min-width: 992px) {
.tenkai_ctrg--a .accordion dd ul{
  gap:20px;
  }
}

.new{
  font-size: 14px;
  color: #7dc94c;
  padding-left: 10px;
}

/* ----------------------------------------------------
  よくある質問
---------------------------------------------------- */
.accordion_area .accordion_one .ac_header {
  background-color: #fcfcfc;
  padding: 20px 50px 20px 20px;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
/*  border:1px solid #222;*/
}

@media print, screen and (min-width: 768px) {
.accordion_area .accordion_one .ac_header {
  padding: 20px 50px 20px 20px;
  position: relative;
  }
}

.accordion_area .accordion_one1:nth-child(odd) .ac_header {background-color: #e9f1ce;}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

@media print, screen and (min-width: 768px) {
.accordion_area .accordion_one .ac_header .i_box {
  right: 2rem;
  }
}

.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #222;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #222;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}

.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 20px 20px 20px 20px;
  border-left: 1px solid #c6d8d6;
  border-right: 1px solid #c6d8d6;
  border-bottom: 1px solid #c6d8d6;
  box-sizing: border-box;
  background: #fff;
}

/* faq
---------------------------------------------------- */
.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  top:-1px;  
  left: 0;
  content: "Q．";
  color: #7dc94c;
  font-weight: bold;
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner::before {
  position: absolute;
  top:5px;
  left: 0;
  content: "A．";
  color: #7dc94c;
  font-weight: bold;
}

/* faq
----------------------------- */
.p-faq__headinner_02 {
  display: block;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner_02 {
  display: block;
  position: relative;
  line-height: 1.5;
}
