@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600&display=swap');

*,
*:before,
*:after {
  box-sizing: border-box;
  position: relative;
}

:root {
  --easing: cubic-bezier(.5, 0, .5, 1);
  --duration: .8s;
  --menu-item-duration: .4s;
  --hover-duration: .3s;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}


html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: white;
  font-family: "Noto Sans", sans-serif;
  font-weight: normal;
  line-height: 30px;
  overflow-x: clip;
  letter-spacing: 0.1em;
  color: #666666;
  font-size: 16px;
  margin-top: 0px !important;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
}

.inner-contents {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
}

.contents-pd {
  margin-top: 200px;
}

.con-tit {
  padding-bottom: 30px;
  text-align: center;
  transform: scale(0.8, 0.8) !important;
}

.con-tit h3 {
  font-size: 40px;
  padding-bottom: 1em;
}

/* h3.img-tit img {
  width: 18%;
} */

.con-tit h4 {
  font-size: 35px;
}

.con-tit .con-sub-tit {
  font-family: 'Noto Serif JP', serif;
  position: relative;
  font-size: 35px;
  color: #666666;
  line-height: 1.7em;
  padding: 0.7em 0 0 0;
  font-weight: 500;
}

.con-tit .con-sub-tit::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #DC4696;
  position: absolute;
  top: 0;
  left: 49%;
  right: 0;
}

.con-tit .con-sub-tit span {
  font-size: 40px;
}

.con-tit .con-sub-tit .bign-number {
  font-size: 50px;
}

.con-tit .sec-tit {
  font-family: 'Noto Serif JP', serif;
  background-image: linear-gradient(to right, #fe4a95, #fec700);
  background-repeat: no-repeat;
  background-size: 100% 6%;
  background-position: bottom;
  display: inline;
  font-size: 30px;
  line-height: 3em;
  padding-bottom: 0.3em;
  font-weight: 400;
}

/* ヘッダー */

header.site-header {
  position: absolute;
  height: 100vh;
  z-index: 9999;
  padding-left: 3em;
  padding-top: 3em;
  width: 100%;
}

header.site-header ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 4em;
}

/* ヘッダー */

/* ハンバーガーメニュー */

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 20px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #999999;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  width: 0px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform: translateY(-16px) rotate(90deg);
  transform: translateY(-16px) rotate(90deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #999999;
  background: #fff;
  text-align: left;
  transform: translateX(100%);
  transition: all .9s;
  width: 100%;
  padding-left: 2em;
  padding-top: 1.5em;
  height: 100%;
}

nav.globalMenuSp ul {
  background: #fff;
  padding: 0;
  width: 98%;
  padding-top: 1em;
  border-top: 1px solid #999;
  margin-top: 0.5em;
  padding-left: 1em;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  height: 60px;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* nav.globalMenuSp ul li:hover {
  background: #ddd;
} */

nav.globalMenuSp ul li a {
  display: block;
  color: #999999;
  text-decoration: none;
  ;
}

nav.globalMenuSp .logo {
  text-align: left;
  padding-left: 1em;
}

nav.globalMenuSp .logo img {
  width: 20%;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

/* ハンバーガーメニュー */

/* slider */

.slick-list {
  overflow: inherit;
}

ul.slick-dots {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  position: absolute;
  bottom: -41px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  background: transparent;
  border: 0;
  font-size: 0pt;
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: auto;
  height: 80px;
  font-family: "slick";
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  color: black;
  opacity: 0.25;
}

.slider {
  margin: 0 auto;
  width: 100%;
  height: auto !important;
}

.slider-img {
  margin: 0 5px;
}

.slider-img img {
  height: auto;
  width: 100%;
}

.slider-img dl p img {
  height: auto;
  width: 75%;
  margin: 0 auto;
  padding-bottom: 1.5em;
}

/*===================================
    slick 矢印
===================================*/

.slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 20px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
  background: none;
  border: none;
}

.slick-arrow:hover {
  opacity: 0.7;
}

/* 共通設定 */

.slick-next::before,
.slick-next::after,
.slick-prev::before,
.slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.slick-next::after,
.slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 2px solid #B3B3B3;
  border-right: 2px solid #B3B3B3;
}

