@charset "UTF-8";
/* *{outline:1px solid #0000FF} */

body:not(.home) footer {
    display: none;
}

html {
    font-size: 100%;
    box-sizing: border-box;
}

body {
    color: #333;
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
    margin: 0;
}

a {
    color: #333;
    text-decoration: none;

}

img {
    width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

.wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.title {
    font-size: 2.4rem;
    margin: 0 40px 80px 60px;
    -webkit-text-stroke: 2px #333;
    transition: transform 1.5s ease;
    transform: translateX(-100px);
    opacity: 0;
    z-index: 30;
    font-weight: 100;
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-style: normal;
}

.title span {
    display: inline-block;
}

section {
    width: 100%;
    padding: 120px 0;
}

.title.visible {
    opacity: 1;
    transform: translateX(0);
}


@keyframes showTextFromBottom{
0%{
    transform: translateY( 100% );
}
100%{
    transform: translateY( 0px );
}
} 

/* ---------------------------
header
----------------------------- */
header {
    width: 100%;
    position: fixed;
    z-index: 5;
    margin: 0 auto;
    background-color: #fff;
    height: 56px;
    
}

.header__logo {
    width: 160px;
    position: fixed;
    top: -5%;
    left: -2%;
    display: inline-block;
    background-color: #fff;
    padding: 16px 0 0 16px;
    border-radius: 50%;

}

.header__navi {
    max-width: 1200px;
    width: 100%;
    height: 56px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.header__list-inner {
    display: flex;
    margin-left:128px;
    z-index: 1;
}


.header__list-inner li {
    font-size: 0.7rem;
    transition: all 0.5s;
}

.header__list-inner li:hover {
    transform: translateY(3px);

}

.header__list-inner li a {
    padding: 0 16px;
    font-size: 0.65rem;
}

.instagram_logo {
    display: inline-block;
}

.instagram_logo img {
    width: 24px;
}

.header_img {
    width: 80%;
    margin: 40px auto;
} 


@media (max-width: 1024px) {
.header__list-inner {
    display: none;
}

.header__logo {
    width: 130px;
}

.sns_container {
    display: none;
}

}

/* ----------hamburger------- */
.hamburger {
    width: 30px;
    height: 26px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    transition: all .5s;
    z-index: 30;
    display: none;
    
}

.hamburger span {
    width: 30px;
    height: 1.5px;
    border-radius: 5px;
    display: block;
    position: absolute;
    left: 0;
    transition: all .5s;
    background-color: #555;
}

.hamburger span:first-child {
    top:4px;
}

.hamburger span:nth-child(2) {
    top: 12px;
    width: 24px;
}

.hamburger span:last-child {
    bottom: 4px;
    width: 20px;
}

.hamburger.open span:nth-of-type(1) {
    top: 10px;
    transform: translateY(6px) rotate(-213deg);
}

.hamburger.open span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
    width: 30px;
    top: 22px;
    transform: translateY(-6px) rotate(213deg);
}

#navi.open {
    visibility: visible;
    transition: all .5s;
    top: 0;
    z-index: 20;
}

#navi {
    width: 100%;
    height: 450px;
    background-color: #fff;
    position: fixed;
    display: block;
    /* top: 0; */
    top: -100%;
    visibility: hidden;
    margin: 0 auto;
}

.mask-ul {
    width: 300px;
    padding: 80px;
    /* overflow: hidden; */
    margin: 0 auto;
    
}

.mask-ul li {
    width: 240px;
    font-size: 0.8rem;
    padding: 5px;
    margin-bottom: 16px;
    display: block;
    transition: all 0.5s;
}

.mask-ul li:hover {
    transform: translateY(3px);
}

.mask-ul li:last-child {
    margin-top: 24px;
}


.page_top {
    cursor: pointer;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 22px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
    transition: .3s;
    background: #fff;
    opacity: 0;
    z-index: 20;
    font-size: 0.8rem;
}

.page_top:hover {
    box-shadow: 0 0 10px #B69C95;
}

@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }
    
    
}


/* --------mainvisual------------ */
.mainvisual {
    /* position: sticky; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: -5;
    overflow: hidden;
    height: 100svh;
    padding: 0 0 100px 0;
}

.mainvisual__img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.mainvisual_title {
    font-size: 3.2rem;
    position: absolute;
    font-weight: 100;
    letter-spacing: 0.3rem;
    color: #555;
    font-family: "Cinzel", serif;
    top: 40%;
    left: calc(50% - 252px);
}

.mainvisual_title::after {
    content: "|";
    color: #555;
    animation: blink 1s infinite; /*カーソル点滅アニメーション*/
}

