@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  /*基準は10pxということ*/
  width: 100%;
  /*画面いっぱいに広げる*/
}

body {
  color: #143346;
  background-color: #F3F4F5;
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 150%;
  text-align: left;
}
body h2 {
  color: #07202F;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 1060px) {
  body h2 {
    font-size: 2.4rem;
  }
}

a {
  text-decoration: none;
}

.hover:hover {
  opacity: 0.5;
}

*,
*:before,
*:after {
  /*擬似要素を含め、全ての要素に指定する*/
  box-sizing: border-box;
  /*サイズを指定しやすくするため*/
}

.none {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
header .header_content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 22px 6rem;
  align-items: center;
}
@media (max-width: 1060px) {
  header .header_content-wrapper {
    padding: 16px;
  }
}
header .header_content-wrapper .header_logo p {
  font-family: "MuseoModerno";
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 1060px) {
  header .header_content-wrapper .header_logo p {
    font-size: 2.8rem;
  }
}
header .header_content-wrapper nav {
  font-family: "MuseoModerno";
  font-weight: 400;
  font-size: 2rem;
}
@media (max-width: 1060px) {
  header .header_content-wrapper nav {
    font-size: 1.5rem;
  }
}

.header-white p {
  color: #F3F4F5;
}
.header-white a {
  color: #f3f4f5;
}

.header-navy p {
  color: #07202F;
}
.header-navy a {
  color: #07202F;
}

.gnavi li a {
  /*円の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi li.current a,
.gnavi li a:hover {
  color: #07202F;
}

.gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -10px;
  left: -68px;
  /*線になる丸の形状*/
  width: 334%;
  height: 8px;
  border-radius: 50%;
  background: #07202F;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0.04, 1);
  /*X方向0.04、Y方向1*/
  transform-origin: center bottom;
  /*中央下部基点*/
}
@media (max-width: 1060px) {
  .gnavi li a::after {
    width: 261%;
    height: 5px;
    bottom: -5px;
    left: -36px;
  }
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  height: 2px;
  /*縦幅を変化*/
  border-radius: 0;
  /*丸みをなくす*/
  transform: scale(0.2, 1);
  /*X方向0.8、Y方向1にスケール拡大*/
}

footer {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-top: 40px;
  color: #AFAFAF;
}
@media (max-width: 1060px) {
  footer {
    padding-top: 32px;
  }
}
footer .footer_conttact {
  margin-bottom: 60px;
  font-family: "MuseoModerno";
  line-height: normal;
}
@media (max-width: 1060px) {
  footer .footer_conttact {
    margin: 0 auto;
  }
}
footer .footer_conttact p {
  font-weight: 100;
  color: #F3F4F5;
}
footer a {
  color: #AFAFAF;
  font-size: 2.7rem;
}
@media (max-width: 1060px) {
  footer a {
    font-size: 2rem;
  }
}
footer a:hover {
  opacity: 1.5;
  color: #F3F4F5;
}
footer small {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}

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

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

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

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

/*波形のアニメーション*/
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}/*# sourceMappingURL=common.css.map */