@charset "UTF-8";
body {
  overflow-x: hidden;
}

.header-nav {
  position: fixed;
  width: 100%;
  background: rgba(251, 206, 121, 0.9);
  z-index: 10000;
}

.header-area {
  display: flex;
  justify-content: space-between;
  height: 65px;
  padding: 0 20px;
  align-items: center;
}

.header-logo {
  width: 4rem;
}

.hamburger {
  width: 40px;
  height: 25px;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: blue;
  transition: 0.5s; /* 追記 */
}

.hamburger span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
}

.hamburger span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}

.hamburger span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}

.slide-menu {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 65px;
  width: 100%;
  left: 0;
  transform: translateX(100%);
  transition: 0.5s; /* 追記 */
}

.slide-menu li {
  color: #fff;
  line-height: 400%;
  text-align: center;
}

.slide-menu-link {
  color: #fff;
}

.hamburger.active span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(405deg);
}

.hamburger.active span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  opacity: 0; /* 透明にする */
}

.hamburger.active span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-405deg);
}

.slide-menu.active {
  transform: translateX(0);
}

.heading-section {
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
}

.paragraph {
  font-size: 1.6rem;
  text-align: center;
}

.section-wrap {
  margin-bottom: 3rem;
}
.section-wrap--products-handled {
  background: #fff;
  padding: 1.5rem;
}
.section-wrap--access {
  background: #fff;
  padding: 2.5rem;
}
.section-wrap--business-hours {
  background: #fff;
  padding: 2.5rem;
}
.section-wrap--contact {
  margin-bottom: 1.5rem;
}

.section-inner--about-imported-products {
  background: #fff;
  padding: 1.5rem;
}
.section-inner--access {
  text-align: center;
}
.section-inner--business-hours {
  max-width: 45rem;
  margin: auto;
}

.heading-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0.1rem 0rem #fadc30;
}
.heading-section::before {
  content: "";
  width: 3rem;
  height: 0.2rem;
  border-radius: 0.3rem;
  background-color: #333333;
  transform: rotate(0deg);
  margin-right: 1rem;
}
.heading-section::after {
  content: "";
  width: 3rem;
  height: 0.2rem;
  border-radius: 0.3rem;
  background-color: #333333;
  transform: rotate(0deg);
  margin-left: 1rem;
}
.heading-section--self-introduction {
  flex-wrap: wrap;
}
.heading-section--self-introduction::before {
  content: none;
}
.heading-section--self-introduction::after {
  content: none;
}
.heading-section--about-imported-products::before {
  content: none;
}
.heading-section--about-imported-products::after {
  content: none;
}

.border-blue {
  border: 0.2rem solid #003b89;
}

.top-image {
  margin-bottom: 1.5rem;
}

.eye-catch-logo-image {
  width: 100%;
}

.main-content {
  padding: 10rem 1.5rem 0;
  max-width: 68rem;
  margin: auto;
}

.eye-catch-area {
  margin-bottom: 3rem;
}

.text-color--red {
  color: #ff2727;
}

.click-here-for-shopping {
  text-align: center;
}

.shopping-anchor {
  background: #fff;
  display: block;
  padding: 1rem;
  border-radius: 2rem;
  border: solid;
  color: #ff2727;
  font-weight: bold;
  border-color: #fbce79;
  text-align: center;
}

.shopping-anchor-wrap {
  margin-bottom: 2rem;
}

.arrow-wrap-up {
  margin-bottom: 1.5rem;
}

.arrow-wrap-down {
  margin-top: 1.5rem;
}

.arrow-appearance {
  font-size: 3rem;
  margin-right: 1rem;
  color: #ff2727;
}
.arrow-appearance:last-child {
  margin-right: 0;
}

.self-introduction-title {
  width: 100%;
}

.sns-list {
  display: flex;
  justify-content: center;
}
.sns-list__item {
  width: 5rem;
  margin-right: 2rem;
}
.sns-list__item:last-child {
  margin-right: 0;
}

.about-imported-products-text {
  font-size: 1.4rem;
  text-align: center;
}

.margin-down {
  margin-bottom: 1rem;
}
.margin-down--15 {
  margin-bottom: 1.5rem;
}
.margin-down--2 {
  margin-bottom: 2rem;
}

.products-handled-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 45rem;
  margin: auto;
}
.products-handled-list__item {
  margin-bottom: 3rem;
}
.products-handled-list__item__img {
  margin-bottom: 3rem;
}
.products-handled-list__item__anchor {
  text-align: center;
  font-size: 2rem;
  display: block;
  background: #fbce79;
  border-radius: 4rem;
  color: #fff;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1607843137);
  padding: 0.5rem;
}

.video-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 45rem;
  margin: auto;
}
.video-list__item {
  margin-bottom: 3rem;
}
.video-list__item__img {
  margin-bottom: 3rem;
}
.video-list__item__anchor {
  text-align: center;
  font-size: 2rem;
  display: block;
  background: #fbce79;
  border-radius: 4rem;
  color: #fff;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1607843137);
  padding: 0.5rem;
}

.access-list {
  margin-bottom: 2rem;
}
.business-hours-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.business-hours-paragraph {
  margin-bottom: 1rem;
}

.contact-wrap {
  margin-bottom: 1.5rem;
}

.contact-paragraph {
  text-align: center;
  margin-bottom: 2rem;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.footer-wrap {
  text-align: center;
}

.footer-copyright {
  font-size: 1rem;
}

.insta-slide-pc {
  width: 752px;
  height: 267px;
}

.twitter-pc {
  width: 80rem;
}

html {
  scroll-behavior: smooth;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

.youtube-image {
  margin-bottom: 2rem;
}

.youtube-top {
  margin-bottom: 2rem;
}

.title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

/* タブボタン */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: #ddd;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #e85a70;
  color: #fff;
}

/* タブコンテンツ */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* カードレイアウト */
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #e85a70;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  margin: 8px 0;
  padding-left: 10px;
  border-left: 3px solid #e85a70;
  font-size: 14px;
}

/* おいそぎ（特急）強調カラー */
.highlight-fast {
  border-left: 6px solid #ff6b6b;
}

/* ゆっくり（割引）強調カラー */
.highlight-slow {
  border-left: 6px solid #4caf50;
}

/* ------- 納品可能メディア一覧 ------- */
.output-container {
  margin-top: 50px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.output-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: bold;
}

.output-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.output-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  border: 2px solid #eee;
}

.output-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #e85a70;
}

.media-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

/* ━ オプション（有料） ━ */
.option-block {
  margin-top: 60px;
  padding: 25px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.option-block-title {
  text-align: center;
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
}

/* カード配置（対応可能メディアと同じ仕組み） */
.option-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* li をカード風に */
.option-block-list li {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 22px 18px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #eee;
  transition: 0.3s;
}

/* アイコンの絵文字を大きく */
.option-block-list li::first-letter {
  font-size: 36px;
  margin-right: 6px;
}

/* ホバーアニメーション */
.option-block-list li:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: #e85a70;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* スマホ対応 */
@media (max-width: 520px) {
  .option-block-list li {
    font-size: 16px;
    padding: 18px;
  }
}
.option-block-text {
  text-align: center;
}/*# sourceMappingURL=style-pc.css.map */