@media (max-width:780px) {
.mainvisual_title {
    left: calc(50% - 160px);
    font-size: 2.4rem;
}
}


/* ---------------------------------
section WORK
------------------------------------ */
.cstm-clip-upper-r {
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    height:10vmin;
    background-color:#ffffff; /* 背景色 */
    margin-bottom: 0; /*下部余白を0にする*/
}

.works {
    position: relative;
    transition: all 2s;
    background-color: #fff;
    padding: 120px 0 240px 0;
}

.work__title span {
    display: inline-block;
}

.work__items {
    width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    justify-content: center;
    margin: 0 auto 80px auto;
    align-items: center;
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.6s;
}

.work__items.visible {
    opacity: 1;
    transform: translate(0);
}

.item {
    margin: 0 auto 16px auto;
    width: 100%;
    overflow: hidden;

}

.work__image-container {
    text-align: center;
    position: relative;
}

.work__image {
    width: 100%;
    height: 200px;
    text-align: center;
    transition: transform .5s ease;
    object-fit: cover;
    transition: all 0.8s;
    border-radius: 0 15px 0 15px;
}

.hover-mask {
    align-items: center; /* テキストの中央揃え */
    background: rgba(0, 0, 0, .5); /* マスクの色(黒の50%) */
    color: #fff; /* テキストの色 */
    display: flex; /* テキストの中央揃え */
    height: auto;
    justify-content: center; /* テキストの中央揃え */
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0; /* 最初は透明(非表示) */
    position: absolute;
    transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
    width: 100%;
    border-radius: 0 15px 0 15px;
}

.hover-mask:hover {
  opacity: 1; /* hoverしたら透過しない(表示させる) */
}

.hover-mask p {
  width: 80%; /* テキストを横幅いっぱいにならないようにする */
}

.work__image:hover {
    background-color: #333;
    opacity: 0.7;
}

.work__text {
    font-size: 0.8rem;
    text-align: left;
    padding: 24px 40px;
}

.item__title {
    font-size: 0.7rem;
    margin-bottom: 8px;
    display: block;
    text-align: center;
    letter-spacing: 0.3rem;
    font-weight: normal;
}

.item__title  span {
    font-size: 1rem;
}

.item__genre {
    font-size: 0.7rem;
    margin-top: 8px;
    text-align: center;
}

.works__btn {
    width: 280px;
    text-align: center;
    position: absolute;
    left: calc(50% - 150px);
    font-size: 1.2rem;
    letter-spacing: 0.8rem;
    border-radius: 60px;
    color: #fff;
    display: block;
    font-weight: bold;
    max-width: 300px;
    padding: 15px 40px;
    /* background: linear-gradient( rgba(235, 237, 237,1)0%, rgba(1, 97, 145,1)100%); */
    background: #54ADAB;
    background-size: 200% 100%;
    transition: 0.3s all;
    box-shadow: 2px 4px 2px rgba(0, 0, 0, 0.15);
}

.works__btn:hover {
    transform: translateY(3px);
} 


@media (max-width: 1024px) {
.work__items {
    grid-template-columns: 1fr;
    max-width: 500px;
    width: 100%;
    padding: 0 24px;
}
}

@media (max-width: 480px) {
.work__image {
    width: 100%;
}

.works__btn {
    width: 240px;
    left: calc(50% - 120px);
}
}



/* ------------------------ 
section  service
---------------------------*/
.cstm-clip-upper {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  height:10vmin;
  background-color:#F4F4F4; /* 背景色 */
  margin-bottom: 0; /*下部余白を0にする*/
}

.cstm-clip-lower-r {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  height:10vmin;
  background-color:#F4F4F4; /* 背景色 */
}

.service {
    position: relative;
    background-color: #F4F4F4;
}

.service__item-container {
    max-width: 900px;
    padding-bottom: 16px;
    margin: 0 auto;
}

.service__items {
    justify-content: center;
    background-color: #F4F4F4;
}

.service__list {
    margin: 0 32px 24px 0;
    padding: 40px 24px;
    position: relative;
    opacity: 0;
    transition: all 1.2s;
    transform: translatex(40px);
    display: flex;
    justify-content: center;
}

.service__list.visible {
    opacity: 1;
    transform: translate(0);
}

.service__list:nth-child(2),.service__list:nth-child(4) {
    flex-direction:row-reverse;
    margin-bottom: 64px;
}

