@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
}

body {
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  color: #ffffff;
  background-color: #1D1300;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  vertical-align: baseline;
  /* スマホ横の時文字サイズを勝手に変更させない */
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.5px;
  line-height: 2;
}
body main {
  padding-top: 60px;
}
@media screen and (min-width: 769px) {
  body main {
    padding-top: 80px;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 30px;
  background: rgba(241, 241, 241, 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgba(227, 227, 227, 0.5);
  border-radius: 30px;
}

/* 文字選択したときの背景色を変える */
::-moz-selection {
  background: #FFF3EF;
}
::-moz-selection,
::selection,
::-moz-selection {
  background: #FFF3EF;
}

a {
  border-width: 0px;
  text-decoration: none;
  color: #ffffff;
  opacity: 1;
  transition: opacity 0.5s ease;
}
a:hover:not(.linkbtn), a:visited, a:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.5;
}

b {
  font-weight: 500;
}

p {
  text-align: justify;
  word-break: break-all;
}

.link_targetblank:after {
  content: "\f35d";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  padding-left: 5px;
  color: #6BC396;
}

.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;
}

img {
  border-width: 0px;
}

em {
  font-style: normal;
  /*IE対策*/
  font-weight: 500;
}

ul,
li,
ol {
  list-style: none;
}

div,
p,
h1,
h2,
h3,
h4 {
  margin: 0px;
  padding: 0px;
  font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "kinuta-maruminkatura-stdn", "Noto Serif JP", serif;
}

strong {
  font-weight: 600;
}

/* ------------------------------
   クリッカブルマップ(レスポンシブ対応)
-----------------------------*/
img[usemap] {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.common_hr_dot {
  border: 1px dotted #DCDCDC;
  border-radius: 100px;
  margin: 4em 0;
}

/*fadein animation */
.fadein {
  opacity: 0.1;
  transform: translate(0, 30px);
  transition: all 900ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-delay {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}

.fadein-delay-more {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}

/*fadein animation */