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

.main {
  padding: 0px;
}
.protect {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

img {
  /* SPの長押し禁止 */
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

.section-top {
  width: 100vw;
  height: 100vh;
  position: relative;
  color: bisque;
  margin: 0 auto;
}
.section-top::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /*背景画像設定*/
  background: url("../images/top/top_image_background.webp") no-repeat;
  background-position: 0px 0;
  background-size: cover;
  z-index: -2;
}
.character-img {
  position: fixed;
  height: 140vh;
  width: 100vw;
  left: 0vw;
  max-width: 1100px;
  object-fit: cover;
  object-position: top -5vw left -80px;
  z-index: -2;
}
.section-top_title-container {
  position: relative;
  z-index: 999;
}
.section-top .site-title {
  position: relative;
  top: 20vh;
  text-align: right;
  padding: 0 30px;
  font-size: 3.5rem;
  line-height: 1.3;
}
ruby[data-ruby] {
  position: relative;
}
ruby[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  left: 0em;
  top: -1.5rem;
  text-align: center;
  font-size: 0.5em;
}
rt {
  display: none;
}
.section-top .border {
  display: block;
  position: relative;
  top: 20vh;
  width: 235px;
  right: 0;
  border-bottom: solid 1px;
  margin: 0 0 0 auto;
  animation: moveborder 1.6s ease-in-out;
  animation-delay: 1s;
}
@keyframes moveborder {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 235px;
    opacity: 1;
  }
}
.section-top_subtitel {
  position: relative;
  top: 20vh;
  width: 235px;
  margin: 0 0 0 auto;
}
.section-top_link-container {
  box-sizing: border-box;
  position: relative;
  top: 20vh;
  width: 235px;
  padding: 20px 5px;
  margin: 0 0 0 auto;
  z-index: 999;
}
.section-top_link-lead {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #a50005;
  /* background-color: rgba(255, 255, 255, 0.8); */
  background-image: url("../images/top/background.webp");
  background-size: cover;
  background-position: center;
  border: 1px dashed #a50005;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 20px;
}
.top-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 20px;
}
.top-link-list li {
  width: 100%;
  list-style: none;
  font-size: 1.4rem;
  padding-bottom: 3px;
  border-bottom: 0.5px solid bisque;
}
.top-link-list li a {
  text-decoration: none;
  color: bisque;
}
.link-in-list {
  display: block;
  line-height: 1.2;
}
.link-in-list .kityune {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}
.higanbana-left {
  position: fixed;
  bottom: 0vh;
  left: 0vw;
  z-index: 20;
  width: 40vw;
  height: 35vw;
  /*背景画像設定*/
  background: url("../images/top/higanbana-left.webp") no-repeat;
  background-size: contain;
}
.higanbana-right {
  position: fixed;
  bottom: -1vh;
  right: 0vw;
  z-index: 20;
  width: 40vw;
  height: 35vw;
  /*背景画像設定*/
  background: url("../images/top/higanbana-right.webp") no-repeat;
  background-size: contain;
}
@media (min-width: 410px) {
  .section-top::before {
    background-position: 0 0;
    background-size: cover;
  }
  .section-top .site-title {
    font-size: 10vw;
  }
  .section-top .border {
    width: calc(50vw + 60px);
    animation: moveborder 2s ease-in-out;
    animation-delay: 1s;
  }
  @keyframes moveborder {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: calc(50vw + 60px);
      opacity: 1;
    }
  }
  .section-top_subtitel {
    width: calc(50vw + 60px);
    font-size: 4vw;
    line-height: 1.5;
  }
  .section-top_link-container {
    width: calc(50vw + 60px);
    font-size: 4vw;
    line-height: 1.5;
  }
  .higanbana-left {
    max-width: 300px;
    max-height: 265px;
  }
  .higanbana-right {
    bottom: -1vw;
    max-width: 300px;
    max-height: 265px;
  }
}
@media (min-width: 700px) {
  .character-img {
    object-position: top -5vw left -12vw;
  }
  .section-top .site-title {
    font-size: 6rem;
    padding-right: 60px;
  }
  .section-top_subtitel {
    font-size: 2.5rem;
    padding-right: 72px;
    text-align: right;
  }
  .section-top_link-lead {
    font-size: 1.6rem;
  }
  .top-link-list {
    align-items: end;
  }
  .top-link-list li {
    box-sizing: border-box;
    width: fit-content;
    min-width: calc((100% - 20px) / 3);
    height: fit-content;
    font-size: 1.6rem;
    padding: 0 10px 3px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .top-link-list li:last-child {
    margin-right: 0;
  }
  .link-in-list {
    line-height: 1.7;
  }
  .link-in-list .kityune {
    vertical-align: sub;
  }
}
/*=============================
スクロールダウンアニメーションの設定
===============================*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  position: absolute;
  left: 50%;
  bottom: 3vh;
  height: 12vh; /*全体の高さ*/
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -25px;
  top: -10px;
  /*テキストの形状*/
  color: #eee;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0px;
  margin: 20px 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 5vh;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 10vh;
    opacity: 0;
  }
}

/*==================================================
ここからフェードインアニメーションの設定
スタート時は要素自体を透過0にするためのopacity:0;を指定する
====================================================*/
.fadeInLeftTrigger,
.fadeInUpTrigger {
  opacity: 0;
}
.anime1 {
  animation-delay: 1s;
}
.anime2 {
  animation-delay: 1.5s;
}
.anime3 {
  animation-delay: 2.5s;
}
/*==================================================
ここまでフェードインアニメーションの設定
====================================================*/