.service__list:nth-child(2) img {
    transform: translateX(-40px);
}

.service__list:nth-child(4) img {
    transform: translateX(-40px);
}

.service__list:nth-child(2) .service-item-text {
        padding: 16px 72px 40px 48px;
        transform: translate(4px, 40px);
}

.service__list:nth-child(4) .service-item-text {
        padding: 16px 72px 40px 48px;
        transform: translate(4px, 40px);
}

.service-item-img {
    width: 40%;
    position: relative;
}

.service-item-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 0 10px 0 10px;
    box-shadow: 1px 3px 5px #d6d6d6;
}

.service-item-text {
    width: 50%;
    padding: 16px 24px 40px 72px;
    transform: translate(-30px, 40px);
    background-color: #fff;
    border-radius: 0 0 0 15px;
    z-index: -1;
}

.service-item-text h4 {
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
}

.service-item-text h4::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    bottom: -50%;
    left: 0;
}

.service__items p {
    text-align: left;
    margin-top: 16px;
    font-size: 0.8rem;
    line-height: 1.3rem;
}

.service-no-img {
    width: 70px;
    height: 70px;
    position: absolute;
    top: -9%;
    right: 0;
}

.service-no-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}


@media (max-width:1024px) {    
.service__list {
    display: block;
    margin: 0 auto;
}

.service-item-img {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}

.service-item-text {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    transform: translate(0);
    padding: 24px 32px;
}

.service__list:nth-child(2) img {
    transform: translate(0);
}

.service__list:nth-child(4) img {
    transform: translate(0);
}

.service__list:nth-child(2) .service-item-text {
    transform: translate(0);
    padding: 24px 32px;
}

.service__list:nth-child(4) .service-item-text {
    transform: translate(0);
    padding: 24px 32px;
}
}


/* ---------------------------- 
section skills
------------------------------ */
.skill__title span {
    display: inline-block;
}

.skill {
    position: relative;
    background-color: #ffffff;
    z-index: 0;
}

.skill__container {
    list-style: none;
    margin: 0;          /* ul のデフォルト余白もゼロに */
    padding: 0;
    box-sizing: border-box;
    border-radius: 15px;
    display: grid;
    gap: 20;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}


