﻿@charset "utf-8";
/*------- reset ------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}
html, body {
  overflow-x: hidden;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
}
ruby rt {
  font-size: .6em;
}

img, picture {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}
/*--------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #FFFFFF;
   font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
  vertical-align: baseline;
  font-size: clamp(14px, 1.2vw, 16.5px);
  line-height: 2;
  letter-spacing: 0.05em;
	font-feature-settings: "palt";
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: #A2BE7A;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
/* 文字選択したときの背景色を変える */ ::-moz-selection {
  background: #D7D7D7;
}
::selection {
  background: #D7D7D7;
}
::-moz-selection {
  background: #D7D7D7;
}
a:hover:not(.linkbtn) {
  color: #7FA44A;
  text-decoration: none;
}
a {
  border-width: 0px;
  color: #7FA44A;
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
b {
  /*	color: rgb(42,47,136);*/
  font-weight: 500;
}
p {
  text-align: justify;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  p {
    text-align: left;
  }
  .col_mark_circle li, .col_mark_number li {
    text-align: left !important;
  }
}
strong {
  font-size: 1.1em;
  border-bottom: 5px double #ff838b;
}
.link_targetblank:after {
  content: "\f35d";
  font-weight: 800;
  font-family: "Font Awesome 5 Free";
  padding-left: 5px;
  color: #8A8A8A;
}
.link_pdf:after {
  content: "\f1c1";
  font-weight: 400;
  font-family: "Font Awesome 5 Free";
  padding-left: 5px;
  color: #BD2E30;
}
.link_excel:after {
  content: "\f1c3";
  font-weight: 400;
  font-family: "Font Awesome 5 Free";
  padding-left: 5px;
  color: #337F47;
}
.link_word:after {
  content: "\f1c2";
  font-weight: 400;
  font-family: "Font Awesome 5 Free";
  padding-left: 5px;
  color: #4065B0;
}
/* フロートの解除　clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix:before {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  display: block;
}
.center {
  text-align: center;
  margin: 0 auto;
}
.right {
  text-align: right;
  margin: 0 0 0 auto;
}
.bold {
  font-weight: bold;
}
.hr {
  margin: 4em auto;
  border: 1px solid #D4D4D4;
}

/* ------------------------------
   表示
-----------------------------*/
.sp-on {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-on {
    display: none;
  }
}
.pc-on {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-on {
    display: none;
  }
}
/* ------------------------------
   スライドアップ
-----------------------------*/
.js-slide-up {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.7s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-slide-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .js-slide-up {
    transform: translateY(50px);
  }
}