@charset "UTF-8";
/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
}
@media (max-width:1439px) {
  html {
    font-size: 45%;
  }
}
@media (max-width:1000px) {
  html {
    font-size: 40%;
  }
}
@media (max-width:767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  line-height: 1;
  letter-spacing: 0.05em;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (min-width:768px) {
  a:hover {
    opacity: 0.6;
  }
}
/* -- LAYOUT -- */
.l-inner {
  padding: 0 4rem;
}

.f-sofia {
  font-family: "Sofia Sans Condensed", sans-serif;
}

.js-fadeIn {
  opacity: 0;
}
.js-fadeIn.is-fadeIn {
  -webkit-animation: fadeIn 0.8s ease-in-out forwards;
          animation: fadeIn 0.8s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* -- PROJECT -- */
.p-ham {
  position: absolute;
  top: 0;
  right: 0;
  width: 10.8rem;
  aspect-ratio: 216/216;
  background: url(../../shared_new/img/ham_bg.png) no-repeat center center/contain;
  z-index: 12;
}
@media (max-width:767px) {
  .p-ham {
    width: 13.5rem;
    aspect-ratio: 270/278;
    background: url(../../shared_new/img/ham_bg_sp.png) no-repeat center center/contain;
  }
}
.p-ham_line {
  position: absolute;
  top: 53%;
  left: 64%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.875rem;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.p-ham_line:nth-of-type(1) {
  top: calc(53% - 1.2rem);
}
.p-ham_line:nth-of-type(3) {
  top: calc(53% + 1.2rem);
}
@media (max-width:767px) {
  .p-ham_line {
    width: 3.775rem;
    height: 0.4rem;
  }
}
.p-ham.is-close {
  position: fixed;
}
.p-ham.is-close .p-ham_line {
  width: 4.875rem;
}
.p-ham.is-close .p-ham_line:nth-of-type(1) {
  top: 53%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-ham.is-close .p-ham_line:nth-of-type(2) {
  opacity: 0;
}
.p-ham.is-close .p-ham_line:nth-of-type(3) {
  top: 53%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-menu {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background: #fff url(../../shared_new/img/bg.png) no-repeat center top/cover;
  -webkit-transform: translate(105%);
          transform: translate(105%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: 11;
}
.p-menu.is-open {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.p-menu_head {
  height: 14rem;
  padding: 4.9rem 0 0 5.3rem;
  background: url(../../shared_new/img/menu_border.png) repeat-x left bottom 0.5rem/38.65rem 0.8rem;
}
.p-menu_logo {
  width: 55.5rem;
}
.p-menu_body {
  height: calc(100svh - 14rem);
  background: url(../../shared_new/img/menu_body_bg.png) no-repeat center top/cover;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-menu_body::-webkit-scrollbar {
  display: none;
}
.p-menu_nav {
  padding: 8rem 0 8rem 7rem;
}
@media (max-width:767px) {
  .p-menu_nav {
    padding: 8rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-menu_item {
  list-style: none;
}
@media (max-width:767px) {
  .p-menu_item {
    width: 66rem;
  }
}
.p-menu_item:not(:first-child) {
  margin-top: 5rem;
}
@media (max-width:767px) {
  .p-menu_item:not(:first-child) {
    margin-top: 6rem;
  }
}
.p-menu_ttl.about {
  height: 2.36rem;
  aspect-ratio: 278/59;
}
@media (max-width:1439px) {
  .p-menu_ttl.about {
    height: 2.95rem;
  }
}
@media (max-width:767px) {
  .p-menu_ttl.about {
    width: 13.9rem;
    height: auto;
  }
}
.p-menu_ttl.history {
  height: 2.36rem;
  aspect-ratio: 348/59;
}
@media (max-width:1439px) {
  .p-menu_ttl.history {
    height: 2.95rem;
  }
}
@media (max-width:767px) {
  .p-menu_ttl.history {
    width: 17.4rem;
    height: auto;
  }
}
.p-menu_ttl.radio {
  height: 2.36rem;
  aspect-ratio: 656/59;
}
@media (max-width:1439px) {
  .p-menu_ttl.radio {
    height: 2.95rem;
  }
}
@media (max-width:767px) {
  .p-menu_ttl.radio {
    width: 32.8rem;
    height: auto;
  }
}
.p-menu_ttl.campaign {
  height: 2.36rem;
  aspect-ratio: 747/59;
}
@media (max-width:1439px) {
  .p-menu_ttl.campaign {
    height: 2.95rem;
  }
}
@media (max-width:767px) {
  .p-menu_ttl.campaign {
    width: 37.35rem;
    height: auto;
  }
}
.p-menu_ttl.quiz {
  height: 2.36rem;
  aspect-ratio: 639/60;
}
@media (max-width:1439px) {
  .p-menu_ttl.quiz {
    height: 2.95rem;
  }
}
@media (max-width:767px) {
  .p-menu_ttl.quiz {
    width: 31.95rem;
    height: auto;
  }
}
.p-menu_txt {
  font-size: 1.76rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1.7rem;
}
@media (max-width:1439px) {
  .p-menu_txt {
    font-size: 2.2rem;
  }
}
@media (max-width:767px) {
  .p-menu_txt {
    font-size: 2.2rem;
  }
}

/*//////////////////////////////////////////////////////////////////
kv
//////////////////////////////////////////////////////////////////*/
.p-kv {
  position: relative;
  padding-top: 10.5rem;
}
@media (max-width:767px) {
  .p-kv {
    padding-top: 16rem;
  }
}
.p-kv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.93;
  background: url(../../shared_new/img/bg.png) no-repeat center top/cover;
  z-index: -1;
}
.p-kv_logo {
  position: absolute;
  left: 4rem;
  top: 2rem;
  width: 17.3rem;
  -webkit-animation: fadeIn 0.8s ease-in-out forwards;
          animation: fadeIn 0.8s ease-in-out forwards;
}
@media (max-width:767px) {
  .p-kv_logo {
    left: 3.4rem;
    top: 4rem;
    width: 55.5rem;
  }
}
.p-kv_x-btn {
  position: absolute;
  display: block;
  right: 13.6rem;
  top: 3rem;
  width: 20.7rem;
  z-index: 5;
}
@media (max-width:767px) {
  .p-kv_x-btn {
    right: auto;
    left: 2.1rem;
    top: 15.5rem;
    width: 20.5rem;
  }
}
.p-kv_x-btn .is-on {
  display: none;
}
@media (min-width:768px) {
  .p-kv_x-btn:hover .is-off {
    display: none;
  }
  .p-kv_x-btn:hover .is-on {
    display: block;
  }
}
.p-kv_present-btn {
  position: absolute;
  display: block;
  left: calc(50% + 51rem);
  bottom: -2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 17.75rem;
  z-index: 10;
  opacity: 0;
  -webkit-animation: fadeIn 0.8s 0.5s ease-in-out forwards;
          animation: fadeIn 0.8s 0.5s ease-in-out forwards;
}
.p-kv_present-btn .is-on {
  display: none;
}
@media (min-width:768px) {
  .p-kv_present-btn:hover {
    opacity: 1;
  }
  .p-kv_present-btn:hover .is-on {
    display: block;
  }
  .p-kv_present-btn:hover .is-off {
    display: none;
  }
}
@media (max-width:767px) {
  .p-kv_present-btn {
    left: calc(50% + 27.6rem);
    bottom: -3.5rem;
    width: 17.8rem;
  }
}
.p-kv_content {
  position: relative;
  width: 100%;
}
.p-kv_content::after {
  position: absolute;
  content: "";
  bottom: -18.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 25.5rem;
  background: url(../../shared_new/img/kv_wave.png) no-repeat center center/200rem 25.5rem;
  z-index: 9;
}
@media (max-width:767px) {
  .p-kv_content::after {
    bottom: -10.3rem;
    height: 14.05rem;
    background: url(../../shared_new/img/kv_wave_sp.png) no-repeat center center/75rem 14.05rem;
  }
}
.p-kv_deco {
  position: absolute;
}
@media (max-width:767px) {
  .p-kv_deco {
    display: none;
  }
}
.p-kv_deco.frame {
  top: 15.8rem;
  left: calc(50% - 57.4rem);
  width: 114.4rem;
  z-index: 7;
}
.p-kv_deco.mountain {
  top: 11.8rem;
  left: calc(50% - 44.4rem);
  width: 95.2rem;
  z-index: 3;
}
.p-kv_deco.people {
  top: 3rem;
  left: calc(50% - 32.3rem);
  width: 81rem;
  z-index: 6;
}
.p-kv_deco.radio {
  top: 43.7rem;
  left: calc(50% + 49.7rem);
  width: 5.6rem;
  z-index: 5;
}
.p-kv_deco.sea {
  top: 30.3rem;
  left: calc(50% - 63.3rem);
  width: 128.2rem;
  z-index: 2;
}
.p-kv_deco.tree {
  top: 10.5rem;
  left: calc(50% - 46.5rem);
  width: 109.8rem;
  z-index: 4;
}
.p-kv_deco_wrapper {
  position: absolute;
  top: -10.5rem;
  left: 0;
  width: 100%;
  height: calc(100% + 10.5rem);
  overflow: hidden;
}
.p-kv_swiper-wrapper {
  position: relative;
  max-width: 1143px;
  width: 114.3rem;
  aspect-ratio: 1143/712;
  overflow: hidden;
  margin: 0 auto;
  z-index: 8;
}
@media (max-width:767px) {
  .p-kv_swiper-wrapper {
    width: auto;
    aspect-ratio: auto;
    padding-top: 13rem;
    background: transparent url(../../shared_new/img/kv_mod_sp.png) no-repeat center top/75rem 52.6rem;
  }
}
.p-kv_swiper {
  position: absolute;
  top: 10.7%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
}
@media (max-width:767px) {
  .p-kv_swiper {
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
    height: 100%;
  }
}
.p-kv_swiper img {
  width: 100%;
  aspect-ratio: 1143/712;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: -2.5rem -3.9rem;
     object-position: -2.5rem -3.9rem;
}
@media (max-width:767px) {
  .p-kv_swiper img {
    width: 100%;
    aspect-ratio: 750/709;
    -o-object-position: 0;
       object-position: 0;
  }
}
.p-kv .swiper-wrapper {
  background: #fff;
  clip-path: circle(57.3% at 50% 77.8%);
}
@media (max-width:767px) {
  .p-kv .swiper-wrapper {
    clip-path: url(#responsive-clip);
  }
}

/*//////////////////////////////////////////////////////////////////
about
//////////////////////////////////////////////////////////////////*/
.p-about {
  position: relative;
  padding: 17rem 0 9rem;
  background: url(../../shared_new/img/border.png) repeat-x bottom center/auto 0.2rem, url(../../shared_new/img/bg_02.png) no-repeat center top/cover;
}
@media (max-width:767px) {
  .p-about {
    padding: 25.3rem 0 19rem;
  }
}
.p-about::before {
  position: absolute;
  content: "";
  top: 56%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 4rem);
  max-width: 1415px;
  aspect-ratio: 2830/1174;
  background: url(../../shared_new/img/about_bg.png) no-repeat center center/contain;
  z-index: 0;
}
@media (max-width:767px) {
  .p-about::before {
    top: 20.6rem;
    left: calc(50% + 1rem);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 70rem;
    aspect-ratio: 1400/276;
    background: url(../../shared_new/img/about_bg_sp01.png) no-repeat center center/contain;
  }
}
@media (max-width:767px) {
  .p-about::after {
    position: absolute;
    content: "";
    bottom: 4.5rem;
    left: calc(50% - 1.8rem);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 62.55rem;
    aspect-ratio: 1251/218;
    background: url(../../shared_new/img/about_bg_sp02.png) no-repeat center center/contain;
    z-index: 0;
  }
}
.p-about .l-inner {
  position: relative;
  z-index: 1;
}
.p-about_ttl {
  width: 11.6rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-about_ttl {
    width: 16.4rem;
  }
}
.p-about_subttl {
  font-size: 3rem;
  font-weight: 700;
  color: #1b7dc2;
  text-align: center;
  margin-top: 2rem;
}
@media (max-width:767px) {
  .p-about_subttl {
    margin-top: 3rem;
  }
}
.p-about_txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: 0;
  max-width: 90rem;
  margin: 6rem auto 0;
}
@media (max-width:767px) {
  .p-about_txt {
    font-size: 2.8rem;
    line-height: 4.8rem;
    text-align: left;
    margin: 5.3rem auto 0;
  }
}
@media (max-width:767px) {
  .p-about_txt .read_more {
    display: block;
    overflow: hidden;
    height: 0;
  }
  .p-about_txt .read_more.is-open {
    height: auto;
  }
}
.p-about_txt .read_more_btn {
  display: none;
}
@media (max-width:767px) {
  .p-about_txt .read_more_btn {
    display: block;
    margin-left: auto;
    font-size: 2.608rem;
    font-weight: 700;
    color: #1b7dc2;
    text-align: right;
    text-decoration: underline;
  }
  .p-about_txt .read_more_btn.is-hidden {
    display: none;
  }
}
.p-about_img {
  max-width: 88.2rem;
  margin: 9rem auto 0;
}
@media (max-width:767px) {
  .p-about_img {
    margin: 1rem auto 0;
  }
}

/*//////////////////////////////////////////////////////////////////
radio
//////////////////////////////////////////////////////////////////*/
.p-radio {
  position: relative;
  overflow: hidden;
  background: url(../../shared_new/img/bg_02.png) no-repeat center top/cover;
  padding: 9rem 0 20rem;
}
@media (max-width:767px) {
  .p-radio {
    padding: 8.4rem 0 12rem;
  }
}
.p-radio::before {
  position: absolute;
  content: "";
  top: 51%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 4rem);
  max-width: 1682px;
  aspect-ratio: 3364/2126;
  background: url(../../shared_new/img/radio_bg.png) no-repeat center center/contain;
  z-index: 0;
}
@media (max-width:767px) {
  .p-radio::before {
    top: 4.8rem;
    left: calc(50% - 1.5rem);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 72rem;
    aspect-ratio: 1440/162;
    background: url(../../shared_new/img/radio_bg_sp01.png) no-repeat center center/contain;
  }
}
@media (max-width:767px) {
  .p-radio::after {
    position: absolute;
    content: "";
    bottom: 35.5rem;
    right: 5.4rem;
    width: 26.2rem;
    aspect-ratio: 524/1374;
    background: url(../../shared_new/img/radio_bg_sp02.png) no-repeat center center/contain;
    z-index: 0;
  }
}
.p-radio .l-inner {
  position: relative;
  z-index: 1;
}
@media (max-width:767px) {
  .p-radio .l-inner {
    padding: 0 2rem;
  }
}
.p-radio_ttl {
  width: 27.1rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-radio_ttl {
    width: 41.3rem;
  }
}
.p-radio_subttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1b7dc2;
  text-align: center;
  line-height: 3.932rem;
  margin-top: 5.5rem;
}
@media (max-width:767px) {
  .p-radio_subttl {
    margin-top: 4.8rem;
  }
}
.p-radio_subttl span {
  display: inline-block;
  padding: 0 12rem;
  background: url(../../shared_new/img/radio_ttl_mod_l.png) no-repeat left center/4.4rem auto, url(../../shared_new/img/radio_ttl_mod_r.png) no-repeat right center/4.2rem auto;
}
@media (max-width:767px) {
  .p-radio_subttl span {
    width: 100%;
    padding: 0;
    background: url(../../shared_new/img/radio_ttl_mod_l.png) no-repeat left center/4.9rem auto, url(../../shared_new/img/radio_ttl_mod_r.png) no-repeat right center/4.9rem auto;
  }
}
.p-radio_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 7rem;
     -moz-column-gap: 7rem;
          column-gap: 7rem;
  margin-top: 13rem;
}
@media (max-width:767px) {
  .p-radio_contents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 11.3rem;
    margin-top: 7rem;
  }
}
.p-radio_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #1b7dc2;
}
@media (max-width:767px) {
  .p-radio_content {
    width: 50%;
  }
}
.p-radio_content-head {
  font-size: 1.814rem;
  font-weight: 700;
  line-height: 2.252rem;
  padding-bottom: 2.4rem;
  background: url(../../shared_new/img/radio_border.png) repeat-x bottom left/auto 0.6rem;
}
@media (max-width:767px) {
  .p-radio_content-head {
    font-size: 2.177rem;
    line-height: 2.702rem;
    padding-bottom: 3rem;
  }
}
.p-radio_content-txt {
  width: 100%;
  font-size: 2.226rem;
  font-weight: 700;
  line-height: 2.226rem;
  padding-bottom: 2.4rem;
  background: url(../../shared_new/img/radio_border.png) repeat-x bottom left/auto 0.6rem;
}
@media (max-width:767px) {
  .p-radio_content-txt {
    width: calc(100% - 4rem);
    font-size: 2.671rem;
    line-height: 2.671rem;
    padding-bottom: 3rem;
  }
}
.p-radio_content-txt span {
  display: block;
  font-size: 1.447rem;
}
@media (max-width:767px) {
  .p-radio_content-txt span {
    font-size: 1.737rem;
  }
}
.p-radio_content-btn {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20.733rem;
  height: 4.544rem;
  background-color: #02a7e8;
  padding-right: 2rem;
  border-radius: 0.8rem;
  font-size: 1.787rem;
  font-weight: 700;
  color: #fff;
  margin-top: 3.5rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width:768px) {
  .p-radio_content-btn:hover {
    opacity: 1;
    background-color: #0291c9;
  }
}
@media (max-width:767px) {
  .p-radio_content-btn {
    width: 24.88rem;
    height: 5.453rem;
    padding-right: 2rem;
    border-radius: 0.8rem;
    font-size: 2.097rem;
    margin-top: 4.4rem;
  }
}
.p-radio_content-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 2.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
}
.p-radio_content-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 3.2rem;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  width: 0.4rem;
  aspect-ratio: 1/1;
  border-right: 2px solid #02a7e8;
  border-top: 2px solid #02a7e8;
}
.p-radio_content-btn.radiko {
  font-size: 1.816rem;
}
@media (max-width:767px) {
  .p-radio_content-btn.radiko {
    font-size: 2.097rem;
  }
}
.p-radio_content-btn.radiko span {
  font-size: 1.463rem;
  margin-left: 0.5rem;
}
@media (max-width:767px) {
  .p-radio_content-btn.radiko span {
    font-size: 1.756rem;
    margin-left: 0.5rem;
  }
}
.p-radio_content-btn.radiko img {
  width: 8.8rem;
}
@media (max-width:767px) {
  .p-radio_content-btn.radiko img {
    width: 10.6rem;
  }
}
.p-radio_content-img {
  width: 21.9rem;
  border-radius: 100%;
  margin-top: 4rem;
  overflow: hidden;
}
@media (max-width:767px) {
  .p-radio_content-img {
    width: 26.28rem;
    margin-top: 3em;
  }
}
.p-radio_content-img img {
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}
@media (min-width:768px) {
  .p-radio_content-img:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-radio_content-ttl {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
  color: #0262c4;
  margin-top: 1.5rem;
  max-width: 20rem;
}
@media (max-width:767px) {
  .p-radio_content-ttl {
    font-size: 2.3rem;
    line-height: 2.8rem;
    margin-top: 1.7rem;
    max-width: 33rem;
  }
}
.p-radio_content-date {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 0.2rem 1.8rem;
  background-color: #36a540;
  margin-top: 0.5rem;
}
@media (max-width:767px) {
  .p-radio_content-date {
    font-size: 2.3rem;
    padding: 0.2rem 1.8rem;
    margin-top: 1.5rem;
  }
}
.p-radio_content-date::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 0.8rem);
  height: 100%;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.p-radio_txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #1b7dc2;
  margin-top: 8rem;
}
@media (max-width:767px) {
  .p-radio_txt {
    font-size: 2.761rem;
    margin-top: 11.2rem;
  }
}
.p-radio_btn {
  display: block;
  width: 37.4rem;
  margin: 2rem auto 0;
}
.p-radio_btn .is-on {
  display: none;
}
@media (min-width:768px) {
  .p-radio_btn:hover {
    opacity: 1;
  }
  .p-radio_btn:hover .is-on {
    display: block;
  }
  .p-radio_btn:hover .is-off {
    display: none;
  }
}
@media (max-width:767px) {
  .p-radio_btn {
    width: 57.364rem;
    margin: 2.3rem auto 0;
  }
}

