@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

.p-info {
  text-align: center;
  margin: 0 auto;
  background-color: #fafafa;
  padding: 200px 0;
}

@media only screen and (max-width: 640px) {
  .p-info {
    margin: 0 auto 0;
    padding: 150px 20px;
  }
}


.p-info__titlewarp {
  text-align: center;
}

.p-info__title {
   font-size: 48px;
    font-weight: bold;
    color: #232323;
    line-height: 1.5em;
    letter-spacing: 0.025em;
    font-weight: 400;
}

@media only screen and (max-width: 640px) {
  .p-info__title {
    font-size: 24px;
  }
}

.p-info__titleSub {
  font-size: 24px;
    font-weight: bold;
    color: #232323;
    line-height: 1.5em;
    letter-spacing: 0.025em;
    position: relative;
    display: inline-block;
    padding: 0 30px;
    font-weight: 400;
}

@media only screen and (max-width: 640px) {
    .p-info__titleSub {
        font-size: 16px;
        font-weight: bold;
        color: #232323;
        line-height: 1.5em;
        letter-spacing: 0.025em;
        position: relative;
        display: inline-block;
        padding: 0 30px;
        font-weight: 400;
    }
}

.p-info__titleSub:before,
.p-info__titleSub:after {
  content: "";
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #ef7c1c;
}

.p-info__titleSub:before {
  left: 0;
}

.p-info__titleSub:after {
  right: 0;
}

.p-info__warp {
  line-height: 2;
  margin: 50px auto 0;
}

.p-info__warp a {
  color: #6b95c4;
  transition: 0.3s;
}

.p-info__warp a a:hover {
  opacity: 0.7;
}

.p-info__sns {
  padding: 100px 20px 100px;
  /* background-color: #fff; */
}

@media only screen and (max-width: 640px) {
  .p-info__sns {
    padding: 80px 20px;
  }
}

.p-info__sns-logo {
  width: 100px;
  margin: 0 auto;
}

.p-info__sns-follow {
  font-weight: 600;
  line-height: 1;
  font-size: 16px;
  padding: 2em 0 0.5em 0;
  text-align: center;
}

.p-info__sns-comment {
  font-weight: 400;
  line-height: 1;
  font-size: 16px;
  padding: 0.5em 0 2em 0;
  text-align: center;
}

.p-info__sns-instagram {
  width: 80px;
  margin: 0 auto;
  padding: 20px 0;
}

.p-info__sns-instagram a {
  display: inline-block;
  transition: 0.3s;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #f6f6f6;
  border-radius: 100px;
}

.p-info__sns-instagram a:hover {
  opacity: 0.5;
}


/*== 無限に波紋が広がる */

.btnripple2 {
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*波紋の形状*/
  display: inline-block;
  background: #ddd;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #f6f6f6;
  outline: none;
  /*アニメーションの設定*/
  transition: all 0.3s;
}

/*hoverした際の背景色の設定*/
.btnripple2:hover {
  background: #ddd;
}

/*波形を2つ設定*/
.btnripple2::after,
.btnripple2::before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: -25%;
  top: -25%;
  /*波形の形状*/
  border: 1px solid #ddd;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  animation: 1s circleanime linear infinite;
}

/*波形の2つ目は0.5秒遅らせてアニメーション*/
.btnripple2::before {
  animation-delay: 0.5s;
}

/*波形のアニメーション*/
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/*中央矢印*/
.btnripple2 span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 38%;
  left: 45%;
  /*矢印の形状*/
  border: 14px solid transparent;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-color: #fff;
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ddd;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  color: #232323;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  padding: 5px;
  font-weight: 600;
  border: 1px solid #ddd;
}

#page-top a:hover {
  background: #f6f6f6;
  color: #232323;
  opacity: 0.95;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

html {
  scroll-behavior: smooth;
}








#SNS-ARKNETS {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  #SNS-ARKNETS {
    position: fixed;
    left: 0px;
    bottom: 20px;
    z-index: 2;
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .p-snsarknets__inner {
    display: flex;
    padding: 0 60px 0 20px;
  }
}

.p-snsarknets__inner a {
  background-color: #f6f6f6;
  border: 1.5px solid #ef7c1c;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

.p-snsarknets__inner a:hover {
  opacity: 0.7;
}

.p-snsarknets__inner li {
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .p-snsarknets__inner li {
    margin: 0 10px 0 0;
  }
}


.p-snsarknets__inner li:last-child {
  margin: 0 0 0;
}




/* 各種アイコン説明 */
.p-info__sns__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  text-align: left;
}

.p-info__sns__list li {
  width: 410px;
  background-color: #6b95c4;
  display: flex;
  align-content: flex-start;
  align-items: center;
  padding: 10px;
}
.p-info__sns__list li div {
  width: 100px;
  background-color: #fafafa;
  margin: 0 10px 0 0;
}


.p-info__sns__list li dl{
  background-color: #fafafa;
}
