@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  color: #333;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

img {
  vertical-align: bottom;
}

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

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp_lg {
  display: block;
}
@media screen and (min-width: 1100px) {
  .sp_lg {
    display: none;
  }
}

.pc_lg {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc_lg {
    display: block;
  }
}

.wrap_1620 {
  max-width: 1620px;
  margin: auto;
}

.wrap_1100 {
  max-width: 1100px;
  margin: auto;
}

.wrap_1480 {
  max-width: 1480px;
  margin: auto;
}

.wrap_1390 {
  max-width: 1390px;
  margin: auto;
}

.btn_next {
  margin: auto;
  position: relative;
  display: block;
  width: 180px;
  line-height: 50px;
  font-size: clamp(12px, 3.2vw, 16px);
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .btn_next {
    width: 220px;
    line-height: min(5.2vw, 100px);
    font-size: clamp(16px, 1.48vw, 24px);
    border-radius: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .btn_next {
    width: 360px;
    width: 45%;
    max-width: 360px;
    min-width: 180px;
  }
}
.btn_next:hover span::after {
  right: 8px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .btn_next:hover span::after {
    right: min(0.7vw, 15px);
  }
}
.btn_next span::after {
  position: absolute;
  display: block;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .btn_next span::after {
    width: 35px;
    height: 35px;
  }
}
@media screen and (min-width: 1100px) {
  .btn_next span::after {
    width: 50px;
    height: 50px;
  }
}
.btn_next.white {
  border: #EA5B02 solid 3px;
  background-color: #fff;
  color: #EA5B02;
}
.btn_next.white span::after {
  background: url("../img/icon_arrow_right_orange.svg");
  background-size: contain;
}
.btn_next.orange {
  border: #EA5B02 solid 3px;
  background-color: #EA5B02;
  color: #fff;
}
.btn_next.orange span::after {
  background: url("../img/icon_arrow_right_white.svg");
  background-size: contain;
}

.link_opacity:hover, .link_opacity:active {
  transition: all 0.5s ease;
  opacity: 0.6;
}

.feed_wrap {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .feed_wrap {
    margin-bottom: 120px;
  }
}

.ttl_feed {
  color: #EA5B02;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  font-size: clamp(18px, 4.67vw, 35px);
}
@media screen and (min-width: 768px) {
  .ttl_feed {
    font-size: clamp(18px, 2.16vw, 35px);
  }
}

.feed_instagram {
  margin: 25px auto 20px;
  padding: 30px 0;
  background: url("../img/bg_dotted_gray.svg");
}
@media screen and (min-width: 768px) {
  .feed_instagram {
    margin: 50px auto 40px;
    padding: 50px 0;
  }
}
.feed_instagram h3 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .feed_instagram h3 {
    margin-bottom: 40px;
  }
}

.slick_instagram {
  display: flex;
  justify-content: center;
}
.slick_instagram a {
  display: block;
  width: 50.67vw;
  height: 50.67vw;
}
@media screen and (min-width: 768px) {
  .slick_instagram a {
    width: 13.8vw;
    height: 13.8vw;
  }
}
.slick_instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed_youtube {
  width: 100%;
}
.feed_youtube h3 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .feed_youtube h3 {
    margin-bottom: 40px;
  }
}

.slick_youtube {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .slick_youtube {
    width: 98%;
    margin: auto;
  }
}
.slick_youtube .item {
  width: 98%;
  margin: auto;
}
.slick_youtube iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
}

.feed_youtube_slider_prev,
.feed_youtube_slider_next {
  z-index: 100;
  position: absolute;
  top: calc(50% - 3vw);
  cursor: pointer;
  outline: none;
  height: min(6vw, 40px);
  width: min(6vw, 40px);
  background: url(../img/icon_arrow_right_orange.svg) no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .feed_youtube_slider_prev,
  .feed_youtube_slider_next {
    display: none;
  }
}

.feed_youtube_slider_prev {
  left: 9vw;
  transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .feed_youtube_slider_prev {
    display: none;
  }
}

.feed_youtube_slider_next {
  right: 9vw;
}
@media screen and (min-width: 768px) {
  .feed_youtube_slider_next {
    display: none;
  }
}

.header_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0;
  background-color: #fff;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header_wrap {
    height: clamp(60px, 8.8vw, 170px);
    padding: 0;
  }
}
.header_wrap h1 {
  padding: 0 0 0 20px;
}
@media screen and (min-width: 768px) {
  .header_wrap h1 {
    padding: 0 0 0 min(2.6vw, 50px);
  }
}
.header_wrap h1 img {
  width: 81px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header_wrap h1 img {
    width: clamp(103px, 10.7vw, 206px);
    height: auto;
  }
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 60px;
  left: 0;
  width: 100%;
  width: 0;
  height: 0;
  height: auto;
  display: none;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #g-nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 60px;
  left: 0;
  display: block;
  background: #fff;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  #g-nav.panelactive {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    background: #fff;
    overflow-y: hidden;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  #g-nav.panelactive {
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 100px;
  }
}

body.scrollprevent {
  height: 600px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.scrollprevent {
    height: auto;
    overflow: auto;
  }
}
body.scrollprevent main, body.scrollprevent footer {
  position: sticky;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  body.scrollprevent main, body.scrollprevent footer {
    position: relative;
    z-index: 1;
    -ms-filter: none;
  }
}

#g-nav #g-nav-list {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #g-nav #g-nav-list {
    opacity: 1;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
}

#g-nav.panelactive #g-nav-list {
  opacity: 1;
}

#g-nav ul {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  #g-nav ul {
    opacity: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 min(5.2vw, 100px) 0 0;
  }
}
@media screen and (min-width: 768px) {
  #g-nav ul ul.sp {
    display: none;
  }
}

#g-nav.panelactive ul {
  z-index: 999;
  opacity: 1;
  text-align: center;
  border-top: 1px solid #EA5B02;
}
@media screen and (min-width: 768px) {
  #g-nav.panelactive ul {
    top: auto;
    left: auto;
    opacity: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 min(5.2vw, 100px) 0 0;
    transform: none;
    border-top: none;
  }
}

#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 20px 0;
  text-align: center;
  color: #000;
  text-decoration: none;
  height: 100%;
  text-wrap: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-bottom: 1px solid #EA5B02;
}
@media screen and (min-width: 768px) {
  #g-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #fff;
    padding: 4px clamp(10px, 1vw, 20px) 0;
    margin-bottom: 0;
    font-size: clamp(15px, 1.4vw, 20px);
  }
}
#g-nav li a:hover, #g-nav li a:active {
  transition: all 0.6s;
  background-color: #EA5B02;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #g-nav li a:hover, #g-nav li a:active {
    background-color: #fff;
    color: #EA5B02;
  }
}
#g-nav li ul.gnav_list2 {
  border-top: none;
  padding: 15px 0;
}
#g-nav li ul.gnav_list2 a {
  position: relative;
  border-bottom: none;
  padding: 5px 0 0;
  font-weight: normal;
  line-height: 1.5;
}
#g-nav li ul.gnav_list2 a:hover, #g-nav li ul.gnav_list2 a:active {
  transition: all 0.6s;
  background-color: #fff;
  color: #EA5B02;
}
#g-nav li ul.gnav_list2 a::after {
  position: relative;
  content: "»";
  font-size: 21px;
  left: 5px;
  top: 0;
}

.openbtn {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 20px;
  cursor: pointer;
  width: 40px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .openbtn {
    display: none;
  }
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  right: 0;
  height: 2px;
  background-color: #000;
  width: 40px;
}

.openbtn span:nth-of-type(1) {
  top: 18px;
}

.openbtn span:nth-of-type(2) {
  top: 28px;
}

