@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
/* ///////////// 共通項目 /////////////*/
html{
  font-size: 100%; /* ///// 16px ///// */
  box-sizing: border-box;
  scroll-behavior: smooth;
}
@media (min-width: 240px) and (max-width: 767.98px){
html{
  font-size: 87.5%; /* ///// 14px ///// */
}
}
@media (min-width: 768px) and (max-width: 991.98px){
html{
  font-size: 75%; /* ///// 12px ///// */
}
}
@media (min-width: 992px) and (max-width: 1199.98px){
html{
    font-size: 87.5%; /* ///// 14px ///// */
}
}
p {
  text-align: center;
}
body{
  background-color: #FFFFFF;
}
h4{
  font-size: 1.2rem;
  text-align: left;
}
.text{
  font-size: 0.9rem;
  text-align: left;
}
@media (max-width:992px){
.text{
  font-size: 1.1rem;
}
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a{
  color: #000000;
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}
/*////// タブレットサイズ以下では.noneで非表示 ////////*/
@media screen and (max-width: 768px){
.none {display:none}
}
/*////// スクロールトップ部分 ////////*/
.pagetop {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
}
.pagetop a {
    display: block;
    background:#006600;
    opacity: 0.7;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
    filter:alpha(opacity=50);
    width:80px;
    height:80px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;    /* 横幅&高さの1/2 */
    position: relative;
}
.pagetop a span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#top .pagetop a:hover {
    display: block;
    background-color: #222;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    filter:alpha(opacity=50);
}
/* /////////// 共通部分項目 ///////////*/
/* ///////////// wrapper /////////////*/
#wrapper{
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.subwrapper{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
/* ///////////// header /////////////*/
header{
  width: 100%;
  margin: 10px auto;
  position: absolute;
  background-color: #FFFFFF;
  border-bottom: 1px solid #A8A8A8;
}
#innerheader{
  width: 100%;
  margin: 0 auto;
  max-width: 1120px;
}
.nav-item a {
  position: relative;
  transition: .3s;
}
a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background-color: rgb(00,102,204,0.7);
  transition: .3s;
}
.nav-item a:hover{
  color: #0066CC!important;
}
.nav-item a:hover::after {
  width: 100%;
}
@media (min-width:1200px){
.navbar{
  padding-right: 0;
  padding-left: 0;
}
.navbar-brand{
  width: 30%!important;
}
}
@media (min-width: 998px){
.navbar-brand{
  width: 30%!important;
}
}
@media (min-width: 840px) and (max-width: 997.98px){
.navbar-brand{
  width: 38%!important;
}
}
@media (min-width: 320px) and (max-width: 839.98px){
.navbar-brand{
  width: 60%!important;
}
}
@media (min-width: 320px) and (max-width: 991.98px){
li.nav-item{
  border-bottom: dotted 1px #888888;
  font-size: 1.2rem;
  color: #202020;
}
li.nav-item:last-child{
  border-bottom: none;
}
.nav-item a {
  background-image: linear-gradient(rgba(0,0,0,0) 50%, rgba(00,102,204,0.3) 50%);
  background-position: 0 0;
  background-size: auto 200%;
  transition: .3s;
}
.nav-item a:hover {
  background-position: 0 100%;
  color: #fff;
  border: none;
}
}
.navbar-toggler{
  border: none;
}
.navbar-toggler:active{
  outline: none;
}
/* /////////// ハンバーガーメニューの挙動 /////////// */
button:focus{
  outline: none;
}
button[aria-expanded="true"] > span {
  position: relative;
  display: none;
}
button[aria-expanded="true"]::after {
  position: relative;
  font-size: 28px;
  content: "X";
}
/*/// slickを初期化してから表示 ///*/
.delay{
  display: none;
  opacity: 0;
  transition: opacity .3s linear;
}
.delay.slick-initialized{
  display: block;
  opacity: 1;
}
/*/// slick-initializedが付与されたら表示 ///*/
#slider figure{
  margin: 0;
}
.single-item img{
  width: 100%;
  height: auto;
}
.pc{
  display: block !important;
}
.mobile{
  display: none !important;
}
/* sm以下で見たときは"mobile"classの画像が表示 */
@media only screen and (max-width: 768px) {
.pc{
  display: none !important;
}
.mobile{
  display: block !important;
}
}
/* ////////// Slickカスタマイズ //////////*/
/* centerModeで両端の画像を白で透過 */
.slick-slider .slick-track, .slick-slider .slick-list{
  background: #fff;
}
.slick-initialized .slick-slide{
  opacity: 0.6; /* 両サイドの画像を透過 */
}
.slick-initialized .slick-slide.slick-active{
  opacity: 1; /* センター画像を非透過 */
}
/* ボタン画像および位置変更 */
.slick-arrow.slick-prev {
left: 20px;
z-index: 1;
}
.slick-arrow.slick-next {
right: 20px;
}
@media screen and (max-width:480px) {
.slick-arrow.slick-prev{
  left: 10px;
}
.slick-arrow.slick-next{
  right: 10px;
}
}
.slick-dots {
height: 12%;
z-index: 1;
}
/* ///////////// textslider お知らせ欄 /////////*/
#textslider{
  width: 100%;
  background-color: #151515;
}
.text-item{
  vertical-align: middle;
}
#textslider h3{
  font-size: 1rem;
  text-align: left;
  color: #FFFFFF;
}
.newsarea{
  background-color: #151515!important;
}
.news{
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  display: inline-block;
}
.subnews{
  font-family: 'Open+Sans', sans-serif;
  font-size: 1rem;
  color: #FFFFFF;
  display: inline-block;
}
/* ///////////// main 本体部分 /////////////*/
#main{
  width: 100%;
  margin: 0 auto;
}
/* ///////// breadcrumbs パンくずリスト /////////*/
#bresdcrumbs{
  width: 100%;
  margin: 0 auto;
}
#breadcrumbs ol{
  padding: 0;
  margin: 0;
  overflow: hidden;
}
#breadcrumbs li{
  margin-right: 10px;
  float: left;
  list-style: none;
  font-size: 0.9rem;
}
/* ///////////// updateinfo /////////////*/
#updateinfo{
  width: 96%;
  margin: 0 auto;
}
#updateinfo img{
  width: 100%;
  height: auto;
}
.text{
  line-height: 1.6;
}
.tile-design{
  background-color: #FFFAFA;
  border: 1px solid #D8D8D8;
  border-radius: 0 0 10px 10px;
}
.image-tile{
  position: relative;
}
.image-tile p{
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;/*画像の左上に配置*/
  left: 0;
  margin: 0; /*余計な隙間を除く*/
  color: #FFFFFF;/*文字を白に*/
  background-color: rgb(100,100,100,0.7);/*背景色*/
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;/*行高は1に*/
  text-shadow: 1px 1px 3px #000000;
}
@media (max-width:768px){
.image-tile p{
  font-size: 1.2rem;
}
}
/* ////// ボタン部分共通 SM以下で横幅いっぱい //////*/
@media all and (max-width:696px) {
.custom-btn {
  width: 100%; display:block;
}
}
/* ///////////// companyinfo /////////////*/
#companyinfo{
  margin: 0 auto;
}
.carousel img{
  width: 100%;
  height: auto;
}
/* ///////////// social SNSICON欄 /////////////*/
#social{
  width: 100%;
  background-color: #000066;
}
#social-inner {
  width: 40%;
  margin: 0 auto;
}
@media (max-width:992px){
#social-inner{
  width: 50%;
}
}
@media (max-width:768px){
#social-inner{
  width: 90%;
}
}
#social-inner img{
  width: 48px;
  height: auto;
  border-radius: 24px;
}
.icon_tw{
  background-color: #1DA1F2;
}
.icon_fb{
  background-color: #1778F2;
}
.icon_yt{
  background-color: #FF0000;
}
.snsicon{
  text-align: center;
}
/* ///////////// footer /////////////*/
footer{
  width: 100%;
  margin: 0 auto;
  background-color: #101010;
}
#innerfooter{
  width: 100%;
  margin: 0 auto;
}
.inner-pc{
  width: 100%;
}
#innerfooter a{
  text-decoration: none;
}
#innerfooter a:hover{
  text-decoration: underline;
  color: #FFFFFF;
}
.logo{
  max-width: 300px;
}
#innerfooter p{
  display: block;
  font-size: 0.8rem;
  color: #FFFFFF;
  line-height: 1.1;
  text-align: left;
}
p.footertitle{
  font-size: 1rem!important;
  font-weight: bold;
  border-bottom: 1px solid #FFFFFF;
}
#footer-common{
  width: 100%;
  border-top: solid 1px #FFFFFF;
}
p.note{
  font-size: 0.9rem;
  color: #FFFFFF;
  display: block;
}
p.copyright{
  font-size: 0.9rem;
  color: #FFFFFF;
}
/* //////// XS/SMでのみ表示部分 ////////*/
#xs-logo{
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
#description-word{
  width: 100%;
  margin: 0 auto;
}
#description-word p{
  font-size: 0.9rem;
  text-align: center;
}
@media (max-width:479.98px){
  #xs-logo{
    width:80%;
}
}
@media (min-width:768px){
#xs-logo , #description-word{
  display: none;
}
}
#xs-logo img{
  width: 100%;
  height: auto;
}

/* テスト用 */
.red{
  background-color: red;
}
.blue{
  background-color: blue;
}
