body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #fff;
}

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

a:hover {
  text-decoration: none;
}

h2, h3 {
  scroll-margin-top: 100px;
}

/* 改行調整 表示非表示指定 */
.sp, .sp1, .sp2,.sp-only, .sp-only1, .sp3 {
  display: none;
}

.pc-only {
  display: block;
}

.hide-on-mobile {
  display: inline;
}

@media screen and  (max-width: 900px) {
  .sp1 {
  display: block;
}
.sp-only {
  display: block;
}
}

@media screen and  (max-width: 700px) {
  .sp2 {
  display: block;
}
}

@media screen and  (max-width: 840px) {
  .pc-only {
    display: none;
  }
  .sp-only1 {
    display: block;
  }
}

@media screen and  (max-width: 600px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .hide-on-mobile {
    display: none;
  }
	.sp3 {
    display: block;
  }
}

/* 共通パーツ */
/* カーソル */
html, body, a {
  cursor: none;
}
* {
  cursor: none !important;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E94709;;
  z-index: 1000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  opacity: 0; 
}

.cursor.cursor--hover {
  width: 50px;
  height: 50px;
  background: #e9470973;
}

/* header */
.header-logo {
  width: 400px;
  margin: 4em auto;
}

.header-logo a {
  display: block; 
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header-menu {
  display: flex;
  justify-content: center;
  gap: 95px;
  font-size: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 4em 0;
}

.header-menu li a {
  display: inline-block;
  text-decoration: none;
  outline: none;
  color: #000;
  position: relative;
  padding: 5px 0;
}

.header-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #E94709;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: center top;
}

.header-menu li a:hover {
  color: #000;
}

.header-menu li a:hover::after {
  transform: scale(1, 1);
}

.hamburger {
  display: none;
}

/* ハンバーガー */
.header {
  display: none;
}
@media screen and (max-width: 770px) {
  .header-nav {
     display: flex;
    align-items: center;
    padding: 14px 24px;
  }
  .header-logo {
    width: 200px;
    margin: 0;
  }
	.header-menu-wrapper {
    display: none;
  }
  .header-menu-wrapper.active {
    display: block;
  }
  .header-menu-wrapper.active {
    display: block;
  }
}

/* ハンバーガー フェード */
.hamburger-fade {
  position: fixed;
  top: 0px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-fade__wrapper {
  position: relative;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) { top: 0; }
.hamburger-fade__line:nth-child(2) { top: 9px; }
.hamburger-fade__line:nth-child(3) { top: 18px; }
.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #151e49;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active {
  visibility: visible;
}

.nav-fade.active .nav-fade__bg {
  opacity: 1;
}

.nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5vh 10vw;
}

.nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-fade__item {
  position: relative;
  margin-bottom: 2vh;
  padding-left: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade.active .nav-fade__item:nth-child(1) { transition-delay: 0.2s; }
.nav-fade.active .nav-fade__item:nth-child(2) { transition-delay: 0.4s; }
.nav-fade.active .nav-fade__item:nth-child(3) { transition-delay: 0.6s; }
.nav-fade.active .nav-fade__item:nth-child(4) { transition-delay: 0.8s; }
.nav-fade.active .nav-fade__item:nth-child(5) { transition-delay: 1.0s; }
.nav-fade__number {
  position: absolute;
  left: 0;
  color: #666;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.nav-fade__link {
  display: inline-block;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-fade__link:hover {
  color: #E94709;
}

.nav-fade__info {
  margin-top: auto;
  padding-left: 60px;
  color: #666;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}

.nav-fade.active .nav-fade__info {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade__address,
.nav-fade__tel {
  margin: 5px 0;
}

@media screen and (max-width: 770px) {
	.header {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-fade__link {
    font-size: 24px;
  }
  .nav-fade__item {
    padding-left: 40px;
    margin-bottom: 1.5vh;
  }
  .nav-fade__info {
    padding-left: 40px;
  }
}

/* 固定ヘッダー */
.header-nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.header-nav-fixed.active {
  opacity: 1;
  pointer-events: auto;
}

.header-nav-fixed .header-logo {
  margin: 0;
  max-width: 180px;
}

.header-nav-fixed .header-menu {
  margin: 0;
  gap: 40px;
}

.header-nav {
  position: relative;
  z-index: 10;
}

/* 770px以下、固定 */
@media screen and (max-width: 770px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 999;
  }
}

/* ぱんくず */
.breadcrumb-wrapper {
  background: #D9D9D9;
}

.breadcrumb {
  max-width: 980px;
  margin: auto;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 147px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 0.5em;
  color: #999;
}

.breadcrumb a {
  color: #151E49;
  text-decoration: none;
}

@media screen and (max-width: 770px) {
  main {
    margin-top: 55px;
  }
  .breadcrumb {
    padding: 4px 10px;
    font-size: 10px;
    margin-bottom: 50px;
  }
}

/* CTA */
.cta-section {
  display: flex;
  width: 100%;
  margin-bottom: 150px;
}

img.cta-img {
  width: 26em;
}

img.cta-img {
  width: 28.8vw;
  height: auto;
}

.cta-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5em;
  background: #151E49;
  color: #fff;
  width: 100%;
  padding-left: 15vw;
}

.cta-title {
  font-size: 36px;
  color: #E94709;
  margin-bottom: 20px;
}

.cta-area p {
  font-size: 24px;
  margin-bottom: 1.5em;
}

.cta-area a {
  font-size: 24px;
  transition: all 0.6s ease-in-out;
}

.cta-area a:hover  {
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-outline {
  display: inline-block;
  width: 407px;
  max-width: 100%;
  padding: 50px 0;
  text-align: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

@media screen and  (max-width: 950px) {
  .cta-section {
    margin-bottom: 27px;
  }
  .cta-area p {
    font-size: 20px;
  }
  .btn-outline {
    display: inline-block;
    width: 200px;
    max-width: 100%;
    padding: 20px 10px;
  }
  .cta-area {
    gap: 1em;
    padding-left: 9vw;
  }
  .cta-title {
    font-size: 26px;
    margin-bottom: 0;
  }
}

@media screen and  (max-width: 600px) {
  .cta-area {
    gap: 0.5em;
    padding-left: 5vw;
  }
  .cta-area a {
    font-size: 20px;
    width: 55%;
  }
  img.cta-img {
    width: 36.8vw;
  }
  .cta-area p {
    margin-bottom: 0;
    font-size: 16px;
  }
  .cta-title {
    font-size: 18px;
  }
  .btn-outline {
    padding: 10px 10px;
  }
}

/* footer */
.footer-inner {
  max-width: 1210px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 10px;
}

img.footer-logo {
  width: 350px;
}

.footer-nav ul {
  display: flex;
  justify-content: right;
  list-style: none;
  gap: 3em;
  margin-bottom: 0;
  line-height: 1;
}

.footer-nav li a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #000;
  position: relative;
  padding: 5px 0;
}

.footer-nav li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #E94709;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: center top;
}

.footer-nav li a:hover {
  color: #000;
}

.footer-nav li a:hover::after {
  transform: scale(1, 1);
}

.copy-area {
  background: #000000;
  width: 100%;
  padding: 10px 0;;
}

.copy {
  max-width: 1210px;
  margin: auto;
  text-align: left;
  color: #fff;
  font-size: 12px;
}

@media screen and  (max-width: 1210px) {
  img.footer-inner {
    max-width: 100%;
    margin: 0 10px 30px 10px;
  }
  img.footer-logo {
    width: 200px;
  }
}

@media screen and  (max-width: 1100px) {
  img.footer-logo {
    margin-bottom: 2em;
  }
  .footer-inner {
    display: block;
  }
  .copy {
    margin: 0 10px;
    font-size: 10px;
  }
}

@media screen and  (max-width: 770px) {
  .footer-inner {
    margin: 0 10px 10px 10px;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 220px;
    margin-left: auto;
    font-size: 10px;
  }
  .footer-nav li {
    flex: 1 1 calc(33.333% - 1em);
    text-align: center;
  }
  .footer-inner {
    padding: 0 ;
  }
}

/* view all btn */
.view-all_btn {
  font-size: 14px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.view-all_btn, .company_btn {
  text-align: right;
}

a.view-all_btn:hover {
  text-decoration: none;
  animation: text-blur 2.5s;
}

@keyframes text-blur {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(3px);
  }
  100% {
    filter: blur(0);
  }
}


/* Home */
section.main-visual {
  width: 100%;
  background: #151E49;
  height: auto;
}

.mv-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1118px;
  margin: auto;
  padding-top: 106px;
  padding-bottom: 158px;
}

p.main-copy {
  font-size: clamp(24px, 7.2vw, 79px);
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

img.moon_logo {
  width: clamp(202px, 39vw, 537px);  /* 最小120px, 最大300px */
  height: auto;
  display: block;
}
/* フェードイン */
.mv-txt .main-copy span {
  opacity: 0;
  display: inline-block;
  animation: fadeIn 1s ease forwards;
}

.mv-txt .main-copy .first-chatch {
  animation-delay: 0s;
}

.mv-txt .main-copy .second-chatch {
  animation-delay: 0.8s;
}

.mv-txt .main-copy .third-chatch {
  animation-delay: 1.6s;
}

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

.top_title {
  font-size: 20px;
  color: #E94709;
  font-weight: 700;
}

.top_title, .top-txt {
  margin-left: 180px;
  text-align: left;
}

@media screen and (max-width: 770px) {
  .mv-inner {
    display: flex;
    flex-direction: column-reverse;
    padding: 80px 10px 41px 10px;
  }
  .mv-inner > .mv-txt {
    align-self: flex-start;
  }
  .mv-inner > div {
    align-self: flex-end;
  }
  img.moon_logo {
    width: clamp(220px, 56vw, 400px);
  }
  p.main-copy {
    font-size: clamp(24px, 12.3vw, 65px);
  }
}

/* top-About us */
.aboutus {
  position: relative;
}

section.aboutus {
  background-image: url(../../img/sunrise.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: screen;
  padding: 175px 128px 165px 180px;
}

.aboutus-outer {
  max-width: 1132px;
  margin: auto;
}

.aboutus div .top_title, .aboutus div p.copy-txt  {
  margin-left: 0;
}

.aboutus div .top-contents {
  max-width: 1440px;
  margin: auto;
}

.aboutus div .top-contents div {
  padding-left: 0;
}

.aboutus_title {
  font-size: 24px;
  color: #E94709;
  font-weight: 700;
}

p.copy-txt {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
}

.content-txt {
  line-height: 2;
  font-size: 20px;
}

.aboutus {
  position: relative;
}

.aboutus img.bud {
  position: absolute;
	left: 60%;
  width: clamp(200px, 30vw, 413px);
  height: auto;
  z-index: 5;
	filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.25));
}


/* top-service */
section.service {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  margin-top: 138px;
  margin-bottom: 120px;
}

.top-contents > div {
  flex: 0 0 684px;
  padding-left: 180px;
  margin-bottom: 72px;
  z-index: 2;
  position: relative;
}

.service p.content-txt {
  line-height: 2;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.top-contents {
  display: flex;
  align-items: flex-end;
  margin: 0 0 248px 0;
}

.ear_of_rice {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 4px 20px rgba(0,0,0,0.25));
}

@media screen and (min-width: 1440px) {
  .aboutus div .top-contents div {
    padding-left: 0;
  }
  .aboutus div .top-contents {
    padding-left: 0;
    justify-content: left;
  }
  .top-contents {
    margin: auto;
  }
}

@media screen and (max-width: 1440px) and (min-width: 770px) {
  .service .ear_of_rice {
    display: block;
    height: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 1330px) {
  .aboutus .top-contents {
    position: relative;
  }
  .aboutus img.bud {
    height: auto;
    top: 400px;
    right: 0;
    z-index: 1;
  }
  .aboutus .top-contents > div {
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 1300px) and (min-width: 770px) {
 section.aboutus {
    padding-left: clamp(20px, 9.5vw, 123px);
  }
  .top-contents > div {
    padding-left: clamp(0px, 10vw, 180px);
  }
  .top_title, .top-txt {
    margin-left: clamp(20px, 9.5vw, 180px);
    text-align: left;
  }
  .service .ear_of_rice {
    position: relative;
    top: 37px;
    z-index: 1;
  }
}

@media screen and (max-width: 1100px) and (min-width: 771px) {
  .top_title, .top-txt {
    text-align: left;
  }
  .aboutus div .top-contents div {
    padding-left: 0;
  }
  .service .ear_of_rice {
    position: relative;
    top: 37px;
    z-index: 1;
  }
  .service .top-contents figure {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 799px;
    z-index: 1;
  }
  .service img.ear_of_rice {
    display: block;
    width: 73vw;
    height: auto;
    filter: drop-shadow(4px 4px 20px rgba(0,0,0,0.25));
  }
}

@media screen and (max-width: 1000px) {
  .aboutus img.bud {
    height: auto;
  }
}

@media screen and (max-width: 770px) {
  section.aboutus {
    display: flex;
    flex-direction: column;
    padding: 4em 1em;
  }
  section.service {
    margin: 200px 15px;
    left: 0;
  }
  .top-contents {
    flex-direction: column-reverse;
    align-items: center;
    position: static;
    gap: 1.5em;
  }
  .top-contents > div {
    flex: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  img.ear_of_rice {
    width: 100%;
    height: auto;
    width: clamp(165px, 35em, 413px);
  }
  .top_title,.top-txt {
    margin-left: 0;
  }
}

@media screen and (max-width: 600px) {
  p.content-txt {
    font-size: 16px;
  }
	.service p.content-txt {
    line-height: 1.5;
    font-size: 16px;
  }
	.aboutus img.bud {
    position: absolute;
    left: 45%;
    top: 90%;
	}
  .aboutus img.bud {
    width: clamp(165px, 35vw, 413px);
    top: 85%;
  }
  .aboutus img.bud {
    top: 100%;
  }
}

/* service */
.service-contents {
  display: flex;
  justify-content: center;
  gap: 85px;
  margin: 0px 0px 162px;
}

img.chess_pieces {
  filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.25));
  width: 100.3%;
}

/* 背景固定エリア */
 .img-area1 {
  width: 100%;
  aspect-ratio: 1440 / 290;
  background: url(../../img/silver_moon.jpeg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.img-areasp.sp2 .img-box {
  position: relative;
  width: 100%;
  padding-bottom: calc(400 / 1440 * 100%);
  overflow: hidden;
  margin: 0;
}

.img-areasp.sp2  img.geometric_patterns, .img-areasp.sp2 img.silver_moon {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 700px) {
 .img-area, .img-area1 {
	 display: none;
	}
}


/* order */
#order {
  padding-top: 162px;
  padding-bottom: 223px;
}

.order-inner h2 {
  color: #E94709;
}

.order-inner h2::before {
	content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-color: #E94709;
  margin-right: 0.3em;
}

.order-outline {
  max-width: 1108px;
  margin: auto;
  display: flex;
  justify-content: left;
  gap: 50px;
  padding: 0 10px;
}

.order-contents {
  display: flex;
  justify-content: left;
}

.order-contents figure {
  padding: 12px 13px;
}

img.rusk, img.cosmetics {
  width: 200px;
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.25));
}

li.order-caution {
  font-size: 12px;
  list-style: none;
}

/* flow */
/* Work flow */
#work-flow {
	max-width: 1041px;
  margin: auto;
  padding-top: 265px;
  padding-bottom: 197px;
}

#work-flow h2 {
  font-size: 32px;
  font-weight: 700;
  color: #E94709;
  text-align: center;
  margin-bottom: 56px;
}

