@charset "utf-8";
/* CSS Document */
@media print, screen and (min-width: 768px) {
  .p-top {
    background-image: url("../images/mv.webp");
    position: relative;
    background-position: center;
    background-color: #f0f0f0;
    border-radius: 15px;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media not all and (min-width: 768px) {
  .p-top {
    background-image: url("../images/mv.webp");
    background-color: #000000;
    padding: 130px 0 50px;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
/*ラベルカラー*/
.sc-01 {
  color: #fff;
  background-color: #2e8b57 !important;
}
.sc-01::after {
  border-color: transparent #2e8b57 transparent transparent !important;
}
.sc-02 {
  color: #fff;
  background-color: #d9a62e !important;
}
.sc-02::after {
  border-color: transparent #d9a62e transparent transparent !important;
}
/*オンライン体験でできること*/
.problems-box {
  background-color: #e9ecf2;
  border-radius: 12px;
  padding: 5px 16px 16px 16px;
}
.problems-arrow {
  font-size: 3.5rem;
  color: #e9ecf2;
  margin: 0 auto;
  margin-left: 45%;
}
.box {
  width: 33%;
  background-color: #e9ecf2;
  border-radius: 12px;
  margin: 0 1%;
  padding: 2em;
}
.c-blue {
  color: #00509d;
}
.c-red {
  color: #b5184f;
}
.c-yellow {
  color: #eeac00;
}
.c-green {
  color: #008c69;
}
.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 1em 2em;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  background: #FFF;
  border-radius: 12px;
}
.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #FFF;
}
.balloon1 p {
  font-size: 1rem;
}
.answer {
  padding: 1em 2em;
  font-size: 1rem;
  margin: 8% 0 8%;
  position: relative;
}
.c-blue-line {
  border-right: 5px double #00509d;
  border-left: 5px double #00509d;
}
.c-red-line {
  border-right: 5px double #b5184f;
  border-left: 5px double #b5184f;
}
.c-yellow-line {
  border-right: 5px double #eeac00;
  border-left: 5px double #eeac00;
}
.c-green-line {
  border-right: 5px double #008c69;
  border-left: 5px double #008c69;
}
.person {
  margin-bottom: 10px;
  text-align: center;
}
.person img {
  width: 80px;
}
.light {
  position: absolute;
  left: 0;
  top: -2em;
}
.light img {
  width: 50px;
  transform: rotate(-30deg);
}
@media screen and (max-width:768px) {
  .box {
    width: 100%;
    margin: 52px 0;
  }
}
/*オンラインツアー一覧ボタン*/
.c-rounded-button_o {
  display: block;
  width: 100%;
  background-color: #f39700;
  padding-top: 9px;
  padding-right: 5px;
  padding-bottom: 9px;
  padding-left: 5px;
  border: 2px solid #f39700;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.p-contetns-contact__button_o {
  width: 680px;
  margin: 15px auto 0;
  text-align: center;
  padding: 1rem;
}
.p-contetns-contact__text_o {
  position: relative;
  display: block;
  font-weight: bold;
  text-align: center;
  word-break: break-all;
  font-size: 1.2rem;
  color: #ffffff;
  transition: color 0.6s;
  z-index: 2;
}
.c-rounded-button_o::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  position: absolute;
  top: 0;
  left: 0;
}
@media (hover: hover) {
  .c-rounded-button_o:not(.is-disabled-hover):hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@media (hover: hover) {
  .c-rounded-button_o:not(.is-disabled-hover):hover .p-contetns-contact__text_o {
    color: #f39700;
  }
}
@media screen and (max-width:768px) {
  .p-contetns-contact__button_o {
    width: 100%;
  }
}