@charset "utf-8";
/* CSS Document */



/*  ─────────────  リセット  ─────────────  */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*  ─────────────  削除、既存修正  ─────────────  */
#Header,
#ctl00_BodyHeaderMain_upUpdatePanel {
  display: none;
}

button#page-top {
  border: none;
  background-color: transparent;
}

/*  ─────────────  カラーパレット  ─────────────  */
:root {
  --base: #dad9ce;
  --card: #ffffff;
  --green: #5f785f;
  --shadow: rgba(0, 0, 0, .08);
  --link: #6d6458;
  --bg-url: url("https://biz.aromicstyle.com/img/novelty/novelty-description.jpg"); 
  --overlay-darkness: 0.35;            
  --card-opacity: 0.95;             
  --max-w: 1200px;
  --radius: 6px;
  --gap: 16px;
}
/*  ─────────────  共通  ─────────────  */

body {
  display: flex;
  justify-content: center;
  text-align: center;
  background: var(--base);
  color: #4d4a46;
  line-height: 1.7;
  font-family: '游ゴシック', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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


h1 {
  color: #1f2937;
  font-size: 1.6rem;
  text-align: center;
  font-family:'游明朝','Yu Mincho',serif;
}


input,
textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #e9e6e2;
  border-radius: .6rem;
  background: #faf9f8;
  transition: border-color .25s ease, box-shadow .25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(183, 176, 164, .3);
}

button {
  margin: 0 auto;
  max-width: 300px;
  border: none;
  border-radius: .7rem;
  background: var(--link);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, transform .25s;
}

button:hover {
  background: #514b43;
  transform: translateY(-2px);
}

button:active {
  transform: none;
}


.brpc {
  display: none;
}

@media (min-width: 900px) {
  h1 {

    font-size: 3rem;
  }
}

/*  ─────────────  汎用セクション  ─────────────  */
.section {
  padding: 2.8rem 1rem;
}


.wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.heading {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 1rem;
  letter-spacing: .02em;
}

.block {
  background: var(--base);
  padding: 1.8rem 1.4rem;
  border-radius: .6rem;
  margin-bottom: 1.6rem;
}


.info-table th,
.info-table td {
  border: 1px solid #bbb;
  padding: .6rem;
  font-size: .8rem;
  line-height: 1.4;
}

.info-table th {
  width: 30%;
}

.info-table td {
  width: 70%;
}




.block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

.subheading .nmb {
  font-size: 1.8rem;
}

#features .block h3 {
  text-align: left;
}

#Foot {
  border-top: none;
}

#index-footer .nav-link {
  background: none;
}


@media(min-width:480px) {
  .brsp {
    display: none;
  }
}

@media(min-width:768px) {

  .section {
    padding: 4rem 1rem;
  }

}

@media (min-width: 900px) {


  h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    text-align: center;
    letter-spacing: 0.1rem;
  }

  h2.top {
    position: relative;
    font-size: 7rem;
    margin: 5rem 0 2rem;
    text-align: left;
    letter-spacing: 0.1rem;
    color: #b0aca2;
    display: inline-block;
  }

  h2.top::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 500%;
    height: 2rem;
    background-color: #c5c3b8;
    z-index: -1;
  }

  .heading {
    font-size: 1.6rem;
  }



  .brpc {
    display: block;
  }

  .wrapper {
    max-width: 800px;
  }

}

/*  ─────────────  ヘッダー  ─────────────  */

.nav {
  display: none;
}

.nav a {

  position: relative;
  color: #fff;
  display: inline-block;
  padding-bottom: 4px;
  overflow: visible;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  /* ← 要素の内側に固定 */
  width: 100%;
  height: 1px;
  /* お好みで 2〜4px */
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.645, .045, .355, 1);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.spnav-wrapper {
  display: flex;
  justify-content: space-between;
}

.spnav-wrapper a {
  display: flex;
  padding: 0 1rem;
  width: 200px;
  height: auto;
}

.hamburger {
  position: relative;
  text-align: right;
  font-weight: 400;
  padding: 0 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: rgba(37, 38, 49, 0.95);
  /* 透明度5% */
  z-index: 100;
  padding: 5rem 2rem 3rem;
}

.drawer-menu a {

  position: relative;
  width: 100%;
  text-align: left;
  color: #fff;
  display: block;
  margin: auto;
  padding: 1rem;
  font-size: 1.1rem;
}

.drawer-menu a::after {
  font-size: 2rem;
  content: '›';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding-right: 0.5rem;
}

