@charset "UTF-8";
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  display: inline-block;
  border: 1px solid #646464;
  padding: 0.5em 2em;
  font-size: 20px;
  background-color: white;
  transition: ease 0.4s;
}
@media screen and (max-width: 600px) {
  .btn {
    font-size: 18px;
  }
}
.btn:hover {
  background-color: #646464;
  color: white;
  border: 1px solid #646464;
}

.btn_02 {
  display: inline-block;
  padding: 0.5em 2em;
  font-size: 23px;
  color: white;
  background: rgb(100, 181, 75);
  background: linear-gradient(90deg, rgb(100, 181, 75) 0%, rgb(179, 215, 158) 100%);
  border-radius: 35px;
  transition: ease 0.4s;
}
@media screen and (max-width: 600px) {
  .btn_02 {
    font-size: 18px;
  }
}
.btn_02:hover {
  opacity: 0.8;
}

.btn_03 {
  display: inline-block;
  padding: 0.5em 2em;
  font-size: 23px;
  color: #64b54b;
  background-color: white;
  border-radius: 35px;
  border: 2px solid #64b54b;
  transition: ease 0.4s;
}
@media screen and (max-width: 600px) {
  .btn_03 {
    font-size: 18px;
  }
}
.btn_03:hover {
  opacity: 0.8;
}

.btn_04 {
  position: relative;
  display: inline-block;
  border: 2px solid #64b54b;
  padding: 0.5em 3.5em 0.5em 2em;
  font-size: 18px;
  color: #64b54b;
  background-color: white;
  transition: ease 0.4s;
}
.btn_04::before {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/green_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .btn_04 {
    font-size: 14px;
  }
}
.btn_04:hover {
  background-color: #64b54b;
  color: white;
  border: 2px solid #64b54b;
}
.btn_04:hover::before {
  background-image: url(../images/green_arrow02.svg);
}

.btn_04.pink {
  border: 2px solid #e86d98;
  color: #e86d98;
}
.btn_04.pink::before {
  background-image: url(../images/pink_arrow.svg);
}
.btn_04.pink:hover {
  background-color: #e86d98;
  color: white;
  border: 2px solid #e86d98;
}
.btn_04.pink:hover::before {
  background-image: url(../images/pink_arrow02.svg);
}

.swiper {
  overflow: visible !important;
}

.swiper-slide {
  height: 500px;
  overflow: hidden;
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiper-slide-active > img {
  transform: none;
}
.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero {
  overflow: hidden;
  padding-top: 100px;
}
.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}
.hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}
.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  animation-name: kf-arrow-anime;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.hero__scrolltext {
  position: absolute;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}

@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}
.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

/* ゆっくり遷移する */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #646464;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mb-lg {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 960px) {
  .mb-lg {
    margin-bottom: 150px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 960px) {
  .pb-lg {
    padding-bottom: 150px !important;
  }
}

.content-width, .l-contact_inner, #join_us .l-business_inner,
#join_us .l-jichitai_inner,
#join_us .l-kojin_inner,
#join_us .l-media_inner, #join_us .l-business .p-block_waku_rainbow_inner, #mamayume .l-mamayume_inner, #mamayume .l-mission_inner,
#mamayume .l-vision_inner,
#mamayume .l-Personality_inner,
#mamayume .l-history_inner, #radio-station .l-station_inner, #tokutei .p-block-tokutei, .l-main-old-news#archive .l-old-news, .l-main-news#archive, .l-media_wrapper, .l-about_inner, .c-title-mission_wrap, .p-block-lead-about, .l-radio-station_inner, .l-interested_inner, .l-404-container, .l-voice_inner, .p-lowertitle_inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
  text-align: center;
}

.flex {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

#main-content {
  position: relative;
  z-index: 0;
}

.font-sm, .l-footer {
  font-size: 13px;
}
@media screen and (max-width: 960px) {
  .font-sm, .l-footer {
    font-size: 13px;
  }
}

.font-md {
  font-size: 17px;
}
@media screen and (max-width: 960px) {
  .font-md {
    font-size: 19px;
  }
}

.font-lr, .p-block-follow__inner {
  font-size: 23px;
}
@media screen and (max-width: 960px) {
  .font-lr, .p-block-follow__inner {
    font-size: 23px;
  }
}

.font-lg {
  font-size: 32px;
}
@media screen and (max-width: 960px) {
  .font-lg {
    font-size: 32px;
  }
}

.c-title-common {
  position: relative;
  font-size: 32px;
  display: inline-block;
  text-align: left;
  white-space: nowrap;
  background: rgb(251, 130, 177);
  background: linear-gradient(90deg, rgb(251, 130, 177) 0%, rgb(253, 219, 233) 100%);
  padding: 1em 3em 1em 0;
}
@media screen and (max-width: 600px) {
  .c-title-common {
    font-size: 19px;
    padding: 1em 2em 1em 0;
  }
}
.c-title-common::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 50vw;
  height: 100%;
  display: block;
  background: rgb(251, 130, 177) 0%;
}

.c-title-hukidashi {
  position: relative;
  display: inline-block;
  background-color: white;
  border: solid 2px #646464;
  border-radius: 0.25em;
  font-size: 28px;
  padding: 0.5em 1em;
  max-width: 390px;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .c-title-hukidashi {
    font-size: 22px;
    margin-bottom: 2rem;
  }
}
.c-title-hukidashi::before, .c-title-hukidashi::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.c-title-hukidashi::before {
  border: solid 12px transparent;
  border-top: solid 12px #646464;
}
.c-title-hukidashi::after {
  border: solid 14px transparent;
  border-top: solid 15px white;
  margin-top: -5px;
}

.c-title-hukidashi p {
  margin: 0;
  padding: 0;
}

.p-lowertitle_inner {
  text-align: left;
  padding-top: 260px;
  padding-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .p-lowertitle_inner {
    padding-top: 150px;
    padding-bottom: 1rem;
  }
}

.c-title-lowerpage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  .c-title-lowerpage {
    font-size: 22px;
  }
}
.c-title-lowerpage span {
  font-size: 0.9375rem;
}

/*===========
inview
===========*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*==========================
　　参加するとできること
==========================*/
.l-practice {
  background-image: url(../images/bg-top-circle3.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  text-align: center;
  padding-bottom: 180px;
}
@media screen and (max-width: 600px) {
  .l-practice {
    background-image: none;
    padding-bottom: 120px;
  }
}
.l-practice_inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.l-practice .p-block-price {
  padding: 2rem 0;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-image: linear-gradient(47deg, rgba(247, 189, 199, 0.4) 0%, rgba(247, 189, 199, 0.2) 20%, rgba(251, 231, 10, 0.15) 50%, rgba(247, 189, 199, 0.2) 80%, rgba(247, 189, 199, 0.4) 100%);
}
@media screen and (max-width: 600px) {
  .l-practice .p-block-price {
    padding: 1rem 0;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 30px;
  }
}
.l-practice .c-title-price {
  font-size: 1.125rem;
  border: 1px solid;
  background-color: white;
  display: inline;
  padding: 0.5em 1em;
  white-space: nowrap;
}
.l-practice .c-txt {
  font-size: 2.0625rem;
}
@media screen and (max-width: 600px) {
  .l-practice .c-txt {
    font-size: 26px;
  }
}
.l-practice .c-txt span {
  font-size: 0.7em;
}

.p-list-practice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5%;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .p-list-practice {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 8rem;
  }
}

.c-img-practice_wrap {
  position: relative;
  border-radius: 0.5rem;
}

