@charset "UTF-8";


/* =========================================
   CAORI LAB
   COMMON DESIGN
========================================= */

:root {

  /* 背景 */
  --background: #fcf9f4;

  /* 基本文字 */
  --text: #302c29;

  /* セージグリーン */
  --sage: #7f9883;

  /* 淡いセージ */
  --sage-light: #cfd8cf;

  /* 線 */
  --line: #dddcd5;

  /* 最大横幅 */
  --max-width: 1200px;

}



/* =========================================
   BASE
========================================= */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  margin: 0;

  background-color: var(--background);

  color: var(--text);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

}


a {

  color: inherit;

  text-decoration: none;

}



/* =========================================
   HEADER
========================================= */

.site-header {

  width: min(94%, var(--max-width));

  height: 70px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



/* 左上 CAORI LAB
   HOMEでは存在感をかなり薄くする */

.site-logo {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 14px;

  letter-spacing: 0.16em;

  white-space: nowrap;

  color: rgba(48, 44, 41, 0.20);

  transition:
    color 0.3s ease,
    opacity 0.3s ease;

}


.site-logo:hover {

  color: rgba(48, 44, 41, 0.45);

}



/* =========================================
   NAVIGATION
========================================= */

.global-nav {

  display: flex;

  align-items: center;

  gap: 30px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 12px;

  letter-spacing: 0.12em;

  white-space: nowrap;

}


.global-nav a {

  transition: opacity 0.3s ease;

}


.global-nav a:hover {

  opacity: 0.55;

}



/* JP | EN */

.language {

  display: flex;

  align-items: center;

  gap: 9px;

}


.language .active {

  color: var(--sage);

}



/* =========================================
   HERO
========================================= */

.hero {

  position: relative;

  width: min(94%, var(--max-width));

  min-height: calc(100vh - 70px);

  margin: 0 auto;

  text-align: center;

}



/* =========================================
   BOTANICAL IMAGE
========================================= */

.hero-botanical {

  position: absolute;

  top: 5px;

  left: 50%;

  transform: translateX(-50%);

  width: 82%;

  height: 500px;

  background-image:
    url("../images/home-botanical.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: contain;

  pointer-events: none;

}



/* =========================================
   HERO TEXT
========================================= */

.hero-content {

  position: relative;

  z-index: 2;

  padding-top: 390px;

}



/* 中央 CAORI LAB */

.hero-content h1 {

  margin: 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 32px;

  font-weight: 400;

  letter-spacing: 0.12em;

  line-height: 1;

  color: rgba(48, 44, 41, 0.88);

}



/* words, life & little creations */

.hero-tagline {

  margin: 9px 0 24px;

  color: var(--sage);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 15px;

  letter-spacing: 0.14em;

}



/* ことばと暮らし、小さなものづくり。 */

.hero-copy {

  margin: 0;

  font-size: 14px;

  letter-spacing: 0.15em;

  line-height: 1.8;

}



/* 日々のことを〜 */

.hero-subcopy {

  margin: 12px 0 0;

  font-size: 13px;

  letter-spacing: 0.15em;

  line-height: 1.8;

}



/* =========================================
   SCROLL
========================================= */

.scroll {

  display: inline-flex;

  flex-direction: column;

  align-items: center;

  margin-top: 18px;

  color: var(--sage);

}


.scroll-line {

  display: block;

  width: 1px;

  height: 28px;

  margin-bottom: 4px;

  background-color: var(--sage);

}


.scroll-leaf {

  font-size: 21px;

  line-height: 1;

}


.scroll-text {

  margin-top: 4px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 8px;

  letter-spacing: 0.20em;

}



/* =========================================
   HOME CONTENT
========================================= */

.home-contents {

  min-height: 120px;

}



/* =========================================
   FOOTER
========================================= */

.site-footer {

  padding: 30px 20px;

  text-align: center;

  color: #aaa;

  font-size: 10px;

  letter-spacing: 0.05em;

}



/* =========================================
   SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {


  /*
    PC版と別デザインにはせず、
    同じ構図・世界観のまま
    サイズと余白だけ調整します。
  */


  /* HEADER */

  .site-header {

    width: 96%;

    height: 60px;

  }



  /* 左上 CAORI LAB
     HOMEではほぼ見えるか見えないか程度 */

  .site-logo {

    font-size: 8px;

    letter-spacing: 0.15em;

    color: rgba(48, 44, 41, 0.17);

  }



  /* ABOUT / WORKS / LIFE ITEMS / CONTACT */

  .global-nav {

    gap: 9px;

    font-size: 10px;

    letter-spacing: 0.04em;

  }



  .language {

    gap: 3px;

    font-size: 10px;

  }



  /* HERO */

  .hero {

    width: 96%;

    min-height: calc(100svh - 60px);

  }



  /* 植物画像
     現在気に入っている大きさを維持 */

  .hero-botanical {

    top: 10px;

    width: 92%;

    height: 350px;

  }



  /* 花とCAORI LABを少し近づける */

  .hero-content {

    padding-top: 300px;

  }



  /* 中央 CAORI LAB */

  .hero-content h1 {

    font-size: clamp(
      34px,
      8.5vw,
      42px
    );

    letter-spacing: 0.18em;

    color: rgba(48, 44, 41, 0.86);

  }



  /* words, life & little creations */

  .hero-tagline {

    margin: 6px 0 22px;

    font-size: 11px;

    letter-spacing: 0.13em;

  }



  /* 日本語メイン */

  .hero-copy {

    font-size: 10px;

    line-height: 1.9;

    letter-spacing: 0.14em;

  }



  /* 日本語サブ */

  .hero-subcopy {

    margin-top: 12px;

    font-size: 9px;

    line-height: 1.9;

    letter-spacing: 0.14em;

  }



  /* SCROLL */

  .scroll {

    margin-top: 23px;

  }



  .scroll-line {

    height: 25px;

  }



  .scroll-leaf {

    font-size: 20px;

  }



  .scroll-text {

    font-size: 7px;

  }

}

/* ========================================
   ABOUT PAGE
======================================== */


/* ========================================
   ABOUT 共通
======================================== */

.about-page {
    background-color: var(--background);
    color: var(--text);
}


/* HOMEより左上ロゴを少し濃くする */

.about-page .site-logo {
    opacity: 0.75;
}


/* ABOUTを選択中にする */

.about-page .global-nav > a.active {
    color: var(--sage);
}


/* ========================================
   ABOUT HERO
======================================== */

.about-hero {
    width: 100%;
    padding: 55px 24px 30px;
}


.about-hero-inner {
    width: min(1100px, 90%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


/* ABOUTタイトル */

.about-title-area {
    flex: 0 0 32%;
}


.about-title-area h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 50px;
    font-weight: 400;

    letter-spacing: 0.12em;

    color: var(--text);
}


.about-title-line {
    display: block;

    width: 70px;
    height: 1px;

    margin: 14px 0 12px;

    background-color: var(--sage-light);
}


.about-title-sub {
    margin: 0;

    font-size: 16px;

    letter-spacing: 0.08em;

    color: var(--sage);
}


/* ========================================
   ABOUT バナー
======================================== */

.about-banner {
    flex: 0 0 58%;

    max-width: 600px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.about-banner img {
    display: block;

    width: 100%;
    max-width: 500px;

    height: auto;

    object-fit: contain;

    opacity: 0.82;
}


/* ========================================
   ABOUT MESSAGE
======================================== */

.about-message {
    padding: 42px 24px 48px;
}


.about-message-inner {
    width: min(760px, 90%);

    margin: 0 auto;

    text-align: center;
}


.about-message h2 {
    margin: 0;

    font-size: 27px;
    font-weight: 400;

    line-height: 1.7;

    letter-spacing: 0.12em;

    color: var(--text);
}


.about-message p {
    margin-top: 20px;
    margin: 28px 0 0;

    font-size: 14px;

    line-height: 1.9;

    letter-spacing: 0.08em;

    color: var(--text);
}


/* 小さな飾り線 */

.section-decoration {
    display: block;

    width: 56px;
    height: 1px;

    margin: 24px auto;

    background-color: var(--sage-light);
}


/* ========================================
   PROFILE
======================================== */

.profile {
    width: min(1100px, 90%);

    margin: 0 auto;

    padding: 0 0 90px;
}


/* PROFILE上の区切り線 */

.section-divider {
    position: relative;

    width: 100%;
    height: 1px;

    margin-bottom: 45px;

    background-color: var(--line);
}


.section-divider::after {
    content: "❧";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -52%);

    padding: 0 12px;

    font-size: 16px;

    color: var(--sage);

    background-color: var(--background);
}


/* PROFILEタイトル */

.profile-title {
    margin-bottom: 38px;

    text-align: center;
}


.profile-title h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 400;

    letter-spacing: 0.14em;

    color: var(--sage);
}


/* PROFILE 本体 */

.profile-inner {
    width: min(700px, 100%);

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 40px;
}


/* ガーベラ */

.profile-image {
    flex: 0 0 170px;

    display: flex;
    justify-content: center;
    align-items: center;
}


.profile-image img {
    display: block;

    width: 150px;
    max-width: 100%;

    height: auto;

    object-fit: contain;
}


/* プロフィール文章 */

.profile-text {
    flex: 1;
}


.profile-text h3 {
    margin: 0 0 24px;

    font-size: 18px;
    font-weight: 400;

    letter-spacing: 0.08em;

    color: var(--text);
}


.profile-text p {
    margin: 0 0 20px;

    font-size: 14px;

    line-height: 2;

    letter-spacing: 0.04em;

    color: var(--text);
}

  /* HOMEを中央に */

    .about-page .about-bottom {
        width: 100%;
　　　　display:flex;
        justify-content:center;
        padding: 20px 0 35px;
        text-align: center;
    }

    .about-page .back-home {
        display: inline-block;
        margin: 0;
        font-size: 10px;
        letter-spacing: 0.16em;
　　　　opacity: 0.55;
    }



/* ========================================
   ABOUT - MOBILE
======================================== */

@media screen and (max-width: 768px) {


    /* ABOUT上部 */

    .about-hero {
        padding: 34px 16px 14px;
    }


    .about-hero-inner {
        width: 88%;

        margin: 0 auto;

        flex-direction: column;

        align-items: stretch;

        gap: 16px;
    }


    /* ABOUTタイトル */

    .about-title-area {
        flex: none;

        width: 100%;

        text-align: left;
    }


    .about-title-area h1 {
        font-size: 27px;

        letter-spacing: 0.09em;
    }


    .about-title-line {
        width: 34px;

        margin: 10px 0 8px;
    }


    .about-title-sub {
        font-size: 10px;
        opacity: 0.85;
    }


    /* バナー */

    .about-banner {
        flex: none;

        width: 100%;
        max-width: none;

        justify-content: center;
    }


    .about-banner img {
        width: 72%;
        max-width: 330px;

        height: auto;

        opacity: 0.80;
    }


    /* ABOUT本文 */

    .about-message {
        padding: 28px 16px 34px;
    }


    .about-message-inner {
        width: 88%;
    }


    .about-message h2 {
        font-size: 14px;

        line-height: 1.7;

        letter-spacing: 0.06em;
    }


    .about-message p {
        margin-top: 13px;

        font-size: 10.5px;

        line-height: 1.7;

        letter-spacing: 0.02em;
    }


    .section-decoration {
        width: 38px;

        margin: 14px auto;
    }


    /* PROFILE */

    .profile {
        width: 90%;

        padding-bottom: 55px;
    }


    .section-divider {
        margin-bottom: 24px;
    }


    .profile-title {
        margin-bottom: 28px;
    }


    .profile-title h2 {
        font-size: 18px;
    }


    .profile-inner {
        width: 100%;

        flex-direction: column;

        gap: 24px;
    }


    /* スマホではガーベラを小さく */

    .profile-image {
        flex: none;

        width: 100%;
    }


    .profile-image img {
        width: 110px;

        max-width: 100%;

        height: auto;
    }


    /* PROFILE文章 */

    .profile-text {
        width: 100%;BOUT
    }


    .profile-text h3 {
        margin-bottom: 20px;

        font-size: 18px;

        text-align: center;
    }


    .profile-text p {
        font-size: 12px;

        line-height: 1.9;

        letter-spacing: 0.02em;
    }

   /* ABOUT内の短い装飾線を非表示 */

 　　.about-page .section-decoration {
        display: none;
    }

  /* HOMEリンクを中央に */
     .about-page .about-bottom {
        width: 100%;
        text-align: center;
}

     .about-page .back-home {
        display: inline-block;
        margin: 0 auto;
        font-size: 10px;
        letter-spacing: 0.16em;
}

/* ========================================
   ABOUT - MOBILE 最終レイアウト調整
======================================== */

@media screen and (max-width: 768px) {

    /* --------------------------------
       ABOUT上部
    -------------------------------- */

    .about-hero {
        padding: 30px 16px 10px;
    }

    .about-hero-inner {
        width: 88%;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 42% 58%;
        align-items: center;

        gap: 14px;
    }


    /* ABOUT文字側 */

    .about-title-area {
        width: 100%;
        text-align: left;
    }

    .about-title-area h1 {
        font-size: 27px;
        letter-spacing: 0.09em;
    }

    .about-title-line {
        width: 42px;
        margin: 9px 0 7px;
    }

    .about-title-sub {
        font-size: 11px;
    }


    /* ユーカリをABOUTの右横へ */

    .about-banner {
        width: 100%;
        max-width: none;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-banner img {
        width: 100%;
        max-width: 260px;
        height: auto;

        object-fit: contain;

        opacity: 0.80;
    }


    /* --------------------------------
       ABOUT本文
    -------------------------------- */

    .about-message {
        padding: 22px 16px 26px;
    }

    .about-message-inner {
        width: 90%;
    }

    .about-message h2 {
        font-size: 15px;
        line-height: 1.75;
        letter-spacing: 0.06em;
    }

    .about-message p {
        margin-top: 12px;

        font-size: 11px;
        line-height: 1.75;
        letter-spacing: 0.02em;
    }


    /* --------------------------------
       PROFILE
    -------------------------------- */

    .profile {
        width: 90%;
        padding-bottom: 42px;
    }

    .section-divider {
        margin-bottom: 18px;
    }

    .profile-title {
        margin-bottom: 18px;
    }

    .profile-title h2 {
        font-size: 14px;
    }


    /* PROFILE本体 */

    .profile-inner {
        width: 100%;

        display: grid;
        grid-template-columns: 34px auto;
        align-items: center;
        justify-content: center;

        column-gap: 8px;
        row-gap: 16px;
    }


    /* ガーベラを小さなアイコンに */

    .profile-image {
        width: 34px;
        height: 34px;

        display: flex;
        align-items: center;
        justify-content: center;

        grid-column: 1;
        grid-row: 1;
    }

    .profile-image img {
        width: 30px;
        max-width: 30px;
        height: auto;
    }


    /*
       profile-textの箱を外して、
       h3とpをgrid内に配置
    */

    .profile-text {
        display: contents;
    }


    /* 水玉 / Mizutama */

    .profile-text h3 {
        grid-column: 2;
        grid-row: 1;

        margin: 0;

        font-size: 12px;
        text-align: left;
    }


    /* プロフィール文章 */

    .profile-text p {
        grid-column: 1 / -1;

        width: 100%;
        margin: 0 0 14px;

        font-size: 10px;
        line-height: 1.8;
        letter-spacing: 0.02em;

        text-align: left;
    }


    /* 短い飾り線は非表示 */

    .about-page .section-decoration {
        display: none;
    }


    /* HOME */

    .about-page .about-bottom {
        width: 100%;
        text-align: center;
    }

    .about-page .back-home {
        display: inline-block;

        margin: 0 auto;

        font-size: 10px;
        letter-spacing: 0.16em;
    }

}