/* 各コンテンツ */
.flow-contents {
  width: 253px;
  text-align: center;
  font-size: 14px;
  position: relative;
}

.flow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  min-height: 114px;
  margin-bottom: 20px;
  position: relative;
}

.flow-contents::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
  position: relative;
  top: 23px;
}

.flow-inner h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.flow-contents p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.flow-contents p span {
  font-size: 12px;
  color: #555;
}

/* flow innerデザイン */
.flow-outline {
  max-width: 1040px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  justify-items: center;
  counter-reset: step;
  padding: 0 10px;
}

.flow-inner {
  border: 1px solid #000;
  border-top: none;
  padding: 0 20px;
  margin-bottom: 20px;
  position: relative;
}

.flow-inner::before, .flow-inner::after {
  content: "";
  position: absolute;
  height: 0.5px;
  background: #000;
  width: calc(50% - 32.5px);
}

.flow-inner::after {
  top: 0;
  right: 0;
}

.flow-inner::before {
  top: 0;
  left: 0;
}

.arrow-outer {
  position: relative;
}

.arrow-outer img.arrow {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40px;
  height: auto;
}

@media screen and (max-width: 900px) {
  .flow-outline {
    max-width: 700px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .arrow-outer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .arrow-outer img.arrow {
    width: 20px;
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .flow-outline {
    display: block;
  }
  .flow-contents {
    margin-bottom: 50px;
  }
  .arrow-outer img.arrow {
    position: static;
    transform: none;
    transform: rotate(90deg);
  }
  .flow-contents {
    width: 100%;
    max-width: 253px;
    margin: 0 auto 50px;
  }
}

/* Home About us */
 section.aboutus-page {
  max-width: 1283px;
  margin: auto;
}

.aboutus-contents {
  display: flex;
  justify-content: space-between;
  gap: 85px;
  margin: 0 0 248px 0;
}

img.seamoon {
  filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.25));
}

