@charset "UTF-8";


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}
body {
  color: #333;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}
a {
  text-decoration: none;
}
ul,ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.visible_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .visible_pc {
    display: none;
  }
  .visible_sp {
    display: block;
  }
}

/* --------------------
  UTILITY
-------------------- */
:root {
  --orange: #FF792E;
  --blue: #122189;
}
.l-inner {
  max-width: 800px;
  padding: 0 6.4%;
  margin: 0 auto;
}
.l-section {
  padding: 50px 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0;
  }
}


/* --------------------
  component
-------------------- */
.c-cta__list:has(*:not(:only-child)) {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}
.c-cta__button {
  width: 327px;
  margin-left: auto;
  margin-right: auto;
}
.c-cta__button a {
  width: 100%;
  height: 67px;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #00377B;
  border-radius: 50px;
  box-shadow: 0 5px 0 #00377B;
  position: relative;
  transition: 0.2s;
}
_::-webkit-full-page-media, _:future, :root .c-cta__button a {
  font-weight: 600;
}
.c-cta__button a.c-cta__button--01 {
  color: #FFF;
  background: #005FAD;
}
.c-cta__button a.c-cta__button--02 {
  color: #005294;
  background: linear-gradient(93.58deg, #FFCD0C 9.5%, #FFF9E5 51.09%, #FFCD0C 90.36%);
}
.c-cta__button a::before,
.c-cta__button a::after {
  display: block;
  content: "";
  position: absolute;
  transition: 0.2s;
}
.c-cta__button a::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  right: 20px;
  top: 35%;
}
.c-cta__button a::after {
  width: 9px;
  height: 12px;
  clip-path: polygon(9px 50%, 0% 0%, 0% 12px);
  right: 25px;
  top: 43%;
}
.c-cta__button a.c-cta__button--01::before {
  background: #FFF;
}
.c-cta__button a.c-cta__button--01::after {
  background-color: #005FAD;
}
.c-cta__button a.c-cta__button--02::before {
  background: #00377B;
}
.c-cta__button a.c-cta__button--02::after {
  background-color: #FFF9B5;
}
.c-cta__lead {
  color: #00377B;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 6px;
}
.c-note {
  margin-left: 0.5rem;
}
.c-note li {
  color: #555;
  font-size: 12px;
  text-align: left;
  text-indent: -8px;
  margin-left: 12px;
}
.c-note li:before {
  display: inline-block;
  content: "※";
  margin-right: 4px;
}
.c-list {
  list-style: disc;
  margin-left: 1rem;
}
.c-accordion dt {
  cursor: pointer;
}
@media (hover: hover) {
  .c-cta__button a:hover {
    transform: translateY(5px);
    box-shadow: none;
    transition: 0.2s;
  }
}
@media screen and (min-width: 768px) {
  .c-cta__button {
    width: 500px;
  }
  .c-note li {
    font-size: 14px;
    text-indent: -10px;
    margin-left: 14px;
  }
}

