﻿/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@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;
  scroll-behavior: smooth;
  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;
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  text-wrap: balance;
  margin: 0;
  padding: 0;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}
img, picture {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 6ex;
}
@media (max-width : 1199px) {
  :target {
    scroll-margin-block: 7ex;
  }
}
/*--------------------*/
body {
  margin: 0px;
  padding: 0px;
  font-family: "Zen Maru Gothic", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  vertical-align: baseline;
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.125rem);
  letter-spacing: 0.02em;
  line-height: 1.8;
  /* max-width: clamp(320px, 90%, 1300px);*/
  margin: auto;
}
::-webkit-scrollbar {
  width: 8px;
  /* display: none; */
}
::-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: #d7eefc;
}
/* 文字選択したときの背景色を変える */ ::-moz-selection {
  background: #E1E7E8;
}
::selection {
  background: #D7D7D7;
}
::-moz-selection {
  background: #D7D7D7;
}
a:hover:not(.linkbtn) {
  color: #6ba5e3;
  text-decoration: none;
}
a {
  border-width: 0px;
  color: #6ba5e3;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a:visited {
  text-decoration: underline;
}
a:hover {
  text-decoration: underline;
}
b {
  /*	color: rgb(42,47,136);*/
  font-weight: 500;
}
p {
  text-align: justify;
  margin-bottom: 1em;
}
strong {
  /* font-size: 1.1em; */
  /* border-bottom: 5px double #ff838b; */
}
.link_targetblank:after {
  content: "\f35d";
  font-size: .8em;
  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;
}
.left{
	text-align: left;
	margin: auto 0 0 0;
}
.bold {
  font-weight: 500;
}
.small {
  font-size: .8em;
}
/* ------------------------------
   クリッカブルマップ(レスポンシブ対応)
-----------------------------*/
/*img[usemap] {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}*/
/* ------------------------------
   SPorPC時のみ表示
-----------------------------*/
.only_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .only_pc {
    display: none;
  }
}
.only_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .only_sp {
    display: block;
  }
}