@charset "utf=8";

.fadeInd {
    transform: translate3d(0, 50px, 0);
    transition: 1s;
    opacity: 0;
  }
  .fadeInd.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
/* 見出し */
.plan-room-top{
    padding-top: 8em;
}
.plan-room-top h1{
    width: 12em;
    display: block;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 4em;
    padding-bottom: 0.5em;
    border-bottom: 3px solid #000;
    margin: 0 auto 1.5em;
    position: relative;
}
.plan-room-top h1::before {
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 8em;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    content: 'PLAN•ROOM';
    z-index: -1;
}

/* 見出し下リンク */
.plan-topmenu{
    text-align: center;
    margin-top: 8em;
}
.plan-topmenu ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan-topmenu ul li{
    margin: 0 3em;
    transition: 0.3s;
}
.plan-topmenu ul li .fm-link{
    display: inline-block;
    background-color: #38bfff;
    color: #fff;
    border-radius: 33px;
    transition: 0.3s;
    padding: 1em 3em;
    text-align: center;
}
.plan-topmenu ul li .cp-link{
    display: inline-block;
    background-color: #f84d4e;
    color: #fff;
    border-radius: 33px;
    transition: 0.3s;
    padding: 1em 3em;
    text-align: center;
}
.plan-topmenu ul li .fr-link{
    display: inline-block;
    background-color: #fcd701;
    color: #fff;
    border-radius: 33px;
    transition: 0.3s;
    padding: 1em 3em;
    text-align: center;
}
.plan-topmenu ul li:hover{
    opacity: 0.6;
}

/* 画像・ホバー */
.plan-room{
    padding-top: 3em;
    padding-bottom: 15em;
}
.fm-top h2,
.cp-top h2,
.fr-top h2{
    font-weight: bold;
    font-size: 1.3em;
    margin-left: 5%;
}
.fm-top,
.cp-top,
.fr-top{
    margin-top: 5em;
}
.fm-top ul,
.cp-top ul,
.fr-top ul{
    /* position: relative; */
    display: flex;
    width: 100%;
    /* background-color: #f4f1ec; */
    padding: 4em 0;
}
.plan-room img{
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}
.fm-top ul li,
.cp-top ul li,
.fr-top ul li{
    width: 50%;
    position: relative;
    transition: 0.5s;
}
.plan-room ul li .opacity-txt{
    position: absolute;
    color: #fff;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 0.5s;
    line-height: 2.5em;
}
.plan-room ul li .opacity-txt h3{
    font-weight: bold;
    font-size: 1.3em;
    line-height: 4em;
}
.fm-top ul li:hover img,
.cp-top ul li:hover img,
.fr-top ul li:hover img{
    filter: brightness(50%);
}
.fm-top ul li:hover .opacity-txt,
.cp-top ul li:hover .opacity-txt,
.fr-top ul li:hover .opacity-txt{
    opacity: 1;
}
.fm-top ul li:hover .arrow,
.cp-top ul li:hover .arrow,
.fr-top ul li:hover .arrow{
    right: 3em;
}
.fm-top ul li img,
.cp-top ul li img,
.fr-top ul li img{
    transition: 0.3s;
}
.arrow {
    position: relative;
    display: inline-block;
    width: 5em;
    height: 3px;
    margin-top: 29px;
    border-radius: 9999px;
    background-color: #fff;
    position: absolute;
    bottom: 5em;
    right: 6em;
    z-index: 100;
    transition: 0.5s;
}
.arrow::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 2em;
    height: 3px;
    border-radius: 9999px;
    background-color: #fff;
    transform: rotate(45deg);
    transform-origin: calc(100% - 2px) 50%;
}

/* 小見出しspan */
.fm-top h2 span{
    color: #38bfff;
    font-weight: 800;
}
.cp-top h2 span{
    color: #f84d4e;
    font-weight: 800;
}
.fr-top h2 span{
    color: #fcd701;
    font-weight: 800;
}
.fm-top h2 {
    border-left: 3px solid #38bfff;
    padding: 0 0.8em;
}
.cp-top h2 {
    border-left: 3px solid #f84d4e;
    padding: 0 0.8em;
}
.fr-top h2 {
    border-left: 3px solid #fcd701;
    padding: 0 0.8em;
}