/* --------------------
  header
-------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4.26% 0 5.6%;
  position: absolute;
  left: 0;
  top: 11px;
  z-index: 5;
}
header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: auto;
}
header h1 img {
  vertical-align: unset;
}
header::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/icon_20th.svg) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  header{
    right: 0;
    top: 30px;
    margin: auto;
  }
  header h1 {
    width: 201px;
  }
  header::after {
    width: 79px;
    height: 79px;
  }
}
@media screen and (min-width: 1101px) {
  header {
    width: 72.47%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  header {
    width: 100%;
  }
}

/* fv */
.p-fv {
  padding: 80px 0 131px;
  background: linear-gradient(169.01deg, #F98739 0%, #E3A24E 26.47%, #F8D185 50.96%, #E3A24E 74.6%, #F98739 100%);
  overflow: hidden;
}
.p-fv picture {
  display: block;
  text-align: center;
}
.p-fv .c-cta__list {
  margin-top: -20px;
}
@media screen and (max-width: 641px) {
  .p-fv picture {
    display: flex;
    justify-content: center;
  }
  .p-fv picture img {
    max-width: 513px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-fv {
    padding: 30px 0 125px;
  }
  .p-fv picture {
    display: block;
    width: 73.8%;
    margin: 0 auto;
  }
  .p-fv picture img {
    width: 100%;
  }
  .p-fv .c-cta__list {
    margin-top: -90px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-fv .c-cta__list {
    margin-top: -60px;
  }
}

/* intro */
#intro {
  margin-top: -65px;
  padding: 65px 0 38px;
  background: url(../img/bg_intro.webp) center/100% 100% no-repeat;
  z-index: 2;
}
.p-intro__top p {
  font-size: 16px;
  line-height: 2.125;
  margin-bottom: 24px;
}
.p-intro__bottom {
  padding-bottom: 180px;
  background: url(../img/img_wank_01.webp) center bottom/96.5% auto no-repeat;
}
.p-intro__bottom p {
  color: #C77333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 640px) {
  #intro {
    padding: 66px 0 35px;
  }
  #intro .l-inner {
    background: url(../img/img_wank_01_pc.webp) center bottom/100% auto no-repeat;
  }
  .p-intro__top p {
    font-size: 18px;
    line-height: 1.88;
  }
  .p-intro__bottom {
    padding-bottom: 20px;
    background: none;
  }
  .p-intro__bottom p {
    font-size: 24px;
    line-height: 1.66;
  }
}
@media print {
  #intro .l-inner {
    background: url(../img/img_wank_01_pc.webp) center bottom/contain no-repeat;
  }
  .p-intro__bottom {
    background: none;
  }
}


/* present */
#present {
  padding: 80px 0 104px;
  margin-top: -20px;
  background: #005FAD;
}
.p-present {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 51px;
  margin-top: 51px;
}
.p-present__box {
  padding: 42px 24px 24px;
  background: #FFF;
  border-radius: 20px;
  position: relative;
}
.p-present__box dt {
  width: 257px;
  height: 52px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -21px;
  margin: auto;
}
.p-present__box.p01 dt {
  color: #FFF;
  background: #FA4329;
}
.p-present__box.p02 dt {
  color: #005294;
  font-weight: 900;
  text-shadow: -1px -1px 1px #FFF;
  background: linear-gradient(107.37deg, #E08E3D 15.19%, #FFC266 32.62%, #FFF5E1 52.28%, #DFA436 78.99%, #D58723 92.34%);
}
_::-webkit-full-page-media, _:future, :root .p-present__box.p02 dt {
  font-weight: 600;
}
.p-present__box dd:first-of-type h3 {
  margin-bottom: 16px;
}
.p-present__box dd:first-of-type h3 img {
  width: 100%;
}
.p-present__box dd:first-of-type p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  margin-bottom: 6px;
}
.p-present__box dd:first-of-type figure {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.p-present__box dd:first-of-type figure {
  padding: 14px 11px 12px 15px;
  background: #F2F7FB;
}
@media screen and (max-width: 767px) {
  .p-present__box dd:first-of-type h3 img {
    max-width: 327px;
  }
}
@media screen and (min-width: 768px) {
  #present .p-present {
    justify-content: space-between;
  }
  #present .p-present__box {
    width: 380px;
    padding-top: 56px;
  }
  .p-present__box dt {
    width: 332px;
    height: 60px;
    font-size: 18px;
  }
  .p-present__box dd:first-of-type p {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* detail */
.p-detail {
  padding-bottom: 104px;
  margin-top: -40px;
  border-radius: 30px 30px 0 0;
  z-index: 2;
}
.p-detail#p01 {
  background: #FFF;
}
.p-detail#p02 {
  background: #FFF5E1;
  z-index: 2;
}
.p-detail .p-present__box {
  padding: 106px 0 0;
  margin-bottom: 32px;
  background: transparent;
  position: relative;
}
.p-detail .p-present__box.p02 {
  padding-top: 110px;
}
.p-detail .p-present__box::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-detail .p-present__box.p01::before {
  width: 204px;
  height: 118px;
  background: url(../img/img_wank_02.webp) center/contain no-repeat;
}
.p-detail .p-present__box.p02::before {
  width: 211px;
  height: 122px;
  background: url(../img/img_wank_03.webp) center/contain no-repeat;
}
.p-detail .p-present__box dt {
  width: 327px;
  height: 64px;
  font-size: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  position: static;
}
.p-detail .p-present__box dd:first-of-type {
  margin-bottom: 16px;
}
.p-detail .p-present__box.p02 dd:first-of-type h3 img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(99%) saturate(1403%) hue-rotate(186deg) brightness(99%) contrast(101%);
}
.p-detail .p-present__box dd:first-of-type .p-present__text p {
  color: #FA4329;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.p-detail .p-present__box.p02 dd:first-of-type .p-present__text p {
  color: #005294;
}
.p-detail .p-present__box.p02 dd:first-of-type .p-present__text + p {
  color: #000;
  font-weight: 400;
  text-align: left;
  line-height: 1.75;
  margin-bottom: 16px;
}
.p-detail .p-present__box dd:first-of-type figure {
  padding: 8px 20px 10px 24px;
}
.p-detail .p-present__box.p02 dd:first-of-type figure {
  background: #FFF;
}
.p-detail .p-present__box table {
  border-collapse: collapse;
}
.p-detail .p-present__box table tr {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 8px;
}
.p-detail .p-present__box table th,
.p-detail .p-present__box table td {
  font-size: 14px;
}
.p-detail .p-present__box table th {
  display: block;
  width: 48px;
  color: #FFF;
  font-weight: 600;
  line-height: 1.2;
  padding: 4px 0;
  margin-right: 8px;
  margin-bottom: auto;
  border-radius: 4px;
  flex-shrink: 0;
}
.p-detail .p-present__box.p01 table th {
  background: #FA4329;
}
.p-detail .p-present__box.p02 table th {
  background: #D58723;
}
.p-detail .p-present__box table td {
  color: #000;
  line-height: 1.43;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-detail .p-present__box dt {
    width: 100%;
    height: 44px;
    font-size: 22px;
    line-height: 1.09;
    margin-bottom: 24px;
  }
  .p-detail .p-present__box dd:first-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
  }
  .p-detail .p-present__box dd:first-of-type h3 {
    margin-bottom: 0;
  }
  .p-detail .p-present__box dd:first-of-type .p-present__text p {
    font-size: 18px;
    text-align: left;
  }
  .p-detail .p-present__box.p02 dd:first-of-type .p-present__text + p {
    font-size: 18px;
    text-align: center;
    width: fit-content;
    margin: 0 auto 24px;
  }
  .p-detail .p-present__box dd:first-of-type figure {
    order: 1;
  }
  .p-detail .p-present__box.p01 dd:first-of-type h3 {
    order: 2;
  }
  .p-detail .p-present__box dd:first-of-type .p-present__text {
    order: 2;
  }
  .p-detail .p-present__box.p02 dd:first-of-type p {
    order: 3;
  }
  .p-detail .p-present__box table th,
  .p-detail .p-present__box table td {
    font-size: 16px;
  }
  .p-detail .p-present__box.p02 table th {
    width: 84px;
  }
}