@media screen and  (max-width: 1300px) {
 section.aboutus-page {
    padding: 0 10px;
  }
  .top-contents, .aboutus-contents, .service-contents {
    gap: 3.5vw;
  }
  img.seamoon {
    width: 100.3%;
  }
}

@media screen and  (max-width: 1000px) {
  .order-outline {
    gap: 20px;
  }
  img.rusk, img.cosmetics {
    width: 20vw;
  }
}

@media screen and (max-width: 950px) {
  .top-contents, .aboutus-contents {
    margin: 0 0 100px 0;
  }
  .order-list ul {
    font-size: 14px;
  }
  li.order-caution {
    font-size: 10px;
  }
}

@media screen and (max-width: 770px) {
  .order-outline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    margin: auto;
  }
}

@media screen and (max-width: 700px) {
   section.aboutus-page {
    max-width: 100%;
    margin: 0 24px;
  }
  .top-contents,.aboutus-contents, .service-contents {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.5em;
    margin: 0 0 86px 0;
  }
  img.ear_of_rice, img.seamoon, img.chess_pieces {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .content-txt {
    text-align: left;
    width: 100%;
  }
  p.copy-txt {
    margin-bottom: 27px;
  }
  img.ear_of_rice, img.seamoon, img.chess_pieces {
    width: clamp(277px, 64vw, 357px);
    height: auto;
  }
  #order {
  padding-bottom: 102px;
}
  img.rusk, img.cosmetics {
    width: 120px;
  }
  .order-list ul {
    line-height: 1.5;
  }
  #work-flow {
    padding-top: 147px;
    padding-bottom: 122px;
  }
}

