@charset "utf-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    background-color: #FBFDFC;
    font-family: "Neuton", "Poppins", "Kiwi Maru", sans-serif, serif;
    color: #282A3A;
    font-size: 16px;
    margin: 0;
    padding-top: 80px;
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.8; 
}
.sp-br {
    display: none;
}

/* =================
TOP
================= */

/* ここからヘッダー */
body.admin-bar header {
  top: 32px;
}
.rp-header {
    display: none;
}
h1 {
    font-size: 22px;
    font-weight: bold;
}
.sub-text {
    color: #628B5A;
    font-family: "Poppins";
    font-size: 16px;
    text-align: center;
    font-weight: normal;
    letter-spacing: .08em;
    display: block;
    margin: 0 auto;
    padding-top: 6px;
    text-transform: capitalize;
}
h1 a {
    transition: .6s;
    display: inline-block;
}
h1 a .sub-text {
    transition: .6s;
}
h1 a:hover {
    color: #B0B3C8;
}
h1 a:hover .sub-text {
    color: #C4D6C1;
}
header {
    background-color: rgba(251, 253, 252, .85);
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 50px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-flex {
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: .08em;
    display: flex;
    justify-content: center;
    gap: 94px;
    align-items: center;
}
.header-nav a{
    white-space: nowrap;
    transition: .6s;
}
.header-nav a:hover {
    color: #B0B3C8;
}
.x-link {
    font-size: 18px;
    letter-spacing: .08em;
    transition: .6s;
}
.x-link::after {
    display: inline-block;
    content: "→";
    font-size: 18px;
    padding-left: .2em;
    transform: rotate(-45deg);
}
.x-link:hover {
    color: #B0B3C8;
}

/* ここからメインビジュアル */
.main-visual {
    background-image: url(../images/suisen_main.jpg);
    background-size: cover;
    background-position: center;
    height: 791px;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    animation: fadeIn 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@supports (-webkit-touch-callout: none) {
  .main-visual {
    background-attachment: scroll;
  }
}
h2 {
    background-color: rgba(98, 139, 90, 0.75);
    color: #FBFDFC;
    font-size: 22px;
    writing-mode: vertical-rl;
    padding: 37px 53px;
    line-height: 2em;
    letter-spacing: .08em;
    border-radius: 10px;

    position: absolute;
    top: 25%;
    left: 50%;

    opacity: 0;
    transform: translate(-50%, 30px);

    animation: fadeUp 2.5s cubic-bezier(0.33, 1, 0.68, 1) 0.8 forwards;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
.indent {
    text-indent: 1.5em;
    display:inline-block;
}

.scroll {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    letter-spacing: .08em;
}
.scroll p {
    color: #FBFDFC;
    font-size: 20px;
    margin-bottom: 25px;
}
@keyframes scrollAnimation {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: top;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
.scroll img {
    animation: scrollAnimation 1.8s ease-out infinite;
}

/* ここからcontent-inner */
section {
    padding: 130px 0;
}
.content-inner {
    max-width: 1106px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About */
h3 {
    font-family: "Poppins";
    color: #628B5A;
    font-size: 80px;
    text-transform: capitalize;
    text-align: center;
    padding-bottom: 88px;}

.about-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

.about-inner img {
    margin-right: 60px;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    filter: drop-shadow(1px 1px 1px #ddd);
}
.role {
    color: #628B5A;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: .08em;
}
.name {
    font-size: 22px;
}
.skill {
    max-width: 652px;
    margin: 0 auto;
    display: flex;
    margin-top: 69px;
    justify-content: center;
    padding: 0 1.4vw;
    align-items: center;
}
.skill p{
    font-size: 18px;
    text-align: center;
    letter-spacing: .02em;
    text-transform: capitalize;
} 
.skill-inner {
    background-color: rgba(238, 205, 86, 0.40);
    padding: 30px 0 5px 0;
    border-radius: 5px;
    width: 205px;
}
.skill-title {
    letter-spacing: .08em;
    margin-bottom: 15px;
    white-space: nowrap;
}
.tool {
    color: #FBFDFC;
    background-color: #628B5A;
    padding: 12px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 25px;
    width: 133px;
}
.banner {
    padding-top: 130px;
}
.batsu p{
    font-family: "Kiwi Maru";
    font-size: 32px;
    margin: 0 4.5vw;
}
.btn {
    margin-top: 91px;
    text-align: center;
}
.btn a{
    font-size: 18px;
    background-color: #EECD56;
    border-radius: 300px;
    display: inline-block;
    position: relative;
    transition: .6s;
}
.btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background-color: #F5E29D;
}
.btn a::after {
    content: "→";
    color: #282A3A;
    font-family: "Kiwi Maru";
    font-size: 20px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: .6s;
    z-index: 2;
}
.btn a:hover::after {
    right: 14px;
}
.about-btn a {
    padding: 20px 61px;
}
.about-bottom p {
    font-size: 10px;
    text-align: center;
    padding-top: 15px;
}

/* Works */
h4 {
    max-width: 937px;
    font-family: "Neuton";
    font-size: 22px;
    letter-spacing: .08em;
    text-transform: capitalize;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: #282A3A 1px solid;
    margin: 0 auto;
    margin-top: 64px;
    margin-bottom: 60px;
}
.work-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
    justify-content: center;
}
.work-flex img {
    filter: drop-shadow(1px 2px 3px #ddd);
    border-radius: 10px;
    max-width: 100%;
}
.work-btn a {
    letter-spacing: .1em;
    padding: 20px 70px;
}
.website-btn {
    padding-bottom: 66px;
}
.detail {
    display: flex;
    gap: 20px;
}
.work-detail-card {
    font-size: 14px;
    color: #B0B3C8;
    padding-top: 10px;
    gap: 20px;
}
.work-detail-card::before {
    content: "#";
    color: #EDB604;
    font-size: 16px;
    font-weight: bold;
    padding-right: 2px;
}

/* Contact */
.contact-inner {
    position: relative;
}
.contact-inner h3 {
    padding-bottom: 66px;
}
.sns-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sns-flex a {
    display: block;
    margin: 0 21px;
}
.sns-flex img {
        transition: .4s;
}
.sns-flex img:hover {
    opacity: 0.4;
}
.contact-inner p {
    text-align: center;
    margin: 26px 0 60px 0;
}
.contact-btn a {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: .1em;
    padding: 35px 135px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.contact-btn {
    padding-bottom: 200px;
}
.contact-btn a::after {
    font-size: 24px;
}
.contact-btn a:hover::after {
    color: #FBFDFC;
}
.contact-btn a:hover {
    color: #FBFDFC;
}
.contact-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #EDB604;
    transition: .8s;
    z-index: -1;
}
.contact-btn a:hover::before {
    left: 0;
}
.btn a::after {
    content: "→";
    font-family: "Kiwi Maru";
    font-size: 24px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}
.btn a:hover::after {
    right: 20px;
}
.suisen-contact {
    position: absolute;
    bottom:-1vw;
    right:2vw;
    width:clamp(70px,10vw,170px);
    filter: drop-shadow(0.5px 0.5px 0.5px #ddd);
}


/* ここからフッター */
footer {
    width: 100%;
    background-color: #628B5A;
    position: relative;
    padding: 73px 0;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-bottom: 80px;
}
.footer-logo {
    font-size: 24px;
    color: #FBFDFC;
    display: flex;
    align-items: center;
    margin-left: 5.2vw;
    transition: .6s;
}
.footer-logo:hover {
    color: #EDB604;
}
.footer-nav {
    font-size: 18px;
    color: #FBFDFC;
    text-transform: capitalize;
    letter-spacing: .08em;
    text-align: center;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 54px;
    margin-right: 5.2vw;
    /* transform: translateY(-30px); */
}
.footer-nav ul li {
    transition: .6s;
}
.footer-nav ul li:hover {
    color: #EDB604;
}
.footer-contact {
    color: #282A3A;
    background-color: #EECD56;
    padding: 16px 40px;
    border-radius: 5px;
    transition: .6s;
}
.footer-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background-color: #F5E29D;
}
.copyright {
    font-size: 12px;
    color: #FBFDFC;
    letter-spacing: .1em;
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}

/* =================
ABOUT
================= */
.skill-h3 {
    padding: 130px 0 68px 0;
}
h5 {
    color: #628B5A;
    font-size: 38px;
    font-weight: bold;
    margin-top: 110px;
    margin-bottom: 50px;
    text-transform: capitalize;
}
.about-part {
    position: relative;
}
.about-wrap {
    padding: 0 2.8vw;
}
.about-wrap h4 {
    color: #628B5A;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: .0em;
    border-bottom: none;
    margin-bottom: 40px;
}
.about-wrap h4::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 474px;
    height: 59px;
    aspect-ratio: 100 / 10;
    background-image: url(../images/under-bar.png);
    background-repeat: no-repeat;
    background-size: contain;  
    margin: 0 auto; 
}
.about-flex {
    display: flex;
    align-items:center;
    gap:60px;
}
.number {
    font-family: "Poppins";
    font-size: 350px;
    color: rgba(238, 205, 86, 0.40);
    position: absolute;
    top: -185px;
    z-index: -1;
}
.about-part:nth-of-type(even) .number {
    right: 0;
}
.about-wrap img {
    object-fit: contain;
    margin-left: auto;
    width: 300px;
}
.about-text {
    margin-bottom: 200px;
}
.about-part:nth-of-type(even) .about-flex {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: auto;
}
.about-part:nth-of-type(even) img {
  margin-left: 0;
  margin-right: auto;
}
.about-text li {
    line-height: 30px;
    list-style: none;
}
.about-text li::before {
    content: "";
    width: 4px;
    height: 4px;
    display:  inline-block;
    background-color: #628B5A;
    border-radius: 50%;
    position: relative;
    top: -3px;
    margin-right: 10px;
}
.poricy-text {
    margin-top: 30px;
}
.strength-heading {
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 20px;
}
.strength-inner {
    margin-top: 55px;
}
.about-h3 {
    padding-top: 130px;
    padding-bottom: 35px;
}
.skills-part p {
    text-align: center;
}
.skill-tool {
    font-size: 20px;
    padding-top: 75px;
    margin-bottom: 20px;
}
.tool-flex .tool {
    margin: 0;
}
.skills-part .tool {
    text-transform: capitalize;
    line-height: 1.6;   
    letter-spacing: .08em; 
    padding-bottom: 15px;
}
.tool-flex {
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    gap: 36px;
}
.skills-part {
    padding-bottom: 130px;
}

/* =================
Works
================= */
.works-h3 {
    padding-bottom: 130px;
}
.works-wrap {
    padding-bottom: 200px;
}
.works-part {
    max-width: 937px;
    margin: 0 auto;
    text-align: center;
}
.works-part input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}
.tab-labels {
    display: flex;
    justify-content: space-around;
    letter-spacing: .08em;
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom: #282A3A 1px solid;
    margin-bottom: 100px;
}
.label1 {
    text-transform: uppercase;
}
.label2 {
    text-transform: capitalize;
}
#all:focus-visible ~ .tabs-inner label[for="all"],
#website:focus-visible ~ .tabs-inner label[for="website"],
#banner:focus-visible ~ .tabs-inner label[for="banner"],
#other:focus-visible ~ .tabs-inner label[for="other"] {
    outline: 2px solid #282A3A;
    outline-offset: 2px;
}
.tab-label {
  flex: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-label:hover {
  color: #EDB604;
}
#all:checked ~ .tabs-inner label[for="all"],
#website:checked ~ .tabs-inner label[for="website"],
#banner:checked ~ .tabs-inner label[for="banner"],
#other:checked ~ .tabs-inner label[for="other"] {
    background-color: rgba(237,182,4,.6);
    border-radius: 5px;
    color: #282A3A;
}
/* all */
#all:checked ~ .tabs-inner .work-card{
  display:block;
}
/* website */
#website:checked ~ .tabs-inner .work-card{
  display:none;
}
#website:checked ~ .tabs-inner .category-web-site{
  display:block;
}
/* banner */
#banner:checked ~ .tabs-inner .work-card{
  display:none;
}
#banner:checked ~ .tabs-inner .category-banner{
  display:block;
}
/* other */
#other:checked ~ .tabs-inner .work-card{
  display:none;
}
#other:checked ~ .tabs-inner .category-other{
  display:block;
}
.work-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  transition:.4s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
.work-img img{
  width:100%;
  display:block;
  transition:.4s;
}
.work-card:hover img{
  transform:scale(1.05);
}
.work-info{
  padding:20px;
  text-align:left;
}
.work-category{
  font-size:16px;
  letter-spacing:.08em;
  color:#628B5A;
  margin-bottom:6px;
  text-transform:capitalize;
}
.work-title{
  font-size:18px;
}
.work-card {
    position: relative;
}
.view-more {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.4);
  color:#fff;
  font-size:18px;
  letter-spacing:.1em;
  text-transform: uppercase;
  opacity:0;
  transition:.3s;
}
.work-card:hover .view-more{
  opacity:1;
}