.c-img-practice {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.c-title-practice {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 23px;
  background: rgb(247, 189, 199);
  background: linear-gradient(90deg, rgb(247, 189, 199) 0%, rgb(255, 254, 238) 64%, rgb(248, 226, 219) 100%);
  padding: 0.5em 1em;
  border-radius: 0 0.5rem 0 0.5rem;
  color: #646464;
}
@media screen and (max-width: 600px) {
  .c-title-practice {
    font-size: 18px;
  }
}

.c-txt-practice {
  font-size: 15px;
  text-align: justify;
  margin-top: 1em;
}
@media screen and (max-width: 600px) {
  .c-txt-practice {
    font-size: 13px;
  }
}

/*==========================
　　５つのメリット
==========================*/
.l-merit {
  text-align: center;
  padding-bottom: 180px;
}
@media screen and (max-width: 600px) {
  .l-merit {
    padding-bottom: 120px;
  }
}
.l-merit_inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.p-list-merit {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .p-list-merit {
    gap: 60px;
  }
}

.p-txt-block-merit {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 600px) {
  .p-txt-block-merit {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.p-txt-merit {
  text-align: left;
  flex-basis: 85%;
}

.c-title-merit {
  font-size: 2.375rem;
  border-bottom: 2px solid;
  display: inline;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .c-title-merit {
    font-size: 20px;
  }
}

.c-txt-merit {
  font-size: 1.125rem;
  margin-top: 1em;
  padding-left: 1rem;
}
@media screen and (max-width: 600px) {
  .c-txt-merit {
    font-size: 13px;
    padding-left: 0;
  }
}

.c-number-merit {
  width: 100px;
  height: 145px;
}
@media screen and (max-width: 600px) {
  .c-number-merit {
    width: auto;
    height: 50px;
  }
}
.c-number-merit img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-voice {
  text-align: center;
  margin-bottom: 180px;
}
@media screen and (max-width: 600px) {
  .l-voice {
    margin-bottom: 80px;
  }
}
.l-voice .btn_02 {
  font-size: 27px;
  margin-top: 170px;
}
@media screen and (max-width: 600px) {
  .l-voice .btn_02 {
    font-size: 18px;
    margin-top: 80px;
  }
}

.c-lead-personality,
.c-lead-interested {
  font-size: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .c-lead-personality,
  .c-lead-interested {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}

.p-list-voice {
  display: grid;
  align-content: center;
  justify-content: center;
  grid-template-columns: repeat(3, 320px);
  grid-template-rows: repeat(1, 425px);
  gap: 2rem 3%;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .p-list-voice {
    grid-template-columns: repeat(2, 320px);
    grid-template-rows: repeat(2, 425px);
  }
}
@media screen and (max-width: 600px) {
  .p-list-voice {
    grid-template-columns: repeat(1, 320px);
    grid-template-rows: repeat(3, 425px);
  }
}

.p-card-voice {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background-position: center top;
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  border-radius: 0.5rem;
  transition: 0.3s; /* 追加: アニメーションのトランジション効果を追加 */
}
.p-card-voice:hover {
  opacity: 0.8;
  background-size: 110%, 110%;
}
.p-card-voice a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-block-comment {
  position: relative;
  background: rgb(255, 251, 199);
  background: radial-gradient(circle, rgb(255, 251, 199) 0%, rgb(246, 209, 112) 100%);
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 1rem;
}
.p-block-comment.pink {
  background: rgb(255, 245, 224);
  background: radial-gradient(circle, rgb(255, 245, 224) 0%, rgb(237, 188, 199) 100%);
}
.p-block-comment.green {
  background: rgb(244, 246, 215);
  background: radial-gradient(circle, rgb(244, 246, 215) 0%, rgb(179, 217, 173) 100%);
}
.p-block-comment .c-number-voice {
  position: absolute;
  top: -0.5rem;
  left: 0;
  transform: translate(1.25rem, -100%);
  width: 90px;
  height: 90px;
}

.c-lead-voice {
  font-size: 17px;
  line-height: 1.3rem;
  text-align: justify;
}

.c-name-voice {
  font-size: 1.1875rem;
  text-align: right;
  margin-top: 0.8rem;
}
.c-name-voice span {
  font-size: 0.875rem;
  margin-right: 1em;
}

/*==========================
　　comming soon
==========================*/
.dummy {
  padding: 6rem 0;
  text-align: center;
}

.comming-soon {
  font-size: 20px;
}

/*==========================
　　404
==========================*/
.l-404-container {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
.l-404-container h1 {
  padding: 1rem 0;
}
.l-404-container a {
  color: #f7bdc7;
}

/*==========================
　　アイコン付見出し
==========================*/
.c-title_wrap {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  border: 1px solid #fb82b1;
  padding: 0.3em;
  background-color: white;
}

.c-title_mind {
  position: relative;
  font-size: 2.125rem;
  letter-spacing: 0.05em;
  color: #fb82b1;
  border: 1px solid #fb82b1;
  padding: 0.4em 1em 0.4em 3.25em;
  display: inline-block;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .c-title_mind {
    font-size: 1.15rem;
  }
}
.c-title_mind::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(1em, -50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../images/icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/*==========================
　　アイコン付見出し
==========================*/
.p-block_waku {
  position: relative;
  max-width: 950px;
  width: 90%;
  margin: 0 auto;
  border: 1px solid #fb82b1;
  background-color: white;
}
@media screen and (max-width: 480px) {
  .p-block_waku {
    width: 100%;
  }
}

.p-block_waku_inner {
  max-width: 810px;
  width: 90%;
  margin: 0 auto;
  padding-top: 6.25vw;
  padding-bottom: 6.25vw;
}

.c-title_logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 1.625rem;
  text-align: center;
  letter-spacing: 0.2em;
  white-space: nowrap;
  border: 1px solid #fb82b1;
  padding: 0.5em 3em;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .c-title_logo {
    font-size: 14px;
  }
}

header {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  header {
    top: 2rem;
  }
}
header .p-block-nav {
  font-size: 13.5px;
  padding-bottom: 0;
  gap: 1em 2.5em;
}
@media screen and (max-width: 1150px) {
  header .p-block-nav {
    display: none;
  }
}
header .l-header_wrap {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
header .l-header {
  display: flex;
  justify-content: flex-start;
}
header .c-img-header_logo {
  width: 330px;
  height: auto;
}
@media screen and (max-width: 600px) {
  header .c-img-header_logo {
    width: 250px;
  }
}

.l-footer {
  background-color: rgba(100, 100, 100, 0.16);
}

.p-block-footer {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}

.p-list-sns,
.p-block-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.p-list-sns {
  padding-top: 5rem;
  padding-bottom: 2em;
  gap: 1.5em;
}
@media screen and (max-width: 600px) {
  .p-list-sns {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.p-block-nav {
  padding-bottom: 1.5em;
  gap: 1em 3em;
}
@media screen and (max-width: 600px) {
  .p-block-nav {
    display: none;
  }
}

.p-block-sns {
  position: relative;
}
@media screen and (max-width: 600px) {
  .p-block-sns {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-block-locaradi {
  position: absolute;
  top: 50%;
  right: 5%;
}
@media screen and (max-width: 600px) {
  .p-block-locaradi {
    position: static;
    margin-bottom: 2rem;
  }
}

.c-img-sns img {
  width: 30px;
  height: auto;
}

.c-img-locaradi {
  width: 120px;
}

.p-footer-mamayume {
  text-align: center;
  padding-top: 2em;
}
.p-footer-mamayume .c-txt {
  font-size: 13px;
  padding-bottom: 1.5em;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 600px) {
  .p-footer-mamayume .c-txt {
    letter-spacing: 0;
  }
}
.p-footer-mamayume .p-list_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
}
.p-footer-mamayume .c-logo-watashitachi {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .p-footer-mamayume .c-logo-watashitachi {
    max-width: 130px;
  }
}

.c-txt-tokutei {
  width: 90%;
  margin: 0 auto;
  font-size: 11px;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5em;
  z-index: 100;
}
@media screen and (max-width: 600px) {
  .c-txt-tokutei {
    justify-content: center;
  }
}

.c-txt-copyright {
  padding: 2em 0;
  font-size: 0.625em;
  text-align: center;
  letter-spacing: 0.125em;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #fff;
  border: solid 2px #646464;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #646464;
  border-right: 3px solid #646464;
  transform: translateY(20%) rotate(-45deg);
}

/*============
nav
=============*/
.mobile {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}

.open .mobile {
  left: 0;
  opacity: 1;
}

.mobile .inner {
  padding: 25px;
}

.mobile .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

.mobile .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}

.mobile .inner ul li a:hover {
  background: white;
}

@media screen and (max-width: 767px) {
  .mobile {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: none;
}
@media screen and (max-width: 1150px) {
  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn::after {
    content: "";
    display: block;
    border-radius: 50%;
    border: 2px solid;
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: -2;
  }
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #646464;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn::after {
  border: 2px solid white;
}

.open .toggle_btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

.l-first_view {
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .l-first_view {
    position: static;
  }
}

video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  video {
    height: 260px;
    margin-top: 150px;
  }
}

.widgettitle {
  display: inline-block;
  font-size: 1.8125rem;
  color: #646464;
  letter-spacing: 0.1em;
  white-space: nowrap;
  background-color: white;
  padding: 0.3em 1.5em;
  border: 1px solid;
  position: absolute;
  top: 0;
  right: 1em;
  transform: translate(0, -50%);
}
@media screen and (max-width: 600px) {
  .widgettitle {
    font-size: 1.4375rem;
  }
}

.eo-event-past,
.eo-event-running,
.eo-event-future,
.eo-multi-day,
.eo-no-events {
  list-style: none;
  margin-bottom: 0.5rem;
}
.eo-event-past:last-child,
.eo-event-running:last-child,
.eo-event-future:last-child,
.eo-multi-day:last-child,
.eo-no-events:last-child {
  margin-bottom: 0;
}
.eo-event-past a,
.eo-event-running a,
.eo-event-future a,
.eo-multi-day a,
.eo-no-events a {
  font-size: 21px;
  letter-spacing: 0.125em;
  white-space: nowrap;
  position: relative;
}
.eo-event-past a:before,
.eo-event-running a:before,
.eo-event-future a:before,
.eo-multi-day a:before,
.eo-no-events a:before {
  display: block;
  content: "";
  background-image: url(../images/i-on_air.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translate(0, -50%);
}
@media screen and (max-width: 600px) {
  .eo-event-past a,
  .eo-event-running a,
  .eo-event-future a,
  .eo-multi-day a,
  .eo-no-events a {
    font-size: 16px;
    white-space: wrap;
  }
}

.p-block-on_air {
  display: inline-block;
  min-width: 400px;
  position: absolute;
  bottom: 2em;
  right: 2em;
  padding: 3em 3em 1em 3em;
  background-color: hsla(41, 59%, 32%, 0.6);
  background-image: radial-gradient(at 80% 19%, hsla(51, 92%, 59%, 0.6) 0px, transparent 50%), radial-gradient(at 0% 1%, hsla(339, 100%, 85%, 0.6) 0px, transparent 50%), radial-gradient(at 95% 93%, hsla(346, 100%, 85%, 0.6) 0px, transparent 50%), radial-gradient(at 46% 49%, hsla(41, 100%, 72%, 0.6) 0px, transparent 50%), radial-gradient(at 100% 99%, hsla(339, 100%, 85%, 0.6) 0px, transparent 50%), radial-gradient(at 0% 99%, hsla(105, 100%, 72%, 0.6) 0px, transparent 50%), radial-gradient(at 100% 0%, hsla(55, 100%, 49%, 0.6) 0px, transparent 50%);
}
@media screen and (max-width: 600px) {
  .p-block-on_air {
    min-width: 200px;
    padding: 40px 1em 30px 1em;
    width: 90%;
    right: 0;
    transform: translateX(5%);
    position: static;
    margin-top: 80px;
  }
}
.p-block-on_air p {
  font-size: 17px;
}
@media screen and (max-width: 600px) {
  .p-block-on_air p {
    font-size: 12px;
    white-space: wrap;
  }
}

.event-calendar {
  list-style: none;
  padding: 0;
  color: white;
}

.l-media {
  margin-top: 10rem;
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .l-media {
    margin-top: 90px;
  }
}
.l-media .pc_no .p-block-media-03 {
  display: none;
}
@media screen and (max-width: 600px) {
  .l-media .pc_no .p-block-media-03 {
    display: block;
  }
}

.l-about,
.l-radio-station {
  margin-bottom: 10rem;
}
@media screen and (max-width: 600px) {
  .l-about,
  .l-radio-station {
    margin-bottom: 5rem;
  }
}

.l-media_wrapper {
  position: relative;
  background-color: hsla(41, 59%, 72%, 0.2);
  background-image: radial-gradient(at 80% 19%, hsla(51, 92%, 59%, 0.2) 0px, transparent 50%), radial-gradient(at 0% 1%, hsla(339, 100%, 85%, 0.2) 0px, transparent 50%), radial-gradient(at 95% 93%, hsla(346, 100%, 85%, 0.2) 0px, transparent 50%), radial-gradient(at 46% 49%, hsla(41, 100%, 72%, 0.2) 0px, transparent 50%), radial-gradient(at 100% 99%, hsla(339, 100%, 85%, 0.2) 0px, transparent 50%), radial-gradient(at 0% 99%, hsla(105, 100%, 72%, 0.2) 0px, transparent 50%), radial-gradient(at 100% 0%, hsla(55, 100%, 49%, 0.2) 0px, transparent 50%);
}

.l-media_inner {
  width: 85%;
  height: 100%;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .l-media_inner {
    padding: 2rem 0;
  }
}
.l-media_inner .btn-wrap {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .l-media_inner .btn-wrap {
    text-align: center;
    order: 5;
    margin-bottom: 0;
  }
}

.p-block-media-01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
}
@media screen and (max-width: 960px) {
  .p-block-media-01 {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-block-media-01 img {
    order: 2;
    width: 100%;
    margin-bottom: 30px;
  }
}

.c-title-top-madia {
  font-size: 32px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -100%);
  background-color: hsla(6, 100%, 85%, 0.35);
  padding: 0.5em 1em 0em 1em;
}
@media screen and (max-width: 600px) {
  .c-title-top-madia {
    font-size: 21px;
  }
}
.c-title-top-madia::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 64px solid transparent;
  border-bottom: 64px solid hsla(6, 100%, 85%, 0.35); /* 三角形の色や大きさは適宜調整してください */
  transform: scaleX(-1) translateX(-100%);
}
@media screen and (max-width: 600px) {
  .c-title-top-madia::before {
    border-left: 42px solid transparent;
    border-bottom: 42px solid hsla(6, 100%, 85%, 0.35); /* 三角形の色や大きさは適宜調整してください */
  }
}

.p-block-media-txt {
  text-align: left;
}
@media screen and (max-width: 600px) {
  .p-block-media-txt {
    order: 1;
  }
}

.c-heading-media {
  font-size: 24px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 600px) {
  .c-heading-media {
    font-size: 20px;
  }
}

.c-txt-media {
  font-size: 16px;
  line-height: 1.4em;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .c-txt-media {
    font-size: 15px;
  }
}

.p-block-media-02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  .p-block-media-02 {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-block-media-02 .c-img-number_wrap {
  flex-basis: 47%;
}
@media screen and (max-width: 600px) {
  .p-block-media-02 .c-img-number_wrap {
    width: 90%;
    margin: 0 auto;
    flex-basis: 100%;
  }
}
.p-block-media-02 .c-img-number_wrap .c-img-number {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .p-block-media-02 .c-img-number_wrap .c-img-number {
    width: auto;
    height: 80px;
  }
}

.c-txt-media-hosoku {
  font-size: 0.6875rem;
  white-space: nowrap;
  margin-top: 1em;
  text-align: left;
  flex-basis: 100%;
}

.c-txt-media-hosoku.right {
  text-align: right;
}

.p-block-media-03 {
  background-color: white;
  padding: 2rem 0;
}
@media screen and (max-width: 600px) {
  .p-block-media-03 {
    display: none;
    padding: 5rem 0 0 0;
  }
}
.p-block-media-03_inner {
  max-width: 710px;
  width: 90%;
  margin: 0 auto;
}

.c-title-media-03 {
  display: inline-block;
  border: 1px solid;
  padding: 0.5em 1em;
  font-size: 1.125rem;
  max-width: 560px;
  width: 100%;
}

.p-block-data2023 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 960px) {
  .p-block-data2023 {
    flex-direction: column;
    gap: 2rem;
  }
}

.c-txt-data2023-sub {
  display: block;
  font-size: 0.625rem;
  margin-top: 1rem;
}
@media screen and (max-width: 600px) {
  .c-txt-data2023-sub {
    margin-top: 1em;
  }
}

.c-txt-data2023 {
  font-size: 1.625rem;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .c-txt-data2023 {
    font-size: 18px;
  }
}

.c-illst-data2023 {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.l-about {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .l-about {
    margin-top: 80px;
  }
}
.l-about .c-img-header_logo {
  max-width: 340px;
  width: 90%;
  margin: 0 auto;
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-about .c-img-header_logo {
    display: none;
  }
}
.l-about .sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .l-about .sp {
    display: block;
  }
}

.l-about_wrapper {
  background-image: url(../images/bg-top-circle1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  .l-about_wrapper {
    background-position: right top;
    background-size: 90%, 90%;
  }
}

.l-about_inner {
  padding-top: 80px;
  padding-bottom: 120px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-about_inner {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.l-about_inner .c-title-mission_wrap {
  text-align: right;
}
@media screen and (max-width: 600px) {
  .l-about_inner .c-title-mission_wrap {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .l-about_inner .btn_wrap {
    text-align: center;
  }
}

.c-lead-about {
  font-size: 21px;
  line-height: 1.666666em;
  padding: 40px 0 60px 0;
}
@media screen and (max-width: 600px) {
  .c-lead-about {
    font-size: 15px;
    line-height: 2em;
    padding: 40px 0;
  }
}

.l-poem {
  background-image: url(../images/bg-top-circle2.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  padding-bottom: 240px;
}
@media screen and (max-width: 600px) {
  .l-poem {
    padding-bottom: 110px;
    background-image: none;
  }
}

.c-title-mission_wrap {
  text-align: right;
}
@media screen and (max-width: 600px) {
  .c-title-mission_wrap {
    text-align: center;
  }
}

.c-title-mission {
  position: relative;
  font-size: 23px;
  border: 2px solid;
  padding: 0.5em 2em 0.5em 4em;
  display: inline-block;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .c-title-mission {
    font-size: 15px;
  }
}
.c-title-mission::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(2em, -50%);
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-block-lead-about picture {
  padding-top: 50px;
}
.p-block-lead-about picture img {
  width: 100%;
  height: auto;
}

.l-radio-station {
  padding: 60px 0;
  background: linear-gradient(-135deg, rgba(251, 231, 9, 0.3) 0%, rgba(242, 186, 195, 0.3) 50%, rgba(176, 215, 158, 0.3) 100%);
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-radio-station {
    padding: 3rem 0;
  }
}

.l-radio-station_inner {
  position: relative;
  text-align: left;
}
.l-radio-station_inner .c-title-common {
  position: absolute;
  top: 0;
}

.c-illust-map {
  -o-object-fit: contain;
     object-fit: contain;
}

.l-interested {
  text-align: center;
}

.c-lead-sub-interested {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.125rem;
  border: 2px solid;
  padding: 1em;
  border-radius: 0.5em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .c-lead-sub-interested {
    margin-bottom: 1rem;
  }
}
.c-lead-sub-interested .fukidashi_1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: solid 12px transparent;
  border-top: solid 12px #646464;
}
.c-lead-sub-interested .fukidashi_1::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: solid 14px transparent;
  border-top: solid 15px white;
  margin-top: -5px;
}
.c-lead-sub-interested .fukidashi_2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 86%;
  transform: translateX(-50%);
  border: solid 12px transparent;
  border-top: solid 12px #646464;
}
.c-lead-sub-interested .fukidashi_2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 86%;
  transform: translateX(-50%);
  border: solid 14px transparent;
  border-top: solid 15px white;
  margin-top: -5px;
}
.c-lead-sub-interested .fukidashi_3::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 14%;
  transform: translateX(-50%);
  border: solid 12px transparent;
  border-top: solid 12px #646464;
}
.c-lead-sub-interested .fukidashi_3::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 14%;
  transform: translateX(-50%);
  border: solid 14px transparent;
  border-top: solid 15px white;
  margin-top: -5px;
}

.p-block-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.p-block-circle_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .p-block-circle_wrap {
    gap: 1rem;
  }
}

.p-block-circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background-color: rgba(176, 215, 157, 0.6);
  display: flex;
  align-items: center;
}

.c-title-interested {
  font-size: 2rem;
}

.c-txt-interested {
  font-size: 1.125rem;
  line-height: 1.25em;
}
.c-txt-interested span {
  display: block;
  font-size: 1rem;
}

.l-merit {
  background-image: url(../images/bg-top-circle4.png);
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .l-merit {
    background-image: none;
  }
}

.p-block-follow {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .p-block-follow {
    display: none;
  }
}

.p-block-follow__inner {
  padding: 1.25em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  color: white;
  background: rgb(100, 181, 75);
  background: linear-gradient(0deg, rgb(100, 181, 75) 0%, rgb(179, 215, 158) 100%);
  mix-blend-mode: multiply;
  letter-spacing: 0.125em;
  line-height: 1;
  transition: ease 0.4s;
}
.p-block-follow__inner:hover {
  opacity: 0.8;
}

.p-category-area_wrap {
  margin: 0 auto;
  padding: 3rem 0;
}

#archive .p-category-area {
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 1.5em 0;
}
#archive .p-category-list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em 3em;
}
#archive .p-block-news-list {
  padding: 0 5%;
  padding-top: 3em;
  padding-bottom: 80px;
}
#archive .p-item-news-list {
  display: flex;
  margin-bottom: 1.5em;
}
#archive .c-date-news {
  width: 7em;
}
#archive .c-category-news {
  border: 1px solid;
  white-space: nowrap;
  font-size: 0.8em;
  padding: 0.1em 0.5em;
  width: 170px;
  text-align: center;
}
#archive .c-title-news.archive {
  margin-left: 2em;
}

