@charset "utf-8";

/* -------------------------------------------------------------------------
Base（全ページ共通の部分）
------------------------------------------------------------------------- */

img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* PCでは改行、SPでは改行なし */
.br-pc{
    display: inline;
}
/* SPでは改行、PCでは改行なし */
.br-sp{
    display: none;
}

@media screen and (max-width: 768px) {
.br-pc{
    display: none;
}
.br-sp{
    display: inline;
}
}

/* ------------------------------
共通 - Header
------------------------------ */

/* 共通 */
.menu-toggle {
    display: none;
}

/* モバイル用 */
@media (max-width: 768px) {
header{
    position: absolute;
    width: 100%;
    background: none; 
    z-index: 50;
    padding: 33px 25px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo{
    display: block;
    width: 109px;
}

/* ハンバーガーメニュー本体 */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 35px;
    height: 1.5px;
    background: #EAEAEA;
    transition: 0.4s;
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}
.menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.header-nav {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1000;
    opacity: 0;
    transform: scale(0.96); 
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-toggle:checked ~ .header-nav {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.nav-logo {
    display: block;
    margin-bottom: 35px;
}

.nav-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.nav-menu{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: #EAEAEA;
    font-size: 16px;
    font-family: "Hiragino Mincho ProN", serif;
    letter-spacing: 0.1rem;
    text-decoration: none;
}

.nav-menu a:hover{
    text-decoration: underline;
}

.header-nav-sns {
    display: flex;
    gap: 35px;
    margin-top: 70px;
}

.header-nav-sns a {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    color: #1C1B1B;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-decoration: none;
    font-family: "Hiragino Mincho ProN", serif;
}

.header-nav-sns a:hover {
    opacity: 0.6;
}
}

/* PC用 */
@media (min-width: 769px) {
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: none; 
    z-index: 50;
    padding: 33px 50px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo{
    display: block;
    width: 109px;
}

.nav-menu{
    display: flex;
    flex-direction: row;
    column-gap: 42px;
}

.nav-menu a {
    color: #EAEAEA;
    font-family: "Hiragino Mincho ProN", serif;
    letter-spacing: 0.1rem;
    text-decoration: none;
}

.nav-menu a:hover{
    text-decoration: underline;
}

.hamburger,
.menu-toggle,
.nav-logo,
.header-nav-sns {
    display: none;
}
}

/* ------------------------------
下層ページ - Header
------------------------------ */

.page-header{
    background-color: #000000;
}

@media screen and (max-width: 768px) {
.page-header{
    position: relative;
}
}

/* ------------------------------
共通 - sectionタイトル
------------------------------ */

/* sectionタイトル白 */
.section{
    text-align: center;
    color: #EAEAEA;
    font-family: Hiragino Mincho ProN ,serif;
}

.section-title {
    display: inline-block; 
    margin: 0 auto;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    padding: 50px 0 25px;
    border-bottom: #EAEAEA 0.5px solid;
}

.section-lead {
    padding: 25px 0 110px;
    line-height: 1.8;
    letter-spacing: 0.05rem;
}

/* sectionタイトル黒 */
.black-section{
    text-align: center;
    color: #1C1B1B;
    font-family: Hiragino Mincho ProN ,serif;
}

.black-section-title {
    display: inline-block; 
    margin: 0 auto;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    padding: 50px 0 25px;
    border-bottom: #1C1B1B 0.5px solid;
}

/* 共通コンテンツ幅 */
.inner {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}

/* ------------------------------
共通 - Contact
------------------------------ */

.contact{
    margin-top: 200px;
    padding-bottom: 90px;
    background-image: url(../images/home/contact-bg.jpg)
}

.page-contact{
    padding-bottom: 90px;
    background-image: url(../images/home/contact-bg.jpg)
}

.section-lead-contact .br-sp{
        display: none;
    }

.section-lead-contact{
    text-align: center;
    color: #EAEAEA;
    font-family: Hiragino Mincho ProN ,serif;
    padding-top: 25px;
    margin-bottom: 90px;
    line-height: 1.8;
}
.contact-btn {
    display: block;
    margin: 0 auto;
    width: 310px;
    padding: 15px 0;

    border: 1px solid #fff;
    background: #fff;
    border-radius: 200px;

    font-family: Hiragino Mincho ProN ,serif;
    letter-spacing: 0.05rem;
    font-weight: bold;
    color: #1C1B1B;
    text-decoration: none;
    text-align: center;
}

.contact-btn:hover {
    opacity: 0.6;
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
    .contact-inner{
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }

    .section-lead-contact{
        max-width: 402px;
        margin-bottom: 70px;
    }

    .section-lead-contact .br-sp{
        display: inline;
    }
}

/* ------------------------------
共通 - Footer
------------------------------ */

footer{
    background: #000000;
    padding: 75px 50px 180px;
}

.footer-line {
    background: #EAEAEA;
    width: 100%;
    height: 1px;
    margin: 120px auto 80px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: #EAEAEA;
    font-family: Hiragino Mincho ProN ,serif;
    letter-spacing: 0.05rem;
}

.footer-nav-sns {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
}

.footer-nav-sns a {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    color: #1C1B1B;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-decoration: none;
    font-family: "Hiragino Mincho ProN", serif;
}

.footer-nav-sns a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
footer{
    padding: 75px 25px 180px;
}

.footer-nav-sns{
    display: none;
}

#footer-menu-toggle:checked ~ .footer-hamburger span:nth-child(1) { 
    transform: translateY(7.5px) rotate(45deg); 
} 

#footer-menu-toggle:checked ~ .footer-hamburger span:nth-child(2) { 
    opacity: 0; 
} 

#footer-menu-toggle:checked ~ .footer-hamburger span:nth-child(3) { 
    transform: translateY(-7.5px) rotate(-45deg); 
}

#footer-menu-toggle:checked ~ .footer-nav { 
    opacity: 1; 
    pointer-events: auto; 
    transform: scale(1); }
}

