@charset "UTF-8";
/*//////////////////////////////////////////////////////////

------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  display: block;
  border: 0 none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 1.5rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
select::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.scrollin {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.scrollin {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.scrollin {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.scrollin {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ------------------------
    基本構造
------------------------ */
:root {
  --sideW: min(1.46vw, 20px);
}
@media screen and (max-width: 750px) {
  :root {
    --sideW: min(2.56vw, 20px);
  }
}

html {
  width: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222222;
  text-align: left;
  background-color: #121212;
}

a {
  text-decoration: none;
  color: #222222;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

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

.al-center {
  text-align: center;
}

.al-center-pc {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .al-center-pc {
    text-align: left;
  }
}

.nolink {
  pointer-events: none;
  color: #222222;
  cursor: pointer;
  text-decoration: none;
}

.disp-ib {
  display: inline-block;
}

.only-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .only-sp {
    display: inherit;
  }
}

@media screen and (max-width: 750px) {
  .only-pc {
    display: none;
  }
}
.contents, .contents_lg {
  width: calc(950px + var(--sideW) * 2);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.contents_lg {
  max-width: calc(1246px + var(--sideW) * 2);
}

.hero {
  position: relative;
  padding-top: 13px;
  background: url(../img/hero_bg.svg) no-repeat center top/cover;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .hero {
    padding-top: 19px;
    background-size: auto 91vw;
    margin-bottom: -6.5vw;
  }
}
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: min(8.12vw, 111px);
  background: url(../img/hero_bg_bottom.svg) repeat-x center bottom/auto 100%;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .hero::after {
    height: min(28.2vw, 111px);
    bottom: 6.5vw;
  }
}
.hero img {
  display: block;
  width: 1463px;
  max-width: calc(100% + 41px + 57px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .hero img {
    width: 140.5%;
    max-width: none;
    left: 54%;
  }
}

.sec-date {
  position: relative;
  padding-top: 58px;
  background: url(../img/bg_lead.svg) no-repeat center top;
}
@media screen and (max-width: 750px) {
  .sec-date {
    padding-top: 100px;
    background: url(../img/bg_lead_sp.svg) no-repeat top left 10px/100% auto;
  }
}
.sec-date::before {
  content: "";
  position: absolute;
  width: 203px;
  aspect-ratio: 203/224;
  background: url(../img/ico_puru.svg) no-repeat center/contain;
  top: -160px;
  right: var(--sideW);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .sec-date::before {
    width: 108px;
    top: -40px;
  }
}
.sec-date h2 img {
  display: block;
  margin: 0 auto;
  width: 450px;
}
@media screen and (max-width: 750px) {
  .sec-date h2 img {
    padding: 0 calc(var(--sideW) * 2);
  }
}
.sec-date .grid-area {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  align-items: start;
  gap: 0 min(2.2vw, 30px);
  position: relative;
  margin-top: 30px;
  padding-bottom: 160px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area {
    grid-template-columns: 1fr;
    margin-top: 45px;
    padding: 0 29px 55px;
  }
}
.sec-date .grid-area .image {
  position: relative;
  width: 252px;
  max-width: 100%;
  margin: 0 auto;
}
.sec-date .grid-area .image img {
  display: block;
  margin: 0 auto;
}
.sec-date .grid-area .image img.sub {
  position: absolute;
  top: -30px;
  right: -9px;
}
.sec-date .grid-area .list {
  margin-top: 10px;
}
.sec-date .grid-area .list li:not(.small) {
  text-align: center;
  border-bottom: 2px dotted #FFEC00;
  padding: 12px 0;
  color: #FFEC00;
}
.sec-date .grid-area .list li:not(.small) p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 2.5;
  margin-top: 8px;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .list li:not(.small) p {
    flex-direction: column;
    align-items: center;
  }
}
.sec-date .grid-area .list li:not(.small) p:first-child {
  margin-top: 0;
}
.sec-date .grid-area .list li:not(.small) p span {
  display: block;
  position: relative;
  padding-inline: 1.1em 0.1em;
  font-size: clamp(1.4rem, 1.32vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.046em;
  line-height: 1.33;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .list li:not(.small) p span {
    font-size: 1.8rem;
  }
}
.sec-date .grid-area .list li:not(.small) p span::before, .sec-date .grid-area .list li:not(.small) p span::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 400;
}
.sec-date .grid-area .list li:not(.small) p span::after {
  left: 100%;
}
.sec-date .grid-area .list li:not(.small) p span + span::before {
  content: none;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .list li:not(.small) p span + span::before {
    content: "★";
  }
}
.sec-date .grid-area .list li:not(.small) strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.4;
}
.sec-date .grid-area .list li:not(.small) small {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.046em;
}
.sec-date .grid-area .list li:not(.small) img {
  display: block;
  margin: 10px auto 0;
  width: auto;
}
.sec-date .grid-area .list .small {
  padding: 10px 0;
}
.sec-date .grid-area .list .small p {
  color: #FFEC00;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.75;
}
.sec-date .grid-area .box_red {
  position: relative;
  background-color: #BC0808;
  margin-top: 15px;
  border-radius: 15px;
  padding: 15px;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .box_red {
    margin-inline: -20px;
  }
}
.sec-date .grid-area .box_red::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 115px;
  background: url(../img/lead_02_cosplay01.svg) no-repeat center/contain;
  left: 15px;
  bottom: -16px;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .box_red::before {
    left: -15px;
  }
}
.sec-date .grid-area .box_red::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 94px;
  background: url(../img/lead_02_cosplay02.svg) no-repeat center/contain;
  right: 0;
  bottom: -16px;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .box_red::after {
    right: -15px;
  }
}
.sec-date .grid-area .box_red h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.046em;
  line-height: 1.5;
}
.sec-date .grid-area .box_red h3 span {
  display: block;
  font-size: 1.8rem;
  color: #FFEC00;
}
.sec-date .grid-area .box_red h3 span::before, .sec-date .grid-area .box_red h3 span::after {
  content: "★";
  display: inline-block;
  color: #fff;
  font-weight: 400;
  margin: 0 3px;
}
.sec-date .grid-area .box_red a {
  display: block;
  position: relative;
  width: 226px;
  max-width: 100%;
  line-height: 40px;
  border-radius: 20px;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid #fff;
  letter-spacing: 0.046em;
  padding: 0 20px;
  margin: 10px auto 0;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .box_red a {
    margin-top: 15px;
  }
}
.sec-date .grid-area .box_red a:hover {
  background-color: #BC0808;
  color: #fff;
}
.sec-date .grid-area .box_red a:hover::after {
  border-color: #fff;
}
.sec-date .grid-area .box_red a::after {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1/1;
  border-top: 2px solid #BC0808;
  border-right: 2px solid #BC0808;
  right: 16px;
  top: calc(50% - 4px);
  transform: rotate(45deg);
  transition: 0.3s;
}
.sec-date .grid-area .box_red p {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.046em;
}
.sec-date .grid-area .box_red dl {
  margin-top: 15px;
}
.sec-date .grid-area .box_red dl > div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.sec-date .grid-area .box_red dl > div.today {
  margin-top: 15px;
}
.sec-date .grid-area .box_red dl > div.today dt {
  font-size: 1.3rem;
  color: #fff;
}
.sec-date .grid-area .box_red dl dt {
  font-size: 1.7rem;
  color: #FFEC00;
  font-weight: 800;
}
.sec-date .grid-area .item:first-child {
  position: relative;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .item:first-child {
    margin-bottom: 195px;
  }
}
.sec-date .grid-area .item:first-child::after {
  content: "";
  position: absolute;
  width: calc(100% + 17px);
  aspect-ratio: 477/267;
  background: url(../img/bg_02_lead.png) no-repeat right top/182px auto, url(../img/bg_03_lead.png) no-repeat left bottom/248px auto;
  right: 0;
  top: 100%;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .item:first-child::after {
    width: 99vw;
    aspect-ratio: 395/195;
    background-size: 40.2% auto, 45.8% auto;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec-date .grid-area .item:first-child .image {
  position: relative;
}
.sec-date .grid-area .item:first-child .image::before {
  content: "";
  position: absolute;
  width: 118px;
  aspect-ratio: 118/117;
  background: url(../img/lead_01_date_caption.svg) no-repeat center/contain;
  top: -3px;
  left: -60px;
}
.sec-date .grid-area .item:first-child .image::after {
  content: "";
  position: absolute;
  width: 113px;
  aspect-ratio: 1/1;
  background: url(../img/lead_01_date_bg.svg) no-repeat center/contain;
  bottom: -23px;
  right: -77px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .sec-date .grid-area .item:first-child .image::after {
    width: 95px;
    right: -50px;
  }
}
.sec-date .grid-area .item:nth-child(2) li,
.sec-date .grid-area .item:nth-child(2) li.small {
  border-color: #72BB2B;
}
.sec-date .grid-area .item:nth-child(2) li p,
.sec-date .grid-area .item:nth-child(2) li.small p {
  color: #72BB2B;
}
.sec-date .cosplay {
  position: relative;
  width: 710px;
  max-width: 100%;
  background-color: #FFEC00;
  border-radius: 15px;
  padding: 20px 30px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .sec-date .cosplay {
    padding: 20px;
  }
}
.sec-date .cosplay strong {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  color: #BC0808;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .sec-date .cosplay strong {
    font-size: 1.9rem;
  }
}
.sec-date .cosplay dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 15px;
}
@media screen and (max-width: 750px) {
  .sec-date .cosplay dl {
    grid-template-columns: 1fr;
  }
}
.sec-date .cosplay dl dt {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  background-color: #BC0808;
  padding: 13px 16px 10px;
  border-radius: 15px;
}
@media screen and (max-width: 750px) {
  .sec-date .cosplay dl dt {
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.28;
  }
}
.sec-date .cosplay dl dt img {
  display: block;
  margin: 0 auto;
  width: 180px;
}
@media screen and (max-width: 750px) {
  .sec-date .cosplay dl dt img {
    margin-bottom: 10px;
  }
}
.sec-date .cosplay dl dd {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.57;
}
@media screen and (max-width: 750px) {
  .sec-date .cosplay dl dd {
    justify-content: center;
  }
}
.sec-date .cosplay dl dd img {
  display: block;
  width: 90px;
}
.sec-date .box_rally {
  position: relative;
  width: 710px;
  max-width: 100%;
  background-color: #009240;
  color: #fff;
  border-radius: 15px;
  padding: 20px 30px;
  margin: 30px auto 0;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .sec-date .box_rally {
    padding: 20px;
    margin-top: 10px;
  }
}
.sec-date .box_rally h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .sec-date .box_rally h3 {
    font-size: 2.4rem;
    gap: 25px;
  }
}
.sec-date .box_rally h3::before, .sec-date .box_rally h3::after {
  content: "";
  display: block;
  width: 3px;
  height: 37px;
  background-color: #fff;
  transform: rotate(150deg);
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .sec-date .box_rally h3::before, .sec-date .box_rally h3::after {
    height: 72px;
    margin-top: 5px;
    translate: 0 3px;
  }
}
.sec-date .box_rally h3::after {
  transform: rotate(30deg);
}
.sec-date .box_rally p {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .sec-date .box_rally p {
    text-align: left;
  }
}
.sec-date .box_rally a {
  display: block;
  position: relative;
  width: 226px;
  max-width: 100%;
  line-height: 40px;
  border-radius: 20px;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid #fff;
  letter-spacing: 0.046em;
  padding: 0 20px;
  margin: 15px auto 0;
}
@media screen and (max-width: 750px) {
  .sec-date .box_rally a {
    margin-top: 15px;
  }
}
.sec-date .box_rally a:hover {
  background-color: #009240;
  color: #fff;
}
.sec-date .box_rally a:hover::after {
  border-color: #fff;
}
.sec-date .box_rally a::after {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1/1;
  border-top: 2px solid #009240;
  border-right: 2px solid #009240;
  right: 16px;
  top: calc(50% - 4px);
  transform: rotate(45deg);
  transition: 0.3s;
}