#personality .c-title-common {
  background-color: rgba(176, 215, 157, 0.6);
}
#personality .c-title-common::before {
  content: "";
  background: rgba(176, 215, 157, 0.6);
}
#personality .l-practice {
  background-image: none;
}
#personality .l-merit {
  background-image: url(../images/bg-top-circle2.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  #personality .l-merit {
    background-image: none;
  }
}
#personality .l-voice {
  padding-top: 180px;
}
@media screen and (max-width: 600px) {
  #personality .l-voice {
    padding-top: 120px;
  }
}
#personality .l-mind {
  background-image: url(../images/bg-top-circle3.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 35%, 35%;
}
@media screen and (max-width: 600px) {
  #personality .l-mind {
    background-image: none;
  }
}
#personality .l-description {
  background-image: url(../images/bg-top-circle4.png);
  background-repeat: no-repeat;
  background-position: 0 40%;
}
@media screen and (max-width: 600px) {
  #personality .l-description {
    background-image: none;
  }
}

.main-personality {
  margin-bottom: 8rem;
}
@media screen and (max-width: 600px) {
  .main-personality {
    margin-bottom: 4rem;
  }
}

.l-entry {
  margin-bottom: 10rem !important;
}
@media screen and (max-width: 600px) {
  .l-entry {
    margin-bottom: 5rem !important;
  }
}