/* vote */
#vote {
  padding-top: 90px;
  padding-bottom: 104px;
  margin-top: -40px;
  background: #FFF;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
  border-radius: 30px 30px 0 0;
  z-index: 2;
}
#vote h2 {
  margin-bottom: 32px;
}
.p-vote {
  padding: 20px 24px 32px;
  margin-top: 104px;
  background: #FFF5E1;
  border-radius: 20px;
  position: relative;
}
.p-vote::before {
  display: block;
  content: "";
  width: 104px;
  height: 104px;
  background: url(../img/img_wank_04.webp) center/contain no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: -70px;
  margin: auto;
}
.p-vote__flow {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 42px;
}
.p-vote__item {
  width: 100%;
  border-radius: 20px;
  position: relative;
}
.p-vote__item:not(:last-of-type)::after {
  display: block;
  content: "";
  width: 28px;
  height: 10px;
  background-color: #D58723;
  clip-path: polygon(50% 10px, 0% 0%, 28px 0%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  margin: auto;
}
.p-vote__item dt {
  padding: 3px 0 9px;
  background: #D58723;
  border-radius: 20px 20px 0 0;
}
.p-vote__item dt img {
  width: auto;
  height: 18px;
}
.p-vote__item dd {
  padding: 20px 16px;
  background: #FFF;
  border-radius: 0 0 20px 20px;
}
.p-vote__item dd p {
  color: #000;
  font-size: 14px;
  line-height: 1.43;
  margin-bottom: 24px;
}
.p-vote__item dd p a {
  color: #0020FF;
  font-weight: 600;
  text-decoration: underline;
}
.p-vote__item#s01 dd figure {
  width: 91px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}
