@charset "UTF-8";
/* CSS Document */


.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
 
.clearfix:after {
    clear: both;
}
 
.clearfix {
    *zoom: 1;
    color: #FFFFFF;
}
 
body {
    font-family:'Noto Serif JP', serif;
}
 
.fixed {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index: 99999;
}
 
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #666666;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    z-index: 999;
}
 
 
header  {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#4C4F54;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    z-index:9999;
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
	z-index: 9999;
}
header .inner {
    position:relative;
    max-width:1080px;
    margin:0 auto;
    padding:0.5em 0;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
.logo {
    float:left;
    width:23%;
    margin-top: 23px;
}
 
header nav {
    float:right;
    width: 60%;
     margin-top: 0 !important;
}
 
header.navOpen nav {
    opacity: 1;
    right: 0;
}
header nav ul {
    width: 100%;
    padding: 0 0 0 0px;
}
header nav ul li {
    float:left;
    width: 16.6666%;
    list-style:none;
}
header nav ul li a {
    position:relative;
    display:block;
    padding:1.5em;
    color:#999;
    text-decoration:none;
}
header nav ul li a:hover {
    text-decoration: underline;
}
 
 
header .button {
    display: none;
    width: 30px;
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
}
header .button span {
    display: block;
    height: 4px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 2px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
header .button span:nth-of-type(2),
header .button span:nth-of-type(3) {
    margin-top: 5px;
}
 
header.navOpen .button span:nth-of-type(1) {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
    -ms-transform: translateY(9px) translateX(0) rotate(45deg);
    transform: translateY(9px) translateX(0) rotate(45deg);
}
header.navOpen .button span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px);
}
header.navOpen .button span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
    transform: translateY(-9px) translateX(0) rotate(-45deg);
}
 
#contents {
    max-width: 1080px;
    margin:80px auto 0;
    line-height:1.5;
}
#contents p {
    margin: 50px 0 0 0;
}
 
 
 
@media screen and (max-width:1080px){
header .inner {
    padding: 1.5em;
}
header h1 {
    width: 30%;
    margin-top: 0em;
}
header nav {
    width:70%;
}
header nav ul li {
    width: 25%;
}
#contents {
    margin-top:180px;
}
}

li{
	font-size: 12px;
}
 
@media screen and (max-width:480px){

	header{
		z-index: 9999%;
	}
	
	.logo{
		width: 130%;
		height: auto;
    margin: 0;
	}
header .button {
    display:block;
	z-index: 9999;
}
header nav {
    overflow:auto;
    position: fixed;
    top: 0;
    right: -70%;
    float:none;
    width: 45%;
    max-width:320px;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index:9999;
}
header nav ul li {
    float: none;
    width: auto;
}
#contents {
    margin-top:80px;
	z-index: 9999;
}
}

.headerlink{
    color: #FFFFFF;
    font-size: 12px;
}

@media screen and (max-width:480px){
    .headerlink{
        color: #000;
    }
}

.tome{
    width: 3%;
    height: auto;
}

@media screen and (max-width:480px){
    .tome{
        max-width: 10%;
        height: auto;
    }
}




