@charset "utf-8";

/* ======== Reset CSS ======== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

input[type="text"],
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}

a {
  color: #0c3e90;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  text-decoration: underline;
}

.hover_img a {
  overflow: hidden;
  display: inline-block;
}
.hover_img a img {
  display: block;
  transition: transform 0.3s ease;
}
.hover_img a:hover img {
  transform: scale(1.05);
}

.page a {
  color: #0c3e90;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.page a:hover,
.page a:focus {
  text-decoration: none;
}

.inner {
  width: 1100px;
  margin: auto;
}
@media screen and (max-width: 1098.8px) {
  .inner {
    width: calc(100% - 1rem);
    padding: 0 1rem !important;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.row-half .col {
  width: 50%;
  text-align: center;
  padding: 0;
}
.row-half .col img {
  width: 100%;
}

.row-fixed {
  justify-content: space-between;
}

.row-fixed .col-fixed {
  width: 530px;
  text-align: center;
  padding: 0;
}
@media screen and (max-width: 1098.8px) {
  .row-fixed .col-fixed {
    width: 100%;
    margin-bottom: 1rem;
  }
  .row-fixed .col-fixed img {
    width: 100%;
  }
}

/* header */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: white;
  z-index: 1000;
  transition: background 0.3s;
}
.logo {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 304px;
}
#header.scrolled .logo {
  opacity: 1;
  transform: translateX(0);
  width: 304px;
}
@media screen and (max-width: 1099.8px) {
  #header.scrolled .logo, .logo {
    width: 60%;
  }
}

/* hamburger */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 10;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: rgb(0, 0, 0, .85);
  margin: 5px 0;
  transition: 0.4s;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #ec662c;
  background: rgb(0, 0, 0, .85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  box-sizing: border-box;
  z-index: 5;
  font-weight: 700;
  padding: 4rem 0;
}

.menu.open {
  opacity: 1;
  pointer-events: auto;
  padding: 4rem 0;
}
.menu.open .inner > div {
  margin-bottom: 2rem;
}
.menu.open ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu.open ul li {

}
.menu.open p {
  font-size: 112.5%;
  margin-bottom: 1rem;
}
.menu.open a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e56427;
  background: #fff;
  border: solid 1px #e56427;
  text-decoration: none;
  font-size: 87.5%;
  width: 200px;
  height: 50px;
}
@media screen and (max-width: 1098.8px) {
  .menu.open a {
    width: 100%;
  }
  .menu.open ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 0;
  }
  .menu.open ul li {
    width: calc(50% - .5rem);
    margin-right: 1rem;
  }
  .menu.open ul li:nth-child(2n) {
    margin-right: 0;
  }
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #e56427;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #e56427;
}

/* main-content */
#main-content {
  padding-top: 60px;
}
@media screen and (max-width: 1098.8px) {
  #main-content {
    padding-right: 0;
    padding-bottom: 53px;
  }
}
section h2 {
  position: relative;
  text-align: center;
  font-size: 150%;
  font-weight: normal;
  padding: 2.5rem 0;
  background: #1d2b58;
  color: #fff;
  padding-bottom: 1.5em;
}
section h2 span {
  color: #ec662c;
  margin-left: 1rem;
}
section h2::after {
  content: '';
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #ec662c;
}
@media screen and (max-width: 1098.8px) {
  section h2 span {
    display: block;
    margin-left: 0;
  }
}

.slide {
  display: flex;
  align-items: center;
  background: url(/berryten-2026/common/images/slide_bg.jpg) no-repeat;
  background-size: cover;
  height: 605px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1098.8px) {
  .slide {
    background: url(/berryten-2026/common/images/slide_bg_sp.jpg) no-repeat;
    background-size: cover;
    height: auto;
  }
}

/* slide */
.slider {
  margin: auto;
  width: 100%;
}
.slider-img {
  margin: 0 5px;
}
.slider-img img {
  height: auto;
  width: 100%;
}
.slick-track {
	display: flex;
	align-items: center;
}
.slick-track img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1099.8px) {
.slick-slide {
  margin: 1rem;
}
}

.date {
  background: #d1edfe;
  padding: 1rem 0 0 !important;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 25px;
  max-width: 1100px;
  margin: auto;
  padding: 0;
}
.artist-grid_hr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 25px;
  max-width: 1100px;
  margin: auto;
  padding: 0;
}

.artist-item a {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: #000;
  overflow: hidden;
}
.artist-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.artist-item a:hover img {
  transform: scale(1.05);
}