/*//////////////////////////////////////////////////////////////////
campaign
//////////////////////////////////////////////////////////////////*/
.p-campaign {
  position: relative;
  margin-top: 4.5rem;
  background: #e1f0f6 url(../../shared_new/img/border.png) repeat-x bottom center/auto 0.2rem;
  padding-bottom: 8rem;
  z-index: 1;
}
@media (max-width:767px) {
  .p-campaign {
    margin-top: 6.5rem;
    padding-bottom: 7rem;
  }
}
.p-campaign::before {
  position: absolute;
  content: "";
  left: 0;
  top: -20rem;
  width: 100%;
  aspect-ratio: 4000/1093;
  background: url(../../shared_new/img/campaign_bg.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width:767px) {
  .p-campaign::before {
    top: -11rem;
    width: 100%;
    aspect-ratio: 1500/927;
    background: url(../../shared_new/img/campaign_bg_sp.png) no-repeat center center/contain;
  }
}
@media (max-width:767px) {
  .p-campaign .l-inner {
    padding: 0 3rem;
  }
}
.p-campaign_ttl {
  width: 30.6rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-campaign_ttl {
    width: 44.7rem;
  }
}
.p-campaign_subttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1b7dc2;
  text-align: center;
  line-height: 3.932rem;
  margin-top: 5.5rem;
}
@media (max-width:767px) {
  .p-campaign_subttl {
    margin-top: 6rem;
  }
}
.p-campaign_subttl span {
  display: inline-block;
  padding: 0 12rem;
  background: url(../../shared_new/img/radio_ttl_mod_l.png) no-repeat left center/4.4rem auto, url(../../shared_new/img/radio_ttl_mod_r.png) no-repeat right center/4.2rem auto;
}
@media (max-width:767px) {
  .p-campaign_subttl span {
    padding: 0;
    width: 100%;
    background: url(../../shared_new/img/radio_ttl_mod_l.png) no-repeat left center/5.4rem auto, url(../../shared_new/img/radio_ttl_mod_r.png) no-repeat right center/5.4rem auto;
  }
}
.p-campaign_about {
  max-width: 1000px;
  margin: 8.5rem auto 0;
}
@media (max-width:767px) {
  .p-campaign_about {
    margin: 7rem auto 0;
  }
}
.p-campaign_about-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-campaign_about-ttl {
  font-size: 2.394rem;
  font-weight: 500;
  line-height: 4.2rem;
  color: #1b7dc2;
  background: transparent url(../../shared_new/img/question_icon.png) no-repeat left center/4.2rem auto;
  padding-left: 5rem;
}
@media (max-width:767px) {
  .p-campaign_about-ttl {
    font-size: 3.3rem;
    font-weight: 600;
    line-height: 5rem;
    background: transparent url(../../shared_new/img/question_icon.png) no-repeat left center/5rem auto;
    padding-left: 6rem;
  }
}
.p-campaign_about-btn {
  position: relative;
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b7dc2;
  border: 3px solid #1b7dc2;
  border-radius: 1.915rem;
  background-color: #fff;
  padding: 1rem 4.5rem 1rem 2rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width:767px) {
  .p-campaign_about-btn {
    font-size: 1.9rem;
    letter-spacing: -0.1em;
    border: 0.3rem solid #1b7dc2;
    border-radius: 2.4rem;
    padding: 1.3rem 4.5rem 1.3rem 2rem;
  }
}
.p-campaign_about-btn::before {
  position: absolute;
  content: "";
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #1b7dc2;
}
@media (max-width:767px) {
  .p-campaign_about-btn::before {
    width: 1.8rem;
  }
}
.p-campaign_about-btn::after {
  position: absolute;
  content: "";
  right: 2.3rem;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width:767px) {
  .p-campaign_about-btn::after {
    right: 2.5rem;
    width: 0.6rem;
  }
}
@media (min-width:768px) {
  .p-campaign_about-btn:hover {
    opacity: 1;
    background-color: #1b7dc2;
    color: #fff;
  }
  .p-campaign_about-btn:hover::before {
    background-color: #fff;
  }
  .p-campaign_about-btn:hover::after {
    border-color: #1b7dc2;
  }
}
.p-campaign_about-txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3rem;
  margin-top: 2.5rem;
}
@media (max-width:767px) {
  .p-campaign_about-txt {
    font-size: 2.5rem;
    line-height: 4.2rem;
    margin-top: 2.7rem;
  }
}
.p-campaign_about-txt a {
  display: block;
  color: #1b7dc2;
  text-decoration: underline;
}
.p-campaign_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  max-width: 1000px;
  background-color: #fff;
  padding: 7rem 4rem 8rem;
  margin: 5rem auto 0;
}
@media (max-width:767px) {
  .p-campaign_content {
    padding: 6rem 5rem 8.5rem;
    margin: 4.2rem auto 0;
  }
}
.p-campaign_content::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 2.4rem);
  height: calc(100% - 2.4rem);
  border: 2px solid #1b7dc2;
  z-index: 1;
}
.p-campaign_content-corner {
  position: absolute;
  width: 2.4rem;
  aspect-ratio: 1/1;
  border: 2px solid #1b7dc2;
  background-color: #e1f0f6;
}
.p-campaign_content-corner::before {
  position: absolute;
  content: "";
  width: 1.2rem;
  aspect-ratio: 1/1;
  background-color: #1b7dc2;
}
.p-campaign_content-corner:nth-of-type(1) {
  top: 0;
  left: 0;
  border-top: none;
  border-left: none;
}
.p-campaign_content-corner:nth-of-type(1)::before {
  top: 0;
  left: 0;
}
.p-campaign_content-corner:nth-of-type(2) {
  bottom: 0;
  left: 0;
  border-bottom: none;
  border-left: none;
}
.p-campaign_content-corner:nth-of-type(2)::before {
  bottom: 0;
  left: 0;
}
.p-campaign_content-corner:nth-of-type(3) {
  bottom: 0;
  right: 0;
  border-right: none;
  border-bottom: none;
}
.p-campaign_content-corner:nth-of-type(3)::before {
  bottom: 0;
  right: 0;
}
.p-campaign_content-corner:nth-of-type(4) {
  top: 0;
  right: 0;
  border-top: none;
  border-right: none;
}
.p-campaign_content-corner:nth-of-type(4)::before {
  top: 0;
  right: 0;
}
.p-campaign_content-border {
  position: absolute;
  background-color: #1b7dc2;
}
.p-campaign_content-border:nth-of-type(1) {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 4.8rem);
  height: 2px;
}
.p-campaign_content-border:nth-of-type(2) {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: calc(100% - 4.8rem);
}
.p-campaign_content-border:nth-of-type(3) {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 4.8rem);
  height: 2px;
}
.p-campaign_content-border:nth-of-type(4) {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: calc(100% - 4.8rem);
}
.p-campaign_content-inner {
  position: relative;
  z-index: 2;
}
.p-campaign_content-ttl {
  font-size: 3.012rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #1b7dc2;
  text-align: center;
  padding-bottom: 6rem;
  background: transparent url(../../shared_new/img/campaign_border.png) no-repeat center bottom/75.2rem auto;
}
@media (max-width:767px) {
  .p-campaign_content-ttl {
    font-size: 3.552rem;
    line-height: 4.481rem;
    padding-bottom: 6rem;
  }
}
.p-campaign_content-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  max-width: 72.35rem;
  margin: 4.2rem auto 0;
}
@media (max-width:767px) {
  .p-campaign_content-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 72.35rem;
    margin: 1.7rem auto 0;
  }
}
.p-campaign_content-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
  padding-left: 1.2rem;
}
.p-campaign_content-date .month {
  position: relative;
  font-size: 8.374rem;
  font-weight: 900;
  color: #1b7dc2;
  margin-right: 2rem;
}
.p-campaign_content-date .month::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -1.3rem;
  width: 2px;
  height: 6rem;
  -webkit-transform: translateY(-50%) rotate(14deg);
          transform: translateY(-50%) rotate(14deg);
  background-color: #1b7dc2;
}
.p-campaign_content-date .day {
  font-size: 8.374rem;
  font-weight: 900;
  color: #1b7dc2;
}
.p-campaign_content-date .dotw {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #1b7dc2;
  padding-left: 0.2rem;
  margin: 0 0 1.8rem 0.4rem;
}
.p-campaign_content-date .time {
  font-size: 3.758rem;
  font-weight: 700;
  color: #1b7dc2;
  margin: 0 0 1.4rem 1.4rem;
}
.p-campaign_content-location {
  font-size: 2.97rem;
  font-weight: 700;
  line-height: 3.6rem;
  color: #1b7dc2;
}
@media (max-width:767px) {
  .p-campaign_content-location {
    padding-left: 1.2rem;
  }
}
.p-campaign_content-img {
  max-width: 72.35rem;
  margin: 2.4rem auto 0;
}
.p-campaign_content-txt {
  font-size: 1.597rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: 0;
  max-width: 740px;
  margin: 3rem auto 0;
}
@media (max-width:767px) {
  .p-campaign_content-txt {
    font-size: 1.7rem;
    line-height: 3rem;
    margin: 2.7rem auto 0;
  }
}
.p-campaign_content-btn-wrapper {
  position: relative;
}
.p-campaign_content-btn-wrapper::before {
  position: absolute;
  content: "";
  left: calc(50% - 29.7rem);
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8.8rem;
  aspect-ratio: 176/156;
  background: url(../../shared_new/img/campaign_mod01.png) no-repeat center center/contain;
}
@media (max-width:767px) {
  .p-campaign_content-btn-wrapper::before {
    left: calc(50% - 25.7rem);
    top: 1.2rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 7.5rem;
  }
}
.p-campaign_content-btn-wrapper::after {
  position: absolute;
  content: "";
  right: calc(50% - 32rem);
  top: -1.8rem;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 12.1rem;
  aspect-ratio: 242/212;
  background: url(../../shared_new/img/campaign_mod02.png) no-repeat center center/contain;
}
@media (max-width:767px) {
  .p-campaign_content-btn-wrapper::after {
    right: calc(50% - 26.3rem);
    top: -0.8rem;
    width: 11.6rem;
    aspect-ratio: 232/212;
    background: url(../../shared_new/img/campaign_mod02_sp.png) no-repeat center center/contain;
  }
}
.p-campaign_content-btn {
  display: block;
  width: 43.2rem;
  margin: 4rem auto 0;
  font-size: 2.318rem;
  font-weight: 700;
  line-height: 3.2rem;
  color: #ed0404;
  text-align: center;
}
.p-campaign_content-btn .is-on {
  display: none;
}
@media (min-width:768px) {
  .p-campaign_content-btn:hover {
    opacity: 1;
  }
  .p-campaign_content-btn:hover .is-on {
    display: block;
  }
  .p-campaign_content-btn:hover .is-off {
    display: none;
  }
}
@media (max-width:767px) {
  .p-campaign_content-btn {
    width: 37rem;
    margin: 3rem auto 0;
    font-size: 3.1rem;
    line-height: 4.44rem;
  }
}

