.pc {
  display: none;
}
.sp {
  display: block;
}
html, body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: #fff;
}
#wrapper {
  min-height: 100vh;
  background-image: url("../img/bg01.jpg");
  background-repeat: repeat-x;
  background-position: bottom;
  box-sizing: border-box;
  position: relative;
}
header {
  width: 100vw;
  height: 40px;
  background-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0px;
  z-index: 99;
}
header nav h1 a {
  width: 103px;
  height: 30px;
  position: fixed;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-image: url("../img/logo01-s.png");
  background-repeat: no-repeat;
  background-size: 103px 30px;
}
header nav h1 a span {
  display: none;
}
header nav .menu-btn {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 89;
}
header nav .menu-btn span, header nav .menu-btn span:before, header nav .menu-btn span:after {
  content: '';
  display: block;
  height: 4px;
  width: 26px;
  background-color: #143367;
  position: absolute;
}
header nav .menu-btn span:before {
  bottom: 10px;
}
header nav .menu-btn span:after {
  top: 10px;
}
/*メニューXボタン*/
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  background-color: #fff;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  background-color: #fff;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
header nav ol {
  padding: 40px 0 0;
  width: 100%;
  position: fixed;
  top: -210px; /*値を変更してメニューを画面外へ*/
  left: 0;
  z-index: 80;
  background: linear-gradient(to top, rgba(20, 51, 103, 0.9) 0%, rgba(43, 86, 177, 0.9));
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.0));
  transition: all 0.5s; /*アニメーション設定*/
}
header nav ol li {
  border-top: solid 1px #fff;
  list-style: none;
}
header nav ol li a, header nav ol li .now {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: block;
}
header nav ol li a:hover {
  opacity: 1.0;
  text-decoration: underline;
  transition: all 0.25s;
}
header nav ol li .now {
  opacity: 1.0;
}
header nav ol li a:before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 28px;
  top: 15px;
}
#menu-btn-check:checked ~ ol {
  top: 0; /*メニューを画面内へ*/
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.75));
}
.Content {
  text-align: center;
}
.Content .contentTittle h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 32px;
  color: #143367;
}
.Content .contentTittle > p {
  padding: 0px 10px;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  text-transform: capitalize;
  display: inline-block;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 6px rgba(79, 152, 259, 0.75), 2px -2px 6px rgba(79, 152, 259, 0.75), -2px 2px 6px rgba(79, 152, 259, 0.75), -2px -2px 6px rgba(79, 152, 259, 0.75);
  background-color: #143367;
  position: relative;
}
.Content .contentTittle p:before {
  content: "";
  width: 12px;
  height: 22px;
  position: absolute;
  top: 0;
  left: -12px;
  background-image: url("../img/titleEdge01.svg");
}
.Content .contentTittle p:after {
  content: "";
  width: 12px;
  height: 22px;
  position: absolute;
  top: 0;
  right: -12px;
  transform: scale(-1, 1);
  background-image: url("../img/titleEdge01.svg");
}
footer {
  width: 100px;
  height: 14px;
  display: block;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translateX(-50px);
  bottom: 40px;
}
footer a {
  text-decoration: none;
  text-shadow: 1px 1px 6px rgba(79, 152, 259, 0.75), 1px -1px 6px rgba(79, 152, 259, 0.75), -1px 1px 6px rgba(79, 152, 259, 0.75), -1px -1px 6px rgba(79, 152, 259, 0.75);
}
footer a:after {
  content: "";
  width: 40px;
  height: 26px;
  background-image: url("../img/tm-logo.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 19px;
  left: 30px;
  filter: drop-shadow(0px 0px 5px rgba(79, 152, 259, 1.00));
}
footer a h3 {
  font-size: 8px;
  color: #030105;
  line-height: 14px;
  text-align: center;
}
footer a h3:hover, footer a h3:visited {
  color: #030105;
}
@media screen and (min-width: 800px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  header {
    width: 100vw;
    height: 19px;
    background: #143367;
    background: linear-gradient(to top, #143367 0%, #2b56b1 100%);
    border-bottom: 1px solid #000;
    box-shadow: 0px 2px 4px rgba(43, 109, 249, 0.75);
  }
  header nav {
    max-width: 800px;
    height: 20px;
    margin: 0 auto;
    position: relative;
  }
  header nav h1 {
    position: absolute;
    top: 0px;
    left: 0px;
  }
  header nav h1 a {
    width: 160px;
    height: 60px;
    background-image: url("../img/logo02-s.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: static;
    transform: translateX(0);
    filter: drop-shadow(0px 0px 2px rgba(43, 109, 249, 0.75));
  }
  header nav .menu-btn {
    display: none;
  }
  header nav ol {
    width: auto;
    padding-top: 0;
    height: 20px;
    background-color: transparent;
    position: static;
    right: 0px;
    float: right;
    display: inline-block;
  }
  header nav ol li {
    border-top: none;
    float: left;
  }
  header nav ol li a, header nav ol li .now {
    padding: 0 10px;
    opacity: 0.7;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-align: center;
  }
  header nav ol li .now {
    opacity: 1.0;
  }
  header nav ol li a:hover {
    text-decoration: none;
    opacity: 1.0;
    text-shadow: 4px 4px 6px rgb(79 152 255 / 75%), 4px -4px 6px rgb(79 152 255 / 75%), -4px 4px 6px rgb(79 152 255 / 75%), -4px -4px 6px rgb(79 152 255 / 75%);
    transition: all 0.25s; /*アニメーション設定*/
  }
  header nav ol li a::before {
    display: none;
  }
  .Content {
    margin: 0 auto;
    max-width: 800px;
  }
  @media screen and (min-width: 1024px) {
  
 }}