.artist-item img {
  width: 100%;
  display: block;
}
.artist-item p {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .artist-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .artist-grid_hr {
    grid-template-columns: repeat(2, 1fr);
  }
}

section.news {
  padding: 2rem 0 4rem;
}
section.news .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
}
section.news .inner > div {
  flex: 1 1 calc(33.333% - 33px);
  box-sizing: border-box;
}

@media screen and (max-width: 1099.8px) {
  section.news .inner > div {
    flex: 1 1 100%;
  }
}

section.news h3 {
  position: relative;
  padding-bottom: 1rem;
  font-size: 125%;
  font-weight: normal;
  margin-bottom: 2.5rem;
}
section.news h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right,
    #ec662c 54px,
    white 54px,
    white 61px,
    #1d2b58 61px
  );
}
section.news h3::first-letter {
  color: #ec662c;
}
section.news ul li {
  margin-bottom: 1.5rem;
}
section.news ul li span {
  display: block;
  font-size: 87.5%;
  color: #000;
}
section.news a {
  font-weight: 700;
}
.more {
  margin-top: 1rem;
  text-align: right;
}
.more a {
  font-size: 87.5%;
}

.sponsor {
}
.sponsor .inner {
  text-align: center;
/*  border-top: 2px solid #b6bbc9;  */
  padding: 3rem 0;
}
.sponsor p {
  margin-bottom: .5rem;
}
.sponsor ul {
  margin: 0 auto;
  max-width: 1053px;
}
.sponsor1-grid li a img, .sponsor2-grid li a img {
  margin: auto;
}
.sponsor1-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 10px; */
  max-width: 1053px;
  margin: auto;
  padding: 0;
  list-style: none;
}
.sponsor1-grid li {
  flex: 0 0 203px;
  margin: 0 4.7px 10px;
}
.sponsor1-grid li:nth-child(5n + 1) {
  margin-left: 0;
}
.sponsor1-grid li:nth-child(5n) {
  margin-right: 0;
}
/* .sponsor1-grid.single li {
  grid-column: 3 / 4;
} */
.sponsor2-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 10px; */
  max-width: 1053px;
  margin: auto;
  padding: 0;
  list-style: none;
}
.sponsor2-grid li {
  flex: 0 0 142px;
  margin: 0 4.9px 10px;
}
.sponsor2-grid li:nth-child(7n + 1) {
  margin-left: 0;
}
.sponsor2-grid li:nth-child(7n) {
  margin-right: 0;
}

@media screen and (max-width: 1099.8px) {
  .sponsor .inner {
    padding: 2rem 0 !important;
  }
  .sponsor1-grid li {
    flex: 0 0 177px;
    margin: 0 4.7px 10px;
  }
  .sponsor1-grid li:nth-child(2n + 1) {
    margin-left: 0;
  }
  .sponsor1-grid li:nth-child(2n) {
    margin-right: 0;
  }
  .sponsor2-grid li {
    flex: 0 0 114px;
    margin: 0 4.9px 10px;
  }
  .sponsor2-grid li:nth-child(3n + 1) {
    margin-left: 0;
  }
  .sponsor2-grid li:nth-child(3n) {
    margin-right: 0;
  }
  /* .sponsor1-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sponsor2-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sponsor1-grid.single li {
    grid-column: 2 / 3;
  } */
}

/* content */
.content {
  padding: 2rem 0;
}

/* footer */
#footer {
  background: #000000;
  color: #fff;
}
#footer .copy {
  text-align: center;
  font-size: 75%;
  padding-bottom: 1.5rem;
}
#footer a {
  display: inline-block;
}
#footer .sns {
  display: flex;
  margin-bottom: 50px;
}
#footer .sns a {
  width: 26px;
}
#footer .sns p {
  margin: 14px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 0;
  margin-bottom: 1.5rem;
}
#footer .previous {
  width: 85%;
  margin-bottom: 50px;
}
#footer .previous h3 {
  display: flex;
  justify-content: center; 
  margin: 0 auto 20px;
  width: 63px;
}
#footer .previous > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(67px, 1fr));
  gap: 6px 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .previous > ul li {
}
#footer .previous > ul li:nth-child(12n) {
  margin-right: 0;
}
#footer .previous > ul a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 15px 16px;
  border: 1px solid #777777;
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
  line-height: 0;
}
#footer .previous > ul a:hover {
  background-color: #666666;
  color: #fff;
}
@media screen and (max-width: 1099.8px) {
  .footer-top {
    padding: 1rem 0 0 !important;
  }
}