@media screen and (max-width: 600px) {
   section.aboutus-page {
    padding: 0;
  }
  p.copy-txt {
    font-size: clamp(24px, 5vw, 40px);
  }
 .aboutus_title {
    font-size: clamp(16px, 4vw, 24px);
  }
  .content-txt {
    text-align: left;
    width: 100%;
    line-height: 1.5;
  }
}

@media screen and (max-width: 375px) {
  p.copy-txt {
  font-size: clamp(16px, 6.4vw, 24px);
  }
}

/* Creative menu */
#creative-menu {
  max-width: 1108px;
  margin: auto;
  margin-bottom: 143px;
}

#creative-menu h2 {
  color: #E94709;
  margin-bottom: 47px;
  padding: 0 15px;
}

.creative-outline {
  display: flex;
  justify-content:center;
  gap: 40px;
  text-align: center;
  color: #E94709;
  font-size: 24px;
  line-height: 1;
  padding: 0 10px;
}

.creative-contents {
  background: #151E49;
  width: 302px;
  padding: 42px 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

@media screen and  (max-width: 660px) {
	section.service {
		margin: 200px 15px 64px;
    left: 0;
	}
  #creative-menu {
    margin-bottom: 73px;
  }
  .creative-outline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .creative-contents {
    background: #151E49;
    width: 222px;
    padding: 42px 0;
  }
}

