@charset "utf-8";

html {
  font-size: 62.5%;
}

body {
  font-family: "Akshar", "Noto Sans JP", "sans-serif";
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  color: #1c1e2a;
  box-sizing: border-box;
}

header .wrapper {
  padding: 0;
  position: inherit;
}

/*共通*/
.spOnly {
  display: none;
}

a {
  color: #1c1e2a;
}


h2 {
  font-size: 6rem;
  font-weight: normal;
  letter-spacing: .1rem;
}

h3 {
  font-weight: normal;
  letter-spacing: .1rem;
}

/*sp表示*/
@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }

  .spOnly {
    display: block;
  }

  h2 {
    font-size: 4.5rem;
  }
}

/*end sp表示*/

/*背景が伸びてくる*/
.flowing .link {
  /*アニメーションの起点とするためrelativeを指定*/
  display: iline-block;
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  display: inline-block;
  padding: 2px 2px 2px 8px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}

/*ボタン内spanの形状*/
.flowing .link span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

.flowing .link:hover span {
  color: #fff8f3;
}

/*== 背景が流れる（左から右） */
.flowing .link:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #1c1e2a;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.flowing .link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}


/*END===背景が伸びてくる*/


.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.link_text {
  position: relative;
  display: inline-block;
  margin-right: 4.5rem;
  margin-top: 7rem;
  padding-right: 1rem;
  font-size: 1.8rem;
}

.link_text.left {
  margin-right: 0;
  padding-right: 0;
  padding-left: 1rem;
}

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

.link_text::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -5%;
  width: .7rem;
  height: .7rem;
  border-top: 2px solid #1c1e2a;
  border-right: 2px solid #1c1e2a;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

.link_text.left::after {
  right: 0;
  left: -5%;
  top: 40%;
  transform: rotate(-135deg);
}

/*hoverした際の移動*/
.link_text:hover::before {
  bottom: -5px;
}


.general_list li {
  text-indent: -1rem;
  padding-left: 1rem;
}

.general-p {
  font-size: 1.6rem;
  line-height: 1.5;
}

.general-p+.general-p {
  margin-top: .5rem;
}

/*sp表示*/
@media screen and (max-width: 768px) {
  .link_text {
    margin-right: 0.5rem;
    margin-top: 2.5rem;
    font-size: 1.6rem;
  }

  .general-p {
    font-size: 1.4rem;
  }
}

/*end sp表示*/
/*end 共通*/


/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: rgba(255, 248, 243, 0.8);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 0%;
  right: 0%;
  width: 40%;
  background-color: #fff8f3;
  padding: 5rem 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  margin: 4rem auto;
  width: 40%;
}

#g-nav li a {
  color: #1c1e2a;
  text-decoration: none;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #g-nav li {
    width: 50%;
  }

  #g-nav li a {
    font-size: 2rem;
    text-align: center;
    display: inline-block;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #fff8f3;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #1c1e2a;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*========= ENDナビゲーションのためのCSS ===============*/



.wrapper {
  max-width: 1000px;
  width: 92%;
  margin: auto;
  padding: 50px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 50px 0;
  }
}

/*紙吹雪*/
#particles-js {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff8f3;
  /*背景色*/
}

/*END 紙吹雪*/



/*スライドショー*/

/*==================================================
スライダーのためのcss
===================================*/

.slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}



/*========= footerのためのCSS ===============*/
footer {
  background-color: #1c1e2a;
  padding: 0 0 1rem;
  position: relative;
}

footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d4b2e4;
  position: absolute;
  bottom: 2rem;
  left: 0;
}

footer .flowing {
  max-width: 70%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

footer .flowing li {
  width: 23%;
  display: block;
  text-align: center;
}

footer .flowing li .link {
  font-size: 2.8rem;
  color: #d4b2e4;
  letter-spacing: 4px;
  width: 100%;
}


footer .flowing li .link:hover span {
  color: #1c1e2a;
}

/*== 背景が流れる（左から右） */
footer .flowing li .link:before {
  /*色や形状*/
  background: #d4b2e4;
  /*背景色*/
}

/*sp表示*/
@media screen and (max-width: 768px) {
  footer .flowing {
    max-width: 100%;
    padding-right: 12px;
  }

  footer .flowing li .link {
    font-size: 2rem;
  }
}

/*end sp表示*/

/*========= END footerのためのCSS ===============*/


.icon_window {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1px #1C1E2A solid;
  border-top: 3px #1C1E2A solid;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  border-radius: 1px;
  margin-left: 0.4rem;
  vertical-align: middle;
}