.drawer-menu .close {
  color: #fff;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}


@media (min-width: 900px) {
  .pcnav-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .pcnav-wrapper .nav {
    margin: 0;
    padding: 1rem;
    display: flex;
    z-index: 2;


  }

  .pcnav-wrapper .pclogo img {
    padding: 0 1rem;
    width: 200px;
    height: auto;
    object-fit: contain;
    opacity: 1.0;
  }

  .nav a {

    position: relative;
    color: #333;
    display: inline-block;
    padding: 1rem;
    padding-bottom: 4px;
    overflow: visible;
  }

  .nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background:#1f2937;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s cubic-bezier(.645, .045, .355, 1);
  }

  .nav a:hover::after,
  .nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .hamburger,
  .drawer-menu {
    display: none;
  }
}

@media (min-width: 1000px) {
  .nav a {
    font-size: 1.1rem;
  }

}

@media (min-width: 1100px) {
  .nav a {
    font-size: 1.2rem;
  }

}

@media (min-width: 1200px) {
  .pcnav-wrapper .pclogo img {
    padding: 0 1rem;
    width: 300px;
  }
}

/*  ─────────────  HERO  ─────────────  */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.pc-hero {
  display: none;
}

.pclogo {
  display: none;
}

.sp-hero {
  position: relative;
  display: block;
}

.hero-text {
  text-align: center;
  font-size: 1rem;
}

.pc-hero img,.sp-hero img{
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #252631;
  z-index: 100;
  padding: 5rem 2rem 3rem;
}

.drawer-menu a {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.drawer-menu .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.sp-hero h1 {
  color: #1f2937;
  font-size: 2rem;
  line-height: 3
}

.hero-text {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text p {
  margin: auto;
  padding: 0 1rem;
  max-width: 500px;
}


@media(max-width:480px) {

  .sp-hero .overview img {
    height: 200px;
    object-fit: cover;
  }

  .hero-text p {
    font-size: .9rem;
  }

}

@media(min-width:768px) {
  body {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {

  .hero-text {
    font-size: 1.1rem;
  }

  .pc-hero {
    display: block;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: none;
  }

  .pc-hero img {
    width: 100vw;
    height: 30vw;
    display: block;
    object-fit: cover;
    object-position: center 58%;
  }

  .pclogo {
    display: block;
    display: flex;
  }

  .sp-hero {
    display: none;
  }

  a.splogo {
    display: none;
  }
/*

  .pc-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(rgba(255, 255, 255, 1),
        rgba(255, 255, 255, .7),
        rgba(255, 255, 255, 0)

      );
    z-index: 0;
    pointer-events: none;
  }
*/




}

@media (min-width: 1000px) {

  .pc-hero::before {
    width: 280px;

  }
}
 /* ---- tags ---- */
 .novelty-tags {
    padding: 0 0 4rem;
    display: flex;
    justify-content: center;
  }

  .tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* 間隔広め */
    margin: 0;
    padding: 0;
    list-style: none;
    justify-items: center;
  }

  .tag {
    width: 100px;
    height: 100px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600; /* 少し細め */
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-align: center;
    font-size: clamp(12px, 3.3vw, 14px);
    word-break: keep-all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* 控えめな影で品よく */
  }

  /* ---- Tablet and up ---- */
  @media (min-width: 768px) {
    .tags {
      display: flex;
      gap: 3rem; /* 横並び時も広めの余白 */
      flex-wrap: nowrap;
      justify-content: center;
    }
    .tag {
      width: 110px;
      height: 110px;
      font-size: 15px;
    }
  }

  /* ---- Desktop wide ---- */
  @media (min-width: 1200px) {
    .tag {
      width: 130px;
      height: 130px;
      font-size: 1.2rem;
    }
  }
/*  ─────────────  概要  ─────────────  */
#overview .wrapper p {
  margin-bottom: 2rem;
}

.info-table td {
  font-size: .8rem;
  text-align: left;
}

.info-table {
  margin: auto;
  max-width: 600px;
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #bbb;
}

.info-table th {
  background-color: #f2f2f2;
  font-weight: 600;
  width: 35%;
  border: 1px solid #bbb;
  text-align: left;
}

.info-table td {
  border: 1px solid #bbb;
  padding: .8rem;
  text-align: left;
}






@media(min-width:768px) {

  .info-table th,
  .info-table td {
    border: 1px solid #bbb;
    padding: 1rem;
    line-height: 1.4;
  }

}

@media (min-width: 900px) {
  #overview .wrapper p {
    font-size: 1.4rem;
    margin: 6rem 0;
    line-height: 2.4;
  }

  .info-table th {
    font-size: 1.1rem;
  }

  .info-table {
    max-width: 800px;
    font-size: 1.2rem;
  }

  .info-table td {
    font-size: 1rem;
  }
}

/*  ─────────────  イメージ  ─────────────  */

figure {
  margin: auto;
  max-width: 1200px;
}

/*  ─────────────  特長  ─────────────  */


#features p {
  text-align: left;
}