/*//////////////////////////////////////////////////////////////////
archive
//////////////////////////////////////////////////////////////////*/
.p-archive {
  position: relative;
  padding: 7rem 0 8rem;
  background-color: #e1f0f6;
}
@media (min-width:768px) {
  .p-archive:has(+ .p-bnr_area) {
    margin-bottom: 14rem;
  }
}
@media (max-width:767px) {
  .p-archive {
    padding: 6.2rem 0 8rem;
  }
}
.p-archive::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -12rem;
  width: 100%;
  aspect-ratio: 4000/1900;
  background: url(../../shared_new/img/archive_bg.png) no-repeat center center/contain;
  z-index: 1;
}
@media (max-width:767px) {
  .p-archive::before {
    display: none;
  }
}
.p-archive::after {
  position: absolute;
  content: "";
  top: 19rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 187.1rem;
  height: 56.1rem;
  background: transparent url(../img/archive_map_bg.png) no-repeat center center/contain;
  z-index: 2;
}
@media (max-width:767px) {
  .p-archive::after {
    top: 22rem;
    width: 72.55rem;
    height: 66.1rem;
    background: transparent url(../img/archive_map_bg_sp.png) no-repeat center center/contain;
  }
}
.p-archive .l-inner {
  position: relative;
  z-index: 3;
}
@media (max-width:767px) {
  .p-archive .l-inner {
    padding: 0;
  }
}
.p-archive_ttl {
  width: 12.9rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-archive_ttl {
    width: 17.3rem;
  }
}
.p-archive_subttl {
  width: 64.5rem;
  margin: 3rem auto 0;
}
@media (max-width:767px) {
  .p-archive_subttl {
    width: 50.1rem;
    margin: 2.5rem auto 0;
  }
}
.p-archive_map {
  position: relative;
  width: 103.7rem;
  padding-right: 3rem;
  margin: 6rem auto 0;
}
@media (max-width:767px) {
  .p-archive_map {
    width: 75rem;
    padding-right: 0;
    margin: 7.3rem auto 0;
  }
}
.p-archive_icon {
  position: absolute;
  width: 2.9rem;
  z-index: 10;
  cursor: pointer;
}
@media (max-width:767px) {
  .p-archive_icon {
    width: 2.7rem;
  }
}
.p-archive_icon[data-id=hokkaido] {
  top: 12.8rem;
  left: 85.2rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=hokkaido] {
    top: 12.7rem;
    left: 57.8rem;
  }
}
.p-archive_icon[data-id=aomori] {
  top: 21.3rem;
  left: 78.3rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=aomori] {
    top: 22rem;
    left: 52.6rem;
  }
}
.p-archive_icon[data-id=iwate] {
  top: 27.7rem;
  left: 78.8rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=iwate] {
    top: 27.8rem;
    left: 53.9rem;
  }
}
.p-archive_icon[data-id=miyagi] {
  top: 32.7rem;
  left: 75.6rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=miyagi] {
    top: 32.9rem;
    left: 51.7rem;
  }
}
.p-archive_icon[data-id=akita] {
  top: 25.7rem;
  left: 75rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=akita] {
    top: 26.6rem;
    left: 50.2rem;
  }
}
.p-archive_icon[data-id=yamagata] {
  top: 31.3rem;
  left: 72.6rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=yamagata] {
    top: 32rem;
    left: 49rem;
  }
}
.p-archive_icon[data-id=fukushima] {
  top: 36.5rem;
  left: 72.7rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=fukushima] {
    top: 36.6rem;
    left: 49.8rem;
  }
}
.p-archive_icon[data-id=ibaraki] {
  top: 42.5rem;
  left: 69.7rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=ibaraki] {
    top: 42.4rem;
    left: 48rem;
  }
}
.p-archive_icon[data-id=tochigi] {
  top: 39.5rem;
  left: 67.8rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=tochigi] {
    top: 40.2rem;
    left: 45.8rem;
  }
}
.p-archive_icon[data-id=gunma] {
  top: 39.5rem;
  left: 64.6rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=gunma] {
    top: 40.6rem;
    left: 42.7rem;
  }
}
.p-archive_icon[data-id=saitama] {
  top: 42.2rem;
  left: 65.5rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=saitama] {
    top: 42.4rem;
    left: 44.2rem;
  }
}
.p-archive_icon[data-id=chiba] {
  top: 46rem;
  left: 68.5rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=chiba] {
    top: 46rem;
    left: 47rem;
  }
}
.p-archive_icon[data-id=tokyo] {
  top: 43.7rem;
  left: 65.5rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=tokyo] {
    top: 44rem;
    left: 46rem;
  }
}
.p-archive_icon[data-id=kanagawa] {
  top: 45.2rem;
  left: 65.1rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=kanagawa] {
    top: 45.6rem;
    left: 44.1rem;
  }
}
.p-archive_icon[data-id=niigata] {
  top: 33.2rem;
  left: 67.1rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=niigata] {
    top: 34.6rem;
    left: 44.2rem;
  }
}
.p-archive_icon[data-id=toyama] {
  top: 36.3rem;
  left: 57.3rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=toyama] {
    top: 38.8rem;
    left: 35.7rem;
  }
}
.p-archive_icon[data-id=ishikawa] {
  top: 35.7rem;
  left: 54.3rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=ishikawa] {
    top: 38.5rem;
    left: 32.9rem;
  }
}
.p-archive_icon[data-id=fukui] {
  top: 38.2rem;
  left: 51.7rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=fukui] {
    top: 41.2rem;
    left: 30.9rem;
  }
}
.p-archive_icon[data-id=yamanashi] {
  top: 42.8rem;
  left: 61.3rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=yamanashi] {
    top: 44.1rem;
    left: 40.3rem;
  }
}
.p-archive_icon[data-id=nagano] {
  top: 39.7rem;
  left: 59.5rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=nagano] {
    top: 41.4rem;
    left: 38.2rem;
  }
}
.p-archive_icon[data-id=gifu] {
  top: 39.6rem;
  left: 55.3rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=gifu] {
    top: 41.8rem;
    left: 34.3rem;
  }
}
.p-archive_icon[data-id=shizuoka] {
  top: 45.6rem;
  left: 58.7rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=shizuoka] {
    top: 46.8rem;
    left: 38.3rem;
  }
}
.p-archive_icon[data-id=aichi] {
  top: 43.4rem;
  left: 53.7rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=aichi] {
    top: 45.6rem;
    left: 33.5rem;
  }
}
.p-archive_icon[data-id=mie] {
  top: 45rem;
  left: 50.4rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=mie] {
    top: 47.5rem;
    left: 30.7rem;
  }
}
.p-archive_icon[data-id=shiga] {
  top: 42rem;
  left: 50rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=shiga] {
    top: 44.8rem;
    left: 29.8rem;
  }
}
.p-archive_icon[data-id=kyoto] {
  top: 39.2rem;
  left: 46.7rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=kyoto] {
    top: 42.9rem;
    left: 26.5rem;
  }
}
.p-archive_icon[data-id=osaka] {
  top: 43.2rem;
  left: 47rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=osaka] {
    top: 46.4rem;
    left: 27.3rem;
  }
}
.p-archive_icon[data-id=hyogo] {
  top: 41.4rem;
  left: 44.4rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=hyogo] {
    top: 45.1rem;
    left: 24.7rem;
  }
}
.p-archive_icon[data-id=nara] {
  top: 45rem;
  left: 47.9rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=nara] {
    top: 47.9rem;
    left: 28.4rem;
  }
}
.p-archive_icon[data-id=wakayama] {
  top: 46.2rem;
  left: 45.2rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=wakayama] {
    top: 49.4rem;
    left: 26.1rem;
  }
}
.p-archive_icon[data-id=tottori] {
  top: 37.4rem;
  left: 41.6rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=tottori] {
    top: 42rem;
    left: 21.6rem;
  }
}
.p-archive_icon[data-id=shimane] {
  top: 36.3rem;
  left: 35.6rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=shimane] {
    top: 41.9rem;
    left: 16.2rem;
  }
}
.p-archive_icon[data-id=okayama] {
  top: 40.3rem;
  left: 39.4rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=okayama] {
    top: 44.9rem;
    left: 20.1rem;
  }
}
.p-archive_icon[data-id=hiroshima] {
  top: 39.8rem;
  left: 33.8rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=hiroshima] {
    top: 45.1rem;
    left: 15rem;
  }
}
.p-archive_icon[data-id=yamaguchi] {
  top: 39.3rem;
  left: 28.4rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=yamaguchi] {
    top: 45.4rem;
    left: 10rem;
  }
}
.p-archive_icon[data-id=tokushima] {
  top: 45.3rem;
  left: 40.5rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=tokushima] {
    top: 49.1rem;
    left: 21.8rem;
  }
}
.p-archive_icon[data-id=kagawa] {
  top: 42.9rem;
  left: 40rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=kagawa] {
    top: 47.1rem;
    left: 20.9rem;
  }
}
.p-archive_icon[data-id=ehime] {
  top: 43.6rem;
  left: 33.4rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=ehime] {
    top: 48.6rem;
    left: 15.1rem;
  }
}
.p-archive_icon[data-id=kochi] {
  top: 45.4rem;
  left: 35.5rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=kochi] {
    top: 50rem;
    left: 17.3rem;
  }
}
.p-archive_icon[data-id=fukuoka] {
  top: 40.2rem;
  left: 23.6rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=fukuoka] {
    top: 47rem;
    left: 5.8rem;
  }
}
.p-archive_icon[data-id=saga] {
  top: 41.4rem;
  left: 20.9rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=saga] {
    top: 48.4rem;
    left: 3.5rem;
  }
}
.p-archive_icon[data-id=nagasaki] {
  top: 42.6rem;
  left: 19.4rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=nagasaki] {
    top: 49.8rem;
    left: 2.3rem;
  }
}
.p-archive_icon[data-id=kumamoto] {
  top: 44.9rem;
  left: 22.4rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=kumamoto] {
    top: 51.4rem;
    left: 5.2rem;
  }
}
.p-archive_icon[data-id=oita] {
  top: 42.9rem;
  left: 26.2rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=oita] {
    top: 49rem;
    left: 8.4rem;
  }
}
.p-archive_icon[data-id=miyazaki] {
  top: 48.3rem;
  left: 24.6rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=miyazaki] {
    top: 54.1rem;
    left: 7.8rem;
  }
}
.p-archive_icon[data-id=kagoshima] {
  top: 48.8rem;
  left: 19.8rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=kagoshima] {
    top: 55.3rem;
    left: 3.5rem;
  }
}
.p-archive_icon[data-id=okinawa] {
  top: 44rem;
  left: 1.8rem;
}
@media (max-width:767px) {
  .p-archive_icon[data-id=okinawa] {
    top: 45rem;
    left: 66.5rem;
  }
}
.p-archive .mapitem {
  position: absolute;
  top: -1rem;
  left: 12rem;
  width: 35.8rem;
}
@media (max-width:767px) {
  .p-archive .mapitem {
    top: -2.7rem;
    left: 5rem;
    width: 35.8rem;
  }
}
.p-archive .mapitem .line {
  position: absolute;
  max-width: none;
  z-index: 0;
}
@media (max-width:767px) {
  .p-archive .mapitem .line {
    display: none;
  }
}
.p-archive .mapitem#hokkaido .line {
  width: 38.7rem;
  top: 14.8rem;
  left: 35.8rem;
}
.p-archive .mapitem#aomori .line {
  width: 32.3rem;
  top: 23.2rem;
  left: 35.8rem;
}
.p-archive .mapitem#iwate .line {
  width: 32.3rem;
  top: 29.6rem;
  left: 35.8rem;
}
.p-archive .mapitem#miyagi .line {
  width: 32.3rem;
  top: 34.6rem;
  left: 32.8rem;
}
.p-archive .mapitem#akita .line {
  width: 28.4rem;
  top: 27.7rem;
  left: 35.8rem;
}
.p-archive .mapitem#yamagata .line {
  width: 32.3rem;
  top: 33.2rem;
  left: 29.8rem;
}
.p-archive .mapitem#fukushima .line {
  width: 29.8rem;
  top: 35.6rem;
  left: 32.4rem;
}
.p-archive .mapitem#ibaraki .line {
  width: 24.25rem;
  top: 31.4rem;
  left: 35.2rem;
}
.p-archive .mapitem#tochigi .line {
  width: 22.85rem;
  top: 29.8rem;
  left: 34.8rem;
}
.p-archive .mapitem#gunma .line {
  width: 22.8rem;
  top: 29.8rem;
  left: 31.7rem;
}
.p-archive .mapitem#saitama .line {
  width: 26.1rem;
  top: 29rem;
  left: 28.8rem;
}
.p-archive .mapitem#chiba .line {
  width: 23rem;
  top: 30.2rem;
  left: 35.3rem;
}
.p-archive .mapitem#tokyo .line {
  width: 22.6rem;
  top: 36.1rem;
  left: 32.8rem;
}
.p-archive .mapitem#kanagawa .line {
  width: 19.1rem;
  top: 27.5rem;
  left: 35.8rem;
}
.p-archive .mapitem#niigata .line {
  width: 20.9rem;
  top: 27.2rem;
  left: 35.8rem;
}
.p-archive .mapitem#toyama .line {
  width: 11.8rem;
  top: 29.8rem;
  left: 35.3rem;
}
.p-archive .mapitem#ishikawa .line {
  width: 8.6rem;
  top: 32.2rem;
  left: 35.4rem;
}
.p-archive .mapitem#fukui .line {
  width: 6.45rem;
  top: 32.6rem;
  left: 35.1rem;
}
.p-archive .mapitem#yamanashi .line {
  width: 16.1rem;
  top: 34.1rem;
  left: 35.1rem;
}
.p-archive .mapitem#nagano .line {
  width: 14rem;
  top: 31.9rem;
  left: 35.4rem;
}
.p-archive .mapitem#gifu .line {
  width: 9.6rem;
  top: 36rem;
  left: 35.1rem;
}
.p-archive .mapitem#shizuoka .line {
  width: 14.1rem;
  top: 35.2rem;
  left: 34.4rem;
}
.p-archive .mapitem#aichi .line {
  width: 9rem;
  top: 35.5rem;
  left: 34.2rem;
}
.p-archive .mapitem#mie .line {
  width: 7.8rem;
  top: 35.7rem;
  left: 32.1rem;
}
.p-archive .mapitem#shiga .line {
  width: 5.55rem;
  top: 35.7rem;
  left: 34.3rem;
}
.p-archive .mapitem#kyoto .line {
  width: 3.8rem;
  top: 35.2rem;
  left: 32.7rem;
}
.p-archive .mapitem#osaka .line {
  width: 4.1rem;
  top: 35.5rem;
  left: 32.8rem;
}
.p-archive .mapitem#hyogo .line {
  width: 0.6rem;
  top: 35.7rem;
  left: 33.5rem;
}
.p-archive .mapitem#nara .line {
  width: 3.4rem;
  top: 35.2rem;
  left: 34rem;
}
.p-archive .mapitem#wakayama .line {
  width: 3rem;
  top: 35.6rem;
  left: 31.8rem;
}
.p-archive .mapitem#tottori .line {
  width: 0.6rem;
  top: 36rem;
  left: 30.8rem;
}
.p-archive .mapitem#shimane .line {
  width: 0.6rem;
  top: 35rem;
  left: 24.7rem;
}
.p-archive .mapitem#okayama .line {
  width: 0.6rem;
  top: 35.8rem;
  left: 28.6rem;
}
.p-archive .mapitem#hiroshima .line {
  width: 0.6rem;
  top: 35.3rem;
  left: 23rem;
}
.p-archive .mapitem#yamaguchi .line {
  width: 0.6rem;
  top: 35.2rem;
  left: 17.6rem;
}
.p-archive .mapitem#tokushima .line {
  width: 2.3rem;
  top: 35rem;
  left: 29.8rem;
}
.p-archive .mapitem#kagawa .line {
  width: 0.6rem;
  top: 36rem;
  left: 29.1rem;
}
.p-archive .mapitem#ehime .line {
  width: 0.6rem;
  top: 35.2rem;
  left: 22.6rem;
}
.p-archive .mapitem#kochi .line {
  width: 0.6rem;
  top: 35.2rem;
  left: 24.7rem;
}
.p-archive .mapitem#fukuoka .line {
  width: 0.6rem;
  top: 35.2rem;
  left: 12.7rem;
}
.p-archive .mapitem#saga .line {
  width: 0.6rem;
  top: 35.6rem;
  left: 10rem;
}
.p-archive .mapitem#nagasaki .line {
  width: 0.6rem;
  top: 35.8rem;
  left: 8.6rem;
}
.p-archive .mapitem#kumamoto .line {
  width: 0.6rem;
  top: 35.2rem;
  left: 11.6rem;
}
.p-archive .mapitem#oita .line {
  width: 0.6rem;
  top: 35.3rem;
  left: 15.4rem;
}
.p-archive .mapitem#miyazaki .line {
  width: 0.6rem;
  top: 36rem;
  left: 13.8rem;
}
.p-archive .mapitem#kagoshima .line {
  width: 3.2rem;
  top: 35.4rem;
  left: 6.3rem;
}
.p-archive .mapitem#okinawa .line {
  width: 10.9rem;
  top: 35.5rem;
  left: -9.1rem;
}
.p-archive_article {
  position: relative;
  display: block;
  width: 35.8rem;
  background: url(../../shared_new/img/radio_border.png) repeat-x center top 1rem/24.9rem auto, url(../../shared_new/img/radio_border.png) repeat-x center bottom 1rem/24.9rem auto;
  background-color: #fff;
  border-radius: 0.7rem;
  -webkit-box-shadow: 0 0 1.3rem rgba(27, 125, 194, 0.5);
          box-shadow: 0 0 1.3rem rgba(27, 125, 194, 0.5);
  padding: 2.5rem 0 3rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}