.container {
  clip-path: inset(0);
  padding-bottom: 20px;
}
.container::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/background-white.webp");
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.lead_content {
  font-size: 1.5rem;
  padding-top: 5px;
  margin-bottom: 10px;
}
.contact-container {
  box-sizing: border-box;
  width: 100vw;
  min-width: 300px;
  max-width: 355px;
  border-bottom: 1px solid #583700;
  background-image: url("../images/top/background.webp");
  background-size: cover;
  background-position: center 20px;
  background-repeat: no-repeat;
  margin: 0 auto 30px;
}
.contact-container p {
  display: inline-block;
  text-align: right;
  font-size: 1.5rem;
  line-height: 1.1;
  padding-bottom: 10px;
}
.contact-container .small {
  font-size: 1.3rem;
}
.contact-container .more-small {
  font-size: 1.2rem;
}
.contact-container img {
  display: inline-block;
  vertical-align: bottom;
}
.contact-container img.yuukityu {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: -4px;
}
.contact-container img.mail {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: rotateZ(15deg);
  margin-left: -37px;
  margin-bottom: -5px;
}
.sns-container {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.sns-container a {
  border: 0.5px solid #583700;
  border-radius: 6px;
  margin: 5px;
}
.sns-container a img {
  height: 50px;
  border-radius: 6px;
  vertical-align: bottom;
}
.sns-container a.xissmie {
  box-sizing: border-box;
  display: block;
  width: 100px;
  height: 50px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 1.8rem;
  font-weight: bolder;
  line-height: 1;
  color: #333;
  background-color: #fff;
  padding-top: 15px;
}
@media (min-width: 700px) {
  .container {
    background-size: 600px;
  }
}
@media (min-width: 885px) {
  .lead_content {
    font-size: 2rem;
    line-height: 3.5rem;
    padding-top: 10px;
  }
}
.section h2 {
  padding: 15px 0 5px;
  font-size: 2.5rem;
}
h2 .small {
  font-size: 2rem;
}
.section-content {
  color: #583700;
  width: 100vw;
  /* background-color: rgba(255, 228, 223, 0.8); */
  background-image: url("../images/top/background.webp");
  background-size: cover;
  background-position: center;
  margin: 5px 0 30px;
}
.section-content .p {
  position: relative;
  font-size: 1.3rem;
  padding: 15px;
  z-index: 10;
}
.section-content .p::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 10px;
  left: 5px;
  background-image: url("../images/common/kityune-mark.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}
ruby[data-ruby].content-ruby::before {
  content: attr(data-ruby);
  position: absolute;
  left: -0.1em;
  top: -0.7em;
  width: fit-content;
  text-align: center;
  font-size: 0.6em;
  line-height: 1.2;
}
.section-content .text_left {
  text-align: left;
}
.storong {
  font-size: 1.5rem;
  border-bottom: 1px solid #583700;
}
@media (min-width: 550px) {
  .section-content .p {
    padding: 15px 0;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 885px) {
  .section-content .p {
    font-size: 1.4rem;
    max-width: 650px;
    padding: 25px 0;
    margin: 0 auto;
  }
  .storong {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .br {
    display: none;
  }
}
.section-link-container {
  padding: 15px 20px;
  text-align: left;
}
.link-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  font-size: 1.5rem;
  min-height: 50px;
  margin-bottom: 10px;
}
.link-item a {
  text-decoration: none;
  color: #583700;
  line-height: 1.2;
}
.link-item p {
  padding-left: 5px;
}
.link-item .br {
  display: none;
}
.link-item .small {
  font-size: 1.2rem;
  padding-left: 6px;
}
.link-img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  vertical-align: bottom;
}
.link-img.xfolio {
  width: 150px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  vertical-align: bottom;
}
.link-item .xfolio-padding {
  padding-left: 5px;
}
@media (min-width: 550px) {
  .section-link-container {
    font-size: 1.4rem;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 885px) {
  .section-link-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 650px;
    padding: 15px 0 5px;
    margin: 0 auto;
  }
  .link-item {
    width: 47%;
  }
  .link-item:nth-child(2n) {
    width: 53%;
  }
  .link-item .br {
    display: block;
  }
  .link-img {
    width: 80px;
    height: 80px;
  }
  .link-img.xfolio {
    width: 240px;
    height: 80px;
  }
}

/* アコーディオン内のWEBサイト制作料金表 */
.section-content .accordion-area {
  padding-bottom: 20px;
}
.accordion-area .box .web-order {
  width: 100%;
}
@media (min-width: 885px) {
  .section-content .accordion-area {
    margin-top: 5px;
  }
}

/* SNS用のアコーディオン */
.accordion-sns {
  color: #583700;
  background-color: rgba(255, 228, 223, 0.8);
}

.section-content .dairi {
  width: 100vw;
  border-top: solid 1px #583700;
  border-bottom: solid 1px #583700;
  mix-blend-mode: multiply;
}
.indent {
  display: inline-block;
  text-align: left;
  padding: 5px 5px 5px 1rem;
  text-indent: -1rem;
}
@media (min-width: 550px) {
  .section-content .dairi {
    width: 80vw;
    padding: 15px 10vw;
  }
}
@media (min-width: 885px) {
  .section-content .dairi {
    width: 60vw;
    padding: 25px 20vw;
  }
}