.footer-logo {
  width: 267px;
}
.footer-button {
  display: inline-block;
  padding: 0.3rem 1rem 0.4rem;
  margin-bottom: 3rem;
  background: #fff;
  color: #000 !important;
  text-decoration: none !important;
  border-radius: 10px;
  font-weight: 700;
}
.footer-button:hover {
  text-decoration: none !important;
  background: rgb(255, 255, 255, .75);
}
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
.page-top a {
  text-decoration: none;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
.page-top a img {
  mix-blend-mode: difference;
  transition: 0.3s ease;
}


.page .content {
  padding: 0;
}

.page h2.page_tit {
  position: relative;
  text-align: center;
  font-size: 150%;
  font-weight: normal;
  margin-bottom: 2.5rem;
  padding: 2.5rem 0;
  background: #1d2b58;
  color: #fff;
  padding-bottom: 1.5em;
}
.page h2.page_tit::after {
  content: none;
}
.page h2.page_tit::first-letter {
  color: #ec662c;
}
.page .logo {  
  opacity: 1;
  transform: initial;
  width: 304px;
}
@media screen and (max-width: 1099.8px) {
  .page .logo {
    width: 60%;
  }
}

.page p, .page ul, .page dt {
  line-height: 1.8;
}

.tit {
  position: relative;
  padding-bottom: 1rem;
  font-size: 125%;
  font-weight: normal;
  margin-bottom: 2.5rem;
}
.tit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right,
    #ec662c 54px,
    white 54px,
    white 61px,
    #1d2b58 61px
  );
}
.tit::first-letter {
  color: #ec662c;
}

.center {
  text-align: center;
}
.center img {
  display: block;
  margin: 0 auto;
}


.page section {
  margin-bottom: 2rem;
}
.page main {
  margin-bottom: 5rem;
}

.pager {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
}
.topicsimage {
  padding-top: 5px;
  padding-bottom: 5px;
}
.eventinfo {
  font-size: 160%;
  font-weight: 800;
  margin-bottom: .5rem;
}
@media screen and (max-width: 1099.8px) {
  .eventinfo {
    font-size: 130%;
  }
}

.brnopc {
  display:none;
}
@media screen and (max-width: 1099.8px) {
  .brnopc {
    display:block;
  }
}
@media screen and (max-width: 1099.8px) {
  .brnosp {
    display:none;
  }
}


/* detail */

.page section {
  margin-bottom: 2rem;
}

.bold {
  font-weight: 700;
}
.red {
  color: #e11a36;
}
.blue {
  color: #284a99;
}
.orange {
  color: #ec662c;
}
.grey {
  color: #777;
}