@media (max-width:767px) {
  .p-archive_article {
    top: -2.7rem;
    left: 5rem;
    width: 35.8rem;
    background: url(../../shared_new/img/radio_border.png) repeat-x center top 1rem/24.9rem auto, url(../../shared_new/img/radio_border.png) repeat-x center bottom 0.7rem/24.9rem auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1.3rem rgba(27, 125, 194, 0.5);
            box-shadow: 0 0 1.3rem rgba(27, 125, 194, 0.5);
    padding: 2.5rem 0 3rem;
  }
}
.p-archive_article.is-on {
  opacity: 1;
}
.p-archive_article::before {
  position: absolute;
  content: "";
  top: 0.8rem;
  left: 1.8rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.9rem;
  aspect-ratio: 138/146;
  background: url(../../shared_new/img/archive_article_balloon.png) no-repeat center center/contain;
}
@media (max-width:767px) {
  .p-archive_article::before {
    top: 2rem;
    left: 1rem;
  }
}
.p-archive_article-img img {
  width: 100%;
  height: 21.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  background: #f0f0f0;
}
.p-archive_article-txt {
  font-size: 1.675rem;
  font-weight: 500;
  line-height: 2.816rem;
  color: #1b7dc2;
  padding: 0 1rem;
  margin-top: 1rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: clip;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.p-archive_article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 3rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  padding-right: 1.8rem;
}
.p-archive_article-footer img {
  width: 4.3rem;
}
.p-archive_article-footer span {
  display: inline-block;
  font-size: 1.488rem;
  font-weight: 700;
  color: #fff;
  padding: 0.3rem 1.5rem 0.4rem 1.3rem;
  background-color: #55ba5e;
  border-radius: 1.1rem;
}
.p-archive_select-wrapper {
  position: absolute;
  bottom: 2.7rem;
  right: 11.5rem;
  background: #fff;
  border-radius: 0.7rem;
}
@media (max-width:767px) {
  .p-archive_select-wrapper {
    bottom: 0.3rem;
    right: 21rem;
  }
}
.p-archive_select-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 3.6rem;
  height: 100%;
  border-radius: 0 0.7rem 0.7rem 0;
  background-color: #1b7dc2;
}
@media (max-width:767px) {
  .p-archive_select-wrapper::before {
    width: 5.5rem;
  }
}
.p-archive_select-wrapper::after {
  position: absolute;
  content: "";
  top: calc(50% - 0.5rem);
  right: 1.2rem;
  border-top: 1.2rem solid #fff;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
}
@media (max-width:767px) {
  .p-archive_select-wrapper::after {
    top: calc(50% - 0.6rem);
    right: 2rem;
    border-top: 1.5rem solid #fff;
    border-left: 0.85rem solid transparent;
    border-right: 0.85rem solid transparent;
  }
}
.p-archive_select {
  cursor: pointer;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  vertical-align: middle;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 2px solid #1b7dc2;
  padding: 1rem 6rem 1rem 2.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 0.7rem;
  color: #1b7dc2;
  background: transparent;
}
@media (max-width:767px) {
  .p-archive_select {
    padding: 1.5rem 9rem 1.5rem 2.5rem;
    font-size: 2.8rem;
  }
}
.p-archive_bnr {
  position: relative;
  width: 83.6rem;
  margin: 6rem auto 0;
  z-index: 1;
}
@media (max-width:767px) {
  .p-archive_bnr {
    width: 69.9rem;
    margin: 5.2rem auto 0;
  }
}
.p-archive_bnr::before {
  position: absolute;
  content: "";
  left: 5.3rem;
  top: 5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17.3rem;
  aspect-ratio: 346/324;
  background: url(../../shared_new/img/archive_img_balloon.png) no-repeat center center/contain;
}
@media (max-width:767px) {
  .p-archive_bnr::before {
    left: 8.1rem;
    top: 8.9rem;
    width: 20.2rem;
    aspect-ratio: 404/455;
    background: url(../../shared_new/img/archive_img_balloon_sp.png) no-repeat center center/contain;
  }
}
.p-archive_bnr-date {
  position: absolute;
  top: 1.7rem;
  left: 13rem;
  font-size: 1.682rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width:767px) {
  .p-archive_bnr-date {
    top: 0.7rem;
    left: auto;
    right: 1.4rem;
    font-size: 2.024rem;
  }
}
.p-archive_bnr-location {
  position: absolute;
  bottom: 5.8rem;
  right: 69.7rem;
  font-size: 6.8rem;
  font-weight: 900;
  letter-spacing: 0;
  color: #1b7dc2;
}
@media (max-width:767px) {
  .p-archive_bnr-location {
    bottom: auto;
    top: 14.7rem;
    right: 38.3rem;
    font-size: 8.193rem;
  }
}
.p-archive_bnr-number {
  position: absolute;
  top: 7rem;
  right: 5.5rem;
  font-size: 6.8rem;
  font-weight: 900;
  letter-spacing: 0;
  color: #1b7dc2;
}
@media (max-width:767px) {
  .p-archive_bnr-number {
    top: auto;
    bottom: 14.8rem;
    right: 47.5rem;
    font-size: 6.893rem;
    letter-spacing: -0.03em;
  }
}
.p-archive_bnr-amount {
  position: absolute;
  bottom: 1.6rem;
  right: 13.6rem;
  font-size: 6.8rem;
  font-weight: 900;
  letter-spacing: 0;
  color: #1b7dc2;
}
@media (max-width:767px) {
  .p-archive_bnr-amount {
    bottom: 14.8rem;
    right: 10.5rem;
    font-size: 6.893rem;
    letter-spacing: -0.03em;
  }
}

