/* commom */

body {
  background-color: rgb(20, 65, 180);
  font-family: Helvetica, Arial, sans-serif;
}

/* header */

.header {
  width: 375px;
  margin: 0 auto;
}
.m-logo {
  width: 170px;
  margin: 50px auto 8px;
}
.logo-text p {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
  color: white;
}
.g-nav {
  margin-top: 40px;
  margin-bottom: 40px;
}
.nav-wrap a {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin: 15px 0px;
  text-align: center;
  transition-duration: 0.1s;
}
.nav-wrap a:hover {
color: rgb(127, 217, 250);
}

/* section */

.section {
  width: 375px;
  margin: 0 auto;
}
.h1-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-bottom: 6px;
}
.add-tel {
  font-size: 12px;
  text-align: center;
  color: white;
}
.add-tel li {
  margin-bottom: 4px;
}
.add-tel a {
  color: white;
  text-decoration: none;
}
.btn-wrap {
  width: 300px;
  margin: 20px auto 20px;
  text-align: center;
}
.btn-wrap a {
  display: inline-block;
  width: 200px;
  margin: 20px 0px;
  padding: 11px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: white;
  fill:#FFFFFF;
  background-color: rgb(20, 65, 180);
  border: 2px solid white;
  border-radius: 200px;
  transition-duration: 0.1s;
  position: relative;
}
.insta {
  text-indent: 42px;
}
.btn-wrap a:hover {
  color: rgb(20, 65, 180);
  fill: rgb(20, 65, 180);
  background-color: white;
}
.copylight {
  font-size: 11px;
  text-align: center;
  color: white;
  margin: 0 0 40px;
}

/* インスタロゴ */

.btn-wrap svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  left: 42px;
}

/* ロゴアニメーション */

.ups-logo0 {
  fill:#FFFFFF;
  stroke: #FFFFFF;
  stroke-dasharray: 2020;
  stroke-dashoffset: 0;
  stroke-width: 4;
  animation: logo-mov0 3s ease forwards -0.5s;
}
@keyframes logo-mov0 {
  0% {
    stroke-dashoffset: 2020;
    stroke: #FFFFFF;
    fill:transparent;
  }
  40% {
    stroke-dashoffset: 2020;
    stroke: #FFFFFF;
    fill:transparent;
  }
  92% {
    fill:transparent;
    stroke: #FFFFFF;
  }
  100% {
    stroke-dashoffset: 0;
    stroke:transparent;
    fill:#FFFFFF;
  }
}
.ups-logo1 {
  fill:#7079AD;
  stroke: #FFFFFF;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  stroke-width: 4;
  animation: logo-mov1 3s ease forwards -0.5s;
}
@keyframes logo-mov1 {
  0% {
    stroke-dashoffset: 1000;
    stroke: #FFFFFF;
    fill:transparent;
  }
  40% {
    stroke-dashoffset: 1000;
    stroke: #FFFFFF;
    fill:transparent;
  }
  92% {
    stroke: #FFFFFF;
    fill:transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke:transparent;
    fill:#7079AD;
  }
}