/* ------------------------------
下層ページ共通 - Hero
------------------------------ */
.page-hero{
    display: flex;
    height: 100vh;
    margin-top: 80px;
}

.page-title{
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title h1{
    writing-mode: vertical-rl;
    color: #EAEAEA;
    font-family: "Yu Mincho", serif;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    font-weight: lighter;
    position: relative;
}

.page-title h1::before{
    content: "";
    position: absolute;
    height: 50px;
    width: 0.5px;
    background-color: #EAEAEA;
    top: -100px;
    left: 50%;
}

.page-mainvisual {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.page-mainvisual img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

@media screen and (max-width: 768px) {
    .page-hero{
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    margin-top: 0;}

    .page-title{
    height: 520px;
    width: 100%;}

    .page-title h1{
    writing-mode: vertical-rl;
    color: #EAEAEA;
    font-family: "Yu Mincho", serif;
    font-size: 1.5rem;
    letter-spacing: 0.375rem;
    font-weight: lighter;
    position: relative;}

    .page-title h1::before{
    content: "";
    position: absolute;
    height: 40px;
    width: 0.5px;
    background-color: #EAEAEA;
    top: -60px;
    left: 50%;}

    .page-mainvisual {
    height: 520px;
    overflow: hidden;}

    .page-mainvisual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;}
}


/* -------------------------------------------------------------------------
TOPページ
---------------------------------------------------------------------------- */

/* ------------------------------
TOP - Hero
------------------------------ */

.hero {
    position: relative;
    background-image: url(../images/home/hero-main.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.hero-copy {
    position: absolute;
    right: 50px;
    bottom: 40px;
    writing-mode: vertical-rl;
    color: #EAEAEA;
    font-family: "Yu Mincho", serif;
    font-size: 1.5rem;
    letter-spacing: 0.375rem;
}

.hero-copy span {
    display: block;     
    margin-right: 33px; 
}

.hero-copy span:first-child {
    margin-right: 0;
}

.hero-scroll {
    position: absolute;
    left: 60.5px;
    bottom: 65px;

    writing-mode: vertical-rl;
    color: #EAEAEA;
    font-family: "Hiragino Mincho ProN", serif;
    letter-spacing: 0.1rem;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll::after {
    content: "";
    display: block;
    width: 0.5px;
    height: 100px;
    background: #EAEAEA;
}

@media (max-width: 768px) {
    .hero-copy {
        right: 25px;
    }

    .hero-scroll {
        left: 35.5px;
}
}

/* ------------------------------
TOP - About
------------------------------ */

.about{
    padding: 200px 0;
}

.about-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-about-text{
    max-width: 1100px;
    padding: 0 160px 0 340px;
}

.about-logo{
    width: 200px;
    margin-bottom: 35px;
}

.message {
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    letter-spacing: 0.15rem;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-btn{
    align-self: flex-end;
    padding: 7px 40px;
    border-radius: 25px;
    border: 1px solid #1C1B1B;
    color: #1C1B1B;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
}

.about-btn:hover {
    background: #101010;
    color: #fff;
}

/* --------------------------------------------------------
タブレット (1024px 以下)
余白調整してレイアウトは横並びのまま維持
-------------------------------------------------------- */

@media (max-width: 1024px) {
    .about {
        padding: 150px 0;
    }

    .top-about-text {
        padding: 0 60px;
    }

    .about-inner {
        gap: 20px;
    }
}


/* --------------------------------------------------------
スマホ (768px 以下)
画像 → テキスト の縦並びに切り替え
-------------------------------------------------------- */

@media (max-width: 768px) {
    .about {
        margin-top: 200px;
    }

    .about-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-about-text {
        max-width: 402px;
        padding: 0 50px;
    }

    .about-logo {
        margin: 0 auto;
    }

    .message {
        text-align: center;
        gap: 50px;
        padding: 50px 0;
    }

    .about-btn {
        align-self: center; 
    }

    .about-leaf img {
        max-width: 768px;
        margin: 150px auto 0;
    }
}

/* ------------------------------
TOP - Works
------------------------------ */

.works {
    background: #101010;
}

.works-inner{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 180px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    justify-content: center;
}

.work-item {
    text-decoration: none;
}

.work-title {
    font-family: "Hiragino Mincho ProN", serif;
    margin-top: 10px;
    color: #EAEAEA;
    margin-bottom: 65px;
}

.works-button-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.works-btn{
    padding: 7px 40px;
    border-radius: 25px;
    border: 1px solid #EAEAEA;
    font-family: "Hiragino Mincho ProN", serif;
    color: #EAEAEA;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
    margin: 45px 0 100px;
}

.works-btn:hover {
    background: #fff;
    color: #1C1B1B;
}

/* ▼ タブレット向け：幅1024px以下で2列 */
@media (max-width: 1024px) {
    .works-inner{
        padding: 0 40px;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
    .works-inner{
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }
    .works-grid {
        grid-template-columns: 1fr;
    }

    .works-button-wrap {
        max-width: 402px;
        margin: 0 auto;
        justify-content: center; 
    }
}

/* ------------------------------
TOP & WORKS - Photo Gallery
------------------------------ */

.photo-gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 88px;
    max-width: 1440px;
    padding: 0 50px;
    margin: 200px auto;
}

/* ▼ タブレット向け：幅1024px以下で2列 */
@media (max-width: 1024px) {
    .photo-gallery{
        gap: 40px;
    }
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
    .photo-gallery{
        max-width: 402px;
        margin: 200px auto;
        padding: 0 25px;
        gap: 88px;
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
TOP - Service
------------------------------ */

.service {
    background: #101010;
}

.service-inner{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 180px;
}

.service-card{
    display: flex;
    gap: 190px;
}

.service h3{
    color: #1C1B1B;
    font-size: 1.5rem;
    font-family: Hiragino Mincho ProN ,serif;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.075rem;
    text-align: center;
}

.service h4{
    color: #1C1B1B;
    font-size: 1.25rem;
    font-family: Hiragino Mincho ProN ,serif;
    font-weight: bold;
    padding-top: 35px;
    padding-bottom: 15px;
    letter-spacing: 0.0625rem;
    text-align: center;
}

.web-design,
.graphic-design {
    flex: 1; 
    background-color: #fff;
    margin: 0 auto 80px;
    padding: 50px 0;
}

.service-icon {
    width: 160px;
    margin: 0 auto;
}

.web-design p,
.graphic-design p {
    color: #1C1B1B;
    line-height: 1.8;
    font-family: "Hiragino Mincho ProN", serif;
    padding: 0 69px;
    margin: 0 auto;
    text-align: left;
}

.card-top::after {
    content: "";
    display: block;
    width: 185px;
    margin: 35px auto 0;
    height: 0.5px;
    background: #1C1B1B;
}

.service-btn-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.service-btn {
    padding: 7px 40px;
    border-radius: 25px;
    border: 1px solid #EAEAEA;
    font-family: "Hiragino Mincho ProN", serif;
    color: #EAEAEA;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 100px;
}

.service-btn:hover {
    background: #fff;
    color: #1C1B1B;
}

/* ▼幅1300px以下*/
@media (max-width: 1300px) {
    .service-inner{
        max-width: 1080px;
        padding: 0 40px;
    }

    .service-card{
    display: flex;
    gap: 50px;
}

    .web-design p,
.graphic-design p {
    padding: 0 25px;
}
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
    .service-inner{
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }

    .service-card {
        flex-direction: column;
        gap: 110px;
    }
    
    .web-design,
    .graphic-design {
        width: 100%;
        margin: 0 auto;
    }

    .service-btn-wrap {
        max-width: 402px;
        margin: 110px auto;
        justify-content: center; 
    }
}



/* -------------------------------------------------------------------------
Aboutページ
---------------------------------------------------------------------------- */

.about-section{
    color: #1C1B1B;
}

/* ------------------------------
About & Works - Textセクション 
------------------------------ */

.page-text-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 200px 520px;
    display: flex;
    justify-content: center;
}

.text-section-inner p {
    writing-mode: vertical-rl;
    font-family: "Yu Mincho", serif;
    font-size: 1.3rem;
    letter-spacing: 0.375rem;
    line-height: 2.5;
    letter-spacing: 2px;
    color: #1C1B1B;
}

@media screen and (max-width: 1024px) {
    .page-text-section {
    padding: 200px 60px;}
}

@media screen and (max-width: 768px) {
    .page-text-section {
    padding: 200px 60px;}
    
    .text-section-inner p {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05rem;}
}

/* ------------------------------
About - Profile
------------------------------ */

.profile {
    width: 100%;
    margin-bottom: 150px;
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
}

.profile-container {
    max-width: 1440px;
    padding: 0 180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 190px;
}

.profile-image img {
    width: 100%;
    height: auto;
}

.profile-text {
    flex: 1;
}

.profile-text h2 {
    font-size: 2rem;
    font-weight: lighter;
    letter-spacing: 0.08rem;
    margin-bottom: 100px;
}

.profile-text ul {
    margin-bottom: 100px;
}

.profile-text ul li {
    letter-spacing: 0.05rem;
    line-height: 2.3;
}

.profile-btn {
    align-self: flex-end;
    padding: 7px 40px;
    border-radius: 25px;
    border: 1px solid #1C1B1B;
    color: #1C1B1B;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
}

.profile-btn:hover {
    background: #101010;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .profile-container {
        display: flex;
        flex-direction: column;
        gap: 100px;
        max-width: 402px;
        padding: 0 25px;
        margin: 0 auto;}
}

/* ------------------------------
About - Skills
------------------------------ */
.skills{
    max-width: 1440px;
    padding: 0 180px;
    font-family: "Hiragino Mincho ProN", serif;
    margin: 0 auto 110px;
}

.skill-item{
    display: flex;
    border: #1C1B1B 1px solid;
    max-width: 850px;
    align-items: center;
    margin: 0 auto 40px;
}

.skill-response-flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-item h3{
    width: 95px;
    letter-spacing: 0.05rem;
    margin: 10px 110px 10px 40px;
}

.skill-description{
    max-width: 350px;
    margin: 10px 10px 10px 90px;
}

.dot-1 {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 7px;
    border-radius: 50%;
    background-color: #1C1B1B;
}

.dot-2 {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 7px;
    border-radius: 50%;
    background-color: #1C1B1B;
}

.dot-3 {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 7px;
    border-radius: 50%;
    background-color: #1C1B1B;
}

.dot-4 {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 7px;
    border-radius: 50%;
    background-color: #CDCDCD;
}

.dot-5 {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 7px;
    border-radius: 50%;
    background-color: #CDCDCD;
}

.dot-6 {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #CDCDCD;
}

@media screen and (max-width: 1200px) {
.skill-item h3{
    margin: 10px 50px 10px 50px;
}
.skill-description{
    max-width: 300px;
    margin: 10px 10px 10px 50px;
}
}

@media screen and (max-width: 1024px) {
    .skills {
        padding: 0 25px;}

    .skill-item {
        border: none;
        flex-direction: column;
        align-items: center;
        max-width: 352px;
        margin: 0 auto 60px;}

    .skill-response-flex{
        display: flex;
        align-items: center;
        border: #1C1B1B 1px solid;
        gap: 50px;
        padding: 10px 40px;}

    .skill-item h3 {
        margin: 10px 0;}

    .skill-description {
        max-width: 352px;
        margin: 20px 7px;}
}

/* ------------------------------
About - Myself
------------------------------ */
.myself{
    max-width: 1440px;
    padding: 0 180px;
    font-family: "Hiragino Mincho ProN", serif;
    margin: 0 auto 150px;
}

.myself-3cards{
    display: flex;
    gap: 120px;
}

.myself-card{
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.myself-card h2{
    font-size: 1rem;
    letter-spacing: 0.05rem;
}

.myself-card p{
    letter-spacing: 0.05rem;
    max-width: 260px;
}

@media screen and (max-width: 1024px) {
.myself {
    padding: 0 25px;
}

.myself-3cards {
    flex-direction: column;
    gap: 110px;
}

.myself-card {
    max-width: 352px;
    margin: 0 auto;
}

.myself-card img{
    width: 100%;
}

.myself-card p{
    letter-spacing: 0.05rem;
    max-width: 352px;
}
}

/* ------------------------------
About - Likes
------------------------------ */
.likes{
    max-width: 1440px;
    padding: 0 180px;
    font-family: "Hiragino Mincho ProN", serif;
    margin: 0 auto 200px;
}

.interests {
    max-width: 1080px;
    display: flex;
    justify-content: center;
    gap: 33px;
}

.interest {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    margin-bottom: 110px;
}

.interest-text{
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.circle {
    position: relative;
    width: 115px;
    height: 115px;
    border: 1px solid #1C1B1B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img{
    width: 50px;
    height: auto;
    display: block;
}

.circle::before {
    content: attr(data-number);
    position: absolute;
    top: -5px;
    left: -5px;
    background: #fff;
    padding: 3px 3px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    color: #1C1B1B;
}

.interest h3 {
    letter-spacing: 0.05rem;
    font-size: 1rem;
}

.interest p {
    max-width: 190px;
    letter-spacing: 0.05rem;
}

.about-blog-intro {
    letter-spacing: 0.05rem;
    line-height: 2;
    font-family: "Yu Mincho", serif;
    margin-bottom: 75px;
    text-align: center;
}

.blog-grid {
    display: flex;
    gap: 120px;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto 65px;
}

.blog-item {
    text-decoration: none;
}

.blog-grid p {
    font-family: "Hiragino Mincho ProN", serif;
    margin-top: 10px;
    color: #1C1B1B;
}

.date{
    font-size: 14px;
}

.blog-btn-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.blog-btn{
    padding: 7px 40px;
    border-radius: 25px;
    border: 1px solid #1C1B1B;
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
}

.blog-btn:hover {
    background: #101010;
    color: #fff;
}

@media screen and (max-width: 1024px) {
.likes {
    padding: 0 25px;
}

.interests{
    flex-wrap: wrap;
    max-width: 352px;
    margin: 0 auto;
    gap: 0;
}

.interest {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;
}
}

@media screen and (max-width: 1024px) {
.blog-grid {
    flex-direction: column;
    max-width: 352px;
    margin: 0 auto;
    gap: 70px;
}

.blog-grid img{
    width: 100%;
}

.blog-btn-wrap {
    margin-top: 70px;
    justify-content: center;
}
}

/* ------------------------------
About - My story
------------------------------ */
.my-story{
    background-color: #101010;
    margin: 0 auto 20px;
    padding: 50px 0 100px;
    width: 100%;
}

.story-content{
    font-family: "Hiragino Mincho ProN", serif;
    color: #EAEAEA;
    padding: 0 180px;
    margin: 0 auto;
    max-width: 1440px;
}

.story-content h3{
    font-size: 1.25rem;
    letter-spacing: 0.075rem;
    font-weight: lighter;
    margin-bottom: 45px;
}

.story-content p{
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.8;
    font-weight: lighter;
}

.story-summary{
    padding-bottom: 45px;
}

.border-top-dashed{
    padding-top: 45px;
    border-top: #EAEAEA 0.5px dashed;
}

.story-text{
    margin-bottom: 35px;
}

.story-01{
    display: flex;
    flex-wrap: wrap;
    gap: 132px;
    align-items: flex-start;
}

.story-01-text {
    max-width: 387px;
}

.story-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 560px;
    gap: 100px;
}

.story-image01{
    max-width: 350px;
}

.story-image02{
    max-width: 560px;
}

.photo-btn-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.photo-btn{
    padding: 7px 40px;
    border-radius: 25px;
    border: 1px solid #EAEAEA;
    font-family: "Hiragino Mincho ProN", serif;
    color: #EAEAEA;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
    margin: 55px 0 200px;
}

.photo-btn:hover {
    background: #fff;
    color: #1C1B1B;
}

.story-02-text{
    margin: 35px auto 200px;
}

.story-message{
    padding: 40px 141px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/about/story03.jpg)
}

.message-top{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 45px;
}

.story-message img{
    display: block;
    width: 200px;
}

.message-bottom{
    margin-top: 35px;
}

@media screen and (max-width: 768px) {
.story-content {
    max-width: 402px;
    padding: 0 25px;
    margin: 0 auto;
}

.story-01{
    display: flex;
    flex-direction: column-reverse;
    gap: 100px;
}

.photo-btn-wrap {
    justify-content: center;
}

.story-image {
    width: 100%;
    align-items: center;
    gap: 40px;
}

.story-image01,
.story-image02 {
    max-width: 100%;
}

.story-message {
    padding: 40px 10px;
}
}

/* -------------------------------------------------------------------------
Worksページ
---------------------------------------------------------------------------- */

.page-works {
    background: #fff;
}

.page-works-inner{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 180px;
}

.page-works-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    justify-content: center;
}

.page-work-item {
    text-decoration: none;
}

.page-work-date{
    font-family: "Hiragino Mincho ProN", serif;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #1C1B1B;
}

.page-work-title {
    font-family: "Hiragino Mincho ProN", serif;
    margin-top: 10px;
    color: #1C1B1B;
}

/* ページボタン */
.pagination{
    font-family: "Hiragino Mincho ProN", serif;
    padding: 150px 0 50px;
}

.pagination ul {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 12px;
}

.pagination a {
    display: block;
    padding: 6px 15px;
    text-decoration: none;
    color: #1C1B1B;
    border: 1px solid #1C1B1B;
    font-size: 1.25rem;
}

.pagination a:hover {
    background-color: #8f8f8f;
}

.pagination a.active {
    background-color: #282828;
    color: #EAEAEA;
    pointer-events: none;
}

/* ▼ タブレット向け：幅1024px以下で2列 */
@media (max-width: 1200px) {
    .page-works-inner{
        padding: 0 40px;
        max-width: 800px;
        margin: 0 auto;
    }
    .page-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
.page-works-inner{
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
}
.page-works-grid {
        grid-template-columns: 1fr;
}
.pagination{
    padding: 0;
}
.pagination a {
    font-size: 1rem;
}
}

/* -------------------------------------------------------------------------
Works詳細ページ
---------------------------------------------------------------------------- */

.works-detail-inner{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 180px;
}

.works-detail-heading{
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    max-width: 1080px;
    border-bottom: #1C1B1B 1px solid;
}

.works-detail-heading h3{
    font-size: 1.8rem;
    font-weight: 400;
}

.works-detail-heading p{
    font-size: 1.125rem;
}

.works-detail-image img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 80px auto;
}

.work-keywords{
    padding-bottom: 80px;
}

.work-keywords h4{
    font-family: "Yu Mincho", serif;
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.work-keywords h4::before{
    content:"";
    display: inline-block;
    width: 120px;
    height: 0.5px;
    background: #1C1B1B;
}

.work-keywords p{
    word-break: break-word;
    font-family: "Hiragino Mincho ProN", serif;
    letter-spacing: 0.05rem;
    line-height: 1.8;
}

/* ページボタン */
.works-detail-pagination{
    font-family: "Hiragino Mincho ProN", serif;
    padding: 70px 0 50px;
}

.works-detail-pagination ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.works-detail-pagination a {
    display: block;
    padding: 6px 25px;
    text-decoration: none;
    color: #1C1B1B;
    border: 1px solid #1C1B1B;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
}

.works-detail-pagination a:hover {
    background-color: #8f8f8f;
}

.works-detail-pagination a.active {
    background-color: #282828;
    color: #EAEAEA;
    pointer-events: none;
}

@media (max-width: 1024px) {
.works-detail-heading{
    flex-direction: column;
    gap: 15px;
}
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
.works-detail-inner{
    max-width: 402px;
    margin: 0 auto;
    padding: 0 25px;
}

.works-detail-heading h3{
    font-size: 1.25rem;
}

.works-detail-heading p{
    font-size: 0.9rem;
}

.work-keywords h4{
    font-size: 1.25rem;
}

.pagination{
    padding: 80px 0 0 0;
}

.works-detail-pagination a {
    font-size: 1rem;
}
}

/* -------------------------------------------------------------------------
Serviceページ
---------------------------------------------------------------------------- */

/* ------------------------------
Service - サービス一覧
------------------------------ */

.page-service-list{
    background-color: #fff;
    padding: 200px 0;
}

.page-service-list h3{
    color: #1C1B1B;
    font-size: 1.5rem;
    font-family: Hiragino Mincho ProN ,serif;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.075rem;
    text-align: center;
}

.page-service-list h4{
    color: #1C1B1B;
    font-size: 1.25rem;
    font-family: Hiragino Mincho ProN ,serif;
    font-weight: bold;
    padding-top: 35px;
    padding-bottom: 15px;
    letter-spacing: 0.0625rem;
    text-align: center;
}

.web-design,
.graphic-design {
    width: 445px;
    background-color: #fff;
    margin: 0 auto 80px;
    padding: 50px 0;
}

.service-icon {
    width: 160px;
    margin: 0 auto;
}

.web-design p,
.graphic-design p {
    color: #1C1B1B;
    line-height: 1.8;
    font-family: "Hiragino Mincho ProN", serif;
    max-width: 445px;
    padding: 0 69px;
    margin: 0 auto;
    text-align: left;
}

.card-top::after {
    content: "";
    display: block;
    width: 185px;
    margin: 35px auto 0;
    height: 0.5px;
    background: #1C1B1B;
}

/* ▼ タブレット向け：幅1024px以下で2列 */
@media (max-width: 1024px) {
    .service-inner{
        padding: 0 40px;
    }

    .service-card {
        gap: 40px;
    }

    .web-design p,
.graphic-design p {
    max-width: 350px;
    padding: 0 25px;
}
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
    .service-inner{
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }

    .service-card {
        flex-direction: column;
        gap: 110px;
    }
    
    .web-design,
    .graphic-design {
        width: 100%;
        margin: 0 auto;
    }
}

/* ------------------------------
Service - text
------------------------------ */

.service-message-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 200px;
}

.service-message-section img{
    max-width: 100%;
    height: auto;
}

.service-message{
    max-width: 619px;
    padding: 0 92px;
    font-family: Hiragino Mincho ProN ,serif;
    letter-spacing: 0.05rem;
    line-height: 1.8;
}

/* 幅1200px以下で画像1枚に */
@media (max-width: 1200px) {
    .service-left-ripples{
        display: none;
    }
    
    .service-message-section{
        display: flex;
        flex-direction: row-reverse;
    }
}

@media (max-width: 1024px) {
    .service-left-ripples{
        display: none;
    }
    
    .service-message-section{
        display: flex;
        flex-direction: column-reverse;
        gap: 70px;
    }
}

/* ------------------------------
Service - Flow & Price
------------------------------ */

.flow-price{
    max-width: 1440px;
    padding: 0 180px;
    margin: 0 auto;
    font-family: Hiragino Mincho ProN ,serif;
}

.flow-links{
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 950px;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-bottom: 190px;
}

.flow-links a{
    padding: 7px 35px;
    border-radius: 25px;
    border: 1px solid #1C1B1B;
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
    margin: 10px auto;
}

.flow-links a:hover {
    background: #101010;
    color: #fff;
}

/* ===== 共通 ===== */

.flow-price h3{
    font-size: 2rem;
    color: #EAEAEA;
}

.flow-price h4{
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.flow-price h4::before,
.flow-price h4::after {
    content:"—";
    margin:0 15px;
}

@media screen and (max-width: 1024px) {
.flow-price{
    max-width: none;
    padding: 0;
}
.flow-links{
    max-width: 800px;
    padding: 0 100px;
}
.service-sp-inner{
    max-width: 800px;
    padding: 0 100px;
    margin: 0 auto;
}
.flow-price h3{
    font-size: 1.8rem;
}
}

@media screen and (max-width: 768px) {
.flow-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-sp-inner{
    max-width: 402px;
    padding: 0 25px;
    margin: 0 auto;
}
}

/* ===== 各項目 ===== */

.request{
    color: #1C1B1B;
    text-align: center;
    margin-top: 110px;
}

.flow{
    color: #1C1B1B;
    text-align: center;
    margin: 110px 0;
}

.price{
    color: #1C1B1B;
    text-align: center;
    margin: 110px 0;
}

.service-works{
    color: #1C1B1B;
    text-align: center;
    margin: 110px 0 200px;
}

/* ===== 制作の流れの図 ===== */

.flow-5steps{
    max-width: 1080px;
    color: #1C1B1B;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 70px;
    column-gap: 100px;
}

.flow-steps{
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    
}

.flow-steps-text{
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.circle {
    position: relative;
    width: 115px;
    height: 115px;
    border: 1px solid #1C1B1B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img{
    width: 50px;
    height: auto;
    display: block;
}

.circle::before {
    content: attr(data-number);
    position: absolute;
    top: -5px;
    left: -5px;
    background: #fff;
    padding: 3px 3px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    color: #1C1B1B;
}

.flow-steps h5 {
    letter-spacing: 0.05rem;
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
}

.flow-steps p {
    max-width: 190px;
    letter-spacing: 0.05rem;
    line-height: 1.8;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 14px solid #1C1B1B;
    align-self: center;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
.flow-5steps {
    flex-direction: column;
    align-items: center;
    gap: 110px;
    overflow: visible;
}

.flow-steps {
    width: 100%;
    max-width: 100%;
    text-align: left;
    flex-direction: row;
    column-gap: 50px;
    align-items: center;
}

.flow-steps-text {
    flex: 1;
}

.arrow-right {
    transform: rotate(90deg);
    margin: -20px 0;
}
}


/* ===== 料金表 ===== */

.price-list {
    display: flex;
    justify-content: center;
    margin-bottom: 110px;
}

table {
    width: 840px;
    border-collapse: collapse;
    border-spacing: 0;
}

tbody td {
    color: #1C1B1B;
    padding: 44px 30px;
    text-align: left;
    border-bottom: 1px solid #BEBEBE;
}

thead th {
    color: #1C1B1B;
    font-weight: 600;
    padding: 5px 30px;
    border-bottom: 1px solid #BEBEBE;
}

th:nth-child(1), td:nth-child(1),
th:nth-child(2), td:nth-child(2),
th:nth-child(3), td:nth-child(3),
th:nth-child(4), td:nth-child(4) {
    text-align: left;
}

tbody tr:last-child td {
    border-bottom: none; /* 最後の横線を消す*/
    }

@media screen and (max-width: 1024px) {
/* 表全体 */
table {
    width: 352px;
    margin: 0 auto;
}

/* ===== ヘッダー ===== */
thead {
    display: block;
}

thead tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #BEBEBE;
}

thead th {
    text-align: left;
    padding: 0px 90px 25px 0px;
    border: none;
}

thead th:nth-child(3),
thead th:nth-child(4) {
    display: none;
}

/* ===== ボディ ===== */
tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 0;
    border-bottom: 1px solid #BEBEBE;
}

tbody td {
    padding: 0;
    border: none;
    text-align: left;
}

tbody tr:last-child {
    border: none; /* 最後の横線を消す*/
}

tbody tr > td:nth-child(1),
tbody tr > td:nth-child(2) {
    display: grid;
    font-weight: 600;
}
/* 1列目：サイト種別 */
tbody td:nth-child(1) {
    grid-column: 1;
}
/* 2列目：料金 */
tbody td:nth-child(2) {
    grid-column: 2;
}

  /* 下段：説明文 */
tbody td:nth-child(3),
tbody td:nth-child(4) {
    grid-column: 1 / -1;
    font-size: 14px;
    letter-spacing: 0.05rem;
    color: #1C1B1B;
}

tbody td:nth-child(3)::before {
    content: "";
    display: block;
    margin-top: 30px;
}

tbody td:nth-child(3)::after {
    content: "  /  ";
}

tbody td:nth-child(3){
    margin-bottom: 10px;
}

.no-slash tbody td:nth-child(3)::after {
    content: none;
}
}

/* ===== 制作実績 ===== */

.service-works-grid {
    display: flex;
    gap: 45px;
    justify-content: center;
    max-width: 1080px;
    margin: 80px auto;
}

.service-works-item {
    text-decoration: none;
}

.service-works-grid p {
    font-family: "Hiragino Mincho ProN", serif;
    margin-top: 10px;
    text-align: left;
    color: #1C1B1B;
}

.service-works-btn-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.service-works-btn{
    padding: 7px 40px;
    border-radius: 25px;
    border: 1px solid #1C1B1B;
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-decoration: none;
}

.service-works-btn:hover {
    background: #101010;
    color: #fff;
}

@media screen and (max-width: 1024px) {
.service-works-grid {
    flex-direction: column;
    max-width: 352px;
    margin: 0 auto;
    gap: 70px;
}

.service-works-grid img{
    width: 100%;
}

.service-works-btn-wrap {
    margin-top: 70px;
    justify-content: center;
}
}


/* ------------------------------
Service - WEBサイト制作
------------------------------ */

.website-title{
    width: 100%;
    aspect-ratio: 1080 / 222;
    display:flex;
    align-items:center;
    justify-content:center;
    background-image: url(../images/service/website-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media screen and (max-width: 768px) {
.website-title{
    width: 100%;
    aspect-ratio: 1080 / 222;
    display:flex;
    align-items:center;
    justify-content:center;
    background-image: url(../images/service/website-bg-sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
}

/* ------------------------------
Service - WEB画像制作
------------------------------ */

.webimage-title{
    width: 100%;
    aspect-ratio: 1080 / 222;
    display:flex;
    align-items:center;
    justify-content:center;
    background-image: url(../images/service/webimages-bg.jpg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ------------------------------
Service - 印刷物制作
------------------------------ */

.printed-title{
    width: 100%;
    aspect-ratio: 1080 / 222;
    display:flex;
    align-items:center;
    justify-content:center;
    background-image: url(../images/service/printed-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ------------------------------
Service - ブランドビジュアル制作
------------------------------ */

.brandvisual-title{
    width: 100%;
    aspect-ratio: 1080 / 222;
    display:flex;
    align-items:center;
    justify-content:center;
    background-image: url(../images/service/brandvisual-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* -------------------------------------------------------------------------
Blogページ
---------------------------------------------------------------------------- */

/* ------------------------------
Blog - メッセージセクション
------------------------------ */

.blog-message{
    padding: 200px 0;
    display: flex;
    align-items: center;
}

.blog-message-right{
    display: flex;
    flex-direction: column;
    max-width: 970px;
    padding: 0 270px 0 190px;
}

.blog-message-right .br-sp{
    display: none;
}

.blog-message p{
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    line-height: 1.8;
    letter-spacing: 0.1rem;
}

.blog-links{
    display: flex;
    max-width: 570px;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-top: 75px;
}

.blog-links a{
    padding: 7px 25px;
    border-radius: 25px;
    border: 1px solid #1C1B1B;
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    letter-spacing: 0.05rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.blog-links a:hover {
    background: #101010;
    color: #fff;
}

/*1300px以下） */
@media screen and (max-width: 1300px) {
.blog-message-right{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 100px;
}
}

/* タブレット対応（1024px以下） */
@media screen and (max-width: 1024px) {
.blog-message-right{
    padding: 50px;
}
}

/* スマホ対応（768px以下） */
@media screen and (max-width: 768px) {
.blog-message {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 200px 0
}

.blog-message-visual{
    width: 100%;
}

.blog-message-right {
    padding: 0 55px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.blog-category{
    font-size: 15px;
}

.blog-message-right .br-sp{
    display: inline;
}

.blog-message-right .br-pc{
    display: none;
}

.blog-links{
    flex-direction: column;
    row-gap: 30px;
    margin: 50px auto 0;
}
}

/* ------------------------------
Blog - 背景白黒 共通 
------------------------------ */

.page-blog-grid {
    max-width: 1440px;
    margin: 40px auto 0;
    padding: 0 180px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    justify-content: center;
}

.page-blog-item {
    text-decoration: none;
}


/* ------------------------------
Blog - ブログ背景黒
------------------------------ */

.blog-black{
    background-color: #101010;
    padding: 100px 0;
}

.blog-black .br-sp{
    display: none;
}

.white-blog-date{
    font-family: "Hiragino Mincho ProN", serif;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #EAEAEA;
}

.white-blog-title {
    font-family: "Hiragino Mincho ProN", serif;
    margin-top: 10px;
    color: #EAEAEA;
}

/* ページボタン（白） */
.blog-white-pagination{
    font-family: "Hiragino Mincho ProN", serif;
    padding: 150px 0 75px;
}

.blog-white-pagination ul {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 12px;
}

.blog-white-pagination a {
    display: block;
    padding: 6px 15px;
    text-decoration: none;
    color: #1C1B1B;
    background-color: #fff;
    font-size: 1.25rem;
}

.blog-white-pagination a:hover {
    background-color: #b1b1b1;
}

.blog-white-pagination a.active {
    background-color: #6a6969;
    color: #EAEAEA;
    pointer-events: none;
}

/* ▼ タブレット向け：幅1024px以下で2列 */
@media (max-width: 1024px) {
    .blog-black{
        padding: 0 40px;
    }
    .page-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
    .blog-black .section{
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }
    .blog-black .br-sp{
        display: inline;
    }
    .blog-black .br-pc{
        display: none;
    }
    .page-blog-grid {
        grid-template-columns: 1fr;
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }
    .blog-white-pagination a {
    display: block;
    padding: 6px 15px;
    text-decoration: none;
    color: #1C1B1B;
    border: 1px solid #1C1B1B;
    font-size: 1rem;}
}


/* ------------------------------
Blog - ブログ背景白（文字黒）
------------------------------ */

.blog-white{
    padding: 100px 0;
}

.black-blog-date{
    font-family: "Hiragino Mincho ProN", serif;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #1C1B1B;
}

.black-blog-title {
    font-family: "Hiragino Mincho ProN", serif;
    margin-top: 10px;
    color: #1C1B1B;
}

/* ページボタン（黒枠） */
.blog-black-pagination{
    font-family: "Hiragino Mincho ProN", serif;
    padding: 150px 0 75px;
}

.blog-black-pagination ul {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 12px;
}

.blog-black-pagination a {
    display: block;
    padding: 6px 15px;
    text-decoration: none;
    color: #1C1B1B;
    border: #1C1B1B 1px solid;
    font-size: 1.25rem;
}

.blog-black-pagination a:hover {
    background-color: #b1b1b1;
}

.blog-black-pagination a.active {
    background-color: #6a6969;
    color: #EAEAEA;
    pointer-events: none;
}

/* ▼ タブレット向け：幅1024px以下で2列 */
@media (max-width: 1024px) {
    .blog-white{
        padding: 0 40px;
    }
    .page-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ▼ スマホ向け：幅768px以下で1列 */
@media (max-width: 768px) {
    .blog-white .black-section{
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }
    .blog-black .br-pc{
        display: none;
    }
    .page-blog-grid {
        grid-template-columns: 1fr;
        max-width: 402px;
        margin: 0 auto;
        padding: 0 25px;
    }
    .blog-black-pagination a {
    display: block;
    padding: 6px 15px;
    text-decoration: none;
    color: #1C1B1B;
    border: 1px solid #1C1B1B;
    font-size: 1rem;}
}


/* ------------------------------
Blog - 締めくくり
------------------------------ */

.blog-close{
    margin: 200px auto;
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    line-height: 1.8;
    letter-spacing: 0.05rem;
    text-align: center;
}

@media (max-width: 768px) {
    .blog-close{
        max-width: 402px;
        margin: 200px auto;
        padding: 0 25px;
    }
    .blog-close .br-pc{
        display: none;
    }
}
/* -------------------------------------------------------------------------
Contactページ
---------------------------------------------------------------------------- */

.contact-page-hero{
    position: relative;
    height: 100vh;
    margin-top: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/contact/hero-shadow.jpg);
}

.contact-page-title{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
}

.contact-page-title h1{
    writing-mode: vertical-rl;
    color: #EAEAEA;
    font-family: "Yu Mincho", serif;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    font-weight: lighter;
    position: relative;
}

.contact-page-title h1::before{
    content: "";
    position: absolute;
    height: 50px;
    width: 0.5px;
    background-color: #EAEAEA;
    top: -100px;
    left: 50%;
}



/* ------------------------------
Contact - メッセージセクション
------------------------------ */

.contact-message{
    padding: 200px 0;
    display: flex;
    align-items: center;
}

.contact-message-right{
    display: flex;
    flex-direction: column;
    gap: 45px;
    max-width: 970px;
    padding: 108px 207px 108px 181px;
}

.contact-message-right .br-sp{
    display: none;
}

.contact-message p{
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    line-height: 1.8;
    letter-spacing: 0.1rem;
}

.contact-message-logo{
    display: block;
    width: 200px;
}


/* ------------------------------
Contact - 問い合わせフォーム
------------------------------ */

.contact-form{
    max-width: 1440px;
    padding: 0 180px;
    margin: 0 auto 200px;
}

.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 10px;

    max-width: 1080px;
    padding: 90px 80px;
    background-color: #E4E4E4;
    border-radius: 10px;
    margin: 0 auto 80px;

    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
}

.form-left{
    letter-spacing: 0.05rem;
    font-weight: bold;
    display: block;
    width: 150px;
}

.form-right{
    margin-left: 65px;
    width: 700px;
}

.contact-form label{
    display: flex;
    align-items: center;
}

.required{
    color: #FB0000;
}

.contact-form input,
.contact-form textarea{
    padding: 10px; 
    background-color: #fff;
    border: #1C1B1B 1px solid;
    border-radius: 5px;
}

.contact-form textarea { 
    min-height: 120px; 
    resize: vertical; 
}

.privacy{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox{
    flex-direction: row; 
    align-items: center; 
    font-weight: normal;
    font-weight: bold;
}

.checkbox a,
.contact-address a{
    color: #1C1B1B;
}

.privacy p{
    font-weight: normal;
    line-height: 1.8;
    letter-spacing: 0.05;
}

.form-btn{
    max-width: 1080px;
    display: flex;
    justify-content: center;
    margin: 50px auto;
}

.contact-address{
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 35px;
    padding-bottom: 50px;
    font-family: "Hiragino Mincho ProN", serif;
    color: #1C1B1B;
    letter-spacing: 0.05rem;
    line-height: 1.8;
}

/* ------------------------------
Contact - 締めくくり
------------------------------ */

.contact-close{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/home/contact-bg.jpg)
}

.contact-close p{
    color: #EAEAEA;
    font-family: Hiragino Mincho ProN ,serif;
    line-height: 1.8;
    letter-spacing: 0.05rem;
    text-align: center;
    max-width: 1080px;
    padding: 0 330px;
    margin: 0 auto;
}

/*1300px以下） */
@media screen and (max-width: 1300px) {
.contact-message-right{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 100px;
}
.contact-form{
    max-width: 1440px;
    padding: 0 100px;
    margin-bottom: 200px;
}
}

/* タブレット対応（1024px以下） */
@media screen and (max-width: 1024px) {
.contact-message-right{
    padding: 50px;
}

.contact-form form {
    padding: 60px 40px;
}

.form-left {
    width: 120px;
}

.form-right {
    width: 100%;
    margin-left: 20px;
}

.contact-close p {
    padding: 0 100px;
}
}

/* スマホ対応（768px以下） */
@media screen and (max-width: 768px) {
.contact-page-hero{
    margin-top: 0px;
}

.contact-form{
    max-width: none;
    padding: 0;
}

.contact-page-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-page-title h1 {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
}

.contact-message {
    display: flex;
    flex-direction: column-reverse;
    gap: 100px;
    padding: 200px 0
}

.contact-message-visual{
    width: 100%;
}

.contact-message-right {
    padding: 0 55px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.contact-message-right .br-sp{
    display: inline;
}

.contact-detail-text{
    text-align: left;
    margin: 70px auto;
}

.contact-form .black-section{
    padding: 0 25px;
}

.contact-form form {
    padding: 40px 25px;
    gap: 50px;
}

.contact-form label {
    flex-direction: column;
    align-items: flex-start;
}

.form-left {
    width: 100%;
    margin-bottom: 10px;
}

.form-right {
    width: 100%;
    margin-left: 0;
}

.contact-address {
    padding: 0 25px;
}

.contact-close p {
    padding: 0 25px;
}

.br-pc{
    display: none;
}
}