/*//////////////////////////////////////////////////////////////////
quiz
//////////////////////////////////////////////////////////////////*/
.p-quiz {
  position: relative;
  background-color: #eaf4d8;
  padding: 15rem 0 11rem;
}
@media (max-width:767px) {
  .p-quiz {
    padding: 6.4rem 0 28rem;
  }
}
@media (max-width:767px) {
  .p-quiz::before {
    position: absolute;
    content: "";
    left: 0;
    top: -2.8rem;
    width: 100%;
    aspect-ratio: 1500/109;
    background: url(../../shared_new/img/quiz_bg_sp.png) no-repeat center center/contain;
    z-index: -1;
  }
}
@media (max-width:767px) {
  .p-quiz::after {
    position: absolute;
    content: "";
    left: calc(50% + 0.2rem);
    bottom: 9.5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 61.4rem;
    aspect-ratio: 1228/260;
    background: url(../../shared_new/img/quiz_mod_sp.png) no-repeat center center/contain;
  }
}
.p-quiz_ttl {
  width: 28.2rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-quiz_ttl {
    width: 40.4rem;
  }
}
.p-quiz_subttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #34a43e;
  text-align: center;
  line-height: 5.6rem;
  margin-top: 4.5rem;
}
@media (max-width:767px) {
  .p-quiz_subttl {
    font-size: 3.277rem;
    line-height: 3.932rem;
    margin-top: 5.5rem;
  }
}
.p-quiz_subttl span {
  display: inline-block;
  padding: 0 8rem;
  background: url(../../shared_new/img/quiz_ttl_mod_l.png) no-repeat left center/3.8rem auto, url(../../shared_new/img/quiz_ttl_mod_r.png) no-repeat right center/3.8rem auto;
}
@media (max-width:767px) {
  .p-quiz_subttl span {
    width: 100%;
    padding: 0;
    background: url(../../shared_new/img/quiz_ttl_mod_l.png) no-repeat left center/5rem auto, url(../../shared_new/img/quiz_ttl_mod_r.png) no-repeat right center/5rem auto;
  }
}
.p-quiz_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  margin-top: 6rem;
}
@media (max-width:767px) {
  .p-quiz_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 3rem;
    margin-top: 5.3rem;
  }
}
.p-quiz_txt-wrapper {
  font-weight: 700;
}
@media (max-width:767px) {
  .p-quiz_txt-wrapper {
    text-align: center;
  }
}
.p-quiz_txt-01 {
  font-size: 2.4rem;
  line-height: 3.6rem;
}
@media (max-width:767px) {
  .p-quiz_txt-01 {
    font-size: 3.114rem;
    line-height: 4.593rem;
  }
}
.p-quiz_txt-02 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin-top: 4.2rem;
  max-width: 50rem;
}
@media (max-width:767px) {
  .p-quiz_txt-02 {
    font-size: 3.114rem;
    line-height: 4.593rem;
    margin-top: 1.5rem;
    max-width: none;
  }
}
.p-quiz_txt-03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.769rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}
@media (max-width:767px) {
  .p-quiz_txt-03 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 2.6rem;
    margin-top: 0.3rem;
  }
}
.p-quiz_txt-03 img {
  display: block;
  width: 7.3rem;
  padding-bottom: 2rem;
  margin-right: 0.5rem;
}
.p-quiz_txt-03 strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 8.9rem;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
  background: url(../../shared_new/img/quiz_num_bg.png) no-repeat center center/contain;
  font-size: 5.454rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