.l-mind {
  text-align: center;
  margin-bottom: 80px;
}
.l-mind_wrap {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  background-image: linear-gradient(47deg, rgba(247, 189, 199, 0.4) 0%, rgba(247, 189, 199, 0.2) 20%, rgba(251, 231, 10, 0.15) 50%, rgba(247, 189, 199, 0.2) 80%, rgba(247, 189, 199, 0.4) 100%);
}
@media screen and (max-width: 600px) {
  .l-mind_wrap {
    padding: 1rem 0;
  }
}
.l-mind .l-mind_inner {
  max-width: 720px;
  width: 90%;
  margin: 0 auto;
}
.l-mind .p-block-list {
  text-align: left;
  padding-left: 1em;
}
.l-mind .p-block-list li {
  -webkit-text-decoration: underline solid #f7bdc7;
          text-decoration: underline solid #f7bdc7;
  font-size: 24px;
  margin-bottom: 1rem;
}
.l-mind .p-block-list li:last-child {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 600px) {
  .l-mind .p-block-list li {
    font-size: 16px;
  }
}
.l-mind .hosoku {
  display: block;
  font-size: 1rem;
  color: #e86d98;
  text-align: left;
  padding-left: 1em;
}
@media screen and (max-width: 600px) {
  .l-mind .hosoku {
    font-size: 10px;
  }
}
.l-mind .btn_02 {
  font-size: 27px;
  background: rgb(251, 130, 177);
  background: linear-gradient(90deg, rgb(251, 130, 177) 0%, rgb(253, 219, 233) 100%);
  color: white;
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .l-mind .btn_02 {
    font-size: 18px;
    margin-top: 3rem;
  }
}

.l-description_wrap {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(251, 231, 9, 0.15) 0%, rgba(242, 186, 195, 0.15) 50.35%, rgba(176, 215, 158, 0.15) 100%);
}
.l-description_inner {
  max-width: 810px;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (max-width: 600px) {
  .l-description_inner {
    padding: 2rem 0;
  }
}
.l-description .c-title-h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .l-description .c-title-h3 {
    font-size: 14px;
  }
}
.l-description .c-txt {
  font-size: 1.25rem;
  margin-top: 1em;
}
@media screen and (max-width: 600px) {
  .l-description .c-txt {
    font-size: 10px;
  }
}
.l-description ul {
  font-size: 1rem;
  list-style: none;
  padding: 0;
}
.l-description .c-line-link {
  color: #6aba82;
}
.l-description .btn_wrap {
  text-align: center;
}

.l-entry {
  text-align: center;
  padding-top: 4rem;
}
@media screen and (max-width: 600px) {
  .l-entry {
    padding-top: 2rem;
  }
}
.l-entry .btn_02 {
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .l-entry .btn_02 {
    margin-top: 2rem;
  }
}