.skill__list {
    max-width: 200px;
    height: 200px;
    margin-right: 16px;
    padding: 24px 16px;
    border: 1px solid #F4F4F4;
    border-radius: 0 20px 0 20px ;
    background-color: #ffffff;
    box-shadow: 1px 1px 30px #e6e6e6;    /* お好みで */
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.skill__list .back,.skill__list .front {
  transition: all 0.8s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
}

.skill__list .front {
  transform: rotateY(-180deg);
}

.skill__list:hover .back {
  transform: rotateY(180deg);
}

.skill__list:hover .front {
  transform: rotateY(0);
}

/* 
.skill__list::before {
  content: "";
  display: block;
  padding-top: 142.5%;
} */

/* .swiper {
    max-width: 1060px;
    margin: 0 auto 40px;
    padding: 40px 0;
    overflow: hidden;
    } */
    
/* .swiper-slide {
    width: 220px; 
    height: auto; 
    flex-shrink: 0;
} */
        
.skill__list-img {
    height: 72px; 
    display: flex;
    align-items: center; 
    justify-content: center; 
}
        
.skill__logo { 
    width: 60px; 
    height: 60px; 
    object-fit: contain;
    object-fit:contain; 
}
        
.skill__list-text {
    padding: 40px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
        
.skill__text {
    font-size: 0.7rem;
}

.skill__list-text h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1rem;
}

@media (max-width:1024px) {
.skill {
    padding-bottom: 180px;
}

.skill__container {
    grid-template-columns: 1fr 1fr;
    width: 60%;
    margin: 0 auto;
    gap: 20px;
}

.skill__list-text .skill-text {
    font-size: 0.7rem;
}
}

@media (max-width:780px) {
.skill__container {   
    width: 80%;
    max-width: 400px;
}

.skill__list-img {
    width: 25%;
}

.skill__list-text {
    width: 75%;
}
}

@media (max-width:425px) {
    .skill__container {
    grid-template-columns: 1fr;
    width: 200px;
    }
}

/* --------------------------
section about
------------------------------ */
.about {
    position: relative;
    background-color: #f4f4f4;
    padding-bottom: 200px;
    z-index: 0;
    overflow: hidden;
    margin: 0 auto;
}

.about_wrapper {
    /* display: flex; */
    position: relative;
    margin: 0 auto;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
}


.about_img-container {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    flex-direction:row-reverse
    
}

.profile-img {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-right: 80px;
}

.profile-img-img {
    width: 30%;
    object-fit: cover;
    border-radius: 0 15px 0 0;
    transform: translateY(-80px);
    transition: all 1.2s;
    opacity: 0;
}

.profile-img-img.visible {
    transform: translate(0);
    opacity: 1;
}

.profile-img-center {
    align-self: flex-end;
    transform: translateY(80px);
    border-radius: 0 0 0 15px;
    transition: all 1.2s;
    opacity: 0;
}

.profile-img-center.visivle {
    transform: translateY(40px);
    opacity: 1;
}

.about_img_text-container {
    width: 30%;
    margin: 160px auto 24px auto;
    text-align: center;
    position: relative;
}

.about_img-textbox {
    width: 400px;
    height: 320px;
    /* background-color: #fff; */
    border-radius: 15px 0 0 15px;
    position: absolute;
    bottom: -30%;
    left: 5%;
    z-index: -2;
}

.about_img-texts {
    padding-top: 48px;
    font-size: 0.9rem;
}

.about_img-text {
    margin-bottom: 16px;
} 

.about__text-container {
    width: 70%;
    padding: 48px 24px 24px 24px;
    z-index: -1;
    margin: 0 auto;
    position: relative;
}

.about__text-p {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: left;
    line-height: 2.3rem;
    margin-bottom: 32px;
}
.about_img-texts span {
    display: block;
    padding-top: 8px;
}

@media (max-width:1024px) {

.about_wrapper {
    margin: 80px auto;
    max-width: 600px;
    display: block;
}

.about__text-p {
    font-size: 0.7rem;
    line-height: 1.6rem;
}

.about_img-container {
    display: block;
    width: 80%;
    margin: 0 auto;
}

.about__text-container {
    width: 100%;
    margin: 0 auto;
}

.about_img_text-container {
display: none;
}

.profile-img {
    width: 30%;
    margin: 0 auto
}

.profile-img img {
    width: 100%;
    text-align: center;
}

.rotate_box-l{
    width: 160px;
    height: 160px;
    right: 0;
}

.rotate_box-s{
    width: 80px;
    height: 80px;
}
}


/* -----------------------------
section flow
------------------------------- */
.flow {
    background-color: #fff;
    z-index: 1;
}

.flow-container {
    max-width: 720px;
    display: grid;
    gap: 40px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
}

.flow-container:after {
    content: "";
    width: 3px;
    height: 700px;
    background-color: #016191;
    position: absolute;
    top: 0;
    left: 15%;
    z-index: 1;
    display: block;
    animation: scrollbar 12s linear infinite;
    margin: auto;
}

@keyframes scrollbar {
0% {
    height: 0;
    top: 0;
}
30% {
    height: 90%;
}
100% {
    top: 90%;
}
}

.flow_list {
    display: flex;
}

.flow_list-imgbox {
    width: 20%;
    position: relative;
    /* background-color: #cbe8fc; */
    
}

.flow_list-nam {
    width: 120px;
    height: 120px;
    font-size: 3rem;
    letter-spacing: -3px;
    color: #625f5f;
    margin-left: 12px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* position: absolute;
    top: 0;
    left: -10%; */
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    background-color: #fff;
    border: 5px solid #016191;
    position: relative;
    z-index: 2;
}

.flow_list-textbox {
    width: 80%;
    margin-left: 16px;
    position: relative;
    padding: 0 32px;
}

.flow_list h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.flow_list p {
    font-size: 0.8rem;
}

@media (max-width:1024px) {
.flow_list {
    display: block;
}

.flow-container:after {
    display: none;
}

.flow_list-textbox {
    width: 100%;
    margin-left: 0;
}
}

/* -----------------------------
section contact
------------------------------- */

.contact {
    position: relative;
    background-color: #fff;
    padding: 160px 0 240px 0;
    z-index: 0;
}

.contact__container {
    max-width: 600px;
    margin: 0 auto;
    z-index: 10;
    padding: 0 32px;
}

form {
    background-color: #fff; 
    padding: 20px;
    border-radius: 5px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}
label {
    display: block; /* ラベルをブロック表示にすることで、次の要素と分ける */
    margin-top: 10px; 
}
input[type="text"], input[type="email"], textarea {
    width: 100%; 
    padding: 10px; 
    margin: 5px 0; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
}

textarea{
    margin-bottom: 32px;
}

input[type="submit"] {
    width: 100%;
    background-color: #54ADAB; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    text-align: center;
    transition: .3s all;
    border: 2px solid #54ADAB;
}

input[type="submit"]:hover {
    background-color: #fff;
    color: #65BBE9;
    border: 2px solid #54ADAB;
    box-sizing: border-box;
} 

/* ----------------------------
footer
------------------------------- */

footer {
    background-color: #54ADAB;
    position: relative;
    z-index: 1;
}

.footer__container {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.footer__navi {
    padding-top: 80px;
    width: 30%;
}

.footer__navi li {
    margin-bottom: 12px;
    
}

.footer__navi-link {
    color: #F4F4F4;
    font-size: 0.8rem;
    transition: all 0.5s;
}

.footer__navi-link:hover {
    transform: translateY(3px);
}

.footer__img {
    width: 30%;
}

.footer__img img {
    width: 280px;
}
/* 
.cloud-footer {
    position: absolute;
    bottom: 100%;
    z-index: 3;
} */

@media (max-width:1024px) {
.footer__container {
    display: block;
    margin: 0 auto;
}

.footer__img {
    margin: 0 auto;
    width: 200px;
}

.footer__img img {
width: 100%;
}

.footer__navi {
    margin: 0 auto;
    padding-left: 12px;
    width: 176px;
    padding-top: 24px;
}

.footer__navi-link {
    font-size: 0.7rem;
}
}


/* ------------------------------
works.html
--------------------------------- */
.work__title {
    font-size: 2.4rem;
    margin: 0 40px 80px 40px;
    -webkit-text-stroke: 2px #333;
    z-index: 30;
    font-weight: 100;
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-style: normal;
}

.works__container {
    width: 100%;
    padding-top: 100px;
}

.works__left-navi {
    width: 240px;
    position: fixed;
    margin-top: 160px;
    padding: 0 24px;
}

.works__left-navi li {
    margin-bottom: 56px;
    font-size: 0.8rem;
    position: relative;
    transition: all 0.5s;
}

.works__left-navi li::after {
    content: "";
    height: 1px;
    width: 60%;
    background: #555;
    position: absolute;
    bottom: -6px;
    left: 0;
}

.works__left-navi li:hover {
    transform: translateY(5px);
}

.works__main {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.works__item {
    margin-bottom: 80px;
}

.works__item-text {
    padding-left: 16px;
}

h4 {
    text-align: left;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 12px;
}

.works__item-text span {
    font-size: 0.7rem;
}

.works__item-text p {
    font-size: 0.7rem;
    margin-top: 8px;
}

.works__item-img {
    overflow: hidden;
    transition: all 1s;
}

.works__item-img img:hover {
    transform: scale(1.05);
}

.works__item-img img {
    transition: all 0.8s;
}

@media (max-width:1024px) {
.works__left-navi {
        /* max-width: 650px;
        width: 100%;
        position: initial;
        margin: 40px auto 120px auto;
        padding: 0px 52px; */
        display: none;
}

.works__navi ul {
    /* width: 180px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 40px;
    
}
.works__left-navi li {
    margin-bottom: 0;
}

.works__left-navi li::after {
    width: 80%;
}
}

/* -----------------------------
works-item.html
-------------------------------- */

.works__item-main {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.works_title_description {
    margin-bottom: 24px;
}

.item-img {
    margin-bottom: 12px;
}

.full-img {
    overflow-y: scroll;
    overflow-x: hidden;
    /* 縦はスクロール可、横は不可 */
    height:80vh; 
    border: 0.8px #333 solid;
}

.full-img p {
    text-align: left;
    font-size: 0.7rem;
    margin-bottom: 24px;
}

.item__description ul {
    margin: 64px auto;
    padding: 16px 24px;
}

.item__description li {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: #555 1px dotted;
}

h5 {
    color: #65BBE9;
    width: 20%;
}

.item__description p {
    width: 70%;
    font-size: 0.8rem;
    text-align: left;
    margin: 0 0 24px 32px;
    line-height: 1.3rem;
}

.show-hp {
    display: inline-block;
    color: #65BBE9;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.show-hp:hover {
    transform: translateY(3px);
}

.works-item-skill {
    font-size: 0.7rem;
    margin-bottom: 8px;
}

@media (max-width:480px) {
.item__description p {
    font-size: 0.7rem;
}

.works_title_description {
    font-size: 0.8rem;
}

.item__description li {
    display: block;
}

h5 {
    width: 80%;
    margin-bottom: 8px;
}
}