@charset "UTF-8";
:root {
  --bg: #ccc;
  --text: #111;
  --red: #b5001f;
}

.pane-contents {
  overflow: hidden;
}

#tomedain {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  color: var(--text);
  /*【PC】*/
  /*【SP】*/
}
#tomedain .header_mv {
  position: relative;
  overflow: hidden;
}
#tomedain .header_mv .inner {
  position: relative;
  max-width: 1300px !important;
}
#tomedain .header_mv:before {
  content: "";
  position: absolute;
  background: #fffbb3;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  left: 0;
  top: 0;
  z-index: 2;
}
#tomedain .header_mv .box {
  width: 60%;
  margin: 0 0 0 auto;
  z-index: 3;
  position: relative;
  padding: 30px 0;
}
#tomedain .header_mv .box .top {
  display: flex;
  align-items: center;
}
#tomedain .header_mv .box .top .t_1 {
  font-weight: bold;
  font-size: 1.8em;
}
#tomedain .header_mv .box .top img {
  width: 100px;
  margin: 0 0 0 auto;
}
#tomedain .header_mv .box .title img {
  width: 100%;
  margin: 10px 0;
}
#tomedain .header_mv .box ul {
  display: flex;
  grid-gap: 20px;
  margin: 10px 0;
}
#tomedain .header_mv .box ul li {
  position: relative;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
#tomedain .header_mv .box ul li .ribon {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 100px;
}
#tomedain .header_mv .box ul li .red {
  font-weight: bold;
  font-size: 2.4em;
  line-height: 1.2;
  margin: 0 0 10px 0;
}
#tomedain .header_mv .box ul li .red span {
  font-size: 0.8em;
}
#tomedain .header_mv .box ul li:nth-child(1) {
  background: repeating-linear-gradient(to bottom, #d3dae8, #d3dae8 7px, #fff 7px, #fff 8px);
}
#tomedain .header_mv .box ul li:nth-child(2) {
  background: repeating-linear-gradient(to bottom, #fadfcc, #fadfcc 7px, #fff 7px, #fff 8px);
}
#tomedain .header_mv .box ul li .iyaku {
  font-size: 0.8em;
  border: 1px solid #111;
  display: inline-block;
  line-height: 1;
  padding: 4px 7px;
  margin: 10px 0 5px;
}
#tomedain .header_mv .box .bottom {
  text-align: center;
  font-size: 0.8em;
}
#tomedain .header_mv .bg_img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
#tomedain .header_mv .bg_img div {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
#tomedain .header_mv .bg_img div img {
  max-width: 70%;
}
#tomedain .header_mv .bg_img [class*=bg_] {
  animation: switch 50s infinite;
}
@keyframes switch {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#tomedain .header_mv .bg_img [class*=bgaf_] {
  animation: switch_af 50s infinite;
}
@keyframes switch_af {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
    transform: translateY(-50%) scale(1.3) rotate(-5deg);
  }
  100% {
    opacity: 0;
  }
}
#tomedain .header_mv .bg_img .bg_01 {
  animation-delay: 0s;
}
#tomedain .header_mv .bg_img .bgaf_01 {
  animation-delay: 5s;
}
#tomedain .header_mv .bg_img .bg_02 {
  animation-delay: 10s;
}
#tomedain .header_mv .bg_img .bgaf_02 {
  animation-delay: 15s;
}
#tomedain .header_mv .bg_img .bg_03 {
  animation-delay: 20s;
}
#tomedain .header_mv .bg_img .bgaf_03 {
  animation-delay: 25s;
}
#tomedain .header_mv .bg_img .bg_04 {
  animation-delay: 30s;
}
#tomedain .header_mv .bg_img .bgaf_04 {
  animation-delay: 35s;
}
#tomedain .header_mv .bg_img .bg_05 {
  animation-delay: 40s;
}
#tomedain .header_mv .bg_img .bgaf_05 {
  animation-delay: 45s;
}
@media (max-width: 768px) {
  #tomedain .header_mv .bg_img {
    display: none;
  }
  #tomedain .header_mv .box {
    width: 100%;
    padding: 10px 0;
  }
  #tomedain .header_mv .box .top .t_1 {
    font-size: 0.9em;
  }
  #tomedain .header_mv .box .top img {
    width: 60px;
  }
  #tomedain .header_mv .box .title img {
    margin: 5px 0;
  }
  #tomedain .header_mv .box ul {
    grid-gap: 10px;
  }
  #tomedain .header_mv .box ul li {
    padding: 10px;
    border-radius: 5px;
  }
  #tomedain .header_mv .box ul li .ribon {
    left: -2px;
    top: -2px;
    width: 40px;
  }
  #tomedain .header_mv .box ul li .red {
    font-size: 1.2em;
  }
  #tomedain .header_mv .box ul li .iyaku {
    font-size: 0.6em;
    padding: 1px 2px;
  }
}
#tomedain h1,
#tomedain h2,
#tomedain h3,
#tomedain h4 {
  background: none;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
#tomedain .red {
  color: var(--red);
}
#tomedain .mini {
  font-size: 0.8em;
}
#tomedain sup {
  font-size: 0.7em;
  vertical-align: text-top;
}
#tomedain .k {
  font-size: 0.7em;
}
@media screen and (min-width: 769px) {
  #tomedain .inner {
    min-width: 1000px;
    max-width: 1000px;
    margin: auto;
    width: calc(100% - 50px);
  }
  #tomedain .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #tomedain .inner,
  #tomedain .inner_mini {
    padding: 0 5%;
  }
  #tomedain .pc {
    display: none;
  }
}/*# sourceMappingURL=original.css.map */