/* next */

.slick-next {
  right: 26px;
}

.slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}

/* prev */

.slick-prev {
  left: 26px;
}

.slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}

@media screen and (max-width: 767px) {

  .slick-next::after,
  .slick-prev::after {
    width: 10px;
    height: 10px;
  }

  .slick-next {
    right: 8px;
  }

  .slick-prev {
    left: 8px;
  }

  .slick-next::after {
    right: 2px;
  }

  ul.slick-dots {
    left: 2%;
  }
}

/* slider */

/* CSS */
.fade {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.1s, transform 0s;
}

/* スマートフォン向けにスタイルを調整 */
@media screen and (max-width: 767px) {
  .fade {
    opacity: 1;
    transition: opacity 0.1s, transform 0.1s;
    /* transition-delay: 0.1s; アニメーション遅延 */
  }
}


/* LINEお問い合わせボタン */

#line-contact {
  text-align: center;
  font-weight: bold;
  margin-top: 5em;
}

.contact-txt {
  font-size: 30px;
  color: #808080;
  font-weight: 500;
}

.contact-txt span {
  background-image: linear-gradient(to right, #ff4da0, #ffca00);
  background-repeat: no-repeat;
  background-size: 100% 8%;
  background-position: bottom;
  display: inline;
  line-height: 2.2em;
  padding: 0.1em;
}

p.contact-txt.contact-txt2 {
  margin-top: 0.2em;
  margin-bottom: 2em;
}

.line-box {
  margin-top: 2em;
}

.line-box p {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
}

.line-box p:before {
  position: absolute;
  left: 41%;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #666666;
  border-radius: 3px;
  transform: rotate(-25deg);
}

.line-box p:after {
  position: absolute;
  content: "";
  right: 41%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #666666;
  border-radius: 3px;
  transform: rotate(25deg);
}

.line-box02 {
  padding-top: 1em;
}

.line-box02 p {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
  font-weight: 400;
}

.line-box02 p:before {
  position: absolute;
  left: 38%;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #666666;
  border-radius: 3px;
  transform: rotate(-25deg);
}

.line-box02 p:after {
  position: absolute;
  content: "";
  right: 38%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #666666;
  border-radius: 3px;
  transform: rotate(25deg);
}


#line-contact button {
  background: none;
  border: none;
  /* width: 25%;
  font-size: 20px;
  padding: 0.7em 0;
  border-radius: 5em; */
}

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

#line-contact button a img {
  width: 85%;
}

/* LINEお問い合わせボタン */

/* ボタン */

p.detail-btn {
  text-align: center;
  margin-top: 5em;
}

/*矢印が右に移動する*/
.btnarrow4 {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 20px;
  color: #DC4696;
  text-decoration: none;
  outline: none;
  font-size: 25px;
}

/*矢印と下線の形状*/
.btnarrow4::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -8px;
  left: 15%;
  /*下線の形状*/
  width: 110%;
  height: 1px;
  background: #DC4696;
  /*アニメーションの指定*/
  transition: all .3s;
}

.btnarrow4::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: -62px;
  width: 27px;
  height: 1px;
  background: #DC4696;
  transform: rotate(45deg);
  transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before {
  left: 20%;
}

.btnarrow4:hover::after {
  right: -31%;
}

.btnarrow4 img {
  width: 80%;
}

/* ボタン */

/* フッター */
footer {
  text-align: center;
  padding-bottom: 1.5em;
}

footer h1 {
  position: relative;
  top: 0;
  left: 0;
  transform: translateY(0%) translateX(0%);
  color: #eee;
  text-shadow: 0 0 15px #666;
  text-align: center;
}

footer .footer_txt {
  font-family: 'Noto Serif JP', serif;
  padding: 6em 0;
}

footer img {
  width: 28%;
}

.sns-box {
  padding-bottom: 3em;
}

p.sns-txt {
  color: #DC4696;
  position: absolute;
  left: 13%;
  top: 0;
}

p.sns-txt:before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0%;
  width: 126%;
  height: 1px;
  background: #DC4696;
}
p.sns-txt:after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: -40px;
  width: 27px;
  height: 1px;
  background: #DC4696;
  transform: rotate(45deg);
}

.sns-box ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns-box ul li {
  padding: 0 1.5em;
}

.sns-box ul li img {
  width: 100%;
}


footer .footer-menu {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  width: 90%;
  margin: 0 auto;
}

footer .footer-menu ul {
  display: flex;
  width: 40%;
  justify-content: space-between;
}

footer .footer-menu ul li a {
  color: #666666;
  text-decoration: none;
}

/* フッター */

h1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #eee;
  text-shadow: 0 0 15px #666;
  text-align: center;
}

#header {
  width: 100%;
  height: 100vh;
  position: relative;
}

#header:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  /*背景画像設定*/
  background: url("https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/9-1-4/img/01.jpg") no-repeat center;
  background-size: cover;
}

#container {
  position: relative;
  z-index: 1;
  background: #eee;
  padding: 600px 0;
  text-align: center;
}

@media screen and (max-width:768px) {

  #header,
  #header:before {
    height: 90vh;
  }

}

/* MVスクロール */

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start img {
  width: 65%;
}


@media only screen and (max-width: 750px) {

  html,
  body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: white;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
    line-height: 24px;
    /* overflow-x: hidden; */
    letter-spacing: 0.1em;
    color: #666666;
    font-size: 12px;
    margin-top: 0px !important;
  }

  .contents-pd {
    margin-top: 70px;
  }

  .con-tit h3 {
    padding-bottom: 0.6em;
  }

  .con-tit h3 img {
    width: 60%;
  }

  .con-tit .con-sub-tit {
    font-size: 21px;
    padding: 1em 0 0 0;
    font-weight: 500;
    letter-spacing: 3px;
  }

  .con-tit .con-sub-tit::before {
    width: 18px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 47%;
    right: 0;
  }

  .con-tit .con-sub-tit span {
    font-size: 32px;
  }

  .con-tit .con-sub-tit .bign-number {
    font-size: 38px;
}

  .con-tit .sec-tit {
    background-size: 100% 4%;
  }

  /* LINEお問い合わせボタン */

  .contact-txt {
    font-size: 14px;
    font-weight: 600;
  }

  #line-contact{
    margin-top: 3.5em;
  }

  /* #line-contact button {
    width: 210px;
    font-size: 18px;
  } */

  #line-contact button img {
    width: 70%;
}

.line-box p{
  font-size: 14px;
  margin-bottom: 5px;
}

  .line-box p:before {
    left: 30%;
    height: 90%;
  }

  .line-box p:after {
    right: 30%;
    height: 90%;
  }

  .line-box02 p:before {
    left: 14%;
    height: 90%;
  }

  .line-box02 p:after {
    right: 14%;
    height: 90%;
  }

  /* LINEお問い合わせボタン */

  /* slider */

  .slick-track {
    display: flex;
  }

  /* slider */

  /* ボタン */

  p.detail-btn {
    margin-top: 0em;
  }

  .btnarrow4::before {
    bottom: -8px;
    left: 23%;
    width: 80%;
  }

  .btnarrow4::after {
    right: -10px;
  }

  .btnarrow4 img {
    width: 60%;
  }

  /* ボタン */


  header.site-header ul li a {
    font-size: 15px;
  }

  footer .footer_txt {
    padding: 4em 0;
  }

  footer img {
    width: 50%;
  }

  .sns-box ul li {
    padding: 0 0.5em;
}

  .sns-box ul li img {
    width: 60%;
}

  footer .footer-menu {
    display: block;
    font-size: 11px;
    width: 90%;
    margin: 0 auto;
  }

  footer .footer-menu ul {
    display: flex;
    width: 100%;
  }

  footer .footer-menu p {
    line-height: 17px;
    padding-top: 1em;
}

  .loading img {
    width: 65%;
  }
}