
@charset “utf-8”;

body {
    font-family: 'PT Sans','Noto Sans JP', sans-serif;
	letter-spacing: 0.05em;
}

.pt-sans-regular {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .pt-sans-bold {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .pt-sans-regular-italic {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .pt-sans-bold-italic {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
  }

  .playfair {
    font-family: "Playfair Display", serif;
  }

a {
    color: #574F49;
    text-decoration: none;
}

ul {
  list-style: none;
}

h1,h2,p{
    padding:0;
    margin:0;
}

.mainHeader .container {
    align-items: center;
}

.siteTitle {
    font-size: 22px;
    /* margin: 0; */
    /* display: inline; */
}

.paddingArea {
    padding: 30px 0 50px;
    width: 100%;
    position: relative;
}

.mainContent {
    padding: 30px 0;
    overflow: hidden;
}

.sectionTitle {
    font-family: "Playfair Display", serif;
    font-size: 2.5em;
    font-weight: 500;
    /* margin-bottom: 30px; */
    /* border-bottom: 1px solid; */
    /* padding-bottom: 5px; */
    color: #574F49;
    letter-spacing: 0.05em;
    position: relative;
}

.aboutText span {
	padding-top: 0.7em;
	background-position: top left 2px;
	background-repeat: repeat-x;
	background-size: 1em 1em;
	background-image: radial-gradient(#e55b32 15%, transparent 15%);
}


.mainHeader .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navList {
    display: flex;
    text-decoration: none;
    /* font-family: "Balthazar", serif; */
}

.hdNameLink {
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.navList a {
    display: inline-block;
    padding: 10px;
    color: #fff;
}

.navList li {
    text-decoration: none;
    list-style-type: none;
}

.navList a:hover {
    text-decoration: none;
}

.hdNameLink img {
    margin-right: 10px;
    max-width: 70px;
    width: 100%;
}


/* Global Styles */

.container {
    width: 95%;
    margin: auto;
}

/* Header Section */
.mainHeader {
    background-color: #574F49;
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

.navList {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navItem {
    margin: 0 15px;
}

.navLink {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navLink:hover {
    color: #fff;
}

.navList a {
    display: inline-block;
    padding: 2%;
    color: #fff;
    position: relative;
}

.navLink::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: 2em;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    }
    
.navLink:hover::after {
    visibility: visible;
    bottom: 0em;
    opacity: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 0;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
    animation: fadeInUp 1.5s ease;
}

/* About */

.experience {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 0;
}

.experience p {
    border: 1px solid #574F49;
    display: inline-block;
    padding: 4px 6px;
    /* margin: 5px 5px 0; */
    background: #574F49;
    color: #fff;
    border-radius: 5px 0 5px 0;
    font-size: 14px;
}

.tAboutGrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10%;
    margin: 20px 0 100px;
}

@media screen and (min-width: 1200px) {
    .tAboutGrid {
    display: grid;
    grid-template-columns: 315px 1fr 400px;
    gap: 5%;
    margin: 80px 0 100px;
    }
}

.tAboutImgBx01 {
    position: relative;
}

.tAboutImgBx01:before {
    content: "";
    display: block;
    width: 90%;
    height: 80%;
    background-color: #f3e6e6;
    position: absolute;
    right: -18%;
    bottom: -23%;
    z-index: -1;
}

/* Portfolio Section */

.portfolioSection{
	background:#fbf8e9 url(/assets/img/top/bg01.webp) repeat center top;
	background-size: 100% auto;
	position: relative;
	padding: 60px 25px;
	/* background: #F7F4EA; */
}

.portfolioItem {
    display: block;
    background-color: #fff;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* margin-bottom: 30px; */
    transition: transform 0.3s ease;
    /* padding: 15px; */
    /* width: 43%; */
    padding: 3.5rem;
    border-radius: 1rem;
}

.portfolioItem:hover {
    transform: scale(1.05);
}

.portfolioSection .container {
    /* padding: 20px; */
    /* display: flex; */
    /* grid-template-columns: repeat(3,1fr);
    flex-wrap: wrap;
    justify-content: space-between; */
}

.portfolioTitle:before {
    content: "";
    display: block;
    height: 22px;
    width: 5px;
    background-color: #5094B3;
    position: absolute;
    left: 0;
}

.portfolioSection h2 {
    /* width: 100%; */
}

.aboutText {
    letter-spacing: 0.05em;
    line-height: 2em;
    margin: 1em 0 0;
}

.subTit01 {
    color: #574F49;
    font-size: 13px;
    margin-top: 0.5em;
    letter-spacing: 0.05em;
    position: relative;
}

.tPortfolioAbouTxt {
    line-height: 1.5em;
    margin-top: 20px;
}

/* Footer */
.mainFooter {
    background-color: #574F49;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footerText {
    margin: 0;
    /* font-family: "Balthazar", serif; */
    font-size: 12px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
	width: 100%;
	}

.portfolioItem img {
    width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.portfolioGridArea {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.portfolioDescription {
    line-height: 1.75em;
    letter-spacing: 0.05em;
    font-size: 14px;
}

a {
    cursor: pointer;
}

.portfolioTitle {
    letter-spacing: 0.05em;
    line-height: 1.5em;
    font-size: 15px;
    /* border-left: 5px solid #333; */
    /* padding-left: 0.6em; */
    position: relative;
    padding-left: 1em;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.portfolioImgBx {
    position: relative;
    padding: 0 0 74.7%;
    height: 0;
    /* border-radius: 30px; */
    overflow: hidden;
    background: #707070;
    margin: 0 0 5px 0;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: flex;
  }
  
  .popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
    text-align: center;
    width: 300px;
  }
  
  .popup-content h2 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:hover {
    background-color: #2980b9;
  }
  
  .error-message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
    display: none;
  }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolioSection .container {
    /* max-width: 1163px; */
    /* width: 100%; */
}

@media screen and (max-width: 768px) {
	
.portfolioGridArea {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

}