/* 背景固定エリア */
 .img-area {
  width: 100%;
  height: clamp(135px, 25vw, 250px);
  background: url(../../img/geometric_patterns.jpeg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  margin-bottom: 84px;
}

/* Company */
#single-company {
  max-width: 1280px;
  margin: auto;
  text-align: left;
  color: #E94709;
  font-size: 36px;
  padding-right: 10px;
  padding-left: 10px;
}

section#company-info {
  max-width: 890px;
  margin: auto;
  padding: 84px 10px 115px 10px;
}

#company-info h2, #history h2 {
  color: #E94709;
}

#company-info h2:before {
	content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-color: #E94709;
  margin-right: 0.3em;
}

#history h2::before {
	content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-color: #E94709;
  margin-right: 0.3em;
}

img.moon {
  width: 42px;
  position: absolute;
  left: 685px;
  top: 231px;
  z-index: 10;
}

img.orange-moon {
  position: absolute;
  top: 49px;
  left: 603px;
  opacity: 0.8;
}

#company-info {
  margin: 0 auto;
  border-collapse: collapse;
  position: relative;
  background: url("img/orange-moon.png") no-repeat center center;
  background-size: cover;
}

#company-info tr, #history tr {
  position: relative;
}

.company-table-wrapper table tr {
  text-align: left;
  line-height: 3;
}

.company-table-wrapper table tr th {
  padding-right: 50px;
}

#company-info tr::after, #history tr::after {
  content: "";
  display: block;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

#company-info tr, #history tr {
  position: relative;
  padding-bottom: 59px;
}

#company-info tr:last-child, #history tr:last-child {
  padding-bottom: 0;
}

#company-info tr:nth-child(1)::after,
#company-info tr:nth-child(6)::after,
#history tr:nth-child(1)::after,
#history tr:nth-child(6)::after {
  width: 600px;
}

#company-info tr:nth-child(2)::after,
#company-info tr:nth-child(5)::after,
#history tr:nth-child(2)::after,
#history tr:nth-child(5)::after {
  width: 700px;
}

#company-info tr:nth-child(3)::after,
#company-info tr:nth-child(4)::after,
#history tr:nth-child(3)::after,
#history tr:nth-child(4)::after {
  width: 740px;
}

/* 沿革 */
#history {
  position: relative;
  background: url("../../img/river.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  padding: 60px 20px;
}

.history-title {
  max-width: 890px;
  margin: auto;
  text-align: left;
}

#history .history-chatch .copy-txt {
  text-align: center;
}

.history-txt {
  text-align: left;
}

.company-table-wrapper {
  max-width: 890px;
  margin: auto;
  padding: 78px 50px 70px 100px;
  background: #FFFFFF85;
  position: relative;
}

.history-chatch {
  max-width: 680px;
  margin: auto;
  margin-bottom: 55px;
  text-align: center;
}

img.history-moon {
  width: 42px;
  position: absolute;
  left: 676px;
  top: 107px;
}