.p-block-pdf {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .p-block-pdf {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-block-pdf a {
  font-size: 18px;
  text-align: center;
  display: inline-block;
  width: 220px;
  padding: 0.75em 1em;
  background-color: #d0d0d0;
  transition: ease 0.4s;
}
@media screen and (max-width: 600px) {
  .p-block-pdf a {
    font-size: 15px;
  }
}
.p-block-pdf a:hover {
  background-color: #646464;
  color: white;
}

.p-block-check {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
}
.p-block-check .checkBtn {
  font-size: 1.125rem;
}
.p-block-check .checkBtn input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-block-check .checkBtn {
  /* チェックボックスデザイン */
}
.p-block-check .checkBtn input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px; /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}
.p-block-check .checkBtn input[type=checkbox]::before,
.p-block-check .checkBtn input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
.p-block-check .checkBtn input[type=checkbox]::before {
  background-color: #fff;
  border: 1px solid #646464;
  width: 1.5rem; /*チェックボックスの横幅*/
  height: 1.5rem; /*チェックボックスの縦幅*/
  transform: translateY(-60%);
  top: 50%;
  left: -0.5em;
}
.p-block-check .checkBtn input[type=checkbox]::after {
  border-bottom: 3px solid #646464; /*チェックの太さ*/
  border-left: 3px solid #646464; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 0.5rem; /*チェックの高さ*/
  width: 1rem; /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -8px; /*チェック時の位置調整*/
  left: -20%; /*チェック時の位置調整*/
}
.p-block-check .checkBtn input[type=checkbox]:checked::after {
  opacity: 1; /*チェック後表示*/
}

/* 通常の状態 */
#entry {
  font-size: 27px;
  background: rgb(100, 181, 75);
  background: linear-gradient(90deg, rgb(100, 181, 75) 0%, rgb(179, 215, 158) 100%);
  border-radius: 50px;
  padding: 0.7em 3.5em;
  border: 0;
  color: white;
  cursor: pointer; /* カーソルの形状をポインターに変更 */
}
@media screen and (max-width: 600px) {
  #entry {
    font-size: 22px;
  }
}
#entry:disabled {
  opacity: 0.5; /* 透明度を下げて非活性に見せる（例：50%の透明度） */
  cursor: not-allowed; /* カーソルを許可されていない状態に変更 */
}
#entry:hover {
  opacity: 0.8;
}

.l-main-old-news#archive .l-old-news {
  text-align: left;
}
.l-main-old-news#archive .p-block-news_wrap {
  padding: 5rem 0;
  border-bottom: 2px solid;
}
.l-main-old-news#archive .p-block-news_wrap:last-child {
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  .l-main-old-news#archive .p-block-news_wrap {
    padding: 3rem 0;
  }
}
.l-main-old-news#archive .p-block-news {
  padding: 0 5%;
  border-right: 0;
  margin-bottom: 1.5em;
}
.l-main-old-news#archive .p-block-date {
  display: flex;
  margin-bottom: 0.5em;
}
.l-main-old-news#archive .p-block-news_title {
  margin-bottom: 1em;
}
.l-main-old-news#archive .c-title {
  font-size: 1.5rem;
}
.l-main-old-news#archive .p-block-news-descri {
  padding: 0 5%;
  margin: 0 auto;
  line-height: 1.8em;
  font-size: 0.9375rem;
}
.l-main-old-news#archive .p-block-news-descri a {
  color: #f7bdc7;
  -webkit-text-decoration: dotted;
          text-decoration: dotted;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.nav-links {
  display: flex;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 20px 25px;
  color: #646464;
  font-size: 1em;
}
@media screen and (max-width: 600px) {
  .pagination .page-numbers {
    padding: 10px 12px;
  }
}

.pagination .current {
  padding: 20px 25px;
  background: #646464;
  color: white;
}
@media screen and (max-width: 600px) {
  .pagination .current {
    padding: 10px 12px;
  }
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
}

#tokutei .p-block-tokutei {
  font-size: 17px;
  padding: 8rem 0;
  text-align: left;
}
@media screen and (max-width: 600px) {
  #tokutei .p-block-tokutei {
    font-size: 13px;
    padding: 2rem 0;
  }
}
#tokutei td,
#tokutei th {
  padding: 1rem 0;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  #tokutei td,
  #tokutei th {
    padding: 1rem 0;
  }
}
#tokutei th {
  width: 25%;
  padding-right: 2rem;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  #tokutei th {
    width: 35%;
    padding-right: 0.5rem;
    white-space: wrap;
  }
}
#tokutei td {
  padding-left: 2rem;
}
@media screen and (max-width: 600px) {
  #tokutei td {
    padding-left: 0.5rem;
  }
}

#radio-station .l-station_inner {
  display: grid;
  align-content: center;
  justify-content: center;
  grid-template-columns: repeat(3, 320px);
  gap: 2rem 3%;
  list-style: none;
  padding: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  #radio-station .l-station_inner {
    grid-template-columns: repeat(2, 320px);
  }
}
@media screen and (max-width: 600px) {
  #radio-station .l-station_inner {
    grid-template-columns: repeat(1, 320px);
  }
}
#radio-station .p-card-station {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: linear-gradient(-135deg, rgba(251, 231, 9, 0.5) 0%, rgba(242, 186, 195, 0.5) 50%, rgba(176, 215, 158, 0.5) 100%);
}
#radio-station .p-card-ttl {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
#radio-station .c-ttl-todofuken {
  font-size: 15px;
}
#radio-station .c-ttl-station {
  font-size: 21px;
}
#radio-station .c-ttl-station .tamaplaza {
  display: block;
  transform: scale(0.7, 1);
  transform-origin: top left;
  width: 130%;
}
#radio-station .c-ttl-station .kanazawa {
  display: block;
  transform: scale(0.9, 1);
  transform-origin: top left;
  width: 110%;
}
#radio-station .c-ttl-station .marina {
  display: block;
  transform: scale(0.9, 1);
  transform-origin: top left;
  width: 110%;
}
#radio-station .c-ttl-station .shibusawa {
  display: block;
  transform: scale(0.65, 1);
  transform-origin: top left;
  width: 150%;
}
#radio-station .c-icon-station {
  width: 60px;
  height: 60px;
}
#radio-station .photo_area {
  width: 100%;
  height: 170px;
  background-color: #efefef;
  margin-bottom: 0.75rem;
}
#radio-station .photo_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#radio-station .c-img-sponsor {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
#radio-station .p-block-station-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#radio-station .btn {
  font-size: 13.5px;
  padding: 0.25em 0.8em;
  border-radius: 20px;
}
#radio-station .p-list-sns {
  padding: 0;
  gap: 10px;
}
#radio-station .c-img-sns {
  width: 1.5rem;
}

