@charset "UTF-8";
.main-block {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 6.5em 0 10rem 0;
}
@media screen and (max-width: 767px) {
  .main-block {
    padding: 15rem 0 5rem;
  }
}
.main-block .component-header__inner {
  max-width: 100%;
  padding-left: 0;
}
.main-block .main-top {
  position: relative;
}
.main-block .title {
  position: absolute;
  left: 5%;
  top: -0.3em;
  font-family: Poppins, sans-serif;
  font-size: 15.4rem;
  font-weight: bold;
  color: #3093d9;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .main-block .title {
    left: 2.5rem;
    top: -12.5rem;
    font-size: 7rem;
    width: 100%;
  }
}
.main-block .main {
  padding-left: 40rem;
}
@media screen and (max-width: 767px) {
  .main-block .main {
    padding-left: 2.5rem;
  }
}
.main-block .main img {
  width: 90vw;
  border-top-left-radius: 20px;
  height: 65rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .main-block .main img {
    width: 100%;
    height: auto;
  }
}
.main-block .copy {
  text-align: center;
  padding: 2rem 0 1.5rem 0;
  display: flex;
  font-size: 2rem;
  align-items: center;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .main-block .copy {
    font-size: 1.7rem;
  }
}
.main-block .copy:after, .main-block .copy::before {
  content: "";
  margin: 0 0.5rem;
  display: block;
  width: 2rem;
  top: 0.2rem;
  position: relative;
  height: 1px;
  background-color: #333333;
  transform: rotate(-60deg);
}
.main-block .copy:before {
  transform: rotate(60deg);
}
.main-block .info {
  position: absolute;
  left: 40rem;
  background-color: #fff;
  display: inline-block;
  border-top-right-radius: 20px;
  bottom: 0;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .main-block .info {
    position: static;
    padding: 0 2.5rem;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
  }
}
.main-block .info::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0px;
  width: 15px;
  background-size: 100%;
  height: 15px;
  background-image: url("https://www.ohs.ac.jp/assets/2025_renew/img/common/corner_image.svg");
}
.main-block .info ul {
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .main-block .info ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.main-block .info ul li {
  background-color: #f7f3ef;
  border-radius: 20px;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.main-block .img {
  position: absolute;
  left: 8rem;
  bottom: 0;
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .main-block .img {
    display: none;
  }
}
.main-block .scroll {
  background-image: url("/assets/img/opencampas/main/scroll.png");
  background-repeat: repeat-x;
  height: 50px;
  margin-top: 50px;
  background-size: 950px 45px;
  animation: scrollBackground 15s linear infinite; /* アニメーションの設定 */
}
@media screen and (max-width: 767px) {
  .main-block .scroll {
    margin-top: 2rem;
  }
}
@keyframes scrollBackground {
  0% {
    background-position: 0 0; /* 開始位置 */
  }
  100% {
    background-position: -950px 0; /* 終了位置 */
  }
}

.schedule-block .schedule-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list {
    grid-template-columns: repeat(2, 1fr);
    width: 90vw;
  }
}
.schedule-block .schedule-list li {
  text-align: center;
  border-bottom: 1px solid #999999; /* 上部ボーダー */
  border-right: 1px solid #999999;
  padding: 3rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li {
    padding: 3rem 1.5rem;
    border-bottom: 0;
    border-right: 0;
    border-top: 1px solid #999999; /* 上部ボーダー */
    border-left: 1px solid #999999;
  }
}
.schedule-block .schedule-list li.end::after {
  content: "終了しました";
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.1rem;
  border-radius: 10px;
}
.schedule-block .schedule-list li .btn {
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}
.schedule-block .schedule-list li .text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0 -1rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li .text {
    font-size: 1.4rem;
    margin: 0 -0.5rem;
    min-height: 9.8rem;
  }
}
.schedule-block .schedule-list li:nth-of-type(1) {
  border-top-left-radius: 10px;
  border-top: 1px solid #999999;
  border-left: 1px solid #999999;
}
.schedule-block .schedule-list li:nth-of-type(2) {
  border-top: 1px solid #999999;
}
.schedule-block .schedule-list li:nth-of-type(3) {
  border-top: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li:nth-of-type(3) {
    border-left: 1px solid #999999;
  }
}
.schedule-block .schedule-list li:nth-of-type(4) {
  border-top: 1px solid #999999;
  border-top-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li:nth-of-type(4) {
    border-top-right-radius: 0px;
  }
}
.schedule-block .schedule-list li:nth-of-type(5) {
  border-left: 1px solid #999999;
}
.schedule-block .schedule-list li:nth-of-type(8) {
  border-bottom: 1px solid #999999;
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li:nth-of-type(8) {
    border-bottom-right-radius: 0px;
    border-bottom: 0;
  }
}
.schedule-block .schedule-list li:nth-of-type(9) {
  border-bottom-left-radius: 10px;
  border-left: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li:nth-of-type(9) {
    border-radius: 0;
  }
}
.schedule-block .schedule-list li:nth-of-type(10) {
  border-bottom-left-radius: 0px;
}
.schedule-block .schedule-list li:nth-of-type(11) {
  border-right: 1px solid #999999; /* 右部ボーダー */
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li:nth-of-type(11) {
    border-right: 0;
    border-bottom: 1px solid #999999;
    border-bottom-right-radius: 0px;
  }
}
.schedule-block .schedule-list li:last-of-type {
  border: 0;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li:last-of-type {
    border-top: 1px solid #999999;
    border-left: 1px solid #999999;
    align-items: flex-end;
    padding-bottom: 0;
  }
}
.schedule-block .schedule-list li:last-of-type img {
  width: 11rem;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .schedule-block .schedule-list li:last-of-type img {
    width: 10rem;
    margin-left: 3rem;
  }
}

.special-block .syukuhaku-img {
  margin-bottom: 4.5rem;
}

.program-block .cont {
  color: 333333;
}
.program-block .cont .cont-text .cont-title {
  margin-bottom: 1.3rem;
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .program-block .cont .cont-text .cont-title {
    margin-bottom: 2rem;
  }
}
.program-block .cont .cont-text .cont-explanation {
  margin-bottom: 3rem;
  display: block;
  font-size: 1.4rem;
}
.program-block .cont .cont-text .cont-explanation:last-child {
  margin-bottom: 0;
}
.program-block .cont .cont-text .warning-flex {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .program-block .cont .cont-text .warning-flex {
    justify-content: flex-start;
  }
}
.program-block .cont .cont-text .warning-flex .warning {
  display: inline-block;
  font-size: 1.2rem;
}
.program-block .cont .cont-left {
  margin-bottom: 5rem;
  display: flex;
}
.program-block .cont .cont-left .woman-img {
  margin-right: 7.5rem;
  max-width: 30.3rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767px) {
  .program-block .cont .cont-left .woman-img {
    display: none;
  }
}
.program-block .cont .cont-right {
  display: flex;
}
.program-block .cont .cont-right .man-img {
  margin-left: 7.5rem;
  max-width: 30.3rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767px) {
  .program-block .cont .cont-right .man-img {
    display: none;
  }
}

.access-block .cont {
  width: 100%;
  color: 333333;
}
.access-block .cont .held {
  margin-bottom: 5rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .access-block .cont .held {
    margin-bottom: 2.2rem;
  }
}
.access-block .cont .cont-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .access-block .cont .cont-flex {
    flex-direction: column;
  }
}
.access-block .cont .cont-flex .cont-left {
  margin-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .access-block .cont .cont-flex .cont-left {
    margin-right: 0;
  }
}
.access-block .cont .cont-flex .cont-left .school-img {
  max-width: 44rem;
}
.access-block .cont .cont-flex .cont-left .address {
  margin: 2.8rem 0;
}
@media screen and (max-width: 767px) {
  .access-block .cont .cont-flex .cont-left .address {
    margin: 2rem 0;
  }
}
.access-block .cont .cont-flex .cont-left .detail-btn {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access-block .cont .cont-flex .cont-right {
    margin-top: 4rem;
  }
}
.access-block .cont .cont-flex .cont-right.g-map {
  width: 100%;
  height: 44rem;
}
@media screen and (max-width: 767px) {
  .access-block .cont .cont-flex .cont-right.g-map {
    height: 31.5rem;
  }
}
.access-block .cont .cont-flex .cont-right.g-map iframe {
  width: 100%;
  height: 100%;
}

.report-block .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .report-block .head {
    margin-bottom: 5rem;
  }
  .report-block .head .detail-btn {
    display: none;
  }
}
.report-block .body {
  width: 90vw;
  overflow: hidden;
  margin-left: -7.5rem;
}
@media screen and (max-width: 767px) {
  .report-block .body {
    width: 94vw;
    margin-left: -1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .report-block .body .swiper-container {
    margin-left: 0;
  }
}
.report-block .body .report-slide .swiper-slide {
  width: 46rem;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide .swiper-slide {
    width: 30rem;
  }
}
.report-block .body .report-slide a {
  display: block;
  text-decoration: none;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide a {
    padding: 0 1rem;
  }
}
.report-block .body .report-slide a:hover img {
  transform: scale(1.05);
}
.report-block .body .report-slide .img {
  position: relative;
}
.report-block .body .report-slide .img .img-wrap {
  overflow: hidden;
  border-radius: 10px;
}
.report-block .body .report-slide .img .img-wrap img {
  transition: 0.3s;
  border-radius: 10px;
}
.report-block .body .report-slide .img .date {
  font-family: Poppins, sans-serif;
  text-shadow: 0 0 1px #3093d9, 0 0 1px #3093d9, 0 0 1px #3093d9, 0 0 1px #3093d9, 0 0 1px #3093d9, 0 0 1px #3093d9, 0 0 1px #3093d9;
  color: #fff;
  position: absolute;
  right: -1.5rem;
  bottom: -3rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}
.report-block .body .report-slide .img .date .year {
  line-height: 1;
  font-size: 3rem;
  display: block;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide .img .date .year {
    font-size: 2rem;
  }
}
.report-block .body .report-slide .img .date .day {
  font-size: 10.5rem;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide .img .date .day {
    font-size: 7rem;
  }
}
.report-block .body .report-slide .img .date .week {
  font-size: 4.3rem;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide .img .date .week {
    font-size: 2.5rem;
  }
}
.report-block .body .report-slide .text {
  margin-top: 5rem;
  color: #000;
}
.report-block .body .report-slide .text dt {
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide .text dt {
    line-height: 1.2;
    font-size: 1.6rem;
  }
}
.report-block .body .report-slide .text dt:after {
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  display: block;
  background-image: url("/assets/img/opencampas/report/arrow.svg");
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide .text dt:after {
    width: 2.2rem;
    height: 2.2rem;
    margin-left: 0.5rem;
  }
}
.report-block .body .report-slide .text dd {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .report-block .body .report-slide .text dd {
    line-height: 1.4;
  }
}
.shineninka-block .open-title.horizontal {
  text-align: center;
}
.shineninka-block .logo {
  margin-top: 3.5rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .shineninka-block .logo {
    margin-top: 2.5rem;
  }
}
.shineninka-block .logo::after {
  content: "";
  width: 17rem;
  height: 17rem;
  display: inline-block;
  background-image: url("/assets/img/opencampas/shine/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -57%;
  right: 4%;
}
@media screen and (max-width: 767px) {
  .shineninka-block .logo::after {
    width: 7.2rem;
    height: 7.2rem;
    bottom: -120%;
  }
}
.shineninka-block .logo .catch {
  display: block;
  font-size: 3.6rem;
  background-image: url("/assets/img/opencampas/shine/catch-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 83rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .shineninka-block .logo .catch {
    font-size: 1.7rem;
    background-size: 35rem;
  }
}
.shineninka-block .scroll01 {
  background-image: url("/assets/img/opencampas/shine/title.png");
  background-repeat: repeat-x;
  height: 65px;
  margin-top: 10rem;
  background-size: 1896px 65px;
  animation: scrollBackground01 40s linear infinite; /* アニメーションの設定 */
}
@media screen and (max-width: 767px) {
  .shineninka-block .scroll01 {
    height: 50px;
    background-size: 1458px 50px;
  }
}
@keyframes scrollBackground01 {
  0% {
    background-position: 0 0; /* 開始位置 */
  }
  100% {
    background-position: 1896px 0; /* 終了位置 */
  }
  @media screen and (max-width: 767px) {
    0% {
      background-position: 0 0; /* 開始位置-sp */
    }
    100% {
      background-position: 1458px 0; /* 終了位置-sp */
    }
  }
}
.shineninka-block .scroll02 {
  background-image: url("/assets/img/opencampas/shine/photo.png");
  background-repeat: repeat-x;
  height: 240px;
  margin-top: 3.5rem;
  background-size: 1438px 240px;
  animation: scrollBackground02 30s linear infinite; /* アニメーションの設定 */
}
@media screen and (max-width: 767px) {
  .shineninka-block .scroll02 {
    height: 160px;
    background-size: 958px 160px;
    margin-top: 2.5rem;
  }
}
@keyframes scrollBackground02 {
  0% {
    background-position: 0 0; /* 開始位置 */
  }
  100% {
    background-position: -1438px 0; /* 終了位置 */
  }
  @media screen and (max-width: 767px) {
    0% {
      background-position: 0 0; /* 開始位置-sp */
    }
    100% {
      background-position: 958px 0; /* 終了位置-sp */
    }
  }
}

.root-block .component-section__title {
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .root-block .component-section__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.root-block .open-box {
  margin-top: 5rem;
  border-radius: 1rem;
  border: 1px solid #999999;
}
.root-block .open-box dt {
  cursor: pointer;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2.5rem 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .root-block .open-box dt {
    font-size: 2rem;
    padding: 2rem 2rem 2.5rem 2rem;
  }
}
.root-block .open-box dt.is-show .icon:before {
  transform: scale(1, 0);
}
.root-block .open-box dt .icon {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  border: 1px solid #999999;
  border-radius: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.root-block .open-box dt .icon:after {
  content: "";
  width: 2rem;
  height: 1px;
  background-color: #999999;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.root-block .open-box dt .icon:before {
  content: "";
  width: 1px;
  height: 2rem;
  background-color: #999999;
  position: absolute;
  display: block;
  top: 0;
  transition: 0.3s;
  transform: scale(1, 1);
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.root-block .open-box dd {
  border-top: 1px solid #999999;
  display: none;
  padding: 0 0 2.5rem 0;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .root-block .open-box dd {
    padding: 0 0 2rem 0;
  }
}
.root-block .flow-flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .root-block .flow-flex {
    flex-direction: column;
  }
}
.root-block .mihon-box {
  text-align: center;
  padding: 4rem 4rem 0rem 4rem;
}
@media screen and (max-width: 767px) {
  .root-block .mihon-box {
    padding-top: 0rem;
  }
}
.root-block .mihon-box .title {
  font-size: 2rem;
  margin-bottom: 0.3em;
}
.root-block .mihon-box .img {
  width: 20rem;
  margin-bottom: 0.5rem;
}
.root-block .mihon-box .component-button {
  margin-top: 1em;
  max-height: 4rem;
}

.component-section__content a[href$=".pdf"]:after {
  -webkit-mask-image: url("/assets/img/opencampas/icon-pdf.svg") !important;
          mask-image: url("/assets/img/opencampas/icon-pdf.svg") !important;
}

@media screen and (max-width: 767px) {
  .component-flow__item {
    padding-left: 2.3rem;
    padding-bottom: 1.5rem;
  }
  .component-flow__item .component-flow__heading {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .component-flow__item .component-flow__heading-number {
    padding-right: 1.4rem;
    font-size: 3.5rem;
    margin-right: 1.4rem;
  }
}

.component-button.pdf:after {
  content: "";
  display: block !important;
  width: 1.6rem;
  height: 1.6rem;
  -webkit-mask-image: url("/assets/img/opencampas/icon-pdf.svg") !important;
          mask-image: url("/assets/img/opencampas/icon-pdf.svg") !important;
  background-color: #000 !important;
  top: 50%;
  margin-top: -1.2rem;
}
@media screen and (max-width: 767px) {
  .component-button.pdf:after {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.component-button.pdf:hover:after {
  background-color: #FFF !important;
}

.component-category-nav {
  align-items: flex-start;
}

.component-button {
  line-height: 1.4;
  padding-right: 8rem;
  width: auto;
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  .component-button {
    height: auto;
    padding: 0.8em 4em 0.8em 0.8em;
  }
}

.component-button:after {
  -webkit-mask-image: url("/assets/img/opencampas/arw_button.svg");
          mask-image: url("/assets/img/opencampas/arw_button.svg");
  background: #999;
}

.component-section__frame {
  width: 100%;
  max-width: 124rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.component-section__frame:after {
  content: "";
  width: 10vw;
  height: 1px;
  background-color: #999;
  position: absolute;
  display: block;
  top: -1px;
  right: -10vw;
}
.component-section__frame .flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .component-section__frame .flex {
    flex-direction: column;
    gap: 5rem;
  }
}

.open-title {
  line-height: 1;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .open-title {
    writing-mode: unset;
  }
}
.open-title.horizontal {
  writing-mode: unset;
}
.open-title span {
  display: block;
}
.open-title .title-jp {
  font-weight: bold;
}
.open-title .title-en {
  font-family: Poppins, sans-serif;
  font-size: 9rem;
  font-weight: bold;
  color: #3093d9;
}
@media screen and (max-width: 767px) {
  .open-title .title-en {
    font-size: 5rem;
  }
}

.component-header[data-category=opencampas]:before {
  background-image: url("/assets/img/opencampas/circle.svg");
}

.event .day {
  font-family: poppins, sans-serif;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
}
.event .day em {
  font-size: 1.5rem;
  display: block;
}
.event .week {
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  font-weight: bold;
  color: #fff;
  border-radius: 100px;
  background-color: #da312a;
  line-height: 1;
  display: flex;
  margin: 0.2rem auto 1.2rem auto;
  align-items: center;
  justify-content: center;
}
.event .week.blue {
  background-color: #2a53da;
}
.event .num {
  font-weight: bold;
  margin-bottom: 1rem;
}

.btn {
  display: flex;
  background-color: #3093d9;
  border-radius: 100px;
  height: 3.5rem;
  padding: 0 1.5rem;
  align-items: center;
  color: #fff;
  text-decoration: none;
  text-align: center;
  justify-content: space-between;
  transition: 0.3s;
  gap: 0.5rem;
}
.btn + .btn {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}
.btn.report {
  background-color: #ed7a7a;
}
.btn.pdf {
  background-color: #ff9c32;
}
.btn.pdf:after {
  width: 1.6rem;
  height: 1.6rem;
  -webkit-mask-image: url("/assets/img/opencampas/icon-pdf.svg") !important;
          mask-image: url("/assets/img/opencampas/icon-pdf.svg") !important;
  background-color: #fff !important;
}
.btn:after {
  display: block;
  content: "";
  width: 1.6rem;
  height: 0.6rem;
  -webkit-mask-image: url("/assets/img/opencampas/arrow.svg");
          mask-image: url("/assets/img/opencampas/arrow.svg");
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 767px) {
  .btn:after {
    width: 1.2rem;
  }
}
.btn:hover {
  filter: brightness(1.1);
}

.detail-btn {
  width: 18rem;
  height: 4rem;
  padding: 1.3rem 1.7rem;
  border: 1px solid #555555;
  border-radius: 50px;
  color: #555555;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.detail-btn span {
  position: relative;
  z-index: 2;
}
.detail-btn::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: #555;
  scale: 0 1;
  transform-origin: right top;
  transition: scale 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: scale;
}
.detail-btn::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 0.6rem;
  -webkit-mask-image: url("/assets/img/opencampas/arrow.svg");
          mask-image: url("/assets/img/opencampas/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #555555;
}
.detail-btn:hover {
  color: #fff;
}
.detail-btn:hover::before {
  scale: 1 1;
  transform-origin: left top;
}
.detail-btn:hover:after {
  background-color: #fff;
}

.pc {
  display: inline;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inline;
  }
}/*# sourceMappingURL=style.css.map */