.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  right: 0;
  transform: translateY(11px) rotate(-27deg);
  width: 100%;
}

.openbtn.active span:nth-of-type(2) {
  display: none;
}

.openbtn.active span:nth-of-type(3) {
  top: 41px;
  right: 0;
  transform: translateY(-11px) rotate(27deg);
  width: 100%;
}

.gnav_btn_support {
  padding: 15px 0;
}
.gnav_btn_support a {
  background-color: #EA5B02;
  color: #fff;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 13px;
}
.gnav_btn_support a:hover, .gnav_btn_support a:active {
  opacity: 0.6;
  transition: all 0.5s ease;
}

.gnav_inquiry_sp {
  margin: 20px auto 15px;
}
.gnav_inquiry_sp img {
  width: 108px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .gnav_inquiry_sp {
    display: none;
  }
}

.gnav_inquiry_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .gnav_inquiry_pc {
    display: block;
  }
  .gnav_inquiry_pc a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    width: clamp(100px, 15.6vw, 300px);
    height: clamp(60px, 8.8vw, 170px);
  }
  .gnav_inquiry_pc a img {
    width: min(6.2vw, 120px);
    height: auto;
  }
}

.gnav_privacy {
  font-size: 13px;
}
.gnav_privacy:hover, .gnav_privacy:active {
  transition: all 0.6s;
  color: #EA5B02;
}
@media screen and (min-width: 768px) {
  .gnav_privacy {
    display: none;
  }
}

.mv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .mv {
    aspect-ratio: 192/85;
  }
}

.mv_item1, .mv_item2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .mv_item1, .mv_item2 {
    aspect-ratio: 192/85;
  }
}

.mv_item1 {
  background-image: url(../img/mv_sp_1.jpg);
  animation: mv_animation1 10s 0s infinite;
}
@media screen and (min-width: 768px) {
  .mv_item1 {
    background-image: url(../img/mv_1.jpg);
  }
}

.mv_item2 {
  background-image: url(../img/mv_sp_2.jpg);
  animation: mv_animation2 10s 0s infinite;
  animation-delay: 5s;
}
@media screen and (min-width: 768px) {
  .mv_item2 {
    background-image: url(../img/mv_2.jpg);
  }
}

@keyframes mv_animation1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes mv_animation2 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.top_ttl {
  color: #EA5B02;
  font-size: 22px;
  font-weight: 900;
  position: relative;
  padding-left: 10%;
}
@media screen and (min-width: 768px) {
  .top_ttl {
    padding-left: 0;
    font-size: clamp(22px, 2.1vw, 42px);
  }
}
.top_ttl::after {
  position: relative;
  display: inline-block;
  content: "";
  background: url(../img/icon_musicnote.svg) 0 0 no-repeat;
  background-size: contain;
  width: 75px;
  height: 36px;
  top: 0;
  left: 8px;
}
@media screen and (min-width: 768px) {
  .top_ttl::after {
    width: min(6.4vw, 124px);
    height: min(3.1vw, 60px);
    left: min(1.56vw, 30px);
  }
}

.top_btn {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .top_btn {
    padding-top: min(3.64vw, 70px);
  }
}
@media screen and (min-width: 768px) {
  .top_btn.left a.btn_next {
    margin: 0;
  }
}

.top_about {
  padding: 50px 0 70px;
  text-align: center;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top_about {
    display: flex;
    flex-direction: row-reverse;
  }
}

.top_about_text {
  padding: 0 10px 30px;
}
@media screen and (min-width: 768px) {
  .top_about_text {
    width: clamp(428px, 64.5vw, 1240px);
    text-align: left;
    padding-left: min(5.2vw, 100px);
  }
}
.top_about_text p.txt {
  padding-top: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .top_about_text p.txt {
    padding-top: min(2.08vw, 40px);
    font-size: clamp(13px, 1.1vw, 22px);
  }
}
.top_about_text p.txt_bold {
  padding-top: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .top_about_text p.txt_bold {
    padding-top: min(1.52vw, 30px);
    font-size: clamp(15px, 1.5vw, 33px);
  }
}

.top_about_photo {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_about_photo {
    width: clamp(340px, 35.4vw, 680px);
    margin-top: 10px;
  }
}
.top_about_photo img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 0 20px 20px 0;
  right: 20px;
}

.top_topics {
  width: 100%;
  margin: auto;
  padding: 30px 0;
  background: url(../img/bg_dotted_gray.svg) 0 0 repeat;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_topics {
    padding: 50px 0;
  }
}

.top_topics_slider {
  height: auto;
  width: 100%;
  margin: 25px auto 0;
  display: block;
  color: #000;
}
.top_topics_slider a:hover, .top_topics_slider a:active {
  transition: all 0.5s ease;
  opacity: 0.6;
}
.top_topics_slider img {
  width: 100%;
  padding: 0 2vw;
  margin: 0 auto;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top_topics_slider img {
    padding: 0 10px;
  }
}
.top_topics_slider p {
  text-align: left;
  padding: 10px 2vw 0;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .top_topics_slider p {
    padding: 10px 10px 0;
    font-size: clamp(16px, 1.1vw, 22px);
  }
}

.top_topics_slider_prev,
.top_topics_slider_next {
  z-index: 100;
  position: absolute;
  top: calc(40% - 4vw);
  cursor: pointer;
  outline: none;
  height: min(6vw, 40px);
  width: min(6vw, 40px);
  background: url(../img/icon_arrow_right_orange.svg) no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .top_topics_slider_prev,
  .top_topics_slider_next {
    height: clamp(20px, 3vw, 40px);
    width: clamp(20px, 3vw, 40px);
    top: 30%;
  }
}

.top_topics_slider_prev {
  left: min(6vw, 40px);
  transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .top_topics_slider_prev {
    left: clamp(45px, 5.3vw, 120px);
  }
}

.top_topics_slider_next {
  right: min(6vw, 40px);
}
@media screen and (min-width: 768px) {
  .top_topics_slider_next {
    right: clamp(45px, 5.3vw, 120px);
  }
}

.top_contents_wrap {
  padding: 50px 0 70px;
  width: 100%;
  text-align: center;
}

.top_contents {
  text-align: center;
  width: 100%;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .top_contents {
    max-width: min(84vw, 1620px);
    margin: 0 auto;
    display: flex;
  }
}

.top_contents_box {
  padding: 0 10px 30px;
}
@media screen and (min-width: 768px) {
  .top_contents_box {
    width: clamp(428px, 64.5vw, 1240px);
    text-align: left;
    padding-left: min(5.2vw, 100px);
  }
}
.top_contents_box ul {
  padding: 30px 10px;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .top_contents_box ul {
    padding: 0 10px;
  }
}
.top_contents_box ul li {
  border-bottom: 2px solid #bdbdbd;
}
.top_contents_box ul li:first-of-type {
  border-top: 2px solid #bdbdbd;
}
.top_contents_box ul a {
  width: 100%;
  padding: 10px;
  position: relative;
  display: block;
  text-align: left;
}
.top_contents_box ul a::after {
  position: absolute;
  content: "";
  background: url(../img/icon_arrow_right_orange.svg) no-repeat 0 0;
  background-size: contain;
  width: 25px;
  height: 25px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .top_contents_box ul a::after {
    width: min(2.6vw, 50px);
    height: min(2.6vw, 50px);
  }
}
.top_contents_box ul a:hover, .top_contents_box ul a:active {
  color: #EA5B02;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .top_contents_box ul a {
    padding: clamp(10px, 2vw, 40px) 10px;
    font-size: clamp(18px, 1.5vw, 30px);
  }
}

.top_contents_photo {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_contents_photo {
    width: clamp(340px, 35.4vw, 680px);
  }
}
.top_contents_photo.sp {
  padding-top: 30px;
}
.top_contents_photo img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 0 20px 20px 0;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .top_contents_photo img {
    border-radius: 20px;
  }
}