#mamayume .l-mamayume {
  position: relative;
}
#mamayume .l-mamayume::after {
  position: absolute;
  top: -3vw;
  right: 2vw;
  content: "";
  display: block;
  width: 60vw;
  height: 42vw;
  background-image: url(../images/about_back.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #mamayume .l-mamayume::after {
    width: 70vw;
    height: 48vw;
  }
}
#mamayume .l-mamayume_inner {
  padding-top: 20px;
  padding-bottom: 20vw;
}
#mamayume .l-mamayume .c-txt_mamayume {
  font-size: 1.3125rem;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.85;
  padding: 0 5%;
}
@media screen and (max-width: 600px) {
  #mamayume .l-mamayume .c-txt_mamayume {
    font-size: 14px;
    padding: 0 3%;
  }
}
#mamayume .l-mission_inner,
#mamayume .l-vision_inner,
#mamayume .l-Personality_inner,
#mamayume .l-history_inner {
  position: relative;
  text-align: left;
  border-top: 1px solid #fb82b1;
  padding-top: 12.5vw;
  padding-bottom: 12.5vw;
  margin-top: 6.25vw;
  margin-bottom: 6.25vw;
}
@media screen and (max-width: 600px) {
  #mamayume .l-mission_inner,
  #mamayume .l-vision_inner,
  #mamayume .l-Personality_inner,
  #mamayume .l-history_inner {
    padding-bottom: 18vw;
  }
}
#mamayume .l-mission .c-lead,
#mamayume .l-vision .c-lead,
#mamayume .l-Personality .c-lead,
#mamayume .l-history .c-lead {
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1.85;
  padding-bottom: 6.25vw;
}
@media screen and (max-width: 600px) {
  #mamayume .l-mission .c-lead,
  #mamayume .l-vision .c-lead,
  #mamayume .l-Personality .c-lead,
  #mamayume .l-history .c-lead {
    font-size: 1.3125rem;
  }
}
#mamayume .l-mission .c-txt,
#mamayume .l-vision .c-txt,
#mamayume .l-Personality .c-txt,
#mamayume .l-history .c-txt {
  font-size: 1.3125rem;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.85;
}
@media screen and (max-width: 600px) {
  #mamayume .l-mission .c-txt,
  #mamayume .l-vision .c-txt,
  #mamayume .l-Personality .c-txt,
  #mamayume .l-history .c-txt {
    font-size: 14px;
  }
}
#mamayume .l-mission {
  margin-bottom: 10vw;
  position: relative;
}
@media screen and (max-width: 600px) {
  #mamayume .l-mission::after {
    position: absolute;
    bottom: 10vw;
    left: 0;
    content: "";
    display: block;
    width: 30vw;
    height: 40vw;
    background-image: url(../images/vision_back.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -10;
  }
}
#mamayume .l-vision {
  position: relative;
}
#mamayume .l-vision_inner::after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 21vw;
  height: 19.85vw;
  background-image: url(../images/about_vision.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  #mamayume .l-vision_inner::after {
    left: 100%;
    transform: translate(-100%, -120%);
  }
}
#mamayume .l-vision .c-title_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 600px) {
  #mamayume .l-vision .c-title_wrap {
    left: 0;
    transform: translate(0, -50%);
  }
}
#mamayume .l-vision .c-lead,
#mamayume .l-vision .c-txt {
  text-align: right;
}
@media screen and (max-width: 600px) {
  #mamayume .l-vision .c-lead,
  #mamayume .l-vision .c-txt {
    text-align: left;
  }
}
#mamayume .l-vision .c-lead {
  font-size: 3.5rem;
}
@media screen and (max-width: 600px) {
  #mamayume .l-vision .c-lead {
    font-size: 1.3125rem;
  }
}
#mamayume .l-Personality {
  position: relative;
}
#mamayume .l-Personality::after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -70%);
  content: "";
  display: block;
  width: 48vw;
  height: 62.5vw;
  background-image: url(../images/vision_back.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #mamayume .l-Personality::after {
    display: none;
  }
}
#mamayume .l-Personality::before {
  position: absolute;
  top: 10vw;
  right: 5vw;
  transform: translate(0, 0);
  content: "";
  display: block;
  width: 18.75vw;
  height: 20vw;
  background-image: url(../images/about_op.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #mamayume .l-Personality::before {
    top: 85%;
    transform: translateY(-100%);
  }
}
#mamayume .l-Personality .p-list_Personality {
  padding-left: 3em;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.85;
}
@media screen and (max-width: 600px) {
  #mamayume .l-Personality .p-list_Personality {
    padding-left: 1em;
    font-size: 14px;
  }
}
#mamayume .l-Personality .p-list_Personality li {
  margin-bottom: 1em;
}
#mamayume .l-Personality .p-list_Personality li br {
  display: none;
}
@media screen and (max-width: 600px) {
  #mamayume .l-Personality .p-list_Personality li br {
    display: block;
  }
}
#mamayume .l-history {
  position: relative;
}
#mamayume .l-history::after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -75%);
  content: "";
  display: block;
  width: 46.875vw;
  height: 50.78125vw;
  background-image: url(../images/history_back.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #mamayume .l-history::after {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  #mamayume .l-history_inner {
    padding-bottom: 30vw;
  }
}
#mamayume .l-history_inner::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 24.21875vw;
  height: 19.53125vw;
  background-image: url(../images/about_history.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  #mamayume .l-history_inner::after {
    width: 130px;
    height: 105px;
  }
}
#mamayume .l-history .p-block_history {
  font-size: 1rem;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  #mamayume .l-history .p-block_history {
    font-size: 0.8125rem;
  }
}
#mamayume .l-history th,
#mamayume .l-history td {
  vertical-align: top;
  padding-bottom: 3.75rem;
  border-collapse: collapse;
}
@media screen and (max-width: 600px) {
  #mamayume .l-history td {
    padding-bottom: 0;
  }
}
#mamayume .l-history .c-year {
  position: relative;
  width: 80px;
  border-right: 1px solid #646464;
}
@media screen and (max-width: 600px) {
  #mamayume .l-history .c-year {
    width: 60px;
  }
}
#mamayume .l-history .c-year::before {
  content: "";
  position: absolute;
  top: 0.6em;
  right: 0;
  transform: translate(50%, 0);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #646464;
  border-radius: 50%;
  z-index: 4;
}
#mamayume .l-history .c-year::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, 0);
  width: 2rem;
  height: 2rem;
  background-color: white;
  border-radius: 50%;
  z-index: 1;
}
#mamayume .l-history .c-month {
  width: 120px;
  padding-left: 2em;
}
@media screen and (max-width: 600px) {
  #mamayume .l-history .c-desc_history {
    padding-left: 2em;
  }
}
#mamayume .l-history .border {
  border-right: 1px solid #646464;
  padding-bottom: 100px;
}
@media screen and (max-width: 600px) {
  #mamayume .l-history .c-month,
  #mamayume .l-history .c-desc_history {
    display: block;
    width: 100%;
  }
}
#mamayume .l-logo {
  margin-bottom: 23.5vw;
  position: relative;
}
#mamayume .l-logo::after {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -25%);
  content: "";
  display: block;
  width: 46.875vw;
  height: 48.4375vw;
  background-image: url(../images/logo_back.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #mamayume .l-logo::after {
    top: 100%;
  }
}
#mamayume .l-logo .c-lead {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.85;
  text-align: center;
  padding-bottom: 6.25vw;
}
@media screen and (max-width: 600px) {
  #mamayume .l-logo .c-lead {
    font-size: 1.1875rem;
  }
}
#mamayume .l-logo .c-txt {
  font-size: 1.125rem;
  line-height: 1.85;
}
@media screen and (max-width: 600px) {
  #mamayume .l-logo .c-txt {
    font-size: 14px;
  }
}
#mamayume .l-logo .c-img_logo {
  max-width: 40vw;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 4vw;
}
#mamayume .l-greeting {
  padding: 6vw 0 12vw;
  background: linear-gradient(-135deg, rgba(251, 231, 9, 0.5) 0%, rgba(242, 186, 195, 0.5) 50%, rgba(176, 215, 158, 0.5) 100%);
}
#mamayume .l-greeting_inner {
  max-width: 880px;
  width: 90%;
  margin: 0 auto;
}
#mamayume .l-greeting .c-title_greeting {
  font-size: 1.625rem;
  text-align: left;
  margin-bottom: 6vw;
}
@media screen and (max-width: 600px) {
  #mamayume .l-greeting .c-title_greeting {
    font-size: 15px;
  }
}
#mamayume .l-greeting .p-block_txt {
  padding: 7vw 0;
  background-color: white;
  border-radius: 2vw;
}
#mamayume .l-greeting .p-block_txt_inner {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
#mamayume .l-greeting .c-txt {
  font-size: 1rem;
  line-height: 1.85;
  text-align: left;
  margin-bottom: 7vw;
}
@media screen and (max-width: 600px) {
  #mamayume .l-greeting .c-txt {
    font-size: 0.75rem;
  }
}
#mamayume .l-greeting .p-img {
  display: flex;
  gap: 4%;
  align-items: flex-end;
}
#mamayume .l-greeting .c-img_takeoka {
  width: clamp(100px, 17.3913043478px + 21.7391304348vw, 250px);
  height: auto;
}
#mamayume .l-greeting .c-img_sign {
  width: clamp(100px, 17.3913043478px + 21.7391304348vw, 250px);
  height: auto;
}
#mamayume .p-card-station {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: linear-gradient(-135deg, rgba(251, 231, 9, 0.5) 0%, rgba(242, 186, 195, 0.5) 50%, rgba(176, 215, 158, 0.5) 100%);
}
#mamayume .p-card-ttl {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
#mamayume .c-ttl-todofuken {
  font-size: 15px;
}
#mamayume .c-ttl-station {
  font-size: 21px;
}
#mamayume .c-ttl-station .tamaplaza {
  display: block;
  transform: scale(0.7, 1);
  transform-origin: top left;
  width: 130%;
}
#mamayume .c-ttl-station .kanazawa {
  display: block;
  transform: scale(0.9, 1);
  transform-origin: top left;
  width: 110%;
}
#mamayume .c-ttl-station .marina {
  display: block;
  transform: scale(0.9, 1);
  transform-origin: top left;
  width: 110%;
}
#mamayume .c-icon-station {
  width: 60px;
  height: 60px;
}
#mamayume .photo_area {
  width: 100%;
  height: 170px;
  background-color: #efefef;
  margin-bottom: 0.75rem;
}
#mamayume .c-img-sponsor {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
#mamayume .p-block-station-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mamayume .btn {
  font-size: 13.5px;
  padding: 0.25em 0.8em;
  border-radius: 20px;
}
#mamayume .p-list-sns {
  padding: 0;
  gap: 10px;
}
#mamayume .c-img-sns {
  width: 1.5rem;
}

