@charset "UTF-8";
/*カラー*/
:root {
  --primary-main:#0095D8;
  --primary-dark:#00518F;
  --primary-light:#EFF9FD;
  --primary-gradation:linear-gradient(to left, #0095D8 0%, #00518F 100%);
  --secondary-main:#F6B3B8;
  --secondary-dark:#D29EA2;
  --secondary-light:#FEF5F6;
  --secondary-gradation:linear-gradient(90deg, #FADBE1 0%, #F6B3B8 100%);
  --line:#D3DADD;
  --main-text:#2D2D2D;
  --sub-text:#7A8A93;
  --extra-text:#666666;
  --line-main:#D3DADD;
}

html {
  font-size: 10px;
  background: var(--primary-light);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--main-text);
}

h2 {
  font-size: 2.4em;
  font-weight: 500;
}

p {
  font-size: 1.4em;
  font-weight: 400;
  line-height: 2em;
}

a {
  color: var(--primary-main);
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

.br-sp {
  display: none;
}

.header {
  height: 64px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}

.header-logo {
  height: 20px;
}

.footer {
  background: var(--main-text);
  color: white;
  display: flex;
  justify-content: right;
  padding: 24px 40px;
}

.copyright p {
  font-size: 1em;
  font-weight: 400;
}

.main {
  position: relative;
  width: 90%;
  height: calc(100vh - 191px);
  display: block;
  text-align: center;
  margin: 128px auto 0;
  align-items: center;
}


.logo {
  margin: 24px auto;
}

.logo img{
  height: 40px;
}

.pic {
  margin: 32px auto;
}

.pic img {
  width: 210px;
}

.text {
  text-align: center;
}

.info {
  color: var(--primary-main);
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link span {
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }

  .header {
    height: 48px;
    padding: 0 24px;
  }

  .header-logo {
    height: 16px;
  }

  h2 {
    font-size: 1.8em;
  }

  p {
    line-height: 1.6em;
  }

  .footer {
    justify-content: center;
  }
}