.p-quiz_txt-03 span {
  color: #34a43e;
}
.p-quiz_txt-04 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1rem;
}
@media (max-width:767px) {
  .p-quiz_txt-04 {
    font-size: 2.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-quiz_txt-04 span {
  color: #34a43e;
}
.p-quiz_img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 45.3rem;
  border: 2px dashed #34a43e;
  border-radius: 1.6rem;
  padding: 0.5rem 0.7rem;
}
.p-quiz_img img {
  border-radius: 1.6rem;
}
@media (max-width:767px) {
  .p-quiz_img {
    max-width: 54.5rem;
    padding: 0.8rem 1rem;
  }
}
.p-quiz_btn-wrapper {
  position: relative;
}
.p-quiz_btn-wrapper::before {
  position: absolute;
  content: "";
  top: -3rem;
  left: calc(50% - 52rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 33.5rem;
  aspect-ratio: 670/262;
  background: url(../../shared_new/img/quiz_mod01.png) no-repeat center center/contain;
}
@media (max-width:767px) {
  .p-quiz_btn-wrapper::before {
    display: none;
  }
}
.p-quiz_btn-wrapper::after {
  position: absolute;
  content: "";
  top: -1rem;
  right: calc(50% - 49.5rem);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 24rem;
  aspect-ratio: 480/192;
  background: url(../../shared_new/img/quiz_mod02.png) no-repeat center center/contain;
}
@media (max-width:767px) {
  .p-quiz_btn-wrapper::after {
    display: none;
  }
}
.p-quiz_btn {
  display: block;
  width: 56.35rem;
  margin: 9rem auto 0;
}
.p-quiz_btn .is-on {
  display: none;
}
@media (min-width:768px) {
  .p-quiz_btn:hover {
    opacity: 1;
  }
  .p-quiz_btn:hover .is-on {
    display: block;
  }
  .p-quiz_btn:hover .is-off {
    display: none;
  }
}
@media (max-width:767px) {
  .p-quiz_btn {
    margin: 6rem auto 0;
  }
}
.p-quiz_btn-close {
  font-size: 2.318rem;
  font-weight: 700;
  line-height: 3.2rem;
  color: #ed0404;
  text-align: center;
  margin: 9rem auto 0;
}
@media (max-width:767px) {
  .p-quiz_btn-close {
    font-size: 3.1rem;
    line-height: 4.44rem;
    margin: 6rem auto 0;
  }
}

/*//////////////////////////////////////////////////////////////////
bnr
//////////////////////////////////////////////////////////////////*/
.p-bnr_area {
  margin-top: 5rem;
  padding-bottom: 14rem;
  background: url(../../shared_new/img/bnr_area_bg.png) no-repeat center bottom/141.9rem auto;
}
@media (max-width:767px) {
  .p-bnr_area {
    margin-top: 4rem;
    padding-bottom: 17.8rem;
    background: url(../../shared_new/img/bnr_area_bg_sp.png) no-repeat center bottom/69.9rem auto;
  }
}
@media (max-width:767px) {
  .p-bnr_area .l-inner {
    padding: 0;
  }
}
.p-bnr-01 {
  display: block;
  max-width: 91.1rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-bnr-01 {
    width: 69.6rem;
  }
}
.p-bnr-02 {
  display: block;
  max-width: 91.75rem;
  margin: 4rem auto 0;
}
@media (max-width:767px) {
  .p-bnr-02 {
    width: 69.7rem;
    margin: 4rem auto 0;
  }
}

/*//////////////////////////////////////////////////////////////////
footer
//////////////////////////////////////////////////////////////////*/
.p-footer {
  padding-bottom: 17rem;
  background: url(../../shared_new/img/footer_bg.png) no-repeat center bottom/contain;
}
@media (max-width:767px) {
  .p-footer {
    padding-bottom: 15rem;
    background: url(../../shared_new/img/footer_bg_sp.png) no-repeat center bottom/contain;
  }
}
.p-footer_logo {
  position: relative;
  width: 35.7rem;
  margin: 3rem auto 0;
}
.p-footer_logo-link {
  position: absolute;
  font-size: 0;
}
.p-footer_logo-link.cosmo {
  top: 2.1rem;
  left: 0rem;
  width: 14.5rem;
  height: 2.7rem;
}
.p-footer_logo-link.tfm {
  top: 2.1rem;
  left: 17.6rem;
  width: 11.5rem;
  height: 3.5rem;
}
.p-footer_logo-link.jfn {
  top: 1.8rem;
  right: 0px;
  width: 5.5rem;
  height: 4.1rem;
}
.p-footer_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  margin-top: 3.5rem;
}
.p-footer_share-icon {
  display: block;
  width: 4.7rem;
}
.p-footer_copyright {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1b7dc2;
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width:767px) {
  .p-footer_copyright {
    margin-top: 4.5rem;
  }
}

.p-side_bnr {
  position: relative;
  display: block;
  width: 5.6rem;
  -webkit-animation: slideIn 0.8s ease-in-out forwards;
          animation: slideIn 0.8s ease-in-out forwards;
}
.p-side_bnr .is-on {
  display: none;
}
.p-side_bnr.clean::before {
  position: absolute;
  content: "";
  top: 5.5rem;
  left: -6.4rem;
  width: 8.4rem;
  aspect-ratio: 168/191;
  background: transparent url(../img/clean_btn_icon.png) no-repeat center center/contain;
}
@media (max-width:767px) {
  .p-side_bnr.clean::before {
    top: -4.5rem;
    left: 0rem;
    width: 7.5rem;
  }
}
@media (min-width:768px) {
  .p-side_bnr:hover {
    opacity: 1;
  }
  .p-side_bnr:hover .is-off {
    display: none;
  }
  .p-side_bnr:hover .is-on {
    display: block;
  }
}
@media (max-width:767px) {
  .p-side_bnr {
    width: 50%;
    -webkit-animation: none;
            animation: none;
  }
}
.p-side_bnr-wrapper {
  position: fixed;
  top: 14rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.6rem;
  z-index: 10;
}
@media (max-width:767px) {
  .p-side_bnr-wrapper {
    top: auto;
    bottom: 0;
    right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    row-gap: 0;
  }
  .p-side_bnr-wrapper.is-static {
    position: static;
  }
}

.page-top {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  width: 12.15rem;
  cursor: pointer;
  z-index: 10;
}
@media (max-width:767px) {
  .page-top {
    position: static;
    margin: 2.5rem auto 0;
  }
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.common-footer-pc {
  display: block;
}

.common-footer-sp {
  display: none;
}

@media (max-width: 1000px) {
  .common-footer-sp {
    display: block;
  }
  .common-footer-pc {
    display: none;
  }
}
.u-border {
  width: 100%;
  height: 2px;
  border-top: 1px solid #1b7dc2;
  border-bottom: 1px solid #1b7dc2;
}

/*//////////////////////////////////////////////////////////////////
report
//////////////////////////////////////////////////////////////////*/
.p-kv_img {
  width: 132rem;
  padding-right: 1rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-kv_img {
    width: 74.45rem;
    padding-left: 0.5rem;
    padding-right: 0;
  }
}

.p-list {
  padding: 5rem 0 16rem;
  background: url(../../shared_new/img/bg.png) repeat-y center top/cover;
}
@media (max-width:767px) {
  .p-list {
    padding: 2.6rem 0 16rem;
  }
}
@media (max-width:767px) {
  .p-list .l-inner {
    padding: 0 3.2rem;
  }
}
.p-list_ttl {
  width: 17.5rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-list_ttl {
    width: 17.3rem;
  }
}
.p-list_subttl {
  width: 64.5rem;
  margin: 3rem auto 0;
}
@media (max-width:767px) {
  .p-list_subttl {
    width: 50.1rem;
    margin: 2.5rem auto 0;
  }
}
.p-list_container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1364px;
  background-color: #fff;
  border: 0.4rem solid #1b7dc2;
  border-radius: 0.9rem;
  -webkit-box-shadow: 0 0.4rem 0.8rem rgba(148, 194, 225, 0.83);
          box-shadow: 0 0.4rem 0.8rem rgba(148, 194, 225, 0.83);
  padding: 7.5rem 3rem 7rem;
  margin: 8rem auto 0;
}
@media (max-width:767px) {
  .p-list_container {
    padding: 6.4rem 3rem 5.5rem;
    margin: 4.2rem auto 0;
  }
}
.p-list_container-head {
  font-size: 4.4rem;
  font-weight: 900;
  color: #1b7dc2;
  letter-spacing: -0.075rem;
  text-align: center;
  padding-bottom: 5rem;
  background: url(../../shared_new/img/border.png) repeat-x left bottom/auto 0.2rem;
}
@media (max-width:767px) {
  .p-list_container-head {
    background: url(../../shared_new/img/border02.png) repeat-x left bottom/auto 0.6rem;
  }
}
.p-list_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 6rem;
  margin-top: 7rem;
  padding: 0 1.6rem;
}
.p-list_items li {
  list-style: none;
}
@media (max-width:767px) {
  .p-list_items {
    row-gap: 5rem;
    margin-top: 5rem;
    padding: 0;
  }
}
.p-list_item {
  display: grid;
  grid-template-rows: auto 3.2rem auto;
  grid-template-columns: 31.5rem auto;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  border-bottom: 2px solid #1b7dc2;
  padding-bottom: 5.8rem;
}
@media (max-width:767px) {
  .p-list_item {
    display: grid;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    grid-template-columns: 24.1rem auto;
    grid-template-rows: auto 3.2rem auto;
    padding-bottom: 5.5rem;
  }
}
.p-list_item-img {
  width: 30rem;
  padding-left: 1.5rem;
  grid-row: 1/4;
  grid-column: 1/2;
}
@media (max-width:767px) {
  .p-list_item-img {
    width: 23.6rem;
    padding-left: 0.5rem;
    grid-row: 1/3;
    grid-column: 1/2;
  }
}
.p-list_item-img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f0f0f0;
}
.p-list_item-ttl {
  font-size: 2.689rem;
  font-weight: 700;
  line-height: 4.209rem;
  letter-spacing: -0.05em;
  color: #1b7dc2;
  grid-row: 1/2;
  grid-column: 2/3;
}
@media (max-width:767px) {
  .p-list_item-ttl {
    font-size: 3rem;
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.p-list_item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10rem;
  height: 2.2rem;
  background-color: #4cbe58;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 1rem 0 0 0.5rem;
  grid-row: 2/3;
  grid-column: 2/3;
}
@media (max-width:767px) {
  .p-list_item-date {
    width: 12.8rem;
    height: 2.8rem;
    font-size: 2rem;
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.p-list_item-txt {
  font-size: 1.8rem;
  line-height: 3rem;
  letter-spacing: 0.025em;
  color: #1b7dc2;
  margin-top: 1.5rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  grid-row: 3/4;
  grid-column: 2/3;
  height: 6rem;
}
@media (max-width:767px) {
  .p-list_item-txt {
    font-size: 2.4rem;
    line-height: 3.5rem;
    margin-top: 2.5rem;
    -webkit-line-clamp: 3;
    grid-row: 3/4;
    grid-column: 1/3;
    height: 10.5rem;
  }
}
.p-list_btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-top: 11.2rem;
}
@media (max-width:767px) {
  .p-list_btn-area {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    margin-top: 7.5rem;
  }
}
.p-list_btn {
  display: block;
  width: 8.1rem;
}
@media (max-width:767px) {
  .p-list_btn {
    width: 12.25rem;
  }
}
.p-list_select-box {
  text-align: center;
  margin-top: 7rem;
}
@media (max-width:767px) {
  .p-list_select-box {
    margin-top: 5.8rem;
  }
}
.p-list_select-wrapper {
  position: relative;
  display: inline-block;
  background: #fff;
  border-radius: 0.7rem;
}
.p-list_select-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 5rem;
  height: 100%;
  border-radius: 0 0.7rem 0.7rem 0;
  background-color: #1b7dc2;
}
@media (max-width:767px) {
  .p-list_select-wrapper::before {
    width: 7.3rem;
  }
}
.p-list_select-wrapper::after {
  position: absolute;
  content: "";
  top: calc(50% - 0.5rem);
  right: 2rem;
  border-top: 1.2rem solid #fff;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
}
@media (max-width:767px) {
  .p-list_select-wrapper::after {
    top: calc(50% - 0.8rem);
    right: 2.9rem;
    border-top: 1.6rem solid #fff;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
  }
}
.p-list_select {
  cursor: pointer;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  vertical-align: middle;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 2px solid #1b7dc2;
  padding: 1rem 6rem 1rem 2.2rem;
  font-size: 2.3rem;
  font-weight: 700;
  border-radius: 0.7rem;
  color: #1b7dc2;
  background: transparent;
}
@media (max-width:767px) {
  .p-list_select {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 66.8rem;
    height: 8rem;
    padding: 0 0 0 13rem;
    font-size: 4.4rem;
  }
}
.p-list_back {
  display: block;
  width: 35.2rem;
  margin: 8rem auto 0;
}
@media (max-width:767px) {
  .p-list_back {
    width: 55.6rem;
    margin: 6rem auto 0;
  }
}
.p-list_container.detail {
  position: relative;
  padding: 9.2rem 5rem 8rem;
}
@media (max-width:767px) {
  .p-list_container.detail {
    padding: 8.5rem 2rem 5rem;
  }
}
.p-list_container.detail::before {
  position: absolute;
  content: "";
  top: -1.2rem;
  right: 6rem;
  width: 17rem;
  aspect-ratio: 339/258;
}
@media (max-width:767px) {
  .p-list_container.detail::before {
    right: 1.3rem;
  }
}
.p-list_container.hokkaido::before {
  background: url(../../shared_new/img/label_hokkaido.png) no-repeat center center/contain;
}
.p-list_container.aomori::before {
  background: url(../../shared_new/img/label_aomori.png) no-repeat center center/contain;
}
.p-list_container.iwate::before {
  background: url(../../shared_new/img/label_iwate.png) no-repeat center center/contain;
}
.p-list_container.miyagi::before {
  background: url(../../shared_new/img/label_miyagi.png) no-repeat center center/contain;
}
.p-list_container.akita::before {
  background: url(../../shared_new/img/label_akita.png) no-repeat center center/contain;
}
.p-list_container.yamagata::before {
  background: url(../../shared_new/img/label_yamagata.png) no-repeat center center/contain;
}
.p-list_container.fukushima::before {
  background: url(../../shared_new/img/label_fukushima.png) no-repeat center center/contain;
}
.p-list_container.ibaraki::before {
  background: url(../../shared_new/img/label_ibaraki.png) no-repeat center center/contain;
}
.p-list_container.tochigi::before {
  background: url(../../shared_new/img/label_tochigi.png) no-repeat center center/contain;
}
.p-list_container.gunma::before {
  background: url(../../shared_new/img/label_gunma.png) no-repeat center center/contain;
}
.p-list_container.saitama::before {
  background: url(../../shared_new/img/label_saitama.png) no-repeat center center/contain;
}
.p-list_container.chiba::before {
  background: url(../../shared_new/img/label_chiba.png) no-repeat center center/contain;
}
.p-list_container.tokyo::before {
  background: url(../../shared_new/img/label_tokyo.png) no-repeat center center/contain;
}
.p-list_container.kanagawa::before {
  background: url(../../shared_new/img/label_kanagawa.png) no-repeat center center/contain;
}
.p-list_container.niigata::before {
  background: url(../../shared_new/img/label_niigata.png) no-repeat center center/contain;
}
.p-list_container.toyama::before {
  background: url(../../shared_new/img/label_toyama.png) no-repeat center center/contain;
}
.p-list_container.ishikawa::before {
  background: url(../../shared_new/img/label_ishikawa.png) no-repeat center center/contain;
}
.p-list_container.fukui::before {
  background: url(../../shared_new/img/label_fukui.png) no-repeat center center/contain;
}
.p-list_container.yamanashi::before {
  background: url(../../shared_new/img/label_yamanashi.png) no-repeat center center/contain;
}
.p-list_container.nagano::before {
  background: url(../../shared_new/img/label_nagano.png) no-repeat center center/contain;
}
.p-list_container.gifu::before {
  background: url(../../shared_new/img/label_gifu.png) no-repeat center center/contain;
}
.p-list_container.shizuoka::before {
  background: url(../../shared_new/img/label_shizuoka.png) no-repeat center center/contain;
}
.p-list_container.aichi::before {
  background: url(../../shared_new/img/label_aichi.png) no-repeat center center/contain;
}
.p-list_container.mie::before {
  background: url(../../shared_new/img/label_mie.png) no-repeat center center/contain;
}
.p-list_container.shiga::before {
  background: url(../../shared_new/img/label_shiga.png) no-repeat center center/contain;
}
.p-list_container.kyoto::before {
  background: url(../../shared_new/img/label_kyoto.png) no-repeat center center/contain;
}
.p-list_container.osaka::before {
  background: url(../../shared_new/img/label_osaka.png) no-repeat center center/contain;
}
.p-list_container.hyogo::before {
  background: url(../../shared_new/img/label_hyogo.png) no-repeat center center/contain;
}
.p-list_container.nara::before {
  background: url(../../shared_new/img/label_nara.png) no-repeat center center/contain;
}
.p-list_container.wakayama::before {
  background: url(../../shared_new/img/label_wakayama.png) no-repeat center center/contain;
}
.p-list_container.tottori::before {
  background: url(../../shared_new/img/label_tottori.png) no-repeat center center/contain;
}
.p-list_container.shimane::before {
  background: url(../../shared_new/img/label_shimane.png) no-repeat center center/contain;
}
.p-list_container.okayama::before {
  background: url(../../shared_new/img/label_okayama.png) no-repeat center center/contain;
}
.p-list_container.hiroshima::before {
  background: url(../../shared_new/img/label_hiroshima.png) no-repeat center center/contain;
}
.p-list_container.yamaguchi::before {
  background: url(../../shared_new/img/label_yamaguchi.png) no-repeat center center/contain;
}
.p-list_container.tokushima::before {
  background: url(../../shared_new/img/label_tokushima.png) no-repeat center center/contain;
}
.p-list_container.kagawa::before {
  background: url(../../shared_new/img/label_kagawa.png) no-repeat center center/contain;
}
.p-list_container.ehime::before {
  background: url(../../shared_new/img/label_ehime.png) no-repeat center center/contain;
}
.p-list_container.kochi::before {
  background: url(../../shared_new/img/label_kochi.png) no-repeat center center/contain;
}
.p-list_container.fukuoka::before {
  background: url(../../shared_new/img/label_fukuoka.png) no-repeat center center/contain;
}
.p-list_container.saga::before {
  background: url(../../shared_new/img/label_saga.png) no-repeat center center/contain;
}
.p-list_container.nagasaki::before {
  background: url(../../shared_new/img/label_nagasaki.png) no-repeat center center/contain;
}
.p-list_container.kumamoto::before {
  background: url(../../shared_new/img/label_kumamoto.png) no-repeat center center/contain;
}
.p-list_container.oita::before {
  background: url(../../shared_new/img/label_oita.png) no-repeat center center/contain;
}
.p-list_container.miyazaki::before {
  background: url(../../shared_new/img/label_miyazaki.png) no-repeat center center/contain;
}
.p-list_container.kagoshima::before {
  background: url(../../shared_new/img/label_kagoshima.png) no-repeat center center/contain;
}
.p-list_container.okinawa::before {
  background: url(../../shared_new/img/label_okinawa.png) no-repeat center center/contain;
}
.p-list_detail-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10rem;
  height: 2.2rem;
  background-color: #4cbe58;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  margin-left: 2rem;
}
@media (max-width:767px) {
  .p-list_detail-date {
    width: 14rem;
    height: 3rem;
    font-size: 2rem;
  }
}
.p-list_detail-ttl {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 4.2rem;
  letter-spacing: -0.05em;
  color: #1b7dc2;
  background: url(../../shared_new/img/campaign_border.png) repeat-x left bottom/auto 2.7rem;
  margin-top: 1rem;
  padding: 0 0 5rem 2rem;
}
.p-list_detail-ttl span {
  max-width: 100rem;
}
@media (max-width:767px) {
  .p-list_detail-ttl {
    font-size: 4rem;
    line-height: 5.5rem;
    margin-top: 2.8rem;
    padding: 0 0 6rem 1.6rem;
  }
}
.p-list_detail-content {
  font-size: 1.8rem;
  line-height: 2.5rem;
  letter-spacing: -0.05em;
  max-width: 1100px;
  margin: 5rem auto 0;
}
@media (max-width:767px) {
  .p-list_detail-content {
    font-size: 3rem;
    line-height: 5rem;
    letter-spacing: 0;
    margin: 5.8rem auto 0;
  }
}
.p-list_detail-content img {
  display: block;
  max-width: 95rem;
  margin: 5rem auto 6rem;
}
@media (max-width:767px) {
  .p-list_detail-content img {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
    padding: 0 1.8rem;
    margin: 5.8rem auto 5rem;
  }
}
.p-list_detail-event-ttl {
  position: relative;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.05em;
  color: #1b7dc2;
  margin-top: 12rem;
}
@media (max-width:767px) {
  .p-list_detail-event-ttl {
    font-size: 4rem;
    margin-top: 5rem;
  }
}
.p-list_detail-event-ttl span {
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 0 2.5rem;
}
@media (max-width:767px) {
  .p-list_detail-event-ttl span {
    padding: 0 3.5rem;
  }
}
.p-list_detail-event-ttl::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 0.7rem;
  background-color: #1b7dc2;
}
@media (max-width:767px) {
  .p-list_detail-event-ttl::before {
    height: 1.4rem;
  }
}
.p-list_detail-item-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5.3rem;
  max-width: 970px;
  padding-top: 1rem;
  margin: 9rem auto 0;
}
@media (max-width:767px) {
  .p-list_detail-item-wrapper {
    row-gap: 6rem;
    padding-top: 0;
    padding-left: 1.5rem;
    margin: 5.5rem auto 0;
  }
}
.p-list_detail-item-wrapper::before {
  position: absolute;
  content: "";
  left: 17rem;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #1b7dc2;
}
@media (max-width:767px) {
  .p-list_detail-item-wrapper::before {
    display: none;
  }
}
.p-list_detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width:767px) {
  .p-list_detail-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-list_detail-head {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 900;
  width: 17rem;
}
@media (max-width:767px) {
  .p-list_detail-head {
    font-size: 3.2rem;
    width: auto;
  }
}
.p-list_detail-body {
  font-size: 2.4rem;
  line-height: 1.5;
  padding-left: 4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width:767px) {
  .p-list_detail-body {
    font-size: 3.2rem;
    padding-left: 0;
    margin-top: 0.6rem;
  }
}
.p-list_detail-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.2rem;
     -moz-column-gap: 2.2rem;
          column-gap: 2.2rem;
  margin-top: 8rem;
}
@media (max-width:767px) {
  .p-list_detail-sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 1.8rem;
  }
}
.p-list_detail-sns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media (max-width:767px) {
  .p-list_detail-sns-box {
    -webkit-column-gap: 2.6rem;
       -moz-column-gap: 2.6rem;
            column-gap: 2.6rem;
  }
}
.p-list_detail-sns-item {
  width: 4.3rem;
}
@media (max-width:767px) {
  .p-list_detail-sns-item {
    width: 6.9rem;
  }
}
.p-list_detail-sns-item.msg {
  width: 14.55rem;
}
@media (max-width:767px) {
  .p-list_detail-sns-item.msg {
    width: 20.6rem;
  }
}
.p-list_gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  width: 100%;
  max-width: 950px;
  margin: 5rem auto 6rem;
}
.p-list_gallery-item {
  cursor: pointer;
  width: calc((100% - 2em) / 3);
}
@media (max-width:767px) {
  .p-list_gallery-item {
    width: calc((100% - 1em) / 2);
  }
}
.p-list_gallery-item img {
  width: 100%;
  aspect-ratio: 1268/824;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f0f0f0;
}