.lower {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .lower {
    margin-bottom: 130px;
  }
}
.lower.fixed {
  padding: 0 20px;
  margin: 0 auto 60px;
}
.lower.line {
  border-top: 1px solid #D6D6D6;
}

.lower_bg_dot {
  background: url("../img/bg_dotted_gray.svg") repeat;
}
@media screen and (min-width: 768px) {
  .lower_bg_dot {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, #fff 35%), url("../img/bg_dotted_gray.svg") repeat;
  }
}
@media screen and (min-width: 1100px) {
  .lower_bg_dot {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 64%, #fff 36%), url("../img/bg_dotted_gray.svg") repeat;
  }
}
@media screen and (min-width: 768px) {
  .lower_bg_dot.contents {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, #fff 30%), url("../img/bg_dotted_gray.svg") repeat;
  }
}
@media screen and (min-width: 1100px) {
  .lower_bg_dot.contents {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 68%, #fff 32%), url("../img/bg_dotted_gray.svg") repeat;
  }
}
@media screen and (min-width: 768px) {
  .lower_bg_dot.whole {
    background: url("../img/bg_dotted_gray.svg") repeat;
  }
}

.lower_bg_dot .breadcrumbs {
  margin-left: 20px;
}
.breadcrumbs {
  line-height: 1;
  padding: 10px 20px 0;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding: 50px 0 0;
    margin-bottom: 45px;
  }
}
.breadcrumbs ul li {
  margin-right: 8px;
  display: inline-block;
  font-size: 15px;
  font-size: clamp(12px, 0.78vw, 65px);
  font-weight: 600;
  color: #EA5B02;
  vertical-align: middle;
}
.breadcrumbs ul li a {
  position: relative;
  color: #000;
}
.breadcrumbs ul li a::after {
  margin-left: 10px;
  display: inline-block;
  content: "";
  width: 9px;
  height: 8px;
  background: url("../img/icon_arrow_right_black_s.svg");
  background-size: cover;
}

.wrap_1620 .breadcrumbs {
  padding: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .wrap_1620 .breadcrumbs {
    padding: 50px 0 0;
  }
}

.lower_ttl_h1 {
  font-size: clamp(28px, 7.33vw, 55px);
  font-weight: 900;
  color: #EA5B02;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lower_ttl_h1 {
    font-size: clamp(28px, 3.39vw, 55px);
    text-align: left;
  }
}
.lower_ttl_h1.middle {
  font-size: 23px;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .lower_ttl_h1.middle {
    font-size: 40px;
    margin-bottom: 65px;
  }
}
@media screen and (min-width: 1100px) {
  .lower_ttl_h1.middle {
    font-size: 50px;
  }
}
.lower_ttl_h1.middle span {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .lower_ttl_h1.middle span {
    font-size: 23px;
  }
}
@media screen and (min-width: 1100px) {
  .lower_ttl_h1.middle span {
    font-size: 30px;
  }
}

