@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
/*
  Made by Elly Loel - https://ellyloel.com/
*/
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type="file"])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  font-size: 2em;
}

:where(ul, ol) {
  list-style-position: inside;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type="file"]) {
  cursor: auto;
}

:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }

  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
  cursor: not-allowed;
}

ul {
  padding: 0;
  list-style-type: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  padding-bottom: 110px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(241, 218, 11, 0.95);
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 2;
  opacity: 0;
}
@media (min-width: 1200px) {
  header {
    padding-left: 24px;
    position: sticky;
    top: 70px;
    background-color: transparent;
    width: auto;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
header h1 {
  display: none;
}
header nav {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
@media (min-width: 1200px) {
  header nav {
    padding-left: 24px;
    height: auto;
    -webkit-transform: none;
            transform: none;
  }
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 26px;
}
@media (min-width: 1200px) {
  header nav ul {
    gap: 17px;
  }
}
header nav ul li {
  text-align: center;
  line-height: 1;
}
@media (min-width: 1200px) {
  header nav ul li {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
header nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media (min-width: 1200px) {
  header nav ul li a {
    font-size: 12px;
  }
}
header nav .navIco {
  display: none;
}
@media (min-width: 1200px) {
  header nav .navIco {
    display: block;
    position: absolute;
    width: 14px;
    top: 6px;
    left: 0;
  }
}
header nav .navLgo {
  width: 150px;
  margin: 0 auto 50px;
}
@media (min-width: 1200px) {
  header nav .navLgo {
    display: none;
  }
}

.openBtn {
  width: 34px;
  height: 18px;
  position: fixed;
  top: 48px;
  right: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  z-index: 2;
}
@media (min-width: 1200px) {
  .openBtn {
    display: none;
  }
}
.openBtn span {
  background-color: #3e3e3e;
  width: 100%;
  height: 2px;
  display: block;
}

.slideArea {
  position: relative;
}
@media (min-width: 1200px) {
  .slideArea {
    margin-bottom: 115px;
  }
}
.slideArea .slideArea-lgo {
  position: absolute;
  z-index: 1;
  width: 165px;
  top: 116px;
  left: 30px;
}
@media (min-width: 768px) {
  .slideArea .slideArea-lgo {
    width: 280px;
    top: 77px;
    left: 170px;
  }
}
.slideArea ul {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
@media (min-width: 768px) {
  .slideArea ul {
    min-height: calc(100vh - 53px);
    min-height: calc(var(--vh, 1vh) * 100 - 53px);
  }
}
.slideArea ul li {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.slideArea ul li .pc {
  display: none;
}
.slideArea ul li .sp {
  display: block;
  height: 100%;
}
@media (min-width: 768px) {
  .slideArea ul li .pc {
    display: block;
    height: 100%;
  }
  .slideArea ul li .sp {
    display: none;
  }
}
.slideArea ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tickerArea {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background: url(/assets/img/bg-ticker_01.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 3;
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tickerArea .tickerArea-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
  gap: 0 50px;
  padding-bottom: 10px;
}
.tickerArea .tickerArea-inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  white-space: nowrap;
  -webkit-animation: popup-tickerA 150s -150s linear infinite;
          animation: popup-tickerA 150s -150s linear infinite;
  will-change: transform;
  gap: 0 50px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  min-width: 2302px;
}
@media (min-width: 768px) {
  .tickerArea .tickerArea-inner > div {
    -webkit-animation: popup-tickerA 150s -150s linear infinite;
            animation: popup-tickerA 150s -150s linear infinite;
  }
}
.tickerArea .tickerArea-inner > div .green {
  height: 15px;
}
.tickerArea .tickerArea-inner > div .date {
  height: 25px;
}
.tickerArea .tickerArea-inner > div:nth-child(2) {
  -webkit-animation: popup-tickerB 150s -75s linear infinite;
          animation: popup-tickerB 150s -75s linear infinite;
}
@media (min-width: 768px) {
  .tickerArea .tickerArea-inner > div:nth-child(2) {
    -webkit-animation: popup-tickerB 150s -75s linear infinite;
            animation: popup-tickerB 150s -75s linear infinite;
  }
}
.tickerArea ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  gap: 50px;
  white-space: nowrap;
  height: 53px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 10px;
}
.tickerArea ul li {
  line-height: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.tickerArea ul li:nth-child(2n-1) img {
  height: 15px;
}
.tickerArea ul li:nth-child(2n) img {
  height: 25px;
}

@-webkit-keyframes popup-tickerA {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes popup-tickerA {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes popup-tickerB {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes popup-tickerB {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
            transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
            transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
            transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
            transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}
main {
  padding: 100px 0 0;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  main {
    padding: 115px 0 0;
  }
}
@media (min-width: 1200px) {
  main {
    -webkit-transform: translateY(-246px);
            transform: translateY(-246px);
  }
}

.sec1 {
  padding: 0 30px;
  margin: 0 0 135px;
}
@media (min-width: 768px) {
  .sec1 {
    margin: 0 0 194px;
  }
}
.sec1 .sec1-inner {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
.sec1 .sec1-inner > img {
  width: 131px;
  margin: 0 auto 114px;
}
@media (min-width: 768px) {
  .sec1 .sec1-inner > img {
    width: 185px;
    margin: 0 auto 140px;
  }
}
.sec1 .sec1-inner h2 {
  font-size: 20px;
  line-height: 1.77;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sec1 .sec1-inner h2 {
    font-size: 22px;
    margin-bottom: 44px;
  }
}
.sec1 .sec1-inner > p {
  font-size: 14px;
  font-weight: bold;
  line-height: 2.25;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .sec1 .sec1-inner > p {
    font-size: 16px;
  }
}
.sec1 .sec1-inner .sec1-profile {
  margin-bottom: 73px;
}
@media (min-width: 768px) {
  .sec1 .sec1-inner .sec1-profile {
    margin-bottom: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 49px;
  }
}
.sec1 .sec1-inner .sec1-profile .sec1-profile-txt {
  padding-top: 12px;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .sec1 .sec1-inner .sec1-profile .sec1-profile-txt {
    margin: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 49px - 240px);
  }
}
.sec1 .sec1-inner .sec1-profile .sec1-profile-txt h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.sec1 .sec1-inner .sec1-profile .sec1-profile-txt h3 span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.sec1 .sec1-inner .sec1-profile .sec1-profile-txt p {
  font-size: 14px;
  line-height: 1.785;
}
.sec1 .sec1-inner .sec1-profile .sec1-profile-img {
  max-width: 240px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sec1 .sec1-inner .sec1-profile .sec1-profile-img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.sec1 .sec1-inner .sec1-profile .sec1-profile-img figcaption {
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 0;
}
.sec1 .sec1-inner .sec1-profile-access {
  border: 1px solid #c7c7c7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 10px 22px;
}
@media (min-width: 768px) {
  .sec1 .sec1-inner .sec1-profile-access {
    padding: 18px 0 22px;
  }
}
.sec1 .sec1-inner .sec1-profile-access ul li {
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.03em;
}
.sec1 .sec1-inner .sec1-profile-access ul li span {
  font-size: 17px;
  margin-right: 7px;
  padding-bottom: 2px;
}
.sec1 .sec1-inner .sec1-profile-access ul li img {
  width: 14px;
  margin: 0 8px 0px 2px;
}
.sec1 .sec1-inner .sec1-profile-access ul li a {
  color: #000;
  text-decoration: none;
}
.sec1 .sec1-inner .sec1-profile-access ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #ff5a9c;
}
.sec1 .sec1-inner .sec1-profile-access ul li a:hover::after {
  opacity: 0;
}
.sec1 .sec1-inner .sec1-profile-access ul li:first-child {
  margin-bottom: 7px;
}
.sec2 {
  margin: 0 0 75px;
  padding: 0 30px;
  position: relative;
}
@media (min-width: 768px) {
  .sec2 {
    margin: 0 0 140px;
  }
}
.sec2 .sec2-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.sec2 .sec2-inner .sec2-txt {
  position: absolute;
  left: 20px;
  top: -65px;
  z-index: 1;
  width: 37px;
}
@media (min-width: 768px) {
  .sec2 .sec2-inner .sec2-txt {
    top: -56px;
    width: 62px;
    left: 57px;
  }
}
.sec2 .sec2-inner .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.sec2 .sec2-inner .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.sec2 .sec2-gyapo {
  position: absolute;
  z-index: 1;
  width: 250px;
  top: -42px;
  right: 6px;
}
@media (min-width: 768px) {
  .sec2 .sec2-gyapo {
    width: 425px;
    top: -70px;
    right: 137px;
  }
}

.sec3 {
  margin-bottom: 105px;
}
@media (min-width: 768px) {
  .sec3 {
    margin-bottom: 160px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(30px, 11vw) minmax(680px, calc(100% - 11vw));
    grid-template-columns: minmax(30px, 11vw) minmax(680px, calc(100% - 11vw));
  }
}
.sec3 .pc {
  display: none;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
@media (min-width: 768px) {
  .sec3 .pc {
    display: block;
  }
}
.sec3 .pc img {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.sec3 .sp {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media (min-width: 768px) {
  .sec3 .sp {
    display: none;
  }
}

.sec04 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .sec04 {
    margin: 0 auto 184px;
  }
}
.sec04 h3 {
  font-size: 27px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.08em;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .sec04 h3 {
    font-size: 35px;
    margin: 0 auto 60px;
  }
}
.sec04 ul li {
  border-top: 1px solid #cbcbcb;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .sec04 ul li {
    padding: 18px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 65px;
  }
}
.sec04 ul li:last-child {
  border-bottom: 1px solid #cbcbcb;
}
.sec04 ul li time {
  margin-bottom: 4px;
  display: block;
  font-size: 13px;
  font-weight: bold;
  padding-left: 3px;
}
@media (min-width: 768px) {
  .sec04 ul li time {
    margin-bottom: 0;
  }
}
.sec04 ul li p {
  font-size: 14px;
  font-weight: bold;
}
.sec04 ul li p a {
  color: #000;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0%, #ff5a9c));
  background: linear-gradient(transparent 95%, #ff5a9c 0%);
  padding-bottom: 2px;
}
.sec04 ul li p a:hover {
  background: none;
}

.sec05 {
  background-color: #f0f0f0;
  padding: 70px 0 128px;
  position: relative;
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  .sec05 {
    padding: 76px 0 153px;
    margin-bottom: 185px;
  }
}
.sec05::before {
  content: "";
  display: block;
  width: 243px;
  height: 154px;
  background: url(/assets/img/bg-sec4_01.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: -81px;
  top: -27px;
}
@media (min-width: 768px) {
  .sec05::before {
    width: 322px;
    height: 203px;
    right: 0;
    top: -40px;
  }
}
.sec05 h3 {
  font-size: 21px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: pre;
  letter-spacing: 0.08em;
  border: 1px solid #000;
  background-color: #fff;
  margin: 0 auto 95px;
  padding: 16px 7px;
}
@media (min-width: 768px) {
  .sec05 h3 {
    margin: 0 auto 154px;
    font-size: 30px;
    padding: 20px 8px;
  }
}
.sec05 .sec05-inner {
  max-width: 1036px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.sec05 .sec05-inner .sec05-article {
  margin-bottom: 66px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article {
    margin-bottom: 182px;
    display: -ms-grid;
    display: grid;
    gap: 63px;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-txt {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-txt {
    padding-top: 15px;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-txt h4 {
  padding-left: 24px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-txt h4 {
    padding-left: 20px;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-txt h4::before {
  width: 111px;
  height: 75px;
  background: url(/assets/img/bg-sec4_02.png) no-repeat;
  background-size: contain;
  bottom: -54px;
  left: -21px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-txt h4::before {
    width: 144px;
    height: 97px;
    bottom: -67px;
    left: -47px;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  display: -ms-grid;
  display: grid;
  grid-column: 1fr 1fr;
  gap: 10px 0;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-img {
    gap: 7px 0;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div {
  height: 200px;
  position: relative;
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div::before {
  display: block;
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 19px;
  padding: 0 3px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div::before {
    font-size: 14px;
    line-height: 21px;
    padding: 0 14px;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div::after {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  display: block;
  position: absolute;
  left: 10px;
  line-height: 1;
  bottom: 8px;
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(1)::before {
  content: "多摩代表 発酵食";
  top: 24px;
  left: 1px;
  background-color: #004c02;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(1)::before {
    left: -20px;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(1)::after {
  content: "1";
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(2)::after {
  content: "2";
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(3) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(3)::after {
  content: "3";
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(4) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(4)::before {
  content: "47都道府県代表 発酵食";
  bottom: 26px;
  right: 0px;
  background-color: #ff5a9c;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(4)::before {
    right: -20px;
  }
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img div:nth-child(4)::after {
  content: "4";
}
.sec05 .sec05-inner .sec05-article.manabu .sec05-article-img figcaption {
  width: calc(100% - 62px);
  margin: 0 auto;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  font-size: 11px;
  margin-top: 2px;
  letter-spacing: 0.01em;
  line-height: 1.436;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.manabu .sec05-article-img figcaption {
    width: auto;
    font-size: 12px;
    line-height: 1.2;
  }
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-txt {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  text-align: right;
  -ms-grid-column-align: end;
      justify-self: end;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.kau .sec05-article-txt {
    max-width: 313px;
    padding: 30px 0 25px;
  }
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-txt h4 {
  padding-right: 20px;
  display: inline;
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-txt h4::before {
  width: 105px;
  height: 76px;
  background: url(/assets/img/bg-sec4_03.png) no-repeat;
  bottom: -33px;
  left: -66px;
  background-size: contain;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.kau .sec05-article-txt h4::before {
    width: 137px;
    height: 98px;
    bottom: -43px;
    left: -84px;
  }
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-txt p {
  text-align: left;
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  width: calc(100% + 62px - 30px);
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.kau .sec05-article-img {
    max-width: 565px;
    width: 55vw;
  }
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-img div {
  position: relative;
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-img div::before {
  display: block;
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  content: "多摩の発酵食品を販売";
  top: 10px;
  left: 1px;
  line-height: 19px;
  padding: 0 3px;
  background-color: #004c02;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.kau .sec05-article-img div::before {
    font-size: 14px;
    padding: 0 14px;
    line-height: 21px;
    top: 24px;
    left: -20px;
  }
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-img div::after {
  display: block;
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  content: "下北沢・発酵デパートメントが出店";
  bottom: -10px;
  right: 16px;
  line-height: 19px;
  padding: 0 3px;
  background-color: #ff5a9c;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.kau .sec05-article-img div::after {
    font-size: 14px;
    padding: 0 14px;
    line-height: 21px;
  }
}
.sec05 .sec05-inner .sec05-article.kau .sec05-article-img div img.sp {
  display: none;
}
.sec05 .sec05-inner .sec05-article.tabie {
  margin-bottom: 0;
}
.sec05 .sec05-inner .sec05-article.tabie .sec05-article-txt {
  margin-bottom: 65px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.tabie .sec05-article-txt {
    margin-bottom: 0;
    max-width: 313px;
    padding: 0 0 40px;
  }
}
.sec05 .sec05-inner .sec05-article.tabie .sec05-article-txt h4 {
  padding-left: 20px;
}
.sec05 .sec05-inner .sec05-article.tabie .sec05-article-txt h4::before {
  width: 70px;
  height: 93px;
  background: url(/assets/img/bg-sec4_04.png) no-repeat;
  background-size: contain;
  top: 11px;
  left: 1px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.tabie .sec05-article-txt h4::before {
    width: 91px;
    height: 121px;
    left: -5px;
  }
}
.sec05 .sec05-inner .sec05-article.tabie .sec05-article-img {
  width: calc(100% + 40px);
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  position: relative;
}
.sec05 .sec05-inner .sec05-article.tabie .sec05-article-img::before {
  content: "多摩をめぐる旅";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: pre;
  background: #004c02;
  color: #fff;
  font-size: 12px;
  line-height: 19px;
  padding: 12px 0;
  right: 20px;
  top: -42px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.tabie .sec05-article-img::before {
    font-size: 14px;
    padding: 15px 0;
    right: 30px;
    top: -20px;
  }
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article.tabie .sec05-article-img {
    max-width: 590px;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-column-align: end;
        justify-self: end;
    width: 55vw;
  }
}
.sec05 .sec05-inner .sec05-article .sec05-article-txt {
  margin-bottom: 44px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article .sec05-article-txt {
    margin-bottom: 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: -webkit-min-content;
    -ms-grid-rows: min-content;
    grid-template-rows: -webkit-min-content;
    grid-template-rows: min-content;
  }
}
.sec05 .sec05-inner .sec05-article .sec05-article-txt .box {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article .sec05-article-txt .box {
    margin-bottom: 0;
  }
}
.sec05 .sec05-inner .sec05-article .sec05-article-txt .box h4 {
  font-size: 42px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0;
  position: relative;
  white-space: pre;
  z-index: 0;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article .sec05-article-txt .box h4 {
    font-size: 55px;
  }
}
.sec05 .sec05-inner .sec05-article .sec05-article-txt .box h4::before {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  z-index: -1;
}
.sec05 .sec05-inner .sec05-article .sec05-article-txt > p {
  font-size: 14px;
  line-height: 1.92;
  position: relative;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article .sec05-article-txt > p {
    font-size: 16px;
  }
}
.sec05 .sec05-inner .sec05-article .sec05-article-img {
  width: calc(100% + 62px);
  -webkit-transform: translateX(-31px);
          transform: translateX(-31px);
}
@media (min-width: 768px) {
  .sec05 .sec05-inner .sec05-article .sec05-article-img {
    -webkit-transform: initial;
            transform: initial;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    max-width: 600px;
    width: 55vw;
  }
}

.sec06 {
  padding: 0 30px;
  margin-bottom: 110px;
}
@media (min-width: 768px) {
  .sec06 {
    margin-bottom: 200px;
  }
}
.sec06 h3 {
  font-size: 27px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.08em;
  margin: 0 auto 54px;
}
@media (min-width: 768px) {
  .sec06 h3 {
    margin: 0 auto 60px;
    font-size: 35px;
  }
}
.sec06 ul {
  max-width: 900px;
  margin: 0 auto;
}
.sec06 ul li {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
  padding: 30px 0;
  text-decoration: none;
  color: #000;
  display: block;
}
@media (min-width: 768px) {
  .sec06 ul li {
    padding: 45px 0 55px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(400px, 600px) minmax(30px, 111px) 188px;
    grid-template-columns: minmax(400px, 600px) minmax(30px, 111px) 188px;
  }
}
.sec06 ul li .ttlArea {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .sec06 ul li .ttlArea {
    margin-bottom: 35px;
  }
}
.sec06 ul li .ttlArea .ttlArea-upSide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 17px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px 0px;
}
.sec06 ul li .ttlArea .ttlArea-upSide .tag {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background-color: #ff5a9c;
  text-align: center;
  margin-right: 10px;
  line-height: 30px;
  width: 60px;
}
@media (min-width: 768px) {
  .sec06 ul li .ttlArea .ttlArea-upSide .tag {
    margin-right: 18px;
    font-size: 14px;
    line-height: 35px;
    width: 80px;
  }
}
.sec06 ul li .ttlArea .ttlArea-upSide time {
  font-size: 13px;
  font-weight: bold;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .sec06 ul li .ttlArea .ttlArea-upSide time {
    font-size: 18px;
    margin-right: 24px;
  }
}
.sec06 ul li .ttlArea .ttlArea-upSide p {
  color: #ff5a9c;
  font-weight: bold;
  font-size: 10px;
}
@media (min-width: 768px) {
  .sec06 ul li .ttlArea .ttlArea-upSide p {
    font-size: 14px;
  }
}
.sec06 ul li .ttlArea h4 {
  font-size: 20px;
  line-height: 1.5;
}
.sec06 ul li figure {
  max-width: 188px;
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  .sec06 ul li figure {
    margin: 0;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
  }
}
.sec06 ul li > p {
  font-size: 14px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  -ms-grid-row-align: start;
      align-self: start;
  letter-spacing: 0.1em;
}

.sec07 {
  padding: 0 30px;
  margin-bottom: 87px;
}
@media (min-width: 768px) {
  .sec07 {
    margin-bottom: 185px;
  }
}
.sec07 h3 {
  font-size: 27px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.08em;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .sec07 h3 {
    font-size: 35px;
    margin: 0 auto 60px;
  }
}
.sec07 .sec07-inner {
  border: 2px solid #1e4b11;
  max-width: 812px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  padding: 30px 20px 35px;
}
@media (min-width: 768px) {
  .sec07 .sec07-inner {
    padding: 60px 20px 95px;
  }
}
.sec07 .sec07-inner h4 {
  font-size: 20px;
  line-height: 1.5;
  max-width: 620px;
  width: 100%;
  margin: 0 auto 19px;
}
@media (min-width: 768px) {
  .sec07 .sec07-inner h4 {
    font-size: 24px;
  }
}
.sec07 .sec07-inner h4 span {
  font-size: 14px;
  display: block;
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .sec07 .sec07-inner h4 span {
    font-size: 17px;
    margin-bottom: 3px;
  }
}
.sec07 .sec07-inner p {
  font-size: 14px;
  line-height: 1.64;
  max-width: 620px;
  width: 100%;
  margin: 0 auto 35px;
}
@media (min-width: 768px) {
  .sec07 .sec07-inner p {
    margin: 0 auto 40px;
  }
}
.sec07 .sec07-inner p a {
  color: #000;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0%, #ff5a9c));
  background: linear-gradient(transparent 95%, #ff5a9c 0%);
  padding-bottom: 2px;
}
.sec07 .sec07-inner p a:hover {
  background: none;
}
.sec07 .sec07-inner img {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

footer {
  padding: 0 30px;
  font-size: 12px;
  letter-spacing: 0;
}
footer .upSide {
  border-top: 1px solid #cbcbcb;
  padding: 50px 0 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 37px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  footer .upSide {
    padding: 25px 0 0;
  }
}
footer .upSide dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
footer .upSide dl:last-of-type {
  margin-bottom: 0;
}
footer .upSide dl dt::after {
  content: "｜";
  display: inline-block;
  font-size: 14px;
}
footer .downSide {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 30px;
}
@media (min-width: 920px) {
  footer .downSide {
    gap: 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }
}
footer .downSide p {
  letter-spacing: 0;
}
footer .downSide small {
  font-size: 11px;
  letter-spacing: 0.05em;
}