@keyframes yurari {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurari_2deg {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes yurari_1deg {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes yurari_10deg {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  40% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes passing-bar {
  0% {
    transform: scaleX(0) translateX(-100%);
  }
  50% {
    transform: scaleX(1) translateX(0);
  }
  51% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 20px);
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 20px);
    height: 100%;
    opacity: 1;
  }
}
p,
a,
li,
dt,
dd,
th,
td {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  p,
  a,
  li,
  dt,
  dd,
  th,
  td {
    line-height: 1.8;
  }
}

.display_w600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .display_w600 {
    display: block;
  }
}

.f_en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.item-post section {
  padding-top: 0;
}

.box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .box {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .box {
    margin-bottom: 40px;
  }
}

.item._img {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .item._img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.item._img img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
}
.item._txt {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .item._txt {
    width: 100%;
    margin-bottom: 20px;
  }
}

.title03 {
  background-color: var(--main);
  background-color: #333;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .title03 {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .title03 {
    padding: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .title03 {
    margin-bottom: 20px;
  }
}

.item-post-cat__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  gap: 2% !important;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .item-post-cat__list {
    margin-bottom: 30px;
  }
}

.item-post-cat__item {
  width: 15%;
  margin-bottom: 10px;
  background-color: #efefef;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .item-post-cat__item {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .item-post-cat__item {
    width: 31% !important;
    font-size: 10px;
  }
}
.item-post-cat__item a {
  display: block;
  background-color: #efefef;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .item-post-cat__item a {
    padding: 2.5px 5px;
  }
}
@media screen and (max-width: 1024px) {
  .item-post-cat__item a {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .item-post-cat__item a {
    font-size: 10px;
  }
}
.item-post-cat__item a:hover {
  background-color: var(--main);
  color: #fff;
  transition: all 0.3s;
}
.item-post-cat__item.is-current a {
  background-color: var(--main);
  color: white;
}
@media screen and (max-width: 1024px) {
  .item-post-cat__item .tab-panel-a .tab {
    width: 47% !important;
  }
}

.results__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  background-color: #f3f3f3;
  border-radius: 10px;
  padding: 40px;
}

.results__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .results__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.results__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.results__item a h3 {
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
  padding-left: 16px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .results__item a h3 {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .results__item a h3 {
    padding-left: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .results__item a h3 {
    margin-bottom: 10px;
  }
}
.results__item a h3::before {
  content: "";
  display: block;
  width: 3px;
  height: 70%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--main);
  z-index: 1;
}
.results__item a .img {
  margin-bottom: 20px;
  aspect-ratio: 412/309;
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .results__item a .img {
    margin-bottom: 10px;
  }
}
.results__item a .img img {
  aspect-ratio: 412/309;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 0.3s;
}
.results__item a p {
  margin-bottom: 0;
}
.results__item a p .red {
  color: var(--main);
}
.results__item a p .num {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--main);
}
.results__item a p.link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--txt-Color);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .results__item a p.link {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .results__item a p.link {
    margin-top: 10px;
  }
}
.results__item a p.link::after {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/icon_arrow.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 10px;
  height: 11px;
  background-color: var(--main);
}
.results__item a:hover .img img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.results__item a:hover .link {
  color: var(--main);
  transition: all 0.3s;
}

.item__cat__item a {
  background-color: var(--main);
  font-size: 1.2rem;
  color: #fff;
  display: block;
  padding: 0px 10px;
  border: solid 1px var(--main);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .item__cat__item a {
    font-size: clamp(12px, 0.6rem, 0.6rem);
  }
}
@media screen and (max-width: 1024px) {
  .item__cat__item a {
    padding: 0px 5px;
  }
}
.item__cat__item a:hover {
  background-color: #fff;
  color: var(--main);
  transition: all 0.3s;
}

.item__detail__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .item__detail__list {
    margin-bottom: 30px;
  }
}
.item__detail__list dt {
  width: 30%;
  font-weight: bold;
  border-bottom: dotted 1px #ddd;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .item__detail__list dt {
    padding: 5px;
  }
}
.item__detail__list dd {
  width: 70%;
  border-bottom: dotted 1px #ddd;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .item__detail__list dd {
    padding: 5px;
  }
}

.message {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .message {
    margin-bottom: 30px;
  }
}

.btn {
  max-width: 600px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .btn {
    max-width: 300px;
  }
}

.purchase-history .panel {
  background-color: #f3f3f3;
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .purchase-history .panel {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .purchase-history .panel {
    padding: 20px;
  }
}

.btn_line {
  display: block;
  font-size: 1.8rem;
  padding: 15px;
  text-align: center;
  margin-left: 0;
  background-color: #00b600;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s;
  font-weight: 600;
  border: 2px solid #00b600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .btn_line {
    border-radius: 5px;
  }
}
.btn_line:hover {
  background-color: #fff;
  color: #00b600;
}