@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@700&display=swap");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  color: #1c1c1c;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  height: 100%;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #1c1c1c;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  word-break: break-all;
}

a:hover {
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  list-style: none;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section,
.section {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

canvas {
  display: inline-block;
}

iframe {
  vertical-align: middle;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input,
select,
textarea {
  font-size: 1.4rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  outline: none;
  padding: 5px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #39b8b8;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

select {
  font-size: 1.4rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

input[type="checkbox"],
input[type="radio"] {
  background: #fff;
  cursor: pointer;
  margin-right: 0.5em;
  width: auto;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: flex;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .toggle {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 999;
    right: 10px;
    top: 10px;
    background-color: #6db632;
    border-radius: 4px;
  }

  .toggle span {
    display: block;
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #fff;
    left: 7.5px;
    top: 19px;
    border-radius: 2px;
    transition: all 0.5s;
  }

  .toggle span:first-child {
    margin-top: -8px;
  }

  .toggle span:nth-child(3) {
    margin-top: 8px;
  }

  .toggle::after {
    content: "menu";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    color: #6db632;
    font-family: "Noto Sans JP";
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  }

  .toggle.active::after {
    content: "close";
  }

  .toggle.active span:first-child {
    margin-top: 0;
    transform: rotate(45deg);
  }

  .toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .toggle.active span:nth-child(3) {
    margin-top: 0;
    transform: rotate(-45deg);
  }
}

@media screen and (min-width: 769px) {
  .gnav {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .gnav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999;
    height: 100dvh;
    top: 0;
    right: 0;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
  }

  .gnav.active {
    visibility: visible;
    opacity: 1;
  }
}

/*////////////////////////

 user common css

////////////////////////*/

.inner {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.bold {
  font-weight: bold;
}

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

.t-right {
  text-align: right;
}

.f-zen {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}

.c-green {
  color: #6db632;
}

.c-red {
  color: #ec504c;
}

.hdg01 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 1em;
  line-height: 1.5;
}

.hdg01__en {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ec504c;
  font-size: 1.4rem;
  color: #fff;
  display: block;
  letter-spacing: 0.1em;
  text-align: center;
  width: fit-content;
  min-width: 160px;
  padding: 0.5em 3em;
  border-radius: 20px;
  margin-bottom: 15px;
  position: relative;
}

.hdg01__en::before {
  content: "";
  width: 15px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: #ec504c;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
}

.hdg01__img {
  display: block;
  margin: 5px 0;
}

.hdg01.t-center .hdg01__en {
  margin-left: auto;
  margin-right: auto;
}

.hdg01 .brackets {
  margin-right: 35px;
  display: inline-block;
  position: relative;
}

.hdg01 .hdg01__min {
  font-size: 3rem;
}

.hdg01 .c-green {
  margin: 0 -0.3em 0 -0.5em;
}

.hdg02 {
  text-align: center;
  color: #ec504c;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  width: fit-content;
  font-size: 3rem;
  padding: 0 1em;
  position: relative;
  margin: 0 auto 1em;
  line-height: 1.2;
}

.hdg02::before,
.hdg02::after {
  content: "";
  width: 1px;
  height: 30px;
  border-left: 2px dotted #ec504c;
  position: absolute;
  bottom: 0;
}

.hdg02::before {
  left: 0;
  transform: rotate(-25deg);
}

.hdg02::after {
  right: 0;
  transform: rotate(25deg);
}

.hdg02__en {
  display: block;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.hdg02__marker {
  background: linear-gradient(transparent 80%, #fbff95 20%);
}

.hdg03 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
}

.btn01 {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 80px;
  line-height: 76px;
  background-color: #fff;
  border: 2px solid #ec504c;
  border-radius: 40px;
  position: relative;
  color: #ec504c;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.btn01 i,
.btn01 .icn {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.btn01 path {
  transition: all 0.3s;
}

.btn01:hover {
  opacity: 1;
  background-color: #ec504c;
  color: #fff;
}

.btn01:hover path {
  fill: #fff;
}

.btn01.btn01--black {
  color: #1c1c1c;
  border-color: #1c1c1c;
}

.btn01.btn01--black:hover {
  background-color: #1c1c1c;
  color: #fff;
}

.btn02,
.btn-reset {
  display: block;
  width: 260px;
  height: 80px;
  line-height: 76px;
  border-radius: 40px;
  border: 2px solid #6db632;
  text-align: center;
  font-weight: bold;
  color: #6db632;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.btn02::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 11px 0 11px;
  border-color: #6db632 transparent transparent transparent;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7.5px;
}

.btn03 {
  display: block;
  max-width: 250px;
  height: 60px;
  line-height: 58px;
  border-radius: 40px;
  border: 1px solid #cecece;
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.btn03 i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.btn03:hover {
  background-color: #cecece;
  opacity: 1;
}

.btn-reset {
  background-color: #dbdbdb;
  color: #1c1c1c;
  border-color: #dbdbdb;
}

.btn-reset::before,
.btn-reset::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.btn-reset::before {
  width: 26px;
  height: 26px;
  background-color: #1c1c1c;
  border-radius: 50%;
  right: 30px;
}

.btn-reset::after {
  z-index: 2;
  width: 10px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  right: 38px;
}
.btn-archive {
  display: block;
  border: 1px solid #cecece;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 30px;
}

.btn-archive i {
  color: #6db632;
  font-size: 1.4rem;
  margin-left: 0.5em;
  transition: color 0.3s;
}

.btn-archive:hover {
  opacity: 1;
  background-color: #6db632;
  border-color: #6db632;
  color: #fff;
}

.btn-archive:hover i {
  color: #fff;
}

.btn-detail {
  display: block;
  text-align: center;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #6db632;
  border: 2px solid #6db632;
  background-color: #fff;
  height: 50px;
  line-height: 46px;
  position: relative;
}

.btn-detail i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-detail:hover {
  background-color: #6db632;
  color: #fff;
  opacity: 1;
}

.btn-detail--report {
  color: #1c1c1c;
  font-weight: 400;
  border-color: #1c1c1c;
}

.btn-detail--report:hover {
  background-color: #1c1c1c;
}

.btn-more {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ec504c;
  text-align: center;
  position: relative;
  max-width: 300px;
  height: 80px;
  line-height: 78px;
  border: 2px solid #ec504c;
  margin: 60px auto 0;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-more i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-more:hover {
  opacity: 1;
  background-color: #ec504c;
  color: #fff;
}

.bg-beige {
  background-color: #fbf9f2;
}

.sp,
.sp02 {
  display: none;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }

  .hdg01 {
    font-size: 2.8rem;
  }

  .hdg01__en {
    font-size: 1.2rem;
    min-width: 120px;
    margin-bottom: 10px;
    padding: 0.5em 2em;
  }

  .hdg01__en::before {
    bottom: 5px;
  }

  .hdg01 .hdg01__min {
    font-size: 2rem;
  }

  .hdg01__img {
    max-width: 280px;
    margin: 5px auto;
  }

  .hdg02 {
    font-size: 2.2rem;
  }

  .hdg02::before,
  .hdg02::after {
    height: 26px;
  }

  .hdg02__en {
    font-size: 1.3rem;
  }

  .hdg03 {
    font-size: 2rem;
  }

  .btn01 {
    max-width: 260px;
    height: 50px;
    line-height: 46px;
    font-size: 1.4rem;
  }

  .btn01 i,
  .btn01 .icn {
    right: 20px;
  }

  .btn02,
  .btn-reset {
    width: 200px;
    height: 50px;
    line-height: 46px;
  }

  .btn02::before {
    border-width: 10px 7px 0 7px;
    margin-top: -5px;
  }

  .btn03 {
    height: 50px;
    line-height: 48px;
  }

  .btn03 i {
    right: 20px;
  }

  .btn-reset::before {
    right: 10px;
  }

  .btn-reset::after {
    right: 18px;
  }

  .btn-detail {
    font-size: 1.2rem;
    height: 40px;
    line-height: 36px;
  }

  .btn-detail i {
    right: 15px;
  }

  .btn-more {
    max-width: 260px;
    height: 50px;
    line-height: 46px;
  }

  .btn-more i {
    right: 20px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .pc02 {
    display: none;
  }

  .sp02 {
    display: block;
  }
}

/*////////////////////////

 header

////////////////////////*/

.header {
  position: absolute;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
}

.header .h-logo {
  max-width: 200px;
}

.header .gnav {
  width: calc(100% - 280px);
  max-width: 730px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 20px 40px;
}

.header .gnav .nav-list .nav-list__item a {
  display: block;
  font-size: 1.8rem;
  text-align: center;
}

.header .gnav .nav-list .nav-list__item .en {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 5px;
}

.header .gnav .nav-list .nav-list__item .c-green {
  display: inline-block;
  position: relative;
}

.header .gnav .nav-list .nav-list__item .c-green::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #6db632;
  position: absolute;
  left: -15px;
  top: 50%;
  margin-top: -2px;
}

.header .archive {
  position: absolute;
  right: 60px;
  top: 20px;
  display: flex;
  gap: 15px;
}

.header .archive-link {
  display: block;
  font-weight: bold;
  text-decoration: underline;
  font-size: 0.9em;
  color: #ec504c;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1000px) {
  .header .h-logo {
    max-width: 160px;
  }
  .header .gnav {
    margin: 10px;
    width: calc(100% - 180px);
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: auto;
  }

  .header .h-logo {
    width: 80px;
  }

  .header .gnav {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    margin: 0;
    padding: 0;
  }

  .header .gnav .nav-list {
    display: block !important;
    max-width: 250px;
    margin: 0 0 0 auto;
    background-color: #6db632;
    height: 100dvh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 60px 25px 40px;
  }

  .header .gnav .nav-list .nav-list__item {
    line-height: 1.2;
    border-bottom: 1px solid #afe385;
  }

  .header .gnav .nav-list .nav-list__item a {
    color: #fff;
    padding: 20px 10px;
  }

  .header .gnav .nav-list .nav-list__item .c-green {
    color: #fff;
  }

  .nav-list__logo {
    margin-top: 30px;
  }

  .nav-list__logo .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fbf9f2;
    margin: 0 auto;
  }

  .nav-list__logo .logo img {
    width: 58px;
  }
}

/*////////////////////////

footer

////////////////////////*/

.footer-contact {
  position: relative;
  padding: 100px 0;
}

.footer-contact .container {
  position: relative;
}

.footer-contact .contact-hdg {
  font-size: 3rem;
  color: #462900;
  text-align: center;
  margin-bottom: 18px;
}

.footer-contact .contact-hdg img {
  vertical-align: sub;
  margin-right: 3px;
}

.footer-contact .contact-hdg + p {
  margin-bottom: 40px;
}

.footer-contact .contact-box {
  border-top: 2px solid #dbdbdb;
  border-bottom: 2px solid #dbdbdb;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 15px 0;
}

.footer-contact .contact-box .contact-item {
  width: 50%;
  text-align: center;
  padding: 15px 10px 25px;
}

.footer-contact .contact-box .contact-item:first-child {
  border-right: 2px solid #dbdbdb;
}

.footer-contact .contact-box .contact-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-contact .contact-box .contact-item h3 .icn {
  display: block;
  margin-bottom: 10px;
}

.footer-contact .contact-box .contact-item .link-mail {
  font-weight: bold;
  border-bottom: 1px solid #000;
}

.footer-contact .contact-box .contact-item .link-tel {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
}

.footer-contact .bnr-list {
  max-width: 1200px;
  margin: 0 auto 60px;
  justify-content: center;
  gap: 20px;
}

.footer-contact .bnr-list .bnr-list__item {
  max-width: 240px;
}

.footer-contact .bnr-list .bnr-list__item a {
  display: block;
}

.footer-contact .bg-beige {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 15px;
}

.footer-contact .bg-beige .bold {
  margin-bottom: 15px;
}

.footer-contact .bg-beige a {
  color: #6db632;
  text-decoration: underline;
}

.footer .pagetop {
  position: absolute;
  bottom: -140px;
  right: 15px;
  max-width: 45px;
}

.footer-copy {
  height: 550px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/f-bg.jpg);
  background-image: url(../img/f-bg.webp);
  position: relative;
}

.footer .copy {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30px;
  z-index: 1;
  text-align: center;
}

.footer .copy small {
  font-size: 1.4rem;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}

@media screen and (max-width: 768px) {
  .footer-contact {
    padding: 40px 0 120px;
  }

  .footer-contact .contact-hdg {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .footer-contact .contact-hdg img {
    width: 150px;
  }

  .footer-contact .contact-hdg + p {
    margin-bottom: 30px;
  }

  .footer-contact .contact-box {
    border-width: 1px;
    margin: 0 auto 30px;
    padding: 0;
  }

  .footer-contact .contact-box .contact-item {
    width: 100%;
    text-align: center;
    padding: 20px 10px 30px;
  }

  .footer-contact .contact-box .contact-item:first-child {
    border-right: none;
    border-bottom: 1px solid #dbdbdb;
  }

  .footer-contact .contact-box .contact-item h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  .footer-contact .contact-box .contact-item h3 .icn {
    display: block;
    max-width: 50px;
    margin: 0 auto 15px;
  }

  .footer-contact .contact-box .contact-item .link-tel {
    font-size: 2.5rem;
  }

  .footer-contact .bnr-list {
    max-width: 400px;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .footer-contact .bnr-list .bnr-list__item {
    width: calc(50% - 5px);
    max-width: 145px;
  }

  .footer .container {
    position: static;
  }

  .footer .pagetop {
    bottom: 10px;
    right: 10px;
  }

  .footer-copy {
    background-image: url(../img/f-bg_sp.jpg);
    background-image: url(../img/f-bg_sp.webp);
  }

  .footer .copy small {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 550px) {
  .footer {
    background-size: auto;
  }
}

/* top */

.mv img {
  width: 100%;
}

.top-news {
  padding-top: 80px;
}

.news-list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.news-list__item {
  border-bottom: 1px solid #cbcbcb;
}

.news-list__item a {
  display: flex;
  padding: 30px 50px 30px 20px;
  gap: 34px;
  position: relative;
}

.news-list__item a::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 1.8rem;
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.news-list__date {
  font-weight: bold;
  white-space: nowrap;
}

.news-list__hdg {
  font-size: 1.6rem;
  font-weight: 500;
}

.top-news .btn01 {
  margin: 40px auto 0;
}

.top-about {
  padding: 120px 0;
}

.top-about .container {
  position: relative;
}

.top-about .illust {
  position: absolute;
  max-width: 200px;
  right: 15px;
  top: -63px;
  z-index: 3;
}

.top-about .flexbox {
  flex-direction: row-reverse;
}

.top-about .logo-download {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  padding: 100px 20px;
  position: relative;
  background: url(../img/download_illust.png) no-repeat left 136px bottom 0 / 67px #fff;
}

.top-about .logo-download .comment {
  line-height: 1.2;
  position: absolute;
  right: 144px;
  bottom: 103px;
}

.top-about .logo-download .comment::before,
.top-about .logo-download .comment::after {
  content: "";
  width: 2px;
  height: 65px;
  background-color: #6db632;
  position: absolute;
  top: 0;
}

.top-about .logo-download .comment::before {
  left: -20px;
  transform: rotate(-18deg);
}

.top-about .logo-download .comment::after {
  right: -20px;
  transform: rotate(18deg);
}

.top-about .logo-download .btn01 {
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
}

.top-about .logo-download .btn01 .icn {
  top: 55%;
}

.top-about .txt {
  width: calc(100% - 550px);
  max-width: 620px;
  position: relative;
  z-index: 4;
}

.top-about .desc {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-bottom: 40px;
}

.top-about .desc p {
  line-height: 2;
  font-size: 1.8rem;
}

.top-about .archive {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding: 20px;
}

.archive-list {
  display: flex;
  gap: 10px;
}

.top-event {
  padding-top: 80px;
  position: relative;
  z-index: 3;
}

.top-event::before {
  content: "";
  width: 100%;
  height: 400px;
  background: url(../img/bg01_w.svg) no-repeat center top / auto #fbf9f2;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.event-pickup {
  padding: 50px 50px 0;
  overflow-x: hidden;
}

.pickup-slider {
  max-width: 1000px;
  overflow: visible !important;
}

.pickup-slider .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.pickup-slider .swiper-slide.swiper-slide-active {
  border-color: #ec504c;
}

.slider-btn {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ec504c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s;
}

.slider-btn.swiper-button-disabled {
  background-color: #cecece;
  cursor: default;
  pointer-events: none;
}

.slider-btn:hover {
  opacity: 0.7;
}

.slider-prev {
  left: -30px;
}

.slider-next {
  right: -30px;
}

.pickup-slider .swiper-pagination {
  position: static;
  text-align: right;
  margin-top: 20px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background-color: #ec504c !important;
}

.pickup-item {
  background-color: #fbf9f2;
  padding: 40px 50px 30px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.pickup-item__img {
  width: 45%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.pickup-item__img img {
  width: 100%;
}

.is-stamp .pickup-item__img::before {
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  background: url(../img/icn_stamp.png) no-repeat center center / contain;
}

.pickup-item__txt .category-wrap {
  margin-bottom: 15px;
}

.pickup-item__txt .hdg03 {
  margin-bottom: 30px;
}

.pickup-item__info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.pickup-item__info dt {
  background-color: #1c1c1c;
  border-radius: 5px;
  color: #fff;
  width: 60px;
  text-align: center;
  padding: 2px;
}

.pickup-item__info dd {
  width: calc(100% - 70px);
  padding: 2px 0;
}

.pickup-item__desc {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* ブラウザがサポートしていない場合のフェールセーフ */
  max-height: 104px;
}

.pickup-item .btn03 {
  margin: 30px 0 0 auto;
}

.event-lineup {
  padding-top: 80px;
}

.top-event .btn-wrap {
  background-color: #f5f5f5;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 50px 20px;
  gap: 60px;
}

.btn-wrap__cate__hdg {
  line-height: 1em;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 1em;
  margin-bottom: 20px;
}

.cate-check {
  display: flex;
  gap: 50px;
  padding-right: 50px;
}

.cate-check__item label {
  padding-left: 40px;
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
}

.cate-check__item label::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 2px solid;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.cate-check__item.miru label::before {
  border-color: #6db632;
}

.cate-check__item.kiku label::before {
  border-color: #eb9029;
}

.cate-check__item.sanka label::before {
  border-color: #ec504c;
}

.cate-check__item label::after {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cate-check__item.miru label::after {
  background-image: url(../img/check_green.svg);
}

.cate-check__item.kiku label::after {
  background-image: url(../img/check_orange.svg);
}

.cate-check__item.sanka label::after {
  background-image: url(../img/check_red.svg);
}

.cate-check__item label:has(> input:checked)::after {
  opacity: 1;
}

.cate-check__item label input {
  display: none;
}

.btn-wrap__flex {
  display: flex;
  gap: 20px;
}

.top-event .btn-wrap .btn-cont {
  position: relative;
}

.top-event .btn-wrap .btn-cont .btn-item {
  position: absolute;
  top: 60px;
  left: 50%;
  padding-top: 40px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 3;
}

.top-event .btn-wrap .btn-cont .btn-item-box {
  background-color: #dbdbdb;
  border-radius: 20px;
  padding: 25px;
  position: relative;
}

.top-event .btn-wrap .btn-cont .btn-item.is-show {
  opacity: 1;
  visibility: visible;
}

.top-event .btn-wrap .btn-cont .btn-item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 20px 40px;
  border-color: transparent transparent #dbdbdb transparent;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -40px;
}

.calendar {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.calendar .c-green {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.calendar table {
  width: 420px;
  font-size: 2rem;
}

.calendar table th,
.calendar table td {
  font-weight: bold;
  padding: 5px;
}

.calendar table .sun {
  color: #ec504c;
}

.calendar table .sat {
  color: #6db632;
}

.calendar table label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 5px;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.calendar table label:hover {
  border-color: #6db632;
  color: #6db632;
}

.calendar table .sun label:hover {
  border-color: #ec504c;
  color: #ec504c;
}

.calendar table label input {
  display: none;
}

.calendar table label:has(> input:checked) {
  color: #fff;
  pointer-events: none;
}

.calendar table label::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #6db632;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.calendar table label:has(> input:checked)::before {
  opacity: 1;
}

.category-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category {
  width: fit-content;
  font-weight: bold;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0.2em 1em;
  border-radius: 1em;
  border: 1px solid #fff;
}

.category.miru {
  background-color: #6db632;
}

.category.kiku {
  background-color: #eb9029;
}

.category.sanka {
  background-color: #ec504c;
}

.category.stamp {
  color: #ec504c;
  border: 2px solid #ec504c;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 25px;
}

.event-list .event-list__item {
  width: calc((100% - 75px) / 4);
  max-width: 280px;
}

.event-item {
  font-weight: bold;
  line-height: 1.4;
}
.event-item .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.event-item .img img {
  aspect-ratio: 7 / 5;
  width: 100%;
  object-fit: cover;
}
.event-list__item.is-stamp .img::before {
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  background: url(../img/icn_stamp.png) no-repeat center center / contain;
}

.event-item .category-wrap {
  margin-bottom: 10px;
}

.event-item .date {
  margin-bottom: 5px;
}

.event-item .time {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.event-item .event-item__hdg {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.event-item .event-item__hdg::before {
  padding: 1px 10px 2px;
  border-radius: 3px;
  font-size: 1.4rem;
  margin-right: 8px;
  vertical-align: middle;
}

.is-end .event-item__hdg::before {
  content: "終了";
  background-color: #dbdbdb;
}

.is-today .event-item__hdg::before {
  content: "開催中";
  background-color: #ec504c;
  color: #fff;
}

.event-item .btn-column {
  display: flex;
  gap: 10px;
}

.event-item .btn-column .btn-detail {
  flex: 1;
}

.top-map {
  padding: 100px 0;
}

.top-map .map-area {
  margin: 30px 0 40px;
}

.top-map .map-area img {
  width: 100%;
}

.top-map .btn01 {
  margin: 0 auto;
}

.bk .btn01 {
  margin: 30px auto 0 auto;
}

.top-peace {
  position: relative;
  z-index: 1;
  background-color: #fbf9f2;
  padding-top: 10px;
  padding-bottom: 50px;
}

.top-peace::before {
  content: "";
  width: 100%;
  height: 452px;
  background: url(../img/bg01.svg) no-repeat center top / auto #fff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.top-peace .intro {
  margin-bottom: 80px;
}

.top-peace .intro .txt {
  width: 400px;
}

.top-peace .intro .txt .hdg01 {
  line-height: 1.4;
}

.top-peace .intro .txt .hdg01 .hdg01__min {
  display: inline-block;
}

.top-peace .intro .txt .desc p {
  margin-bottom: 2em;
}

.top-peace .intro .txt .box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}

.top-peace .intro .txt .box dt {
  width: 36px;
}

.top-peace .intro .txt .box dt img {
  width: 100%;
}

.top-peace .intro .txt .box dd {
  width: calc(100% - 36px);
  padding-left: 18px;
}

.top-peace .intro .txt .box dt:first-of-type,
.top-peace .intro .txt .box dd:first-of-type {
  margin-bottom: 6px;
}

.top-peace .intro .puzzle {
  width: calc(100% - 420px);
  max-width: 700px;
  padding-top: 120px;
}

.top-peace .intro .puzzle .btn01 {
  margin: 40px 0 0 auto;
}

.top-peace .item-list .item-list__item {
  width: 48%;
  max-width: 560px;
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 16px;
  position: relative;
  padding: 40px 30px;
  border: 1px solid #cbcbcb;
}

.top-peace .item-list .item-list__item .item-hdg {
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
  height: 43px;
  line-height: 43px;
  padding: 0 20px;
  border-radius: 0 20px 20px 0;
  background-color: #6db632;
  position: absolute;
  left: 0;
  top: 15px;
  z-index: 2;
}

.top-peace .item-list .item-list__item .img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.top-peace .item-list .item-list__item .stamp-list .stamp-list__item {
  width: 27px;
  height: 27px;
  margin: 0 2.5px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/2024/wp-content/themes/heiwabunka2024/css/img/stamp-green.svg);
}

.top-peace .item-list .item-list__item .desc {
  text-align: center;
  font-weight: bold;
  margin: 20px 0 25px;
}

.top-peace .item-list .item-list__item .desc .line {
  border-bottom: 1px solid #6db632;
  padding-bottom: 2px;
  display: inline-block;
}

.top-peace .item-list .item-list__item .desc .num {
  font-size: 2rem;
  padding: 0 3px;
  position: relative;
}

.top-peace .item-list .item-list__item .desc .num::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #6db632;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
}

.top-peace .item-list .item-list__item .present {
  /* max-width: 380px; */
  margin: 0 auto;
  font-weight: 500;
}

.top-peace .item-list .item-list__item .present dt {
  width: calc(100% - 95px);
  padding-left: 1em;
  position: relative;
  margin-bottom: 10px;
}

.top-peace .item-list .item-list__item .present dt::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.top-peace .item-list .item-list__item .present dd {
  width: 95px;
  text-align: right;
  margin-bottom: 10px;
}

.top-peace .item-list .item-list__item.red .item-hdg,
.top-peace .item-list .item-list__item.red .desc .num::before {
  background-color: #ec504c;
}

.top-peace .item-list .item-list__item.red .stamp-list .stamp-list__item {
  background-image: url(/2024/wp-content/themes/heiwabunka2024/css/img/stamp-red.svg);
}

.top-peace .item-list .item-list__item.red .desc .line {
  border-color: #ec504c;
}

.top-peace .btn01 {
  max-width: 350px;
}

.top-step {
  padding: 30px 0 90px;
  background-color: #fbf9f2;
}

.top-step .hdg01 .c-red {
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}

.top-step .hdg01 .c-red .num {
  font-size: 3rem;
  padding: 0 5px;
}

.top-step .step-list {
  max-width: 990px;
  margin: 0 auto;
}

.top-step .step-list .step-list__item {
  width: 32%;
  max-width: 300px;
  margin-bottom: 40px;
}

.top-step .step-list .step-list__item .img {
  padding: 0 5px;
  text-align: center;
  position: relative;
}

.top-step .step-list .step-list__item .img .qr {
  position: absolute;
  top: 10px;
  left: -100px;
  max-width: 166px;
}

.top-step .step-list .step-list__item .txt {
  padding-top: 30px;
  position: relative;
  font-weight: 500;
}

.top-step .step-list .step-list__item .txt .step-num {
  text-transform: uppercase;
  font-size: 2rem;
  background-color: #ec504c;
  height: 40px;
  line-height: 34px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  width: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50px;
  transform: translateY(-60%);
}

.top-step .step-list .step-list__item .txt .step-num .num {
  font-size: 3rem;
  margin-left: 5px;
}

.top-step .step-list .step-list__item .step-hdg {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.top-step .step-list .step-list__item .step-hdg + p {
  margin-bottom: 1.5em;
}

.top-step .step-list .step-list__item p a {
  word-break: break-all;
  color: #34a1ff;
  text-decoration: underline;
}

.top-step .btn01,
.top-peace .btn01 {
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .top-about .flexbox {
    display: block;
  }

  .top-about .txt {
    width: 80%;
    margin: 0 auto 30px;
  }

  .top-about .logo-download {
    margin: 0 auto;
  }

  .top-step .step-list .step-list__item .img .qr {
    left: -10%;
  }
}

@media screen and (max-width: 768px) {
  .news-list__item a {
    flex-direction: column;
    gap: 5px;
    padding: 15px 40px 15px 5px;
  }

  .top-about {
    padding-top: 100px;
  }

  .top-about .flexbox {
    display: block;
  }

  .top-about .txt {
    width: 100%;
    margin: 0 auto 30px;
  }

  .top-about .desc p {
    font-size: 1.6rem;
  }

  .top-about .logo-download {
    margin: 0 auto;
    width: 280px;
    height: 280px;
    padding-top: 50px;
    background-size: 45px auto;
    background-position: left 58px bottom -30px;
  }

  .top-about .logo-download .logo {
    width: 135px;
    margin: 0 auto;
  }

  .top-about .logo-download .comment {
    font-size: 1.2rem;
    right: 60px;
    bottom: 42px;
  }

  .top-about .logo-download .comment::before,
  .top-about .logo-download .comment::after {
    height: 45px;
    top: 3px;
  }

  .top-about .logo-download .comment::before {
    left: -10px;
  }

  .top-about .logo-download .comment::after {
    right: -10px;
  }

  .top-about .logo-download .btn01 {
    bottom: -20px;
  }

  .top-about .illust {
    max-width: 120px;
    top: -20px;
  }

  .top-event {
    padding-top: 40px;
  }

  .event-pickup {
    padding: 50px 30px 0;
  }

  .pickup-slider {
    max-width: 320px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  /* .slider-prev {
    left: -20px;
  }

  .slider-next {
    right: -20px;
  } */

  .pickup-item {
    padding: 20px 15px 30px;
    flex-direction: column;
    gap: 20px;
  }

  .pickup-item__img {
    width: 100%;
  }

  .is-stamp .pickup-item__img::before {
    width: 80px;
    height: 80px;
  }

  .pickup-item__txt .hdg03 {
    margin-bottom: 20px;
  }

  .pickup-item .btn03 {
    margin: 30px auto 0;
  }

  .top-event::before {
    height: 150px;
    background-size: 1100px 100%;
  }

  .top-event .hdg01 .logo {
    max-width: 240px;
    margin: 0 auto;
  }

  .top-event .btn-wrap {
    padding: 30px 10px;
    gap: 30px;
  }

  .cate-check {
    gap: 20px;
    padding-right: 0;
  }

  .btn-wrap__flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-event .btn-wrap .btn-cont .btn-item {
    top: 30px;
  }

  .calendar {
    border-radius: 8px;
    padding: 10px 5px;
  }

  .calendar .c-green {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .calendar table {
    width: auto;
    font-size: 1.6rem;
  }

  .top-event .btn-wrap .btn-cont .btn-close {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 5px 0 5px 30px;
    width: 75px;
    margin: 5px auto 0;
    position: relative;
  }

  .top-event .btn-wrap .btn-cont .btn-close::before,
  .top-event .btn-wrap .btn-cont .btn-close::after {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #6db632;
    position: absolute;
    left: 2px;
    top: 50%;
  }

  .top-event .btn-wrap .btn-cont .btn-close::before {
    transform: rotate(-45deg);
  }

  .top-event .btn-wrap .btn-cont .btn-close::after {
    transform: rotate(45deg);
  }

  .category-wrap {
    gap: 2px;
  }

  .category {
    font-size: 1.3rem;
  }

  .event-list {
    gap: 40px 2%;
  }

  .event-list .event-list__item {
    width: 49%;
    max-width: unset;
  }

  .event-list__item.is-stamp .img::before {
    width: 60px;
    height: 60px;
    right: 5px;
    top: 5px;
  }

  .event-item .date {
    font-size: 1.5rem;
  }

  .event-item .time {
    margin-bottom: 5px;
  }

  .event-item .event-item__hdg {
    font-size: 1.6rem;
  }

  .event-item .event-item__hdg::before {
    font-size: 1.2rem;
  }

  .event-item .btn-column {
    gap: 5px;
  }

  .top-event .btn-more {
    margin-top: 50px;
  }

  .top-event .box-note {
    border-radius: 12px;
    padding: 20px 15px;
  }

  .top-map {
    padding: 100px 0 70px;
  }

  .top-map p.t-center {
    text-align: left;
    padding: 0 15px;
  }

  .top-map .map-area {
    margin: 20px 0;
  }

  .top-peace {
    padding-top: 40px;
  }

  .top-peace .intro {
    margin-bottom: 70px;
  }

  .top-peace .intro .txt {
    width: 100%;
  }

  .top-peace .intro .txt .box {
    padding: 15px 20px;
    margin-top: 20px;
  }

  .top-peace .intro .txt .box dt {
    width: 22px;
  }

  .top-peace .intro .txt .box dd {
    width: calc(100% - 22px);
    padding-left: 10px;
  }

  .top-peace .intro .txt .box dt:first-of-type,
  .top-peace .intro .txt .box dd:first-of-type {
    margin-bottom: 3px;
  }

  .top-peace .intro .puzzle {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
  }

  .top-peace .intro .puzzle .btn01 {
    margin: 20px auto 0;
  }

  .top-peace .intro .puzzle .btn01 i {
    right: 20px;
  }

  .top-peace .item-list .item-list__item {
    width: 100%;
    margin: 0 auto 25px;
    border-radius: 8px;
    padding: 30px 10px 20px;
  }

  .top-peace .item-list .item-list__item .item-hdg {
    font-size: 1.6rem;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    top: 10px;
  }

  .top-peace .item-list .item-list__item .img {
    margin-bottom: 10px;
  }

  .top-peace .item-list .item-list__item .img img {
    width: 100%;
  }

  .top-peace .item-list .item-list__item .stamp-list .stamp-list__item {
    width: 22px;
    height: 22px;
  }

  .top-peace .item-list .item-list__item .desc {
    margin: 10px 0 20px;
  }

  .top-peace .item-list .item-list__item .desc .num {
    font-size: 1.8rem;
  }

  .top-peace .item-list .item-list__item .present dt {
    width: calc(100% - 80px);
  }

  .top-peace .item-list .item-list__item .present dd {
    width: 80px;
  }

  .top-step {
    padding: 30px 0 90px;
    background-color: #fbf9f2;
  }

  .top-step .hdg01 {
    margin-bottom: 25px;
  }

  .top-step .hdg01 .c-red {
    font-size: 1.6rem;
  }

  .top-step .hdg01 .c-red .num {
    font-size: 2.2rem;
    padding: 0 5px;
  }

  .top-step .step-list .step-list__item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }

  .top-step .step-list .step-list__item .img {
    max-width: 170px;
    margin: 0 auto;
  }

  .top-step .step-list .step-list__item .img .qr {
    position: absolute;
    width: 87px;
    top: 10px;
    left: -50px;
  }

  .top-step .step-list .step-list__item .txt {
    padding-top: 30px;
    position: relative;
    font-weight: 500;
  }

  .top-step .step-list .step-list__item .txt .step-num {
    font-size: 1.6rem;
    height: 30px;
    line-height: 22px;
    border-radius: 8px;
    width: 100px;
    transform: translateY(-50%);
  }

  .top-step .step-list .step-list__item .txt .step-num .num {
    font-size: 2.5rem;
    line-height: 24px;
  }

  .top-step .step-list .step-list__item .step-hdg {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .top-step .step-list .step-list__item .step-hdg + p + p {
    margin-bottom: 1em;
  }

  .top-step .btn01 {
    margin: 0 auto;
  }

  .top-step .btn01 i {
    right: 20px;
  }
}

@media screen and (max-width: 350px) {
  .btn-cont .btn02,
  .btn-cont .btn-reset {
    padding-right: 10px;
  }

  .btn-cont .btn02::before {
    right: 6px;
  }

  .btn-reset::before {
    right: 4px;
  }

  .btn-reset::after {
    right: 9px;
  }
}

.p-contact {
  width: 100%;
  max-width: 800px;
  background: rgb(251, 250, 243);
  padding: 20px;
  margin: 0 auto 50px auto;
  border-radius: 10px;
  text-align: center;
}

.top-event.single {
  padding-top: 200px;
}

.top-event.single::before {
  content: normal;
}

.top-event.single .event-cont {
  max-width: 800px;
  margin: 0 auto 240px;
}

.pc-none {
  display: none;
}

.contact-pp {
  padding: 20px;
  margin: 0 auto 50px auto;
  max-width: 900px;
  width: 100%;
  background-color: #fbf9f2;
  border-radius: 20px;
  text-align: center;
}

.contact-pp dt {
  font-weight: bold;
  margin-bottom: 10px;
}

.event-txt .bold {
  font-size: 14px;
}

.event-txt img {
  width: 20px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
  .top-event.single {
    padding-top: 50px;
  }

  .top-event.single {
    padding-top: 50px;
  }

  .top-event.single.notfound {
    padding: 80px 0;
  }

  .top-event.single .event-cont {
    margin-bottom: 40px;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none !important;
  }
}

.subpage {
  padding: 180px 0 80px;
}

.subpage .btn01 {
  margin: 60px auto 0;
}

@media screen and (max-width: 768px) {
  .subpage {
    padding-top: 100px;
  }

  .subpage .btn01 {
    margin-top: 40px;
  }
}

/* detail */

.detail {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
}

.detail__inner {
  max-width: 630px;
  padding: 40px 15px 60px;
  margin: 0 auto;
}

.detail__date {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.detail .hdg03 {
  margin-bottom: 30px;
}

.detail__cont img {
  border-radius: 10px;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .detail {
    border-radius: 10px;
  }

  .detail__inner {
    padding: 20px 15px 40px;
  }

  .detail__date {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .detail img {
    border-radius: 8px;
  }
}

/* event-detail */

.detail .category-wrap {
  margin-bottom: 15px;
}

.detail .thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.detail .thumb img {
  width: 100%;
}

.detail .content {
  margin-bottom: 20px;
}

.detail .event-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px 20px;
}

.detail .event-detail dt {
  width: 120px;
  border-radius: 5px;
  text-align: center;
  background-color: #1c1c1c;
  color: #fff;
  font-size: 1.6rem;
}

.detail .event-detail dt.contact {
  background-color: #6db632;
}

.detail .event-detail dd {
  width: calc(100% - 140px);
}

.detail .event-detail dd .c-green {
  margin-right: 0.2em;
}

.detail .event-detail dd .txt {
  padding-left: 1em;
}

.detail .event-detail dd a {
  font-weight: bold;
  color: #6db632;
  text-decoration: underline;
}

.detail .event-detail dd .ttl {
  margin-bottom: 0.2em;
}

.detail .event-detail dd .limit {
  margin-bottom: 1em;
}

.detail .event-detail .howto ul {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.detail .event-detail .howto ul li:first-child .bold::before {
  content: "①";
}

.detail .event-detail .howto ul li:nth-child(2) .bold::before {
  content: "②";
}

.detail .event-detail .howto ul li:nth-child(3) .bold::before {
  content: "③";
}

.detail .event-detail .howto ul li:nth-child(4) .bold::before {
  content: "④";
}

.detail .event-detail .howto ul li:nth-child(5) .bold::before {
  content: "⑤";
}

.detail-other {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .detail .category-wrap {
    margin-bottom: 10px;
  }

  .detail .thumb {
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .detail .event-detail {
    gap: 10px;
  }

  .detail .event-detail dt {
    width: 100%;
    font-size: 1.4rem;
    padding: 2px;
  }

  .detail .event-detail dd {
    width: 100%;
    margin-bottom: 20px;
  }

  .detail .event-detail dd:last-child {
    margin-bottom: 0;
  }

  .detail-other {
    margin-top: 80px;
  }
}

.detail__map {
  margin-top: 60px;
}
#google-map-content {
  height: 700px;
}

.detail__map #google-map-content {
  height: 400px;
}

.detail__map .btn01 {
  margin-top: 40px;
}

.gm-style .gm-style-iw-c {
  overflow: inherit !important;
  max-width: 230px !important;
  padding-left: 18px !important;
}

.gm-style .gm-style-iw-c button {
  background: #ffc219 !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: 5px !important;
  margin-right: 5px !important;
  margin-bottom: 5px !important;
}

.gm-style .gm-style-iw-c button span {
  margin: 8px !important;
}

.gm-style figure.radius {
  margin-bottom: 10px;
}

.gm-style figure.radius img {
  border-radius: 5px;
}

.map-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 10px;
}

.map-btn .btn {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  height: 26px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #6db632;
  color: #6db632;
}

.map-btn .btn--map {
  border-color: #ec504c;
  color: #ec504c;
}

@media screen and (max-width: 768px) {
  #google-map-content {
    height: 400px;
  }
}
