@charset "utf-8";

.txt-center {
  text-align: center;
}

a.btn-mof {
  color: #4eb428;
  font-family: ten-mincho;
  font-size: 1.35em;
  letter-spacing: 3px;
  padding: 0.7em;
  border-radius: 2em;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  box-shadow: 10px 10px 30px #d9d9d9,
    -10px -10px 30px #ddd;
}

.btn-mof .bi {
  font-size: 2em;
  padding: 0;
  margin: 0 0 0 10px;
  vertical-align: center;
}

@media(max-width:480px) {
  a.btn-mof {
    font-size: 1.25em;
    letter-spacing: 3px;
    padding: 0.65em;
  }

  .btn-mof .bi {
    font-size: 2em;
    padding: 0;
    margin: 0 0 0 10px;
    vertical-align: center;
  }
}

@keyframes fadeIn {
  0% {
    color: #4eb428;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 10px 10px 30px #d9d9d9,
      -10px -10px 30px #ddd;
  }

  100% {
    color: #5da2c3;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 10px 10px 30px #d9d9d9,
      -10px -10px 30px #ffffff;
  }
}

a.btn-mof:hover {
  animation-name: fadeIn;
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.btn-lg {
  width: 100%;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*　背景画像設定　*/
.slider-item01 {
  background: url(https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/6-1-2/img/img_01.jpg);
}

.slider-item02 {
  background: url(https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/6-1-2/img/img_02.jpg);
}

.slider-item03 {
  background: url(https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/6-1-2/img/img_03.jpg);
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh;
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff;
  /*矢印の色*/
  border-right: 2px solid #fff;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}

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

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

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 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: #fff;
  /*ドットボタンの色*/
}

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

/*========= レイアウトのためのCSS ===============*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #fff;
}

a:hover,
a:active {
  text-decoration: none;
}

h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

h1 img {
  width: 40%;
  height: auto;
}

h2 {
  position: absolute;
  z-index: 2;
  top: 80%;
  left: 50%;
  font-size: 1em;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.arrow-bottom {
  position: absolute;
  z-index: 2;
  top: 80%;
  left: 49%;
  font-size: 1em;
  transform: translate(-50%, -50%);
  text-align: center;
  border-bottom: solid 4px #fc0;
  border-right: solid 4px #fc0;
  margin-top: 16px;
  /*なくてもOK*/
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

.wrapper {
  position: relative;
}

.container {
  max-width: 1440px;
  margin: 3em auto;
  background: #fff;
}

.galleries {
  padding: 1em;
}

.galleries dl {
  display: flex;
  justify-content: flex-start;
  border-bottom: #ddd 1px solid;
}

.galleries dt {
  width: 60%;
}

.galleries dt img {
  width: 100%;
  height: auto;
  border-radius: 1em;
}

.galleries dd {
  width: 40%;
  padding: 0 0 1em 1em;
}

.container h3 {
  padding: 0.75em;
}

.container p {
  padding: 0.75em;
  text-align: left;
  letter-spacing: 0.2em;
}