.p-vote__item#s01 dd figure img {
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-vote {
    padding: 32px 24px;
  }
  .p-vote__flow {
    margin-top: 24px;
    align-items: stretch;
    column-gap: 5.5%;
  }
  .p-vote__item {
    width: 29.5%;
    max-width: 222px;
    display: flex;
    flex-direction: column;
  }
  .p-vote__item:not(:last-of-type)::after {
    top: 0;
    bottom: 0;
    left: auto;
    right: -36px;
    transform: rotate(-90deg);
  }
  .p-vote__item dd {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .p-vote__item dd p {
    font-size: 18px;
    line-height: 1.66;
  }
  .p-vote__item#s01 dd p {
    padding: 14px 0;
  }
  .p-vote__item#s01 dd figure {
    width: 127px;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left2 {
  from {
    transform: translateX(100%);
  }
    to {
    transform: translateX(0%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
    to {
    transform: translateX(0%);
  }
}
.scroll-infinity {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-bottom: 40px;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  column-gap: 24px;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  margin-left: 24px;
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}
.scroll-infinity__list--right{
  margin-right: 24px;
  animation :infinity-scroll-right 100s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: 151px;
}
.scroll-infinity__item > img {
  width: 100%;
}
.scroll-infinity__item > figcaption {
  color: #6F6F6F;
  font-size: 12px;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .scroll-infinity__item {
    width: 238px;
  }
  .scroll-infinity__list {
    column-gap: 40px;
  }
  .scroll-infinity__list--left {
    margin-left: 40px;
  }
  .scroll-infinity__list--right{
    display: none;
  }
  .scroll-infinity__item > figcaption {
    font-size: 14px;
  }
}


/* questions */
#questions {
  padding-bottom: 64px;
  margin-top: -40px;
  background: #FFF5E1;
  border-radius: 30px 30px 0 0;
  z-index: 2;
}
.p-questions {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 32px;
}
.p-questions__item {
  color: #000;
  width: 100%;
  text-align: left;
  padding: 24px 16px;
  background: #FFF;
  border-radius: 10px;
}
.p-questions__item > dt {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.47;
  padding-right: 26px;
  position: relative;
}
.p-questions__item > dt > span {
  display: block;
  width: 26px;
  height: 26px;
  background: #005FAD;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-questions__item > dt > span > span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
.p-questions__item > dt > span > span::before,
.p-questions__item > dt > span > span::after {
  display: block;
  content: "";
  width: 8px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-questions__item > dt > span > span::after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.p-questions__item.is-open > dt > span > span::after {
  transform: rotate(180deg);
  transition: 0.2s;
}
.p-questions__item dd {
  display: none;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #B3CFE6;
}
.p-questions__item dd p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.p-questions__item dd p:not(:last-child) {
  margin-bottom: 12px;
}
.p-questions__item dd a {
  /* font-size: 15px; */
  font-weight: 600;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
@media print {
  .p-questions__item dd {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-questions__item {
    padding-left: 32px;
    padding-right: 32px;
  }
  .p-questions__item > dt {
    font-size: 20px;
  }
  .p-questions__item dd p {
    font-size: 18px;
  }
  .p-questions__item dd a {
    font-size: 18px;
  }
}

/* attention */
#attention {
  color: #FFF;
  background: #005FAD;
}
#attention h2 {
  margin-bottom: 32px;
}
#attention dl {
  line-height: 1.5;
  text-align: left;
  margin-bottom: 24px;
}
#attention .p-attenntion__cont > div:not(:last-of-type) {
  margin-bottom: 24px;
}
#attention .p-attenntion__cont {
  padding: 24px 16px;
  margin-top: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}
#attention dl dt {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
#attention dl dd {
  font-size: 14px;
}
#attention dl + p {
  text-align: left;
}
#attention .c-note {
  margin-top: 8px;
  margin-bottom: 8px;
}
#attention .c-note li {
  color: #FFF;
}
#attention .c-list {
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  #attention .p-attenntion__cont {
    padding: 32px 24px;
    margin-top: 32px;
  }
  #attention dl dt {
    font-size: 18px;
  }
  #attention dl dd {
    font-size: 16px;
  }
}


