@charset "UTF-8";
body {
  color: #333;
  line-height: 1.5;
}

/*----------
carousel
----------*/
/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 60%;
  margin: 70px auto 20px;
}

@media screen and (max-width: 600px) {
  .slider li .pc {
    display: none;
  }
}

.slider li .sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .slider li .sp {
    display: block;
  }
}

.slider img {
  width: 30vw;
  /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  -webkit-transition: all .5s;
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slider .slick-slide.slick-center {
  -webkit-transform: scale(1);
          transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

/*----------
intro
----------*/
.intro {
  width: 70%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
}

@media screen and (max-width: 600px) {
  .intro {
    width: 90%;
    font-size: 10px;
  }
}

.intro .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.intro .container .left {
  width: 65%;
  line-height: 1.5;
  text-align: justify;
}

@media screen and (max-width: 600px) {
  .intro .container .left {
    width: 100%;
  }
}

.intro .container img {
  width: 150px;
  margin-left: 20px;
}

/*----------
topics
----------*/
.topics {
  margin-top: 50px;
  width: 80%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 600px) {
  .topics {
    width: 90%;
  }
}

.topics .container .title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.topics .container .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (max-width: 600px) {
  .topics .container .contents {
    display: inline-block;
    text-align: center;
  }
}

.topics .container .contents .content {
  width: 45%;
  max-width: 350px;
}

@media screen and (max-width: 600px) {
  .topics .container .contents .content {
    width: 100%;
    max-width: unset;
  }
  .topics .container .contents .content:not(:first-child) {
    margin-top: 10px;
  }
}

.topics .container .contents .content a {
  margin-right: auto;
  margin-left: auto;
}

.topics .container .contents .content a:hover {
  opacity: .8;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.topics .container .contents .content a img {
  width: 100%;
}

/*----------
products
----------*/
.product {
  margin-top: 50px;
  width: 80%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 600px) {
  .product {
    width: 90%;
  }
}

.product .container .title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.product .container .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  .product .container .contents {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.product .container .contents .content {
  width: 45%;
  max-width: 350px;
  padding-bottom: 3%;
}

@media screen and (max-width: 600px) {
  .product .container .contents .content {
    width: 48%;
    max-width: unset;
  }
}

.product .container .contents .content a:hover {
  opacity: .8;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.product .container .contents .content a img {
  width: 100%;
}

/*----------
concept
----------*/
.concept {
  margin-top: 50px;
  width: 80%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 600px) {
  .concept {
    width: 90%;
  }
}

.concept .container .title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.concept .container .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (max-width: 600px) {
  .concept .container .contents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.concept .container .contents .content {
  width: 22.5%;
  max-width: 175px;
}

@media screen and (max-width: 600px) {
  .concept .container .contents .content {
    width: 48%;
    max-width: 350px;
    margin-bottom: 10px;
  }
}

.concept .container .contents .content a {
  text-decoration: none;
  color: #333;
  pointer-events: none;
}

.concept .container .contents .content a img {
  width: 100%;
}

.concept .container .contents .content a .text {
  margin-top: 5px;
  font-size: 12px;
  text-align: justify;
  line-height: 1.5;
}

/*----------
information
----------*/
.information {
  margin-top: 50px;
  width: 80%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 600px) {
  .information {
    width: 90%;
  }
}

.information .container .title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.information .container .contents .inner {
  width: 80%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 600px) {
  .information .container .contents .inner {
    width: 100%;
  }
}

.information .container .contents .inner a {
  color: #333;
  text-decoration: none;
}

.information .container .contents .inner a .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.information .container .contents .inner a .content img {
  width: 20%;
  margin-right: 20px;
}

.information .container .contents .inner a .content .right {
  width: 80%;
}

.information .container .contents .inner a .content .right .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}

@media screen and (max-width: 600px) {
  .information .container .contents .inner a .content .right .top {
    display: block;
  }
}

.information .container .contents .inner a .content .right .top .date {
  font-size: 12px;
  margin-right: 5px;
}

.information .container .contents .inner a .content .right .top .sub-title {
  font-size: 12px;
  font-weight: bold;
}

.information .container .contents .inner a .content .right .text {
  font-size: 12px;
  line-height: 1.5;
}

/*----------
news
----------*/
.news {
  width: 80%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 600px) {
  .news {
    display: block;
  }
}

.news time {
  min-width: 100px;
  background: #ccc;
  padding: 5px 8px;
  font-size: 14px;
  margin-right: 20px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .news div {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .news div {
    margin-top: 5px;
  }
}

.news div h3 {
  font-size: 14px;
  font-weight: bold;
}

.news div p {
  font-size: 14px;
}

.news div p a {
  color: #333;
  text-decoration: underline;
}

.news div p a:hover {
  opacity: .8;
}

/*----------
contact
----------*/
.contact {
  margin-top: 50px;
  width: 80%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 600px) {
  .contact {
    width: 90%;
  }
}

.contact .container .title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.contact .container .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.contact .container .contents .content {
  width: 45%;
  max-width: 350px;
}

.contact .container .contents .content a:hover {
  opacity: .8;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.contact .container .contents .content a img {
  width: 100%;
}

/*----------
sns
----------*/
.sns {
  margin-top: 30px;
  width: 20%;
  max-width: 120px;
  margin-right: auto;
  margin-left: auto;
}

.sns .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sns .container .contact-to {
  margin: 3px;
}

.sns .container .contact-to a:hover {
  opacity: .8;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.sns .container .contact-to a img {
  width: 100%;
}