#join_us .l-business_inner,
#join_us .l-jichitai_inner,
#join_us .l-kojin_inner,
#join_us .l-media_inner {
  position: relative;
  border-top: 1px solid #fb82b1;
  padding-top: 15vw;
  padding-bottom: 15vw;
  margin-top: 6.25vw;
  margin-bottom: 6.25vw;
}
#join_us .l-business_inner .c-title_mind::before,
#join_us .l-jichitai_inner .c-title_mind::before,
#join_us .l-kojin_inner .c-title_mind::before,
#join_us .l-media_inner .c-title_mind::before {
  top: auto;
  bottom: 0;
  transform: translate(0.5em, 0);
  width: 2.3em;
  height: 2.3em;
  background-position: bottom center;
}
#join_us .l-business .c-title_mind::before {
  background-image: url(../images/icon_business.jpg);
}
#join_us .l-jichitai .c-title_mind::before {
  background-image: url(../images/icon_jichitai.jpg);
}
#join_us .l-kojin .c-title_mind::before {
  background-image: url(../images/icon_kojin.jpg);
}
#join_us .l-media .c-title_mind::before {
  background-image: url(../images/icon_media.jpg);
}
#join_us .l-business {
  position: relative;
  padding-top: 20px;
}
#join_us .l-business_inner {
  position: relative;
  border-top: 1px solid #fb82b1;
  padding-bottom: 0;
  margin-top: 6.25vw;
  margin-bottom: 0;
}
#join_us .l-business_inner .c-title_mind::before {
  top: auto;
  bottom: 0;
  transform: translate(0.5em, 0);
  width: 2.3em;
  height: 2.3em;
  background-position: bottom center;
}
#join_us .l-business::before {
  position: absolute;
  top: 0;
  right: 3%;
  content: "";
  display: block;
  width: 50vw;
  height: 40.85vw;
  background-image: url(../images/joinback_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #join_us .l-business::before {
    width: 47vw;
    height: 40vw;
  }
}
#join_us .l-business .c-title_business {
  font-size: 2.375rem;
  letter-spacing: 0.05em;
  padding-bottom: 2.5em;
  position: relative;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-title_business {
    font-size: 1.166rem;
  }
}
#join_us .l-business .c-title_business::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.5em;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1em;
  height: 1em;
  border-bottom: 0.1px solid #646464;
  border-right: 0.1px solid #646464;
  transform: rotate(45deg);
}
#join_us .l-business .p-block_anchor {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 2.734vw;
  margin-bottom: 18.5vw;
}
#join_us .l-business .p-block_anchor .c-list_anchor {
  position: relative;
}
#join_us .l-business .p-block_anchor .c-list_anchor br {
  display: none;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_anchor .c-list_anchor br {
    display: block;
  }
}
#join_us .l-business .p-block_anchor .c-list_anchor a {
  position: relative;
  display: block;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1.5em;
  border: 2px solid #646464;
  background-color: white;
  transition: ease 0.4s;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_anchor .c-list_anchor a {
    font-size: 17px;
    padding: 0.5em;
    border: 1px solid #646464;
  }
}
#join_us .l-business .p-block_anchor .c-list_anchor a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #646464;
  border-width: 0px 0px 3.125vw 3.125vw;
}
#join_us .l-business .p-block_anchor .c-list_anchor a:hover {
  background-color: rgba(100, 100, 100, 0.5);
  color: white;
  border: 2px solid #646464;
}
#join_us .l-business #corner.p-block_waku_wrap {
  position: relative;
}
#join_us .l-business #corner.p-block_waku_wrap::after {
  position: absolute;
  top: -15%;
  right: 0;
  content: "";
  display: block;
  width: 46.48vw;
  height: 48.6vw;
  background-image: url(../images/joinback_03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #join_us .l-business #corner.p-block_waku_wrap::after {
    display: none;
  }
}
#join_us .l-business #personarity.p-block_waku_wrap {
  position: relative;
}
#join_us .l-business #personarity.p-block_waku_wrap::after {
  position: absolute;
  bottom: -15%;
  left: 0;
  content: "";
  display: block;
  width: 46.48vw;
  height: 48.6vw;
  background-image: url(../images/joinback_04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #join_us .l-business #personarity.p-block_waku_wrap::after {
    display: none;
  }
}
#join_us .l-business .p-block_waku {
  border: 1px solid #646464;
  margin-bottom: 8vw;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_waku {
    margin-bottom: 16vw;
    width: 90%;
  }
}
#join_us .l-business .p-block_waku_inner {
  max-width: 700px;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_waku_inner {
    padding-top: 15vw;
    padding-bottom: 12vw;
  }
}
#join_us .l-business #credit.p-block_waku {
  position: relative;
}
#join_us .l-business #credit.p-block_waku::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 45.7vw;
  height: 50.23vw;
  background-image: url(../images/joinback_04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #join_us .l-business #credit.p-block_waku::after {
    width: 47vw;
    height: 61.5vw;
  }
}
#join_us .l-business .c-title_logo {
  border: 1px solid #646464;
  padding: 0.5em 2em;
  max-width: 700px;
}
#join_us .l-business .c-title_logo br {
  display: none;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-title_logo br {
    display: block;
  }
}
#join_us .l-business .p-list_business {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-list_business {
    gap: 4vw;
  }
}
#join_us .l-business .c-list_business {
  font-size: 1.3125rem;
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
  padding-left: 1.75em;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-list_business {
    font-size: 13px;
  }
}
#join_us .l-business .c-list_business::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0.2em);
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #646464;
}
#join_us .l-business .p-block_green {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(175, 214, 156, 0.2);
  text-align: left;
  padding-top: 1em;
  padding-bottom: 2em;
  margin-top: 5vw;
  margin-bottom: 5vw;
}
#join_us .l-business .p-block_green_inner {
  max-width: 560px;
  width: 90%;
  margin: 0 auto;
}
#join_us .l-business .p-block_green_inner .c-txt_example {
  font-size: 1rem;
  text-align: left;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_green_inner .c-txt_example {
    font-size: 13px;
  }
}
#join_us .l-business .p-block_green_inner .c-txt_desc_wrap {
  padding: 0 2em;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_green_inner .c-txt_desc_wrap {
    padding: 0;
  }
}
#join_us .l-business .p-block_green_inner .c-txt_desc {
  font-size: 1.0625rem;
  line-height: 1.5em;
  text-align: left;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_green_inner .c-txt_desc {
    font-size: 13px;
  }
}
#join_us .l-business .p-block_green_inner .c-img_example {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  margin-top: 1em;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_green_inner .c-img_example {
    justify-content: center;
  }
}
#join_us .l-business .p-block_green_inner .c-img_example img {
  width: 150px;
  height: auto;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_green_inner .c-img_example img {
    width: 80px;
  }
}
#join_us .l-business .p-block_plan {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border: 3px solid #646464;
  text-align: left;
  padding-top: 2em;
  padding-bottom: 2em;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_plan {
    border: 2px solid #646464;
    padding: 1.5em;
  }
}
#join_us .l-business .p-block_plan_inner {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}
#join_us .l-business .p-list_plan {
  list-style: none;
  padding-left: 0;
}
#join_us .l-business .c-list_plan {
  font-size: 1.3125rem;
  text-align: left;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-list_plan {
    font-size: 13px;
  }
}
#join_us .l-business .c-txt_contact {
  font-size: 18px;
  margin-top: 5vw;
  margin-bottom: 5vw;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-txt_contact {
    font-size: 12px;
  }
}
#join_us .l-business #personarity.p-block_waku {
  position: relative;
}
#join_us .l-business #personarity.p-block_waku::after {
  position: absolute;
  bottom: -20%;
  left: -20%;
  content: "";
  display: block;
  width: 45.7vw;
  height: 50.23vw;
  background-image: url(../images/joinback_04.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #join_us .l-business #personarity.p-block_waku::after {
    width: 47vw;
    height: 61.5vw;
  }
}
#join_us .l-business .c-title_voice {
  font-size: 1.75rem;
  text-align: left;
  color: #ec6667;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-title_voice {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-title_voice br {
    display: none;
  }
}
#join_us .l-business .c-logo_voice {
  max-width: 480px;
  width: 90%;
  margin: 5vw auto;
}
#join_us .l-business .p-block_voice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4%;
  margin-bottom: 5vw;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-block_voice {
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-bottom: 10vw;
  }
}
#join_us .l-business .c-txt_voice {
  font-size: 1.0625rem;
  text-align: left;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .c-txt_voice {
    width: 90%;
    font-size: 13px;
    line-height: 1.5em;
  }
}
#join_us .l-business .c-img_voice {
  width: 270px;
  height: auto;
}
#join_us .l-business .p-block_waku_rainbow {
  padding: 10vw 0;
  text-align: center;
}
#join_us .l-business .p-list_partner {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 5vw;
  margin-top: 6vw;
}
#join_us .l-business .p-list_partner .c-item_partner {
  border: 0.5em solid;
  -o-border-image: linear-gradient(90deg, rgb(251, 231, 9) 0%, rgb(242, 186, 195) 50%, rgb(176, 215, 158) 100%) 1;
     border-image: linear-gradient(90deg, rgb(251, 231, 9) 0%, rgb(242, 186, 195) 50%, rgb(176, 215, 158) 100%) 1;
  margin-inline: auto;
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 3%;
  padding: 3%;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-list_partner .c-item_partner {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 5%;
  }
}
#join_us .l-business .p-list_partner .c-logo_partner {
  width: 270px;
  height: auto;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-list_partner .c-logo_partner {
    width: 150px;
  }
}
#join_us .l-business .p-list_partner .c-voice_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1em;
  width: 100%;
}
#join_us .l-business .p-list_partner .c-voice {
  font-size: 1rem;
  line-height: 2;
  text-align: left;
  padding: 3% 6%;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-list_partner .c-voice {
    font-size: 10px;
  }
}
#join_us .l-business .p-list_partner .c-voice::before, #join_us .l-business .p-list_partner .c-voice::after {
  content: "";
  width: 3.5em;
  height: 3.5em;
  position: absolute;
}
#join_us .l-business .p-list_partner .c-voice::before {
  border-left: solid 1px #646464;
  border-top: solid 1px #646464;
  top: 0;
  left: 0;
}
#join_us .l-business .p-list_partner .c-voice::after {
  border-right: solid 1px #646464;
  border-bottom: solid 1px #646464;
  bottom: 0;
  right: 0;
}
#join_us .l-business .p-list_partner .c-name {
  text-align: left;
}
@media screen and (max-width: 600px) {
  #join_us .l-business .p-list_partner .c-name {
    font-size: 11px;
  }
}
#join_us .l-jichitai_inner,
#join_us .l-media_inner {
  padding-top: 10vw;
  margin-bottom: 15vw;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (max-width: 600px) {
  #join_us .l-jichitai_inner,
  #join_us .l-media_inner {
    padding-top: 15vw;
    padding-left: 3%;
    padding-right: 3%;
  }
}
#join_us .l-jichitai_inner .p-block_content,
#join_us .l-media_inner .p-block_content {
  text-align: left;
}
@media screen and (max-width: 600px) {
  #join_us .l-jichitai_inner .p-block_content,
  #join_us .l-media_inner .p-block_content {
    text-align: center;
  }
}
#join_us .l-jichitai_inner .c-txt_jichitai,
#join_us .l-media_inner .c-txt_jichitai {
  font-size: 1.3125rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 5vw;
}
@media screen and (max-width: 600px) {
  #join_us .l-jichitai_inner .c-txt_jichitai,
  #join_us .l-media_inner .c-txt_jichitai {
    font-size: 14px;
    margin-bottom: 15vw;
  }
}
#join_us .l-jichitai_inner {
  padding-bottom: 30vw;
  position: relative;
}
@media screen and (max-width: 600px) {
  #join_us .l-jichitai_inner {
    padding-bottom: 45vw;
  }
}
#join_us .l-jichitai_inner::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 58.914vw;
  height: 51.94125vw;
  background-image: url(../images/img-jichitai.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: -5;
}
@media screen and (max-width: 600px) {
  #join_us .l-jichitai_inner::before {
    background-image: url(../images/img-jichitai_sp.png);
    width: 86vw;
    height: 23.68vw;
    bottom: 5%;
    background-position: bottom center;
  }
}
#join_us .l-kojin {
  position: relative;
}
#join_us .l-kojin::before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 46.875vw;
  height: 45.3125vw;
  background-image: url(../images/joinback_05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: -10;
}
@media screen and (max-width: 600px) {
  #join_us .l-kojin::before {
    display: none;
  }
}
#join_us .l-kojin::after {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 0);
  content: "";
  display: block;
  width: 40vw;
  height: 44.21875vw;
  background-image: url(../images/joinback_06.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  z-index: -10;
}
#join_us .l-kojin_inner .p-block_rainbow {
  position: relative;
  background-color: white;
  border: 0.5em solid;
  -o-border-image: linear-gradient(90deg, rgb(251, 231, 9) 0%, rgb(242, 186, 195) 50%, rgb(176, 215, 158) 100%) 1;
     border-image: linear-gradient(90deg, rgb(251, 231, 9) 0%, rgb(242, 186, 195) 50%, rgb(176, 215, 158) 100%) 1;
  border-radius: 1rem;
  margin-inline: auto;
  max-width: 800px;
  width: 100%;
  padding-top: 5vw;
  padding-bottom: 5vw;
  margin: 0 auto;
  margin-bottom: 5vw;
}
@media screen and (max-width: 600px) {
  #join_us .l-kojin_inner .p-block_rainbow {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
#join_us .l-kojin_inner .c-link_personarity {
  display: block;
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #join_us .l-kojin_inner .c-link_personarity {
    font-size: 14px;
  }
}
#join_us .l-kojin_inner .c-arrow {
  width: 100%;
  height: 2em;
  margin-top: 1em;
}
@media screen and (max-width: 600px) {
  #join_us .l-kojin_inner .c-arrow {
    height: 1.5em;
    margin-top: 0.5em;
  }
}
#join_us .l-kojin_inner .p-block_flow {
  max-width: 660px;
  width: 90%;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-top: 5vw;
}
@media screen and (max-width: 600px) {
  #join_us .l-kojin_inner .p-block_flow {
    font-size: 12px;
  }
}
#join_us .l-kojin_inner .p-block_flow .c-item_flow {
  margin-bottom: 3em;
  position: relative;
}
#join_us .l-kojin_inner .p-block_flow .c-item_flow::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1em;
  height: 1em;
  border-bottom: 0.1px solid #646464;
  border-right: 0.1px solid #646464;
  transform: rotate(45deg);
}
#join_us .l-kojin_inner .p-block_flow .c-item_flow:last-child::before {
  display: none;
}
#join_us .l-kojin_inner .p-block_flow table,
#join_us .l-kojin_inner .p-block_flow td,
#join_us .l-kojin_inner .p-block_flow th {
  border: 1px solid #646464;
  border-collapse: collapse;
  padding: 1em;
}
#join_us .l-kojin_inner .p-block_flow td {
  width: 100%;
  text-align: left;
}
#join_us .c-title_partner {
  display: inline;
  font-size: 30px;
  border-bottom: 0.2em solid #fddbe9;
  padding: 0 0.5em;
}
@media screen and (max-width: 600px) {
  #join_us .c-title_partner {
    font-size: 14px;
  }
}
#join_us .p-block_media-result {
  padding: 10vw 0 20vw;
  position: relative;
}
#join_us .p-block_media-result::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 60.3025vw;
  height: 30.46875vw;
  background-image: url(../images/img-kojin.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  z-index: -10;
}
#join_us .p-post_wrap {
  padding: 5vw 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