/* =================
Works-作品詳細ページ
================= */
.article-wrap h3 {
    font-family: "Kiwi Maru";
    font-size: 48px;
    font-weight: bold;
    line-height: 1.3em;
}
.article-flex {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 3.7vw;
    flex-wrap: wrap;
}
.article-flex p {
    color: #282A3A;
    line-height: 1.0;
}
.article-flex p::before {
    content: "#";
    color: #628B5A;
    font-size: 18px;
    font-weight: bold;
    padding-right: 5px;
}
.article-wrap img {
    display:block;
    margin: 0 auto;
    margin-top: 63px;
    margin-bottom: 78px;
    filter: drop-shadow(1px 2px 3px #ddd);
    border-radius: 5px;
    max-width: 65.8vw;
}
.article-info {
    text-align: center;
}
.banner_image {
    max-height: 600px;
    width: auto;
    max-width: none;
}
.work-tags {
    display: flex;
    gap: 3.7vw;
    flex-wrap: wrap;
}
.work-tag::before {
    content: "#";
    color: #628B5A;
    font-weight: bold;
    margin-right: 4px;
}
.scroll-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 78px;
}
.scroll-flex img {
    margin: 0;
    opacity: .8;
    filter: none;
}
.scroll-text {
    color: #EDB604;
    font-family: "poppins";
    font-size: 38px;
    letter-spacing: .1em;
    text-transform: capitalize;
    text-align: center;
    padding-left: 30px;
    padding-right: 20px;
    position: relative;
}
.site-screen img {
    margin: 0;
}
.site-screen {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}
.site-screen-PC,
.site-screen-SP {
    filter: drop-shadow(1px 2px 3px #ddd);
}
.browser-bar{
  height: 28px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
}
.browser-bar span{
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}
.screen-PC {
    width: 800px;
    height: 600px;
    overflow-y: auto;
}
.screen-SP {
    width: 400px;
    height: 600px;
    overflow-y: auto;
}
.screen-PC img,
.screen-SP img  {
    width: 100%;
    display: block;
}
.table {
    max-width: 937px; 
    width: 90%;        
    margin: 54px auto 0;
    padding: 0 20px;
}
table {
    width: 100%;
}
table tr th {
    padding: 58px 0 58px 1.8vw;
    text-align: start;
    white-space: nowrap;
    width: 35%;
}
table tr td {
    width: 65%;
    line-height: 1.8;
    vertical-align: middle; 
}
tr {
    border-bottom: none;
    position: relative;
}
tr::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.5px;
    background: #282A3A;
}
th {
    color: #628B5A;
    font-weight: bold;
}
.link-url {
    color: #628B5A;
    border-bottom: #628B5A 1px solid;
}
.article-btn a {
    padding: 20px 98px;
}
.article-btn a::after {
    display: none;
}
.article-btn a::before {
    content: "←";
    color: #282A3A;
    font-family: "Kiwi Maru";
    font-size: 20px;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: .6s;
    z-index: 2;
}
.btn a:hover::before {
    left: 14px;
}
@media screen and (max-width: 1000px){
    .header-inner {
        display: none;
    }
    .rp-header {
        display: contents;
        position: relative;
    }
    body {
        padding-top: 70px;
    }
    header {
        height: 70px;
    }
    .sp-header-flex {
        display: flex;
        height: 70px;
        align-items: center;
        justify-content: space-between;
    }
    .sp-header-flex h1 {
        padding: 15px;
        font-size: 22px;
    }
    .sp-nav {
        font-size: 20px;
        text-transform: capitalize;
        letter-spacing: .08em;
        text-align: center;
    }
    .sp-nav ul li {
        padding: 40px;
    }
    .menu-icon {
        width: 40px;
        height: 30px;
        position: fixed;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 30;
        display: inline-block;
    }
    .menu-icon span {
        display: block;
        height: 4px;
        margin: 6px 0;
        background: #282A3A;
        border-radius: 2px;
        transition: 0.4s;
    }
    #menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    #menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(98, 139, 90, .5);
        opacity: 0;
        pointer-events: none;
        transition: 0.4s;
        z-index: 10;
    }
    #menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
    }
    .sp-nav {
    position: fixed;
    top: 0;
    right: -250px; 
    width: 250px;
    height: 100%;
    background: #FBFDFC;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 20;
    }
    #menu-toggle:checked ~ .sp-nav {
    right: 0;
    }
    .sp-nav ul {
    list-style: none;
    padding: 60px 20px;
    }
    .sp-nav li {
    margin: 20px 0;
    }
    .sp-nav a {
    text-decoration: none;
    color: #282A3A;
    font-size: 1.2rem;
    transition: color 0.3s;
    }
    .sp-nav a:hover {
    color: #EDB604;
    }
}
@media screen and (max-width: 859px){
    .main-visual {
        height: 500px;
    }
    h2 {
        padding: 20px 45px;
        top: 10%;
        font-size: 20px;
    }
    section {
        padding: 80px 0;
    }
    .about-inner {
        display: block;
        text-align: center;
    }
    .about-inner img {
        margin: 0 0;
    }
    .name {
        padding-bottom: 10px;
    }
    .sp-about {
        margin-top: 69px;
    }
    h3 {
        font-size: 60px;
        padding-bottom: 50px;
    }
    h4 {
        padding-bottom: 20px;
    }
    .about-wrap h4 {
        padding: 0;
    }
    .about-h3 {
        padding: 40px 0;
    }
    h5 {
        margin-top: 40px;
        text-align: center;
    }
    .about-flex {
        display: block;
    }

    .about-text {
        margin-bottom: 59px;
        text-align: center;
    }
    .about-part {
        margin: 0 auto;
    }
    .about-part:nth-of-type(even) img {
        margin-left: auto;
        margin-right: auto;
    }
    .about-wrap img {
        display: block;
        margin: 0 auto;
        margin-bottom: 100px;
    }
    .about-text li {
        font-size: 14px;
    }
    .skills-part p {
        padding-bottom: 10px;
    }
    .skill-h3 {
        padding: 90px 0 40px 0;
    }
    .skill-tool {
        font-size: 18px;
        padding-top: 30px;
        margin-bottom: 0;
    }
    .tab-label {
        font-size: 16px;
        margin: auto 0;
    }
    .banner {
        padding-top: 80px;
    }
}