.p-gallery_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 100;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.8);
}
.p-gallery_modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gallery_modal-close {
  position: absolute;
  top: 2em;
  right: 2em;
  width: 5em;
  height: 5em;
  cursor: pointer;
}
.p-gallery_modal-close::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 4em;
  height: 0.5em;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-gallery_modal-close::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 4em;
  height: 0.5em;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.p-gallery_modal-prev {
  position: absolute;
  top: 50%;
  left: 2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5em;
  height: 5em;
  cursor: pointer;
}
.p-gallery_modal-prev::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 3em;
  height: 0.5em;
  background-color: #fff;
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.p-gallery_modal-prev::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 3em;
  height: 0.5em;
  background-color: #fff;
  -webkit-transform: translateY(25%) rotate(-45deg);
          transform: translateY(25%) rotate(-45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.p-gallery_modal-next {
  position: absolute;
  top: 50%;
  right: 2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5em;
  height: 5em;
  cursor: pointer;
}
.p-gallery_modal-next::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 3em;
  height: 0.5em;
  background-color: #fff;
  -webkit-transform: translateY(25%) rotate(45deg);
          transform: translateY(25%) rotate(45deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.p-gallery_modal-next::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 3em;
  height: 0.5em;
  background-color: #fff;
  -webkit-transform: translateY(-25%) rotate(-45deg);
          transform: translateY(-25%) rotate(-45deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.p-gallery_modal-img {
  max-width: 60%;
}
@media (max-width:767px) {
  .p-gallery_modal-img {
    max-width: 80%;
  }
}
.p-gallery_modal-txt {
  position: absolute;
  bottom: 2em;
  right: 2em;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}

.p-entries {
  position: relative;
  background-color: #e1f0f6;
  padding: 6.4rem 0 8rem;
}
@media (max-width:767px) {
  .p-entries {
    padding: 3.4rem 0 10rem;
  }
}
.p-entries::before {
  position: absolute;
  content: "";
  left: 0;
  top: -12.8rem;
  width: 100%;
  aspect-ratio: 4000/1089;
  background: url(../../shared_new/img/entries_bg.png) no-repeat center center/contain;
  z-index: 0;
}
@media (max-width:767px) {
  .p-entries::before {
    top: -7.8rem;
    aspect-ratio: 1500/926;
    background: url(../../shared_new/img/entries_bg_sp.png) no-repeat center center/contain;
  }
}
.p-entries .l-inner {
  position: relative;
  z-index: 1;
}
.p-entries_ttl {
  width: 36.8rem;
  margin: 0 auto;
}
@media (max-width:767px) {
  .p-entries_ttl {
    width: 46.9rem;
  }
}
.p-entries_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 4.2rem;
     -moz-column-gap: 4.2rem;
          column-gap: 4.2rem;
  row-gap: 5rem;
  max-width: 1225px;
  width: 121.5rem;
  margin: 7.5rem auto 0;
}
@media (max-width:767px) {
  .p-entries_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5rem;
    width: 55rem;
    margin: 6.2rem auto 0;
  }
}
.p-entries_item {
  width: 37.7rem;
}
@media (max-width:767px) {
  .p-entries_item {
    width: 100%;
  }
}
.p-entries_item.is-close {
  display: none;
}
.p-entries_item-img img {
  width: 100%;
  aspect-ratio: 754/500;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f0f0f0;
}
.p-entries_item-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #1b7dc2;
  margin-top: 1.5rem;
}
@media (max-width:767px) {
  .p-entries_item-txt {
    font-size: 3.2rem;
    line-height: 4.8rem;
    margin-top: 1.5rem;
  }
}
.p-entries_btn {
  display: block;
  width: 15.8rem;
  margin: 6rem auto 0;
  cursor: pointer;
}
.p-entries_btn.is-close {
  display: none;
}
@media (max-width:767px) {
  .p-entries_btn {
    width: 23.7rem;
    margin: 6.5rem auto 0;
  }
}