/* レスポンシブ長さ調整*/
@media screen and (max-width: 960px) {
  #company-info tr:nth-child(1)::after,
  #company-info tr:nth-child(6)::after,
  #history tr:nth-child(1)::after,
  #history tr:nth-child(6)::after {
    width: calc(600 * 80vw / 780);
  }
  #company-info tr:nth-child(2)::after,
  #company-info tr:nth-child(5)::after,
  #history tr:nth-child(2)::after,
  #history tr:nth-child(5)::after {
    width: calc(700 * 80vw / 780);
  }
  #company-info tr:nth-child(3)::after,
  #company-info tr:nth-child(4)::after,
  #history tr:nth-child(3)::after,
  #history tr:nth-child(4)::after {
    width: calc(740 * 80vw / 780); 
  }
  img.moon, img.history-moon {
    left: calc(600 * 81.5vw / 690);
  }
  img.orange-moon {
    left: calc(600 * 81.5vw / 900);
  }
}

@media screen and (max-width: 780px) {
  .company-table-wrapper {
    padding: 24px 10px;
  }
  #company-info table,
  #company-info tr,
  #company-info th,
  #company-info td,
  #history table,
  #history tr,
  #history th,
  #history td {
    display: block;
    width: 100%;
  }
  #company-info th,
  #history th {
    font-weight: bold;
  }
  #company-info tr,
  #history tr {
    position: relative;
    padding-bottom: 0;
  }
  .company-table-wrapper table tr {
    line-height: 2;
  }
  img.moon {
    left: calc(600 * 81vw / 800);
    top: 196px;
  }
  img.history-moon {
    left: calc(600 * 80vw / 800);
    top: 72px;
  }
  img.orange-moon {
    left: calc(600 * 81vw / 1400);
    top: clamp(6px, calc(-80px + (86 * ((100vw - 375px) / (780 - 375)))), -80px);
  }
}

@media screen and (max-width: 600px) {
  #history .history-chatch .copy-txt {
    text-align: left;
  }
  img.history-moon {
    top: 103px;
  }
  img.orange-moon {
    width: 60vw;
  }
}

/* top-blog */
section#blog {
  background: #F3F3F3;
  padding: 78px 10px 187px 10px;
}

.blog-contents {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: left;
  gap: 20px;
}

section#blog h2 {
  max-width: 912px;
  margin: auto;
  text-align: left;
  margin-bottom: 21px;
  color: #E94709;
}

.blog-single {
  flex: 0 0 253px;
  box-sizing: border-box;
  max-width: 260px;
}

.blog_btn {
    max-width: 800px;
    margin: auto;
    text-align: right;
    margin-top: 19px;
}

/* スマホ時は横スクロール */
@media screen and (max-width: 840px) {
  .blog-contents {
    max-width: 80%;
    overflow-x: auto;   /* 横スクロール許可 */
    flex-wrap: nowrap;  /* 折り返さない */
    -webkit-overflow-scrolling: touch; /* スマホでスムーズに */
  }
  .blog-single {
    flex: 0 0 250px;
  }
}

/* archive blog */
#archive_blog {
	margin:auto;
	padding: 0 10px 192px 10px;
}

#archive_blog h1 {
    max-width: 1280px;
    margin: auto;
    text-align: left;
    color: #E94709;
	font-size: 36px;
    margin-bottom: 36px;
}

