:root {
  --color-white: #fff;
  --color-black: #000;
  --color-blue: #372fc4;
}

@keyframes loop_x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shape_hand {
  0% {
    transform: translateX(-5%);
  }
  50% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(-5%);
  }
}
@keyframes vibration {
  0% {
    transform: translateY(0);
  }
  16% {
    transform: translateY(20px);
  }
  32% {
    transform: translateY(-15px);
  }
  48% {
    transform: translateY(5px);
  }
  64% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tenmetu {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0.3;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.l-section {
  padding-top: 2rem;
}
@media screen and (max-width: 859px) {
  .l-section {
    padding-top: 0rem;
  }
}
.l-section__ttl-content {
  padding: 0;
}
.l-section__ttl h2 {
  width: 48.5rem;
}
@media screen and (max-width: 859px) {
  .l-section__ttl h2 {
    width: 17rem;
  }
}
.l-section__ttl-ja {
  width: 5.6rem;
}
@media screen and (max-width: 859px) {
  .l-section__ttl-ja {
    width: 2.3rem;
  }
}

.p-guide__list {
  transform: translateY(30px);
  opacity: 0;
}
.is-load .p-guide__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.2s;
}
.p-guide__list-item + .p-guide__list-item {
  margin-top: 2rem;
}
@media screen and (max-width: 859px) {
  .p-guide__list-item + .p-guide__list-item {
    margin-top: 1rem;
  }
}
.p-guide__attention {
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 10rem;
  transform: translateY(30px);
  opacity: 0;
}
.p-guide__attention.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 859px) {
  .p-guide__attention {
    margin-top: 5rem;
  }
}
.p-guide__attention-inner {
  line-height: 1.85;
  padding: 7.9rem 9rem 5.4rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 859px) {
  .p-guide__attention-inner {
    line-height: 1.8;
    padding: 2.5rem 1.5rem 1.1rem;
  }
}
.p-guide__attention-ttl {
  font-weight: 700;
  margin-bottom: 2.3rem;
}
@media screen and (max-width: 859px) {
  .p-guide__attention-ttl {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
  }
}
.p-guide__attention-list-item {
  text-indent: -1rem;
  padding-left: 1rem;
  margin-top: 1rem;
}
.p-guide__list-text .p-guide__attention-list-item {
  margin-top: 0.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 859px) {
  .p-guide__attention-list-item {
    font-size: 1.25rem;
    text-indent: -0.9rem;
    padding-left: 0.9rem;
    margin-top: 0.5rem;
  }
}
.p-guide__attention-text {
  margin: 3.2rem 0;
}
@media screen and (max-width: 859px) {
  .p-guide__attention-text {
    font-size: 1.25rem;
    margin: 2.3rem 0;
  }
}
@media screen and (max-width: 859px) {
  .p-guide__attention-contact {
    font-size: 1.25rem;
  }
}
.p-guide__attention-contact-ttl {
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 859px) {
  .p-guide__attention-contact-ttl {
    font-size: 1.3rem;
  }
}
.p-guide__attention-contact a {
  color: var(--color-white);
}
.p-guide__list-text a{
  color: var(--color-white);
}

@media (hover: hover) {
  .p-guide__attention-contact a:hover {
    text-decoration: none;
  }
  .p-guide__list-text a:hover{
    text-decoration: none;
  }
}

.sample_box{
  display: flex;
  flex-wrap: wrap;
  margin-top:4rem;
}

@media screen and (min-width: 860px) {
  .sample{
    width: 49%;
    margin-left: 2%;
    margin-top:2%;
    max-width: 800px;
  }
  .sample:nth-child(2n+1){
    margin-left: 0;
  }
  .sample:nth-child(n+1):nth-child(-n+2){
    margin-top:0;
  }
}

@media screen and (max-width: 859px) {
  .sample_box{
    display: block;
    width: 100%;
    margin-top:3rem;
  }
  .sample{
    width: 100%;
    margin-top:2%;
  }
}

.line{
  width: 20%;
  max-width: 500px;
  margin:1% 0 2%;
}
@media screen and (max-width: 859px) {
  .line{
    width: 50%;
    margin:2% 0 3%;
  }
}