.lower_ttl_h2 {
  position: relative;
  font-size: clamp(18px, 4.67vw, 35px);
  font-weight: 700;
  color: #EA5B02;
}
@media screen and (min-width: 768px) {
  .lower_ttl_h2 {
    font-size: clamp(18px, 1.82vw, 35px);
  }
}
.lower_ttl_h2::before {
  margin-right: 20px;
  display: inline-block;
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/icon_orange.svg");
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .lower_ttl_h2::before {
    margin-right: 30px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .lower_ttl_h2.line {
    display: flex;
    align-items: center;
  }
  .lower_ttl_h2.line::after {
    margin-left: 20px;
    border-top: 2px solid #EA5B02;
    content: "";
    flex-grow: 1;
  }
}

.lower_ttl_h3 {
  font-size: clamp(15px, 4vw, 30px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  background: #EA5B02;
}
@media screen and (min-width: 768px) {
  .lower_ttl_h3 {
    font-size: clamp(15px, 1.85vw, 30px);
  }
}

@media screen and (min-width: 768px) {
  .about_top_2col {
    display: flex;
    margin-bottom: 80px;
  }
  .about_top_2col div {
    width: 50%;
  }
}
.about_top_2col .left {
  position: relative;
}
.about_top_2col .left h1 {
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .about_top_2col .left h1 {
    margin-left: 20px;
    margin-bottom: 9%;
  }
}
.about_top_2col .left img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about_top_2col .left img {
    position: relative;
    left: -5%;
    width: 105%;
    border-radius: 20px;
  }
}
.about_top_2col .right {
  margin: 35px 20px 0;
  max-width: 720px;
  padding-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .about_top_2col .right {
    margin: 0 20px 0 0;
    padding-left: 8.18%;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1100px) {
  .about_top_2col .right {
    padding-left: 90px;
  }
}
.about_top_2col .right h2 {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .about_top_2col .right h2 {
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 1100px) {
  .about_top_2col .right h2 {
    margin-bottom: 12%;
  }
}
.about_top_2col .right .aboutus_catch {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .about_top_2col .right .aboutus_catch {
    margin-bottom: 10%;
  }
}
.about_top_2col .right .aboutus_catch img {
  width: 100%;
}
.about_top_2col .right p {
  font-size: clamp(12px, 2.93vw, 22px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 2.4;
}
@media screen and (min-width: 768px) {
  .about_top_2col .right p {
    font-size: clamp(12px, 1.15vw, 22px);
  }
}

.about_prof {
  margin: 60px auto 0;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .about_prof {
    margin: 0 auto;
    padding: 0;
    display: flex;
  }
}
.about_prof h2 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .about_prof h2 {
    margin-top: 15px;
    margin-left: 20px;
    width: 23.15%;
  }
}
@media screen and (min-width: 768px) {
  .about_prof .inner {
    width: 53.4%;
    width: 55%;
  }
}
.about_prof table {
  margin-bottom: 60px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about_prof table {
    margin-bottom: 80px;
  }
}
.about_prof th {
  white-space: nowrap;
}
.about_prof th, .about_prof td {
  padding: 25px 10px;
  border-bottom: 2px solid #b9b9b9;
}

@media screen and (min-width: 1100px) {
  .about_btn_wrap {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .about_btn_wrap a {
    width: 65%;
    min-width: 360px;
  }
}
@media screen and (min-width: 1100px) {
  .about_btn_wrap a {
    margin: 0;
    width: 45%;
    max-width: 360px;
    min-width: 180px;
  }
}
.about_btn_wrap a:first-of-type {
  margin-bottom: 20px;
}
@media screen and (min-width: 1100px) {
  .about_btn_wrap a:first-of-type {
    margin-bottom: 0;
  }
}

.lower.contents h1 {
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .lower.contents h1 {
    margin-left: 20px;
    margin-bottom: 4.58%;
  }
}

.lower.contents h3 {
  padding: 3px 15px;
}

@media screen and (min-width: 768px) {
  .contents_top_2col {
    margin-bottom: 80px;
    display: flex;
  }
  .contents_top_2col div {
    width: 50%;
  }
}
.contents_top_2col .left {
  position: relative;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .left {
    margin-bottom: 0;
  }
}
.contents_top_2col .left img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .left img {
    position: relative;
    left: -5%;
    width: 105%;
    border-radius: 20px;
  }
}
.contents_top_2col .right {
  margin: 0 20px 0;
  max-width: 720px;
  padding-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .right {
    margin: 0 20px 0 0;
    padding-left: 8.18%;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1100px) {
  .contents_top_2col .right {
    padding-left: 90px;
  }
}
.contents_top_2col .right h2 {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .right h2 {
    margin-bottom: 6%;
  }
}
@media screen and (min-width: 1100px) {
  .contents_top_2col .right h2 {
    margin-bottom: 13%;
  }
}
.contents_top_2col .right h3 {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .right h3 {
    margin-bottom: 4.5%;
  }
}
@media screen and (min-width: 1100px) {
  .contents_top_2col .right h3 {
    margin-bottom: 5.5%;
  }
}
.contents_top_2col .right p:nth-of-type(1) {
  margin-bottom: 25px;
  font-size: clamp(12px, 3.2vw, 24px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .right p:nth-of-type(1) {
    margin-bottom: 12%;
    font-size: clamp(12px, 1.15vw, 22px);
  }
}
@media screen and (min-width: 1100px) {
  .contents_top_2col .right p:nth-of-type(1) {
    margin-bottom: 8%;
  }
}
.contents_top_2col .right p:nth-of-type(2) {
  font-size: clamp(12px, 3.2vw, 24px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .right p:nth-of-type(2) {
    margin-bottom: 4.94%;
    font-size: clamp(12px, 1.1vw, 20px);
  }
}
.contents_top_2col .right ul {
  margin-bottom: 6.67%;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .right ul {
    margin-bottom: 2.16%;
  }
}
@media screen and (min-width: 1100px) {
  .contents_top_2col .right ul {
    margin-bottom: 4%;
    padding-top: 4%;
  }
}
.contents_top_2col .right li {
  position: relative;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .contents_top_2col .right li {
    font-size: clamp(15px, 1.85vw, 30px);
  }
}
.contents_top_2col .right li::before {
  content: "●";
  color: #EA5B02;
  margin-right: 0.5em;
}

.contents_fee {
  position: relative;
  margin: 30px auto;
  padding: 0 20px;
}
.contents_fee h4 {
  margin-bottom: 20px;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 900;
  color: #EA5B02;
}
@media screen and (min-width: 768px) {
  .contents_fee h4 {
    margin-bottom: 40px;
    font-size: clamp(15px, 1.56vw, 30px);
  }
}
.contents_fee h4 span {
  display: block;
  font-size: 13px;
  font-size: clamp(13px, 3.47vw, 30px);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contents_fee h4 span {
    display: inline;
    font-size: clamp(13px, 1.35vw, 30px);
  }
}
.contents_fee .table_wrap {
  overflow-x: auto;
  display: block;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .contents_fee .table_wrap {
    margin-bottom: 30px;
  }
}
.contents_fee .table_wrap table th,
.contents_fee .table_wrap table td {
  white-space: nowrap;
}
.contents_fee table {
  width: 100%;
}
.contents_fee th, .contents_fee td {
  padding: 15px 20px;
  border-top: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
}
@media screen and (min-width: 768px) {
  .contents_fee th, .contents_fee td {
    padding: 30px 35px;
  }
}
.contents_fee th {
  border-right: 2px solid #bdbdbd;
}
.contents_fee th:last-child {
  border-right: none;
}
.contents_fee td {
  font-size: 13px;
  text-align: center;
  border-right: 2px solid #bdbdbd;
}
@media screen and (min-width: 768px) {
  .contents_fee td {
    position: relative;
    font-size: 25px;
    font-size: clamp(16px, 1.3vw, 25px);
  }
}
.contents_fee td:last-child {
  border-right: none;
}
.contents_fee td:nth-child(odd):not(.dot_bg_odd) {
  background: rgba(255, 255, 0, 0.2);
}
.contents_fee th.member {
  background: #EA5B02;
  color: #fff;
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents_fee th.member {
    font-size: clamp(16px, 1.3vw, 25px);
  }
}
.contents_fee th.class {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .contents_fee th.class {
    font-size: clamp(16px, 1.09vw, 21px);
  }
}
.contents_fee .dot_bg {
  background: url("../img/bg_dotted_orange.svg") repeat;
}
.contents_fee .dot_bg_odd {
  position: relative;
  background: url("../img/bg_dotted_orange.svg") repeat;
}
.contents_fee .dot_bg_odd::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 0, 0.2);
}
.contents_fee .dot_bg_odd span {
  position: relative;
}

.img_lesson {
  position: relative;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .img_lesson {
    margin-bottom: 140px;
  }
}
.img_lesson .inner {
  max-width: 500px;
  margin: 0 auto;
  width: clamp(200px, 26vw, 500px);
  position: absolute;
  right: 20px;
  top: -175px;
}
@media screen and (min-width: 768px) {
  .img_lesson .inner {
    width: clamp(250px, 26vw, 500px);
    position: absolute;
    right: 20px;
    top: -110px;
  }
}
@media screen and (min-width: 1400px) {
  .img_lesson .inner {
    position: absolute;
    right: 50px;
  }
}
.img_lesson .inner img {
  width: 100%;
}

.contents_promotion {
  margin-bottom: 35px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .contents_promotion {
    margin-bottom: 110px;
  }
}
.contents_promotion h2 {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .contents_promotion h2 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner {
    display: flex;
    flex-direction: row-reverse;
  }
}
.contents_promotion .inner .img_wrap {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .img_wrap {
    margin-bottom: 0;
    width: 50%;
  }
}
.contents_promotion .inner .img_wrap img {
  position: sticky;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .left {
    width: 50%;
    margin-right: 7.41vw;
  }
}
.contents_promotion .inner .left h3 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .left h3 {
    margin-bottom: 35px;
  }
}
.contents_promotion .inner .left .promotion_txt1 {
  margin-bottom: 20px;
  font-size: clamp(16px, 3.2vw, 24px);
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .left .promotion_txt1 {
    margin-bottom: 40px;
    font-size: clamp(16px, 1.36vw, 22px);
  }
}
.contents_promotion .inner .left .promotion_txt2 {
  display: block;
  margin-bottom: 35px;
  font-size: clamp(13px, 1.23vw, 22px);
  color: #EA5B02;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .left .promotion_txt2 {
    margin-bottom: 60px;
    font-size: clamp(16px, 1.23vw, 20px);
  }
}
.contents_promotion .inner .left .item {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .left .item {
    margin-bottom: 50px;
  }
}
.contents_promotion .inner .left .item p {
  margin-bottom: 20px;
  font-size: clamp(13px, 1.23vw, 22px);
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .left .item p {
    margin-bottom: 40px;
    font-size: clamp(16px, 1.23vw, 20px);
  }
}
.contents_promotion .inner .left h4 {
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .contents_promotion .inner .left h4 {
    font-size: clamp(20px, 1.85vw, 30px);
  }
}
.contents_promotion .inner .left h4::before {
  content: "●";
  color: #EA5B02;
  margin-right: 0.5em;
}

.btn_contents a {
  margin-bottom: 20px;
  display: block;
  padding: 5px;
  font-size: 13px;
  border: 1px solid #EA5B02;
  border-radius: 10px;
  background: url("../img/bg_dotted_orange.svg") repeat;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn_contents a {
    margin-bottom: 20px;
    padding: 10px;
    font-size: clamp(16px, 1.23vw, 20px);
  }
}
.btn_contents img {
  vertical-align: middle;
  width: clamp(16px, 4.67vw, 35px);
}
@media screen and (min-width: 768px) {
  .btn_contents img {
    width: clamp(20px, 2.16vw, 35px);
  }
}

.contents_member h5 {
  margin: 0 20px 10px;
  color: #EA5B02;
  font-weight: bold;
  font-size: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .contents_member h5 {
    margin: 0 20px 25px;
    font-size: clamp(16px, 1.56vw, 30px);
  }
}

.slick_member_wrap {
  background: #EA5B02;
}

.slick_member {
  padding: 35px 0;
}
@media screen and (min-width: 768px) {
  .slick_member {
    padding: 20px 0;
  }
}
.slick_member .item {
  padding: 18px;
}
.slick_member .img_wrap {
  display: inline-block;
  position: relative;
  width: 100%;
}
.slick_member .img_wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slick_member .img_wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 0 0;
}
.slick_member p {
  margin: 5px 0 15px;
  color: #fff;
  font-size: clamp(13px, 3.33vw, 25px);
}
@media screen and (min-width: 768px) {
  .slick_member p {
    font-size: clamp(13px, 1.3vw, 25px);
  }
}
@media screen and (min-width: 1100px) {
  .slick_member p {
    margin: 10px 0 30px;
  }
}
.slick_member p span {
  margin-right: 1em;
  font-size: clamp(11px, 2.67vw, 20px);
}
@media screen and (min-width: 768px) {
  .slick_member p span {
    font-size: clamp(11px, 1.04vw, 20px);
  }
}
.slick_member .modal_profile {
  position: relative;
  padding: 5px 0;
  display: block;
  background: #fff;
  color: #EA5B02;
  text-align: center;
  border-radius: 30px;
  font-size: clamp(12px, 3.2vw, 24px);
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .slick_member .modal_profile {
    font-size: clamp(12px, 1.25vw, 24px);
  }
}
.slick_member .modal_profile::before {
  content: "";
  width: 100%;
  display: block;
}
.slick_member .modal_profile::after {
  position: absolute;
  content: "";
  top: 40%;
  right: 15%;
  display: block;
  width: 5.24%;
  height: 800px;
  background: url("../img/icon_arrow_right_orange_s.svg") no-repeat;
  background-size: contain;
}
.slick_member .profile {
  position: relative;
  padding: 5px 0;
  display: block;
  background: #fff;
  color: #EA5B02;
  text-align: center;
  border-radius: 30px;
  font-size: clamp(12px, 3.2vw, 24px);
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .slick_member .profile {
    font-size: clamp(12px, 1.25vw, 24px);
  }
}
.slick_member .profile::before {
  content: "";
  width: 100%;
  display: block;
}
.slick_member .profile::after {
  position: absolute;
  content: "";
  top: 40%;
  right: 15%;
  display: block;
  width: 5.24%;
  height: 800px;
  background: url("../img/icon_arrow_right_orange_s.svg") no-repeat;
  background-size: contain;
}

.member_slider_prev,
.member_slider_next {
  z-index: 100;
  position: absolute;
  top: calc(40% - 3vw);
  cursor: pointer;
  outline: none;
  height: min(6vw, 40px);
  width: min(6vw, 40px);
  background: url("../img/icon_arrow_right_white.svg") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .member_slider_prev,
  .member_slider_next {
    top: calc(43% - 3vw);
  }
}

.member_slider_prev {
  left: 20px;
  transform: rotate(-180deg);
}
@media screen and (min-width: 1100px) {
  .member_slider_prev {
    left: -10px;
  }
}
@media screen and (min-width: 1920px) {
  .member_slider_prev {
    left: -50px;
  }
}

.member_slider_next {
  right: 20px;
}
@media screen and (min-width: 1100px) {
  .member_slider_next {
    right: -10px;
  }
}
@media screen and (min-width: 1920px) {
  .member_slider_next {
    right: -50px;
  }
}

.content_management {
  width: 100%;
  padding: 0 20px;
  margin: 60px auto;
}
@media screen and (min-width: 768px) {
  .content_management {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 100px auto;
  }
}
@media screen and (min-width: 1100px) {
  .content_management {
    margin: 140px auto;
  }
}
.content_management .lower_ttl_h2.line.sp {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .content_management .lower_ttl_h2.line.sp {
    display: none;
  }
}
.content_management .lower_ttl_h2.line.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .content_management .lower_ttl_h2.line.pc {
    display: flex;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .lower_ttl_h2.line.pc {
    margin-bottom: 70px;
  }
}
.content_management .lower_ttl_h3 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .content_management .lower_ttl_h3 {
    margin-bottom: 30px;
  }
}
.content_management .img_wrap {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .content_management .img_wrap {
    order: 1;
    width: 40%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .img_wrap {
    width: 50%;
  }
}
.content_management .img_wrap img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall {
    order: 3;
    width: 55%;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .orangehall {
    width: 45%;
  }
}
.content_management .orangehall ul {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall ul {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .orangehall ul {
    margin-bottom: 30px;
  }
}
.content_management .orangehall ul li {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-indent: -24px;
  padding-left: 24px;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall ul li {
    font-size: 23px;
    text-indent: -30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .orangehall ul li {
    font-size: 30px;
    text-indent: -36px;
    padding-left: 36px;
  }
}
.content_management .orangehall ul li::before {
  position: relative;
  display: inline-block;
  content: "";
  width: 14px;
  height: 14px;
  background-color: #EA5B02;
  border-radius: 50%;
  top: 16%;
  left: 0;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall ul li::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .orangehall ul li::before {
    width: 26px;
    height: 26px;
  }
}
.content_management .orangehall ul + p {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall ul + p {
    margin-bottom: 30px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .orangehall ul + p {
    margin-bottom: 60px;
    font-size: 22px;
  }
}
.content_management .orangehall dl {
  display: flex;
  flex-wrap: wrap;
  color: #EA5B02;
  margin-bottom: 35px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall dl {
    margin-bottom: 50px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .orangehall dl {
    margin-bottom: 80px;
    font-size: 20px;
  }
}
.content_management .orangehall dl dt {
  width: 5em;
  font-weight: 500;
}
.content_management .orangehall dl dd {
  width: calc(100% - 5em);
}
.content_management .orangehall ol {
  font-size: 16px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall ol {
    font-size: 23px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .content_management .orangehall ol {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.content_management .orangehall ol span {
  color: #EA5B02;
  margin-right: 10px;
}
.content_management .orangehall .remarks {
  font-size: 12px;
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .content_management .orangehall .remarks {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .content_management .orangehall .remarks {
    font-size: 20px;
  }
}

.content_recruitment {
  width: 100%;
}
.content_recruitment .recruit {
  text-align: center;
}
.content_recruitment .recruit div {
  position: relative;
  display: inline-block;
  margin: 0 auto 25px;
  text-align: center;
}
.content_recruitment .recruit div::before {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 80px;
  background-color: #EA5B02;
  transform: rotate(-35deg);
  bottom: -10px;
  left: -10px;
}
@media screen and (min-width: 768px) {
  .content_recruitment .recruit div::before {
    height: 100px;
    left: -30px;
  }
}
@media screen and (min-width: 1100px) {
  .content_recruitment .recruit div::before {
    height: 140px;
    left: -35px;
  }
}
.content_recruitment .recruit div::after {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 80px;
  background-color: #EA5B02;
  transform: rotate(35deg);
  bottom: -10px;
  right: -10px;
}
@media screen and (min-width: 768px) {
  .content_recruitment .recruit div::after {
    height: 100px;
    right: -30px;
  }
}
@media screen and (min-width: 1100px) {
  .content_recruitment .recruit div::after {
    height: 140px;
    right: -35px;
  }
}
.content_recruitment .recruit div p:first-of-type {
  font-weight: 900;
  font-size: 25px;
  margin-bottom: 5px;
}
.content_recruitment .recruit div p:first-of-type span {
  color: #EA5B02;
}
@media screen and (min-width: 768px) {
  .content_recruitment .recruit div p:first-of-type {
    font-size: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .content_recruitment .recruit div p:first-of-type {
    font-size: 45px;
  }
}
.content_recruitment .recruit div p:last-of-type {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .content_recruitment .recruit div p:last-of-type {
    font-size: 22px;
  }
}
@media screen and (min-width: 1100px) {
  .content_recruitment .recruit div p:last-of-type {
    font-size: 28px;
  }
}
.content_recruitment .whole {
  padding: 20px;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .content_recruitment .whole {
    padding: 40px;
    margin-bottom: 60px;
  }
}
.content_recruitment .notice {
  font-weight: 700;
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .content_recruitment .notice {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .content_recruitment .notice {
    font-size: 20px;
  }
}

.guidance {
  margin: 0 auto 15px;
}
@media screen and (min-width: 768px) {
  .guidance {
    margin: 0 auto 25px;
    display: flex;
    flex-wrap: wrap;
  }
}
.guidance .upper_column {
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  border: 3px solid #EA5B02;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .guidance .upper_column {
    border-radius: 15px 0 0 15px;
    width: 50%;
    border: 5px solid #EA5B02;
  }
}
@media screen and (min-width: 1100px) {
  .guidance .upper_column {
    padding: 30px 50px;
  }
}
.guidance .upper_column h6 {
  position: relative;
  color: #EA5B02;
  font-size: 17px;
  font-weight: 900;
  padding-left: 23px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .guidance .upper_column h6 {
    font-size: 23px;
    padding-left: 26px;
  }
}
@media screen and (min-width: 768px) {
  .guidance .upper_column h6 {
    font-size: 27px;
    padding-left: 30px;
  }
}
.guidance .upper_column h6::before {
  position: absolute;
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #EA5B02;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .guidance .upper_column h6::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 768px) {
  .guidance .upper_column h6::before {
    width: 24px;
    height: 24px;
  }
}
.guidance .upper_column h6:after {
  content: "";
  height: 3px;
  flex-grow: 1;
  background: url(../img/line_dotted_orange.svg) repeat-x;
  margin-left: 20px;
}
.guidance .upper_column .cost {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .guidance .upper_column .cost {
    font-size: 23px;
  }
}
@media screen and (min-width: 1100px) {
  .guidance .upper_column .cost {
    font-size: 30px;
    line-height: 1.8;
    letter-spacing: 0.2em;
  }
}
.guidance .upper_column .add {
  font-size: 12px;
  margin: 20px 0;
  color: #EA5B02;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .guidance .upper_column .add {
    font-size: 16px;
    margin: 20px 0 30px;
  }
}
@media screen and (min-width: 1100px) {
  .guidance .upper_column .add {
    font-size: 20px;
    margin: 20px 0 40px;
  }
}
.guidance .upper_column .btn_contents_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.guidance .upper_column .btn_contents_wrap .btn_contents {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .guidance .upper_column .btn_contents_wrap .btn_contents {
    margin-bottom: 15px;
  }
}
.guidance .lower_column {
  background-color: #EA5B02;
  color: #fff;
  border-radius: 0 0 15px 15px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .guidance .lower_column {
    border-radius: 0 15px 15px 0;
    width: 50%;
  }
}
@media screen and (min-width: 1100px) {
  .guidance .lower_column {
    padding: 30px 50px;
  }
}
.guidance .lower_column h6 {
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding-left: 23px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .guidance .lower_column h6 {
    font-size: 23px;
    padding-left: 26px;
  }
}
@media screen and (min-width: 768px) {
  .guidance .lower_column h6 {
    font-size: 27px;
    padding-left: 30px;
  }
}
.guidance .lower_column h6::before {
  position: absolute;
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .guidance .lower_column h6::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 768px) {
  .guidance .lower_column h6::before {
    width: 24px;
    height: 24px;
  }
}
.guidance .lower_column h6:after {
  content: "";
  height: 3px;
  flex-grow: 1;
  background: url(../img/line_dotted_white.svg) repeat-x;
  margin-left: 20px;
}
.guidance .lower_column ol {
  counter-reset: number;
  list-style: none;
  padding: 0;
  margin: 0;
}
.guidance .lower_column ol li {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.5;
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .guidance .lower_column ol li {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .guidance .lower_column ol li {
    font-size: 20px;
  }
}
.guidance .lower_column ol li::before {
  content: counter(number);
  counter-increment: number;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 22px;
  color: #EA5B02;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .guidance .lower_column ol li::before {
    top: 3px;
  }
}
@media screen and (min-width: 1100px) {
  .guidance .lower_column ol li::before {
    top: 4px;
  }
}
.guidance .lower_column .note {
  font-size: 12px;
  text-indent: -1em;
  padding-left: calc(30px + 1em);
}
@media screen and (min-width: 768px) {
  .guidance .lower_column .note {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .guidance .lower_column .note {
    font-size: 20px;
  }
}

.btn_supporter {
  display: block;
  margin: 0 auto 30px;
  width: 335px;
  max-width: 100%;
  height: 55px;
  line-height: 55px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: #EA5B02 url(../img/bn_supporter_sp.svg) no-repeat;
  background-size: cover;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .btn_supporter {
    margin: 0 auto 60px;
    width: 700px;
    height: 110px;
    line-height: 110px;
    font-size: 30px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .btn_supporter {
    margin: 0 auto 70px;
    width: 820px;
    height: 110px;
    line-height: 110px;
    font-size: 35px;
    background: #EA5B02 url(../img/bn_supporter_pc.svg) no-repeat;
  }
}

.modal_wrapper {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal_wrapper.is_open {
  opacity: 1;
  visibility: visible;
}

.modal_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: auto;
  max-height: 90%;
  padding: 20px;
  background: #fff;
  border: 3px solid #EA5B02;
  border-radius: 10px;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .modal_container {
    width: 80%;
  }
}
@media screen and (min-width: 1100px) {
  .modal_container {
    width: 50%;
  }
}

.modal_content {
  padding: 20px;
}
@media screen and (min-width: 1100px) {
  .modal_content {
    display: flex;
    justify-content: space-between;
  }
}
.modal_content .name {
  font-size: clamp(20px, 2.6vw, 34px);
  margin-bottom: 20px;
}
.modal_content .name span {
  font-size: clamp(15px, 1.9vw, 25px);
  margin-right: 10px;
}
.modal_content .img_wrap {
  float: left;
  width: 43%;
  margin: 0 15px 15px 0;
}
@media screen and (min-width: 1100px) {
  .modal_content .img_wrap {
    margin: 0;
    width: 45%;
  }
}
.modal_content .img_wrap img {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .modal_content .bio_wrap {
    width: 50%;
  }
}
.modal_content .bio_wrap .bio {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(12px, 1.5vw, 18px);
}

.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: clamp(22px, 2.8vw, 50px);
  height: clamp(22px, 2.8vw, 50px);
  cursor: pointer;
}
.modal_close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 2px;
  height: clamp(22px, 2.8vw, 50px);
}
.modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 2px;
  height: clamp(22px, 2.8vw, 50px);
}

.privacy .lead {
  color: #EA5B02;
  font-size: 15px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .privacy .lead {
    font-size: 21px;
    margin-bottom: 50px;
  }
}

.privacy ol {
  list-style: decimal;
  list-style-position: inside;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .privacy ol {
    margin-bottom: 50px;
  }
}
.privacy ol li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 20px;
  color: #EA5B02;
}
.privacy ol li span {
  color: #000;
}

.privacy .pp {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .privacy .pp {
    margin-bottom: 70px;
  }
}

.contact .lead {
  color: #EA5B02;
  font-size: 15px;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .contact .lead {
    font-size: 21px;
    margin-bottom: 100px;
  }
}
.contact .lead .break {
  display: block;
}
@media screen and (min-width: 1100px) {
  .contact .lead .break {
    display: none;
  }
}

.contact table {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1100px) {
  .contact table {
    margin-bottom: 70px;
  }
}
.contact table th {
  display: block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 5px;
}
@media screen and (min-width: 1100px) {
  .contact table th {
    display: inline-block;
    width: 25%;
    margin-bottom: 0;
  }
}
.contact table td {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  font-size: 16px;
}
@media screen and (min-width: 1100px) {
  .contact table td {
    display: inline-block;
    width: 75%;
    margin-bottom: 40px;
  }
}
.contact table td.name_unit {
  border-collapse: collapse;
  display: inline-block;
  width: 48%;
}
.contact table td.name_unit:first-of-type {
  margin-right: 4%;
}
@media screen and (min-width: 1100px) {
  .contact table td.name_unit {
    width: 37.5%;
  }
  .contact table td.name_unit:first-of-type {
    margin-right: 0;
  }
}
.contact table td.name_unit span {
  display: none;
}
@media screen and (min-width: 1100px) {
  .contact table td.name_unit span {
    display: inline-block;
    text-align: right;
    margin-right: 2em;
  }
  .contact table td.name_unit span.kana {
    margin-right: 1em;
  }
}
.contact table td.name_unit input {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .contact table td.name_unit input {
    width: 70%;
  }
}
.contact table .form_text {
  background: #DADADA;
  width: 100%;
  padding: 10px;
}
.contact table .form_text:focus {
  background: #fff8e3;
}
.contact table .form_text.text {
  height: 100px;
}
@media screen and (min-width: 1100px) {
  .contact table .form_text.text {
    height: 170px;
  }
}
.contact table .form_text.error {
  background: #ffcdcd;
}
.contact table .essential {
  display: inline-block;
  background: #EA5B02;
  color: #fff;
  border-radius: 10px;
  padding: 3px 8px;
  margin-right: 10px;
}
@media screen and (min-width: 1100px) {
  .contact table .essential {
    margin-right: 20px;
  }
}
.contact table .optional {
  display: inline-block;
  background: #979797;
  color: #fff;
  border-radius: 10px;
  padding: 3px 8px;
  margin-right: 10px;
}
@media screen and (min-width: 1100px) {
  .contact table .optional {
    margin-right: 20px;
  }
}

.contact input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #DADADA;
  vertical-align: -5px;
  outline: none;
  margin-right: 3px;
}
@media screen and (min-width: 1100px) {
  .contact input[type=checkbox] {
    width: 30px;
    height: 30px;
    vertical-align: -8px;
  }
}
.contact input[type=checkbox].error {
  background: #ffcdcd;
}
.contact input[type=checkbox]::before {
  position: absolute;
  display: block;
}
.contact input[type=checkbox]:checked::before {
  top: 4px;
  left: 4px;
  content: "";
  width: 12px;
  height: 8px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 1100px) {
  .contact input[type=checkbox]:checked::before {
    top: 8px;
    left: 8px;
    width: 14px;
    height: 10px;
  }
}
.contact input[type=checkbox] + label {
  margin-left: 10px;
}
@media screen and (min-width: 1100px) {
  .contact input[type=checkbox] + label {
    line-height: 1;
  }
}
.contact input[type=checkbox] + label + p {
  margin-top: 10px;
}
.contact input[type=checkbox] + label + p a {
  color: #EA5B02;
  text-decoration: underline;
}
.contact input[type=button] {
  margin: auto;
  position: relative;
  display: block;
  width: 180px;
  line-height: 50px;
  font-size: clamp(12px, 3.2vw, 16px);
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  border: #EA5B02 solid 3px;
  background: #fff url("../img/icon_arrow_right_orange.svg") no-repeat;
  background-size: clamp(25px, 2.6vw, 50px);
  background-position: 90% 50%;
  color: #EA5B02;
}
@media screen and (min-width: 768px) {
  .contact input[type=button] {
    width: clamp(180px, 18.7vw, 360px);
    line-height: min(5.2vw, 100px);
    font-size: clamp(16px, 1.48vw, 24px);
    border-radius: 50px;
  }
}
.contact input[type=button]:hover {
  background-position: 95% 50%;
  transition: all 0.3s;
}
.contact .contabt_button {
  display: flex;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto;
}

.supporter_ttl {
  position: relative;
  font-size: 23px;
  font-weight: 900;
  color: #EA5B02;
  text-align: center;
  margin-bottom: 25px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .supporter_ttl {
    font-size: 38px;
    margin-bottom: 65px;
    top: -90px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter_ttl {
    font-size: 50px;
    top: -130px;
  }
}
.supporter_ttl span {
  font-size: 15px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .supporter_ttl span {
    font-size: 23px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter_ttl span {
    font-size: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter_ttl::before {
    position: relative;
    display: inline-block;
    content: "";
    width: 60px;
    height: 120px;
    background: url(../img/icon_supporter.svg) no-repeat;
    background-size: contain;
    top: 30px;
    left: -20px;
  }
}
.supporter_ttl::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url(../img/img_cheering.svg) no-repeat;
  background-size: contain;
  top: -110px;
  right: 13%;
}
@media screen and (min-width: 768px) {
  .supporter_ttl::after {
    position: relative;
    content: "";
    width: 140px;
    height: 140px;
    top: 90px;
    right: -2%;
  }
}
@media screen and (min-width: 1100px) {
  .supporter_ttl::after {
    content: "";
    width: 190px;
    height: 190px;
    top: 120px;
    right: -5%;
  }
}
.supporter_ttl.notag {
  top: 0;
}
.supporter_ttl.notag::after {
  content: none;
}

.supporter .list {
  width: 100%;
  border-bottom: 1px solid #EA5B02;
}
@media screen and (min-width: 768px) {
  .supporter .list:first-of-type {
    margin-top: -90px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .list:first-of-type {
    margin-top: -120px;
  }
}
@media screen and (min-width: 768px) {
  .supporter .list tr {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #EA5B02;
  }
}
.supporter .list td {
  display: flex;
  width: 100%;
  border-top: 1px solid #EA5B02;
  padding: 20px 0;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .supporter .list td {
    width: 50%;
    border-top: none;
    border-bottom: none;
    font-size: 28px;
  }
  .supporter .list td:nth-child(even) {
    padding-left: 10px;
  }
  .supporter .list td:nth-child(odd) {
    padding-right: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .list td {
    padding: 30px 0;
    font-size: 34px;
  }
  .supporter .list td:nth-child(even) {
    padding-left: 15px;
  }
  .supporter .list td:nth-child(odd) {
    padding-right: 15px;
  }
}
.supporter .list td span {
  font-size: 14px;
  margin-left: 10px;
}
@media screen and (min-width: 1100px) {
  .supporter .list td span {
    font-size: 24px;
    margin-left: 15px;
  }
}
.supporter .list td .icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .supporter .list td .icon {
    display: block;
    width: 80px;
    margin-right: 20px;
  }
  .supporter .list td .icon img {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .list td .icon {
    width: 140px;
    margin-right: 30px;
  }
}
.supporter .list td .icon.display {
  display: block;
  width: 80px;
  margin-right: 20px;
}
.supporter .list td .icon.display img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .supporter .list td .icon.display {
    display: block;
    width: 80px;
    margin-right: 20px;
  }
  .supporter .list td .icon.display img {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .list td .icon.display {
    width: 140px;
    margin-right: 30px;
  }
}
.supporter .list td .name_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .supporter .list td .name_wrap {
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 1100px) {
  .supporter .list td .name_wrap {
    width: calc(100% - 140px);
  }
}
.supporter .list td .position {
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1100px) {
  .supporter .list td .position {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.supporter .list td .comment {
  width: 100%;
  font-size: 13px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (min-width: 1100px) {
  .supporter .list td .comment {
    font-size: 18px;
    margin-top: 15px;
  }
}
.supporter .list td .comment.w100 {
  width: 100%;
}
.supporter .list td .sns_unit a {
  display: inline-block;
  width: 20px;
}
.supporter .list td .sns_unit a:last-of-type {
  margin-left: 5px;
}
@media screen and (min-width: 1100px) {
  .supporter .list td .sns_unit a {
    width: 35px;
  }
}
.supporter .list td .sns_unit a img {
  width: 100%;
}
.supporter .anonymous {
  font-size: 15px;
  color: #EA5B02;
  text-align: right;
  margin: 10px 0 60px;
}
@media screen and (min-width: 768px) {
  .supporter .anonymous {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .anonymous {
    font-size: 30px;
  }
}
.supporter .thanks {
  text-align: center;
}
.supporter .thanks div {
  position: relative;
  display: inline-block;
  margin: 0 auto 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .supporter .thanks div {
    margin: 40px auto 60px;
  }
}
.supporter .thanks div::before {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 80px;
  background-color: #EA5B02;
  transform: rotate(-35deg);
  bottom: 0;
  left: -10px;
}
@media screen and (min-width: 768px) {
  .supporter .thanks div::before {
    height: 100px;
    left: -30px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .thanks div::before {
    height: 130px;
    left: -35px;
  }
}
.supporter .thanks div::after {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 80px;
  background-color: #EA5B02;
  transform: rotate(35deg);
  bottom: 0;
  right: -10px;
}
@media screen and (min-width: 768px) {
  .supporter .thanks div::after {
    height: 100px;
    right: -30px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .thanks div::after {
    height: 130px;
    right: -35px;
  }
}
.supporter .thanks div p:first-of-type {
  color: #EA5B02;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .supporter .thanks div p:first-of-type {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .thanks div p:first-of-type {
    font-size: 50px;
  }
}
.supporter .thanks div p:last-of-type {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .supporter .thanks div p:last-of-type {
    font-size: 22px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .thanks div p:last-of-type {
    font-size: 28px;
  }
}
.supporter .number {
  display: block;
  margin: 0 auto 60px;
  padding: 20px 0;
  width: 100%;
  background-color: #EA5B02;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .supporter .number {
    margin: 0 auto 140px;
    padding: 40px 0;
    width: 72%;
    font-size: 33px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .number {
    line-height: 1;
    letter-spacing: -2px;
    padding: 40px 0 45px;
  }
}
.supporter .number .em {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .supporter .number .em {
    font-size: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .number .break {
    display: none;
  }
}
.supporter .number .commas {
  display: none;
}
@media screen and (min-width: 1100px) {
  .supporter .number .commas {
    display: inline-block;
  }
}
@media screen and (min-width: 1100px) {
  .supporter .btn_next {
    margin-bottom: 90px;
  }
}

footer {
  width: 100%;
}

.catch_wrap {
  display: block;
  background: #fff;
  width: 66%;
  margin: 0 auto 50px;
}
.catch_wrap img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .catch_wrap {
    width: 50%;
  }
}
@media screen and (min-width: 1100px) {
  .catch_wrap {
    display: none;
  }
}

.footer_wrap {
  background-color: #EA5B02;
  padding: 0 20px;
  color: #fff;
}

.footer_contents {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .footer_contents {
    flex-direction: row;
    max-width: 1620px;
  }
}

.footer_contents .item1 {
  order: 1;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
@media screen and (min-width: 1100px) {
  .footer_contents .item1 {
    font-size: 20px;
    width: 33%;
    text-align: left;
    padding: 40px 0;
    border-right: 1px solid #fff;
  }
}
.footer_contents .item1 img {
  width: 80%;
  max-width: 420px;
  margin-bottom: 30px;
}
.footer_contents .item1 .tel {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .footer_contents .item1 .tel {
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 1100px) {
  .footer_contents .item1 .tel {
    font-size: 25px;
  }
}
.footer_contents .item1 .gmap {
  margin-left: 10px;
}
@media screen and (min-width: 1100px) {
  .footer_contents .item1 .gmap {
    display: block;
    margin-left: 0;
    margin-top: 20px;
  }
}
.footer_contents .item1 .gmap a {
  border-bottom: 1px solid #fff;
}

.footer_contents .item2 {
  order: 3;
  width: 100%;
  padding: 0 0 30px;
  text-align: center;
}
.footer_contents .item2 .forPC {
  display: none;
}
@media screen and (min-width: 1100px) {
  .footer_contents .item2 {
    order: 2;
    width: 30%;
    padding: 40px 0;
  }
  .footer_contents .item2 .forPC {
    display: block;
    width: 70%;
    max-width: 330px;
    margin: 0 auto;
  }
}

.footer_contents .item2 .sns p {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .footer_contents .item2 .sns p {
    font-size: 19px;
  }
}
.footer_contents .item2 .sns p::before {
  position: relative;
  display: inline-block;
  content: "";
  width: 1px;
  height: 25px;
  background-color: #fff;
  transform: rotate(-30deg);
  bottom: -8px;
  left: -12px;
}
.footer_contents .item2 .sns p::after {
  position: relative;
  display: inline-block;
  content: "";
  width: 1px;
  height: 25px;
  background-color: #fff;
  transform: rotate(30deg);
  bottom: -8px;
  left: 12px;
}
@media screen and (min-width: 768px) {
  .footer_contents .item2 .sns {
    margin-top: 30px;
  }
}

.footer_contents .item2 .sns_unit {
  width: 60%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}
.footer_contents .item2 .sns_unit img {
  width: 32px;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer_contents .item2 .sns_unit img {
    width: 40px;
  }
}

.footer_contents .item3 {
  order: 2;
  width: 100%;
  padding: 0 0 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer_contents .item3 {
    justify-content: space-around;
  }
}
@media screen and (min-width: 1100px) {
  .footer_contents .item3 {
    order: 3;
    width: 37%;
    padding: 40px 0;
    justify-content: space-between;
  }
}
.footer_contents .item3 .privacyPC {
  display: none;
}
.footer_contents .item3 .privacyPC:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1100px) {
  .footer_contents .item3 .privacyPC {
    display: block;
    margin: 20px 0 0 10px;
    font-size: 14px;
  }
}
.footer_contents .item3 .privacySP {
  display: block;
  margin-top: 15px;
  font-size: 13px;
}
@media screen and (min-width: 1100px) {
  .footer_contents .item3 .privacySP {
    display: none;
  }
}

.footer_contents .item3 .link1 {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .footer_contents .item3 .link1 {
    font-size: 20px;
  }
}
.footer_contents .item3 .link1 li {
  margin-bottom: 10px;
}
.footer_contents .item3 .link1 a {
  position: relative;
  padding-left: 12px;
}
.footer_contents .item3 .link1 a::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 90%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
.footer_contents .item3 .link1 a:hover {
  text-decoration: underline;
}

.footer_contents .item3 .link2 {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer_contents .item3 .link2 {
    font-size: 16px;
  }
}
.footer_contents .item3 .link2 li {
  margin-bottom: 10px;
}
.footer_contents .item3 .link2 a {
  white-space: nowrap;
  margin-left: 10px;
  padding-right: 15px;
  background: url(../img/icon_arrow_right_white_s.svg) no-repeat;
  background-position: center right;
}
.footer_contents .item3 .link2 a:hover {
  text-decoration: underline;
}

.footer_contents .item3 .link3 {
  text-align: center;
  width: 40%;
  max-width: 200px;
}
@media screen and (min-width: 1100px) {
  .footer_contents .item3 .link3 {
    width: 35%;
  }
}
.footer_contents .item3 .link3 img {
  width: 95%;
}
.footer_contents .item3 .link3 .link3_btn {
  display: block;
  color: #EA5B02;
  background: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  white-space: nowrap;
  padding: 15px 5px;
}
@media screen and (min-width: 768px) {
  .footer_contents .item3 .link3 .link3_btn {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .footer_contents .item3 .link3 .link3_btn {
    margin-bottom: 30px;
  }
}

small {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */