body * {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
h1, h2, h3, h4 {
  line-height: 1;
}

img {
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

@keyframes floating {
  to {
    translate: 0 var(--distance, -2rem)
  }
}

.--floating-animation {
  animation: floating var(--animation-duration, .5s) var(--animation-delay, 0s) ease-in-out infinite alternate;
}

/* 文字色 */
/* グラデーション */
.-color-red-gradient {
  display: inline-block;
  background: linear-gradient(60deg, #E12F2B, #D80200);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.-color-yellow-gradient {
  display: inline-block;
  background: linear-gradient(60deg, #F4A44D, #F96F06);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.-color-green-gradient {
  display: inline-block;
  background: linear-gradient(60deg, #5BC29F, #009B66);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.-color-blue-gradient {
  display: inline-block;
  background: linear-gradient(60deg, #59A8E3, #007DD8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-contents ol {
  padding: 0;
}
.l-contents li {
  list-style: none;
}
.l-contents dl {
  margin: 1rem 0;
}
.l-contents dt {
  margin: 1rem 0 0 0;
}
.l-contents dd dl {
  margin-left: 2rem;
}

.l-contents {
  max-width: 960px;
  margin: 3rem auto;
}
.l-contents.--wide {
  max-width: 1260px;
}
.l-contents.--full {
  max-width: 1260px;
}

.l-contents-content {
  margin: 3rem 0;
}

.l-contents-content__header h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.l-contents-content__header h2 {
  font-size: 28px;
  font-weight: bold;
  border-bottom: solid 1px;
  margin-bottom: 1rem;
}

.l-contents-content__footer {
  display: flex;
  justify-content: end;  
}

.font-hiragino-sans {
  font-family: "Hiragino Sans", sans-serif;
}
.font-futura-bold {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.p-hero-title {
  text-align: center;
  padding: 2rem 0 0 0;
}
.p-hero-title.--pc-left {
  text-align: left;
}
.p-hero-title .-h1, .p-hero-title .-h2, .p-hero-title .-h3 {
  font-weight: 700;
}
.p-hero-title .-h1.-hind, .p-hero-title .-h2.-hind, .p-hero-title .-h3.-hind {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.p-hero-title .-h1 {
  font-size: 58px;
}
.p-hero-title .-h2 {
  font-size: 48px;
}
.p-hero-title .-h3 {
  font-size: 38px;
}
.p-hero-title p {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 10px 0;
}
.p-hero-img__header {
  display: block;
  position: relative;
  height: 4rem;
  z-index: 2;
}
.p-hero-img__body {
  margin-top: -3rem;
  display: block;
}
.p-hero-content__footer {
  margin: 2rem 0 4rem;
  text-align: center;
  font-weight: bold;
}
.p-center-button {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
}
.p-center-button img {
  height: 60px;
  width: auto;
}
.sp {
  display: none;
}
.tb {
  display: none;
}

.p-entry {
  background-color: #FFF;
}
.p-entry-container {
  margin-top: -2px;
  background-color: #F9F9F9;
  padding-bottom: 4rem;
}
.p-entry-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.p-entry-header {
  width: 80%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-entry-header-image {
  margin: 0 1rem;
}
.p-entry-item-list {
  font-weight: bold;
  color: #D80200;
  display: flex;
}
.p-entry-item {
  border-right: solid 3px #D80200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem;
}
.p-entry-item:last-child {
  border-right: none;
}
.p-entry-item-link {
  display: grid;
  grid-template-columns: .8fr .2fr;
  justify-content: center;
  align-items: center;
}
.p-entry-item-link-image {
  width: 90%;
}
/* tb */
@media screen and (max-width: 1012px) {
  .pc {
    display: none;
  }
  .sp {
    display: none;
  }
  .tb {
    display: block;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .p-hero-title .-h1, .p-hero-title .-h2 {
    font-size: 36px;
  }
  .p-hero-title .-h3 {
    font-size: 24px;
  }
  .l-contents {
    max-width: 90% !important;
    margin: 3rem auto;
  }
  .l-contents.--full {
    max-width: 100% !important;
    margin: 3rem 0;
  }
  .l-contents-content__header h1 {
    font-size: 25px;
  }
  .l-contents-content__header h2 {
    font-size: 22px;
  }
  .p-hero-content__footer {
    width: 90%;
    margin: 2rem auto 4rem;
  }
  .p-hero-title p {
    font-size: 1rem;
  }
  .p-hero-title.--pc-left {
    text-align: center;
  }
  .p-center-button img {
    height: 48px;
    width: auto;
  }

  .p-entry-header {
    flex-direction: column;
  }
  .p-entry-header-image {
    margin: 1rem 0;
  }

  .p-entry-item-list {
    flex-direction: column;
  }
  .p-entry-item {
    border-right: none;
    border-bottom: solid 2px #D80200;
    justify-content: space-between;
    padding: 1em;
  }
  .p-entry-item-link {
    width: 100%;
    justify-content: start;
  }
  .p-entry-item-link-image {
    width: 2.5em;
  }

  .p-entry-header-image--1 {
    width: 60%;
  }
}