@media screen and (max-width: 559px) {
    p {
        font-size: 14px;
    }
    .sp-br {
        display: inline;
    }
    .skill-title p {
        font-size: 16px;
    }
    .skill p {
        font-size: 14px;
    }
    .skill-inner {
        width: 200px;
    }
    .about-btn a {
        font-size: 14px;
    }
    .tool {
        width: 100px;
        margin-bottom: 15px;
    }
    .tool-flex{
    gap: 16px;
    }
    .skill-inner {
        height: 270px;
    }
    .skills-part .tool {
        text-transform: capitalize;
        padding-top: 15px;
        letter-spacing: .08em;
    }
    .contact-btn a {
        font-size: 18px;
        font-weight: bold;
        letter-spacing: .1em;
        padding: 25px 85px
    }
    footer {
        height: 500px;
        padding-top: 40px;
    }
    .footer-flex {
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 30px;
    }
    .footer-logo {
        margin-left: 0;
    }
   .footer-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
   
    .site-screen {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    .article-wrap img {
        max-width: 88vw;
    }
    .screen-PC {
        width: 100%;
        height: 400px;
        overflow-y: auto;
    }
    .screen-SP {
        width: 100%;
        height: 600px;
        overflow-y: auto;
    }
    .banner_image {
        width: 100%;
        height: auto;
        max-height: none;
    }
    .article-wrap h3 {
        font-size: 32px;
    }
    table,
    tbody,
    tr{
        display:block;
    }
    th,td{
        display:block;
    }
    table tr th {
        padding-top: 5px;
        padding-bottom: 25px;
        padding-left: 0;
    }
    table tr td {
        width: 100%;
    }
    th {
        border-bottom:none;
    }
    td {
        font-size: 14px;
        padding:0 0 20px;
        line-height: 1.8;
    }
    tr {
        margin-bottom:25px
    }
    .site-screen {
        display: block;
    }
    .site-screen-SP {
        margin-top: 40px;
    }
}