/* =====================
  l-copyright
===================== */
.l-copyright {
  display: flex;
  justify-content: space-between;
  padding-bottom: 76px;
  position: relative;
}
.l-copyright:before,.l-copyright:after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
}
.l-copyright:before {
  width: 66px;
  height: 57px;
  background: url(/assets/images/bg-onek01.svg) center/contain no-repeat;
  left: 0;
}
.l-copyright:after {
  width: 132px;
  height: 52px;
  background: url(/assets/images/bg-onek02.svg) center/contain no-repeat;
  right: 0;
}
.l-copyright__wrap {
  max-width: 1100px;
  padding: 0 3.125%;
  margin: 37px auto 0;
}
.l-copyright__img {
  display: flex;
  align-items: center;
}
.l-copyright__logo {
  width: 227px;
  margin-right: 24px;
}
.l-copyright__sns {
  display: flex;
}
.l-copyright__sns-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-copyright__sns-item:nth-of-type(3) {
  flex-basis: 32px;
}
.l-copyright__sns-item:not(:last-of-type) {
  margin-right: 15px;
}
.l-copyright__sns-item img {
  width: 100%;
}
.l-copyright__text {
  font-size: 12px;
  text-align: right;
}
.l-copyright__text span {
  display: block;
}
.l-copyright__text-bottom {
  margin-top: 15px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .l-copyright {
    flex-direction: column;
    padding-bottom: 63px;
  }
  .l-copyright:before {
    width: 50px;
    height: 43px;
    left: 27px;
  }
  .l-copyright:after {
    width: 100px;
    height: 40px;
    right: 27px;
  }
  .l-copyright__wrap {
    width: 100%;
  }
  .l-copyright__img {
    flex-direction: column;
  }
  .l-copyright__logo {
    width: 190px;
    margin-right: 0;
    margin-bottom: 22px;
  }
  .l-copyright__sns {
    margin-bottom: 24px;
  }
  .l-copyright__sns-item {
    width: 32px;
    height: 32px;
  }
  .l-copyright__text {
    font-size: 10px;
    text-align: center;
    line-height: 1.5;
  }
  .l-copyright__text span {
    margin-top: 6px;
  }
}

/* 固定CTA */
.flt {
  position: fixed;
  width: 100vw;
  background: rgba(255,255,255,0.7);
  left: 0;
  bottom: -64px;
  z-index: 10;
  transition: 0.2s;
}
.flt.is-fixed {
  bottom: 0;
}
.flt__inner {
  padding: 9px 0 11px;
}
.flt .c-cta__list {
  flex-direction: row;
  justify-content: center;
  column-gap: 24px;
}
.flt .c-cta__button {
  width: 167px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .flt .c-cta__button a {
    height: 44px;
    font-size: 15px;
    padding-right: 0;
    box-shadow: 0 3px 0 #00377B;
  }
  .flt .c-cta__button a::before,
  .flt .c-cta__button a::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .flt {
    bottom: -85px;
  }
  .flt__inner {
    padding: 14px 0;
  }
  .flt .c-cta__button {
    width: 310px;
  }
  .flt .c-cta__button a {
    height: 57px;
    font-size: 22px;
  }
}

/* modal */
.c-modal {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 1010;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
}
.c-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}
.c-modal__wrap {
  width: 90%;
  max-height: 80vh;
  max-width: 820px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.c-modal__close {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: -45px;
  z-index: 1010;
  cursor: pointer;
}
.c-modal__box {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  border-radius: 20px;
  background: #FFF;
  overflow: auto;
}
.c-modal__inner {
  width: 100%;
  margin: 0 auto;
}
.c-app-box__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 15px;
  background: #F2F2F2;
}
.c-app-box__inner {
  padding: 25px 0;
}
.c-app-box__inner--text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.c-app-box__inner--img {
  display: block;
  margin: 0 auto 25px;
}
.c-modal .c-note li {
  text-align: center;
}

@media print {
  .flt {
    display: none;
  }
  .c-accordion dd {
    display: block;
  }
}