.title-01 {
  text-align: center;
  font-size: 150%;
  color: #fff;
  background: #434f74;
  padding: 1rem;
  margin-bottom: 2rem;
}
.title-02 {
  position: relative;
  padding-bottom: 1rem;
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #ec662c;
}
.title-02::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right,
    #ec662c 54px,
    white 54px,
    white 61px,
    #1d2b58 61px
  );
}
/* .title-02::first-letter {
  color: #ec662c;
} */
.title-0202 {
  position: relative;
  padding-bottom: 1rem;
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1d2b58;
}
.title-0202::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right,
    #ec662c 54px,
    white 54px,
    white 61px,
    #1d2b58 61px
  );
}
.title-03 {
  position: relative;
  padding: .5rem;
  color: #fff;
  background: #1d2b58;
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.title-04 {
  position: relative;
  padding: .5rem;
  color: #1d2b58;
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #1d2b58;
}
.title-04_gray {
  position: relative;
  padding: .5rem;
  color: #777;
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #777;
}
.title-05 {
  position: relative;
  padding: .5rem;
  color: #1d2b58;
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 1rem;
}
.fz14 {
  font-size: 87.5%;
}
.fz18 {
  font-size: 112.5%;
}
.fz22 {
  font-size: 137.5%;
}
.fz24 {
  font-size: 153.6%;
}


.img-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.img-two, .img-three, .img-four, .img-five, .img-six {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.img-two .item {
  width: calc((100% - 40px) / 2);
}
.img-two img, .img-three img, .img-four img, .img-five img, .img-six img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1099.8px) {
  .img-two {
    flex-direction: column;
    gap: 1.5rem;
  }

  .img-two .item {
    width: 100%;
  }
}
.img-three .item {
  width: calc((100% - 80px) / 3);
}

@media screen and (max-width: 1099.8px) {
  .img-three {
    flex-direction: column;
    gap: 1.5rem;
  }
  .img-three .item {
    width: 100%;
  }
}

.img-four .item {
  width: calc((100% - 120px) / 4);
}

@media screen and (max-width: 1099.8px) {
  .img-four {
    gap: 20px;
  }
  .img-four .item {
    width: calc((100% - 20px) / 2);
  }
}

.img-five .item {
  width: calc((100% - 160px) / 5);
}
@media screen and (max-width: 1099.8px) {
  .img-five {
    gap: 20px;
  }
  .img-five .item {
    width: calc((100% - 20px) / 2);
  }
}

.img-six .item {
  width: calc((100% - 200px) / 6);
}

@media screen and (max-width: 1099.8px) {
  .img-six {
    gap: 1.5rem;
  }
  .img-six .item {
    width: calc((100% - 30px) / 2);
  }
}

.img-left {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.img-left .left_item {
  width: 188px;
  flex-shrink: 0;
}
.img-left .right_item {
  flex: 1;
}

@media screen and (max-width: 1099.8px) {
  .img-left {
    flex-direction: column;
    gap: 20px;
  }
  .img-left .left_item,
  .img-left .right_item {
    width: 100%;
  }
}

.map {
  position: relative;
  width: 100%;
  padding-top: 19.825%;
  height: 0;
}
.map2 {
  position: relative;
  width: 100%;
  padding-top: 33.915%;
  height: 0;
}
.map3 {
  position: relative;
  width: 100%;
  padding-top: 50%;
  height: 0;
}
.map3-fixed-height {
  position: relative;
  width: 100%;
  padding-top: 50%;
  height: 550px;
}

.map iframe, .map2 iframe, .map3 iframe, .map3-fixed-height iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video iframe.y16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.faq-item {
  border-bottom: 1px solid #bfbfbf;
  padding: 20px 0;
}
.faq dt {
  color: #213a8b;
}
.faq dt,
.faq dd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 10px 0;
}
.faq .label {
  display: inline-block;
  min-width: 52px;
  text-align: center;
  padding: 0 10px 1px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
}
.faq dd img {
  margin: 1rem auto;
}
.faq .label.q {
  background: #1d2b58;
}
.faq .label.a {
  background: #ec662c;
}
.qa .title-01 {

}

.pdf a {
  position: relative;
  padding-right: 70px;
}
.pdf a::after {
  content: "PDF";
  position: absolute;
  display: inline-block;
  min-width: 52px;
  text-align: center;
  margin-left: 1rem;
  padding: 0 10px 1px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  border-radius: 5px;
  background: #c22c45;
}

.list, .list-number, .list-warning {
  list-style: none;
  padding-left: 0;
}
.list li, .list-number li, .list-warning li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}
.list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #ec662c;
}

.list-number {
  counter-reset: number;
}
.list-number li {
  counter-increment: number;
}

.list-number li::before {
  content: counter(number);
  position: absolute;
  left: 8px;
  color: #ec662c;
  font-weight: bold;
}
.list-warning li::before {
  content: "※";
  position: absolute;
  top: 1px;
  left: 4px;
  color: #ec662c;
  font-weight: bold;
}
@media screen and (max-width: 1099.8px) {
  .list-warning li::before {
    top: -2px;
  }
}

.list-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #bcbcbc;
  font-size: 112.5%;
}
.table th,
.table td {
  border: 1px solid #bcbcbc;
  padding: 1rem;
  text-align: left;
}
.table th {
  background: #eaeaea;
  text-align: center;
  font-weight: normal;
}
.table caption {
  margin-bottom: 1rem;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll .table {
  min-width: 600px;
}

.box{
    margin:2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px #ec662c;
    border-bottom: solid 2px #ec662c;
}
.box:before, .box:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #ec662c;
}
.box:before {left: 10px;}
.box:after {right: 10px;}
.box p {
    margin: 0; 
    padding: 0;
}

.mb_top-10 {
  margin-top: 10px !important;
}
.mb_top-20 {
  margin-top: 20px !important;
}
.mb_top-30 {
  margin-top: 30px !important;
}
.mb_top-40 {
  margin-top: 40px !important;
}
.mb_top-50 {
  margin-top: 50px !important;
}
.mb_top-60 {
  margin-top: 60px !important;
}
.mb_top-70 {
  margin-top: 70px !important;
}
.mb_top-80 {
  margin-top: 80px !important;
}
.mb_top-90 {
  margin-top: 90px !important;
}
.mb_top-100 {
  margin-top: 100px !important;
}

