.p-special__lead{
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width: 899px) {
  .p-special__lead{
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
.memo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.memo_item {
  width: 14.8%;
  position: relative;
  cursor: pointer;
  /***********************************/
}

.memo_item:nth-child(2n+1) {
  margin-left: 0;
}

.memo_item:nth-child(1),
.memo_item:nth-child(7),
.memo_item:nth-child(13),
.memo_item:nth-child(19),
.memo_item:nth-child(25),
.memo_item:nth-child(31),
.memo_item:nth-child(37),
.memo_item:nth-child(43),
.memo_item:nth-child(49),
.memo_item:nth-child(55),
.memo_item:nth-child(61),
.memo_item:nth-child(67),
.memo_item:nth-child(73),
.memo_item:nth-child(79),
.memo_item:nth-child(85),
.memo_item:nth-child(91),
.memo_item:nth-child(97){
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  margin-top: 4%;
  margin-right: 2%;
}

.memo_item:nth-child(2),
.memo_item:nth-child(8),
.memo_item:nth-child(14),
.memo_item:nth-child(20),
.memo_item:nth-child(26),
.memo_item:nth-child(32),
.memo_item:nth-child(38),
.memo_item:nth-child(44),
.memo_item:nth-child(50),
.memo_item:nth-child(56),
.memo_item:nth-child(62),
.memo_item:nth-child(68),
.memo_item:nth-child(74),
.memo_item:nth-child(80),
.memo_item:nth-child(86),
.memo_item:nth-child(92),
.memo_item:nth-child(98){
  -webkit-transform: rotate(7deg);
          transform: rotate(7deg);
  margin-top: 6%;
  margin-right: 2%;
}

.memo_item:nth-child(3),
.memo_item:nth-child(9),
.memo_item:nth-child(15),
.memo_item:nth-child(21),
.memo_item:nth-child(27),
.memo_item:nth-child(33),
.memo_item:nth-child(39),
.memo_item:nth-child(45),
.memo_item:nth-child(51),
.memo_item:nth-child(57),
.memo_item:nth-child(63),
.memo_item:nth-child(69),
.memo_item:nth-child(75),
.memo_item:nth-child(81),
.memo_item:nth-child(87),
.memo_item:nth-child(93),
.memo_item:nth-child(99){
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
  margin-top: 3%;
  margin-right: 2%;
}

.memo_item:nth-child(4),
.memo_item:nth-child(10),
.memo_item:nth-child(16),
.memo_item:nth-child(22),
.memo_item:nth-child(28),
.memo_item:nth-child(34),
.memo_item:nth-child(40),
.memo_item:nth-child(46),
.memo_item:nth-child(52),
.memo_item:nth-child(58),
.memo_item:nth-child(64),
.memo_item:nth-child(70),
.memo_item:nth-child(76),
.memo_item:nth-child(82),
.memo_item:nth-child(88),
.memo_item:nth-child(94),
.memo_item:nth-child(100){
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  margin-top: 6%;
}

.memo_item:nth-child(5),
.memo_item:nth-child(11),
.memo_item:nth-child(17),
.memo_item:nth-child(23),
.memo_item:nth-child(29),
.memo_item:nth-child(35),
.memo_item:nth-child(41),
.memo_item:nth-child(47),
.memo_item:nth-child(53),
.memo_item:nth-child(59),
.memo_item:nth-child(65),
.memo_item:nth-child(71),
.memo_item:nth-child(77),
.memo_item:nth-child(83),
.memo_item:nth-child(89),
.memo_item:nth-child(95),
.memo_item:nth-child(101){
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  margin-top: 2%;
  margin-left: 3%;
}

.memo_item:nth-child(6),
.memo_item:nth-child(12),
.memo_item:nth-child(18),
.memo_item:nth-child(24),
.memo_item:nth-child(30),
.memo_item:nth-child(36),
.memo_item:nth-child(42),
.memo_item:nth-child(48),
.memo_item:nth-child(54),
.memo_item:nth-child(60),
.memo_item:nth-child(66),
.memo_item:nth-child(72),
.memo_item:nth-child(78),
.memo_item:nth-child(84),
.memo_item:nth-child(90),
.memo_item:nth-child(96),
.memo_item:nth-child(102){
  -webkit-transform: rotate(7deg);
          transform: rotate(7deg);
  margin-top: 6%;
  margin-left: 2%;
}


@media screen and (min-width: 900px) {
  .memo_item:hover .memo_img {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: -webkit-transform 0.5s var(--ease-main);
    transition: -webkit-transform 0.5s var(--ease-main);
    transition: transform 0.5s var(--ease-main);
    transition: transform 0.5s var(--ease-main), -webkit-transform 0.5s var(--ease-main);
  }
}

.memo_img {
  position: relative;
  -webkit-transition: -webkit-transform 0.5s var(--ease-main);
  transition: -webkit-transform 0.5s var(--ease-main);
  transition: transform 0.5s var(--ease-main);
  transition: transform 0.5s var(--ease-main), -webkit-transform 0.5s var(--ease-main);
}

.memo_img::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 54%;
  height: 25%;
  background: url(../../img/special/memo/clip.png) no-repeat bottom center;
  background-size: contain;
  z-index: 1;
}

.l-in__contents {
  border: transparent;
  border-radius: 40px;
  -webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.3);
  min-height: 700px;
}

@media screen and (max-width: 899px) {
  .l-in__contents {
    border-radius: 15px;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
    min-height: 400px;
  }
}

.l-in__contents .line {
  width: 100%;
  height: 10px;
  background: #ccc;
  position: absolute;
  top: 30%;
  left: 0;
}

@media screen and (max-width: 899px) {
  .l-in__contents .line {
    height: 6px;
  }
}

.l-in__contents .door {
  width: 20px;
  height: 200px;
  background: #888;
  position: absolute;
  top: calc(30% + 40px);
  left: 40px;
  border-radius: 100px;
}

@media screen and (max-width: 899px) {
  .l-in__contents .door {
    top: calc(30% + 20px);
    width: 12px;
    height: 120px;
    left: 20px;
  }
}

.l-in__contents .foot_01 {
  width: 150px;
  height: 25px;
  background: #888;
  position: absolute;
  bottom: -20px;
  left: 100px;
  border-radius: 5px;
  z-index: -1;
}

@media screen and (max-width: 899px) {
  .l-in__contents .foot_01 {
    left: 40px;
    width: 80px;
    bottom: -10px;
  }
}

.l-in__contents .foot_02 {
  width: 150px;
  height: 25px;
  background: #888;
  position: absolute;
  bottom: -20px;
  right: 100px;
  border-radius: 5px;
  z-index: -1;
}

@media screen and (max-width: 899px) {
  .l-in__contents .foot_02 {
    right: 40px;
    width: 80px;
    bottom: -10px;
  }
}

@media screen and (min-width: 900px) {
  .p-special__contents {
    padding: 58px 80px 80px;
  }
}