:root {
  --mainColor: #333;
  --lightblue: #aadae6;
  --blue: #2bbde1;
  --pink: #f7a8bb;
  --orange: #f9a53e;
  --red: #f60810;
  --gray: #efefef;
}



#articleLp {
  line-height: 1.75em;
}

#articleLp h3 {
  font-weight: bold;
  font-size: 1.5rem;
}

/* フォントサイズ */
.biggest {
  font-size: 1.8rem;
}

.bigger {
  font-size: 1.4rem;
}

.littleBig {
  font-size: 1.2rem
}

/* フォントサイズ */
/* 色 */
.red {
  color: var(--red);
  font-weight: bold;
}

.blue {
  color: var(--blue);
  font-weight: bold;
}

.orange {
  color: var(--orange);
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

/* 色 */
.img {
  width: 70%;
  margin: 1em auto;
}

@media screen and (max-width:480px) {
  .img {
    width: 100%;
  }
}

.img>a>img {
  animation-duration: 2s;
  animation-name: updown;
  animation-iteration-count: infinite;
}

@keyframes updown {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-6px);
  }
}

.img>img,
.img>a>img {
  vertical-align: bottom;
  width: 100%;
}

.img>a>img:hover {
  opacity: .7;
  cursor: pointer;
}

.video {
  position: relative;
}

.video>video {
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  top: -55vh;
  position: absolute;
}

@media screen and (max-width:610px) {
  .video>video {
    top: -74vw;
  }
}

@media screen and (max-width:480px) {
  .video>video {
    top: -110vw;
  }
}

.center {
  text-align: center;
}

.main {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  box-shadow: 7px 0px 7px -10px rgb(3 0 0), -7px 0px 7px -10px rgb(3 0 0);
}

.topColumn {
  /* text-align: center; */
}

.item>h3 {
  background-color: var(--pink);
  color: #fff;
  padding: .5em .25em;
  margin: 2em auto 1em;
}

.item {
  width: 96%;
  margin: 0 auto;
}

.explain>ul {
  border: 1px solid var(--mainColor);
  border-radius: 8px;
  padding: 1em;
  box-sizing: border-box;
}

.cap {
  font-size: .7em;
}

.small {
  font-size: .7em;
  /* text-align: center; */
  display: block;
}

/* .carousel > img{
  animation-name: opac;
  animation-duration: 3s;
}
.carousel > img:nth-child(2){
  z-index:9998;
  position:relative
}
.carousel > img:nth-child(3){
  z-index:9999;
  position:relative
} */
table {
  width: 100%;
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid var(--blue);
  padding: .25em;
  vertical-align: middle;
}

@media screen and (max-width:480px) {

  th,
  td {
    font-size: 4vw;
  }
}

td>.small {
  display: inline;
}

td>.red>.small {
  display: inline;
}

th {
  background-color: var(--blue);
  color: #fff;
}
td{
  line-height:125%;
}
table>tbody>tr>td:nth-child(1) {
  background-color: rgb(255, 250, 208);
  font-weight: bold;
}

@keyframes opac {
  0% {
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.pc {
  display: block;
}

.sp {
  display: block;
}

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

  .sp {
    display: block;
  }
}

.cta {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 5em;
}

.cta>a {
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 1px #333;
  color: #fff;
  background-color: #3fd43f;
  box-shadow: 0 5px 0 0 #1a591a;
  border-radius: 8px;
  padding: 12px 32px;
  display: inline-block;
}

.footer_menu {
  text-align: center;
}

.footer_menu a {
  color: #777;
}

.kuchikomi{
  margin-top:1em;
}
.kuchikomi_item{
  padding:.5em;
  box-sizing: border-box;
  background-color:#fff3f6;
}
.kuchikomi_top{
  padding-bottom: .5em;
  display: flex;
  align-items: center;
  font-weight:bold;
  color:var(--pink);
  border-bottom:2px solid var(--pink);
}
.kuchikomi_top > img{
  width:50px;
  height:50px;
  margin-right:10px;
}
.kuchikomi_bottom{
  padding-top:.5em
}
#toggle:hover{
  cursor: pointer;
}
#table p{
  text-align: center;
}
#table .plus{
  position:relative;
}

#table .plus:before{
  content:'';
  position:absolute;
  left:-20px;
  top:50%;
  transform:translateY(-50%);
  background-color:#fff;
  width:12px;
  height:2px;
  z-index:999;
}
#table .plus:after{
  content:'';
  position:absolute;
  left:-15px;
  top:50%;
  transform:translateY(-50%);
  background-color:#fff;
  width:2px;
  height:12px;
}
@media screen and (min-width:481px){
  #table th{
    width:160px;
    background-color:#ddd;
  }
}
@media screen and (max-width:480px){
  #table th{
    width:120px;
    background-color:#ddd;
  }
}
#table th,
#table td{
  color:#333;
  border:1px solid #888;
}
#table td{
  background-color:#fff;
  font-weight: normal;
}
#close{
  display: none;
}
.open{
  display: block !important;
  position: relative;
}
.black_circle{
  position:relative
}
.black_circle:before{
  position:absolute;
  content:'';
  left:-24px;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  background-color: #333;
  border-radius:50% ;
}
.plus:after{
  content:'';
  position:absolute;
  left:-15px;
  top:50%;
  transform:translateY(-50%);
  background-color:#fff;
  width:2px;
  height:12px;
}
.minus{
  position: relative !important;
}
.minus:after{
  content:'' !important;
  position:absolute !important;
  top:50% !important;
  transform:translateY(-50%) rotate(90deg) !important;
}

@media screen and (max-width:480px) {
  #header_logo,
  header,
  .footerMenu {
    display: none;
  }
}