#features .block {
  border: #fff dotted 2px;
  background-color: rgba(255, 255, 255, .2);
}

#features span.line {
  display: inline;
  background: linear-gradient(to bottom,
      transparent 55%,
      #e9d7ce 55%,
      #d4c8be 100%);
  border-radius: 2px;
  /* 角を丸める */
  padding: 0 3px;
  /* 両端に少し余白 */
}

@media (min-width: 900px) {
  #features p {
    line-height: 1.7;
  }

  #features .block {
    padding: 2.4rem 2.8rem;

  }
}

/*  ─────────────  委託形態  ─────────────  */


#style .sp {
  margin-bottom: 2rem;
}

#style .pc {
  display: none;
}

#style p.target {
  font-size: 0.9rem;
}

#style .block {
  text-align: center;
  background-color: #fff;
}

#style h3 {
  text-align: center;
  line-height: 2;
}

#style p {
  display: inline-block;
  text-align: left;
}

#style img {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: auto;
}

@media (min-width: 900px) {
  #style .sp {
    display: none;
  }

  #style .pc {
    display: block;
  }

  #style .block p {
    line-height: 1.7;
    padding: 1rem;
  }

  #style p.target {
    font-size: 1rem;
  }

}
/*  ─────────────  サンプル  ─────────────  */

#sample{
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}




/*  ─────────────  フォーム  ─────────────  */
div.form {
  margin: 0 auto;
  max-width: 800px;
  display: grid;
  gap: 1.5rem;
}

#form p {
  padding: 0 1rem 2rem;
  font-size: .8rem;
}

#form .form {
  padding: 0 1rem 2rem;

}

.button-wrapper {
  display: flex;
  justify-content: space-around;

}

.cta-btn,
#confirmBtn {
  display: inline-block;
  padding: .9rem 2.6rem;
  border-radius: 3rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background .25s, transform .25s;
}


#backBtn,
#sendBtn {
  display: inline-block;
  padding: .9rem 1rem;
  border-radius: 3rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: background .25s, transform .25s;
}

button#backBtn {
  margin: 0 0 0 2rem;
}

button#sendBtn {
  margin: 0 2rem 0 0;

}

.cta-btn:hover,
#confirmBtn:hover {
  background: #485f48;
  transform: translateY(-2px);
}
#form #stepInput p{
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.2;
  padding: 0 1rem;
}
#stepConfirm ul {
  padding: 1rem 1rem 2rem;
  list-style: none;
  display: grid;
  gap: 1rem;
}

#stepConfirm li {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

#stepConfirm span {
  font-weight: 600;
}



@media (min-width: 900px) {

  #form p {
    line-height: 1.7;
    font-size: 1rem;
  }

}



* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: #1f2937; /* gray-800 */
  line-height: 1.6;
}

/* ===== 背景付きセクション ===== */

.benefits {
  margin-bottom: 5rem;
  position: relative;
  min-height: 100vh; /* 必要に応じて調整 */
  display: grid;
  place-items: center;
  padding: 24px 16px;

}

/* コンテンツの横幅制御 */
.benefits__inner {
  width: 100%;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 1fr;  /* スマホ：1列 */
  gap: var(--gap);
}
.benefits > .wrapper {
  color: #1f2937;
}
.benefits > .wrapper > p{
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
/* ===== 各カード ===== */
.card {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 12px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, var(--card-opacity)); /* 95% */
  border-radius: var(--radius);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.10);
  backdrop-filter: saturate(120%) blur(1px); /* 対応ブラウザでの質感UP（任意） */
}

.card__icon {
  line-height: 0;
  color: #111827; /* icon color */
}

.card__title {
  text-align: left;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.card__text {
  text-align: left;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #374151; /* gray-700 */
}

/* ====== ブレークポイント ====== */
@media (min-width: 768px) {
  .benefits {
    padding: 48px 24px;
  }
  .benefits__inner {
    grid-template-columns: 1fr 1fr; /* タブレット以上：2列 */
    gap: 18px;
  }
  .card {
    padding: 1.6rem;
  }
  .card__title { font-size: 1.05rem; }
  
.benefits {

  background-image:
    linear-gradient(rgba(0,0,0,var(--overlay-darkness)), rgba(0,0,0,var(--overlay-darkness))),
    var(--bg-url);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.benefits > .wrapper {
  color: #ffffff;
}

}

@media (min-width: 1120px) {
  .benefits {
    padding: 64px 24px;
  }
  /* 3列にしたい場合は以下を有効化
  .benefits__inner { grid-template-columns: repeat(3, 1fr); }
  */
  .card__title { font-size: 1.1rem; }
  .card__text  { font-size: 0.95rem; }
}
.benefits > .wrapper > p{
 margin-bottom: 4rem;
  font-size: 1.6rem;
}
#link,#contact{
  display: none;
}