#join_us .p-post_wrap .p-item_media-result {
  text-align: left;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  #join_us .p-post_wrap .p-item_media-result {
    font-size: 11px;
  }
}
#join_us .p-link_wrap {
  text-align: right;
  margin-top: 5vw;
  font-size: 15px;
}
#join_us .p-link_wrap:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  #join_us .p-link_wrap {
    font-size: 10px;
  }
}
#join_us .p-link_wrap a {
  position: relative;
  border-bottom: 1px solid #646464;
  padding: 0.4em 2em;
}
#join_us .p-link_wrap a::after {
  position: absolute;
  bottom: -0.2em;
  right: 0.5em;
  display: block;
  content: "";
  background: #646464;
  width: 1px;
  height: 2em;
  transform: rotate(-35deg);
}

.l-contact_inner {
  margin-bottom: 10vw;
  text-align: center;
}
.l-contact .submit_btn {
  margin: 0 auto;
}
.l-contact .btn_03 {
  position: relative;
  font-size: 27px;
  padding: 0.3em 3em;
  cursor: pointer;
  background-color: white;
  transition: ease 0.4s;
  margin-top: 5vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 600px) {
  .l-contact .btn_03 {
    font-size: 19px;
  }
}
.l-contact .btn_03:hover {
  background-color: #64b54b;
  color: white;
  border: 2px solid #64b54b;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .Form {
    margin-top: 40px;
  }
}

.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 14px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 600px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Input {
  border: 1px solid #646464;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
  color: #646464;
}
@media screen and (max-width: 600px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 14px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #646464;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */