body {
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
}
body,h1,h2,h3,h4,h5,h6,p {
  margin: 0;
}
/* 蜈ｨ菴� */
picture, img {
  display: block;
  width: 100%;
  height: auto;
}
.float {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 10;
}
.float a {
  display: block;
  width: 25vw;
  height: 25vw;
}
.float a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* CTA */
.CTA {
  border: 11px solid #D80D18;
  padding: 20px 0
}
.CTA h2 {
  color: #D80D18;
  font-size: 24px;
  line-height: 1.8rem;
  font-weight: normal;
  text-align: center;
  width: 340px;
  margin: 0 auto 20px;
  padding: 14px 0;
  border-top: 1px solid #D80D18;
  border-bottom: 1px solid #D80D18;
}
.CTA-inner {
  width: 340px;
  margin: 0 auto;
}
.CTA-inner-image {
  margin-bottom: 20px;
}
.CTA-inner-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.CTA-inner-text-left h3 {
  font-size: 16px;
  font-weight: normal;
  color: #D80D18;
  width: 104px;
  line-height: 38px;
  margin-bottom: 10px;
  border: solid 1px #D80D18;
  text-align: center;
}
.CTA-inner-text-left h4 {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  background-color: #D80D18;
  clip-path: polygon(0% 0%, 94% 0, 100% 50%, 94% 100%, 0% 100%);
  width: 112px;
  line-height: 36px;
  padding-left: 8px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.CTA-inner-text-left h4 span {
  font-size: 22px;
}
.CTA-inner-text-right p {
  font-size: 14px;
}
.CTA-inner-text h5 {
  font-size: 60px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: normal;
  line-height: 0.8em;
}
.CTA-inner-text h5 span {
  font-size: 24px;
}
.CTA-inner-button-wrapper {
  text-align: center;
}
.CTA-inner-button {
  display: block;
  font-size: 16px;
  line-height: 48px;
  width: 100%;
  background-color: #2D2926;
  color: #fff;
  text-decoration: none;
  border-radius: 24px;
  margin-bottom: 20px;
}
.CTA-inner-button-wrapper .sm-text {
  font-size: 10px;
  margin-bottom: 20px;
}
.CTA-inner-button-wrapper .md-text {
  font-size: 12px;
}
.CTA-inner-button-wrapper .md-text.border {
  border: solid 1px #2D2926;
  width: 66px;
  margin: 0 auto 10px;
}
.CTA-outer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-align: center;
  line-height: 56px;
  width: calc(100% - 20px);
  text-decoration: none;
  border-radius: 32px;
  margin: 28px auto 40px;
}
.CTA-outer-button::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top:3px solid #000;
  border-right:3px solid #000;
  transform: rotate(45deg);
  margin-left: 10px;
}
.CTA-outer-button.gold {
  background-color: #C6AA76;
  color: #000;
}
.CTA-outer-button.gray {
  background-color: #D0D3D4;
  color: #000;
}
/* 繝医ャ繝� */
.top-visual {
  position: relative;
}
.top-visual-button {
  position: absolute;
  top: 82.2vw;
  width: 15.2vw;
  height: 5vw;
}
.top-visual-button:first-of-type {
  left: 18vw;
}
.top-visual-button:last-of-type {
  right: 17.8vw;
}
.top-01 {
  margin-bottom: 24px;
}
.top-02 {
  margin-bottom: 28px;
}
/* 讖溯� */
.function-01 {
  margin-bottom: 28px;
}
.function-02 {
  margin-bottom: 28px;
}

@media screen and (min-width: 960px) {
  .sp-only {
    display: none;
  }
  .float a {
    display: block;
    width: 125px;
    height: 125px;
  }
  /* CTA */
  .CTA {
    width: 900px;
    margin: 0 auto;
  }
  .CTA h2 {
    line-height: 1.25;
    width: 500px;
    padding: 16px 0;
  }
  .CTA-inner {
    width: 570px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 15px;
  }
  .CTA-inner-image {
    margin: 0;
    width: 240px;
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
  .CTA-inner-text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 0;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
  .CTA-inner-text-left {
    margin-right: 20px;
  }
  .CTA-inner-text-left h4 {
    margin: 0;
  }
  .CTA-inner-text h5 {
    margin-bottom: -12px;
  }
  .CTA-inner-button {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    width: 400px;
    margin: 0 auto 20px;
    font-size: 20px;
    line-height: 56px;
    border-radius: 32px;
  }
  .CTA-inner-button-wrapper .pc-flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .CTA-inner-button-wrapper .sm-text {
    margin-bottom: 12px;
  }
  .CTA-inner-button-wrapper .md-text {
    font-size: 10px;
  }
  .CTA-inner-button-wrapper .md-text.border {
    border: solid 1px #2D2926;
    width: 66px;
    margin: 0 16px 0 0;
  }
  .CTA-outer-button {
    width: 400px;
    margin: 30px auto 42px;
  }
  /* 繝医ャ繝� */
  .top-visual-button {
    position: absolute;
    top: 52.4vw;
    width: 9.2vw;
    height: 3vw;
  }
  .top-visual-button:first-of-type {
    left: 28vw;
  }
  .top-visual-button:last-of-type {
    right: 24.8vw;
  }
  .top-01 {
    margin-bottom: 20px;
  }
  .top-02 {
    margin-bottom: 30px;
  }
  /* 讖溯� */
  .function-01 {
    margin-bottom: 20px;
  }
  .function-02 {
    margin-bottom: 30px;
  }
}