.wrapper1{

      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2%;
      text-align: center;

}
.page-title1 {
    font-size: 1.5rem;
    font-family: Comic Sans MS;
    text-transform: uppercase;
    font-weight: normal;
}
label {
    font-size: 13px;
    margin-bottom: 10px;
    display: grid;
}
input[type="text"], input[type="email"], textarea {
    background: rgba(255,255,255,.5);
    border: 1px #cf5e5e solid;
    border-radius: 5px;
    padding: 5px;
  font-size: 14px;
}
textarea {
    width: 100%;
    max-width: 658px;
    height: 8rem;
}
form div {
    margin-bottom: -30px;
}
button, input, select, textarea {
    background: rgba(255,255,255,.5);
    border-style: double;
    color: inherit;
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

/*Page styles*/

.boxes {
  margin: auto;
  padding: 20px;
  background:#d7d7d770;
}

/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  font: 14px/20px 'Open Sans', Arial, sans-serif;

  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid ;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cp_ipselect {
  overflow: hidden;
  width: 60%;
  margin: 1em auto;
  text-align: center;
}
.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
  position: relative;
  border-radius: 2px;
  border: 2px solid #817e87a8;
  border-radius: 5px;
  background: #d7d7d770;
}
.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid skyblue;
  pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
  padding: 8px 38px 8px 8px;
  color: black;
}
.hissu{
  color: red;
}

.jikan{
  font-size: 1.25rem;
    margin-bottom: 10px;
    display: initial;
}

.kakunin{
  background: #ad89e5;
 color: white;
}



.tbl-r02 th {
  background: #1a19203b;
  border: solid 1px #ccc;

  padding: 10px;
}
.tbl-r02 td {
　border: solid 1px #ccc;
  padding: 10px;
}

@media screen and (max-width: 2800px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 100%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
}



.swiper-container {
  width: 100%;
  height: 105px;
}

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s; /* ホバー効果のためのトランジションを追加 */
  }

.swiper-pagination {
  position: relative; /* ドットの位置を調整 */
  bottom: 10px; /* スライドショーの真下に配置 */
  text-align: center;
  margin-top: 20px;
}

.swiper-slide:hover {
  transform: scale(1.05); /* ホバー時に拡大 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ホバー時にシャドウを追加 */
}





.content {
  position: relative;
  width: 200px;
  height: 100%;
}

.ranking {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px; /* 必要に応じてサイズを調整 */
  height: 50px; /* 必要に応じてサイズを調整 */
}

.ranking img {
  width: 100%;
  height: 100%;
}

.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 340px;
}

.slideshow {
  display: flex;
  -webkit-animation: loop-slide 50s infinite linear 0s both;
  animation: loop-slide 50s infinite linear 0s both;
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.content-hover {
  transition: all 0.2s;




}

.content-hover:hover {
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}
.hover-effect {
margin: auto;
width: 95%;
max-width: 900px;
}

.hover-effect img {
width: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect img:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgb(235 74 198 / 69%);
}


.hover-brightness {
    margin: auto;
    width: 95%;
    max-width: 900px;
}

.hover-brightness img {
    width: 80%;
    transition: filter 0.3s ease;
}

.hover-brightness img:hover {
    filter: brightness(1.4);
}



.outer-border {
border-collapse: collapse;
font-family: 'MPLUSRounded1c-Regular', sans-serif;font-weight: bold;
}
.outer-border td {
border: none;
}
.outer-border {
border: 1px solid black;
}

@keyframes shine {
0% {
left: -100%;
}
50% {
left: 50%;
}
100% {
left: 100%;
}
}

.shine {
position: relative;
display: inline-block;
overflow: hidden;
}

.shine::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 200%;
height: 100%;
background: linear-gradient(120deg, rgb(255 255 255 / 0%) 30%, rgb(255 255 255 / 49%) 50%, rgb(241 175 183 / 7%) 50%);
animation: shine 2s infinite;
pointer-events: none;
}
