@charset "UTF-8";

/* ===============
基本ベース + bootstrap追加項目
================== */

/* resetCSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, button, input, output, textarea, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: bottom;
	list-style-type: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;}
br { margin: 0 !important;}
ol, ul { list-style: none;}
blockquote, q {	quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;}
table {
	border-collapse: collapse;
	border-spacing: 0;}
strong { font-weight: bold;}

a:hover { text-decoration: none;}


/* https://haniwaman.com/noto-sans-japanese/ NotoSans サブセット化 */
@font-face {
  font-family: "nsjpr";
  font-style: normal;
  font-weight: 400;
  src: url("../../font/nsjpr.woff") format("woff");}
@font-face {
  font-family: "nsjbo";
  font-style: normal;
  font-weight: 700;
  src: url("../../font/nsjbo.woff") format("woff");}
@font-face {
  font-family: "nsjpbl";
  font-style: normal;
  font-weight: 900;
  src: url("../../font/nsjbl.woff") format("woff");}

.fa, .fab, .fal, .far, .fas {
  line-height: inherit;}


/* スライダー用 */
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  margin: auto;  
}

/* スクロールダウン */
.main_img { position: relative;}
.scrolldown {
  display: inline-block;
  position: absolute;
  left: 20px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 70px;
  overflow: hidden;
  color: #fff;
  font-size: 10px;
  font-weight: 100;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;}
@media (min-width: 768px) {
.scrolldown {
  left: 50%;}
}
.scrolldown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: #fff;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* レスポンシブ対応 */
html { font-size: 62.5%;}
img { max-width: 100%; height: auto; flex-shrink: 0;}
.row { align-items: flex-start;}


/* pcのみ・spのみ・タブレットtab以上 改行 */
@media (max-width: 576px){   
  .pc_only { display:none; }
  .tab_only { display:none; }
  .sp_only { display:block; }}
@media (min-width: 577px){
  .pc_only { display:none; }
  .tab_only { display:block; }
  .sp_only { display:none; }}
@media (min-width: 768px) {
  .pc_only { display:block; }
  .tab_only { display:block; }
	footer   .tab_only { display:none; }
  .sp_only { display:none; }}


/* footer　常に最下部に固定 */
body,
#wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;}
footer { margin-top: auto;}
footer { margin-top: -134px; }


/* -- パンくずリスト（カスタマイズはstyle.cssを使う） -- */
.breadcrumb {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: rgba(0,0,0,0.00);
  border-radius: 0;}
.breadcrumb li {
  font-size: 14px;
  font-weight: bold;}
.breadcrumb li:after {
  content: '>';
  color: #888;
  font-weight: bold;
  padding: 0 0.2em;}
.breadcrumb li:last-child:after {
  content: '';}
.breadcrumb li a {
  display: inline-block;
  text-decoration: none;}
.breadcrumb li a:hover {
  text-decoration: underline;}
.breadcrumb .fas {
  vertical-align: middle;
  line-height: 0;}





/* Bootstrap  + ---------------------------------------------------- */
.mb-1 { margin-bottom: 1rem!important;}	/* マージン修正 */
.mb-2 { margin-bottom: 2rem!important;}
.mb-3 { margin-bottom: 3rem!important;}
.mb-4 { margin-bottom: 4rem!important;}
.mb-5 { margin-bottom: 5rem!important;}
.mb-6 { margin-bottom: 6rem;}
.mb-7 {	margin-bottom: 7rem;}
.mb-8 {	margin-bottom: 8rem;}
.mb-9 {	margin-bottom: 9rem;}
.mb-10 { margin-bottom: 10rem;}
.mb-15 { margin-bottom: 15rem;}
.pb-1 {	padding-bottom: 1rem!important;}	/* パディング修正 */
.pb-2 {	padding-bottom: 2rem!important;}
.pb-3 {	padding-bottom: 3rem!important;}
.pb-4 {	padding-bottom: 4rem!important;}
.pb-5 {	padding-bottom: 5rem!important;}
.pb-6 {	padding-bottom: 6rem;}	
.pb-7 {	padding-bottom: 7rem;}
.pb-8 {	padding-bottom: 8rem;}
.pb-9 {	padding-bottom: 9rem;}
.pB-10 { padding-bottom: 10rem;}
.lh-1 { line-height: 1em;}	/* 行間追加 */
.lh-2 { line-height: 2em;}
.lh-3 { line-height: 3em;}
.lh-4 { line-height: 4em;}
.lh-5 { line-height: 5em;}
.m-0a { margin: 0 auto;}				/* 左右センター揃え */
.max-w100 {max-width: 100%;}		/* max-width: 100% */
.max-h100 {max-height: 100%;}		/* max-height: 100% */
.bob-0 { border-bottom: none;}	/* アンダーライン消去 */
.letter-sp005 {letter-spacing: 0.05;}	/* 文字間を広げる */
.letter-sp01 {letter-spacing: 0.1;}
.letter-sp0 {letter-spacing: 0;}
.btn-hover {										/* ホバー　無透過 → 透過 */
  cursor: pointer;
  display: block;}
.btn-hover:hover {
  transition: 0.5s;
	opacity: 0.75;}
.btn-hover_op {										/* ホバー　透過 → 無透過（外に背景色を設定） */
	cursor: pointer;
	display: block;
  opacity: .6;}
.btn-hover_op:hover {
  transition: 0.5s;
  opacity: 1;}

.card {display: block;}
.card-img-top {
max-width: 100%;
flex-shrink:0;}

.txt_just01 {
    text-align: justify;}
.txt_just02 {
	letter-spacing: 0;
    text-align: justify;}