.sec-map {
  margin-top: 58px;
}
@media screen and (max-width: 750px) {
  .sec-map {
    margin-top: 40px;
  }
}
.sec-map .map {
  position: relative;
}
@media screen and (max-width: 750px) {
  .sec-map .map {
    overflow: hidden;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.sec-map .map dt {
  position: relative;
}
.sec-map .map dt img {
  border-radius: 20px;
}
@media screen and (max-width: 750px) {
  .sec-map .map dt img {
    border-radius: 0;
  }
}
.sec-map .map dd {
  position: absolute;
  width: 64.2%;
  right: 10px;
  bottom: -20px;
}
@media screen and (max-width: 750px) {
  .sec-map .map dd {
    position: relative;
    z-index: 1;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 5px;
  }
}
.sec-map .map dd::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 225px;
  background-color: #000;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: 100%;
  left: 47.5%;
}
@media screen and (max-width: 750px) {
  .sec-map .map dd::before {
    height: 39vw;
    bottom: 100%;
    left: 84.4%;
  }
}
.sec-map .map dd picture {
  display: block;
}
.sec-map .map dd img {
  border-radius: 10px;
  border: 3px solid #000;
}
@media screen and (max-width: 750px) {
  .sec-map .map dd img {
    display: block;
    border-radius: 0;
    border: 0 none;
  }
}

.sec-area {
  padding-bottom: 162px;
  background: url(../img/bg_footer_left.svg) no-repeat left bottom/min(43.9vw, 600px), url(../img/bg_footer_right.svg) no-repeat right bottom/min(43.9vw, 600px);
  margin-top: 125px;
}
@media screen and (max-width: 750px) {
  .sec-area {
    margin-top: 60px;
    background: none;
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 750px) {
  .sec-area::after {
    content: "";
    display: block;
    position: relative;
    width: 153.8vw;
    aspect-ratio: 600/112;
    background: url(../img/bg_footer_sp.svg) no-repeat center/contain;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec-area .contents, .sec-area .contents_lg {
  padding: 0 calc(var(--sideW) / 2);
}
.sec-area .area-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 105px 30px;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail {
    padding-top: 60px;
  }
}
.sec-area .area-detail .item {
  position: relative;
  background-color: #FFEC00;
  border-radius: 50px;
  padding: 35px;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item {
    width: 100%;
    border-radius: 30px;
    padding: 35px 20px;
  }
}
.sec-area .area-detail .item__01 {
  background-color: #72BA2A;
}
.sec-area .area-detail .item__01 h2 {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__01 h2 {
    top: -60px;
  }
}
.sec-area .area-detail .item__01 p {
  font-weight: 700;
  line-height: 1.66;
  color: #fff;
  font-size: 1.5rem;
}
.sec-area .area-detail .item__01 .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px 10px;
  margin-top: 34px;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__01 .grid {
    flex-direction: column;
  }
}
.sec-area .area-detail .item__01 .grid .text {
  width: 59%;
  padding: 20px 40px 30px;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__01 .grid .text {
    width: auto;
    order: 2;
    padding: 30px 20px;
    margin: 0 -10px;
  }
}
.sec-area .area-detail .item__01 .grid .text h3 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.046em;
  line-height: 1.5;
  color: #189F00;
}
.sec-area .area-detail .item__01 .grid .text table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
  color: #189F00;
  font-size: 1.5rem;
  letter-spacing: 0.046em;
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__01 .grid .text table th {
    white-space: nowrap;
  }
}
.sec-area .area-detail .item__01 .grid .text table th, .sec-area .area-detail .item__01 .grid .text table td {
  vertical-align: top;
  border: none;
}
.sec-area .area-detail .item__01 .grid .text small {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.42;
  color: #189F00;
  margin-top: 3px;
}
.sec-area .area-detail .item__01 .grid .text p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.66;
  color: #222222;
  margin-top: 15px;
}
.sec-area .area-detail .item__01 .grid .image {
  width: calc(41% - 10px);
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__01 .grid .image {
    width: auto;
    order: 1;
  }
}
.sec-area .area-detail .item__02 {
  background-color: #FFEC00;
}
.sec-area .area-detail .item__02 h2 {
  background-image: url(../img/area_title02.svg);
}
.sec-area .area-detail .item__02 h3 {
  display: block;
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #222222;
  color: #FFEC00;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
  padding: 15px 0;
  border-radius: 30px;
}
.sec-area .area-detail .item__02 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 64px;
  margin-top: 65px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__02 ul {
    flex-direction: column;
    margin-top: 40px;
  }
}
.sec-area .area-detail .item__02 ul li {
  position: relative;
  width: calc(50% - 32px);
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__02 ul li {
    width: auto;
  }
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__02 ul li:nth-child(even)::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 4px;
    background: url("data:image/svg+xml;utf8,<svg width='8' height='4' xmlns='http://www.w3.org/2000/svg'><circle cx='2' cy='2' r='2' fill='$mainColor'/></svg>") repeat-x;
    top: -30px;
    left: 0;
  }
}
.sec-area .area-detail .item__02 ul li:nth-child(odd)::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: url("data:image/svg+xml;utf8,<svg width='4' height='8' xmlns='http://www.w3.org/2000/svg'><circle cx='2' cy='2' r='2' fill='black'/></svg>") repeat-y;
  position: absolute;
  top: 0;
  right: -34px;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__02 ul li:nth-child(odd)::before {
    content: none;
  }
}
.sec-area .area-detail .item__02 ul li:nth-child(odd)::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 4px;
  background: url("data:image/svg+xml;utf8,<svg width='8' height='4' xmlns='http://www.w3.org/2000/svg'><circle cx='2' cy='2' r='2' fill='$mainColor'/></svg>") repeat-x;
  top: -30px;
  left: 0;
}
.sec-area .area-detail .item__02 ul li:nth-child(odd):first-child::after {
  content: none;
}
.sec-area .area-detail .item__02 ul li h4 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.046em;
  margin-top: 20px;
}
.sec-area .area-detail .item__02 ul li h4 small {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.sec-area .area-detail .item__02 ul li .time {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.046em;
  margin-top: 5px;
}
.sec-area .area-detail .item__02 ul li .text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.42;
  margin-top: 12px;
}
.sec-area .area-detail .item__02 ul li figure {
  position: relative;
}
.sec-area .area-detail .item__02 ul li figure figcaption {
  position: absolute;
  left: 0;
  top: 55%;
  font-size: min(1.2rem, 1.2vw);
  font-weight: 500;
  line-height: 1.5;
  width: 44.3%;
}
@media screen and (max-width: 750px) {
  .sec-area .area-detail .item__02 ul li figure figcaption {
    width: 41%;
    font-size: min(1.2rem, 3vw);
  }
}
.sec-area .area-detail .item a {
  display: block;
  position: relative;
  width: 226px;
  max-width: 100%;
  line-height: 40px;
  border-radius: 20px;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.046em;
  padding: 0 20px;
  margin: 15px 0 0;
}
.sec-area .area-detail .item a:hover {
  background-color: #222222;
  color: #fff;
}
.sec-area .area-detail .item a:hover::after {
  border-color: #fff;
}
.sec-area .area-detail .item a::after {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1/1;
  border-top: 2px solid #222222;
  border-right: 2px solid #222222;
  right: 16px;
  top: calc(50% - 4px);
  transform: rotate(45deg);
  transition: 0.3s;
}
.sec-area .area-detail h2 {
  position: absolute;
  top: -55px;
  left: 0;
  width: 240px;
  height: 75px;
  line-height: 70px;
  text-align: center;
  padding-left: 25px;
  background: url(../img/area_title01.svg) no-repeat center/contain;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.046em;
}
.sec-area .area-detail img {
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}
.sec-area .area-detail img[src$=svg] {
  border-radius: 0;
}
.sec-area .hiking {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 18px;
  padding: 30px;
  border: 3px solid #222222;
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .sec-area .hiking {
    margin-top: 40px;
    padding: 20px;
  }
}
.sec-area .hiking .image {
  width: calc(40.2% - 18px);
}
@media screen and (max-width: 750px) {
  .sec-area .hiking .image {
    width: 100%;
  }
}
.sec-area .hiking .text {
  width: 59.8%;
  letter-spacing: 0.046em;
}
@media screen and (max-width: 750px) {
  .sec-area .hiking .text {
    width: 100%;
  }
}
.sec-area .hiking .text strong {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
}
.sec-area .hiking .text .lead {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 5px;
}
.sec-area .hiking .text .info {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .sec-area .hiking .text .info {
    letter-spacing: 0;
  }
}
.sec-area .hiking .text p:not([class]) {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.43;
  margin-top: 15px;
}
.sec-area .cation {
  font-size: 1.4rem;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .sec-area .cation {
    margin-top: 20px;
  }
}
.sec-area .cation dt {
  font-weight: 700;
}
.sec-area .cation dd {
  font-weight: 500;
}

.pageTop {
  position: fixed;
  bottom: -30px;
  right: -15px;
  z-index: 98;
}
@media screen and (max-width: 750px) {
  .pageTop {
    right: -20px;
    bottom: -25px;
  }
}
.pageTop a {
  display: block;
  position: relative;
  width: min(12.66vw, 173px);
}
@media screen and (max-width: 750px) {
  .pageTop a {
    width: min(44vw, 173px);
  }
}
.pageTop a:hover {
  opacity: 0.7;
}
.pageTop img {
  display: block;
  margin: auto;
}

.l-footer__backhead {
  display: none;
}