.p-report .p-kv {
  background: transparent url(../../shared_new/img/report_wave.png) no-repeat center bottom/contain;
  padding: 8.1rem 0 12.8rem;
}
@media (max-width:767px) {
  .p-report .p-kv {
    padding: 21.4rem 0 8.9rem;
    background: transparent url(../../shared_new/img/report_wave_sp.png) no-repeat center bottom/contain;
  }
}
.p-report .p-bnr_area {
  margin-top: 9rem;
}
@media (max-width:767px) {
  .p-report .p-bnr_area {
    margin-top: 5rem;
  }
}

/*//////////////////////////////////////////////////////////////////
history
//////////////////////////////////////////////////////////////////*/
.p-history {
  background: #fff url(../img/history_bg.png) no-repeat center top/cover;
}
.p-history main {
  background: url(../img/history_illust_l.png) no-repeat left 1rem top 35.6rem/21.2rem auto, url(../img/history_illust_r.png) no-repeat right top 28rem/22.9rem auto;
}
@media (max-width:767px) {
  .p-history main {
    background: none;
  }
}
.p-history .p-kv {
  padding-top: 0;
  margin-top: 8rem;
}
@media (max-width:767px) {
  .p-history .p-kv {
    margin-top: 4rem;
  }
}
.p-history .p-kv::before {
  display: none;
}
.p-history .p-kv_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
@media (max-width:767px) {
  .p-history .p-kv_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.4rem;
    margin-left: 3rem;
  }
}
.p-history .p-kv_logo {
  position: static;
  width: 51.1rem;
}
@media (max-width:767px) {
  .p-history .p-kv_logo {
    width: 55.5rem;
  }
}
.p-history .p-kv_ttl {
  width: 42.8rem;
}
@media (max-width:767px) {
  .p-history .p-kv_ttl {
    width: 37.7rem;
    margin-left: 1.3rem;
  }
}
.p-history .p-nav {
  margin-top: 7rem;
}
@media (max-width:767px) {
  .p-history .p-nav {
    margin-top: 5rem;
  }
}
.p-history .p-nav_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-history .p-nav_item:nth-child(1) {
  width: 25.05rem;
}
@media (max-width:767px) {
  .p-history .p-nav_item:nth-child(1) {
    display: none;
  }
}
.p-history .p-nav_item:nth-child(2) {
  width: 29.5rem;
}
@media (max-width:767px) {
  .p-history .p-nav_item:nth-child(2) {
    width: 24.1rem;
  }
}
.p-history .p-nav_item:nth-child(3) {
  width: 29.7rem;
}
@media (max-width:767px) {
  .p-history .p-nav_item:nth-child(3) {
    width: 24.3rem;
  }
}
.p-history .p-nav_item:nth-child(4) {
  width: 29.6rem;
}
@media (max-width:767px) {
  .p-history .p-nav_item:nth-child(4) {
    width: 24rem;
  }
}
.p-history .p-nav_item:nth-child(5) {
  width: 22.75rem;
}
@media (max-width:767px) {
  .p-history .p-nav_item:nth-child(5) {
    display: none;
  }
}
.p-history .p-nav_item a .is-on {
  display: none;
}
@media (min-width:768px) {
  .p-history .p-nav_item a:hover {
    opacity: 1;
  }
  .p-history .p-nav_item a:hover .is-off {
    display: none;
  }
  .p-history .p-nav_item a:hover .is-on {
    display: block;
  }
}
.p-history .p-content {
  position: relative;
  max-width: 1309px;
  margin: 5rem auto 14.5rem;
  padding: 0 6rem 4rem;
}
@media (max-width:1439px) {
  .p-history .p-content {
    font-size: 0.8333333333vw;
    margin: 5em auto 14.5em;
    padding: 0 6em 4em;
  }
}
@media (max-width:767px) {
  .p-history .p-content {
    margin: 3rem auto 4.5rem;
    padding: 0 0 5rem;
  }
}
.p-history .p-content::before {
  position: absolute;
  content: "";
  top: 0;
  left: calc(50% - 0.1rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1rem;
  height: 100%;
  background-color: #218737;
  border-radius: 0.5rem;
}
@media (max-width:767px) {
  .p-history .p-content::before {
    top: 1rem;
    left: 5.2rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 1.5rem;
  }
}
.p-history .p-content_item {
  position: relative;
}
.p-history .p-content_item#content02 {
  margin-top: -33.5rem;
}
@media (max-width:1439px) {
  .p-history .p-content_item#content02 {
    margin-top: -32.5em;
  }
}
@media (max-width:767px) {
  .p-history .p-content_item#content02 {
    margin-top: 6rem;
  }
}
.p-history .p-content_item#content03 {
  position: relative;
  margin-top: -49.5rem;
}
@media (max-width:1439px) {
  .p-history .p-content_item#content03 {
    margin-top: -37.5em;
  }
}
@media (max-width:767px) {
  .p-history .p-content_item#content03 {
    margin-top: 5.4rem;
  }
}
.p-history .p-content_item#content03 a {
  display: block;
  position: absolute;
  top: 15.6rem;
  right: 13.2rem;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #2878ce;
  text-decoration: underline;
}
.p-history .p-content_item#content03 a.sp {
  display: none;
}
@media (max-width:1439px) {
  .p-history .p-content_item#content03 a {
    top: 9.1em;
    right: 7.8em;
    font-size: 1.4em;
  }
}
@media (max-width:767px) {
  .p-history .p-content_item#content03 a {
    top: 22rem;
    left: 12.8rem;
    right: auto;
    font-size: 1.7rem;
  }
  .p-history .p-content_item#content03 a.sp {
    display: block;
  }
  .p-history .p-content_item#content03 a.pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */