@charset "utf-8";
/* oc2025 */
:root {
  --brand-color: rgb(var(--brand-color-rgb));
  --brand-color-rgb: 255,171,108; /*#FFA319; */

  --brand-color-pale: rgb(var(--brand-color-pale-rgb));
  --brand-color-pale-rgb: 255,197,113;

  --color-black: rgb(var(--color-black-rgb));
  --color-black-rgb: 25,25,25;
  --color-white: #ffffff;
  --color-bage: #FDF8EE;

  --color-pink: rgb(var(--color-pink-rgb));
  --color-pink-rgb: 255,150,255; /* #FF649C */
  --color-pink-deep: #EB6CDA;
  --color-green: rgb(var(--color-green-rgb));
  --color-green-rgb: 112,245,254;
  --color-green-pale: 182,242,246;
  --color-disabled: #ececec;
  --color-disabled-tex: #444545;
  --color-closed-tex: #909191;
  --color-yellow: #FFDF3F;

  --color-info:rgb(var(--color-info-rgb));
  --color-info-rgb: 125,181,255;
  --color-art: rgb(var(--color-art-rgb));
  --color-art-rgb: 255,125,125;
  --color-soug: rgb(var(--color-soug-rgb));
  --color-soug-rgb: 255,202,58;
  --color-sport: rgb(var(--color-sport-rgb));
  --color-sport-rgb: 62,227,217;

  --font-size-sp: 0.875rem;
  --font-pc: 1rem;
  --font-size-evDay: min(7.47vw,2rem);
  --font-size-evDay-closed: clamp(18px, 5vw, 24px);;

  --border-radius-s: 4px;
  --border-radius-m: 8px;

  --wrap-width: 1220px;
  --media-pc: 980px;

    /* Spacing */
    --spacing-unit: 50px;
    --spacing-vertical: calc(var(--inner-padding) * 2);
  --padding-section: 80px;

  --inner-padding: 50px;
  --border-ttl-width: 5px;
  --border-radius: 7px;
  --border-radius-large: 16px;
}
body {
  font-size: var(  --font-size-sp);}
.ocContent p,
.oc2025 p {
  line-height: 1.8;}
.bg_white {
  background: #fff;}
.wrap {
  max-width: var(--wrap-width);}
.inWrap {
  max-width: var(--media-pc);
  margin: 0 auto;
  padding: 0 10px;}
.in-b {
  display: inline-block;}
  .ocContent p.comment {
    margin-top: 0;
    font-size: 0.875em;
    padding-top: 0 !important;
  }
.ttl-round {
  border-radius: 1000px;
  position: relative;}

.event-card {
  padding: 0;
  background: #fff;}
.event-card h3 {
  margin-top: 0;}

.ttl-box-org {
  position: relative;
  margin-top: 0;}
.ttl-box-org > span {
  font-size: 1.125rem;
  display: block;
  width: 8em;
  background: var(--brand-color);
  margin: 0 auto;
  position: relative;
  z-index:1;
  text-align: center;
  border-radius: 1000px;
  padding: .8em 0;}
.ttl-round, .ttl-box-org > span {
  width: min(423px, 85%);}
.ttl-box-org > span {
 background: linear-gradient(to right, #fcd471, #f8a9e3);}
.ttl-round {
  font-size: 1.125rem;
  padding: .9em 0;
  position: relative;
  background: var(--color-green);}
a.btn-o-b {
  background: #FDCF6A;
  background: linear-gradient(90deg, rgba(253, 207, 106, 1) 0%, rgba(255, 239, 123, 1) 100%);
  color: var(--color-black);
  text-decoration: none;
  padding: 3px;
  display: block;
  font-weight: 700;
  border-radius: 1000px;
  width: min(80%, 260px);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;}
a.btn-o-b span {
  background: var(--color-pink);
  position: relative;
  display: block;
  padding: 1em;
  border-radius: 1000px;}
a.btn-o-b::before, a.btn-o-b span::after {
  content: "";
  display: block;}
a.btn-o-b span::after {
  height: 10px;
  width: 10px;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);}

/* eventList */
ul.ocEvList{
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  padding-bottom: 10px;}
ul.ocEvList {
  --box-padding-left: 2.5px;
  --box-padding-right: 5px;
  margin: 44px calc(var(--box-padding-right) * -1) 0 calc(var(--box-padding-left) * -1);}
ul.ocEvList.row {
  justify-content: flex-start;}
.ocEvList li.cellOuter {
  position: relative;
  margin: 8px 0 0;
  padding-right: var(--box-padding-right);
  padding-left: var(--box-padding-left);
  flex-basis: calc(100% / 3);}
.ocEvList .cellOuter::before {
  position: absolute;
  top: 2px;
  left: 5px;
  display: block;
  width: calc(100% - var(--box-padding-left) - var(--box-padding-right));
  height: 100%;
  content: '';
  border: 1px solid var(--brand-color);
  background: var(--brand-color);
  border-radius: calc(var(--border-radius-s) + 1px);
  transition: all 0.2s ease;}
.ocEvList .cellOuter.closed::before {
  display: none;
}
.ocEvList.comming .cellOuter::before {
  border-color: var(--brand-color);}
.ocEvList .cell {
  font-family: var(--font-family);
  font-size: var(--font-size-evDay);
  font-weight: var(--font-weight-Bold);
  line-height: 1.8;
  background: #fff;
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-black);
  transition: all 0.3s ease;
  font-weight: 700;
  padding: .08em 0;}
.ocEvList .closed .cell {
  font-size: var(--font-size-evDay-closed);
}
.ocEvList .closed .cell .week {
 font-size: 52%;}
.ocEvList .cell {
  border-radius: 6px;}
.eventList li.cell {
  flex-basis: calc(100% / 3);
  border-width: 1px 1px 1px 0;
  margin: 40px 0 0!important;
  line-height: 1.2;
  padding: 0.4em 0;}
.eventList li.cell:nth-of-type(4n-3) {
  border-left-width: 1px;}
.tag-org {
  background: var(--brand-color);
  border-radius: var(--border-radius-s);
  line-height: 1em;}

@media screen and (min-width: 960px){
  ul.eventList div{
    margin: 20px 0 -30px; 
    font-weight: bold;}
  .side-deco {
   padding: 0 50px;
   position: relative;}
  .side-deco::before ,.side-deco::after {
    content: "";
  background-image: url(/img/page/examinee/opencampus2026/bg_side_yallow.svg);
  background-repeat: repeat;
  background-size: auto; /* または contain / 100px など */
  height: 100%;
  width: 50px;
  top: 0;
  position: absolute;
  z-index: 2;}
  .side-deco::before {
    right: 0;
  }
  .side-deco::after {
   transform: rotate(180deg);
   left: 0;
  }
}

@media screen and (max-width: 959px){
  ul.eventList div{
    margin: 15px 0 -15px; 
    font-weight: bold;}
}

.ocEvList .cell::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: min(0.65vw, 10px);}
.ocEvList .cellOuter:not(.closed):hover .cell , .ocEvList .cellOuter:not(.comming):hover .cell {
  transform: translate(2.5px, 3px);}
.ocEvList .cellOuter.coming .cell {
  background: var(--color-disabled);
  color: var(--color-disabled-tex);}
.ocEvList .cellOuter.closed .cell {
  background: transparent;
  padding: 0.4em 0 0.3em;
  border-color: #AAAAAA;
  color: var(--color-closed-tex);}
.ocEvList .cellOuter.closed {
  flex-basis: calc(100% / 4);
  display: flex;
  flex-direction: column;
  justify-content: center;}
.ocEvList .closed .cell::after {
  display: none;}
.ocEvList .cellOuter.closed:hover .cell, .ocEvList .cellOuter.coming:hover .cell {
  border-color: var(--color-blue2);
  pointer-events: none;
  color: #444;
  transform: translate(0, 0);}
.ocEvList .closed .cell::before, .ocEvList .coming .cell::before {
  font-size: 28.57%;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(7em + 6px);
  color: var(--color-white);
  border-radius: 4px 0 4px 0;
  padding: 0 3px;}
.ocEvList .coming .cell::before {
  background: var(--brand-color);
  content: '準備中';}
.ocEvList .closed .cell::before {
  background: #909191;
  content: '終了しました';
  font-size: 40%}
.ocEvList .next-year > div {
  position: relative;}
.ocEvList .next-year > div::after {
  content: '2026';
  display: block;
  position: absolute;
  font-size: 0.8em;
  top: 0;
  right: 0;
  left: right;
  z-index: 1;
  font-weight: 700;
  line-height: 1em;
  padding-bottom: 1px;
  color: #fff;
  background: #000;
  padding: 2px 0.5em;
  border-radius: 0 4px;}
.ocEvList .coming .cell .week {
  background: #F19EF1;
  color: var(--color-disabled);}
.ocEvList .closed .cell .week {
  background: #909191;
  color: var(--color-disabled);}
.ocEvList .cell .date,
.eventList .cell .date {
  margin: auto;}
.ocEvList .cell .week {
  font-size: 32%;
  line-height: 1.4;
  display: inline-block;
  width: 1.39em;
  height: 1.39em;
  position: relative;
  bottom: 0.3em;
  color: #fff;
  border-radius: 3px;
  background: var(--color-pink);
  margin-left: 0.15em;}

ul.oc-dot {
  margin: 0;
  list-style: none;
  padding: 0;}
ul.oc-dot li {
  position: relative;
  padding-left: 1em;}
ul.oc-dot li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--brand-color);
  border-radius: 100000px;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);}

.btn-o-s, .btn-o-s-out {
  background: var(--color-pink);
  font-weight: 700;
  text-align: center;
  position: relative;
  border-radius: 1000px;
  padding: .4em .8em .4em 2em;
  display: inline-block;
  color: var(--color-black);
  text-decoration: none;}
.btn-o-s {
  padding: .4em .8em .4em 2em;}
.btn-o-s-out {
  padding: .4em 2em .4em .8em;}
.btn-o-s::before,
.btn-o-s-out::before{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 3px solid var(--color-black);
  border-right: 3px solid var(--color-black);
  position: absolute;}
.btn-o-s::before {
  transform: rotate(135deg) translateY(-50%);
  left: .5em;
  top: calc(50% - 8px);}
.btn-o-s-out::before {
  transform: rotate(47deg) translateY(-50%);
  right: 1em;
  top: 50%;}

.tag-box > div{
  color: var(--color-black);
  font-weight: 700;
  border-left: none;
  display: inline-block;
  width: 12em;
  text-align: center;
  padding: 1.5em .5em 1.5em 0;
  border-radius: 0 1000px 1000px 0;}

.tag-box > div.jizen {
  background: var(--color-pink);}
.tag-box > div.heijitu {
  background: var(--color-green);}

@media screen and (max-width: 959.99px){
  #oc-information::after {
    content: "";
    width: 306px;
    height: 190px;
    display: block;
    background: url(/img/page/examinee/opencampus2026/img_sanka_left.png) no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, calc(-100% + 1px));}
}
@media screen and (min-width: 960px){
  body {
    font-size: var(--font-pc);}
  .ocEvList li.cellOuter {
    margin-right: calc(60px / 4);
    margin-top: 20px;}
  .ocEvList li.cellOuter  {
    flex-basis: calc(100% / 4 - 60px / 4);}
  .ocEvList li.cellOuter.closed  {
    flex-basis: calc(100% / 5 - 60px / 5);}
  .ocEvList .cellOuter::before {
    top: 3px;
    left: 5px;
    border: 3px solid var(--brand-color);}
  .ocEvList .coming .cell::before,
  .ocEvList .closed .cell::before {
    font-size: 15px;
    line-height: 1em;
    padding: 1px 0 4px;
    border-radius: 6px 0 8px 0;}
  .ocEvList .closed .cell::before {
    padding: 2px 0 3px;}
  .ocEvList .cell {
    font-size: 2.375em;}
  .ocEvList .cellOuter.closed .cell {
    padding: 0.6em 0;
  }
  #oc-information > .wrap >.event-card:nth-of-type(1) {
    position: relative;}
  #oc-information > .wrap >.event-card:nth-of-type(1):before,  #oc-information > .wrap >.event-card:nth-of-type(1):after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 100% auto;
    top: 0;
    position: absolute;}
   #oc-information > .wrap > .event-card:nth-of-type(1):before {
    background-image: url(/img/page/examinee/opencampus2026/img_sanka_left.png);
    width: 309px;
    height: 107px;
    transform: translate(0, calc(-100% + 1px));
  }
   #oc-information > .wrap > .event-card:nth-of-type(1):after {
    background-image: url(/img/page/examinee/opencampus2026/img_sanka_right.png);
    width: 145px;
    height: 134px;
    right: 0;
    transform: translate(-40px, -120%);
  }
}

@media screen and (min-width: 1221px){
  .wrap {
    padding: 0;}
}

.ocContent {
  overflow: hidden;}
#oc-information {
  background: rgb(var(--color-green-pale));
  position: relative;
  margin-top: 140px;}

#oc-information .wrap {
  padding: 20px 20px 50px;}
#oc-information .event-card {
  border-radius: 8px;}
#oc-information .event-card:not(:last-child){
  margin-bottom: 40px;}
#oc-information h4 {
  padding: .8em;
  background: rgb(var(--color-green-pale));
  margin-bottom: .5em;}
#oc-information h4 + p {
  margin-top: 0;}
#oc-information .attention {
  background: rgba(var(--color-pink-rgb), 0.3);
  padding: 1em;
  margin-bottom: 0;}
#oc-information h3{
  font-size: 1.125rem;
  padding: 1em;}
#oc-information .event-card {
  padding: 1em;}
.info-traffic .btn-o-s-out{
  padding-top: .8em;
  padding-bottom: .8em;}
#oc-information li {
  margin-bottom: .5em;}
#oc-information li:last-child {
  margin-bottom: 0;}
.info-traffic .btn-o-s-out {
  padding-top: .5em;
  padding-bottom: .5em;}
#oc-information .round-both {
  background: var(--color-yellow);
  border-radius: 1000px;
    width: 60%;
    margin: 0 auto;
  text-align: center;}

@media screen and (min-width: 960px){
  #oc-information {
    margin-top: 100px;}
  #oc-information .event-card {
    padding: 20px 40px 40px;}
  .info-traffic .flex {
    display: flex;}
  .info-traffic .flex > div {
    width: 50%;}
  .info-traffic .img {
    width: min(80%, 800px);
    margin: 2em auto;}
  .info-traffic .flex > div:nth-of-type(1) {
    margin-right: 20px;}
  .info-traffic .flex > div:nth-of-type(2) {
    margin-left: 20px;}
  #oc-information p, #oc-information ul {
    padding: .5em;}
  #oc-information .attention span {
    display: table;
    margin: 0 auto;}
  #oc-information h3 {
    font-size: 1.5em;
    margin-bottom: .8em;}
  #oc-information::after {
    content: "";
    width: 1049px;
    height: 207px;
    transform: translate(-50%, calc(40px - 100%));}
  #oc-information h2 {
    padding: 1em 0;}
}

/* googlemap */
.ocContent .access-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;}
.ocContent .access-iframe {
  position: relative;
  overflow: hidden;
  height: 228px;}
@media screen and (max-width: 959px) {
  .ocContent .access-iframe {
    height: 50vw;
    max-height: 228px;}
  .pconly {
    display: none !important;}
}
@media screen and (min-width: 959px) {
  .program-all {
    display: flex;
    flex-wrap: wrap;}
  .program-all .event-card {
    width: calc(100% / 3 - 20px);
    margin: 10px;}
  .sponly {
    display: none !important;}
}

/* アコーディオンの動き */
.event-card {
  transition: .5s all;}
.tgle-btn + div {
  display: none;
  transition: .5s all;
  animation: animate-fade2 .4s linear 0s forwards;}
.tgle-btn.tgle-open + div {
  display: block;
  animation: animate-fade .4s linear 0s forwards;
  transition: .5s all;}

@keyframes animate-fade{
  0%{
    display: none;
    transform: translateY(-20px); }
  1% {
    display: block;
    opacity: 0;}
  100%{
    opacity: 1;
    transform: translateY(0); }
}
@keyframes animate-fade2{
  0%{
    display: block;
    transform: translateY(0); }
  98% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    display: none;}
}

/* intersection */
.ob-tgt {
  opacity: 0;
  transform:translateY(-50px);}
.ob-tgt.in-view {
  opacity: 1;
  transform:translateY(0);
  transition: .6s all;
  animation-fill-mode: forwards;}

/* kv animation */
    #lottie {
      width: 100%;
      margin: 0 auto;
    }