.archive_blog-contents {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-title {
    font-family: "Noto Serif JP", serif;
}

@media (max-width: 880px) {
  .archive_blog-contents {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}

@media (max-width: 550px) {
  .archive_blog-contents {
    grid-template-columns: 1fr;
    max-width: 260px;
  }
}

/* Contact */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-section h1 {
  text-align: center;
  font-size: 44px;
  margin-bottom: 15px;
  color: #E94709;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.contact-form {
  width: 100%;
  text-align: left;
  margin-bottom: 100px;
}

.contact-form h2 {
  font-size: 18px;
  margin: 25px 0 10px;
}

/* 必須マーク */
.required {
  background: #E94709;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px;
  margin-left: 5px;
}

/* ラジオボタン横並び */
.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-size: 16px;
}

@media screen and (max-width: 550px) {
  .radio-group {
	 display: flex;
   flex-direction: column;
   gap: 10px;
  }
}

.contact-form h2, .contact-form h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  max-width: 800px;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-form textarea {
  height: 205px;
  resize: vertical;
}

.name-fields {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.name-fields div {
  flex: 1;
}

.name-fields label {
  display: block;
  margin-bottom: 5px;
}

.privacy-title {
  font-weight: bold;
  margin: 10px 0;
}

h2#privacypolicy {
  font-size: 24px;
  color: #E94709;
}

.contact-form p,
.contact-form ul {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1em;
}

.submit-btn {
  display: inline-block;
  width: 260px;
  max-width: 260px;
  background: #151E49;
  color: #E94709;
  font-weight: bold;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 900;
}

.submit-btn:hover {
  box-shadow: 0 0 10px #f18200, 0 0 20px #fff, 0 0 20px #fff;
  background: #fff;
  color: #e94709;
  font-weight: 900;
  border-color: #e94709;
}

.agree-box,
.submit-btn {
  display: block;
  text-align: center;
  margin: 0 auto 20px auto; /
}

.agree-box label {
  display: inline-block;
  text-align: left;
}

.agree-box {
  margin: 54px 0;
}

/* thanks */
.thanks {
  text-align: center;
  margin-bottom: 221px;
}

.thanks h1 {
  color: #E94709;
  margin-bottom: 36px;
}

@media screen and (max-width: 780px) {
  .thanks {
    margin-top: 46px;
    margin-bottom: 221px;
  }
}

/* 404 */
.error-page {
  text-align: center;
  margin-bottom: 7em;
}

.error-page h1 {
  font-size: 120px;
  font-weight: 400;
  color: #E94709;
  margin-bottom: 20px;
}

.error-page .message {
  font-size: 20px;
  margin-bottom: 10px;
}

.error-page p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-area {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.errorbtn-outline, .btn-primary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.errorbtn-outline {
  border: 2px solid #151E49;
  color: #151E49;
}

.errorbtn-outline:hover {
  background: #151E49;
  color: #fff;
}

.btn-primary {
  background: #151E49;
  color: #fff;
  border: 2px solid #151E49;
}

.btn-primary:hover {
  background: #E94709;
  border-color: #E94709;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .error-page h1 {
    font-size: 80px;
  }
  .error-page .message {
    font-size: 18px;
  }
}

/* sitemap */
.aioseo-html-page-sitemap h4,
.aioseo-html-post-sitemap h4,
.aioseo-html-category-sitemap h4 {
	color: #E94709;
}

.aioseo-html-category-sitemap {
  display: none;
}

/*singe.php page.php  */
main#primary {
  max-width: 800px;
  margin: auto;
  padding: 10px;
	margin-bottom: 5vw;
}

.aioseo-html-sitemap {
  display: flex;
  justify-content: center;
  gap: 50px;
}

@media screen and (max-width: 600px) {
	main#primary {
    padding: 50px 10px;
  }
	.aioseo-html-sitemap {
    gap: 20px;
  }
	.aioseo-html-page-sitemap ul li {
		font-size: 14px;
	}
}

/* single */
.single-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 147px;
}

.single-ounter {
  max-width: 1230px;
  margin: auto;
  background: #FCFBFB;
	padding: 90px 10px;
	margin-bottom: 137px;
}

.single-infomation {
  display: flex;
  align-items: center;
  gap: 10px;
	margin-bottom: 20px;
	max-width: 800px;
  margin: auto;
}

figure.single-thumbnail {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.single-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}

.single-date {
  font-size: 0.9rem;
  color: #777;
	line-height: 1;
}

.single-thumbnail img {
  max-width: clamp(312px, 95%, 800px);
}

.blog-single a figure {
  width: 260px;
  height: 180px;
  overflow: hidden;
}

.blog-single a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1rem;
}

.single-content h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 2em 0 1em;
  border-left: 5px solid #333;
  padding-left: 10px;
}

nav.post-navigation {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.back-to-list {
  text-align: center;
}

@media screen and (max-width: 600px) {
  .single-title {
    font-size: 5.5vw;
  }
}