.slider {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 1198px;
  height     : 423px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slider img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  left       : 100%;
  animation  : slideAnime 18s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slider img:nth-of-type(1) { animation-delay: 0s }
.slider img:nth-of-type(2) { animation-delay: 3s }
.slider img:nth-of-type(3) { animation-delay: 6s }
.slider img:nth-of-type(4) { animation-delay: 9s }
.slider img:nth-of-type(5) { animation-delay: 12s }
.slider img:nth-of-type(6) { animation-delay: 15s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { left: 100%  }
   2% { left: 0     }
  18% { left: 0     }
  20% { left: -100% }
 100% { left: -100% }
}

@media screen and (max-width:480px){
  .banner2{
    width: 90%;
    height: auto;
  }
  .slider{
    width: 100%;
    height:130px;
  }
}




.category3{
text-align: center;
 padding: 30px;
}

@media screen and (max-width:480px){
  .category4{
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}




*, *:before, *:after {
	box-sizing: border-box;
}
.col_4{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
  margin: 0;
}
.col_4 > div{
	width: 25%;
}
@media screen and (max-width: 960px) {
	.col_4 > div{
		width: 10.00000%;
	}
}
@media screen and (max-width: 480px) {
	.col_4 > div{
		width: 50%;
    margin: 0;
}
.img4{
  width: 100%;
  height: auto;
  margin: 0;
}
}

.img4{
  width: 60%;
  height: auto;
  margin: 0 auto;
  display: flex;
  padding-top: 50px;
}






/*ここまでヘッダー*/

body{
	background-color: #1C1D21;
}

.top { 
	background-image : url(../img/blackconcrete.jpg);
	background-attachment : fixed;
  overflow: hidden;
}

.tome{
  width: 200px;
}


/*ここがスライド*/


* {
  box-sizing: border-box;
}

.slider2 {
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin: 30px 0;
}

.slides2 {
  display: flex;
  
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  
  
  
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  
  /*
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;
  */
}
.slides2::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.slides2::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.slides2::-webkit-scrollbar-track {
  background: transparent;
}
.slides2 > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}
.slides2 > div:target {
/*   transform: scale(0.8); */
}
.author-info2 {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 0.75rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.author-info2 a {
  color: white;
}
img2 {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider2 > a {
  display:none;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.slider2 > a:active {
  top: 1px;
}
.slider2 > a:focus {
  background: #000;
}

/* Don't need button navigation */
@supports (scroll-snap-type) {
  .slider2 > a {
    display: none;
  }
}



@media screen and (max-width:480px){
	.banner{
	  width: 90%;
		height: auto;
		z-index: 0;
	}
  
  }




/*ここまでバナーのスライド*/







/*ここからカテゴリのスライド*/

.autoplay-slider{
    display: flex;
    width: 100%;
  }
  .slide{
    height: auto;
    width: 500px;
    width: 100%;
    margin: 20px;
    position: relative;
  } 

  @keyframes sliderAnimation {
    100% {
      transform: translateX(-50%);
      animation:2s ease-in 1s infinite alternate forwards running expansion;
    }
  }

  .autoplay-slider{
    display: flex;
    min-width: 100%;
    width: min-content;
    animation: 50s linear infinite sliderAnimation;
  }
  .row{
    display: -ms-grid;
    -ms-grid-columns: min-content;
    max-width: 100%;
}

.carpng{
    width: 70%;
    height: auto;
    padding-right: 20px;
}

.txt1{
    color: #FFFFFF;
    padding-left: 30px;
    padding-right: 0px;
   
}

h2{
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
}

a{
    text-decoration: none;
    color:#fff;
}

@media screen and (max-width:480px){
    .carpng{
        width: 30%;
        height: auto;
        padding-right: 0px;
        margin: 0;
    }

    h2{
        font-size: 15px;
    }

    .txt1{
        font-size: 10px;
        padding: 0px;
    }

    
    .slide{
        margin: 0;
        padding: 0;
        width: 300px;
        height: auto;
        max-width: 100%; 
         }

  

    }



.yaris{
  margin: 0 auto;
  display: flex;
  width: 55%;
  height: auto;
  padding-bottom: 50px;
}

@media screen and (max-width:480px){
  .yaris{
    width: 90%;
    height: auto;
  }
}

#cardlayout-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 2em auto;
    max-width: 960px;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

/* リンクテキストの下線を非表示 */
a.card-link {
    text-decoration: none;
}

/* カードレイアウト内の画像を幅いっぱいに表示 */
#cardlayout-wrap img {
    display: block;
    max-width: 100%;
    height: auto;
}

.card-figure {
    margin: 0;
    padding: 0;
}

/* カードレイアウトのタイトル部分 */
.card-title {
    margin: 0.6em 0 0;
    color: #fff;
    text-align: center;
    font-size: 1.8em;
}

.card-title2
{
	margin: 0.6em 0 0;
    color: #fff;
    text-align: center;
    font-size: 1.6em;
}

/* カードレイアウトの説明文部分 */
.card-text-tax {
    margin: 0;
    padding: 1em;
    color: #fff;
    text-align: center;
	line-height: 1.8em;
}

/* カードレイアウトを1カラムで配置 */
.card-list {
    margin: 0.5em auto;
    padding: 0;
    width: 96%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.sub{
	color: #D1D1D1;
}

/* 画面幅768px以上の場合カードレイアウトを2カラムで配置 */
@media all and (min-width: 768px) {
    .card-list {
        margin: 0.5em 0;
        width: calc(96% / 2); /* 96%幅を2で割るという指定 */
    }
}

/* 画面幅992px以上の場合カードレイアウトを3カラムで配置 */
@media all and (min-width: 992px) {
    .card-list {
        width: calc(96% / 3); /* 96%幅を3で割るという指定 */
}
    
/* 最後の行が3列より少ない場合左寄せにレイアウトさせる */
    #cardlayout-wrap::after{
        content: "";
        display: block;
        width: calc(96% / 3);
    }
}



h2{
    padding-top: 50px;
}


@media screen and (max-width:480px){
    .card-figure{
        max-width: 90%;
        height: auto;
        margin: 0 auto;
        display: flex;
    }

    .card-title{
        font-size: 20px;
    }

    .card-text-tax{
        font-size: 15px;
        line-height: 1.8em;
        font-weight: 100;
    }
    
    h2{
        font-size: 20px;
    }
}






/*スクロールフェードインのcss

.fade-in {
  opacity: 0;
  transition-duration: 800ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-10px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

*/

/*ここからポイント*/



h3{
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: 100;
    padding-top: 20px;
}


/*ここから動画*/

.iframeWrap-parent {
    width: 50%; /* サイト幅の50% */
    margin: 0 auto;
    display: flex;
  }
  @media screen and (max-width: 959px) {
    .iframeWrap-parent {
      width: 100%; /* タブレット以下だとサイト幅100%になる */
    }
  }
  .iframeWrap-child {
    position: relative;
    width: 100%;
    height: 0;
    /* 以下タテヨコ比（アスペクト比） */
    padding-top: 75%;/* 4:3 */
    padding-top: 66%;/* 3:2 */
    padding-top: 56%;/* 16:9 */
  }
  .iframeWrap-child iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /*ここからオプション*/

  .option{
      margin: 0 auto;
      display: flex;
      width: 35%;
      height: auto;
  }

  .foot{
      text-align: center;
      font-weight: 100;
      color: #FFFFFF;
  }

  @media screen and (max-width:480px){
      .option{
          width: 0%;
          height: auto;
      }

      .foot{
         display: none;
      }
      .foot2{
        font-size: 15px;
        font-weight: 100;
        max-width: 80%;
        margin-left: 45px;
        color: #FFFFFF;
        text-align: center;
      }
  }


@media screen and (min-width:1024px){
  .foot2{
    display: none;
  }
}




  /*ここからパーツ*/

  .parts{
      width: 50%;
      height: auto;
      margin: 0 auto;
      display: flex;
  }

  @media screen and (max-width:480px){
      .parts{
          width: 90%;
          height: auto;
      }
  }


  /*ここからテーブル*/

  
table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 15px -6px #00000073;
  }
  
  table tr {
    background-color: #fff;
  }
  
  table th,
  table td {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  
  table  th {
    width: 20%;
    padding: 10px 0;
    font-size: 14px;
    padding: 15px;
    background-color:#4C4F54;
    color:#fff;
    text-align: center;
  }
  
  table tr{
    text-align: center;
    width: 20%;
    padding: 20px 0;
    background-color: #fff;
    color:#3a3a3a;
  }
  
  table tr:hover{
    background-color: #d4faff;
  }


  @media screen and (max-width:480px){
      table{
          width: 80%;
      }
  }


  /*ここからfoooter*/


  
#footer03 {
    background: #222;
  }
   
  #footer03 .inner-block {
    padding: 30px 0;
  }
   
  #footer03 .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
   
  #footer03 .logo > img {
    width: 120px;
  }
   
  #footer03 .logo .ja {
    padding-left: 20px;
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
  }
   
  #footer03 .address {
    margin-top: 20px;
    color: #ccc;
  }
   
  #footer03 .nav li a {
    padding: 10px 0;
    color: #ccc;
    font-weight: bold;
  }
   
  #footer03 .nav .footer-btn-wrap .contact-btn {
    background-color: #0077bb;
    color: #fff;
    text-align: center;
	  margin-top: 50px;
  }
   
  #footer03 .nav .footer-btn-wrap .login-btn {
    background: #c4341a;
    color: #fff;
    text-align: center;
  }
   
  #footer03 .js-aco li a {
    padding-left: 15px;
  }
   
  #footer03 .js-aco li a span {
    position: relative;
   
  }
   
  #footer03 .js-aco li a span::before {
    display: inline-block;
    position: absolute;
    content: '';
    width: 10px;
    height: 1px;
    background-color: #ccc;
    top: 0;
    bottom: 0;
    right: calc(100% + 5px);
    margin: auto;
  }
   
  @media only screen and (min-width: 641px) {
    #footer03 .nav .footer-btn-wrap a {
      display: block;
      width: 150px;
      border: 2px solid transparent;
    }
    #footer03 .nav .footer-btn-wrap a + a {
      margin-top: 10px;
    }
    #footer03 .nav .footer-btn-wrap .contact-btn:hover {
      background: #fff;
      color: #0077bb;
      opacity: 1;
    }
    #footer03 .nav .footer-btn-wrap .login-btn:hover {
      background: #fff;
      color: #c4341a;
      opacity: 1;
    }
    #footer03 .area {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
   
    #footer03 .nav {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 800px;
    }
   
    #footer03 .nav li a {
      font-size: 14px;
    }
   
    #footer03 .nav li a:hover {
      opacity: 1;
      color: #c4341a;
    }
  }

footer{
    margin-top: 50px;
}

  .footerlogo{
      width: 180%;
      height: auto;
  }

  .footertxt{
      color: #fff;
  }

  .copyright{
      text-align: center;
      color: #FFFFFF;
  }

  ul{
      list-style: none;
  }

  @media only screen and (max-width: 640px) {
    #footer03 .inner-block {
      padding: 30px 10px 10px;
    }
    #footer03 .logo .ja {
      font-size: 12px;
    }
    #footer03 .address {
      margin: 20px 0;
    }
    #footer03 .nav {
      width: calc(100% + 20px);
      margin-left: -10px;
    }
    #footer03 .nav li {
      border-top: 1px solid #555;
    }
    #footer03 .nav li a {
      display: block;
      padding: 12px 20px;
      background-size: 6px auto;
    }
    #footer03 .footer-btn-wrap {
      display: flex;
      align-items: flex-start;
      justify-content: space-around;
      padding-top: 15px;
      border-top: 1px solid #ebebeb;
    }
    #footer03 .js-aco li a {
      padding-left: 40px;
    }
    #footer03 .nav .footer-btn-wrap a {
      padding: 10px;
      width: 40%;
    }
    #footer03 .copyright {
      font-size: 10px;
      text-align: center;
    }

    .footerlogo{
        width: 60%;
        height: auto;
		margin-right: 300px;
		margin-bottom: 30px;
    }

    .footertxt{
        font-size: 12px;
		text-align: center;
		margin-right: 30px;
    }

    .copyright{
        font-size: 10px;
		margin-left: 10px;
    }
	  .contact-btn{
		  margin-right: 30px;
		  margin-bottom: 30px;
	  }
  }



  h2{
    text-align: center;
    margin-bottom: 30px;
  }

  #page_top{
    width: 90px;
    height: 90px;
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: 9999;
  }
  #page_top a{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #6fb3db;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #page_top a::after{
    content: 'PAGE TOP';
    font-size: 13px;
    color: #6fb3db;
    position: absolute;
    top: 45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    color: #6fb3db;
  }

a{
	text-decoration: none;
}