.mb_bottom-10 {
  margin-bottom: 10px !important;
}
.mb_bottom-20 {
  margin-bottom: 20px !important;
}
.mb_bottom-30 {
  margin-bottom: 30px !important;
}
.mb_bottom-40 {
  margin-bottom: 40px !important;
}
.mb_bottom-50 {
  margin-bottom: 50px !important;
}
.mb_bottom-60 {
  margin-bottom: 60px !important;
}
.mb_bottom-70 {
  margin-bottom: 70px !important;
}
.mb_bottom-80 {
  margin-bottom: 80px !important;
}
.mb_bottom-90 {
  margin-bottom: 90px !important;
}
.mb_bottom-100 {
  margin-bottom: 100px !important;
}

.w50 {
  width: 50%;
  margin: auto;
}
.w60 {
  width: 60%;
  margin: auto;
}
.w70 {
  width: 70%;
  margin: auto;
}
.w80 {
  width: 80%;
  margin: auto;
}
.w90 {
  width: 90%;
  margin: auto;
}
.w100 {
  width: 100%;
  margin: auto;
}

.w20pconly {
  width: 20%;
  margin: auto;
}
.w30pconly {
  width: 30%;
  margin: auto;
}
.w40pconly {
  width: 40%;
  margin: auto;
}
.w50pconly {
  width: 50%;
  margin: auto;
}
.w60pconly {
  width: 60%;
  margin: auto;
}
.w70pconly {
  width: 70%;
  margin: auto;
}
.w80pconly {
  width: 80%;
  margin: auto;
}
.w90pconly {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 1099.8px) {
  .w20pconly, .w30pconly, .w40pconly, .w50pconly, .w60pconly, .w70pconly, .w80pconly, .w90pconly {
    width: 100%;
    margin: auto;
  }
}

.point {
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 2px 15px 4px 15px;
  border: 0px;
  border-radius: 9999px;
  font-size: 90%;
  color: #ffffff;
  font-weight: 700;
  line-height: 0;
  background-color: #ec662c;
}
.point_red {
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 2px 15px 4px 15px;
  border: 0px;
  border-radius: 9999px;
  font-size: 90%;
  color: #ffffff;
  font-weight: 700;
  line-height: 0;
  background-color: #e31a74;
}
.point_web {
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 2px 15px 4px 15px;
  border: 0px;
  border-radius: 9999px;
  font-size: 90%;
  color: #ffffff;
  font-weight: 700;
  line-height: 0;
  background-color: #822899;
}
.point_tentoh {
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 2px 15px 4px 15px;
  border: 0px;
  border-radius: 9999px;
  font-size: 90%;
  color: #ffffff;
  font-weight: 700;
  line-height: 0;
  background-color: #289928;
}
.point_gray {
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 2px 15px 4px 15px;
  border: 0px;
  border-radius: 9999px;
  font-size: 90%;
  color: #ffffff;
  font-weight: 700;
  line-height: 0;
  background-color: #bbbbbb;
}

.bg-gray {
  background-color: #f2f2f2;
  width: 100%;
  padding: 30px;
}

.text-indent-1 {
  text-indent: 1em;
}

.hevensrock_btn_red {
  display: inline-block;
  padding: 0.7rem 3rem 0.8rem;
  margin-bottom: 3rem;
  background: #e2006e;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 40px;
  font-weight: 700;
}
.hevensrock_btn_red:hover {
  text-decoration: none !important;
  background: rgb(226, 0, 110, .40);
}
.hevensrock_btn_gray {
  display: inline-block;
  padding: 0.2rem 3rem 0.3rem;
  margin-bottom: 3rem;
  background: #7b7b7b;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 40px;
  font-weight: 700;
}
.hevensrock_btn_gray:hover {
  text-decoration: none !important;
  background: rgb(40, 40, 40, .40);
}
.hevensrock_background {
  padding: 1rem;
  color: #fff;
  background: #434f74;
}
.hevensrock_background a{
  color: #fff !important;
}
.hevensrock_title {
  position: relative!important;
  padding: 2.5rem 1rem 2.5rem 1rem!important;
  text-align: center!important;
  background: #d1edfe!important;
}
.hevensrock_section {
  margin-bottom: -1rem!important;
}
.hevensrock_section02 {
  margin-bottom: -5rem!important;
}
.igeshira_btn_red {
  display: inline-block;
  padding: 0.7rem 3rem 0.8rem;
  background: #e2006e;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 80px;
  font-weight: 700;
}
.igeshira_btn_red:hover {
  text-decoration: none !important;
  background: rgb(226, 0, 110, .40);
}
.igeshira_btn_gray {
  display: inline-block;
  padding: 0.7rem 3rem 0.8rem;
  background: #7f7f7f;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 80px;
  font-weight: 700;
}