<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*ボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}



/*========= base ===========*/
#contents {
  color: #fff;
  background-color: #000;
  font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo','メイリオ',sans-serif;
  padding-bottom: 50px;
}
#contents p {
  font-size: 1.4rem;
  line-height: 2.0;
  margin-bottom: auto;
}
#contents img {
  width: 100%;
}

#contents section {
  width: 1040px;
  margin: 0 auto;
}

.kv {
  padding-top: 80px;
}
.lead {
  width: 100% !important;
  height: 506px;
  margin-bottom: 80px !important;
  background: url(./img/bg.jpg) no-repeat center bottom;
  background-size: cover;
  position: relative;
}
.lead p {
  position: absolute;
  width: 435px;
  top: 15%;
  left:50%;
}
.bnr {
  margin-bottom: 80px !important;
}

.detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.detail-img {
  width: 54%;
  margin-bottom: 50px;
}
.detail-text {
  width: 40%;
  text-align: left;
}

.detail-text &gt; h3 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.detail-text &gt; p &gt; span {
  font-size: 1.6rem;
}



/***フェードイン***/
/* 画面外にいる状態 */
#contents .fadein {
	opacity : 0.1;
	transform : translate(0, 60px);
	transition : all 800ms;
	}

/* 画面内に入った状態 */
#contents .fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

/***トップへ戻るボタン***/
#page-top {
  display: block;
  font-size: 1.4rem;
  padding: .7em;
  text-align: center;
  color: #fff;
  transition: .3s;
}



@media all and (min-width: 768px) {
  .sp {
    display: none;
  }
}
 
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  #contents section {
    width: 100%;
  }
  .kv {
    padding-top: 0;
  }
  .lead {
    height: 460px;
    background: url(./img/bg-sp.jpg) no-repeat;
    background-size: cover;
  }
  .lead p {
    position: absolute;
    width: 90%;
    margin: 10% 5%;
    top: 0;
    left: 0;
  }
  .bnr p.text {
    padding-left: 10px;
  }

  .detail {
    display: block;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .detail-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .detail-text {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 80px;
  }
  
  .detail-text &gt; h3 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .detail-text &gt; p &gt; span {
    font-size: 1.6rem;
  }
}</pre></body></html>